diff --git a/Crunchbase Dataset.zip b/Crunchbase Dataset.zip deleted file mode 100644 index 9ad5922..0000000 Binary files a/Crunchbase Dataset.zip and /dev/null differ diff --git a/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb b/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb new file mode 100644 index 0000000..f6bbfe3 --- /dev/null +++ b/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb @@ -0,0 +1,632 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "![Ironhack Logo](https://i.imgur.com/1QgrNNw.png)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\OpenSSL\\crypto.py:1128: CryptographyDeprecationWarning: This version of cryptography contains a temporary pyOpenSSL fallback path. Upgrade pyOpenSSL now.\n", + " cert._x509 = crypto_cert._x509\n", + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\cryptography\\x509\\base.py:521: CryptographyDeprecationWarning: Parsed a negative serial number, which is disallowed by RFC 5280.\n", + " return rust_x509.load_der_x509_certificate(data)\n", + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\x509.py:17: CryptographyDeprecationWarning: This version of cryptography contains a temporary pyOpenSSL fallback path. Upgrade pyOpenSSL now.\n", + " utils.DeprecatedIn35,\n" + ] + } + ], + "source": [ + "from pymongo import MongoClient\n", + "client=MongoClient(\"mongodb+srv://TGLSpain1:Eespanya1@cluster0.yzpf2n4.mongodb.net/?retryWrites=true&w=majority\")\n", + "client.list_database_names()\n", + "db = client.crunchbase\n", + "collection = db.companies" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Answers\n", + "### 1. All the companies that it's name match 'Babelgum'. Retrieve only their `name` field." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297da0'), 'name': 'Babelgum'}]\n" + ] + } + ], + "source": [ + "results1 = list(collection.find({\"name\": \"Babelgum\"}, {\"name\": 1}))\n", + "\n", + "print(results1)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2. All the companies that have more than 5000 employees. Limit the search to 20 companies and sort them by **number of employees**." + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n", + "388000\n" + ] + } + ], + "source": [ + "results2 = list(collection.find({\"number_of_employees\": {\"$gt\": 5000}}).limit(20).sort(\"number_of_employees\", -1))\n", + " \n", + "print(results2)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3. All the companies founded between 2000 and 2005, both years included. Retrieve only the `name` and `founded_year` fileds." + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3734\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d8c'), 'name': 'Zoho', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d8d'), 'name': 'Digg', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'name': 'Facebook', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297d8f'), 'name': 'Omnidrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d95'), 'name': 'StumbleUpon', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297d96'), 'name': 'Gizmoz', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297d9a'), 'name': 'Helio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297da1'), 'name': 'Plaxo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297da5'), 'name': 'Technorati', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297da7'), 'name': 'AddThis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dac'), 'name': 'Veoh', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297daf'), 'name': 'Jingle Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db2'), 'name': 'Meetup', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db6'), 'name': 'Wesabe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db7'), 'name': 'Jangl SMS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db8'), 'name': 'SmugMug', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297dbb'), 'name': 'Jajah', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dbc'), 'name': 'Skype', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dbd'), 'name': 'YouTube', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dc3'), 'name': 'Pando Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dc6'), 'name': 'Ikan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dc7'), 'name': 'delicious', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dc8'), 'name': 'Topix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297dc9'), 'name': 'Jobster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dcb'), 'name': 'Revision3', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dcc'), 'name': 'AllPeers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dd3'), 'name': 'iSkoot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dd5'), 'name': 'AllofMP3', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297dd9'), 'name': 'Steorn', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ddb'), 'name': 'MeeVee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297ddc'), 'name': 'blinkx', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dde'), 'name': 'ClipBlast!', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ddf'), 'name': 'Zlio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297de8'), 'name': 'Coghead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ded'), 'name': 'Farecast', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297def'), 'name': 'KickApps', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df3'), 'name': 'Instructables', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df5'), 'name': 'Swivel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df6'), 'name': 'Slide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df7'), 'name': 'Bebo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df8'), 'name': 'Flickr', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dfc'), 'name': 'TripHub', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dfe'), 'name': 'FeedBurner', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e02'), 'name': 'Dogster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e03'), 'name': 'PBworks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e04'), 'name': 'Sway', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e05'), 'name': 'CornerWorld', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e06'), 'name': 'adBrite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e08'), 'name': 'Loomia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e09'), 'name': 'Meebo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e0b'), 'name': 'Newsvine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'name': 'LinkedIn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e0e'), 'name': 'Jamendo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e10'), 'name': 'Box', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e11'), 'name': 'iLike', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e15'), 'name': 'Conduit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e17'), 'name': 'Kaboodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e1a'), 'name': 'Wink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e1e'), 'name': 'TechnologyGuide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297e20'), 'name': 'Zvents', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e21'), 'name': 'MotionDSP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e22'), 'name': 'Techmeme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e23'), 'name': 'Eventful', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e25'), 'name': 'Oodle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e26'), 'name': 'oDesk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e27'), 'name': 'Simply Hired', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e28'), 'name': 'ooma', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e2e'), 'name': 'stylediary', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e32'), 'name': 'Vast', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297e33'), 'name': 'MyPublicInfo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e38'), 'name': 'PhotoBox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297e3a'), 'name': 'Spreadshirt', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e3b'), 'name': 'Socialtext', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e3c'), 'name': 'Bazaarvoice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e3d'), 'name': 'IceRocket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e3f'), 'name': 'barablu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e43'), 'name': 'Ohloh', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e45'), 'name': 'Clipperz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e47'), 'name': 'ScanScout', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4a'), 'name': 'Indeed', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e4b'), 'name': 'Jaxtr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4c'), 'name': 'Cerado', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e4e'), 'name': 'ONEsite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4f'), 'name': 'introNetworks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e57'), 'name': 'GoLightly', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e58'), 'name': 'eBuddy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e5b'), 'name': 'PeerMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e5c'), 'name': 'Kiptronic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e5e'), 'name': 'Zenfolio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e61'), 'name': 'Vuze', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6b'), 'name': 'PodTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6c'), 'name': 'NowPublic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6e'), 'name': 'Crackle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e70'), 'name': 'Clipmarks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e73'), 'name': 'Boonex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297e77'), 'name': 'Reddit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e7b'), 'name': 'BuddyTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e82'), 'name': 'Hightail', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e85'), 'name': 'TextPayMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e86'), 'name': 'obopay', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e88'), 'name': 'BillMonk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e8a'), 'name': 'TalkPlus', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e8b'), 'name': 'Vudu', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e90'), 'name': 'PermissionTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e9a'), 'name': 'Kaneva', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e9b'), 'name': 'IMVU', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e9f'), 'name': 'Userplane', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ea4'), 'name': 'Webkinz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ea9'), 'name': 'Sulake', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297eab'), 'name': 'Dubit', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297eac'), 'name': 'Viagogo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eaf'), 'name': 'Millsberry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297eb1'), 'name': 'GreatCall', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eb6'), 'name': 'SelectMinds', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297eb7'), 'name': 'Revver', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297eb9'), 'name': 'Metacafe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297eba'), 'name': 'MindTouch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ebb'), 'name': 'ChaCha', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ebc'), 'name': 'Flock', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ebf'), 'name': 'Kontera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ec4'), 'name': 'Curverider', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ec5'), 'name': 'MobiTV', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ec6'), 'name': 'TimeBridge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ed1'), 'name': 'Sampa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ed2'), 'name': 'Six Apart', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ed6'), 'name': 'BitTorrent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297edf'), 'name': 'Eventbee', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ee4'), 'name': 'GoFish', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ee6'), 'name': 'Kiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ee8'), 'name': 'PartnerUp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eeb'), 'name': 'Zopa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eec'), 'name': 'Fathom Online', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297ef0'), 'name': 'SuicideGirls', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ef2'), 'name': 'ContextWeb', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297ef4'), 'name': 'Goowy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ef5'), 'name': 'MySpace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ef8'), 'name': 'A9', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ef9'), 'name': 'Doostang', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297efa'), 'name': 'TechCrunch', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297efd'), 'name': 'ZoomInfo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f04'), 'name': 'Covestor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f05'), 'name': 'Mevio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f07'), 'name': 'Shock Treatment Management', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f08'), 'name': 'NewsGator', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f09'), 'name': 'Pluck', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f0b'), 'name': 'BitPass', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f12'), 'name': 'eHarmony', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f13'), 'name': 'Friendster', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f18'), 'name': 'Exabre', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f19'), 'name': 'ReachLocal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f1a'), 'name': 'Greystripe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f1b'), 'name': 'Trulia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f20'), 'name': 'Yeigo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f21'), 'name': 'DAVE Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f23'), 'name': 'Netblue', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f2a'), 'name': 'SpiralFrog', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f2e'), 'name': 'Multiply', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f35'), 'name': 'LimeLife', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f39'), 'name': 'Espotting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f3b'), 'name': 'MocoSpace', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f3c'), 'name': 'Adknowledge', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f3e'), 'name': 'airG', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f50'), 'name': 'BBE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f53'), 'name': 'Thumbplay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f54'), 'name': 'Fotolog', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f58'), 'name': 'Xfire', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f63'), 'name': 'Marchex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f6a'), 'name': 'MyHeritage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f6d'), 'name': 'Finetune', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f70'), 'name': 'OnForce', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f75'), 'name': 'SayNow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f79'), 'name': 'PixSense', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f7a'), 'name': 'ContactOffice', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f7d'), 'name': 'Yugma', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f83'), 'name': 'imeem', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f89'), 'name': 'Attributor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f8a'), 'name': 'ElephantDrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f8c'), 'name': 'Nemedia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f8d'), 'name': '4INFO', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f90'), 'name': 'Musicshake', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f95'), 'name': 'Jive Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f98'), 'name': 'Mozy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f99'), 'name': 'WooMe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297fa1'), 'name': 'Sertifi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa3'), 'name': 'Orgoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa4'), 'name': 'HylioSoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fa7'), 'name': 'Zerofootprint', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa9'), 'name': 'PrepMe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297fab'), 'name': 'Ceedo Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fac'), 'name': 'SmartHippo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fad'), 'name': 'Snoozester', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fb2'), 'name': 'in2apps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fb7'), 'name': 'Balihoo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fbb'), 'name': 'Smartsheet', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fbe'), 'name': 'ThisNext', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fc0'), 'name': 'Tumri', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fc5'), 'name': 'MuseStorm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fc8'), 'name': 'Eons', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fd6'), 'name': 'Cuil', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fd9'), 'name': 'Boomi', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297fda'), 'name': 'mig33', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fe3'), 'name': 'mEgo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fe8'), 'name': 'CafeScribe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fe9'), 'name': 'StoryBlender', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fea'), 'name': 'Spoke', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297fed'), 'name': 'Myxer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fef'), 'name': 'Wirenode', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ff5'), 'name': 'Styky', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ff8'), 'name': 'GroupSwim', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ffe'), 'name': 'Notemarks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297fff'), 'name': 'Jiglu', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298005'), 'name': 'itsmylife', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529800a'), 'name': 'RingCentral', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529800d'), 'name': 'Moz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298013'), 'name': '3Jam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298015'), 'name': 'DocuSign', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529802f'), 'name': 'zSlide', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298031'), 'name': 'CityTherapy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298037'), 'name': 'VoodooVox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298039'), 'name': 'CondoDomain', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529803c'), 'name': 'RayV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298043'), 'name': 'YuMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298044'), 'name': 'Woophy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298047'), 'name': 'Treemo Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529804a'), 'name': 'Blurb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529804d'), 'name': 'Automattic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298058'), 'name': 'Phrasebase', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529805a'), 'name': 'Payoneer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529805c'), 'name': 'Shopatron', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529805e'), 'name': 'JackBe', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529805f'), 'name': 'EchoSign', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298060'), 'name': 'tyntec', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298063'), 'name': 'Simpy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298064'), 'name': 'Ubertor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529806a'), 'name': 'JobDig', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529806b'), 'name': 'Marakana', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298073'), 'name': 'Firetide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529807b'), 'name': 'Eurekster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529807c'), 'name': 'OnLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298083'), 'name': 'Zattoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298084'), 'name': 'Baynote', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298086'), 'name': 'Taobao', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298087'), 'name': 'Alipay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298088'), 'name': 'Soonr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529808a'), 'name': 'GridNetworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529808b'), 'name': 'Quigo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298097'), 'name': 'Pelago', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298099'), 'name': 'Upcoming', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980a2'), 'name': 'Faves', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980a4'), 'name': 'mDialog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980a7'), 'name': 'BrainKeeper', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980a8'), 'name': 'Evi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ac'), 'name': 'Casero', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752980ad'), 'name': 'MerchantCircle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ae'), 'name': 'Minekey', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980af'), 'name': 'Compete', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752980b2'), 'name': 'Chintano', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980b9'), 'name': 'StreetFire', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980ba'), 'name': 'Turn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980bd'), 'name': 'Loopt', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980cd'), 'name': 'Congoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980d1'), 'name': 'Springbox', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980d4'), 'name': 'Optimost', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752980d5'), 'name': 'uShip', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980d6'), 'name': 'Vobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980d7'), 'name': 'Vivox', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ed'), 'name': 'Bloglines', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980f4'), 'name': 'Frappr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980f8'), 'name': 'LinkStorm', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752980f9'), 'name': 'Zoji', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980fa'), 'name': 'Worktopia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298101'), 'name': 'iStockphoto', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298103'), 'name': 'Verican', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298104'), 'name': 'FiveRuns', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298107'), 'name': 'beRecruited', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529810c'), 'name': 'ProductWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529810f'), 'name': 'Splunk', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298110'), 'name': 'LucidEra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298114'), 'name': 'Localeze', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298117'), 'name': 'xkoto', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529811f'), 'name': 'YouOS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298127'), 'name': 'Seeqpod', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529812e'), 'name': 'Yodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298131'), 'name': 'Snapvine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298134'), 'name': 'betNOW', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298135'), 'name': 'eyeOS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529813b'), 'name': 'Kewego', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529813f'), 'name': 'Vidyo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298142'), 'name': 'Intronis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298149'), 'name': 'Criticker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298150'), 'name': 'TradeKing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298151'), 'name': 'Viadeo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298157'), 'name': 'FastBooking', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298159'), 'name': 'GrubHub', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529815a'), 'name': 'Skyscanner', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529815c'), 'name': 'Iotum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298162'), 'name': 'Vemo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298163'), 'name': 'Smilebox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298166'), 'name': 'Hakia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298168'), 'name': 'Kosmix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529816d'), 'name': 'Ribbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529816e'), 'name': 'BustedTees', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529816f'), 'name': 'Jobvite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298171'), 'name': 'Squidoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298173'), 'name': 'Streamezzo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298175'), 'name': 'Vyew', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529817d'), 'name': 'PlayFirst', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298180'), 'name': 'Deem', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298181'), 'name': 'CDNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298183'), 'name': 'KAYAK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298184'), 'name': 'Mobissimo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298187'), 'name': 'Chumby', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298188'), 'name': 'GlobalGiving', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529818a'), 'name': 'GridPoint', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529818c'), 'name': 'HelioVolt', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529818d'), 'name': 'Etsy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298190'), 'name': 'Atlassian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298192'), 'name': 'Nanosolar', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298195'), 'name': 'Shozu', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298196'), 'name': 'EditGrid', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298198'), 'name': 'Tesla Motors', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529819a'), 'name': 'Fotolia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529819d'), 'name': 'Bunchball', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529819f'), 'name': 'SimulScribe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981a5'), 'name': 'Truveo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981a7'), 'name': 'TripAdvisor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752981ae'), 'name': 'LifeOnKey', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981b2'), 'name': 'jellyfish', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981ba'), 'name': 'SugarCRM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981c3'), 'name': 'Jobfox', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981c4'), 'name': 'Critical Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752981c8'), 'name': 'ARPU', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981cd'), 'name': 'Joyent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981cf'), 'name': 'Woot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981d6'), 'name': 'SuccessFactors', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752981d7'), 'name': 'fabrik', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981dd'), 'name': 'yoonew', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981de'), 'name': 'Oversee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752981e2'), 'name': 'Enforta', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981e5'), 'name': 'WAYN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752981ea'), 'name': 'Smaato', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981f1'), 'name': 'Jellyvision', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752981f3'), 'name': 'Mumboe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981ff'), 'name': 'ReimagineMemories', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298202'), 'name': 'XING', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298204'), 'name': 'Criteo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298207'), 'name': 'Amobee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298208'), 'name': 'Visible Measures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529820d'), 'name': 'Adchemy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298217'), 'name': '5pm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298224'), 'name': 'IPRO', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298229'), 'name': 'Spout', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298237'), 'name': 'Maugans Corp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298238'), 'name': 'BreakingPoint Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298239'), 'name': 'iModules Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529823a'), 'name': 'Senokian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529823c'), 'name': 'Relenta', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529823f'), 'name': 'HonestMall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298243'), 'name': 'VerticalCurve', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298245'), 'name': ']project-open[', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529824d'), 'name': 'Citrix Online', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529824e'), 'name': 'EnterpriseDB', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298251'), 'name': 'MerchantOS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298252'), 'name': 'SimpleFeed', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298253'), 'name': 'eNotes', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298258'), 'name': 'Survey Analytics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529825d'), 'name': 'b5media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529825e'), 'name': 'Gawker Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529825f'), 'name': 'Weblogs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298264'), 'name': 'Autonet Mobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298266'), 'name': 'Openomy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298270'), 'name': 'Vaakya Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298272'), 'name': 'skinnyCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298273'), 'name': 'Sikka Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298275'), 'name': 'FUPEI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298277'), 'name': 'Collarity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529827c'), 'name': 'Inside', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298283'), 'name': 'Mininova', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298284'), 'name': 'apivision', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298287'), 'name': 'Bia2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529828f'), 'name': 'Gliffy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298291'), 'name': 'Mobiance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298292'), 'name': 'Brownstoner Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298297'), 'name': 'TravelGator', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982a1'), 'name': 'PathConnect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982a4'), 'name': 'Booyah Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982a6'), 'name': 'GameDuell', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982ac'), 'name': 'Neotonic Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982ad'), 'name': 'Bungee Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982af'), 'name': 'Yodio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982bc'), 'name': 'Principal Axis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982bf'), 'name': 'eTeacher', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982c5'), 'name': 'uVuMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982c6'), 'name': 'Qype', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982c8'), 'name': 'RankOne Media Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982c9'), 'name': 'Escapia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982ce'), 'name': 'Snap Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982d0'), 'name': 'Clicks2Customers', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982d6'), 'name': 'PicScout', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982d7'), 'name': 'Three Rings', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982d8'), 'name': 'UnsubCentral', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982dc'), 'name': 'ChoiceStream', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982de'), 'name': 'Recombinant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982e2'), 'name': 'Smalltown', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982e8'), 'name': 'LibraryThing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982ea'), 'name': 'Lulu Press', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982ee'), 'name': 'aSmallWorld', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982f1'), 'name': 'TheLadders', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982f4'), 'name': 'Cellfire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982f6'), 'name': 'HomeAway', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982f8'), 'name': 'A1Vacations', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298302'), 'name': 'Gorilla Nation Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298306'), 'name': 'Audio Lunchbox', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529830b'), 'name': 'MOG', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529830f'), 'name': 'LiveUniverse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298312'), 'name': 'Betfair', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298313'), 'name': 'ShareMethods', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298318'), 'name': 'SiteSpect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298320'), 'name': 'Silobreaker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298325'), 'name': 'AskPoodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298326'), 'name': 'Scary Ideas', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298328'), 'name': 'Skyrove', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529832d'), 'name': 'Coverity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529832e'), 'name': 'Fortify Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298334'), 'name': 'FaceTec', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298336'), 'name': 'Maktoob', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529833b'), 'name': 'Ownersite Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298345'), 'name': 'ePrep', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298349'), 'name': 'SnapNames', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529834a'), 'name': 'Opinity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298351'), 'name': 'EnergyWeb Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298352'), 'name': 'Online-Access', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298354'), 'name': 'Exalead', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298359'), 'name': 'Motionplan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298360'), 'name': 'MediaTrust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298366'), 'name': 'Hotwire', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529836c'), 'name': 'Agematis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298372'), 'name': 'kelDOM', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298379'), 'name': 'Pentaho', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529837b'), 'name': 'StubHub', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298381'), 'name': 'Project10X', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298382'), 'name': 'Evernote', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298383'), 'name': 'Y Combinator', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529838c'), 'name': 'HipLogic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298394'), 'name': 'Swarmcast', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298397'), 'name': 'Ad Infuse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298398'), 'name': 'Inform Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529839f'), 'name': 'Ephox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752983a2'), 'name': 'Sxoop Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983aa'), 'name': 'Realtime Applications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983b2'), 'name': 'Tiny Pictures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983b4'), 'name': 'Zorpia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983bc'), 'name': 'Flurry', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983c3'), 'name': 'Animax Entertainment', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752983c5'), 'name': '2threads', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983c7'), 'name': 'SugarSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983cc'), 'name': 'Phorm', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752983cf'), 'name': 'Teneros', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983d3'), 'name': 'EMOB', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983d5'), 'name': 'Leverage Card', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983dc'), 'name': 'Kazeon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983e1'), 'name': 'Mochila', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752983e8'), 'name': 'Fibre2fashion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752983ea'), 'name': 'YaData', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f0'), 'name': 'AnswerBag', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983f5'), 'name': 'Tinypic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f6'), 'name': 'Quintura', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f7'), 'name': 'Clusty', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983fd'), 'name': 'Panther Express', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983ff'), 'name': 'E-junkie', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298400'), 'name': 'PayLoadz', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529840b'), 'name': 'Right Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529840d'), 'name': 'Volagratis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298414'), 'name': 'Myrimis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298417'), 'name': 'Webtronic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529841d'), 'name': 'FreshBooks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529841e'), 'name': 'Central Desktop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298429'), 'name': 'The Media Kitchen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529842c'), 'name': 'EASEUS', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529842e'), 'name': 'Tectura', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298436'), 'name': 'I-stats', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298438'), 'name': 'FatPort', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529843a'), 'name': 'AtomicOnline', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298441'), 'name': 'Phreesia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298443'), 'name': 'Boonty', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298444'), 'name': 'Sportgenic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529844d'), 'name': 'Mapicurious', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298455'), 'name': 'Printfection', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298457'), 'name': 'Ifbyphone', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298458'), 'name': 'Grasshopper', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529845d'), 'name': 'Generate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298460'), 'name': 'OpenDNS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298461'), 'name': 'Paxfire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298463'), 'name': 'Kareo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298465'), 'name': 'Digital-Telepathy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298467'), 'name': 'Pidgin Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529846a'), 'name': 'VZnet Netzwerke', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529846d'), 'name': 'Astrails', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529846e'), 'name': 'GoodBarry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298474'), 'name': 'Participatory Culture Foundation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298479'), 'name': 'Aidmas Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529847a'), 'name': 'Kulabyte', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298480'), 'name': 'Relevad', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298484'), 'name': 'Coveo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529848b'), 'name': 'PresenterNet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298495'), 'name': 'Atlantic Metro Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298499'), 'name': 'PacketFront', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529849a'), 'name': 'ShoutWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984a5'), 'name': 'PI Corporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984b1'), 'name': 'Mobenga', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984c0'), 'name': 'AirTight Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984c1'), 'name': 'WiSpry', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984c7'), 'name': 'Vidient', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984cb'), 'name': 'KeyEye Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752984cc'), 'name': 'LiveOps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752984d2'), 'name': 'Janrain', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984d4'), 'name': 'SearchMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984d6'), 'name': 'PointRoll', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752984de'), 'name': 'Imperva', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e0'), 'name': 'Posit Science', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e1'), 'name': 'Sabrix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e2'), 'name': 'AccountNow', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984e5'), 'name': 'EveryScape', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e7'), 'name': 'TalkShoe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984e8'), 'name': 'Voxiva', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752984e9'), 'name': 'Workday', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984ee'), 'name': 'Skyhook Wireless', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984f3'), 'name': 'Revolution Health', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984f5'), 'name': 'Cognitive Labs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752984f6'), 'name': 'PopularMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984fb'), 'name': 'Clarizen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529850b'), 'name': 'JobThread', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529850e'), 'name': 'Workcircle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298510'), 'name': 'NeoEdge Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298515'), 'name': 'Jelsoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298516'), 'name': 'Invision Power Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529851e'), 'name': 'TeamWork Live', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298526'), 'name': 'Arclight Media Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529852c'), 'name': 'Sedo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298536'), 'name': 'Voltage Security', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298538'), 'name': 'Star Analytics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298539'), 'name': 'Aria Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529853a'), 'name': 'Cenzic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529853e'), 'name': 'Replay Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298540'), 'name': 'SupplyFrame', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298541'), 'name': 'Scalent Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298542'), 'name': 'InMage Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298543'), 'name': 'SignalDemand', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298547'), 'name': 'Authenticlick', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298549'), 'name': 'Webpass', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529854b'), 'name': 'MyBlogLog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529854e'), 'name': 'CitySquares', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529855e'), 'name': 'Planypus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298560'), 'name': 'Virtualmin', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298565'), 'name': 'Socialmoth', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298566'), 'name': 'Snipshot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298581'), 'name': 'Ecommerce Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298587'), 'name': 'WebVisible', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529858a'), 'name': 'Akampus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529858d'), 'name': 'Toufee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298598'), 'name': 'Xtenza Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529859b'), 'name': 'SIMchronise', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529859e'), 'name': 'Athena Archiver', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985a5'), 'name': 'liveBooks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985aa'), 'name': 'AdEngage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985ab'), 'name': 'BlogCatalog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985af'), 'name': 'Zebtab', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985bd'), 'name': 'Music Arsenal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985bf'), 'name': 'Glaxstar', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752985c1'), 'name': 'SonicSwap', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752985c4'), 'name': 'Adconion Media Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985c8'), 'name': 'Shvoong', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985c9'), 'name': 'Gecad Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752985d1'), 'name': 'GoToMeeting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985d2'), 'name': 'Liftopia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985d7'), 'name': 'AnchorFree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985db'), 'name': 'Greater Than One', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752985e6'), 'name': 'Aternity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985e9'), 'name': 'Total Server Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985ed'), 'name': 'Reprise Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752985ee'), 'name': 'ChipIn', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985f3'), 'name': 'ContentNext Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752985f6'), 'name': 'MosaicGlobe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985f8'), 'name': 'Webreakstuff', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985fe'), 'name': 'Devolia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985ff'), 'name': 'Wellwrittenwords', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529860b'), 'name': 'GotVoice', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529860d'), 'name': 'BlogFlux', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298624'), 'name': 'Carsonified', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529862a'), 'name': 'CLEAR', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529862c'), 'name': 'MODERO GROUP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529862e'), 'name': 'Parature', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298631'), 'name': '7digital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298645'), 'name': 'SET Consulting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298650'), 'name': 'Wikimedia Foundation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298655'), 'name': 'Wiredset', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298657'), 'name': 'Cemaphore Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529865a'), 'name': 'Become', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529865d'), 'name': 'BlueCat Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298666'), 'name': 'The Echo Nest', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298669'), 'name': 'vFlyer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529866c'), 'name': 'BeInSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298672'), 'name': 'iovation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298680'), 'name': 'ki work', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298684'), 'name': 'Skycore', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298685'), 'name': 'Game Trust', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298687'), 'name': 'Datacraft Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529868c'), 'name': 'Realtime Worlds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529868e'), 'name': 'Berkeley Design Automation', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298697'), 'name': 'Achievers Point Knowledge Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529869c'), 'name': '3Tera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986a0'), 'name': 'Attentio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986a3'), 'name': 'LunarStorm UK', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986a5'), 'name': 'Eyeline Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986a6'), 'name': 'Minggl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986a7'), 'name': 'Netlog', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986a9'), 'name': 'PHPCow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986b0'), 'name': 'Cellufun', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986b1'), 'name': 'Xoopit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986b2'), 'name': 'Spain Holiday', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986b8'), 'name': 'Reality Digital', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986b9'), 'name': 'Satori Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986bb'), 'name': 'Q-Layer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986bf'), 'name': 'Franson Technology AB', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986c1'), 'name': 'Adlucent', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986c9'), 'name': 'Designing Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752986cb'), 'name': 'Placecast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986ce'), 'name': 'Meck Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986d2'), 'name': 'Kudzu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986d4'), 'name': 'TheNextBigWriter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986d7'), 'name': 'Wists', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986dd'), 'name': 'RiDE Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986e5'), 'name': 'Glasses Direct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986e7'), 'name': 'ProActive Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986e8'), 'name': 'Notanant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986ee'), 'name': 'Avisena', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752986fc'), 'name': 'Undertone', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529871f'), 'name': 'Austhink Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529872c'), 'name': 'Zong', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298737'), 'name': 'GuardianEdge Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298738'), 'name': 'FoxyTunes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529873e'), 'name': 'Odeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298740'), 'name': 'Cellfish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298747'), 'name': 'Health-Smart', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298748'), 'name': 'Pure Digital Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529874a'), 'name': 'Axosoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529874b'), 'name': 'SoftLogica', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529874c'), 'name': 'Jotlet', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529874d'), 'name': 'Trellon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298751'), 'name': 'Enomaly', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298759'), 'name': 'Trampoline Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529875c'), 'name': 'SiBEAM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529875e'), 'name': '83 Degrees', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298762'), 'name': 'Tideway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298764'), 'name': 'SearchForce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298766'), 'name': '1938 Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298769'), 'name': 'Velocix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529876c'), 'name': 'Support Intelligence', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529876e'), 'name': 'Sogeti USA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298772'), 'name': 'Boxbe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298777'), 'name': 'Univa UD', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298778'), 'name': 'Honeypot Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529877d'), 'name': 'Artabase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529877e'), 'name': 'Alex Gorney Web Development', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529877f'), 'name': 'Acme Mobile', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298780'), 'name': 'Moviestorm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298781'), 'name': 'Rollyo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298783'), 'name': 'Fourth Media Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298789'), 'name': 'MediaWhiz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298797'), 'name': 'Spleak', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987a4'), 'name': 'Berro', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987a5'), 'name': 'PixelCrayons', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987a8'), 'name': 'mediaFORGE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987ae'), 'name': 'LocalWineEvents', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987af'), 'name': 'Logicalware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987b7'), 'name': 'Palamida', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987bb'), 'name': 'Blinksale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987bd'), 'name': 'Creative Commons', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987c4'), 'name': 'Plentyoffish', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987ca'), 'name': 'Seattle Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987cb'), 'name': 'Campusbug', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987d0'), 'name': 'Fubra', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987d1'), 'name': 'eMomentum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987d4'), 'name': 'OnOneMap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987d6'), 'name': 'Visible Theory', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987d7'), 'name': 'HowtoForge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987db'), 'name': 'UnitedLayer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987dc'), 'name': 'LearnItFirst', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987e0'), 'name': 'ServePath', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987e1'), 'name': 'Janmedia Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987e8'), 'name': 'ProjectLocker', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987eb'), 'name': 'Pipl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987f3'), 'name': 'alaTest', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987f9'), 'name': 'The Beer Mapping Project', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987fb'), 'name': 'eVIPlist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987fc'), 'name': 'ArticleAlley', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529880d'), 'name': 'BMAT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298811'), 'name': 'Mercury Intermedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298812'), 'name': 'AdXpose', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298819'), 'name': 'Splendia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298821'), 'name': 'Visible World', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298826'), 'name': 'Memeo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529882e'), 'name': 'ReefEdge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298836'), 'name': 'MailChimp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298837'), 'name': 'Globant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529883b'), 'name': 'ImageShack', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529883c'), 'name': 'RealMatch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529883d'), 'name': 'Collective Intellect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529883f'), 'name': 'Beep Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298841'), 'name': 'AdShuffle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298842'), 'name': 'General Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298845'), 'name': 'Red Oxygen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298846'), 'name': 'ExitReality', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298848'), 'name': 'W3Counter', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529884a'), 'name': 'Mirror42', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529884c'), 'name': 'blogads', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529885e'), 'name': 'Medioh!', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298860'), 'name': 'LOVEFiLM', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298861'), 'name': 'Crazymenu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298862'), 'name': 'Rate Beer', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298882'), 'name': 'eInnovative Consultants', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298886'), 'name': 'Wayfair', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298887'), 'name': '3tailer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298891'), 'name': 'Nexopia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298894'), 'name': 'Fog Creek Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988a4'), 'name': 'Yendo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752988a8'), 'name': 'Lexalytics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752988aa'), 'name': 'Scanbuy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988b1'), 'name': 'Interarbor Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752988b3'), 'name': 'Modera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988b7'), 'name': 'Rising Sun Research', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988bc'), 'name': 'Superblock', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752988d3'), 'name': 'SQLstream', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752988de'), 'name': 'Voices', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752988e1'), 'name': 'JobScore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752988e4'), 'name': 'PIER Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988ed'), 'name': 'Gameware Development', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752988f2'), 'name': 'RelevantView', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752988fb'), 'name': 'Android', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298901'), 'name': 'AF Telecom Sarl', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529890a'), 'name': 'Amanager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298925'), 'name': 'InvenSense', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529892d'), 'name': 'Sony BMG Music Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298938'), 'name': 'Innovolt', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298940'), 'name': 'The Icon Factory', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298945'), 'name': 'TraceWorks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529894d'), 'name': 'UNYK', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298950'), 'name': 'BioWizard', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298955'), 'name': 'Mind Candy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298957'), 'name': 'AllMyData', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298959'), 'name': 'TicketLeap', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529895a'), 'name': 'kajeet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529895b'), 'name': 'SilverStripe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529895c'), 'name': 'Fotolink Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529895e'), 'name': 'Inovatis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529895f'), 'name': 'AVIS eSolutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298966'), 'name': 'Velocify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298976'), 'name': 'FusionOps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529897a'), 'name': 'Foldera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529897f'), 'name': 'PatientsLikeMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298989'), 'name': 'Xerpi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298995'), 'name': 'TrustMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298996'), 'name': 'iNET Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752989a4'), 'name': 'PhaseWare', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752989a5'), 'name': 'Hush Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989b5'), 'name': 'YourTechOnline', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989c1'), 'name': 'Skyrider', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989cd'), 'name': 'Phi Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d1'), 'name': 'Control4', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989d2'), 'name': 'IPEVO', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d4'), 'name': 'Fantasy Sports Matrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d9'), 'name': 'ChatAny', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989da'), 'name': 'Traffic Broker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752989e0'), 'name': 'Talend', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989ed'), 'name': 'GoMobo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989f4'), 'name': 'Musopen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989f5'), 'name': 'Catzilla', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989f9'), 'name': 'Segala', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752989fb'), 'name': '3Dynamics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a01'), 'name': 'IMAGE202 ENTERTAINMENT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a06'), 'name': 'ExpertFlyer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a0e'), 'name': 'dotMobi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a12'), 'name': 'Boardwalktech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a15'), 'name': 'hosting365', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a22'), 'name': 'Andera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a25'), 'name': 'Boulevard R', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a27'), 'name': 'ClairMail', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a2c'), 'name': 'Waleg', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298a35'), 'name': 'BioIQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a41'), 'name': 'Swamp Fox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a43'), 'name': 'TouchLocal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a49'), 'name': 'Facilitas', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a4b'), 'name': 'GuardID', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a4e'), 'name': 'Dilithium Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a50'), 'name': 'Passenger', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a52'), 'name': 'IP Commerce', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a55'), 'name': 'SimpleTuition', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a57'), 'name': 'Tyfone', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a63'), 'name': 'Accoona', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a69'), 'name': 'Efficient Frontier', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a6c'), 'name': 'Textensor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a6f'), 'name': 'Esendex', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a71'), 'name': 'Mozes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a7d'), 'name': 'PearBudget', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a84'), 'name': 'VirtualLogix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a8b'), 'name': 'TrafficZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a90'), 'name': 'Futurlink', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298a92'), 'name': 'Hypertag', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a94'), 'name': 'Dezide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a97'), 'name': 'Drawloop Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a98'), 'name': 'Sawfish Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a9a'), 'name': 'Cognition Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aa0'), 'name': 'Raydiance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298aa7'), 'name': 'OwnersRentals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aac'), 'name': 'VoipReview', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aaf'), 'name': 'Tiny Prints', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ab1'), 'name': 'TerraPass', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298abe'), 'name': 'U Sphere', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ac2'), 'name': 'SilkRoad Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298ac8'), 'name': 'NetworthIQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298acb'), 'name': 'Zedge', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298acc'), 'name': 'deviantART', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ad1'), 'name': 'myThings', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ad3'), 'name': 'VivoCom', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ad4'), 'name': 'mpw Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298ad9'), 'name': 'Splice Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ada'), 'name': 'WrapMail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298adc'), 'name': 'Crunchlabz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298adf'), 'name': 'ACT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae1'), 'name': 'mywaves', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae3'), 'name': 'NextBio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ae4'), 'name': 'Parascale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae7'), 'name': 'Aquantia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ae9'), 'name': 'financial crossing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298aed'), 'name': 'Pixaria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298af4'), 'name': 'Bluetise', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b00'), 'name': 'Elite Renting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b05'), 'name': 'ClearContext', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b0a'), 'name': 'Nectil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b0e'), 'name': 'Geary Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b10'), 'name': 'ITSportsNet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b1d'), 'name': 'OpenCircle', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b1e'), 'name': 'GameFly', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b1f'), 'name': 'Ztail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b26'), 'name': 'AirCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b29'), 'name': 'Row44', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b2b'), 'name': 'Aster Data Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b2d'), 'name': 'iConclude', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b31'), 'name': 'Atmail', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b33'), 'name': 'MediaRush', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b39'), 'name': 'Lightfleet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b3a'), 'name': 'Fliqz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b3c'), 'name': 'TechMeridian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b3d'), 'name': 'Roku', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b3e'), 'name': 'Asankya', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b43'), 'name': 'Funambol', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b49'), 'name': 'Pingability', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b4a'), 'name': 'Batipi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b4f'), 'name': 'eBureau', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b52'), 'name': 'Moblyng', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b57'), 'name': 'Hymotion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b58'), 'name': 'Loyalty Matrix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b5d'), 'name': 'ExpertsYard', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b60'), 'name': 'Sirtris Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b63'), 'name': 'TinyURL', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b68'), 'name': 'Jitterbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b6a'), 'name': 'AtHoc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b6d'), 'name': 'Global Property Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b73'), 'name': 'EnterMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b79'), 'name': 'Skalfa', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b8a'), 'name': 'SaleHoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b8c'), 'name': 'NearU Search', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b8d'), 'name': 'CompareNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b8e'), 'name': 'Sxip Identity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b97'), 'name': 'sph3re', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b99'), 'name': 'Accenture', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b9d'), 'name': 'Stockhouse', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298bb0'), 'name': 'iBiz Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bb3'), 'name': 'OneMoreLevel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bb5'), 'name': 'C4Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bb8'), 'name': 'Vocio', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bb9'), 'name': 'Electrostate', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298bbb'), 'name': 'BrightDoor Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bbe'), 'name': 'iWin', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bc0'), 'name': 'SmokeJumper Strategy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298bc1'), 'name': 'Savvy Cellar Wines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bd3'), 'name': 'InterGraphicDESIGNS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298bd9'), 'name': 'PurePlay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298bda'), 'name': 'Aruspex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298bde'), 'name': 'AdapDev IT Web Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298be1'), 'name': 'Rove', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298be2'), 'name': 'Sputnik', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bf9'), 'name': 'Cloudmark', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bfb'), 'name': 'Soundflavor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c01'), 'name': 'IndieFlix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c03'), 'name': 'Enterprise Concept', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c06'), 'name': 'BelAir Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c09'), 'name': 'Vaultus Mobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c0a'), 'name': 'Handmark', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c16'), 'name': 'Aptera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c18'), 'name': 'Market Sentinel', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c19'), 'name': 'Fabric Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298c1a'), 'name': 'Neo Code Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c1b'), 'name': 'The Television Writers Vault', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c1c'), 'name': 'Invensis Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c1d'), 'name': 'Aedgency', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c20'), 'name': 'RMW Web Publishing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c21'), 'name': 'Blogpire Productions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c22'), 'name': 'Xtract', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298c2a'), 'name': 'M:Metrics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c2b'), 'name': 'Teresis Media Management', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c2f'), 'name': 'B-hive Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c33'), 'name': 'Monsoon Multimedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c34'), 'name': 'zebraspot design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c35'), 'name': 'FanDriveMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c37'), 'name': 'Elevator Up', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c3a'), 'name': 'Dohop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c3b'), 'name': 'Versaly Entertainment', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c44'), 'name': 'TNR Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c47'), 'name': 'Intelius', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c4e'), 'name': 'ViewScore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c61'), 'name': 'TeleFlip', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c65'), 'name': 'Niwango', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c78'), 'name': 'MissGift', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c7d'), 'name': 'Jigsaw', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c86'), 'name': 'Ozmo Devices', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c8f'), 'name': 'Lookeen', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c90'), 'name': 'No Star Clothing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c92'), 'name': 'Navic Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c9e'), 'name': 'Medallia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ca8'), 'name': 'YTB', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ca9'), 'name': 'Inertia Beverage Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298caa'), 'name': 'TuneCore', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cad'), 'name': 'Internet Mall', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cb5'), 'name': 'Avaya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cbc'), 'name': 'FoxyMelody', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cbd'), 'name': 'COMSHARP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cc1'), 'name': 'Vindicia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298cc3'), 'name': 'WSO2', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cd3'), 'name': 'Limbo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cd4'), 'name': 'Beweb', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298cd8'), 'name': 'G2 SwitchWorks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298cdd'), 'name': 'Macronimous Web Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ced'), 'name': 'LyricFind', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cf0'), 'name': 'AtTask', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298cf7'), 'name': 'AFrame Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cf9'), 'name': 'ClickandBuy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cfa'), 'name': 'Mobile Rider', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d11'), 'name': 'Intelliworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d12'), 'name': 'BrightSource Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d1a'), 'name': 'Betaface', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d1e'), 'name': 'iePlexus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d1f'), 'name': 'SpaBoom', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d23'), 'name': 'Phonerental', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d31'), 'name': 'Groove Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d33'), 'name': 'H-care', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d36'), 'name': 'GuestLogix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298d37'), 'name': 'Pivot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d38'), 'name': 'XRackPro', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d40'), 'name': 'Solomodels', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d41'), 'name': 'Sense Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d53'), 'name': 'Cyber Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d55'), 'name': 'K9Poker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d5b'), 'name': 'Infusionsoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d5f'), 'name': 'Practice Fusion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d63'), 'name': 'Birthday Alarm', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d66'), 'name': 'be2', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d6a'), 'name': 'zanox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298d6d'), 'name': 'Tribe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d6e'), 'name': 'Nimbit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d70'), 'name': 'HireVue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d75'), 'name': 'Tipo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d7a'), 'name': 'Codefast', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d7e'), 'name': 'RRD USA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d82'), 'name': 'Lingro', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d89'), 'name': 'HealthiNation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d8a'), 'name': 'TOA Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d91'), 'name': 'Just Landed', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d93'), 'name': 'Storagepipe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d95'), 'name': 'Universal Clients', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298d98'), 'name': 'Firefly Energy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298da1'), 'name': 'Socialcast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298da7'), 'name': 'EpikOne', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298da9'), 'name': 'AttendEase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298daf'), 'name': 'Hyperic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298db0'), 'name': 'Zenoss', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dd2'), 'name': 'MANHUNT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298dd3'), 'name': 'OnlineBootyCall', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298dd4'), 'name': 'SocialBang', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dd8'), 'name': 'AnotherFriend', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298dda'), 'name': 'Stardoll', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298dde'), 'name': 'Gratis Internet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298de3'), 'name': 'Optaros', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298de4'), 'name': 'White Label Dating', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298de6'), 'name': 'Meetic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298deb'), 'name': 'Palbee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ded'), 'name': 'Projity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298dee'), 'name': 'Blooloop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298def'), 'name': 'Mapufacture', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dfe'), 'name': 'Zulu Creative', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e04'), 'name': 'Replay Poker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e0e'), 'name': 'Vitrium Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e15'), 'name': 'Boxee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e1d'), 'name': 'Acronis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e1e'), 'name': 'Exinda', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e1f'), 'name': 'Barracuda Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e20'), 'name': 'Astaro', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e3b'), 'name': 'TechColumbus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e3f'), 'name': 'InkHead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e40'), 'name': 'Flex2go', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e44'), 'name': 'iMediaBlitz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e53'), 'name': 'AskMeNow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e58'), 'name': 'InQuira', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e61'), 'name': 'Razz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e64'), 'name': 'InsideView', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e66'), 'name': 'Xcerion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e6a'), 'name': 'ViewNow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e6f'), 'name': 'Bazaar Advertising Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e71'), 'name': 'LogicalApps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e73'), 'name': 'Media Bloggers Association', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e76'), 'name': 'Uniblue', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e7a'), 'name': 'Forcestream', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e7b'), 'name': 'UNOS Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e7e'), 'name': '1915 Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e83'), 'name': 'FlipDog', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ea0'), 'name': 'CPXi', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ea5'), 'name': 'HIRO Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb0'), 'name': 'SpikeSource', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb4'), 'name': 'BTRCL', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb6'), 'name': 'Blueprint Software Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ebf'), 'name': 'Faulkner Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ec0'), 'name': 'MyTickets', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ec1'), 'name': 'HIGH-SPEED SOLUTIONS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ec3'), 'name': 'CrestaTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ecb'), 'name': 'Vodaco Web Strategies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ed1'), 'name': 'GBA Internet Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ed4'), 'name': 'Textic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298edf'), 'name': 'Hoteliers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ee2'), 'name': 'NameMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ee6'), 'name': 'Remember The Milk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ee8'), 'name': 'NOLOH', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298eea'), 'name': 'RIM Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ef1'), 'name': 'GSA Technology Council', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298eff'), 'name': 'Nxtbook Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f02'), 'name': 'Samba Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f03'), 'name': 'Alereon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f05'), 'name': 'Cequel III', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f10'), 'name': 'BuiBase', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f14'), 'name': 'RoboDynamics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f17'), 'name': 'Ensign Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f1d'), 'name': 'Easyflirt', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298f24'), 'name': 'Roottori', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f28'), 'name': 'Dieyes', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f35'), 'name': 'Bluehost', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f3a'), 'name': 'LicenseStream', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f3c'), 'name': 'Info-Tech Assist', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f3e'), 'name': 'PodOmatic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f42'), 'name': 'OkCupid', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f4d'), 'name': 'rPath', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f50'), 'name': 'NativeBroadcast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f53'), 'name': 'MarkLogic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f60'), 'name': 'Tangivel', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f61'), 'name': 'Gammoth', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298f63'), 'name': 'Freeportway', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298f65'), 'name': 'Unspace Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f81'), 'name': 'Manticore Technology', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298f8b'), 'name': 'SageTV', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f8d'), 'name': 'Photobucket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f8e'), 'name': 'Blue Sky Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f91'), 'name': 'Jedox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f94'), 'name': 'Mobile Trend', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f9e'), 'name': 'Armjisoft Digital Rights Management Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fa0'), 'name': 'Mendix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fa1'), 'name': 'UseGIS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fa5'), 'name': 'Troux Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298fa8'), 'name': 'JLOOP Rich Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fb1'), 'name': 'Mobile Data Now', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298fb3'), 'name': 'FireID', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fb4'), 'name': 'MobiComp', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fb7'), 'name': 'Ounce Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fbb'), 'name': 'Clupedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fc1'), 'name': 'Jobitorial', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298fc4'), 'name': 'LeafsOfTalent', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fd3'), 'name': 'Siteheart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fd6'), 'name': 'Pelican Crossing', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fdb'), 'name': 'Popkomm', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298fe4'), 'name': 'thePlatform', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fe9'), 'name': 'Lehigh Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298fee'), 'name': 'adicate timeads', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fef'), 'name': 'Avature', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ff2'), 'name': 'Nalpeiron', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ffe'), 'name': 'e-contratos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529900d'), 'name': 'ShopMyCloset', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299011'), 'name': 'Aylus Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529901c'), 'name': 'SightSpeed', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299023'), 'name': 'Easypano', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529902d'), 'name': 'Affinegy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529902e'), 'name': 'LifePics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299038'), 'name': 'GrayBoxx', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299039'), 'name': 'Mediastay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299042'), 'name': 'Rhapsody', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299043'), 'name': 'Mashware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299056'), 'name': 'ZipcodeZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529905c'), 'name': 'Neven Vision', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299061'), 'name': 'PeakStream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299063'), 'name': 'Zingku', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299064'), 'name': 'wikiHow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299065'), 'name': 'Vonage', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529906a'), 'name': 'Copper Project', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299085'), 'name': 'MetaCarta', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529908e'), 'name': 'Linspire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529908f'), 'name': 'Xandros', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990a3'), 'name': 'Muso Net', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990a7'), 'name': 'College Toolkit', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990b3'), 'name': 'VenJuvo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990b6'), 'name': 'Junction Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990c0'), 'name': 'MEDDIA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990c1'), 'name': 'Surgenia Productions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990c5'), 'name': 'Transinsight', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990c8'), 'name': 'Meetweb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990cb'), 'name': 'Travellerspoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990cc'), 'name': 'GoGrid', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990d4'), 'name': 'Medisoft Telemedicine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990dc'), 'name': 'Neato Robotics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990e1'), 'name': 'Chitika', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e3'), 'name': 'EC-CON BV', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e7'), 'name': 'amplusnet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e9'), 'name': 'ecreative', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990f7'), 'name': 'Dot Com Infoway France', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752990f9'), 'name': 'mmCHANNEL', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990fc'), 'name': 'ProjectSpaces', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990fe'), 'name': 'PHASE 2 International', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299100'), 'name': 'Paragent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299102'), 'name': 'KnowNow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529910a'), 'name': 'Segway', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529910c'), 'name': 'Trinex Commercial Finance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529910d'), 'name': 'Celebrity Seats', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299112'), 'name': 'Mission Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529912d'), 'name': 'Arkiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529913f'), 'name': 'Synology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299141'), 'name': 'WatchMouse', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529914f'), 'name': 'Chapatiz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299152'), 'name': 'IGG', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299154'), 'name': 'Open Box', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299155'), 'name': 'Bronto Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529915b'), 'name': 'Unisfair', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299162'), 'name': 'Compellent Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299163'), 'name': 'StoneFly', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299167'), 'name': 'MainNerve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529916c'), 'name': 'SulfurCell', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529916f'), 'name': 'Discovery Mining', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299170'), 'name': 'Data Domain', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299174'), 'name': 'Linkool Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529917e'), 'name': 'Skorpiostech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529918b'), 'name': 'Talking Panda', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299192'), 'name': 'TopTenREVIEWS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529919b'), 'name': '4chan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752991c2'), 'name': 'Spheric Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752991c4'), 'name': 'RedMonk', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752991c5'), 'name': 'Michael Martin Agency', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752991d8'), 'name': 'LenderFlex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991d9'), 'name': 'Icontem', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991db'), 'name': 'Zi Yu Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752991ee'), 'name': 'Streetline', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991ef'), 'name': 'impara', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752991f1'), 'name': 'MixMeister', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752991f9'), 'name': 'Truviso', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991fc'), 'name': 'Zoomix', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752991ff'), 'name': 'Caspio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299200'), 'name': 'WindSolutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299201'), 'name': 'Geometric Informatics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299204'), 'name': 'ByteShield', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299206'), 'name': 'Vimukti Tehnologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299207'), 'name': 'Adorn Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299209'), 'name': 'Gigablast', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529921c'), 'name': 'iRadeo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299234'), 'name': 'Dexterra', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529923e'), 'name': 'Four Corners Development Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299259'), 'name': 'Aldor Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529925e'), 'name': 'Sellathon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299261'), 'name': 'Converseon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299269'), 'name': 'Rouxbe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529926a'), 'name': 'BlogHer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529926b'), 'name': 'Global Market Hub', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299271'), 'name': 'Devshop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299273'), 'name': 'Reverb Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299283'), 'name': 'The Electric Sheep', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299284'), 'name': 'Diquest', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299286'), 'name': 'Cultuzz', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299287'), 'name': 'VISUALPLANT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529928b'), 'name': 'Nexdot', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529928c'), 'name': 'Leafish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529928d'), 'name': 'Cascada Mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529928f'), 'name': 'Ocean Online Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529929f'), 'name': 'Colizer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752992a1'), 'name': 'Cherwell Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752992b5'), 'name': 'ZAO Begun', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992b7'), 'name': 'Honesty Online', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992ba'), 'name': 'WEBCARGO', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752992bc'), 'name': 'Hands-On Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752992bd'), 'name': 'Talance', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992c5'), 'name': 'Indextools', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992c6'), 'name': 'Stereogum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752992cf'), 'name': 'Alfresco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992d0'), 'name': 'Cynapse', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752992d2'), 'name': 'SparkPeople', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992d4'), 'name': 'Myibay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992d7'), 'name': 'teclogy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992da'), 'name': 'Prosperity Research', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992dd'), 'name': 'Instil Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992e0'), 'name': 'InfoSoft Global', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992ea'), 'name': 'd-Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992ed'), 'name': 'Carbonetworks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992f9'), 'name': 'BUKA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299305'), 'name': 'Douban', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299311'), 'name': 'K3 Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299312'), 'name': 'Avidian Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299314'), 'name': 'I-COM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299318'), 'name': 'LeadCreations', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529931a'), 'name': 'Lead411', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529931d'), 'name': 'WoodWare Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299326'), 'name': 'jkOnTheRun', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299333'), 'name': 'SubHub', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299334'), 'name': 'Sears Holdings Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529933a'), 'name': 'InnoTech Conference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529933d'), 'name': 'Eye-Fi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299341'), 'name': 'Qumu', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299343'), 'name': 'Hire-seo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529934e'), 'name': 'Castle Ink Cartridges', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299354'), 'name': 'XFRIDAY', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299356'), 'name': 'Systinet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529935e'), 'name': 'Black Duck Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529936c'), 'name': 'DATAllegro', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529936f'), 'name': 'EffectiveUI', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299370'), 'name': 'eVectis Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299372'), 'name': 'mywire', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299379'), 'name': 'akakce', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529937e'), 'name': 'Transposagen Biopharmaceuticals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529938b'), 'name': 'Cbondesign', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529938d'), 'name': 'Supaproofread', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529939d'), 'name': 'Aurigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993a6'), 'name': 'Bioalma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993a8'), 'name': 'OPEN Leads', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ac'), 'name': 'DutchSoftware', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993af'), 'name': 'iStreamPlanet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993b6'), 'name': 'Kinoma', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993b8'), 'name': 'Integrated Computer Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ba'), 'name': 'Livebookings', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993bb'), 'name': 'RODECO ICT Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993c1'), 'name': 'Wireless Technology Forum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993c5'), 'name': 'Taringa!', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993d2'), 'name': 'FUNKY BUSINESS', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993d5'), 'name': 'Carrot Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993d8'), 'name': 'worldtvradio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993da'), 'name': 'ProForma Document Management Services', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993de'), 'name': 'db4objects', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993e2'), 'name': 'Accipiter Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993e7'), 'name': 'FundingUniverse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993ea'), 'name': 'Halosys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993eb'), 'name': 'Roamware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ed'), 'name': 'Clinnovo Research Labs Pvt Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993f1'), 'name': 'LeadGenesys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993f2'), 'name': 'Goober Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993f3'), 'name': 'TeamViewer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993f5'), 'name': 'SpringSource', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993f6'), 'name': 'Industria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993f7'), 'name': 'Sharkstrike', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993fa'), 'name': 'Telnic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993fc'), 'name': 'ActiveCause', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993fd'), 'name': 'The Tin', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299400'), 'name': 'NEXTA Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299405'), 'name': 'QuesGen Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299422'), 'name': 'Halogen Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299423'), 'name': 'XB Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299429'), 'name': 'CompuBase Internet Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529942a'), 'name': 'Local Marketers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529942d'), 'name': 'Covarity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299432'), 'name': 'Albion', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299442'), 'name': 'Manas Technology Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299443'), 'name': 'iKnowHow', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299447'), 'name': 'BeamYourScreen', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529944c'), 'name': 'Squiz UK', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529944d'), 'name': 'SimpleSignal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529944e'), 'name': 'B3B', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299456'), 'name': 'FillZ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299461'), 'name': 'ITBrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299463'), 'name': 'Dataupia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299466'), 'name': 'Global Mind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529946c'), 'name': 'Lashback', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529946f'), 'name': 'e-Man', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299476'), 'name': 'Informacije', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529947b'), 'name': 'Dreams Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299481'), 'name': 'Skyspine', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299488'), 'name': 'solarplaza', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529948a'), 'name': 'FuseMail', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529948d'), 'name': 'Logia Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299493'), 'name': 'Pluit Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299496'), 'name': 'BuildIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529949a'), 'name': 'CraveOnline', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529949b'), 'name': 'InteliArt Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994a8'), 'name': 'Vantage Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994b0'), 'name': 'Qualiteam Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752994b7'), 'name': 'Kantega', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994bb'), 'name': 'Terapeak', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994c2'), 'name': 'FinancialContent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994c7'), 'name': 'AYCE Internet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752994c9'), 'name': 'Quova', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994cb'), 'name': 'Plastic Logic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994d1'), 'name': 'InstantPresenter', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994d6'), 'name': 'DailyCandy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994da'), 'name': 'WirelessGround', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994e0'), 'name': 'Everyclick', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994e1'), 'name': 'myAuctionNetwork', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994e2'), 'name': 'Casius', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994eb'), 'name': 'GreenCine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994ef'), 'name': 'GoodSearch', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994f0'), 'name': 'SkyGrid', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994f1'), 'name': 'Kirtas Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752994f2'), 'name': 'eFriendsNet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994f6'), 'name': 'dynaTrace software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994fb'), 'name': 'SiteAdvisor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994fe'), 'name': 'RatchetSoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299508'), 'name': 'Propertyware', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299509'), 'name': 'Sandlot Games', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299517'), 'name': 'KDDI', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529951c'), 'name': 'AccuConference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529951e'), 'name': 'Swell Pregnancy Guide', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529952b'), 'name': 'Ambient Devices', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529952f'), 'name': 'Insyde', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299532'), 'name': 'WorldMate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299535'), 'name': 'Koolanoo Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299536'), 'name': 'UltiZen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299537'), 'name': 'Interspire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529953e'), 'name': 'IntelePeer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299541'), 'name': 'RoyaltyShare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299546'), 'name': 'MobileAware', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299547'), 'name': 'CTdeveloping', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529954a'), 'name': 'Indwell Consultancy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529954e'), 'name': 'Corporate Buyers Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529954f'), 'name': 'Polity Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529955a'), 'name': 'magnify360', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299560'), 'name': 'StrikeIron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299564'), 'name': 'Recommind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529956c'), 'name': 'MOBI Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299573'), 'name': 'Centrify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299577'), 'name': 'SMBLive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299578'), 'name': 'ProjectX Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299580'), 'name': 'Likewise Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529958a'), 'name': 'Axiom Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529958f'), 'name': 'Innotas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299590'), 'name': 'Native Instinct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995a3'), 'name': 'Enigmo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995a4'), 'name': 'Realsoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995a5'), 'name': 'J-Magic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995a6'), 'name': 'Power Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995ab'), 'name': 'WeSellYourSite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995ad'), 'name': 'Kilopass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995ae'), 'name': 'Arcadia Biosciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752995b0'), 'name': 'Deeya Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b4'), 'name': 'MagSil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b6'), 'name': '3i Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b7'), 'name': 'FreedomPay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995b8'), 'name': 'Nevis Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752995b9'), 'name': 'Sequoia Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995ba'), 'name': 'ZManda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995bb'), 'name': 'Availink', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995bc'), 'name': 'Advasense', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995be'), 'name': 'Muzicall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995bf'), 'name': 'Vollee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995c0'), 'name': 'Corea Titanium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995c1'), 'name': 'Frontier Silicon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995c5'), 'name': 'Imprev', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995c7'), 'name': 'Nextiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995db'), 'name': 'Alpha Systems Ltd ( Mauritius )', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995dd'), 'name': '2GeeksinaLab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995ea'), 'name': 'Synchronica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995eb'), 'name': 'Infoactive Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995ec'), 'name': 'AxisMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995ef'), 'name': 'Palo Alto Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995f0'), 'name': 'Axis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995f3'), 'name': 'WebMindtree', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995f8'), 'name': 'About The Image', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299600'), 'name': 'CoolBeansLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299607'), 'name': 'BitWave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299608'), 'name': 'EnOcean', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299612'), 'name': 'Amara Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299614'), 'name': 'Equipment Simulations', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299619'), 'name': 'Hexacta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529961e'), 'name': 'Parama Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529961f'), 'name': 'HedgeStreet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299623'), 'name': 'ShopWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299628'), 'name': 'Boulder Logic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299631'), 'name': 'The Highway Girl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299637'), 'name': 'Gust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299638'), 'name': 'KoolSpan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529963b'), 'name': 'CE Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529963c'), 'name': 'AirMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299659'), 'name': 'MESoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529965d'), 'name': 'Atigeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529965f'), 'name': 'Digital Ordnance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299663'), 'name': 'UBmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299667'), 'name': 'Adlib Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299668'), 'name': 'UK Office Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529966a'), 'name': 'Emerald Software Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299671'), 'name': 'Procera Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529967a'), 'name': 'PPTV', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529967e'), 'name': 'Hyva IT Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529968a'), 'name': 'Connective Logic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752996a0'), 'name': 'LeapRE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996ab'), 'name': 'OMS SafeHarbor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752996ad'), 'name': 'Jumptap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996b6'), 'name': 'PlayPhone', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996bd'), 'name': 'Jivjiv', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996c9'), 'name': 'AMAX Global Services', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752996d6'), 'name': 'Blogcritics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752996da'), 'name': 'Franglo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996e0'), 'name': 'GeoTrust', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752996ed'), 'name': 'Phones Limited', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752996ef'), 'name': 'Contoural', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996f6'), 'name': 'adlib', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299709'), 'name': 'Draconis Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529970b'), 'name': 'Flying Cart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529970d'), 'name': 'PostPath', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299710'), 'name': 'Swype', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299712'), 'name': 'Clickbooth', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299714'), 'name': 'Multiplied Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299715'), 'name': 'ProCPR', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529971a'), 'name': 'SpeakerMatch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529972b'), 'name': 'International Drug Mart', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529972d'), 'name': 'Advanced Millennium Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299731'), 'name': 'TimeTrade Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299734'), 'name': 'FMYI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299735'), 'name': 'Google Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529973c'), 'name': 'TRUECar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299745'), 'name': 'Displax', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299748'), 'name': 'SG2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299753'), 'name': 'PG Realty', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299758'), 'name': 'Crisp Thinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529975e'), 'name': 'Unified Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299760'), 'name': 'Aventure Host', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299761'), 'name': 'Lime Productions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529976b'), 'name': 'Aventure Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299770'), 'name': 'Beck Energy', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299772'), 'name': 'Project Amarillo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299774'), 'name': 'Alefo Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299776'), 'name': 'frankst0ned', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299777'), 'name': 'Google Earth Blog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299778'), 'name': 'Utagoe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529977b'), 'name': 'Kale Host', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529977e'), 'name': 'Libertas Academica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299785'), 'name': 'Picateers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299786'), 'name': 'SailPoint Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529978b'), 'name': 'Mexuar Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529978e'), 'name': 'Carribean International trading', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529978f'), 'name': 'Myriad Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299792'), 'name': 'Neoris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997a0'), 'name': 'Imixs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997a2'), 'name': 'Propertyshark', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997a8'), 'name': 'HexaCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997af'), 'name': 'SearchRev', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752997be'), 'name': 'Adaptive Technologies(ATi)', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997ca'), 'name': 'Builders Copilot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997d2'), 'name': 'Davai Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997d3'), 'name': 'Billdesk', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997d4'), 'name': 'Mimosa Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997db'), 'name': 'RouteYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997dc'), 'name': 'Fancorps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997e1'), 'name': 'BiggerPockets', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752997e7'), 'name': 'Intelligenes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997e8'), 'name': 'Flashants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997ef'), 'name': 'Nomadesk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752997fc'), 'name': 'Stylesight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299804'), 'name': 'Yerbabuena Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299806'), 'name': 'LooseHead Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529980f'), 'name': 'PIEmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299810'), 'name': 'Connectbeam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299817'), 'name': 'QFx Solutions Ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529981d'), 'name': 'Raizlabs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529981e'), 'name': 'IT Matters', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529983a'), 'name': 'Helpstream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529983d'), 'name': 'AirSet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529984a'), 'name': 'GolterGraphix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529984e'), 'name': 'Chegg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529984f'), 'name': 'Xactly Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299850'), 'name': 'IdeaBlade', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299853'), 'name': 'Hangout Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299858'), 'name': 'CheckMarket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299866'), 'name': 'Groqit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299874'), 'name': 'RuffWire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299876'), 'name': 'Vichara Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299877'), 'name': 'Fresh Web Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529987d'), 'name': 'Nealite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529987e'), 'name': 'Mandalorian Security Services Ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299886'), 'name': 'Fastmetrics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299888'), 'name': 'Spiral Shell Web LLC', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299889'), 'name': 'SysArc', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529988b'), 'name': 'Owner List', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299892'), 'name': 'DESIGN about TOWN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299894'), 'name': 'PG Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752998a1'), 'name': 'KDDI', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998a6'), 'name': 'AccuConference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998a8'), 'name': 'Swell Pregnancy Guide', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752998b5'), 'name': 'Ambient Devices', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752998b9'), 'name': 'Insyde', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998bc'), 'name': 'WorldMate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998bf'), 'name': 'Koolanoo Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998c0'), 'name': 'UltiZen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998c1'), 'name': 'Interspire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998c8'), 'name': 'IntelePeer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998cb'), 'name': 'RoyaltyShare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d0'), 'name': 'MobileAware', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998d1'), 'name': 'CTdeveloping', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998d4'), 'name': 'Indwell Consultancy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d8'), 'name': 'Corporate Buyers Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d9'), 'name': 'Polity Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998e4'), 'name': 'magnify360', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998ea'), 'name': 'StrikeIron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998ee'), 'name': 'Recommind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998f6'), 'name': 'MOBI Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998fd'), 'name': 'Centrify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299901'), 'name': 'SMBLive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299902'), 'name': 'ProjectX Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529990a'), 'name': 'Likewise Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299914'), 'name': 'Axiom Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299919'), 'name': 'Innotas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529991a'), 'name': 'Native Instinct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529992d'), 'name': 'Enigmo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529992e'), 'name': 'Realsoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529992f'), 'name': 'J-Magic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299930'), 'name': 'Power Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299935'), 'name': 'WeSellYourSite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299937'), 'name': 'Kilopass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299938'), 'name': 'Arcadia Biosciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529993a'), 'name': 'Deeya Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529993e'), 'name': 'MagSil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299940'), 'name': '3i Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299941'), 'name': 'FreedomPay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299942'), 'name': 'Nevis Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299943'), 'name': 'Sequoia Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299944'), 'name': 'ZManda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299945'), 'name': 'Availink', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299946'), 'name': 'Advasense', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299948'), 'name': 'Muzicall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299949'), 'name': 'Vollee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529994a'), 'name': 'Corea Titanium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529994b'), 'name': 'Frontier Silicon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529994f'), 'name': 'Imprev', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299951'), 'name': 'Nextiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299965'), 'name': 'Alpha Systems Ltd ( Mauritius )', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299967'), 'name': '2GeeksinaLab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299974'), 'name': 'Synchronica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299975'), 'name': 'Infoactive Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299976'), 'name': 'AxisMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299979'), 'name': 'Palo Alto Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529997a'), 'name': 'Axis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529997d'), 'name': 'WebMindtree', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299982'), 'name': 'About The Image', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529998a'), 'name': 'CoolBeansLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299991'), 'name': 'BitWave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299992'), 'name': 'EnOcean', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529999c'), 'name': 'Amara Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529999e'), 'name': 'Equipment Simulations', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999a3'), 'name': 'Hexacta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999a8'), 'name': 'Parama Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752999a9'), 'name': 'HedgeStreet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999ad'), 'name': 'ShopWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999b2'), 'name': 'Boulder Logic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999bb'), 'name': 'The Highway Girl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999c1'), 'name': 'Gust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999c2'), 'name': 'KoolSpan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999c5'), 'name': 'CE Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999c6'), 'name': 'AirMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999e3'), 'name': 'MESoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752999e7'), 'name': 'Atigeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999e9'), 'name': 'Digital Ordnance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999ed'), 'name': 'UBmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999f1'), 'name': 'Adlib Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999f2'), 'name': 'UK Office Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752999f4'), 'name': 'Emerald Software Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999fb'), 'name': 'Procera Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a04'), 'name': 'PPTV', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299a08'), 'name': 'Hyva IT Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a14'), 'name': 'Connective Logic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299a2a'), 'name': 'LeapRE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a35'), 'name': 'OMS SafeHarbor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a37'), 'name': 'Jumptap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a40'), 'name': 'PlayPhone', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a47'), 'name': 'Jivjiv', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a53'), 'name': 'AMAX Global Services', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299a60'), 'name': 'Blogcritics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a64'), 'name': 'Franglo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a6a'), 'name': 'GeoTrust', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a77'), 'name': 'Phones Limited', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a79'), 'name': 'Contoural', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a80'), 'name': 'adlib', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a93'), 'name': 'Draconis Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a95'), 'name': 'Flying Cart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a97'), 'name': 'PostPath', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a9a'), 'name': 'Swype', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9c'), 'name': 'Clickbooth', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9e'), 'name': 'Multiplied Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9f'), 'name': 'ProCPR', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299aa4'), 'name': 'SpeakerMatch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ab5'), 'name': 'International Drug Mart', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ab7'), 'name': 'Advanced Millennium Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299abb'), 'name': 'TimeTrade Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299abe'), 'name': 'FMYI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299abf'), 'name': 'Google Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ac6'), 'name': 'TRUECar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299acf'), 'name': 'Displax', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ad2'), 'name': 'SG2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299add'), 'name': 'PG Realty', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ae2'), 'name': 'Crisp Thinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ae8'), 'name': 'Unified Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299aea'), 'name': 'Aventure Host', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299aeb'), 'name': 'Lime Productions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299af5'), 'name': 'Aventure Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299afa'), 'name': 'Beck Energy', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299afc'), 'name': 'Project Amarillo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299afe'), 'name': 'Alefo Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b00'), 'name': 'frankst0ned', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b01'), 'name': 'Google Earth Blog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b02'), 'name': 'Utagoe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b05'), 'name': 'Kale Host', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b08'), 'name': 'Libertas Academica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b0f'), 'name': 'Picateers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b10'), 'name': 'SailPoint Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b15'), 'name': 'Mexuar Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b18'), 'name': 'Carribean International trading', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b19'), 'name': 'Myriad Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b1c'), 'name': 'Neoris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b2a'), 'name': 'Imixs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b2c'), 'name': 'Propertyshark', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b32'), 'name': 'HexaCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b39'), 'name': 'SearchRev', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299b48'), 'name': 'Adaptive Technologies(ATi)', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b54'), 'name': 'Builders Copilot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b5c'), 'name': 'Davai Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b5d'), 'name': 'Billdesk', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b5e'), 'name': 'Mimosa Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b65'), 'name': 'RouteYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b66'), 'name': 'Fancorps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b6b'), 'name': 'BiggerPockets', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b71'), 'name': 'Intelligenes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b72'), 'name': 'Flashants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b79'), 'name': 'Nomadesk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b86'), 'name': 'Stylesight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b8e'), 'name': 'Yerbabuena Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b90'), 'name': 'LooseHead Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b99'), 'name': 'PIEmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b9a'), 'name': 'Connectbeam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ba1'), 'name': 'QFx Solutions Ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ba7'), 'name': 'Raizlabs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ba8'), 'name': 'IT Matters', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bc4'), 'name': 'Helpstream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299bc7'), 'name': 'AirSet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299bd4'), 'name': 'GolterGraphix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bd8'), 'name': 'Chegg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bd9'), 'name': 'Xactly Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bda'), 'name': 'IdeaBlade', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bdd'), 'name': 'Hangout Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299be2'), 'name': 'CheckMarket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299bf0'), 'name': 'Groqit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bfe'), 'name': 'RuffWire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c00'), 'name': 'Vichara Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299c01'), 'name': 'Fresh Web Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c07'), 'name': 'Nealite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c08'), 'name': 'Mandalorian Security Services Ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c10'), 'name': 'Fastmetrics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c12'), 'name': 'Spiral Shell Web LLC', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c13'), 'name': 'SysArc', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c15'), 'name': 'Owner List', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c1c'), 'name': 'DESIGN about TOWN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c1e'), 'name': 'PG Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c28'), 'name': 'LiveHive Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c2f'), 'name': 'Legkokredit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c34'), 'name': 'Parent Teacher Network', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c38'), 'name': 'Blueface', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c3a'), 'name': 'Idiro', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c3e'), 'name': 'CreativeHost Hospedagem', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c3f'), 'name': 'ConSentry Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c40'), 'name': 'LogLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c41'), 'name': 'Sipera Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c48'), 'name': 'Aruba Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c4c'), 'name': 'SEEDCORE GROUP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c50'), 'name': 'The Solution Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c51'), 'name': '3biz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c53'), 'name': 'Zonablu Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c54'), 'name': 'Zen Web Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c55'), 'name': '3Sigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c59'), 'name': 'Web CEO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c5b'), 'name': 'TNC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c60'), 'name': 'Semantra', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c6d'), 'name': 'nextep', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c6f'), 'name': 'PageTraffic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c71'), 'name': 'Quantum Voyage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c7b'), 'name': 'shanghai junda instrument co,ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c85'), 'name': 'PROJECT DIRT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c88'), 'name': 'Qpyn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c90'), 'name': 'Brick Marketing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c9e'), 'name': 'Ziva Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299caa'), 'name': 'Endavo Media and Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cab'), 'name': 'Nabbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299cac'), 'name': 'OnVantage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb0'), 'name': 'Meritia mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb5'), 'name': 'Vidiac', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb8'), 'name': 'Amethon Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cc0'), 'name': 'Trizeon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cc1'), 'name': 'Jobmixi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cc5'), 'name': 'Viocorp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299cda'), 'name': 'Alwayswater', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299cdc'), 'name': 'Atalasoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ce4'), 'name': 'Intellectual Ventures', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ced'), 'name': 'SEO Services Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cf1'), 'name': 'Open Lab', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299cf3'), 'name': 'Jabber', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cf4'), 'name': 'eSchedule', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299cf6'), 'name': 'Securent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d00'), 'name': 'InfoWeapons', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d03'), 'name': 'Optiant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d04'), 'name': 'Elemica', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d05'), 'name': 'Frontline Selling', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d06'), 'name': 'Cupid XL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d19'), 'name': 'Vertica Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d1e'), 'name': 'SK Net Service Company Ltd', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d22'), 'name': 'Alpha SEP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d23'), 'name': 'Ratchet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d24'), 'name': 'Infinity Pharmaceuticals', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d28'), 'name': 'Exaprotect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d38'), 'name': 'Voice123', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d39'), 'name': 'Club Scene Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d49'), 'name': 'Facebookster', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d4b'), 'name': 'CityVoter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d51'), 'name': 'FreyerMartin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d5e'), 'name': 'Beau-coup Wedding Favors', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d60'), 'name': 'Blogdigger', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d61'), 'name': 'Apogee Search', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d62'), 'name': 'KingsIsle Entertainment', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d63'), 'name': 'Enspire Learning', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d6a'), 'name': 'Smiley Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d6f'), 'name': 'OneSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d7b'), 'name': 'Servoy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d7d'), 'name': 'HT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d85'), 'name': 'TESCRA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d87'), 'name': 'Beeby Clark + Meyler', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d96'), 'name': '302designs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d9b'), 'name': 'Horasphere', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d9e'), 'name': 'PetitionSpot', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d9f'), 'name': 'metaio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299da3'), 'name': 'DreamBox Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299daa'), 'name': 'Cramster', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dab'), 'name': 'eWrite', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299db3'), 'name': 'ApartmentRatings', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299db8'), 'name': 'NOTCOT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299db9'), 'name': 'Right90', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dbf'), 'name': 'BridgePose', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dc1'), 'name': 'Exajoule', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dc8'), 'name': 'eDLink Services Pte Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dd0'), 'name': 'DERI', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dd5'), 'name': 'MP3Tunes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299dd6'), 'name': 'HydroPoint Data Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dd8'), 'name': 'BCSG, LLC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dd9'), 'name': 'OQO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ddd'), 'name': 'Eleven2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dde'), 'name': 'BonzaDat', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299de0'), 'name': 'Asian Airfares Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299de1'), 'name': 'India Web Hosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299de5'), 'name': 'Architel LP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299de6'), 'name': 'DataCrunch', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299dee'), 'name': 'Advanced Virtual Surveillance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dfd'), 'name': 'infoFACTORY', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e02'), 'name': 'Big Nerd Ranch Consulting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e08'), 'name': 'LifeMed Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e09'), 'name': 'smashLAB', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e14'), 'name': 'kankan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e19'), 'name': 'ExposureManager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e23'), 'name': 'Verdisoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e3b'), 'name': 'FISCAL Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299e3e'), 'name': 'M2C2 Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e49'), 'name': 'GridFusions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e63'), 'name': 'SDH Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e68'), 'name': 'MyShape', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e6a'), 'name': 'AOptix Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e6b'), 'name': 'EyeSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299e6c'), 'name': 'Kodiak Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e70'), 'name': 'Modo Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e7d'), 'name': 'iPhase Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e81'), 'name': 'Fansoft Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299e82'), 'name': 'PlumChoice', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e92'), 'name': 'Sienconsultant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e98'), 'name': 'Tony Bain Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e9b'), 'name': 'Avaak', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ea7'), 'name': 'PolygonsWild', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ea8'), 'name': 'Invictus Technology solutions (P) Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299eb3'), 'name': 'Precise', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299eb7'), 'name': 'Acknowledgement', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299eb9'), 'name': 'FUSE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ec2'), 'name': 'PayLease', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ec3'), 'name': 'Gumtree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ec4'), 'name': 'Loquo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ecc'), 'name': 'Papercheck', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ed2'), 'name': 'OHWordpress', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299edd'), 'name': 'arth infosoft pvt ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ee0'), 'name': 'Sitecore', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ee3'), 'name': 'NativeX', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ee4'), 'name': 'PropertyBridge', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ee5'), 'name': 'IGG Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ee7'), 'name': 'Gossip Girls', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299eea'), 'name': 'Art2Digital InterMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f0c'), 'name': 'KAYXO', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f0e'), 'name': 'Trailfire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f11'), 'name': 'Kiva Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f13'), 'name': 'ThoseGeeks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f19'), 'name': 'Naughty America', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f1c'), 'name': 'Nexenta Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f21'), 'name': 'Apaja', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f34'), 'name': 'SolFocus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f39'), 'name': 'Saset Healthcare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f3e'), 'name': 'Trunk Archive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f3f'), 'name': 'Happiness Foundation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299f46'), 'name': 'AMF Ventures', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f49'), 'name': 'SpinningYourWeb International', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f4d'), 'name': 'Hoccam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f4e'), 'name': 'Chapter Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f4f'), 'name': 'Vinfolio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f52'), 'name': 'Entellium', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299f53'), 'name': 'Bidaroo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f5b'), 'name': 'Lokalisten', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f5f'), 'name': 'DigitalDeejay', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f66'), 'name': 'Guardium', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299f6b'), 'name': 'ExactTarget', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299f6c'), 'name': 'Vontoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f6f'), 'name': 'iGoDigital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f7d'), 'name': 'Edoceo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f80'), 'name': 'Xceed', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f84'), 'name': 'The Hyperfactory', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f9b'), 'name': 'O3Spaces', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f9c'), 'name': 'Large Animal Games', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f9f'), 'name': 'Microsupply', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299fa4'), 'name': 'Opt-Intelligence', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299fa6'), 'name': 'Thinkingvoice', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fac'), 'name': 'mBLAST', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fad'), 'name': 'Virtual Strategy Magazine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299fb2'), 'name': 'Paralegal Services USA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299fbc'), 'name': 'MX Logic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299fbf'), 'name': 'Cleartext', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299fc0'), 'name': 'FatTail', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299fc2'), 'name': 'Agriya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fc8'), 'name': 'MediaUnbound', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fc9'), 'name': 'Image Metrics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fd0'), 'name': 'Quest Groups', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fd1'), 'name': 'Apigee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ffe'), 'name': 'Vesess', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299fff'), 'name': 'Olivos by Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a006'), 'name': 'Engadget', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a009'), 'name': 'Webgineers', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a00a'), 'name': 'Ukash', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a010'), 'name': 'Xtranormal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a014'), 'name': 'AskMe Corp', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a018'), 'name': 'SharperAgent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a01c'), 'name': 'Goldstar', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a01e'), 'name': 'Carat Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a024'), 'name': 'RigNet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a027'), 'name': 'SeaMobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a029'), 'name': 'Komoku', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a030'), 'name': 'AdECN', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a031'), 'name': 'Screen Tonic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a03c'), 'name': 'ControlCase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a03d'), 'name': 'PokerDIY', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a03e'), 'name': 'SearchBlox', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a051'), 'name': 'Mobile Factory', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a057'), 'name': 'McRaaN Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a060'), 'name': 'C4M', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a067'), 'name': 'BizCorp', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a078'), 'name': 'Syndiant', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a07a'), 'name': 'Bytemobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a07f'), 'name': 'American Safety Associates', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a086'), 'name': 'Floor64', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a087'), 'name': 'Motion Bridge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a089'), 'name': 'Alacris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a091'), 'name': 'Dilogs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a095'), 'name': 'Movidius', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a096'), 'name': 'Pumant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a097'), 'name': 'Kirusa', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a098'), 'name': 'Pharmacy OneSource', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a099'), 'name': 'acerno', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a09b'), 'name': 'Nexaweb Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a09f'), 'name': 'AIKON Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a2'), 'name': 'Mezimedia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a5'), 'name': 'ClickShift', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ae'), 'name': 'MyFreeImplants', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0af'), 'name': 'Liquid Studios', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b0'), 'name': 'Adaptive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b8'), 'name': 'Games2Win', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ba'), 'name': 'Scate Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0bf'), 'name': 'Instablogs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0c4'), 'name': 'Wind Birds', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ca'), 'name': 'semanticlabs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0d4'), 'name': 'Obtiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0da'), 'name': 'Wengo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0df'), 'name': 'ComCorp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0e4'), 'name': 'Arista Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0e7'), 'name': 'ApogeeInvent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ec'), 'name': 'A10 Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f0'), 'name': 'Hitflip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f3'), 'name': 'Blacknight', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f8'), 'name': 'OpenEdit', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f9'), 'name': 'Indiagames', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a104'), 'name': 'XE Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a107'), 'name': 'TourCMS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a10c'), 'name': 'Jataayu Software Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a10e'), 'name': 'BDSoftwares', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a115'), 'name': 'Monavie', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a11a'), 'name': 'Madhouse Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a11b'), 'name': 'Seventymm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a11c'), 'name': 'Blizzard Entertainment', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a122'), 'name': 'Dolphin Geeks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a12b'), 'name': 'Virtuoso Analytic Services', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a134'), 'name': 'Remal IT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a142'), 'name': 'Senario', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a148'), 'name': 'Singing Fish', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a149'), 'name': 'Crescendo Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a154'), 'name': 'UnoLink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a157'), 'name': 'Model Metrics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a15a'), 'name': 'Vox Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a161'), 'name': 'North Storm Media Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a163'), 'name': 'Netviewer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a16a'), 'name': 'Tekriti Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a174'), 'name': 'Xignite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a175'), 'name': 'RadarFind', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a176'), 'name': 'Amart Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a17a'), 'name': 'Brickfish', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a17d'), 'name': 'Neoganda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a182'), 'name': 'Aicio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a18d'), 'name': 'Big Nerd Ranch', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a192'), 'name': 'Sonar6', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a197'), 'name': 'Twin Pines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a19b'), 'name': 'Red Ventures', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19c'), 'name': 'Vividas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19d'), 'name': 'EdgeStream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19f'), 'name': 'Newmerix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a8'), 'name': 'Squarespace', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1aa'), 'name': 'RawVoice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ae'), 'name': 'India Designers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1b7'), 'name': 'LucidLogix Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1bb'), 'name': 'Alliance Card', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c3'), 'name': 'Adoos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c8'), 'name': 'Guruperl', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c9'), 'name': 'EON Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ca'), 'name': 'Dake', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1cc'), 'name': 'Umicom Group Plc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d0'), 'name': 'Ponton Consulting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d6'), 'name': 'Mindity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f1'), 'name': 'Open-Xchange', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a209'), 'name': 'X-PRIME', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a20a'), 'name': 'Datasheet Archive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a20d'), 'name': 'Ecato', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a213'), 'name': 'Trovix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a214'), 'name': 'NFi Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a217'), 'name': 'PicResize', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a219'), 'name': 'HillCast Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a21b'), 'name': 'erento', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a221'), 'name': 'CodeSmith', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a222'), 'name': 'Telerik', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a237'), 'name': 'Zadby', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a239'), 'name': 'Centro', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a23b'), 'name': 'Clearwire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a23f'), 'name': 'SPIL GAMES', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a240'), 'name': 'CTL Europe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a243'), 'name': 'clearTXT', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a24a'), 'name': 'iKobo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a258'), 'name': 'Brain Fingerprinting Laboratories', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a259'), 'name': 'Privaris', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a25a'), 'name': 'Xeround', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a25e'), 'name': 'Arena Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a25f'), 'name': 'TRX Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a260'), 'name': 'BB Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a262'), 'name': 'kidthing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a263'), 'name': 'Media River', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a265'), 'name': 'faberNovel', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a267'), 'name': 'Homes Security Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a287'), 'name': 'Solid State Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a28a'), 'name': 'Quidco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a290'), 'name': 'Verismo Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a294'), 'name': 'Metropolitan Regional Information Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a295'), 'name': 'Booksfree', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a298'), 'name': 'Celebros', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a299'), 'name': 'Thanx Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a29b'), 'name': 'SLI Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2a7'), 'name': 'World On-Demand', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2aa'), 'name': 'Jaincotech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ac'), 'name': 'LINKBYNET', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ad'), 'name': 'Zone-ViP Network', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2b0'), 'name': 'Ealbeni', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2b9'), 'name': 'The Jonah Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2bc'), 'name': 'Logisuite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2d6'), 'name': 'Flipswap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2da'), 'name': 'NineSigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2db'), 'name': 'InnoCentive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2dc'), 'name': 'Cassatt', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e3'), 'name': 'e-dialog', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e4'), 'name': 'KeyStream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e8'), 'name': 'DeepDyve', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2f5'), 'name': 'Tenantplus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2f6'), 'name': 'Zensoft Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2fc'), 'name': 'Populis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ff'), 'name': 'How2Manual', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a30a'), 'name': 'Autotask', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a30b'), 'name': 'Projector PSA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a310'), 'name': 'BitLeap', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a314'), 'name': 'Invictus Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a315'), 'name': 'One True Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a318'), 'name': 'Easy Bill Online', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a319'), 'name': 'Machinima', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a31b'), 'name': 'Finacity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a321'), 'name': 'Illuminex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a326'), 'name': 'Pilot Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a327'), 'name': 'Collabor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a336'), 'name': 'PeerApp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a337'), 'name': 'Memento', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a345'), 'name': 'MarketMentat', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a34f'), 'name': 'Testvinnare i Sverige', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a35a'), 'name': 'Enough Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a35d'), 'name': 'AmeriGlide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a362'), 'name': 'PharmiWeb Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a368'), 'name': 'Listal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a36c'), 'name': 'Cymbet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a36d'), 'name': 'Nantero', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a36e'), 'name': 'SkyPilot Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a380'), 'name': 'Emsi Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a383'), 'name': '32bytes', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a385'), 'name': 'SEOMatrix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a386'), 'name': 'SiteBrand', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a388'), 'name': 'Datacastle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a38e'), 'name': 'Rollstream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a390'), 'name': 'Imagine Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a393'), 'name': 'Stamen Design', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a394'), 'name': 'Apptera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a398'), 'name': 'anaXis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a39a'), 'name': 'NewBay', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3a3'), 'name': 'Pet Airways', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3a6'), 'name': 'Tractis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3aa'), 'name': 'Transitive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ac'), 'name': 'DealStop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ad'), 'name': 'Datachamps', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ba'), 'name': 'Activeweb', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3bc'), 'name': 'Socialwrks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c0'), 'name': 'Capricode', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c2'), 'name': 'Carnegie Speech', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c3'), 'name': 'ascentify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c5'), 'name': 'Tiberium', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c6'), 'name': 'Miniclip', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c7'), 'name': 'Fingertime', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c8'), 'name': 'VicMan Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3cb'), 'name': \"OC'LIANE\", 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d1'), 'name': 'KB_Soft Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d8'), 'name': 'Saurus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3e2'), 'name': 'Fusionet24', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3e6'), 'name': 'Mindreef', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f1'), 'name': 'Attenex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f3'), 'name': 'Cataphora', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ff'), 'name': 'Xendex Holding', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a408'), 'name': 'Incredimail', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a414'), 'name': 'Amadesa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a418'), 'name': 'Epok', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a41c'), 'name': 'Symphony Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a41d'), 'name': 'Scio Consulting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a421'), 'name': 'Lunascape', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a422'), 'name': 'Travel Insights', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a42a'), 'name': 'Opelin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a42f'), 'name': 'Blogosfere', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a435'), 'name': 'TerraSoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a439'), 'name': 'Zepol', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a43c'), 'name': 'HotLinuxJobs', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a43e'), 'name': 'Actus Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a440'), 'name': 'ConstructionDeal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a442'), 'name': 'Phibble', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a443'), 'name': 'Exanet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a446'), 'name': 'Weinstock Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a44d'), 'name': 'Hosted Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a454'), 'name': 'Nuxeo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a45e'), 'name': 'WunderWorks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a45f'), 'name': 'FirstDIBZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a461'), 'name': 'SpeedyPin', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a468'), 'name': 'Manitoulin Holdings', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a469'), 'name': 'WiChorus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a46b'), 'name': 'Darkstrand', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a46c'), 'name': 'Active Online', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a478'), 'name': 'Nipple Charms', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a485'), 'name': 'Quarkis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a486'), 'name': 'LogMeIn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a48f'), 'name': 'Navio Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a493'), 'name': 'ForeSoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a495'), 'name': 'ClearSight Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4a6'), 'name': 'dotBERLIN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4a9'), 'name': 'Megawatt PR', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ab'), 'name': 'net-m', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ac'), 'name': 'Homethinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4af'), 'name': 'Momail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4b1'), 'name': 'Green Pages Australia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c0'), 'name': 'Xceligent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c1'), 'name': 'Commercial IQ', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c3'), 'name': 'Mercury Grove', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4cb'), 'name': 'Vayan Marketing Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ce'), 'name': 'Host Color', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4d1'), 'name': 'Hirebridge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4d2'), 'name': 'Clew', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4da'), 'name': 'Campusbooks4less', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4db'), 'name': 'Extendi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4de'), 'name': 'MyPraize', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e1'), 'name': 'Carbonmade', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e3'), 'name': 'Central Databank', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e4'), 'name': 'MediBANK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e8'), 'name': 'authorGEN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4f9'), 'name': 'Double D Pools', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a4fa'), 'name': 'ICON Technology Services', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a4fc'), 'name': 'AAfter Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a501'), 'name': 'Verix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a503'), 'name': 'Cubic Compass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a505'), 'name': 'BOLDstreet Wireless', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a509'), 'name': 'zyntroPICS', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a50e'), 'name': 'SoundNotes Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a513'), 'name': 'Three Melons', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a524'), 'name': 'Market2Lead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a530'), 'name': 'Bit9', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a535'), 'name': 'Tedemis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a537'), 'name': 'Unicorn Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a53f'), 'name': 'Hi-Midia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a540'), 'name': 'Banzai Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a544'), 'name': 'Kinal Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a555'), 'name': 'Probability PLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a557'), 'name': 'Playtech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a55d'), 'name': 'SMA Informatics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a561'), 'name': 'OpenMethods', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a56f'), 'name': 'Liquid Fusion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a571'), 'name': 'Neurotic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a57b'), 'name': 'NETCRAW IT', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a57c'), 'name': 'Central Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a57e'), 'name': 'Best Before Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a582'), 'name': 'Zeraphina', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a583'), 'name': 'Call Genie', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a588'), 'name': 'p3 Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a58d'), 'name': 'Near-Time', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a590'), 'name': 'MotionApps', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a591'), 'name': 'SamKnows Limited', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a594'), 'name': 'iPixCel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a595'), 'name': 'Volicon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a596'), 'name': 'Masstech Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a597'), 'name': 'SnapStream Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a59e'), 'name': 'SpinnakerPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5a0'), 'name': 'Editor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5a5'), 'name': 'Koalog', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5aa'), 'name': 'Jake', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ab'), 'name': 'Epispeed', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ac'), 'name': 'Visonys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5b1'), 'name': 'Nexthink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ba'), 'name': 'CrownPeak', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a5be'), 'name': 'Refinery29', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ca'), 'name': 'Ridespring', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a5cd'), 'name': 'Social Knowledge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a5cf'), 'name': 'Escalate Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d0'), 'name': 'Decru', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d1'), 'name': 'Real Pro Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d5'), 'name': 'MLB Advanced Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a5db'), 'name': 'temetra', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e1'), 'name': 'Collective Wisdom', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e4'), 'name': 'Liferay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a600'), 'name': 'Proxama', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a610'), 'name': 'Ramp Technology Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a615'), 'name': 'Web:Studio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a617'), 'name': 'Amaze', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a61d'), 'name': 'SmartEquip', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a624'), 'name': 'Azuro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a626'), 'name': 'G-uniX Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a627'), 'name': 'Webgains UK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a62e'), 'name': 'Gather', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a630'), 'name': 'Adjust', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a636'), 'name': 'Brightegg', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a63e'), 'name': 'Expert Online Services, LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a642'), 'name': 'CampusEAI', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a644'), 'name': 'Career Crown International', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a64a'), 'name': 'AppLabs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a64e'), 'name': 'MarketForward', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a651'), 'name': 'Digital Base', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a658'), 'name': '[is value]', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a659'), 'name': 'White Wall Web', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a65b'), 'name': 'Holy Bible Trivia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a65e'), 'name': 'Discogs', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a661'), 'name': 'Nodeta', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a663'), 'name': 'Fishlabs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a665'), 'name': 'OneCommunity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a668'), 'name': 'Contactology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a66d'), 'name': 'DispatchThis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a67a'), 'name': 'Elevate Visual Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a681'), 'name': 'Nanomatic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a68b'), 'name': 'US Chemist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a68f'), 'name': 'blogSpirit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a69b'), 'name': 'Ad Giants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a69d'), 'name': 'The Building Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a6'), 'name': 'Tableau Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b1'), 'name': 'Vontu', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b3'), 'name': 'Awareness Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b6'), 'name': 'cFares', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ba'), 'name': 'Rainbow Partners', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6c4'), 'name': 'Amarok Multimedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6c9'), 'name': 'StillSecure', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ca'), 'name': 'iPerceptions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d5'), 'name': 'OpSource', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d8'), 'name': 'SeeReal Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ee'), 'name': 'Solavista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f1'), 'name': 'Proxibid', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f5'), 'name': 'Pronto Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a704'), 'name': 'Dot Com Infoway', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a706'), 'name': 'Consileon Business Consultancy GmbH', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a70e'), 'name': 'Mega AS Consulting Ltd', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a717'), 'name': 'Viigo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a719'), 'name': 'Ekahau', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a720'), 'name': 'Quantivo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a728'), 'name': 'Masternaut UK', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a72b'), 'name': 'speroware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a731'), 'name': 'Forces Reunited', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a73e'), 'name': 'Sencia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a73f'), 'name': 'Altierre', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a741'), 'name': 'Arc90', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a748'), 'name': 'Aftercad Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a74f'), 'name': 'The WebMan Network', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a753'), 'name': 'tenCube', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a754'), 'name': 'BAK2u', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a757'), 'name': 'IP2Location', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a758'), 'name': 'ZIPCodeWorld', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a759'), 'name': 'FraudLabs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a75b'), 'name': 'Valuebound', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a762'), 'name': 'SnapGalaxy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a763'), 'name': 'FK3', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a768'), 'name': 'Rhythm NewMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a769'), 'name': 'op5', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a775'), 'name': 'Bitam', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a77c'), 'name': 'Fonality', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a77d'), 'name': 'Novafora', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a77e'), 'name': 'Kapston', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a783'), 'name': 'NetraMind', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a78c'), 'name': 'Allegiance', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a78d'), 'name': 'ScienceLogic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a79e'), 'name': 'CoKinetic Systems Corp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a79f'), 'name': 'Enversa Companies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a3'), 'name': 'HPC Systems Incorporated', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a7'), 'name': 'tBits Global', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a8'), 'name': 'iQ Content', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7b4'), 'name': 'VinayRas Infotech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7b5'), 'name': 'SMAF associates Law Firm', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a7c6'), 'name': 'Cellopoint', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a7cf'), 'name': 'SecondMarket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d2'), 'name': 'Dust Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d3'), 'name': 'E2open', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d7'), 'name': 'SenSage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7df'), 'name': 'VirnetX', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e3'), 'name': 'WiredReach', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e5'), 'name': 'Test of Time Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e8'), 'name': 'Free Range Data', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7ec'), 'name': 'Ubuntu', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7f8'), 'name': 'ReachForce', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7fb'), 'name': 'PG Newsletter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7fc'), 'name': 'Peperoni', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a80b'), 'name': 'Pixelactive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a812'), 'name': 'Lambda Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a81b'), 'name': 'Shutterstock', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a81c'), 'name': 'AbsolutVision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a81d'), 'name': 'eConversions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a81f'), 'name': 'Clear2Pay', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a821'), 'name': 'Manthan Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a82a'), 'name': 'Jaspersoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a831'), 'name': 'Focus-N-Fly', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a834'), 'name': 'Nstein Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a83a'), 'name': 'JiWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a83b'), 'name': 'Trilibis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a83e'), 'name': 'GIM Geomatics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a842'), 'name': 'Asetek', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a843'), 'name': 'Himshilp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a845'), 'name': 'eBillme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a84b'), 'name': 'Stanfy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a84d'), 'name': 'Sky Italia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a84f'), 'name': 'Oberon Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a850'), 'name': 'FileVision', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a858'), 'name': 'Smart Online', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a85c'), 'name': 'Influent', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a861'), 'name': 'QualSoft Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a867'), 'name': 'A2zdesignwork', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a868'), 'name': 'StreamGuys', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a86a'), 'name': 'eSpace', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a86b'), 'name': 'Sagebit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a86c'), 'name': 'FlightStats', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a871'), 'name': 'e4e', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a877'), 'name': 'Envivio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a879'), 'name': 'CouponCabin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a87a'), 'name': 'mPay Gateway', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a87d'), 'name': 'AMP Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a882'), 'name': 'Discountbattery', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a883'), 'name': 'Radha Krishna Portal', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a885'), 'name': 'Bright View Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a886'), 'name': 'Vantos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a887'), 'name': 'WhiteHat Security', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a889'), 'name': 'Hanger Network In-Home Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a88f'), 'name': 'FireEye', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a890'), 'name': 'EoPlex Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a893'), 'name': 'OmniGuide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a898'), 'name': 'SupplierSelect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a899'), 'name': 'Soul Oyster Web Studios', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a89f'), 'name': 'College Prowler', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b0'), 'name': 'NTRglobal', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b8'), 'name': 'RGB Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8bc'), 'name': 'MyOtherDrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a8c4'), 'name': 'Symplectic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d0'), 'name': 'Stratavia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d4'), 'name': 'Anystream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d6'), 'name': 'Aconex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d9'), 'name': 'beganto Incorporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8da'), 'name': 'LawCrossing', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8dd'), 'name': 'BCG Attorney Search', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e2'), 'name': 'SageQuest', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e3'), 'name': 'Frumster', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e5'), 'name': 'EasyDate', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a8ee'), 'name': 'SeeSaw Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a8f4'), 'name': 'Provade', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a900'), 'name': 'Concentric Sky', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a901'), 'name': 'Mansueto Ventures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a905'), 'name': 'MetaSpring', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a909'), 'name': 'TwoCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a90c'), 'name': 'Otay Mesa Data Center', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a916'), 'name': 'Mobitween', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a919'), 'name': 'Traffic Marketplace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a91c'), 'name': 'Proofpoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a91d'), 'name': 'Battery Info', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a920'), 'name': 'Luzern Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a923'), 'name': 'Highwinds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a924'), 'name': 'Volas Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a93d'), 'name': 'Secure64', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a946'), 'name': 'Safari Books Online', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a94a'), 'name': 'EB2 International', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a952'), 'name': 'Vividity Consulting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a953'), 'name': 'Sonopia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a954'), 'name': 'Silver Spring Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a955'), 'name': '3Leaf', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a95d'), 'name': 'Mocana', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a965'), 'name': 'Liquid Engines', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a96b'), 'name': 'WageWorks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a96e'), 'name': 'InTouch Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a96f'), 'name': 'Avega Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a970'), 'name': 'Traverse Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a975'), 'name': 'ServusXchange, LLC', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a97c'), 'name': 'Hammerhead Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a97d'), 'name': 'Neopolitan Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a97e'), 'name': 'Packet Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a985'), 'name': 'webwork', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a986'), 'name': 'Convate Consultancy Services Private Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a989'), 'name': 'Hannon Hill', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a994'), 'name': 'InfoEther', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a996'), 'name': 'thoughtbot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a99f'), 'name': 'Advameg', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a1'), 'name': 'Koffeeware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a4'), 'name': 'Netopia System', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a7'), 'name': 'AutoClaims Direct', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9ac'), 'name': 'RealityWanted', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9b3'), 'name': 'Five9', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a9bf'), 'name': 'Esotop Options', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9c3'), 'name': 'Taueret Laboratories', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9c9'), 'name': 'WildBlue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9cd'), 'name': 'Jentro Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d7'), 'name': 'Legal Authority', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9db'), 'name': 'ASOCS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9dc'), 'name': 'Affinity Express', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9df'), 'name': 'Adeptia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9eb'), 'name': 'Jasper Wireless', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9ed'), 'name': 'Iken Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9f3'), 'name': 'VoloMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9f7'), 'name': 'Crossbeam Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fb'), 'name': 'musicSUBMIT', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fc'), 'name': 'AllStarWeek', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa12'), 'name': 'Clarabridge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa13'), 'name': 'Applied Identity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa14'), 'name': 'Clarus Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa22'), 'name': 'TradeKey', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa27'), 'name': 'Spring Mobile Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa2e'), 'name': 'FierceMarkets', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa3e'), 'name': 'ONStor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa41'), 'name': 'RingCube Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa42'), 'name': 'Meru Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa49'), 'name': 'Transera Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa50'), 'name': 'Ravenflow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa54'), 'name': 'Rage Frameworks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa61'), 'name': 'Dropfire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa6e'), 'name': 'Apredica', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa75'), 'name': 'Mondowave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa79'), 'name': 'Cortina Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7a'), 'name': 'Aquest Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7e'), 'name': 'Otaku-Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7f'), 'name': 'Mu Dynamics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa81'), 'name': 'Multigig', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa84'), 'name': 'Sensory Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa85'), 'name': 'ChipVision Design', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8a'), 'name': 'TriCipher', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8c'), 'name': 'ID Analytics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8e'), 'name': 'Achronix Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa93'), 'name': 'NetDevices', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa94'), 'name': 'Double Fusion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa95'), 'name': 'Aicent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa97'), 'name': 'Mobile17', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9d'), 'name': 'Crosstrade Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9e'), 'name': 'GoodCore Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa0'), 'name': 'The Big Domain', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa3'), 'name': 'Mantara', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa7'), 'name': 'Arteris', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaab'), 'name': 'Open Technology Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aab2'), 'name': 'LeadPoint', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aab4'), 'name': 'Koves Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aac8'), 'name': 'Digital Face', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aacd'), 'name': 'Mobillcash', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aad4'), 'name': 'SmartTurn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aad6'), 'name': 'Exeros', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aad8'), 'name': 'Siperian', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aadb'), 'name': 'MyRealPage', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aae7'), 'name': 'Tudou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aae8'), 'name': 'Tendril', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf4'), 'name': 'AppliedIRC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf6'), 'name': 'Daimon', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf7'), 'name': 'PC Handyman', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aafa'), 'name': 'Helldesign', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaff'), 'name': 'Alachisoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab04'), 'name': 'Digital Performance', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab09'), 'name': 'Talldude Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab0b'), 'name': 'Small Business Technology Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab13'), 'name': 'Open-Mind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab16'), 'name': 'Ideup', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab17'), 'name': 'Adaptive Planning', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab18'), 'name': 'FunAdvice', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab1e'), 'name': 'PayCommerce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab24'), 'name': 'Programming Designs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab2b'), 'name': 'Fidelis Security Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab2e'), 'name': 'Azalea Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab31'), 'name': 'Nangate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab33'), 'name': 'Silicon Clocks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab35'), 'name': 'NorthStar Systems International', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab37'), 'name': 'Daddy Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab38'), 'name': 'DisplayLink', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab39'), 'name': 'ExaGrid Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab3e'), 'name': 'AdVerit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab40'), 'name': 'VeriSilicon Holdings', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab45'), 'name': 'Optimal Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab48'), 'name': 'F-Origin', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4b'), 'name': 'AscenVision Technology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4c'), 'name': 'Rapport', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4d'), 'name': 'WebLayers', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4e'), 'name': 'Optichron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab51'), 'name': 'Siimpel Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab56'), 'name': 'Webrageous Studios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab5a'), 'name': 'Echospin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab67'), 'name': 'Alpheon Corporation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab6a'), 'name': 'BrickHouse Security', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab74'), 'name': 'MCorp Consulting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7f'), 'name': 'Infrant Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab84'), 'name': 'Certess', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab8e'), 'name': 'RF Nano Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab92'), 'name': 'RALLY! Education', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab96'), 'name': 'GetPrice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab99'), 'name': 'Focus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9d'), 'name': 'Naverus', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9e'), 'name': 'LogRhythm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9f'), 'name': 'Breach Security', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aba8'), 'name': 'Zeugma Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abaf'), 'name': 'Ruckus Wireless', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abba'), 'name': 'BrightTALK', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529abbc'), 'name': 'scanR', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529abc5'), 'name': 'QSecure', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529abca'), 'name': 'PhoneFactor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abd1'), 'name': 'Asoka', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abdb'), 'name': 'Artifact Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abe5'), 'name': 'Futurelab', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529abe8'), 'name': 'CellarTracker!', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abea'), 'name': 'Team Forrest', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529abf6'), 'name': 'All My Data', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac02'), 'name': 'BroadLight', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0a'), 'name': 'Voxify', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0e'), 'name': 'Tripbase', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0f'), 'name': 'Broadband Genie', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac18'), 'name': 'Wiretree', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac1c'), 'name': 'Tejas Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ac21'), 'name': 'RentLinx', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac23'), 'name': 'Rhxo Technology Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac25'), 'name': 'WhatCounts', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac28'), 'name': 'Clear Light Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac2e'), 'name': 'SparkBase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac39'), 'name': 'Rozdoum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac43'), 'name': 'Cierzo Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac44'), 'name': 'Touchboards', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac45'), 'name': 'NetAsturias Internet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ac4d'), 'name': '6th Sense Analytics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac55'), 'name': 'Triforma - Innotiimi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac62'), 'name': 'Unkasoft Advergaming', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac64'), 'name': 'Voztelecom', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac6b'), 'name': 'QuickPlay Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac75'), 'name': 'CloudShield Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac83'), 'name': 'Reactor Zero', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aca6'), 'name': 'GridApp Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acb0'), 'name': 'TalkXbox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acb6'), 'name': 'Liquid Air Lab', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acbe'), 'name': 'Mobigame', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529acc9'), 'name': 'GAMEVIL', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529acd2'), 'name': 'Chillingo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529acdb'), 'name': 'TransGaming', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aced'), 'name': 'Flarium', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529acee'), 'name': 'OnePIN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acf4'), 'name': 'Telegent Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529acf8'), 'name': 'Remobo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad00'), 'name': 'Polimetrix', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad01'), 'name': 'YouGov', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad03'), 'name': 'Parade Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad06'), 'name': 'ITM Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0a'), 'name': 'Yolk', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0c'), 'name': 'Symwave', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0d'), 'name': 'Eka Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0e'), 'name': 'Airband Communications Holdings', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad13'), 'name': 'TechAspect Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad14'), 'name': 'Signiant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad17'), 'name': 'PrimeSyn Lab', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad18'), 'name': 'Blue Sky POS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad1a'), 'name': 'RockeTalk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad20'), 'name': 'Extreme Planner', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad21'), 'name': 'Period Three', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad23'), 'name': 'TheInfoPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad28'), 'name': 'Crossing Automation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad29'), 'name': 'Untangle', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad2d'), 'name': 'Kealia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad35'), 'name': 'UpSpring', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad37'), 'name': 'Corefino', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad3b'), 'name': 'Vembu Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad48'), 'name': 'Emporis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad4d'), 'name': 'Saffron Brand Consultants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad52'), 'name': 'Tehuti Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad57'), 'name': 'Naseeb Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad59'), 'name': 'Aristos Logic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad5e'), 'name': 'HeySpace', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad61'), 'name': 'Blakol Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad66'), 'name': 'Alterwave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad6b'), 'name': 'Assent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad76'), 'name': 'Speedshape', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad77'), 'name': 'DuneNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad78'), 'name': 'FirstRain', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad79'), 'name': 'HiWired', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7c'), 'name': 'GoodtoBeYou', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7f'), 'name': 'HYFN', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad8a'), 'name': 'CacheLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad90'), 'name': 'Genstar Capital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad97'), 'name': 'Qbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad98'), 'name': 'Transport Marketplace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9b'), 'name': 'Power Analog Microelectronics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9c'), 'name': 'Tymphany', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9d'), 'name': 'Slim Devices', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9f'), 'name': 'Gamestop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ada2'), 'name': 'MediaPhy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ada3'), 'name': 'NoiseFree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529adab'), 'name': 'Nexway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529adac'), 'name': 'C9 Radio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529adb0'), 'name': 'Mobius Microsystems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adba'), 'name': 'Intelleflex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529adbf'), 'name': 'TuVox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adc1'), 'name': 'Backchannelmedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adc3'), 'name': 'Spreadtrum Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529adc9'), 'name': 'Intelliden', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adcc'), 'name': 'Escapio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529add2'), 'name': 'Bluestreak Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529add6'), 'name': 'Acquirelists', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529add7'), 'name': 'ReflexPhotonics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529addb'), 'name': 'Solid State Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529addd'), 'name': 'NetInternals', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ade0'), 'name': 'Nanoradio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ade6'), 'name': 'Storwize', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adeb'), 'name': 'TimeXchange', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adf6'), 'name': 'Devicescape', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adf7'), 'name': 'Glu Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae09'), 'name': 'Woven Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae0a'), 'name': 'Apprion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae11'), 'name': 'Copan Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae19'), 'name': 'Appulate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae26'), 'name': 'Firethorn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae28'), 'name': 'hyperWALLET Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae2d'), 'name': 'ArcoStream', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae2e'), 'name': 'invu technology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae31'), 'name': 'Vantrix', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae3e'), 'name': 'Websiteprojects', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae48'), 'name': 'MessageCast', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae49'), 'name': 'Pixelita Designs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae4a'), 'name': 'Nilesh Roy Consultancy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae51'), 'name': 'Racked Hosting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae54'), 'name': 'Yakaz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae57'), 'name': 'Echopass Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae58'), 'name': 'Quantum Secure', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae59'), 'name': 'Bizclickusa', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5a'), 'name': 'Neocase Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5c'), 'name': 'Atrenta', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5d'), 'name': 'Riverbed Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5f'), 'name': 'RADLIVE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae60'), 'name': 'Magnum Semiconductor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae61'), 'name': 'M-Factor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae69'), 'name': 'BT Fresca', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6c'), 'name': 'TranslateMedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6d'), 'name': 'Attensity', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae72'), 'name': 'Serus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae74'), 'name': 'SpaceClaim', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae78'), 'name': 'Team Rubber', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7b'), 'name': 'OpVista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7e'), 'name': 'Sophic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7f'), 'name': 'MiNOWireless', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae85'), 'name': 'Assembla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae89'), 'name': 'Mazu Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae8b'), 'name': 'Traiana', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae8d'), 'name': 'Staccato Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae93'), 'name': 'Luminary Micro', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae9a'), 'name': 'Bridgestream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae9c'), 'name': 'Eyedea Lab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aea2'), 'name': 'Marble Security', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aea4'), 'name': 'Carrier IQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aea7'), 'name': 'Tobii Technology', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aea9'), 'name': 'Gennio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb1'), 'name': 'ZVUE', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb6'), 'name': 'Acopia Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aebc'), 'name': 'Hidden City Games', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aec5'), 'name': 'AdsTamil', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aeca'), 'name': 'VidSys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aecf'), 'name': 'Xelerated', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aed6'), 'name': 'Neoconix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aed7'), 'name': 'Visage Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aedb'), 'name': 'TechForward', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aedc'), 'name': 'Travel Distribution Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aedf'), 'name': 'i-Jet Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aee3'), 'name': 'Squeejee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aee6'), 'name': 'OnRequest Images', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aee7'), 'name': 'Rigel Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aefa'), 'name': 'Celeno', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aefd'), 'name': 'Vista Research', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af02'), 'name': 'NextHop Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af09'), 'name': 'SUPERAntiSpyware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af0c'), 'name': 'Code Authority Custom Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af0d'), 'name': 'VirtuOz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af10'), 'name': 'Litepoint', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af1e'), 'name': 'Jimojo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af27'), 'name': 'Neverblue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af2a'), 'name': 'CipherMax', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af2b'), 'name': 'Qihoo 360 Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af2c'), 'name': 'Medio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af36'), 'name': 'LuckyDogJobs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af3d'), 'name': 'CipherTrust', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af42'), 'name': 'Septagon Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af43'), 'name': 'Sittercity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af46'), 'name': 'TheMarkets', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af4a'), 'name': 'Etology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af4b'), 'name': 'Avnera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af54'), 'name': 'Manifest Digital', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af5a'), 'name': 'Technology In Ministry', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af64'), 'name': 'Bharosa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af66'), 'name': 'Invarium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af6e'), 'name': 'Oversi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af73'), 'name': 'BigSoccer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af74'), 'name': 'Phu Concepts', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af7b'), 'name': 'MerchantRun', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af7d'), 'name': 'Masabi', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af7e'), 'name': 'NeoPath Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af7f'), 'name': 'Amimon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af80'), 'name': 'Casabi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af8f'), 'name': 'Spoiled Milk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af90'), 'name': 'MediaMall Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af9b'), 'name': 'SportSpyder', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af9d'), 'name': 'ELP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afa3'), 'name': 'Crea', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529afab'), 'name': 'Skycross', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afb3'), 'name': 'VSC Consulting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529afb5'), 'name': 'Power-battery', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529afba'), 'name': 'FQcode True Traceability', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afbd'), 'name': 'Natasha', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afc7'), 'name': 'LeadsMarketer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afc8'), 'name': 'Rassami', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529afca'), 'name': 'Verve Mobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afce'), 'name': 'WANdisco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afd0'), 'name': '247techsupport', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afd3'), 'name': 'Metricus', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afe0'), 'name': 'Cambridge Broadband Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afe1'), 'name': 'TopCoder', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afef'), 'name': 'Litmus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aff1'), 'name': 'Axeda', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aff4'), 'name': 'Spotigo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aff8'), 'name': 'Selatra', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b006'), 'name': 'ABCO TECHNOLOGY', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b00b'), 'name': 'GaimTheory', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b014'), 'name': 'Backbase', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b01a'), 'name': 'Lamingo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b01c'), 'name': 'Asta Publications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b025'), 'name': 'Adysoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b02c'), 'name': 'ITI Scotland', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b02e'), 'name': 'EPi Engineering Psychology Institute', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b033'), 'name': 'Weblogs SL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b036'), 'name': 'DoublePositive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b03a'), 'name': 'Designing Digitally', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b03b'), 'name': 'CallMiner', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b03f'), 'name': 'Perceptis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b041'), 'name': 'Silicon Stratgies Marketing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b04f'), 'name': 'Icreon Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b051'), 'name': 'Shriv Commedia Solutions Pvt Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b052'), 'name': 'Leo TechnoSoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b054'), 'name': 'Leadzoomer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b063'), 'name': 'Audacious Inquiry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b066'), 'name': 'Headline Shirts', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b06f'), 'name': 'WIT Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b071'), 'name': 'eModeration', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b081'), 'name': 'PawSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b083'), 'name': 'Rocket Online Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b088'), 'name': 'Alliance of Action Sports', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b090'), 'name': 'Digital Marketing Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b091'), 'name': 'Free-Rentals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b095'), 'name': 'HomeWelcome', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b097'), 'name': 'PointSpa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b098'), 'name': 'Artionet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b099'), 'name': 'Expathos', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b09a'), 'name': 'Askedweb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0a2'), 'name': 'Vorsite', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0a7'), 'name': 'Full Proof', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0af'), 'name': 'TelTech Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0b1'), 'name': 'Vertical Measures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0bd'), 'name': 'Mobile-XL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ca'), 'name': 'Knowledge Center', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0cf'), 'name': 'A1-4 Electronics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d4'), 'name': 'Condesa', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d6'), 'name': 'Dot Com Infoway Australia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d7'), 'name': 'BPower House', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ed'), 'name': 'HellHouse Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f1'), 'name': 'Online Chess LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f7'), 'name': 'Sand Software Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f8'), 'name': 'Transcensus', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b0fa'), 'name': 'Jahia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ff'), 'name': 'Bizanga', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b101'), 'name': 'Wire2Air', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b10b'), 'name': 'EyeBuyDirect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b110'), 'name': 'Chronos Process Integration', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b112'), 'name': 'Black Soft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b11d'), 'name': 'Everyday Health', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b121'), 'name': 'TimeLog', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b125'), 'name': 'LLONA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b126'), 'name': 'Punch Entertainment', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b12b'), 'name': 'MAG STUDIOS', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b12d'), 'name': 'KISS Intelligent Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b131'), 'name': 'Portero', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b139'), 'name': 'Velneo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b13e'), 'name': 'Splash Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b147'), 'name': 'Frontline Direct', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b151'), 'name': 'UPS Store', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b153'), 'name': 'StudyStack', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b159'), 'name': 'Geewa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b15d'), 'name': 'Turtle Entertainment', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b168'), 'name': 'Corebridge', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b16b'), 'name': 'Major League Gaming', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b16c'), 'name': 'DigitalGuestList', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b171'), 'name': 'Pivotal Concept', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b174'), 'name': 'SPAMfighter', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b17e'), 'name': 'TicketBiscuit', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b183'), 'name': 'Sourcefire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b184'), 'name': 'Corvigo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b18d'), 'name': 'DataPreserve', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b18e'), 'name': 'DERescue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b192'), 'name': 'HAPPYneuron', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b19a'), 'name': 'MediaRich', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1ab'), 'name': 'iTOK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b4'), 'name': 'dsignz media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b5'), 'name': 'Air Astana Airlines', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b6'), 'name': 'IndiGo Airlines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b7'), 'name': 'Skybus Airlines', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b1c8'), 'name': 'SEOValley', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d2'), 'name': 'Intercasting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d4'), 'name': 'ThirdFrameStudios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1da'), 'name': 'Hitachi GST', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e1'), 'name': 'Netmaps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e6'), 'name': 'Enclarity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e7'), 'name': 'Rivulet Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1eb'), 'name': 'Apalon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b1ed'), 'name': 'Rightmove Overseas', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1f3'), 'name': 'Soliton Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fe'), 'name': 'Brothersoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b213'), 'name': 'Metapilot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b214'), 'name': 'Metacast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b22d'), 'name': 'VisConPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b22e'), 'name': 'Concrete', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b230'), 'name': '360is', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b239'), 'name': 'nLayer Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b23a'), 'name': 'AW CompuTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b24b'), 'name': 'Tizor Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b24c'), 'name': 'Netezza', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b24d'), 'name': 'M3X Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b255'), 'name': 'AllYearbooks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b259'), 'name': 'Stantum', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b25a'), 'name': 'Gnomz Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b25b'), 'name': 'Monarch Teaching Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b26b'), 'name': 'Umbraco', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b280'), 'name': 'IS Decisions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b289'), 'name': 'Ekartha', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b28f'), 'name': 'Tech Support 4 NYC', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b294'), 'name': 'Netboot', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b29e'), 'name': 'MPMsoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b2a1'), 'name': 'Cool Components', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2a4'), 'name': 'Conveneer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ae'), 'name': 'Across Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2af'), 'name': 'Geebo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2b7'), 'name': 'Evon Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2b8'), 'name': 'Ifline Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2bb'), 'name': 'Milcord LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b2bd'), 'name': 'NewVoiceMedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c4'), 'name': 'Preface Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c7'), 'name': 'Dyn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ce'), 'name': 'Codesion', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d2'), 'name': 'Binserver', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d6'), 'name': 'CereProc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2da'), 'name': 'Unity Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2e9'), 'name': 'Topala Software Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ec'), 'name': 'Lightwaves', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ee'), 'name': 'Sharpeffect', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ef'), 'name': 'Fabchannel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2f9'), 'name': 'fosiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2fb'), 'name': 'Real estate SKY', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2fd'), 'name': 'quietrevolution', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b313'), 'name': 'CalFinder', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b318'), 'name': 'GlobalPrint Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b31c'), 'name': 'StepUp Commerce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b31d'), 'name': 'SchemaLogic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b31e'), 'name': 'Verdiem', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b321'), 'name': 'InPhase Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b326'), 'name': 'Conmio', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b328'), 'name': 'Safend', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b329'), 'name': 'Dmailer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b32a'), 'name': 'CoSoSys', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b32e'), 'name': 'txtNation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b346'), 'name': 'Xact Check', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b347'), 'name': 'BUGBYTE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b348'), 'name': 'Ubequity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b34b'), 'name': 'ixi mobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b356'), 'name': 'Gloto', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b365'), 'name': 'Deep Shift Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b36e'), 'name': 'Menexis Merchant Account', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b381'), 'name': 'Liberty League International', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b387'), 'name': 'One Call Now', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b38b'), 'name': 'ARKeX', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b38c'), 'name': 'Atraverda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b38e'), 'name': 'CamSemi', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b38f'), 'name': 'Futuretec', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b391'), 'name': 'Chronicle Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b392'), 'name': 'TBG Security', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b394'), 'name': 'daysoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b396'), 'name': 'Fotech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b398'), 'name': 'Heartscape', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b399'), 'name': 'Vialect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b39b'), 'name': 'RedVision System', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3a5'), 'name': 'Touchpaper', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3ae'), 'name': 'Javaground', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3b6'), 'name': 'Zenprise', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b3c8'), 'name': 'StudioEmotion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3c9'), 'name': 'Opobox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b3cc'), 'name': 'ImageDeposit', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b3cf'), 'name': 'Kiala', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d0'), 'name': 'picoChip', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d8'), 'name': 'Adityaa Call Centre', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3dc'), 'name': 'Achates Power', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b408'), 'name': 'Hudson International Properties', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b40b'), 'name': 'Production Media Network', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b410'), 'name': 'Networks in Motion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b411'), 'name': 'Winmark Business Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b412'), 'name': 'deBruyn Design + Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b41c'), 'name': 'ActiveCampaign', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b421'), 'name': 'Axle IT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b423'), 'name': 'Classic Informatics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b42c'), 'name': 'NetMotion Wireless', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b42e'), 'name': 'Rushmore Digital', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b452'), 'name': 'Elephant Pharm', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b45c'), 'name': 'Lumar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b45f'), 'name': 'ToonUps', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b460'), 'name': 'Botonomy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b464'), 'name': 'Personal Estate Manager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b466'), 'name': 'Lockstep Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b467'), 'name': 'House Party', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b468'), 'name': 'FiberZone Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b46d'), 'name': 'MediaWorks 7', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b46e'), 'name': 'Verisim', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b472'), 'name': 'Zinwave', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b475'), 'name': 'Impulse Accelerated Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b479'), 'name': 'Holiday Watchdog', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b47c'), 'name': 'financialjoe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b486'), 'name': 'Adventure Central', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b48a'), 'name': 'Tatto Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48b'), 'name': 'Jresearch Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48e'), 'name': 'Commex Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48f'), 'name': '25 Pixels Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b497'), 'name': 'mSnap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b498'), 'name': 'SmartReply', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b49c'), 'name': 'Noise Industries', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b49f'), 'name': 'MC+A', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b4a3'), 'name': 'Ardian', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4a7'), 'name': 'AOI Marketing Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4aa'), 'name': 'Infobright', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4b2'), 'name': 'Site Mafia Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4b8'), 'name': 'Transfer To', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4bc'), 'name': 'Clickulate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c0'), 'name': 'Owlient', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c1'), 'name': 'DecalDriveway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b4d0'), 'name': 'Azteria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4e5'), 'name': 'Signup Anytime', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4e9'), 'name': 'goviral', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4f6'), 'name': 'mjunction services limite', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b4fd'), 'name': 'D2V', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4ff'), 'name': 'ContractPal', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b506'), 'name': 'Raptor Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b50a'), 'name': 'Greetz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b510'), 'name': 'Pleth', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b513'), 'name': 'Tamarac', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b515'), 'name': 'BusinessNameUSA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b51c'), 'name': 'PC Tools', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b522'), 'name': 'Paymate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b523'), 'name': 'Stubdepot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b535'), 'name': 'Synacor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b552'), 'name': 'Cruxy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b55c'), 'name': 'Proper Hosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b560'), 'name': 'Camangi', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b563'), 'name': 'Preview Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b564'), 'name': 'TIS India', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b565'), 'name': 'Lingo24', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b568'), 'name': 'DealTaker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b56b'), 'name': 'Trufina', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b574'), 'name': 'Indicative Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b575'), 'name': 'Nimsoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b577'), 'name': 'Biip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b57a'), 'name': 'Fan Centric', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b57b'), 'name': 'Net Industries', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b57d'), 'name': 'Epsilon Concepts', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b57e'), 'name': 'WIT Corporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b581'), 'name': 'Net Aspects', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b589'), 'name': 'Feedzilla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b58b'), 'name': 'Celequest Corp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b598'), 'name': 'OE Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b59b'), 'name': 'Exfront Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b59d'), 'name': 'SLK Software Services Pvt Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a4'), 'name': 'iPropertyWebsites', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a8'), 'name': 'ControlCircle', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5b8'), 'name': 'Talent Alliance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c1'), 'name': 'anoniMouse', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c2'), 'name': 'The Escapist', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c4'), 'name': 'Three Stars', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5d8'), 'name': 'SeekBroadband', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5dd'), 'name': 'StealthTech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e1'), 'name': 'GlassHouse Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e2'), 'name': 'C! Tech Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e9'), 'name': 'Generation Sales Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b5ec'), 'name': 'Diligent Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b5f0'), 'name': 'HEDLOC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5fa'), 'name': 'inFreeDA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b602'), 'name': 'ACS Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b609'), 'name': 'Lilliputian Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b60c'), 'name': 'igniteHealth', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b60e'), 'name': 'Info-Surge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b60f'), 'name': 'Information Architects', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b615'), 'name': 'Altaine', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b61e'), 'name': 'S3 Matching Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b620'), 'name': 'Groxis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b621'), 'name': 'Deep Web Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b630'), 'name': 'Catbird', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b644'), 'name': 'BelWo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b656'), 'name': 'WebFM', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b65a'), 'name': 'VillaAkumal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b65e'), 'name': 'Applied Insights', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b660'), 'name': 'Foviance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b669'), 'name': 'Red McCombs Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b671'), 'name': 'illuminate Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b67a'), 'name': 'AbodesIndia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b67d'), 'name': 'Wezz Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b694'), 'name': 'SweetIM', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b69d'), 'name': 'RegalBuilt', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a7'), 'name': 'Aerovance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b3'), 'name': 'Paltux', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b7'), 'name': 'OneBigPlanet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6bb'), 'name': 'Asani consulting Pvt Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6c4'), 'name': 'Iksanika', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b6ca'), 'name': 'Teradici', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6cb'), 'name': 'Xeridia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d7'), 'name': 'Imprivata', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d8'), 'name': 'Alert Logic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6e6'), 'name': 'Mindgruve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b6eb'), 'name': 'Bomgar', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b6f8'), 'name': 'Armstead Enterprise', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b700'), 'name': 'SX Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b701'), 'name': 'ForePoint Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b702'), 'name': 'Kongespill', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b703'), 'name': 'SEOP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b705'), 'name': 'CiteMan Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b70c'), 'name': 'bausepp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b718'), 'name': 'Smart AdServer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b71c'), 'name': 'GenoLogics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b71d'), 'name': 'i-wood', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b728'), 'name': 'Sierra Logic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b72b'), 'name': 'Azavea', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b72d'), 'name': 'avVenta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b72e'), 'name': 'IMASTE', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b732'), 'name': 'Two Animators! LLP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b736'), 'name': 'Digitally Imported', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b738'), 'name': 'MyMusicStream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b739'), 'name': 'Embitel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b73b'), 'name': 'Sesamea', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b74b'), 'name': 'ZettaView Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b74d'), 'name': 'Solera Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b750'), 'name': 'StoredIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b75c'), 'name': 'sinhasoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b762'), 'name': 'Campaign Monitor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b764'), 'name': 'Webpulser', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b765'), 'name': 'HT2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b773'), 'name': 'InvestorLoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b774'), 'name': 'Yanko Design', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b775'), 'name': 'Level 5 Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b777'), 'name': 'Cat on the Couch Productions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b779'), 'name': 'N-able Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b77d'), 'name': 'Kaseya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b782'), 'name': 'Absoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b785'), 'name': 'RentVine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b790'), 'name': 'Telehammers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b798'), 'name': 'Symphogen', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a1'), 'name': 'ServiceRelated', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a2'), 'name': 'Melinta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a6'), 'name': 'SOMARK Innovations', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ab'), 'name': 'Outso', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7c5'), 'name': 'mobifriends', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7dd'), 'name': 'Your Design Online', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7df'), 'name': 'Stretch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e1'), 'name': 'Pelikan Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e3'), 'name': 'Trellia Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e6'), 'name': 'Explore Talent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ef'), 'name': 'Riviera Partners', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f1'), 'name': 'Elite Care Canada', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f2'), 'name': 'Neurona Networking', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f5'), 'name': 'MyBuilder', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fa'), 'name': 'Shopyop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fc'), 'name': 'Stoke', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fd'), 'name': 'Transcepta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ff'), 'name': 'Tilted Pixel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b802'), 'name': 'Nosco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b80a'), 'name': 'vLinx', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b823'), 'name': 'Nirix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b830'), 'name': 'Agilis Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b832'), 'name': 'BiPar Sciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b83b'), 'name': 'Tippingpoint Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b83c'), 'name': 'IES Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b842'), 'name': 'Indienink', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b847'), 'name': 'Omniscient Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b850'), 'name': 'AppShore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b851'), 'name': 'FTRANS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b856'), 'name': 'Cinetic Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b85b'), 'name': 'medpex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b85f'), 'name': 'Bokan Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b879'), 'name': 'eG Innovations', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b894'), 'name': 'Rentricity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b8a4'), 'name': 'Dinahosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8a8'), 'name': 'Demandware', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c1'), 'name': 'backpage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b8cb'), 'name': 'Acotis Jewellery', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8d7'), 'name': 'Bench on Demand', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e2'), 'name': 'Chasma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8ed'), 'name': 'Websystems, inc', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f0'), 'name': 'Centralis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f1'), 'name': 'Minecode', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f4'), 'name': 'Bluewolf', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8fd'), 'name': 'Red Engineering Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b903'), 'name': 'Tenax technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b90b'), 'name': 'Phonevalley', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b90c'), 'name': 'iLoop Mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b90d'), 'name': 'HipCricket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b911'), 'name': 'Metreos Corporation', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b915'), 'name': 'Sonos', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b918'), 'name': 'Active Endpoints', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b919'), 'name': 'Birst', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b923'), 'name': 'Hotchalk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b925'), 'name': 'eLayaway', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b92b'), 'name': 'NaturalMotion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b938'), 'name': 'MAQ Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b93f'), 'name': 'Control Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b94c'), 'name': 'oscommerce experts', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b951'), 'name': 'Irish Web Developers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b954'), 'name': 'Ratio Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b966'), 'name': 'PERCUSSA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b968'), 'name': 'Sandbox Software Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b969'), 'name': 'ReadHowYouWant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b970'), 'name': 'IPcelerate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b98a'), 'name': 'Tomoye Community Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b994'), 'name': 'Sales Placements Australia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b997'), 'name': 'Clickfree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b99e'), 'name': 'SeeWhy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ad'), 'name': 'NexJ Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ae'), 'name': 'GMA Grading', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b9b2'), 'name': 'Bidoo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9b9'), 'name': 'MetaGeek, LLC', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bd'), 'name': 'Solyndra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9be'), 'name': 'Invenergy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bf'), 'name': 'Taigen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b9c2'), 'name': 'Recyclebank', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9c7'), 'name': 'Motor Creative Marketing', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ce'), 'name': 'iPOTT Softech India Private Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9da'), 'name': 'Finagle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9db'), 'name': 'Pixel Vivant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9e3'), 'name': 'BridgeLux', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f2'), 'name': 'Xorcom', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f3'), 'name': 'CMS Enviro Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f9'), 'name': 'Netbiscuits', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba01'), 'name': 'Valid8', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba03'), 'name': 'SearchForecast', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba07'), 'name': 'NetRetail Holding', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0c'), 'name': 'Aspediens', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0d'), 'name': 'Tiscali UK', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0f'), 'name': 'Fulcrum Microsystems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba10'), 'name': 'ExteNet Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba11'), 'name': 'Bullhorn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba12'), 'name': 'CoreOptics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba14'), 'name': 'Panasas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba1e'), 'name': 'Eden Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba20'), 'name': 'NetroStar', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba22'), 'name': 'SMobile Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba24'), 'name': 'Amedia Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba25'), 'name': 'Antepo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba27'), 'name': 'Brandspace', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba28'), 'name': 'Promotion Space Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba2d'), 'name': 'FocusFrame', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba33'), 'name': 'ITLANDMARK', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba3a'), 'name': 'Baytech Webs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba3b'), 'name': 'Diamantea', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba44'), 'name': 'Navatar Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba45'), 'name': 'DoJiggy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba50'), 'name': 'Eton Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba52'), 'name': 'Servicios Netosfera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba5c'), 'name': 'Celtro', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba5d'), 'name': 'EverSpin Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba61'), 'name': 'bwired', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba62'), 'name': 'Sagacious Softwares', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba68'), 'name': 'Clearleft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba6a'), 'name': 'Callender Creates', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba70'), 'name': 'Vital Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba75'), 'name': 'Plural and Partners Inc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba80'), 'name': 'Matisse Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba81'), 'name': 'Arieso', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba88'), 'name': 'BizTradeShows', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba8d'), 'name': 'GRNLive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba9a'), 'name': 'X3 Studios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba9c'), 'name': 'DiVitas Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529baa9'), 'name': 'Easy Corp Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bab0'), 'name': 'Infostroy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bab6'), 'name': 'VFM Leonardo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baba'), 'name': 'Eglue Business Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529babb'), 'name': 'Corvil', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bac1'), 'name': 'Breakaway Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bac4'), 'name': 'Host Analytics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bace'), 'name': 'Uplogix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bad1'), 'name': 'Mobidia Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bad2'), 'name': 'AllClear ID', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bad9'), 'name': 'Provide Support', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bada'), 'name': 'Live2Support', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bae5'), 'name': 'StreamTheWorld', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bae8'), 'name': 'Velti', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529baf1'), 'name': 'SpinalMotion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529baf3'), 'name': 'MergeOptics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baf5'), 'name': 'Qosmos', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baf7'), 'name': 'GeoDigm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb05'), 'name': 'Miyowa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb07'), 'name': 'QD Vision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb09'), 'name': 'GPS Insight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0c'), 'name': 'SensorLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0d'), 'name': 'Razorsight', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0e'), 'name': 'Specialty Capital', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb1a'), 'name': 'First Coverage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb1c'), 'name': 'Firm58', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb23'), 'name': 'The HeadShop Wigs Online', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb29'), 'name': 'Emmaus Designs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2a'), 'name': 'Minyanville', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2d'), 'name': 'n3w media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bb33'), 'name': 'HiFi Headphones', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb3b'), 'name': 'Dating Site Builder', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb44'), 'name': 'Canopy Financial', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb4f'), 'name': 'Air Ninja', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb64'), 'name': 'Senscient', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb65'), 'name': 'Carbonon Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb6d'), 'name': 'InSite Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bb73'), 'name': 'Neuro SEO Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb7d'), 'name': 'BetterTrades', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb80'), 'name': 'Book4Time', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb82'), 'name': 'Redfern Integrated Optics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb85'), 'name': 'SatNav Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb86'), 'name': 'Rhapso', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8a'), 'name': 'Illumitex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8d'), 'name': 'ContinuumGlobal', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb9b'), 'name': 'Softechstratgegies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bba2'), 'name': 'Asteres', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bba6'), 'name': 'Lightning Gaming', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bba7'), 'name': 'Aria Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc0'), 'name': 'MMIC Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc7'), 'name': 'Garlik', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcb'), 'name': 'CityGuideSA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcd'), 'name': 'RainStor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcf'), 'name': 'OfferWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bbd3'), 'name': '[212]Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbdc'), 'name': 'Zenitum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbea'), 'name': 'Correlsense', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbef'), 'name': 'Ondax', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bbf2'), 'name': 'SkillSurvey', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bbfc'), 'name': 'Cascade Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc02'), 'name': 'PLAVEB Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc0a'), 'name': 'SEOeconomist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc0d'), 'name': 'Design215', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc11'), 'name': 'CxT Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc18'), 'name': 'Syntensia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc1a'), 'name': 'My-Hammer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc1c'), 'name': 'WiseBeetle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc21'), 'name': 'Rhythmia Medical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc22'), 'name': 'EBR Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc24'), 'name': 'Izola Shower Curtains', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc26'), 'name': 'DriveHQ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc28'), 'name': 'Distinctive Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc2b'), 'name': 'LDL Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc2f'), 'name': 'amigura', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc31'), 'name': 'WiFilez', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc37'), 'name': 't3leads', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc3c'), 'name': 'Shqiperia Com', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc41'), 'name': 'LEADshare', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc43'), 'name': 'Pro-Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc44'), 'name': 'greenstar media labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc47'), 'name': 'InfTek', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc4a'), 'name': 'Internet Marketing Consultant', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc4d'), 'name': 'Factonomy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc5d'), 'name': 'DermaGen', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc61'), 'name': 'c-LEcta', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc62'), 'name': 'Evolutionary Genomics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc74'), 'name': 'Domainex', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc75'), 'name': 'Vandalia Research', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc76'), 'name': 'BCB Medical', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc7a'), 'name': 'U-Play Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc7c'), 'name': 'eflow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc81'), 'name': 'Five Prime Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc84'), 'name': 'WysDM Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc8d'), 'name': 'Oxatis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc93'), 'name': '360innovate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcb2'), 'name': 'Partners Marketing Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bcbe'), 'name': 'CarWale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcbf'), 'name': 'Auto-IES', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc0'), 'name': 'Autoquake', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc6'), 'name': 'Evince', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bccf'), 'name': 'ClassifEye', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd0'), 'name': 'Vocab', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd4'), 'name': 'Pixelligent', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd6'), 'name': '2 Minutes', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd9'), 'name': 'Netsonda Research', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bcdf'), 'name': 'AppIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bce0'), 'name': 'Zipcar', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bceb'), 'name': 'Roomster', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcf7'), 'name': 'Ultracell', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcfc'), 'name': 'Sirius Forex Trading Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bd0b'), 'name': 'X1 Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd0d'), 'name': 'Manifold Products', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bd11'), 'name': '1Scan', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bd13'), 'name': 'ShoeHunting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd1c'), 'name': 'My Ad Box', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd1e'), 'name': 'Feed Me Links', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bd20'), 'name': 'SiteVisibility', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd29'), 'name': 'MetroLyrics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bd2a'), 'name': 'SchoolRack', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd3a'), 'name': 'TypeFrag', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd3c'), 'name': 'Soliant Energy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd42'), 'name': 'SunEdison', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bd54'), 'name': 'AVST', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bd57'), 'name': 'Mamapedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd5c'), 'name': 'GGK Tech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd68'), 'name': 'BuildForge', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bd69'), 'name': 'Electric Cloud', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bd6d'), 'name': 'Mint Digital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd72'), 'name': 'Qingdao Land of State Power Environment Engineering', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bd74'), 'name': 'TechnoSpin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7b'), 'name': 'Merchantrms', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7c'), 'name': 'Kythera Biopharmaceuticals', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bd96'), 'name': \"Don't Blink Design\", 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd99'), 'name': 'Blip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdab'), 'name': 'Ciklum', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdb3'), 'name': 'ViralTracker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bdb7'), 'name': 'Private Equity Info', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdbb'), 'name': 'IntraWorlds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdbe'), 'name': 'Roundthird', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bdc1'), 'name': 'AlloTraffic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdc9'), 'name': 'Capture the Market', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdd8'), 'name': 'Trustdefender', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bde3'), 'name': 'OncoMed Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bde4'), 'name': 'Stemline Therapeutics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bde7'), 'name': 'uttarbharat Inc', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bdec'), 'name': 'WorldWide Biggies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdef'), 'name': 'Infosearch Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bdf6'), 'name': 'BiddingForGood', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bdfa'), 'name': 'Instant Domain Search', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be04'), 'name': 'Wakonda Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be0e'), 'name': 'Apieron', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be0f'), 'name': 'Innovative Biosensors', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be16'), 'name': 'TRIRIGA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be19'), 'name': 'Solace Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be1a'), 'name': 'Kryptiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be2a'), 'name': 'CSA Partners', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be2f'), 'name': 'WebGravity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be39'), 'name': 'Prenova', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be3b'), 'name': 'Submitinme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be3d'), 'name': 'Ambow Education', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be44'), 'name': 'Pasteuria Bioscience', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be49'), 'name': 'Icera', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be5b'), 'name': 'NannyToYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be5e'), 'name': 'ObjectSharp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be63'), 'name': 'Poly9', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be65'), 'name': \"Flippin' Sweet Gear\", 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be77'), 'name': 'Soho Properties', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be7e'), 'name': 'Waymedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be80'), 'name': 'Telisma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be81'), 'name': 'OnMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be82'), 'name': 'Morgan Everett', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be87'), 'name': 'Flashcoms', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be88'), 'name': 'Sunlight Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be9e'), 'name': 'Binbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bea2'), 'name': 'DevelopIntelligence', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bea5'), 'name': 'ERA Biotech', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bea7'), 'name': 'Wasatch Wind', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529beac'), 'name': 'Biomonitor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bebb'), 'name': 'AMEC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bebf'), 'name': 'InboxFox', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bec9'), 'name': 'Akond Lab', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529beda'), 'name': 'Hexaformer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bee4'), 'name': 'Ovation Pharmaceuticals', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529beec'), 'name': 'Aspen Surgical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529beee'), 'name': 'HotSpot Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bef2'), 'name': 'GolfToImpress', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bef3'), 'name': 'Cyber-Duck', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bef6'), 'name': 'ke Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529befb'), 'name': 'MoSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529beff'), 'name': 'ATILUS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf01'), 'name': 'Applied Cell Sciences', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf08'), 'name': 'Biofisica', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf09'), 'name': 'BioProtect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf0c'), 'name': 'Bashton', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf10'), 'name': 'CoalTek', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf12'), 'name': 'eIQnetworks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf16'), 'name': 'Red Javelin Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf29'), 'name': 'Global Surfari', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf2d'), 'name': 'Tangoe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf30'), 'name': 'Hydra Biosciences', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf31'), 'name': 'Ben Jen Online, LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf37'), 'name': 'Chiral Quest', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf38'), 'name': 'Innovative Spinal Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3b'), 'name': 'Singulex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3c'), 'name': 'Tribold', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3f'), 'name': 'MD-IT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf43'), 'name': 'S*Bio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf54'), 'name': 'XPlace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf56'), 'name': 'Above the Fold', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf59'), 'name': 'Xyber Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf5a'), 'name': 'Limerick BioPharma', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf67'), 'name': 'Motion Computing', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6a'), 'name': 'Voon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6c'), 'name': 'KaloBios Pharmaceuticals', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6f'), 'name': 'Brondell', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf73'), 'name': 'Prosensa', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf75'), 'name': 'Cornerstone Pharmaceuticals', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf76'), 'name': 'TextMagic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7c'), 'name': 'En-Twyn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7d'), 'name': 'Ramp Up Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7e'), 'name': 'Avid Radiopharmaceuticals', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf87'), 'name': 'Absara', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf88'), 'name': 'NYC Media Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf8f'), 'name': 'GCDUK Search', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf95'), 'name': 'Promo Resources', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfa7'), 'name': 'HighBeam Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfaa'), 'name': 'Triumfant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfad'), 'name': 'CareGain', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb1'), 'name': 'Virtual Heroes', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb4'), 'name': 'Brogent Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb7'), 'name': 'Aileron Therapeutics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bfbb'), 'name': 'Diagnoplex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bfc9'), 'name': 'ExpanDrive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcb'), 'name': 'Opsona', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcc'), 'name': 'MediQuest Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcd'), 'name': 'ReportLinker', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfce'), 'name': 'VaxInnate', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcf'), 'name': 'Seriosity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd2'), 'name': 'NanoString Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd3'), 'name': 'Solazyme', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfe1'), 'name': 'The Box', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfe5'), 'name': 'Certify Data Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfea'), 'name': 'Pegasys', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfec'), 'name': 'Costume Craze', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bff2'), 'name': 'TVU Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bff9'), 'name': 'Vyatta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c002'), 'name': 'Green Courte Partners', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c00a'), 'name': 'Infinite Power Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c016'), 'name': 'Transhorsa Translation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c018'), 'name': 'ElectraTherm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c01a'), 'name': 'Telenity', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c031'), 'name': 'Lime Kiln Camera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c042'), 'name': 'Optimum Energy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c043'), 'name': 'DRC Computer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c044'), 'name': 'Security First', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c047'), 'name': 'Proteon Therapeutics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c04a'), 'name': 'Max Q Designs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c04b'), 'name': 'Tokai Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c050'), 'name': 'Xsigo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c058'), 'name': 'Polatis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c05b'), 'name': 'Forterra Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c05d'), 'name': 'Ntech Industries', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c060'), 'name': 'SiliconStor', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c061'), 'name': 'Greenline Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c066'), 'name': 'Fresh Echo Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c067'), 'name': 'Miles Electric Vehicles', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c06a'), 'name': 'EnerG2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c06b'), 'name': 'Avantium Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c06c'), 'name': 'Biosystems International', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c073'), 'name': 'Iteego', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c07d'), 'name': 'National Business Brokerage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c07e'), 'name': 'Lee Enterprises', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c091'), 'name': 'Generous Gems Jewelry', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c095'), 'name': 'Posh Eyes', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c0a0'), 'name': 'Zemoga', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b1'), 'name': 'Shadeland Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b3'), 'name': 'MacroGenics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b7'), 'name': 'Ostara', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b9'), 'name': 'Anacor Pharmaceutical', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c2'), 'name': 'MusicIP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c7'), 'name': 'LearningMate', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ca'), 'name': 'Baobaz', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0cf'), 'name': 'BioMed Central', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0d8'), 'name': 'Alimera Sciences', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0da'), 'name': 'Idealo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0dd'), 'name': 'Comparado', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c0df'), 'name': 'THiNKmedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0e6'), 'name': 'm-Wise', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0eb'), 'name': 'Sutro Biopharma', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0f7'), 'name': 'Mailout Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0fa'), 'name': 'FuckedCompany', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0fe'), 'name': 'PIERIS Proteolab', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ff'), 'name': 'Connectiva Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c100'), 'name': 'Student Driven', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c10a'), 'name': 'Seahorse Bioscience', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c10d'), 'name': 'SynapCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c118'), 'name': 'Threadless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c122'), 'name': 'Fermentalg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c124'), 'name': 'Iconic Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c126'), 'name': 'Agrisoma Biosciences', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c12e'), 'name': 'The Book Depository', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c140'), 'name': 'Taligen Therapeutics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c143'), 'name': 'Silex Microsystems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c146'), 'name': 'INRIX', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c147'), 'name': 'Mediamobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c149'), 'name': 'NAVX', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c14c'), 'name': 'Living Proof', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c150'), 'name': 'Altair Semiconductor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c152'), 'name': 'Appuonline', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c154'), 'name': 'SteadyMed Therapeutics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c15d'), 'name': 'Webtrekk', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c160'), 'name': 'Kinos Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c163'), 'name': 'Airgain', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c165'), 'name': 'Luca Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c16e'), 'name': 'BPL Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c16f'), 'name': 'Glaukos', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c178'), 'name': 'Bigpoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c17f'), 'name': 'Brainsgate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c180'), 'name': 'PINC Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c181'), 'name': 'PrecisionPoint Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c186'), 'name': 'ICU Global', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c18b'), 'name': 'PayPay', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c18d'), 'name': 'ZoomSystems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c18f'), 'name': 'Puppet Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c190'), 'name': 'Santhos', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c197'), 'name': 'Catalyst Biosciences', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c19b'), 'name': 'Accera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c19e'), 'name': 'Submittal Exchange', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1a6'), 'name': 'Zugara', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ac'), 'name': 'Costumzee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1b1'), 'name': 'Ampere Software Private Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1b4'), 'name': 'City Network Hosting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ba'), 'name': 'EGEN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1bc'), 'name': 'Intermolecular', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1bf'), 'name': 'Carpathia Hosting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1c5'), 'name': 'Pontis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ca'), 'name': 'Enpirion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1cc'), 'name': 'Joomla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1cd'), 'name': 'ocProducts', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d1'), 'name': 'Exalt Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d3'), 'name': 'Audience', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d5'), 'name': 'Visiogen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1dc'), 'name': 'Palyon Medical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1df'), 'name': 'CallFire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1e5'), 'name': 'Marinus Pharmaceuticals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1e8'), 'name': 'Our Memories in Motion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ea'), 'name': 'iNetGiant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1f3'), 'name': 'Kyero', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1f9'), 'name': 'Intradigm Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fb'), 'name': 'Global Data Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fe'), 'name': 'OpTier', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c202'), 'name': 'Green Wave Holidays', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c215'), 'name': 'dream ad', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c21c'), 'name': 'Savant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c22e'), 'name': 'Hythiam', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c243'), 'name': 'NetXen', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c24d'), 'name': 'New Energy Finance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c254'), 'name': 'Grubby Games', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c257'), 'name': 'Azingo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c259'), 'name': 'mediaburst', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c25b'), 'name': 'Prime Time Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c25d'), 'name': 'Premier Power', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c260'), 'name': 'Oesia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c265'), 'name': 'Altivation Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c269'), 'name': 'Video Game 911', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c26c'), 'name': 'Axiom Microdevices', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c26e'), 'name': 'Varonis Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c26f'), 'name': 'All India Guide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c273'), 'name': 'Zymeworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c27d'), 'name': 'Nuventix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c27e'), 'name': 'Schoolwires', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c281'), 'name': 'I6NET', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c285'), 'name': 'Aveksa', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c287'), 'name': 'Rivotek Kenya Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c28e'), 'name': 'CMSWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c293'), 'name': 'HxTechnologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a2'), 'name': 'AbCRO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2ad'), 'name': 'Waban Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b4'), 'name': 'Intexys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b5'), 'name': 'Photonera', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b7'), 'name': 'Broadband Networks Wireless Internet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b8'), 'name': 'Fisher Vista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2be'), 'name': 'Report Hawk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2c6'), 'name': 'Agency Zebra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2c8'), 'name': 'Aspen Aerogels', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c2ca'), 'name': 'Alter-G', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2cd'), 'name': 'XDx', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2cf'), 'name': 'Edgeware', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d1'), 'name': 'WiNetworks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d5'), 'name': 'Sentilla', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d9'), 'name': 'CoMentis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2e1'), 'name': 'Mirics Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2e2'), 'name': 'Advanced Manufacturing Control Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2f4'), 'name': 'ERTH Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2f7'), 'name': 'NPS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c300'), 'name': 'Woodland Biofuels', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c302'), 'name': 'Breathe Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c30c'), 'name': 'Bioscale', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c30e'), 'name': 'Realeyes 3D', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c321'), 'name': 'Colibria', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c322'), 'name': 'Hurrah', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c329'), 'name': 'Kurani Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c32f'), 'name': 'Mobile Interactive Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c339'), 'name': 'SoloPower', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c33a'), 'name': 'Neosens', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c348'), 'name': 'Mashable', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c36b'), 'name': 'Compassoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c37c'), 'name': 'Roundstone Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c37f'), 'name': 'Compliance 360', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c38e'), 'name': 'Ciclon Semiconductor Device Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c390'), 'name': 'Nexant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c393'), 'name': 'Coral8', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c396'), 'name': 'AlterPoint', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c39a'), 'name': 'Sana Security', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c39f'), 'name': 'WaveTwo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a2'), 'name': 'Digital Interactive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a3'), 'name': 'Darby Corporate Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a4'), 'name': 'Telogis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3ac'), 'name': 'Mind Drivers', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3af'), 'name': 'Control Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3b6'), 'name': 'PopCap Games', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c0'), 'name': 'FleetMatics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c4'), 'name': 'DataKraft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c6'), 'name': 'Online Personals Watch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c8'), 'name': 'Picsearch', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3d9'), 'name': 'Jalios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3dc'), 'name': 'Increase CRM', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c3df'), 'name': 'Fortefi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e6'), 'name': 'FNZ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c3ed'), 'name': 'GreenVolts', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f1'), 'name': 'SoftLayer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f4'), 'name': 'Purple Labs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3fb'), 'name': 'Semprius', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c40b'), 'name': 'Infrasolve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c40e'), 'name': 'Haivision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c420'), 'name': 'One97 Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c42e'), 'name': 'C7 Data Centers', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c42f'), 'name': 'Bamboo Media Casting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c433'), 'name': 'aCon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c438'), 'name': 'StreamUK', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c43e'), 'name': 'Recycleinme', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c44a'), 'name': 'MentorMate', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c459'), 'name': 'Concord Supplies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c461'), 'name': 'BatteryFuel', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c475'), 'name': 'Phase Holographic Imaging', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c47a'), 'name': 'Moonfruit', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c47b'), 'name': 'SI Government Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c482'), 'name': 'PicoSolve', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c48b'), 'name': 'Vativ Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c49b'), 'name': 'BzzAgent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ad'), 'name': 'Trapeze Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ae'), 'name': 'Axway', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4af'), 'name': 'Pro2col', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4bd'), 'name': 'SiteValley', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c4c8'), 'name': 'Danoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c4c9'), 'name': 'CognitiveDATA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ce'), 'name': 'Goodman Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d1'), 'name': 'Blink Twice', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d2'), 'name': 'Telx', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d6'), 'name': 'Energy and Power Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4da'), 'name': '800APP', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e0'), 'name': 'CPower', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e1'), 'name': 'UCWeb', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e4'), 'name': 'Enecsys', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e7'), 'name': 'Radio Systemes Ingenierie', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4eb'), 'name': 'Teklatech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c4f6'), 'name': 'Prepared Response', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4fc'), 'name': 'Synergy Production', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c505'), 'name': 'Optium', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c50c'), 'name': 'Wondershare Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c513'), 'name': 'Shaping Tomorrow', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c515'), 'name': 'iCentera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c51c'), 'name': 'Media Whiz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c51e'), 'name': 'Relevantis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c528'), 'name': 'A Small Orange', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c52d'), 'name': 'Anchor Bay Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c534'), 'name': 'Pufferfish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c538'), 'name': 'Kineto Wireless', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c544'), 'name': 'TZero Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c547'), 'name': 'Asempra Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c548'), 'name': 'Bakbone Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c54b'), 'name': 'Nexsem', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c54e'), 'name': 'Airespace', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c54f'), 'name': 'Phasor Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c552'), 'name': 'Touchdown Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c56c'), 'name': 'OSA Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c56e'), 'name': 'Sanera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c588'), 'name': 'Applied Language Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c589'), 'name': 'eXMeritus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c58d'), 'name': 'Reva Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c58e'), 'name': 'Virtual Iron Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c594'), 'name': 'Equiendo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c598'), 'name': 'Axxana', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c59c'), 'name': 'TerraGo Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a0'), 'name': 'Axis Three', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a3'), 'name': 'ColdSpark', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a4'), 'name': 'Crocus Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a7'), 'name': 'Canevaflor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5aa'), 'name': 'Nethra Imaging', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ab'), 'name': 'M2M Solution', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ae'), 'name': 'Aspera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5b0'), 'name': '10East', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5b5'), 'name': 'm35 Limited', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ba'), 'name': 'iomart Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5c3'), 'name': 'Interprise Software Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5c6'), 'name': 'Incuity Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d6'), 'name': 'Swiftprosys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d9'), 'name': 'Events Computer Design', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5e2'), 'name': 'Affiliate Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ee'), 'name': 'Translucent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f0'), 'name': 'Tizbi', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f1'), 'name': 'Everyday Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f8'), 'name': 'NanoBio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5fe'), 'name': 'InfoLogix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c604'), 'name': 'Ponte Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c610'), 'name': 'PaymentOne', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c617'), 'name': 'Open E Cry', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c618'), 'name': 'optionsXpress', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c619'), 'name': 'Skywire Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c62d'), 'name': 'Total Telecom Consulting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c636'), 'name': 'Collaboration Online', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c63c'), 'name': 'Layered Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c63e'), 'name': 'eForce Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c63f'), 'name': 'Sirific Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c643'), 'name': 'Storm Semiconductor', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c64c'), 'name': 'Abraxas', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c64f'), 'name': 'Focus Views', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c653'), 'name': 'iPartyTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c659'), 'name': 'LogicLibrary', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c65a'), 'name': 'SOA Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c65b'), 'name': 'AGEIA Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c65c'), 'name': 'SheKnows', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c668'), 'name': 'WV Fiber', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c673'), 'name': 'LeadRev', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c677'), 'name': 'MediaPal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c67b'), 'name': 'Edgeos', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c67c'), 'name': 'LED Grow Master Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c687'), 'name': 'findownersearch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c68b'), 'name': 'Prolify', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c69d'), 'name': 'Fotothing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ab'), 'name': 'Vigilos', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b4'), 'name': 'OptiMedica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b8'), 'name': 'CScout Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c6bd'), 'name': 'AffittiVacanze-Spagna', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6bf'), 'name': 'Mu-Gahat Enterprises', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c0'), 'name': 'Block Shield', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c4'), 'name': 'ITERNOVA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c5'), 'name': 'Luminus Devices', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6cb'), 'name': 'AwardSpace', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d0'), 'name': 'Netrake', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d8'), 'name': 'NextLabs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6dd'), 'name': 'Cameron Health', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c6e0'), 'name': 'Celestial Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ee'), 'name': 'EnterSys Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ef'), 'name': 'Axon Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f0'), 'name': 'Intergy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f7'), 'name': 'AfterLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6fa'), 'name': 'EnteGreat', 'founded_year': 2000}]\n" + ] + } + ], + "source": [ + "results3 = list(collection.find({\"founded_year\": {\"$gt\":1999 , \"$lt\":2006}}, {\"name\":1, \"founded_year\": 1}))\n", + "print(len(results3))\n", + "print(results3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4. All the companies that had a Valuation Amount of more than 100.000.000 and have been founded before 2010. Retrieve only the `name` and `ipo` fields." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'name': 'Facebook', 'ipo': {'valuation_amount': 104000000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 5, 'pub_day': 18, 'stock_symbol': 'NASDAQ:FB'}}, {'_id': ObjectId('52cdef7c4bab8bd675297d94'), 'name': 'Twitter', 'ipo': {'valuation_amount': 18100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'NYSE:TWTR'}}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'name': 'LinkedIn', 'ipo': {'valuation_amount': 9310000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 20, 'stock_symbol': 'NYSE:LNKD'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'name': 'Amazon', 'ipo': {'valuation_amount': 100000000000, 'valuation_currency_code': 'USD', 'pub_year': 1997, 'pub_month': 5, 'pub_day': None, 'stock_symbol': 'NASDAQ:AMZN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'ipo': {'valuation_amount': 290000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 2, 'pub_day': 17, 'stock_symbol': 'NASDAQ:BCOV'}}, {'_id': ObjectId('52cdef7c4bab8bd675297ee5'), 'name': 'KIT digital', 'ipo': {'valuation_amount': 235000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 27, 'stock_symbol': 'KITD'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'ipo': {'valuation_amount': 1600000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 1, 'pub_day': 26, 'stock_symbol': 'NYSE:NLSN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'ipo': {'valuation_amount': 1050000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 21, 'stock_symbol': 'NASDAQ:OPEN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'ipo': {'valuation_amount': 287000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 5, 'pub_day': 23, 'stock_symbol': 'NYSE:ECOM'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f95'), 'name': 'Jive Software', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 2, 'pub_day': 3, 'stock_symbol': 'NASDAQ:JIVE'}}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'ipo': {'valuation_amount': 2550000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 19, 'stock_symbol': 'NASDAQ:Z'}}, {'_id': ObjectId('52cdef7c4bab8bd67529805d'), 'name': 'Wix', 'ipo': {'valuation_amount': 750000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 6, 'stock_symbol': 'NASDAQ:WIX'}}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'ipo': {'valuation_amount': 350000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'SFLY'}}, {'_id': ObjectId('52cdef7c4bab8bd6752981a7'), 'name': 'TripAdvisor', 'ipo': {'valuation_amount': 3273770000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 12, 'pub_day': 21, 'stock_symbol': 'TRIP'}}, {'_id': ObjectId('52cdef7c4bab8bd67529823b'), 'name': 'Salesforce', 'ipo': {'valuation_amount': 110000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 7, 'pub_day': 2, 'stock_symbol': 'NYSE:CRM'}}, {'_id': ObjectId('52cdef7c4bab8bd6752982f6'), 'name': 'HomeAway', 'ipo': {'valuation_amount': 3000000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 6, 'pub_day': 29, 'stock_symbol': 'NASDAQ:AWAY'}}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'ipo': {'valuation_amount': 140000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 1, 'pub_day': 11, 'stock_symbol': 'NASDAQ:QNST'}}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'name': 'Rackspace', 'ipo': {'valuation_amount': 5440000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'RAX'}}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'name': 'BMC Software', 'ipo': {'valuation_amount': 6000000000, 'valuation_currency_code': 'USD', 'pub_year': 1988, 'pub_month': 8, 'pub_day': 12, 'stock_symbol': 'NASDAQ:BMC'}}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'ipo': {'valuation_amount': 1060000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:ONE'}}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'ipo': {'valuation_amount': 824000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 4, 'pub_day': 20, 'stock_symbol': 'NYSE:BLOX'}}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'name': 'Tencent', 'ipo': {'valuation_amount': 11000000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'HK:0700'}}, {'_id': ObjectId('52cdef7c4bab8bd675298696'), 'name': 'Marketo', 'ipo': {'valuation_amount': 465000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 4, 'pub_day': 2, 'stock_symbol': 'NASDAQ:MKTO'}}, {'_id': ObjectId('52cdef7c4bab8bd675298760'), 'name': 'Baidu', 'ipo': {'valuation_amount': 4000000000, 'valuation_currency_code': 'USD', 'pub_year': 2005, 'pub_month': 8, 'pub_day': 5, 'stock_symbol': 'NASDAQ:BIDU'}}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'ipo': {'valuation_amount': 134000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 11, 'pub_day': 2, 'stock_symbol': 'GKNT'}}, {'_id': ObjectId('52cdef7d4bab8bd6752989a0'), 'name': 'Opsware', 'ipo': {'valuation_amount': 450000000, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 9, 'stock_symbol': 'NASDAQ:LDCL'}}, {'_id': ObjectId('52cdef7d4bab8bd6752989f2'), 'name': 'Telenav', 'ipo': {'valuation_amount': 337000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 5, 'pub_day': 13, 'stock_symbol': 'TNAV'}}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'ipo': {'valuation_amount': 315000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 4, 'pub_day': 12, 'stock_symbol': 'RALY'}}, {'_id': ObjectId('52cdef7d4bab8bd675298d12'), 'name': 'BrightSource Energy', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 4, 'pub_day': 22, 'stock_symbol': 'NASDAQ:BRSE'}}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'ipo': {'valuation_amount': 970000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 14, 'stock_symbol': 'JP:2121'}}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 16, 'stock_symbol': 'QLIK'}}, {'_id': ObjectId('52cdef7d4bab8bd67529984e'), 'name': 'Chegg', 'ipo': {'valuation_amount': 1100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 14, 'stock_symbol': 'NYSE:CHGG'}}, {'_id': ObjectId('52cdef7d4bab8bd675299bd8'), 'name': 'Chegg', 'ipo': {'valuation_amount': 1100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 14, 'stock_symbol': 'NYSE:CHGG'}}, {'_id': ObjectId('52cdef7d4bab8bd675299d5d'), 'name': 'Groupon', 'ipo': {'valuation_amount': 12800000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'NASDAQ:GRPN'}}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'ipo': {'valuation_amount': 803000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 20, 'stock_symbol': 'SWI'}}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'ipo': {'valuation_amount': 108960000000, 'valuation_currency_code': 'JPY', 'pub_year': 2008, 'pub_month': 12, 'pub_day': 17, 'stock_symbol': '3632'}}, {'_id': ObjectId('52cdef7e4bab8bd67529aae7'), 'name': 'Tudou', 'ipo': {'valuation_amount': 174000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NASDAQ:TUDO'}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'ipo': {'valuation_amount': 245000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 2, 'pub_day': 14, 'stock_symbol': 'NASDAQ:DMAN'}}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'name': 'Western Digital', 'ipo': {'valuation_amount': 9430000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:WDC'}}, {'_id': ObjectId('52cdef7e4bab8bd67529bb87'), 'name': 'Millennial Media', 'ipo': {'valuation_amount': 973500000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 28, 'stock_symbol': 'NYSE:MM'}}]\n" + ] + } + ], + "source": [ + "results4 = list(collection.find({\n", + " '$and': [\n", + " {\n", + " 'ipo.valuation_amount': {\n", + " '$gt': 100000000\n", + " }\n", + " }, {\n", + " 'founded_year': {\n", + " '$lt': 2010\n", + " }\n", + " }\n", + " ]\n", + "}, {\"name\": 1, \"ipo\": 1}))\n", + " \n", + "print(results4)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. All the companies that have less than 1000 employees and have been founded before 2005. Order them by the number of employees and limit the search to 10 companies." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'permalink': 'infinera', 'crunchbase_url': 'http://www.crunchbase.com/company/infinera', 'homepage_url': 'http://www.infinera.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'InfineraCorp', 'category_code': 'network_hosting', 'number_of_employees': 974, 'founded_year': 2000, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': 'Zepton Networks', 'email_address': '', 'phone_number': '408-572-5200', 'description': 'Optical Networking Systems', 'created_at': 'Tue Apr 29 19:43:09 UTC 2008', 'updated_at': 'Tue Jan 10 22:07:21 UTC 2012', 'overview': '

Infinera Corporation provides optical networking systems based on photonic integration technology in the United States. Its digital transport node (DTN) system utilizes the photonic integrated circuit (PIC) technology to enable digital processing and management of data with the capability to generate wavelength division multiplexing wavelengths and to add, drop, switch, manage, protect, and restore network traffic digitally. The company’s PICs transmit and receive 100 Gigabits per second of optical capacity and incorporate the functionality of approximately 60 discrete optical components into a pair of indium phosphide chips. The DTN System is used to enable optical to electrical to optical conversions at every network access point to provide communications service providers with the ability to digitally process the information being transported across their optical networks. It also offers a range of support offerings, including 24/7/365 hardware and software technical support, installation and deployment services, spares management, first line maintenance services, on-site technical services, professional services, product technical training, and extended product warranties. The company offers its products to operators of optical networks, including telecom carriers, cable operators, and Internet or content service providers.

\\n\\n

Infinera Corporation, formerly known as Zepton Networks, was founded in 2000 and is headquartered in Sunnyvale, California.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0001/7822/17822v1-max-150x150.png'], [[191, 49], 'assets/images/resized/0001/7822/17822v1-max-250x250.png'], [[191, 49], 'assets/images/resized/0001/7822/17822v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Thomas', 'last_name': 'Fallon', 'permalink': 'thomas-fallon'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tom', 'last_name': 'Fallon', 'permalink': 'tom-fallon'}}, {'is_past': False, 'title': 'VP, Cable Sales', 'person': {'first_name': 'Mike', 'last_name': 'Kelly', 'permalink': 'mike-kelly-2'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Kenneth', 'last_name': 'Goldman', 'permalink': 'kenneth-goldman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Sunny', 'last_name': 'Sugaya', 'permalink': 'sunny-sugaya'}}, {'is_past': False, 'title': 'Chairman of the Board', 'person': {'first_name': 'Kambiz', 'last_name': 'Hooshmand', 'permalink': 'kambiz-hooshmand'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'T.J.', 'last_name': 'Rodgers', 'permalink': 't-j-rodgers'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Phil', 'last_name': 'Koen', 'permalink': 'phil-koen'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Julien', 'last_name': 'Nguyen', 'permalink': 'julien-nguyen'}}, {'is_past': True, 'title': 'Vice President Sales EMEA', 'person': {'first_name': 'Tom', 'last_name': 'Schmitt', 'permalink': 'tom-schmitt'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Steve', 'last_name': \"O'Hara\", 'permalink': 'steve-ohara'}}, {'is_past': True, 'title': 'Manufacturing Controller', 'person': {'first_name': 'John', 'last_name': 'Nadaskay', 'permalink': 'john-nadaskay'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Mawhinney', 'permalink': 'tom-mawhinney'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Christopher', 'last_name': 'Lucas', 'permalink': 'christopher-lucas'}}, {'is_past': True, 'title': 'Manager, PIC Process Interaction', 'person': {'first_name': 'Gang', 'last_name': 'He', 'permalink': 'gang-he'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vinodh', 'last_name': 'Kumar', 'permalink': 'vinodh-kumar-2'}}, {'is_past': True, 'title': 'investments', 'person': {'first_name': 'Peter', 'last_name': 'Wagner', 'permalink': 'peter-wagner'}}, {'is_past': True, 'title': 'Engineering', 'person': {'first_name': 'Rob', 'last_name': 'Stone', 'permalink': 'rob-stone'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '169 Java Drive', 'address2': '', 'zip_code': '94089', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.411877, 'longitude': -122.018277}], 'milestones': [{'id': 20267, 'description': 'Infinera PICs Surpass 500 Million Hours of Failure-Free Operation Latest Milestones Reaffirm PIC Reliability', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 3, 'source_url': 'http://www.live-pr.com/en/infinera-pics-surpass-500-million-hours-r1048777717.htm', 'source_text': '', 'source_description': 'Infinera PICs Surpass 500 Million Hours of Failure-Free Operation Latest Milestones Reaffirm PIC Reliability', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infinera Corporation', 'permalink': 'infinera'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 6, 'pub_day': 7, 'stock_symbol': 'INFN'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 112], 'assets/images/resized/0016/9559/169559v1-max-150x150.jpg'], [[250, 187], 'assets/images/resized/0016/9559/169559v1-max-250x250.jpg'], [[450, 338], 'assets/images/resized/0016/9559/169559v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529ac95'), 'name': 'NorthPoint Communications Group', 'permalink': 'northpoint-communications-group', 'crunchbase_url': 'http://www.crunchbase.com/company/northpoint-communications-group', 'homepage_url': '', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'network_hosting', 'number_of_employees': 948, 'founded_year': 1997, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '415-403-4003', 'description': 'data transport services', 'created_at': 'Fri Jan 16 03:27:17 UTC 2009', 'updated_at': 'Sun Jun 20 20:07:21 UTC 2010', 'overview': '

NorthPoint Communications Group, Inc. provided high speed network and data transport services, allowing Internet service providers, broadband data service providers, and long distance and local phone companies to meet the information needs of small and medium-sized businesses, people who work in home offices, and telecommuters, as of September 2000. On June 12, 2001, the voluntary petition of Northpoint Communications Group, Inc. for reorganization under Chapter 11 was converted to Chapter 7. It had filed for Chapter 11 bankruptcy on January 16, 2001.

', 'image': None, 'products': [], 'relationships': [{'is_past': True, 'title': 'SVP, Business Development and Interim CEO, VersaPoint', 'person': {'first_name': 'Ray', 'last_name': 'Solnik', 'permalink': 'ray-solnik'}}, {'is_past': True, 'title': 'Interim CEO-VersaPoint JV, SVP Business Development', 'person': {'first_name': 'Ray', 'last_name': 'Solnik', 'permalink': 'ray-solnik'}}, {'is_past': True, 'title': 'CMO & EVPof Sales', 'person': {'first_name': 'Shellye', 'last_name': 'Archambeau', 'permalink': 'shellye-archambeau'}}, {'is_past': True, 'title': 'Vice President Engineering & Operations', 'person': {'first_name': 'John', 'last_name': 'Karsner', 'permalink': 'john-karsner-2'}}, {'is_past': True, 'title': 'Director, Value Added Services', 'person': {'first_name': 'Crick', 'last_name': 'Waters', 'permalink': 'crick-waters'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': True, 'title': 'Director - Corporate Development', 'person': {'first_name': 'Gary', 'last_name': 'Hagmueller', 'permalink': 'gary-hagmueller'}}, {'is_past': True, 'title': 'investments', 'person': {'first_name': 'Peter', 'last_name': 'Wagner', 'permalink': 'peter-wagner'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Debbie', 'last_name': 'Jo Severin', 'permalink': 'debbie-jo-severin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dave', 'last_name': 'Rosenberg', 'permalink': 'dave-rosenberg'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Frank', 'last_name': 'Cabri', 'permalink': 'frank-cabri'}}, {'is_past': True, 'title': 'corporate planning, M&A, and investor relations', 'person': {'first_name': 'Alan', 'last_name': 'Priest', 'permalink': 'alan-priest'}}, {'is_past': True, 'title': 'Online Marketing Manager', 'person': {'first_name': 'Daniel', 'last_name': 'Lizio-Katzen', 'permalink': 'daniel-lizio-katzen'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '303 Second Street', 'address2': 'South Tower', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7f4bab8bd67529be17'), 'name': '888 Holdings', 'permalink': '888-holdings', 'crunchbase_url': 'http://www.crunchbase.com/company/888-holdings', 'homepage_url': 'http://www.888holdingsplc.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'games_video', 'number_of_employees': 931, 'founded_year': 1997, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'info@888holdingsplc.com', 'phone_number': '+350 20049800', 'description': 'online gaming entertainment company', 'created_at': 'Sat Jun 06 18:58:57 UTC 2009', 'updated_at': 'Tue Jun 15 03:02:26 UTC 2010', 'overview': '

888 Holdings Public Limited Company, through its subsidiaries, operates as an online gaming entertainment company worldwide. It offers various online casino, poker, and skill games, as well as access to a third party betting exchange, through its various Web sites, including 888.com, Casino-on-Net.com, PacificPoker.com, ReefClubCasino.com, 888.tv, 888.info, and Betmate.com. The company also provides Sportsbetting, Bingo games, and Backgammon to end users and business partners. It has strategic agreements with Dynamite Idea; and Ash Gaming, Ltd. 888 Holdings was founded in 1997 and is based in Europort, Gibraltar.

', 'image': {'available_sizes': [[[150, 101], 'assets/images/resized/0006/4734/64734v1-max-150x150.png'], [[198, 134], 'assets/images/resized/0006/4734/64734v1-max-250x250.png'], [[198, 134], 'assets/images/resized/0006/4734/64734v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'User Expiriance Manager', 'person': {'first_name': 'Gilad', 'last_name': 'Shlang', 'permalink': 'gilad-shlang'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Gigi', 'last_name': 'Levy', 'permalink': 'gigi-levy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roi', 'last_name': 'Carthy', 'permalink': 'roi-carthy'}}, {'is_past': True, 'title': 'conversion optimization manager', 'person': {'first_name': 'Yair', 'last_name': 'Vaknin', 'permalink': 'yair-vaknin'}}, {'is_past': True, 'title': 'VIP Affiliate Manager', 'person': {'first_name': 'Liat', 'last_name': 'Fuchs', 'permalink': 'liat-fuchs'}}, {'is_past': True, 'title': 'Web Infrastructure Developer', 'person': {'first_name': 'shai', 'last_name': 'ariel', 'permalink': 'shai-ariel'}}, {'is_past': True, 'title': 'Head of Mobile Division', 'person': {'first_name': 'Shimon', 'last_name': 'Constante', 'permalink': 'shimon-constante'}}, {'is_past': True, 'title': 'Project & Product Manager', 'person': {'first_name': 'Oren', 'last_name': 'Harnevo', 'permalink': 'oren-harnevo'}}, {'is_past': True, 'title': 'SEM Account Executive', 'person': {'first_name': 'Anat', 'last_name': 'Koren', 'permalink': 'anat-koren'}}, {'is_past': True, 'title': 'Enterprise Sevices Programmer', 'person': {'first_name': 'Nir', 'last_name': 'Cohen', 'permalink': 'nir-cohen-2'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://games.venturebeat.com/2010/06/14/888-holdings-acquires-online-gaming-firm-mytopia-for-18m/', 'source_description': '888 Holdings acquires online gaming firm Mytopia for $18M', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Mytopia', 'permalink': 'mytopia'}}], 'offices': [], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[143, 150], 'assets/images/resized/0006/4735/64735v1-max-150x150.jpg'], [[238, 250], 'assets/images/resized/0006/4735/64735v1-max-250x250.jpg'], [[429, 450], 'assets/images/resized/0006/4735/64735v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd6752986a2'), 'name': 'Forrester Research', 'permalink': 'forrester-research', 'crunchbase_url': 'http://www.crunchbase.com/company/forrester-research', 'homepage_url': 'http://forrester.com', 'blog_url': 'http://blogs.forrester.com/colony/', 'blog_feed_url': 'http://blogs.forrester.com/colony/index.rdf', 'twitter_username': '', 'category_code': 'consulting', 'number_of_employees': 903, 'founded_year': 1983, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'press@forrester.com', 'phone_number': '(617) 613-5730', 'description': '', 'created_at': 'Sun Mar 30 16:42:50 UTC 2008', 'updated_at': 'Fri Jul 19 10:09:08 UTC 2013', 'overview': '

Forrester Research is an independent technology and market research company providing proprietary research, consulting, events, and peer-to-peer executive programs.

', 'image': {'available_sizes': [[[121, 59], 'assets/images/resized/0001/6566/16566v1-max-150x150.png'], [[121, 59], 'assets/images/resized/0001/6566/16566v1-max-250x250.png'], [[121, 59], 'assets/images/resized/0001/6566/16566v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Researcher to the Chairman & CEO', 'person': {'first_name': 'Griffin', 'last_name': 'McGrath', 'permalink': 'griffin-mcgrath'}}, {'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'George', 'last_name': 'F. Colony', 'permalink': 'george-f-colony'}}, {'is_past': False, 'title': 'Chief Strategy and Marketing Officer', 'person': {'first_name': 'Brian', 'last_name': 'Kardon', 'permalink': 'brian-kardon'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael A.', 'last_name': 'Doyle', 'permalink': 'michael-a-doyle'}}, {'is_past': False, 'title': 'VP, Principal Analyst', 'person': {'first_name': 'Josh', 'last_name': 'Bernoff', 'permalink': 'josh-bernoff'}}, {'is_past': False, 'title': 'Chief People Officer', 'person': {'first_name': 'Elizabeth', 'last_name': 'Lemons', 'permalink': 'elizabeth-lemons'}}, {'is_past': False, 'title': 'Senior Analyst', 'person': {'first_name': 'Rebecca', 'last_name': 'Jennings', 'permalink': 'rebecca-jennings'}}, {'is_past': False, 'title': 'Chief Legal Officer And Secretary', 'person': {'first_name': 'Gail', 'last_name': 'S. Mann', 'permalink': 'gail-s-mann'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Oliver', 'last_name': 'Young', 'permalink': 'oliver-young'}}, {'is_past': True, 'title': 'Member, CMO & Marketing Leadership Group', 'person': {'first_name': 'Stella', 'last_name': 'Goulet', 'permalink': 'stella-goulet'}}, {'is_past': True, 'title': 'Chief Strategy & Marketing Officer', 'person': {'first_name': 'Brian', 'last_name': 'Kardon', 'permalink': 'brian-kardon'}}, {'is_past': True, 'title': 'VP Project Consulting', 'person': {'first_name': 'Matthew', 'last_name': 'Nordan', 'permalink': 'matthew-nordan'}}, {'is_past': True, 'title': 'VP Research Director,Senior Analyst', 'person': {'first_name': 'Emily', 'last_name': 'Riley', 'permalink': 'emily-riley'}}, {'is_past': True, 'title': 'VP, Principle Analyst', 'person': {'first_name': 'Charlene', 'last_name': 'Li', 'permalink': 'charlene-li'}}, {'is_past': True, 'title': 'Senior Analyst', 'person': {'first_name': 'Jeremiah', 'last_name': 'Owyang', 'permalink': 'jeremiah-owyang'}}, {'is_past': True, 'title': 'Director, International', 'person': {'first_name': 'Alex', 'last_name': 'Garcia-Tobar', 'permalink': 'alex-garcia-tobar'}}, {'is_past': True, 'title': 'Senior Industry Analyst', 'person': {'first_name': 'David', 'last_name': 'Friedlander', 'permalink': 'david-friedlander'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Chatham', 'permalink': 'bob-chatham'}}, {'is_past': True, 'title': 'Research Director', 'person': {'first_name': 'Steven', 'last_name': 'J. Kafka', 'permalink': 'steven-j-kafka'}}, {'is_past': True, 'title': 'Group Director (Data Products)', 'person': {'first_name': 'William', 'last_name': 'Reeve', 'permalink': 'william-reeve'}}, {'is_past': True, 'title': 'Direct Selling and Account Management', 'person': {'first_name': 'Leslie', 'last_name': 'Candy', 'permalink': 'leslie-candy'}}, {'is_past': True, 'title': 'Market Leader', 'person': {'first_name': 'Sanjay', 'last_name': 'Pingle', 'permalink': 'sanjay-pingle'}}, {'is_past': True, 'title': 'Principal Analyst', 'person': {'first_name': 'Mark', 'last_name': 'Bunger', 'permalink': 'mark-bunger'}}, {'is_past': True, 'title': 'Sales Team', 'person': {'first_name': 'Will', 'last_name': 'Polese', 'permalink': 'will-polese'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kip', 'last_name': 'Levin', 'permalink': 'kip-levin'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Chris', 'last_name': 'Homer', 'permalink': 'chris-homer'}}, {'is_past': True, 'title': 'principal analyst', 'person': {'first_name': 'Babba', 'last_name': 'Shetty', 'permalink': 'babba-shetty'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Claudine', 'last_name': 'Bianchi', 'permalink': 'claudine-bianchi'}}, {'is_past': True, 'title': 'Principal Analyst', 'person': {'first_name': 'André', 'last_name': 'Pino', 'permalink': 'andr-pino'}}, {'is_past': True, 'title': 'Senior Strategy Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Zurek', 'permalink': 'bob-zurek'}}, {'is_past': True, 'title': 'Information Security Expert (Forrester Security Forum)', 'person': {'first_name': 'Don', 'last_name': 'Gray', 'permalink': 'don-gray'}}, {'is_past': True, 'title': 'Led the Web Development Team', 'person': {'first_name': 'Ezra', 'last_name': 'Ball', 'permalink': 'ezra-ball'}}, {'is_past': True, 'title': 'Regional Sales Director', 'person': {'first_name': 'Raymond', 'last_name': 'Creemers', 'permalink': 'raymond-creemers'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 4750000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.crm2day.com/news/crm/EpuFkkVpulPrSDiTaP.php', 'source_description': 'CRM Today', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': 22, 'company': {'name': 'Giga Group', 'permalink': 'giga-group'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://weblogs.jupiterresearch.com/analysts/schatsky/archives/010098.html', 'source_description': 'Forrester Buys Jupiter', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 31, 'company': {'name': 'JupiterResearch', 'permalink': 'jupiterresearch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/Forrester-Research-Acquires-bw-3368700802.html?x=0', 'source_description': 'Forrester Research Acquires Springboard Research', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 12, 'company': {'name': 'Springboard Research', 'permalink': 'springboard-research'}}], 'offices': [{'description': None, 'address1': '400 Technology Square', 'address2': '', 'zip_code': '02139', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.3632, 'longitude': -71.092378}], 'milestones': [{'id': 36801, 'description': 'Forrester: $2.1 Trillion Will Go Into IT Spend In 2013; Apps And The U.S. Lead The Charge', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2013/07/15/forrester-2-1-trillion-will-go-into-it-spend-in-2013-apps-and-the-u-s-lead-the-charge/', 'source_text': '', 'source_description': 'Forrester: $2.1 Trillion Will Go Into IT Spend In 2013; Apps And The U.S. Lead The Charge', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Forrester Research', 'permalink': 'forrester-research'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'JPY', 'pub_year': 1987, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'FORR'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/6555/46555v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/6555/46555v1-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/6555/46555v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://blogs.forrester.com/colony/', 'title': 'Blog of CEO George Forrester Colongy'}, {'external_url': 'http://blogs.forrester.com/charleneli/', 'title': 'Groundswell (Charlene Li, Josh Bernoff, Analysts)'}, {'external_url': 'http://web-strategist.com/blog', 'title': 'Web Strategy by Jeremiah (Analyst)'}, {'external_url': 'http://www.beingpeterkim.com/', 'title': 'Being Peter Kim (Analyst)'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529af6d'), 'name': 'SonicWALL', 'permalink': 'sonicwall', 'crunchbase_url': 'http://www.crunchbase.com/company/sonicwall', 'homepage_url': 'http://www.sonicwall.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'sonicwall', 'category_code': 'security', 'number_of_employees': 900, 'founded_year': 1991, 'founded_month': 2, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'sales@sonicwall.com', 'phone_number': '+1 408.745.9600', 'description': '', 'created_at': 'Sat Jan 31 21:37:20 UTC 2009', 'updated_at': 'Thu Sep 22 21:27:37 UTC 2011', 'overview': '

SonicWALL is a private company that provides Internet security solutions and appliances. SonicWALL has three business units: Network Security, Content Security, and Business Continuity. Their product lines within these business units include devices that provide a firewall, UTM (Universal Threat Management), VPN (Virtual Private Network), backup and recovery, and anti-spam / email and content filtering, as well as software and value-added subscription services.

', 'image': {'available_sizes': [[[149, 45], 'assets/images/resized/0003/5408/35408v1-max-150x150.png'], [[149, 45], 'assets/images/resized/0003/5408/35408v1-max-250x250.png'], [[149, 45], 'assets/images/resized/0003/5408/35408v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'VP and CFO', 'person': {'first_name': 'Robert', 'last_name': 'Selvi', 'permalink': 'robert-selvi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'Sayle', 'permalink': 'robert-sayle'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Marcel', 'last_name': 'Bernard', 'permalink': 'marcel-bernard'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Seth', 'last_name': 'Boro', 'permalink': 'seth-boro'}}, {'is_past': True, 'title': 'Founder (Aventail Corporation)', 'person': {'first_name': 'Marty', 'last_name': 'Bickford', 'permalink': 'marty-bickford'}}, {'is_past': True, 'title': 'Chairman of the Board', 'person': {'first_name': 'John', 'last_name': 'Shoemaker', 'permalink': 'john-shoemaker'}}, {'is_past': True, 'title': 'Founder, Chief Technology Officer, and Vice President of Engineering', 'person': {'first_name': 'Sudhakar', 'last_name': 'Ravi', 'permalink': 'sudhakar-ravi'}}, {'is_past': True, 'title': 'Founder, Chairman, and Chief Executive Officer', 'person': {'first_name': 'Sreekanth', 'last_name': 'Ravi', 'permalink': 'sreekanth-ravi'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Brian', 'last_name': 'Wilson', 'permalink': 'brian-wilson'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Michael', 'last_name': 'Sheridan', 'permalink': 'michael-sheridan'}}, {'is_past': True, 'title': 'VP of Operations', 'person': {'first_name': 'Fara', 'last_name': 'Zarrabi', 'permalink': 'fara-zarrabi'}}, {'is_past': True, 'title': 'Director Global PR', 'person': {'first_name': 'Jock', 'last_name': 'Breitwieser', 'permalink': 'jock-breitwieser'}}, {'is_past': True, 'title': 'Sr. Director, Product Management', 'person': {'first_name': 'Gleb', 'last_name': 'Budman', 'permalink': 'gleb-budman'}}, {'is_past': True, 'title': 'Senior Director of Software Engineering', 'person': {'first_name': 'Emanoel', 'last_name': 'Daryoush', 'permalink': 'emanoel-daryoush'}}, {'is_past': True, 'title': 'Management positions', 'person': {'first_name': 'Wes', 'last_name': 'Swenson', 'permalink': 'wes-swenson'}}, {'is_past': True, 'title': 'Product Line Manager', 'person': {'first_name': 'Sameer', 'last_name': 'Mathur', 'permalink': 'sameer-mathur'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Casey', 'last_name': 'Jones', 'permalink': 'casey-jones-2'}}, {'is_past': True, 'title': 'VP - EMEA', 'person': {'first_name': 'Keith', 'last_name': 'Bird', 'permalink': 'keith-bird'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 717000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/sonicwall_acquired_by_private_equity_group_for_7_7m/s-0028973.html', 'source_description': 'SonicWALL Acquired By Private Equity Group For $717M', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 22, 'acquiring_company': {'name': 'Private equity group', 'permalink': 'private-equity-group'}}, 'acquisitions': [{'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2007/06/14/aventail-a-vpn-company-sells-to-sonicwall-for-25m/', 'source_description': 'Aventail, a VPN company, sells to SonicWall for $25M', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Aventail', 'permalink': 'aventail'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techstartups.wordpress.com/2005/11/22/sonicwall-acquires-lasso-logic-inc-and-enkoo/', 'source_description': 'SonicWALL Acquires Lasso Logic, Inc. and enKoo', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 22, 'company': {'name': 'Lasso Logic', 'permalink': 'lasso'}}], 'offices': [{'description': 'HQ', 'address1': '2001 Logic Drive', 'address2': '', 'zip_code': '95124', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 15615, 'description': 'SonicWALL Revolutionizes Network Security with SuperMassive E10000 Next-Generation Firewall Series - Offers 30 Gbps of Application Control and Intrusion Prevention', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 14, 'source_url': 'http://news.sonicwall.com/index.php?s=43&item=1043', 'source_text': None, 'source_description': 'Press Release', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'SonicWALL', 'permalink': 'sonicwall'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

SonicWALL Interop 2011

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b21b'), 'name': 'Webmetrics', 'permalink': 'webmetrics', 'crunchbase_url': 'http://www.crunchbase.com/company/webmetrics', 'homepage_url': 'http://www.webmetrics.com', 'blog_url': 'http://blog.webmetrics.com', 'blog_feed_url': 'http://feeds.feedburner.com/webmetricsperformanceblog', 'twitter_username': 'Webmetrics', 'category_code': 'software', 'number_of_employees': 900, 'founded_year': 1999, 'founded_month': 3, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'web-performance-management, web-site-monitoring, web-load-testing, website-monitoring, application-monitoring, network-services-monitoring, web-services-monitoring', 'alias_list': '', 'email_address': 'sales@webmetrics.com', 'phone_number': '888-367-4812', 'description': 'Performance Management Platforms', 'created_at': 'Thu Feb 26 23:49:50 UTC 2009', 'updated_at': 'Thu Jan 24 08:41:50 UTC 2013', 'overview': '

Founded in 1999 and acquired by Neustar in 2008\\nNeustar Webmetrics is a leading provider of collaborative web performance management solutions. Webmetrics website monitoring and testing services are used by companies that want to ensure online performance, competitive advantage and a positive end-user experience.

\\n\\n

Webmetrics Monitoring services enable companies to track, identify, solve and prevent web performance issues before customers are impacted. Webmetrics tests, monitors and measures the performance of web sites, web applications, web services, network services and streaming media to ensure 24/7 uptime and performance integrity. To meet customers’ unique requirements, Webmetrics offers both Basic and Enterprise Monitoring, with agents located in over 100 major cities worldwide.

\\n\\n

Webmetrics Load Testing services test your sites and applications against heavy loads or inputs to find the point at which they fail or performance degrades – providing real-world validation that your web applications are ready to go. Webmetrics offers both Full-Service and On-Demand Load Testing to meet customers’ unique needs, including the only solution with real browser users for testing.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0006/5480/65480v6-max-150x150.png'], [[250, 49], 'assets/images/resized/0006/5480/65480v6-max-250x250.png'], [[371, 73], 'assets/images/resized/0006/5480/65480v6-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [], 'competitions': [{'competitor': {'name': 'AlertFox', 'permalink': 'alertfox'}}, {'competitor': {'name': 'Monitis', 'permalink': 'monitis'}}, {'competitor': {'name': 'Keynote', 'permalink': 'keynote'}}, {'competitor': {'name': 'PingMate', 'permalink': 'pingmate'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '9444 Waples', 'address2': 'Suite 300', 'zip_code': '92121', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Corporate', 'address1': '21575 Ridgetop Circle', 'address2': '', 'zip_code': '20166', 'city': 'Sterling', 'state_code': 'VA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 125], 'assets/images/resized/0006/5481/65481v1-max-150x150.jpg'], [[250, 208], 'assets/images/resized/0006/5481/65481v1-max-250x250.jpg'], [[450, 375], 'assets/images/resized/0006/5481/65481v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 119], 'assets/images/resized/0015/3997/153997v2-max-150x150.png'], [[250, 199], 'assets/images/resized/0015/3997/153997v2-max-250x250.png'], [[450, 359], 'assets/images/resized/0015/3997/153997v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerstone-ondemand', 'homepage_url': 'http://www.cornerstoneondemand.com', 'blog_url': 'http://www.cornerstoneondemand.com/blog', 'blog_feed_url': 'http://www.cornerstoneondemand.com/blog', 'twitter_username': 'cornerstoneinc', 'category_code': 'software', 'number_of_employees': 881, 'founded_year': 1999, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'talent-management, enterprise, learning-management, performance-management, onboarding, internal-recruiting, learning-content, critical-roles, employee-collaboration, succession', 'alias_list': '', 'email_address': 'info@cornerstoneondemand.com', 'phone_number': '1 (888) 365-2763', 'description': 'integrated talent management software', 'created_at': 'Sun Mar 15 14:45:14 UTC 2009', 'updated_at': 'Tue Nov 05 09:46:58 UTC 2013', 'overview': '

Cornerstone OnDemand is a leading global provider of a comprehensive learning and talent management solution delivered as Software-as-a-Service (SaaS). The company enables organizations to meet the challenges they face in empowering their people and maximizing the productivity of their human capital. Cornerstone currently empowers nearly 13 million users across 190 countries and in 41 languages.

\\n\\n

The company’s integrated software offering consists of four cloud solutions, including the Cornerstone Recruiting Cloud, the Cornerstone Performance Cloud, the Cornerstone Learning Cloud and the Cornerstone Extended Enterprise Cloud. Our clients use our solution to develop employees throughout their careers, engage all employees effectively, improve business execution, cultivate future leaders, and integrate with their external networks of customers, vendors and distributors.

\\n\\n

The company has more than 1,500 clients, including multi-national corporations, large domestic enterprises, mid-market companies, state and local public sector organizations, higher education institutions and non-profit entities. Clients include BJC HealthCare, Flextronics, Kelly Services, Pearson, Starwood Hotels & Resorts Worldwide, Teach for America and Virgin Media Limited, among many others. Cornerstone supports multiple client deployments of more than 150,000 users, including one client with more than 700,000 users.

\\n\\n

Cornerstone is headquartered in Santa Monica, California, with offices in Auckland, Hong Kong, London, Mumbai, Munich, Madrid, Paris, Rome, Sydney and Tel Aviv.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0012/4709/124709v7-max-150x150.png'], [[250, 61], 'assets/images/resized/0012/4709/124709v7-max-250x250.png'], [[450, 110], 'assets/images/resized/0012/4709/124709v7-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Mark', 'last_name': 'Goldin', 'permalink': 'mark-goldin'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Perry', 'last_name': 'Wallack', 'permalink': 'perry-wallack'}}, {'is_past': False, 'title': 'VP, Corporate Development & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': False, 'title': 'EVP Strategic Accounts', 'person': {'first_name': 'Steven', 'last_name': 'Seymour', 'permalink': 'steven-seymour'}}, {'is_past': False, 'title': 'SVP of Client Success', 'person': {'first_name': 'Kirsten', 'last_name': 'Maas Helvey', 'permalink': 'kirsten-maas-helvey'}}, {'is_past': False, 'title': 'SVP and GM of Europe, Middle East and Africa (EMEA)', 'person': {'first_name': 'Vince', 'last_name': 'Belliveau', 'permalink': 'vince-belliveau'}}, {'is_past': False, 'title': 'SVP Sales', 'person': {'first_name': 'Dave', 'last_name': 'Carter', 'permalink': 'dave-carter'}}, {'is_past': False, 'title': 'VP Alliances & Strategy', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': False, 'title': 'GM, Asia-Pacific', 'person': {'first_name': 'Frank', 'last_name': 'Ricciardi', 'permalink': 'frank-ricciardi'}}, {'is_past': False, 'title': 'Services Executive Consultant', 'person': {'first_name': 'Jose', 'last_name': 'daVeiga', 'permalink': 'jose-daveiga'}}, {'is_past': False, 'title': 'National Director – Higher Education', 'person': {'first_name': 'Kurt', 'last_name': 'Ackman', 'permalink': 'kurt-ackman'}}, {'is_past': True, 'title': 'Vice President, Channel Management', 'person': {'first_name': 'Sean', 'last_name': 'Jacobsohn', 'permalink': 'sean-jacobsohn-2'}}, {'is_past': True, 'title': 'SVP, Consulting Services', 'person': {'first_name': 'Kristen', 'last_name': 'Mass Helvey', 'permalink': 'kristen-mass-helvey'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Ed', 'last_name': 'Garber', 'permalink': 'ed-garber'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Norquist Roy', 'permalink': 'julie-norquist-roy'}}, {'is_past': True, 'title': 'Director of Core architecture', 'person': {'first_name': 'Sridhar', 'last_name': 'Sambangi', 'permalink': 'sridhar-sambangi'}}, {'is_past': True, 'title': 'Senior Director, Strategy and Research', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Matt', 'last_name': 'Shields', 'permalink': 'matt-shields-2'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Jessica', 'last_name': 'Levaton', 'permalink': 'jessica-levaton'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Neil', 'last_name': 'Sadaranganey', 'permalink': 'neil-sadaranganey'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'S.Steven', 'last_name': 'Singh', 'permalink': 's-steven-singh'}}], 'competitions': [{'competitor': {'name': 'SuccessFactors', 'permalink': 'successfactors'}}, {'competitor': {'name': 'Halogen Software', 'permalink': 'halogen-software'}}, {'competitor': {'name': 'WorkSimple', 'permalink': 'worksimple'}}, {'competitor': {'name': 'SilkRoad Technology', 'permalink': 'silkroad-technology'}}, {'competitor': {'name': 'Taleo', 'permalink': 'taleo'}}, {'competitor': {'name': 'Softscape', 'permalink': 'softscape'}}], 'providerships': [], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 5331, 'round_code': 'e', 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_raises____7m/s-0020463.html', 'source_description': 'Cornerstone OnDemand Raises $12.7M', 'raised_amount': 12700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}]}, {'id': 11881, 'round_code': 'd', 'source_url': 'http://www.cornerstoneondemand.com/2007-09-17-cornerstone-ondemand-raises-32-million', 'source_description': 'On-Demand Leader Redefines the Talent Management Landscape', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '1601 Cloverfield Blvd.', 'address2': 'Suite 620 South', 'zip_code': '90404', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.028182, 'longitude': -118.472577}], 'milestones': [{'id': 7141, 'description': 'Announced hire of new CTO, Mark Goldin.', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://www.cornerstoneondemand.com/mark-goldin-joins-cornerstone-ondemand-chief-technology-officer', 'source_text': None, 'source_description': 'Mark Goldin Joins Cornerstone OnDemand as Chief Technology Officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}, {'id': 35043, 'description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 11, 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_looks_to_raises____m_in_debt/s-0049751.html', 'source_text': '', 'source_description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}], 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ff0'), 'name': 'Mozilla', 'permalink': 'mozilla', 'crunchbase_url': 'http://www.crunchbase.com/company/mozilla', 'homepage_url': 'http://mozilla.org', 'blog_url': 'http://blog.mozilla.org', 'blog_feed_url': 'http://blog.mozilla.org/feed/', 'twitter_username': 'firefox', 'category_code': 'web', 'number_of_employees': 800, 'founded_year': 1998, 'founded_month': 2, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mozilla, browser, opensource, addons', 'alias_list': '', 'email_address': 'webmaster@mozilla.com', 'phone_number': '', 'description': '', 'created_at': 'Sat Sep 08 18:18:41 UTC 2007', 'updated_at': 'Sat Mar 16 07:55:31 UTC 2013', 'overview': '

Born from Netscape’s 1998 open sourcing of the code base behind its Netscape Communicator internet suite, Mozilla Firefox currently holds approximately 22.48% of the world market for internet browsers as of April 2009. Version 1.0 was released on November 9, 2004 after a series of name changes, and within a year close to 100 million downloads of the browser technology had occurred.

\\n\\n

The following two years saw upgrades to version 1.5 in November 2005 and 2.0 in October 2006. Firefox’s feature set includes tabbed browsing, an array of extensions, themes and add-ons to enable more functionality within the browser, as well as a variety of security measures that help the browser compete with Internet Explorer for customers.

', 'image': {'available_sizes': [[[150, 144], 'assets/images/resized/0001/8039/18039v7-max-150x150.jpg'], [[229, 220], 'assets/images/resized/0001/8039/18039v7-max-250x250.jpg'], [[229, 220], 'assets/images/resized/0001/8039/18039v7-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Firefox', 'permalink': 'firefox'}, {'name': 'Mozilla Messaging', 'permalink': 'mozilla-messaging'}, {'name': 'Geode', 'permalink': 'geode'}, {'name': 'Fennec', 'permalink': 'fennec'}, {'name': 'Thunderbird', 'permalink': 'thunderbird'}, {'name': 'Bugzilla', 'permalink': 'bugzilla'}, {'name': 'Seamonkey', 'permalink': 'seamonkey'}, {'name': 'Sunbird', 'permalink': 'sunbird'}, {'name': 'Lightning', 'permalink': 'lightning'}, {'name': 'Weave', 'permalink': 'weave'}, {'name': 'Personas', 'permalink': 'personas'}, {'name': 'Prism', 'permalink': 'prism'}, {'name': 'Test Pilot', 'permalink': 'test-pilot'}, {'name': 'Chromatabs', 'permalink': 'chromatabs'}, {'name': 'The Coop', 'permalink': 'the-coop'}, {'name': 'Web Apps Project', 'permalink': 'web-apps-project'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Mitchell', 'last_name': 'Baker', 'permalink': 'mitchell-baker'}}, {'is_past': False, 'title': 'CTO and SVP Engineering', 'person': {'first_name': 'Brendan', 'last_name': 'Eich', 'permalink': 'brendan-eich'}}, {'is_past': False, 'title': 'Vice President, Product', 'person': {'first_name': 'Jay', 'last_name': 'Sullivan', 'permalink': 'jay-sullivan'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Ellen', 'last_name': 'Siminoff', 'permalink': 'ellen-siminoff'}}, {'is_past': False, 'title': 'Fellow (WebFWD)', 'person': {'first_name': 'Patrick', 'last_name': 'Santana', 'permalink': 'patrick-santana'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Diane', 'last_name': 'Bisgeier', 'permalink': 'diane-bisgeier'}}, {'is_past': False, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Jack', 'last_name': 'Moffitt', 'permalink': 'jack-moffitt'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Ash', 'last_name': 'Maurya', 'permalink': 'ash-maurya'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Joi', 'last_name': 'Ito', 'permalink': 'joi-ito'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Bob', 'last_name': 'Lisbonne', 'permalink': 'bob-lisbonne'}}, {'is_past': False, 'title': 'Data & Product Counsel', 'person': {'first_name': 'Jishnu', 'last_name': 'Menon', 'permalink': 'jishnu-menon'}}, {'is_past': False, 'title': 'Hacker Extraordinaire', 'person': {'first_name': 'Marshall', 'last_name': 'Culpepper', 'permalink': 'marshall-culpepper'}}, {'is_past': False, 'title': 'Principal Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Mayo', 'permalink': 'mark-mayo'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Lilly', 'permalink': 'john-lilly'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Grandon', 'permalink': 'kevin-grandon'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Blake', 'last_name': 'Ross', 'permalink': 'blake-ross'}}, {'is_past': True, 'title': 'CFO and Treasure', 'person': {'first_name': 'Jim', 'last_name': 'Cook', 'permalink': 'jim-cook-3'}}, {'is_past': True, 'title': 'Chief Application Officer and General Manager', 'person': {'first_name': 'Shervin', 'last_name': 'Pishevar', 'permalink': 'shervin-pishevar'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Chris', 'last_name': 'Beard', 'permalink': 'chris-beard'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'VP Engineering Ops', 'person': {'first_name': 'Justin', 'last_name': 'Fitzhugh', 'permalink': 'justin-fitzhugh'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Shaver', 'permalink': 'mike-shaver'}}, {'is_past': True, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Schroepfer', 'permalink': 'mike-shroepfer'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Dave', 'last_name': 'Hyatt', 'permalink': 'dave-hyatt'}}, {'is_past': True, 'title': 'Head of Business Affairs', 'person': {'first_name': 'Bart', 'last_name': 'Decrem', 'permalink': 'bart-decrem'}}, {'is_past': True, 'title': 'Thunderbird Guru', 'person': {'first_name': 'Scott', 'last_name': 'MacGregor', 'permalink': 'scott-macgregor'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': True, 'title': 'VP People Ops', 'person': {'first_name': 'Dan', 'last_name': 'Portillo', 'permalink': 'dan-portillo'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael Yoshitaka', 'last_name': 'Erlewine', 'permalink': 'michael-yoshitaka-erlewine'}}, {'is_past': True, 'title': 'Director, Developer Tools', 'person': {'first_name': 'Dion', 'last_name': 'Almaer', 'permalink': 'dion-almaer'}}, {'is_past': True, 'title': 'Director of Add-ons', 'person': {'first_name': 'Nick', 'last_name': 'Nguyen', 'permalink': 'nick-nguyen'}}, {'is_past': True, 'title': 'Director of Global PR', 'person': {'first_name': 'Melissa', 'last_name': 'Shapiro', 'permalink': 'melissa-shapiro'}}, {'is_past': True, 'title': 'Business Affairs / Mozilla Labs Intern', 'person': {'first_name': 'Pejman', 'last_name': 'Pour-Moezzi', 'permalink': 'pejman-pour-moezzi'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Sara', 'last_name': 'Yu', 'permalink': 'sara-yu'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Mitch', 'last_name': 'Kapor', 'permalink': 'mitch-kapor'}}, {'is_past': True, 'title': 'Native Android Mobile Engineer', 'person': {'first_name': 'Dmitrij', 'last_name': 'Petters', 'permalink': 'dmitrij-petters'}}, {'is_past': True, 'title': 'Webdev Intern', 'person': {'first_name': 'RJ', 'last_name': 'Walsh', 'permalink': 'rj-walsh'}}, {'is_past': True, 'title': 'Head of User Experience, Mozilla Labs', 'person': {'first_name': 'Aza', 'last_name': 'Raskin', 'permalink': 'aza-raskin'}}, {'is_past': True, 'title': 'Director, Evangelism', 'person': {'first_name': 'Christopher', 'last_name': 'Blizzard', 'permalink': 'christopher-blizzard'}}, {'is_past': True, 'title': 'Director, Mozilla Labs', 'person': {'first_name': 'Suneel', 'last_name': 'Gupta', 'permalink': 'suneel-gupta'}}, {'is_past': True, 'title': 'Labs Engineer', 'person': {'first_name': 'John', 'last_name': 'Resig', 'permalink': 'john-resig'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mikeal', 'last_name': 'Rogers', 'permalink': 'mikeal-rogers'}}, {'is_past': True, 'title': 'Director, Developer Tools', 'person': {'first_name': 'Ben', 'last_name': 'Galbraith', 'permalink': 'ben-galbraith'}}, {'is_past': True, 'title': 'Principal UX Designer', 'person': {'first_name': 'Kevin', 'last_name': 'Fox', 'permalink': 'kevin-fox'}}, {'is_past': True, 'title': 'Fellow (WebFWD)', 'person': {'first_name': 'Jaisen', 'last_name': 'Mathai', 'permalink': 'jaisen-mathai'}}, {'is_past': True, 'title': 'Principal Product Manager, Mobile', 'person': {'first_name': 'Thomas', 'last_name': 'Arend', 'permalink': 'thomas-arend'}}, {'is_past': True, 'title': 'Business Development & Marketing', 'person': {'first_name': 'Rishi', 'last_name': 'Mallik', 'permalink': 'rishi-mallik'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Firefox UX Lead', 'person': {'first_name': 'Alex', 'last_name': 'Limi', 'permalink': 'alexander-limi'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'David', 'last_name': 'Rolnitzky', 'permalink': 'david-rolnitzky'}}], 'competitions': [{'competitor': {'name': 'Opera Software', 'permalink': 'opera-software'}}, {'competitor': {'name': 'Flock', 'permalink': 'flock'}}, {'competitor': {'name': 'Rockmelt', 'permalink': 'rockmelt'}}], 'providerships': [{'title': '', 'is_past': True, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}], 'total_money_raised': '$2.3M', 'funding_rounds': [{'id': 1892, 'round_code': 'unattributed', 'source_url': 'http://www.aol.com', 'source_description': 'AOL', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 7, 'funded_day': 15, 'investments': [{'company': {'name': 'AOL', 'permalink': 'aol'}, 'financial_org': None, 'person': None}]}, {'id': 1893, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Mitch', 'last_name': 'Kapor', 'permalink': 'mitch-kapor'}}]}], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/05/10/amara-funding/', 'source_description': 'Mozilla & Knight Foundation Invest $1M In Crowdsourced Translation Startup Amara', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 10, 'company': {'name': 'Amara', 'permalink': 'amara'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businesswire.com/news/home/20121128005406/en/Everything.me-Announces-25-Million-Strategic-Investment-Telef%C3%B3nica', 'source_description': 'Everything.me Announces a $25 Million Strategic Investment From Telefónica, SingTel Innov8, Mozilla and Existing Investors', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 28, 'company': {'name': 'Everything.me', 'permalink': 'everything-me'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '650 Castro Street', 'address2': 'Suite 300', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.418491, 'longitude': -122.08744}], 'milestones': [{'id': 153, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 2, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': 'MOUNTAIN VIEW, Calif. – July 2, 2008 – Mozilla today announced it set a new Guinness World Record for the largest number of software downloads in 24 hours. The record-setting 8,002,530 downloads coincided with the launch of Firefox® 3, Mozilla’s major update to its popular and acclaimed free, open source Web browser.\\r\\n\\r\\nMozilla enthusiasts worldwide drove more than 1.7 million pledges to download Firefox 3 on Download Day, hosted regional download “fests,â€\\x9d and informed more than 43 million people through hosting Download Day affiliate buttons online. The global Mozilla community has been celebrating the historic goal of establishing a Guinness World Record with parties in more than 25 countries, including a 24-hour long download fest celebration called Camp Firefox at Mozilla’s Mountain View headquarters.\\r\\n\\r\\n“The enthusiasm and creativity of Firefox fans was instrumental in achieving this record,â€\\x9d said Paul Kim, VP of Marketing at Mozilla. “Our community members came together and not only spread the word, but also took the initiative to help mobilize millions of people to demonstrate their belief that Firefox gives people the best possible online experience.â€\\x9d\\r\\n\\r\\n“As the arbiter and recorder of the world’s amazing facts, Guinness World Records is pleased to add Mozilla’s achievement to our archives,â€\\x9d said Gareth Deaves, Records Manager for Guinness World Records. “Mobilizing over 8 million internet users within 24 hours is an extremely impressive accomplishment and we would like to congratulate the Mozilla community for their hard work and dedication.â€\\x9d', 'source_description': 'Mozilla Sets New Guinness World Record with Firefox 3 Downloads', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 5275, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 11, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Mozilla CEO John Lilly Stepping Down To Join Greylock Partners', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 6465, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 1, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Firefox Crosses 2 Billion Add-On Downloads', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 10209, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 18, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Mozilla: $104 Million In Revenues, 400 Million Users, Google Deal Running Through 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://mashpedia.com/Mozilla_Corporation', 'title': 'Mozilla Corp. at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529857e'), 'name': 'Buongiorno', 'permalink': 'buongiorno', 'crunchbase_url': 'http://www.crunchbase.com/company/buongiorno', 'homepage_url': 'http://www.buongiorno.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'AnnPRBuongiorno', 'category_code': 'mobile', 'number_of_employees': 800, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, vas, community, social-networking, connected-devices, android, tablets, smartphones', 'alias_list': None, 'email_address': 'customer-care@buongiorno.com', 'phone_number': '39 02 582131 ', 'description': '', 'created_at': 'Sun Mar 16 09:28:40 UTC 2008', 'updated_at': 'Sat Jan 05 19:34:21 UTC 2013', 'overview': '

Buongiorno is known in the worldwide mobile commerce ecosystem for developing and managing paid apps and contents that help consumers get greater enjoyment from mobile devices.

\\n\\n

With direct connections to more than 130 telecom operators in 25 countries, over 10 years’ experience and a team of 800 professionals, Buongiorno makes the mobile internet experience happen. In 2011, Buongiorno refocused its business on the B2C sector, materialized via the acquisition of Dada.net and the spin-off of the majority of its B2B business.

\\n\\n

Buongiorno concentrates exclusively on delivering a top notch mobile entertainment experience to end consumers and is investing heavily to market a few high-potential businesses based on paid content on mobile, such as the mobile payments solution Cashlog.com and e-Gaming portal Winga.com.\\nBuongiorno is headquartered and listed in Milan (FTSE Italy STAR: BNG).

', 'image': {'available_sizes': [[[150, 90], 'assets/images/resized/0002/1848/21848v1-max-150x150.jpg'], [[250, 151], 'assets/images/resized/0002/1848/21848v1-max-250x250.jpg'], [[341, 206], 'assets/images/resized/0002/1848/21848v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Cashlog', 'permalink': 'blinko'}, {'name': 'B!3A', 'permalink': 'b-3a'}], 'relationships': [{'is_past': False, 'title': 'Chairman of Buongiorno', 'person': {'first_name': 'Mauro', 'last_name': 'Del Rio', 'permalink': 'mauro-del-rio'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Andrea', 'last_name': 'Casalini', 'permalink': 'andrea-casalini'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Carlo', 'last_name': 'Frigato', 'permalink': 'carlo-frigato'}}, {'is_past': False, 'title': 'Global Marketing Communications Director', 'person': {'first_name': 'Lucia', 'last_name': 'Predolin', 'permalink': 'lucia-predolin'}}, {'is_past': False, 'title': 'Head of Global Marketing, Product & Supply', 'person': {'first_name': 'Fernando', 'last_name': 'González Mesones', 'permalink': 'fernando-gonzlez-mesones'}}, {'is_past': False, 'title': 'Global Head of Technology and Delivery', 'person': {'first_name': 'Alessandro', 'last_name': 'Gatteschi', 'permalink': 'alessandro-gatteschi'}}, {'is_past': False, 'title': 'Latam Business Development Director', 'person': {'first_name': 'Filippo', 'last_name': 'Satolli', 'permalink': 'filippo-satolli-2'}}, {'is_past': False, 'title': 'Head of New Business', 'person': {'first_name': 'Matteo', 'last_name': 'Montan', 'permalink': 'matteo-montan'}}, {'is_past': False, 'title': 'Head of Global Market Development & Sales', 'person': {'first_name': 'Pietro', 'last_name': 'De Nardis', 'permalink': 'pietro-de-nardis'}}, {'is_past': False, 'title': 'HR and Organization Development Director', 'person': {'first_name': 'Florence', 'last_name': 'Kaminska', 'permalink': 'florence-kaminska'}}, {'is_past': False, 'title': 'Head of Connected Devices', 'person': {'first_name': 'Mo', 'last_name': 'Firouzabadian', 'permalink': 'mo-firouzabadian'}}, {'is_past': True, 'title': 'VP and Managing Director of the German Branch', 'person': {'first_name': 'Ekow', 'last_name': 'Yankah', 'permalink': 'ekow-yankah'}}, {'is_past': True, 'title': 'Director, Operations', 'person': {'first_name': 'Benjamin', 'last_name': 'Rohé', 'permalink': 'benjamin-roh'}}, {'is_past': True, 'title': 'Head of Interactive Television', 'person': {'first_name': 'Gaylord', 'last_name': 'Zach', 'permalink': 'gaylord-zach'}}, {'is_past': True, 'title': 'Senior Telco Account Manager', 'person': {'first_name': 'Mirko', 'last_name': 'Trasciatti', 'permalink': 'mirko-trasciatti'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Phil', 'last_name': 'v. Sassen', 'permalink': 'phil-v-sassen'}}, {'is_past': True, 'title': 'South Cone Latam Executive Director', 'person': {'first_name': 'Diego', 'last_name': 'Marti\\xadnez Nunez', 'permalink': 'diego-martnez-nez'}}, {'is_past': True, 'title': 'Director, New Business Development', 'person': {'first_name': 'Max', 'last_name': 'Polisar', 'permalink': 'max-polisar'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Freever', 'permalink': 'freever'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Tutch Media Mobile', 'permalink': 'tutch-media-mobile'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2004, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Gsmbox', 'permalink': 'gsmbox'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Vitaminic', 'permalink': 'vitaminic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'iTouch', 'permalink': 'itouch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Dada', 'permalink': 'dada-spa'}}], 'offices': [{'description': '', 'address1': 'Via Cosimo del Fante, 10', 'address2': '', 'zip_code': '20122', 'city': 'Milan', 'state_code': None, 'country_code': 'ITA', 'latitude': 45.455322, 'longitude': 9.185502}, {'description': '', 'address1': 'Borgo Masnovo, 2', 'address2': '', 'zip_code': '43100', 'city': 'Parma', 'state_code': None, 'country_code': 'ITA', 'latitude': 44.798391, 'longitude': 10.326149}, {'description': 'Argentina', 'address1': 'Humboldt 2495', 'address2': 'Piso 10', 'zip_code': 'C1425FUG', 'city': 'Buenos Aires', 'state_code': None, 'country_code': 'ARG', 'latitude': None, 'longitude': None}, {'description': 'Australia', 'address1': 'Level 4', 'address2': '2 Elizabeth Plaza', 'zip_code': '2060', 'city': 'North Sydney NSW', 'state_code': None, 'country_code': 'AUS', 'latitude': -33.804474, 'longitude': 151.104553}, {'description': 'Austria', 'address1': 'Hießgasse 12/3', 'address2': '', 'zip_code': '1030', 'city': 'Wien', 'state_code': None, 'country_code': 'AUT', 'latitude': 48.202731, 'longitude': 16.395911}, {'description': 'Belgium e Netherlands', 'address1': 'Sweelinckplein 9-11', 'address2': '', 'zip_code': '2517', 'city': 'The Hague', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.083971, 'longitude': 4.285853}, {'description': 'Brasil', 'address1': 'R. Arandu, 205, 04562-030', 'address2': 'Brooklyn Novo', 'zip_code': '1110', 'city': 'São Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.60918, 'longitude': -46.692783}, {'description': 'Finland', 'address1': 'Salmisaarenranta 7', 'address2': '', 'zip_code': '00180', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': 60.163748, 'longitude': 24.899607}, {'description': 'France', 'address1': '10 rue Treilhard', 'address2': '', 'zip_code': '75008', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.877049, 'longitude': 2.314679}, {'description': 'Germany', 'address1': 'Arndtstrasse, 34', 'address2': '', 'zip_code': '10965', 'city': 'Berlin', 'state_code': None, 'country_code': 'DEU', 'latitude': 52.488331, 'longitude': 13.393718}, {'description': 'Greece', 'address1': 'Mesogion 319', 'address2': '', 'zip_code': '15231', 'city': 'Athens', 'state_code': None, 'country_code': 'GRC', 'latitude': 38.007084, 'longitude': 23.800205}, {'description': 'Hong Kong', 'address1': '18 Harcourt Road', 'address2': 'Admiralty Centre Tower', 'zip_code': '1001', 'city': 'Hong Kong', 'state_code': None, 'country_code': 'HKG', 'latitude': 22.279704, 'longitude': 114.165023}, {'description': 'India', 'address1': '7, Barakhambha Road', 'address2': '', 'zip_code': '110001', 'city': 'New Delhi', 'state_code': None, 'country_code': 'IND', 'latitude': 28.627906, 'longitude': 77.22797}, {'description': 'Ireland', 'address1': 'Lake Drive', 'address2': 'City West Digital Park', 'zip_code': '3050', 'city': 'Dublin', 'state_code': None, 'country_code': 'IRL', 'latitude': 53.293363, 'longitude': -6.422587}, {'description': 'Mexico', 'address1': 'León Tolstoi #18', 'address2': 'PH Col. Anzures', 'zip_code': '11590', 'city': 'México D.F.', 'state_code': None, 'country_code': 'MEX', 'latitude': 20.686477, 'longitude': -103.422819}, {'description': 'Nigeria', 'address1': '1st Floor Plot, Olosa Street', 'address2': 'Victoria Island', 'zip_code': '1649', 'city': 'Lagos', 'state_code': None, 'country_code': 'NGA', 'latitude': None, 'longitude': None}, {'description': 'Norway', 'address1': 'Kongens gate 9', 'address2': '', 'zip_code': '0153', 'city': 'Oslo', 'state_code': None, 'country_code': 'NOR', 'latitude': 59.909996, 'longitude': 10.741712}, {'description': 'Portugal', 'address1': 'Campo Grande, 30, 2° C', 'address2': '', 'zip_code': '1700-093', 'city': 'Lisbon', 'state_code': None, 'country_code': 'PRT', 'latitude': 38.753759, 'longitude': -9.152264}, {'description': 'Russia', 'address1': 'Archangelskij per, 6 stroenie 2', 'address2': '', 'zip_code': '101000', 'city': 'Moscow', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Spain', 'address1': 'Calle Javier Ferrero 13-15', 'address2': '', 'zip_code': '28002', 'city': 'Madrid', 'state_code': None, 'country_code': 'ESP', 'latitude': 40.4487974, 'longitude': -3.6697641}, {'description': 'South Africa', 'address1': '34, Bree Street', 'address2': '9th Floor, The Terraces', 'zip_code': '8001', 'city': 'Cape Town', 'state_code': None, 'country_code': 'ZAF', 'latitude': None, 'longitude': None}, {'description': 'Switzerland', 'address1': 'Technikumsstrasse 14 CH', 'address2': '', 'zip_code': '9470', 'city': 'Buchs', 'state_code': None, 'country_code': 'CHE', 'latitude': None, 'longitude': None}, {'description': 'Turkey', 'address1': 'Kasap Sok. No. 12', 'address2': 'Kat. 2 Esentepe', 'zip_code': '34394', 'city': 'Istanbul', 'state_code': None, 'country_code': 'TUR', 'latitude': 41.029886, 'longitude': 28.94057}, {'description': 'UK', 'address1': '57-63, Scrutton Street', 'address2': '', 'zip_code': 'EC2A 4PF', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.5232478, 'longitude': -0.082571}, {'description': 'USA', 'address1': '485 Alberto Way', 'address2': 'Suite 210', 'zip_code': '95032', 'city': 'Los Gatos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.229898, 'longitude': -121.971853}], 'milestones': [{'id': 23902, 'description': 'NTT DOCOMO, INC. has launched a tender offer to acquire all shares in Buongiorno S.p.A., one of the largest providers of mobile internet content and apps in Europe and beyond.', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 14, 'source_url': 'http://www.nttdocomo.com/pr/2012/001588.html', 'source_text': None, 'source_description': 'NTT DOCOMO to Launch Public Tender Offer for Buongiorno', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Buongiorno', 'permalink': 'buongiorno'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2003, 'pub_month': 7, 'pub_day': 17, 'stock_symbol': 'BNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'permalink': 'yelp', 'crunchbase_url': 'http://www.crunchbase.com/company/yelp', 'homepage_url': 'http://yelp.com', 'blog_url': 'http://officialblog.yelp.com/', 'blog_feed_url': 'http://naturallylindy.com', 'twitter_username': 'Yelp', 'category_code': 'search', 'number_of_employees': 800, 'founded_year': 2004, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'localsearch, localreviews, reviews, avriette', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Local search and review site', 'created_at': 'Tue Jul 10 06:21:37 UTC 2007', 'updated_at': 'Wed Nov 13 09:32:29 UTC 2013', 'overview': '

Yelp (NYSE: YELP) connects people with great local businesses. Yelp was founded in San Francisco in July 2004. Since then, Yelp communities have taken root in major metros across the US, Canada, UK, Ireland, France, Germany, Austria, The Netherlands, Spain, Italy, Switzerland, Belgium, Australia, Sweden, Denmark, Norway, Finland, Singapore, Poland and Turkey. Yelp had a monthly average of 86 million unique visitors in Q4 2012*. By the end of Q4 2012, Yelpers had written more than 36 million rich, local reviews, making Yelp the leading local guide for real word-of-mouth on everything from boutiques and mechanics to restaurants and dentists. Yelp’s mobile application was used on 9.2 million unique mobile devices on a monthly average basis during Q4 2012.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/2263/2263v12-max-150x150.png'], [[250, 103], 'assets/images/resized/0000/2263/2263v12-max-250x250.png'], [[435, 180], 'assets/images/resized/0000/2263/2263v12-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Slimak', 'permalink': 'jonathan-slimak'}}, {'is_past': False, 'title': 'Chairman & Board Director', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': False, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': False, 'title': 'Vice President, Local Sales', 'person': {'first_name': 'Erica', 'last_name': 'Galos Alioto', 'permalink': 'erica-galos-alioto'}}, {'is_past': False, 'title': 'Vice President, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Vice President of New Markets', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': False, 'title': 'Vice President, North American Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': False, 'title': 'VP of Corporate Communic', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': False, 'title': 'Senior Vice President of Global Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Laurence', 'last_name': 'Wilson', 'permalink': 'laurence-wilson-2'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Fenton', 'permalink': 'peter-fenton'}}, {'is_past': False, 'title': 'Vice President of Business and Corporate Development', 'person': {'first_name': 'Mike', 'last_name': 'Ghaffary', 'permalink': 'mike-ghaffary'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': False, 'title': 'VP, Revenue & Analytics', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': False, 'title': 'Director, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Android Developer', 'person': {'first_name': 'Alexander', 'last_name': 'Davis', 'permalink': 'alexander-davis-2'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeremy', 'last_name': 'Levine', 'permalink': 'jeremy-levine'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': False, 'title': 'Tech Lead', 'person': {'first_name': 'Ken', 'last_name': 'Struys', 'permalink': 'ken-struys'}}, {'is_past': False, 'title': 'Vice President, Consumer & Mobile Productser and Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': False, 'title': 'Global Head of Human Resources', 'person': {'first_name': 'Jose', 'last_name': 'Martin', 'permalink': 'jose-martin-3'}}, {'is_past': False, 'title': 'Sales Account Executive', 'person': {'first_name': 'Clement', 'last_name': 'Bazan', 'permalink': 'clement-bazan'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Vlado', 'last_name': 'Herman', 'permalink': 'vlado-herman'}}, {'is_past': True, 'title': 'Vice President of European Marketing', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Neil', 'last_name': 'Kumar', 'permalink': 'neil-kumar'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Sales Director', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Marketing Consultant', 'person': {'first_name': 'Jeremy', 'last_name': 'Krantz', 'permalink': 'jeremy-krantz'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Emile', 'last_name': 'Petrone', 'permalink': 'emile-petrone'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Jae', 'last_name': 'Kwon', 'permalink': 'jae-kwon'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Mueller', 'permalink': 'jason-mueller'}}, {'is_past': True, 'title': 'Senior Business Intelligence Analyst', 'person': {'first_name': 'Nikhil', 'last_name': 'Nirmel', 'permalink': 'nikhil-nirmel-2'}}, {'is_past': True, 'title': 'Regional Marketing Director', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Key Account Executive', 'person': {'first_name': 'Stephen', 'last_name': 'Smith', 'permalink': 'stephen-smith-2'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Director of Sales / West', 'person': {'first_name': 'Amanda', 'last_name': 'Levy', 'permalink': 'amanda-levy'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mamoon', 'last_name': 'Hamid', 'permalink': 'mamoon-hamid'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Kenji', 'last_name': 'Kaneko', 'permalink': 'kenji-kaneko'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kyle', 'last_name': 'Killion', 'permalink': 'kyle-killion'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Robertson', 'permalink': 'tim-robertson'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Director of Consumer & Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'John', 'last_name': 'Lin', 'permalink': 'john-lin-2'}}], 'competitions': [{'competitor': {'name': 'Insider Pages', 'permalink': 'insiderpages'}}, {'competitor': {'name': 'Viewpoints', 'permalink': 'viewpoints'}}, {'competitor': {'name': 'Judys Book', 'permalink': 'judysbook'}}, {'competitor': {'name': 'LocoGopher', 'permalink': 'locogopher'}}, {'competitor': {'name': 'Citysearch', 'permalink': 'citysearch'}}, {'competitor': {'name': 'Zvents', 'permalink': 'zvents'}}, {'competitor': {'name': 'Upcoming', 'permalink': 'upcoming'}}, {'competitor': {'name': 'Tipped', 'permalink': 'tipped'}}, {'competitor': {'name': 'GenieTown', 'permalink': 'genietown'}}, {'competitor': {'name': 'YellowPages', 'permalink': 'yellowpages'}}, {'competitor': {'name': 'YellowBot', 'permalink': 'yellowbot'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'CitySquares', 'permalink': 'citysquares'}}, {'competitor': {'name': 'Loladex', 'permalink': 'loladex'}}, {'competitor': {'name': 'Pelago', 'permalink': 'pelago'}}, {'competitor': {'name': 'Notches', 'permalink': 'notches'}}, {'competitor': {'name': 'Kudzu', 'permalink': 'kudzu'}}, {'competitor': {'name': 'TriValleyBook', 'permalink': 'trivalleybook'}}, {'competitor': {'name': 'BooRah', 'permalink': 'boorah'}}, {'competitor': {'name': 'TrustedPlaces', 'permalink': 'trustedplaces'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'Outalot', 'permalink': 'outalot'}}, {'competitor': {'name': 'Tupalo', 'permalink': 'tupalo'}}, {'competitor': {'name': 'RateItAll', 'permalink': 'rateitall'}}, {'competitor': {'name': 'ApartmentRatings', 'permalink': 'apartmentratings'}}, {'competitor': {'name': 'Zagat', 'permalink': 'zagat'}}, {'competitor': {'name': 'AroundMe', 'permalink': 'aroundme'}}, {'competitor': {'name': 'LocalPrice', 'permalink': 'localprice'}}, {'competitor': {'name': 'burrp!', 'permalink': 'burrp'}}, {'competitor': {'name': 'Shustir', 'permalink': 'shustir'}}, {'competitor': {'name': 'Koko', 'permalink': 'koko'}}, {'competitor': {'name': 'Redbeacon', 'permalink': 'redbeacon'}}, {'competitor': {'name': 'Thumbtack', 'permalink': 'thumbtack'}}, {'competitor': {'name': 'Tellmewhere', 'permalink': 'tellmewhere'}}, {'competitor': {'name': 'Trusted Opinion', 'permalink': 'trustedopinion'}}, {'competitor': {'name': 'Geodruid', 'permalink': 'geodruid'}}, {'competitor': {'name': 'Foursquare', 'permalink': 'foursquare'}}, {'competitor': {'name': 'Explore.To Yellow Pages', 'permalink': 'explore-to-yellow-pages'}}, {'competitor': {'name': 'FindAPro.com', 'permalink': 'findapro'}}, {'competitor': {'name': 'Dish.fm', 'permalink': 'dish-fm'}}, {'competitor': {'name': 'Compass (by Hugleberry Corp.)', 'permalink': 'hugleberry'}}, {'competitor': {'name': 'AlterGeo', 'permalink': 'altergeo'}}, {'competitor': {'name': 'Semadic', 'permalink': 'semadic-com'}}, {'competitor': {'name': 'DinnDinn', 'permalink': 'dinndinn'}}, {'competitor': {'name': 'ComplaintsBoard.com', 'permalink': 'complaintsboard-com'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The Local Data Company', 'permalink': 'the-local-data-company'}}, {'title': '', 'is_past': False, 'provider': {'name': 'RatePoint', 'permalink': 'ratepoint'}}], 'total_money_raised': '$90M', 'funding_rounds': [{'id': 95, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2006/10/04/local-review-site-yelp-raises-10-million-from-benchmark/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 96, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 293, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}]}, {'id': 1648, 'round_code': 'd', 'source_url': 'http://www.paidcontent.org/entry/419-user-reviews-site-yelp-raises-15-million', 'source_description': 'User Reviews Site Yelp Raises $15 Million Fourth Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}, {'id': 11626, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2010/01/27/update-elevation-to-invest-as-much-as-100-million-in-yelp/', 'source_description': 'TechCrunch', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Elevation Partners', 'permalink': 'elevation-partners'}, 'person': None}]}, {'id': 42197, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864912000008/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 25250029, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 7, 'investments': []}, {'id': 44472, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864913000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 8719311, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/10/24/yelp-pays-50m-to-acquire-its-big-european-rival-qype/', 'source_description': 'Yelp Pays $50M To Acquire Its Big European Rival, Qype, To Beef Up Its Recommendations And Listings Business', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 25, 'company': {'name': 'Qype', 'permalink': 'qype'}}, {'price_amount': 12700000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/18/yelp-acquires-online-reservation-service-seatme/', 'source_description': 'Yelp To Acquire Online Reservation Service SeatMe For Up To $12.7M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'SeatMe', 'permalink': 'seatme'}}], 'offices': [{'description': '', 'address1': '706 Mission Street', 'address2': '7th Floor', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.786183, 'longitude': -122.402195}], 'milestones': [{'id': 5336, 'description': 'Yelp Launches in France\\r\\n', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/yelp-launches-in-france-92908424.html', 'source_text': 'AN FRANCISCO, May 5 /PRNewswire/ -- Yelp (http://www.yelp.com), the community-led local search site, today announced the availability of Yelp France (http://www.yelp.fr). Representing its first non-English speaking country, people in France can now use Yelp.fr to read and share reviews about great local businesses in their native language. Additionally, Yelp users everywhere will have the option to view Yelp\\'s interface in French or English, as well as write and access reviews in these supported languages via a link at the bottom of any business listing.\\r\\n(Logo: http://www.newscom.com/cgi-bin/prnh/20050511/SFW134LOGO)\\r\\n\\r\\n\"France is a country steeped in rich culinary, artistic and cultural traditions. Considering this heritage, it represents the next logical destination for Yelp, which is all about connecting people with great local businesses,\" said Jeremy Stoppelman, co-founder and CEO. \"Today\\'s launch represents an exciting step for us and we are committed to making Yelp France the go-to resource for locals to share their knowledge and opinions with one another.\"\\r\\n\\r\\nThe launch of Yelp France underscores the site\\'s increased effort towards broader availability in Europe. In April 2010, one million unique visitors consulted Yelp UK and Yelp Ireland, with the vast majority of that traffic coming from London. Reaching one million unique visitors after 16 months is an even faster growth rate than Yelp experienced in its first U.S. market of San Francisco and a strong indicator that Yelp is poised to gain the same type of traction in Europe.\\r\\n\\r\\nYelp for iPhone and Yelp for Business Owners will be available shortly after the launch of Yelp.fr.\\r\\n\\r\\nAbout Yelp! Inc.', 'source_description': 'Yelp Launches in France ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 8051, 'description': \"Yelp named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 13945, 'description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://techcrunch.com/2011/04/04/yelp-now-drawing-50-million-users-a-month-to-its-17-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 16471, 'description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2011/07/15/yelp-20-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 19293, 'description': 'Yelp Files For IPO To Raise $100 Million', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/11/17/yelp-files-for-100-million-ipo/', 'source_text': '', 'source_description': 'Yelp Files For IPO To Raise $100 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 21391, 'description': 'Yelp sets terms for $93 mil IPO', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 16, 'source_url': 'http://www.renaissancecapital.com/ipohome/news/Reviews-website-Yelp-sets-IPO-terms-seeking-$93-million-11067.html', 'source_text': None, 'source_description': 'Reviews website Yelp sets IPO terms, seeking $93 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}], 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 75], 'assets/images/resized/0024/5749/245749v2-max-150x150.png'], [[250, 125], 'assets/images/resized/0024/5749/245749v2-max-250x250.png'], [[450, 226], 'assets/images/resized/0024/5749/245749v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Yelp,_Inc.', 'title': 'Wikipedia page'}], 'partners': []}]\n" + ] + } + ], + "source": [ + "results5 = list(collection.find({\"$and\": \n", + " [{\"number_of_employees\": {\"$lt\": 1000}}, \n", + " {\"founded_year\": {\"$lt\": 2005}}]}).limit(10).sort(\"number_of_employees\", -1))\n", + "\n", + "print(results5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 6. All the companies that don't include the `partners` field." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "results6 = list(collection.find({\"partners\": {\"$exists\": False}}))\n", + " \n", + "print(len(results6))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 7. All the companies that have a null type of value on the `category_code` field." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2751\n" + ] + } + ], + "source": [ + "results7 = list(collection.find({\"category_code\": None}))\n", + "\n", + "print(len(results7))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 8. All the companies that have at least 100 employees but less than 1000. Retrieve only the `name` and `number of employees` fields." + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "917\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8b'), 'name': 'AdventNet', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297da7'), 'name': 'AddThis', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297da8'), 'name': 'OpenX', 'number_of_employees': 305}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'number_of_employees': 644}, {'_id': ObjectId('52cdef7c4bab8bd675297dbb'), 'name': 'Jajah', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675297dc0'), 'name': 'Livestream', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297dc1'), 'name': 'Ustream', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7c4bab8bd675297e09'), 'name': 'Meebo', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e0a'), 'name': 'Eventbrite', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e10'), 'name': 'Box', 'number_of_employees': 950}, {'_id': ObjectId('52cdef7c4bab8bd675297e15'), 'name': 'Conduit', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e26'), 'name': 'oDesk', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e27'), 'name': 'Simply Hired', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e38'), 'name': 'PhotoBox', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297e3a'), 'name': 'Spreadshirt', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675297e3c'), 'name': 'Bazaarvoice', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297e3e'), 'name': 'spigit', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e40'), 'name': 'PowerReviews', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'number_of_employees': 162}, {'_id': ObjectId('52cdef7c4bab8bd675297e6d'), 'name': 'PayScale', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd675297e72'), 'name': 'Truphone', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd675297e82'), 'name': 'Hightail', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e83'), 'name': 'Nimbuzz', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd675297e9b'), 'name': 'IMVU', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675297eb2'), 'name': 'INgage Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297ec2'), 'name': 'Dropbox', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675297ec5'), 'name': 'MobiTV', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297ecd'), 'name': 'Jimdo', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7c4bab8bd675297ee5'), 'name': 'KIT digital', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7c4bab8bd675297ef5'), 'name': 'MySpace', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297efd'), 'name': 'ZoomInfo', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297eff'), 'name': 'Zango', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd675297f1b'), 'name': 'Trulia', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675297f24'), 'name': 'TubeMogul', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675297f25'), 'name': 'TechTarget', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297f32'), 'name': 'Sportsline', 'number_of_employees': 264}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7c4bab8bd675297f39'), 'name': 'Espotting', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675297f3c'), 'name': 'Adknowledge', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f3e'), 'name': 'airG', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f72'), 'name': 'Ooyala', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f81'), 'name': 'hulu', 'number_of_employees': 153}, {'_id': ObjectId('52cdef7c4bab8bd675297f97'), 'name': 'ZocDoc', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7c4bab8bd675297f9d'), 'name': 'PubMatic', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7c4bab8bd675297fc7'), 'name': 'Clickable', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675297fda'), 'name': 'mig33', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297ff0'), 'name': 'Mozilla', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297ffd'), 'name': 'Kaltura', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd67529800d'), 'name': 'Moz', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529801f'), 'name': 'Wamba', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529802b'), 'name': 'Fon', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529804a'), 'name': 'Blurb', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529804c'), 'name': 'The Climate Corporation', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529804d'), 'name': 'Automattic', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675298057'), 'name': 'uTest', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529805a'), 'name': 'Payoneer', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529805c'), 'name': 'Shopatron', 'number_of_employees': 166}, {'_id': ObjectId('52cdef7c4bab8bd67529805d'), 'name': 'Wix', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd67529805f'), 'name': 'EchoSign', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298060'), 'name': 'tyntec', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529806d'), 'name': 'TrialPay', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298073'), 'name': 'Firetide', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298081'), 'name': 'Gigya', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675298087'), 'name': 'Alipay', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752980c4'), 'name': 'MyBuys', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd6752980c9'), 'name': 'Zecco', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752980d5'), 'name': 'uShip', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7c4bab8bd6752980d6'), 'name': 'Vobile', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd6752980d9'), 'name': 'Verimatrix', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752980f1'), 'name': 'Blyk', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298106'), 'name': 'Ingenio', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529810f'), 'name': 'Splunk', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'number_of_employees': 611}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298132'), 'name': 'Deezer', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529813a'), 'name': 'HubSpot', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7c4bab8bd675298151'), 'name': 'Viadeo', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298159'), 'name': 'GrubHub', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529815a'), 'name': 'Skyscanner', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd67529816b'), 'name': 'Match', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298180'), 'name': 'Deem', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298181'), 'name': 'CDNetworks', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298183'), 'name': 'KAYAK', 'number_of_employees': 101}, {'_id': ObjectId('52cdef7c4bab8bd675298185'), 'name': 'Acquia', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd67529818d'), 'name': 'Etsy', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298198'), 'name': 'Tesla Motors', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752981cf'), 'name': 'Woot', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752981d7'), 'name': 'fabrik', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7c4bab8bd6752981de'), 'name': 'Oversee', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd6752981e1'), 'name': 'Zynga', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7c4bab8bd6752981f4'), 'name': 'Badoo', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675298202'), 'name': 'XING', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298204'), 'name': 'Criteo', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd67529820d'), 'name': 'Adchemy', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298212'), 'name': 'Endeca', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298221'), 'name': 'Cubics', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298238'), 'name': 'BreakingPoint Systems', 'number_of_employees': 109}, {'_id': ObjectId('52cdef7c4bab8bd67529824d'), 'name': 'Citrix Online', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd675298258'), 'name': 'Survey Analytics', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529827f'), 'name': 'ioko', 'number_of_employees': 270}, {'_id': ObjectId('52cdef7c4bab8bd6752982a6'), 'name': 'GameDuell', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752982bf'), 'name': 'eTeacher', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd6752982cb'), 'name': 'Pivotal Labs', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd6752982f1'), 'name': 'TheLadders', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752982ff'), 'name': 'TiVo', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298302'), 'name': 'Gorilla Nation Media', 'number_of_employees': 163}, {'_id': ObjectId('52cdef7c4bab8bd67529831a'), 'name': 'Social Gaming Network', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529832d'), 'name': 'Coverity', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298354'), 'name': 'Exalead', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529836b'), 'name': 'AdoTube', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298376'), 'name': 'Grooveshark', 'number_of_employees': 113}, {'_id': ObjectId('52cdef7c4bab8bd675298379'), 'name': 'Pentaho', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298382'), 'name': 'Evernote', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7c4bab8bd67529839d'), 'name': 'Covario', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752983bc'), 'name': 'Flurry', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd6752983e8'), 'name': 'Fibre2fashion', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529841d'), 'name': 'FreshBooks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd67529843a'), 'name': 'AtomicOnline', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675298443'), 'name': 'Boonty', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298447'), 'name': '99designs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298459'), 'name': 'Elance', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529845b'), 'name': 'LiveRail', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675298460'), 'name': 'OpenDNS', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675298463'), 'name': 'Kareo', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529846a'), 'name': 'VZnet Netzwerke', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298488'), 'name': 'Vovici', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298497'), 'name': 'Toluna', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd675298499'), 'name': 'PacketFront', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7c4bab8bd6752984cc'), 'name': 'LiveOps', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7c4bab8bd6752984e1'), 'name': 'Sabrix', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752984e6'), 'name': 'Outblaze', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd6752984e9'), 'name': 'Workday', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7c4bab8bd6752984ec'), 'name': '2ergo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752984fb'), 'name': 'Clarizen', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752984fc'), 'name': 'Next New Networks', 'number_of_employees': 121}, {'_id': ObjectId('52cdef7c4bab8bd675298503'), 'name': 'FriendFinder Networks', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298514'), 'name': 'Zuora', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675298518'), 'name': 'modu', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd675298525'), 'name': 'Cheapflights', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529852c'), 'name': 'Sedo', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298530'), 'name': 'Innuity', 'number_of_employees': 151}, {'_id': ObjectId('52cdef7c4bab8bd675298536'), 'name': 'Voltage Security', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298542'), 'name': 'InMage Systems', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298571'), 'name': 'Medindia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529857e'), 'name': 'Buongiorno', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675298587'), 'name': 'WebVisible', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7c4bab8bd6752985a1'), 'name': 'ScanCafe', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd6752985c4'), 'name': 'Adconion Media Group', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752985c5'), 'name': 'Cvent', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd6752985de'), 'name': 'Zend Technologies', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd6752985e0'), 'name': 'Location Labs', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd6752985e3'), 'name': 'Infibeam', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752985e4'), 'name': 'OrangeSoda', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd6752985e7'), 'name': 'Networked Insights', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd6752985eb'), 'name': 'The Orchard', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7c4bab8bd6752985fc'), 'name': 'iCrossing', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7c4bab8bd675298608'), 'name': 'Magento', 'number_of_employees': 275}, {'_id': ObjectId('52cdef7c4bab8bd67529862d'), 'name': 'babbel', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7c4bab8bd67529862e'), 'name': 'Parature', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298631'), 'name': '7digital', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298643'), 'name': 'WebCollage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7c4bab8bd675298650'), 'name': 'Wikimedia Foundation', 'number_of_employees': 143}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd67529865d'), 'name': 'BlueCat Networks', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298673'), 'name': 'NetShops', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529867a'), 'name': 'Glassdoor', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7c4bab8bd675298681'), 'name': 'Allopass', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529868a'), 'name': 'Red Bend Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529868c'), 'name': 'Realtime Worlds', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd675298696'), 'name': 'Marketo', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7c4bab8bd675298698'), 'name': 'Bonobos', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529869e'), 'name': 'Edmodo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752986a2'), 'name': 'Forrester Research', 'number_of_employees': 903}, {'_id': ObjectId('52cdef7c4bab8bd6752986b4'), 'name': 'ZEDO', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd6752986e5'), 'name': 'Glasses Direct', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752986ec'), 'name': 'Pegasystems', 'number_of_employees': 750}, {'_id': ObjectId('52cdef7c4bab8bd6752986ee'), 'name': 'Avisena', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd6752986fb'), 'name': 'GlobalEnglish', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd67529872b'), 'name': 'Business News Americas', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd67529873f'), 'name': 'Absolute Software', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298740'), 'name': 'Cellfish', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd675298743'), 'name': 'eSolar', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd675298754'), 'name': 'Huddle', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529876d'), 'name': 'iRise', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529876f'), 'name': 'Volusion', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298788'), 'name': 'RichRelevance', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd6752987a5'), 'name': 'PixelCrayons', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752987c9'), 'name': 'SquareTrade', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7c4bab8bd6752987cd'), 'name': 'myTino', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752987d5'), 'name': 'Mojiva', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7c4bab8bd6752987d9'), 'name': 'NaviSite', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd6752987e0'), 'name': 'ServePath', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752987e9'), 'name': 'Iomega', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7c4bab8bd6752987f1'), 'name': 'GitHub', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'number_of_employees': 127}, {'_id': ObjectId('52cdef7c4bab8bd675298857'), 'name': 'InMobi', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7c4bab8bd67529885b'), 'name': 'Daptiv', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529886e'), 'name': 'Mastiff Tech', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298873'), 'name': 'TigerLogic', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298886'), 'name': 'Wayfair', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd67529889a'), 'name': 'Natta', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7d4bab8bd67529889e'), 'name': 'BuildDirect', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752988a3'), 'name': 'Webtrends', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd6752988ac'), 'name': 'Modern Feed', 'number_of_employees': 123}, {'_id': ObjectId('52cdef7d4bab8bd67529891a'), 'name': 'Tealeaf', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298922'), 'name': 'Adify', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298925'), 'name': 'InvenSense', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'number_of_employees': 974}, {'_id': ObjectId('52cdef7d4bab8bd67529893c'), 'name': 'Kabam', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7d4bab8bd675298952'), 'name': 'Turbine', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298966'), 'name': 'Velocify', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd675298974'), 'name': 'Phonewire', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529897f'), 'name': 'PatientsLikeMe', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752989ca'), 'name': 'Neutralize', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752989e0'), 'name': 'Talend', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752989fd'), 'name': 'Cartedge', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298a26'), 'name': 'The Motley Fool', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298a30'), 'name': 'FIRST ROI', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298a43'), 'name': 'TouchLocal', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298a69'), 'name': 'Efficient Frontier', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298a9b'), 'name': '[x+1]', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7d4bab8bd675298aaf'), 'name': 'Tiny Prints', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675298ac2'), 'name': 'SilkRoad Technology', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298acc'), 'name': 'deviantART', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298acd'), 'name': 'Saba', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675298b0e'), 'name': 'Geary Interactive', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298b15'), 'name': 'BullsEye Telecom', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298b5a'), 'name': 'SmallWorlds', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298b66'), 'name': 'Knewton', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675298b6a'), 'name': 'AtHoc', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298bbe'), 'name': 'iWin', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298bf7'), 'name': 'Zero9', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298bf9'), 'name': 'Cloudmark', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298c14'), 'name': 'TRUSTe', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298c1d'), 'name': 'Aedgency', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298c45'), 'name': 'CoreMedia', 'number_of_employees': 154}, {'_id': ObjectId('52cdef7d4bab8bd675298c47'), 'name': 'Intelius', 'number_of_employees': 131}, {'_id': ObjectId('52cdef7d4bab8bd675298c9e'), 'name': 'Medallia', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675298caf'), 'name': 'CCP Games', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd675298cbb'), 'name': 'Epic Advertising', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7d4bab8bd675298cc1'), 'name': 'Vindicia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298cc3'), 'name': 'WSO2', 'number_of_employees': 228}, {'_id': ObjectId('52cdef7d4bab8bd675298ccc'), 'name': 'VECTOR', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675298cdd'), 'name': 'Macronimous Web Solutions', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298cf0'), 'name': 'AtTask', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298cf9'), 'name': 'ClickandBuy', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298cfe'), 'name': 'Technology Evaluation Centers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298d0c'), 'name': 'CareerNet', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'number_of_employees': 430}, {'_id': ObjectId('52cdef7d4bab8bd675298d10'), 'name': 'Trisoft Consulting', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298d3e'), 'name': 'mindSHIFT Technologies', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7d4bab8bd675298d48'), 'name': 'vLex', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298d5b'), 'name': 'Infusionsoft', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298d5f'), 'name': 'Practice Fusion', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675298d6a'), 'name': 'zanox', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675298d7b'), 'name': 'Vernalis Systems', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298d8a'), 'name': 'TOA Technologies', 'number_of_employees': 460}, {'_id': ObjectId('52cdef7d4bab8bd675298d8b'), 'name': 'Vostu', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd675298d9a'), 'name': 'Odnoklassniki', 'number_of_employees': 207}, {'_id': ObjectId('52cdef7d4bab8bd675298d9c'), 'name': \"Tom's Hardware\", 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298dbf'), 'name': 'CyberCoders', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675298dc5'), 'name': 'Pervasive Software', 'number_of_employees': 214}, {'_id': ObjectId('52cdef7d4bab8bd675298de3'), 'name': 'Optaros', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298df0'), 'name': 'NetSpend', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298e07'), 'name': 'Intacct', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298e0a'), 'name': 'Making Sense', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e1f'), 'name': 'Barracuda Networks', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7d4bab8bd675298e20'), 'name': 'Astaro', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7d4bab8bd675298e23'), 'name': 'eEye', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e35'), 'name': 'GARA Web Hosting', 'number_of_employees': 480}, {'_id': ObjectId('52cdef7d4bab8bd675298e51'), 'name': 'New Media Strategies', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298e64'), 'name': 'InsideView', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298e76'), 'name': 'Uniblue', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e84'), 'name': 'Onyx Software', 'number_of_employees': 245}, {'_id': ObjectId('52cdef7d4bab8bd675298e92'), 'name': 'TDI', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e93'), 'name': 'WideOrbit', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298ea0'), 'name': 'CPXi', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298eb3'), 'name': 'Braithwaite Technology Consultants', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298eb6'), 'name': 'Blueprint Software Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298ee2'), 'name': 'NameMedia', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298f04'), 'name': 'AdParlor', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298f18'), 'name': 'VBS TV', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298f2d'), 'name': 'Talent Gurus', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298f48'), 'name': 'FusionOne', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675298f49'), 'name': 'FileMaker', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298f53'), 'name': 'MarkLogic', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298f7e'), 'name': 'Klee Group', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298f82'), 'name': 'Appian', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7d4bab8bd675298f8d'), 'name': 'Photobucket', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298f91'), 'name': 'Jedox', 'number_of_employees': 101}, {'_id': ObjectId('52cdef7d4bab8bd675298f9b'), 'name': 'Cleartrip', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298f9e'), 'name': 'Armjisoft Digital Rights Management Systems', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675298fa0'), 'name': 'Mendix', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298fa5'), 'name': 'Troux Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298fe4'), 'name': 'thePlatform', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298fef'), 'name': 'Avature', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299017'), 'name': 'DSNR Media Group', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299023'), 'name': 'Easypano', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529902c'), 'name': 'plista', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299042'), 'name': 'Rhapsody', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752990cc'), 'name': 'GoGrid', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7d4bab8bd6752990d9'), 'name': 'Achievers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752990f7'), 'name': 'Dot Com Infoway France', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752990fb'), 'name': 'BitDefender', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'number_of_employees': 257}, {'_id': ObjectId('52cdef7d4bab8bd67529911b'), 'name': 'IDEO', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299122'), 'name': 'PurpleTalk', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd67529913d'), 'name': 'Mobiquest', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299149'), 'name': 'Milestone Systems', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529914d'), 'name': '9You', 'number_of_employees': 460}, {'_id': ObjectId('52cdef7d4bab8bd675299155'), 'name': 'Bronto Software', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd6752991c9'), 'name': 'TRSR Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752991ea'), 'name': 'Zendesk', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752991ed'), 'name': 'Shoplocal', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752991f3'), 'name': 'Epocrates', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299203'), 'name': 'Zhaopin', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299218'), 'name': 'Future US', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299254'), 'name': 'Continuum', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675299267'), 'name': 'Message Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299295'), 'name': 'Vertex', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd6752992aa'), 'name': 'The Onion', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752992b5'), 'name': 'ZAO Begun', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd6752992c2'), 'name': 'SAVO', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752992e9'), 'name': 'Gateway TechnoLabs Pvt Ltd', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd6752992f0'), 'name': 'Minted', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7d4bab8bd6752992f9'), 'name': 'BUKA', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752992fd'), 'name': 'Appirio', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299305'), 'name': 'Douban', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299327'), 'name': 'MapVersa', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd67529932f'), 'name': 'Cklear', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299331'), 'name': 'Verticity', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd675299336'), 'name': 'LateRooms', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299341'), 'name': 'Qumu', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529934f'), 'name': 'Keynote Systems', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529935e'), 'name': 'Black Duck Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529935f'), 'name': 'Unicsis Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299375'), 'name': 'Soft-genesis', 'number_of_employees': 124}, {'_id': ObjectId('52cdef7d4bab8bd67529937d'), 'name': 'Big Property Ladder', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299380'), 'name': 'Zagat', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299391'), 'name': 'Ableton', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752993a7'), 'name': 'Prezi', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd6752993ba'), 'name': 'Livebookings', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd6752993f5'), 'name': 'SpringSource', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752993f6'), 'name': 'Industria', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299416'), 'name': 'Atari', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299421'), 'name': 'ngmoco', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299422'), 'name': 'Halogen Software', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd67529945b'), 'name': 'Passlogix', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299470'), 'name': 'Xero', 'number_of_employees': 507}, {'_id': ObjectId('52cdef7d4bab8bd67529948d'), 'name': 'Logia Group', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd6752994a8'), 'name': 'Vantage Media', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752994aa'), 'name': 'OZ Communications', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7d4bab8bd6752994af'), 'name': 'SothinkMedia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752994b0'), 'name': 'Qualiteam Software', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752994ff'), 'name': 'NetQoS', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7d4bab8bd675299508'), 'name': 'Propertyware', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299533'), 'name': 'J-Curve Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299535'), 'name': 'Koolanoo Group', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675299573'), 'name': 'Centrify', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd67529957c'), 'name': 'HotCourses', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7d4bab8bd67529957d'), 'name': 'BCC Research', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299583'), 'name': 'Integrate', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299597'), 'name': 'Stack Exchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752995c7'), 'name': 'Nextiva', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299606'), 'name': 'Voxeo', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299619'), 'name': 'Hexacta', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd67529961b'), 'name': 'Cutter Consortium', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529962b'), 'name': 'StepOut', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299656'), 'name': 'Redwood Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299657'), 'name': 'Webroot', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299671'), 'name': 'Procera Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529967c'), 'name': 'Micro Focus', 'number_of_employees': 591}, {'_id': ObjectId('52cdef7d4bab8bd675299686'), 'name': 'Lyft', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7d4bab8bd6752996b3'), 'name': 'Courion Corporation', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7d4bab8bd6752996bc'), 'name': 'Popego', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd6752996c9'), 'name': 'AMAX Global Services', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752996dd'), 'name': 'Orchard Information Systems', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd6752996e6'), 'name': 'TradeCard', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752996fe'), 'name': 'Yammer', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299705'), 'name': 'LivingLink', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299708'), 'name': 'API Outsourcing', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299712'), 'name': 'Clickbooth', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7d4bab8bd675299730'), 'name': 'iWeb Technologies', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd67529973c'), 'name': 'TRUECar', 'number_of_employees': 303}, {'_id': ObjectId('52cdef7d4bab8bd67529974b'), 'name': 'InfoReach', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752997a8'), 'name': 'HexaCorp', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752997b0'), 'name': 'AKQA', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd6752997b2'), 'name': 'Softonic', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd6752997fc'), 'name': 'Stylesight', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299821'), 'name': 'Fusion Garage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299876'), 'name': 'Vichara Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529987b'), 'name': 'XBOSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752998bd'), 'name': 'J-Curve Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752998bf'), 'name': 'Koolanoo Group', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd6752998fd'), 'name': 'Centrify', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd675299906'), 'name': 'HotCourses', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7d4bab8bd675299907'), 'name': 'BCC Research', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529990d'), 'name': 'Integrate', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299921'), 'name': 'Stack Exchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299951'), 'name': 'Nextiva', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299990'), 'name': 'Voxeo', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752999a3'), 'name': 'Hexacta', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752999a5'), 'name': 'Cutter Consortium', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752999b5'), 'name': 'StepOut', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752999e0'), 'name': 'Redwood Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752999e1'), 'name': 'Webroot', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752999fb'), 'name': 'Procera Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299a06'), 'name': 'Micro Focus', 'number_of_employees': 591}, {'_id': ObjectId('52cdef7d4bab8bd675299a10'), 'name': 'Lyft', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7d4bab8bd675299a3d'), 'name': 'Courion Corporation', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7d4bab8bd675299a46'), 'name': 'Popego', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299a53'), 'name': 'AMAX Global Services', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299a67'), 'name': 'Orchard Information Systems', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675299a70'), 'name': 'TradeCard', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299a88'), 'name': 'Yammer', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299a8f'), 'name': 'LivingLink', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299a92'), 'name': 'API Outsourcing', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299a9c'), 'name': 'Clickbooth', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7d4bab8bd675299aba'), 'name': 'iWeb Technologies', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd675299ac6'), 'name': 'TRUECar', 'number_of_employees': 303}, {'_id': ObjectId('52cdef7d4bab8bd675299ad5'), 'name': 'InfoReach', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299b32'), 'name': 'HexaCorp', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299b3a'), 'name': 'AKQA', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd675299b3c'), 'name': 'Softonic', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd675299b86'), 'name': 'Stylesight', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299bab'), 'name': 'Fusion Garage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c00'), 'name': 'Vichara Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c05'), 'name': 'XBOSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c2b'), 'name': 'FetchBack', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c36'), 'name': 'Magnet Technologies India', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c40'), 'name': 'LogLogic', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299c4b'), 'name': 'Telera', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c70'), 'name': 'TeleSciences', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd675299c75'), 'name': 'inTALK', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c83'), 'name': 'Webguru-India', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299cba'), 'name': 'Xiamen Everbeen Magnet Electron', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299ccf'), 'name': 'Unwired Planet', 'number_of_employees': 590}, {'_id': ObjectId('52cdef7d4bab8bd675299ced'), 'name': 'SEO Services Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299d16'), 'name': 'RiseSmart', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299d24'), 'name': 'Infinity Pharmaceuticals', 'number_of_employees': 179}, {'_id': ObjectId('52cdef7d4bab8bd675299d2c'), 'name': 'OneSource Information Services', 'number_of_employees': 185}, {'_id': ObjectId('52cdef7d4bab8bd675299d49'), 'name': 'Facebookster', 'number_of_employees': 124}, {'_id': ObjectId('52cdef7d4bab8bd675299d52'), 'name': 'Electronics Shop Limited', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299d85'), 'name': 'TESCRA', 'number_of_employees': 580}, {'_id': ObjectId('52cdef7d4bab8bd675299dd0'), 'name': 'DERI', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299ddf'), 'name': 'Whereismyboss', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299de5'), 'name': 'Architel LP', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299e11'), 'name': 'InPage Incorporated', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299ea5'), 'name': 'Mindjet', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299ec1'), 'name': 'Global Relay', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd675299edc'), 'name': 'iTouchPoint', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675299ee0'), 'name': 'Sitecore', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675299ee3'), 'name': 'NativeX', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299ee8'), 'name': 'DigitalGlobe', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675299f1c'), 'name': 'Nexenta Systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299f24'), 'name': 'InfoAppenders', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675299f37'), 'name': 'Sonosite', 'number_of_employees': 715}, {'_id': ObjectId('52cdef7d4bab8bd675299f54'), 'name': 'PlayNetwork', 'number_of_employees': 122}, {'_id': ObjectId('52cdef7d4bab8bd675299f57'), 'name': 'Creative Kingdom Animation Studios Film', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7d4bab8bd675299f84'), 'name': 'The Hyperfactory', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299fa1'), 'name': 'Propellum', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299fb0'), 'name': 'Cloudera', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7d4bab8bd675299fb1'), 'name': 'Vuclip', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299fc2'), 'name': 'Agriya', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299fcb'), 'name': 'Thismoment', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7d4bab8bd67529a004'), 'name': 'SolArc', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a01a'), 'name': 'Go2Net', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a020'), 'name': 'Think Future', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a024'), 'name': 'RigNet', 'number_of_employees': 410}, {'_id': ObjectId('52cdef7d4bab8bd67529a045'), 'name': 'deltatre', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a05d'), 'name': 'TARGUSinfo', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a07a'), 'name': 'Bytemobile', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ea'), 'name': 'Trusteer', 'number_of_employees': 310}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ec'), 'name': 'A10 Networks', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f5'), 'name': 'Macbellads Network', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f9'), 'name': 'Indiagames', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a100'), 'name': 'Grus Construction Personnel', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a10c'), 'name': 'Jataayu Software Ltd', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a136'), 'name': 'Datamonitor', 'number_of_employees': 984}, {'_id': ObjectId('52cdef7d4bab8bd67529a137'), 'name': 'EDI Specialists', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529a157'), 'name': 'Model Metrics', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd67529a16a'), 'name': 'Tekriti Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd67529a19b'), 'name': 'Red Ventures', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a8'), 'name': 'Squarespace', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7d4bab8bd67529a1b6'), 'name': 'SinoTech Group', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d5'), 'name': 'SOASTA', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1e4'), 'name': 'Next Jump', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f1'), 'name': 'Open-Xchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f9'), 'name': 'JR Language Translation Services', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1fc'), 'name': 'Marine Harvest Canada', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a216'), 'name': 'Hi-media', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a239'), 'name': 'Centro', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a23f'), 'name': 'SPIL GAMES', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a2aa'), 'name': 'Jaincotech', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ac'), 'name': 'LINKBYNET', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529a2cd'), 'name': 'GENEVA SOFTWARE TECHNOLOGIES LTD', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a2fc'), 'name': 'Populis', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a323'), 'name': 'Trustpilot', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a333'), 'name': 'Trivantis Corporation', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a352'), 'name': 'PatientKeeper', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a358'), 'name': 'Decho', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a363'), 'name': 'Meirc Training and Consulting', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a381'), 'name': 'ShipServ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ae'), 'name': 'ZipWeb', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b2'), 'name': 'Sendmail', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ba'), 'name': 'Activeweb', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c6'), 'name': 'Miniclip', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ca'), 'name': 'Twilio', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d2'), 'name': 'Scope e Knowledge Center Pvt Ltd', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f3'), 'name': 'Cataphora', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a407'), 'name': 'Marden Edwards', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a419'), 'name': 'MediaMath', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529a430'), 'name': 'IsayBlog!', 'number_of_employees': 154}, {'_id': ObjectId('52cdef7e4bab8bd67529a44d'), 'name': 'Hosted Solutions', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ab'), 'name': 'net-m', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7e4bab8bd67529a4bc'), 'name': 'LoopNet', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a50c'), 'name': 'American Broadband Family of Companies', 'number_of_employees': 144}, {'_id': ObjectId('52cdef7e4bab8bd67529a527'), 'name': 'Novem -- China website development', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a546'), 'name': 'Intelligent Software Solutions', 'number_of_employees': 730}, {'_id': ObjectId('52cdef7e4bab8bd67529a58c'), 'name': 'Canpages', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529a5c3'), 'name': 'Commission Junction', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d5'), 'name': 'MLB Advanced Media', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e4'), 'name': 'Liferay', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e9'), 'name': 'Jump Lab', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529a62b'), 'name': 'CyberSynchs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a642'), 'name': 'CampusEAI', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a676'), 'name': 'LeapFish', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a679'), 'name': 'DotNext', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a68c'), 'name': 'BrainPulse', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a2'), 'name': 'CASON', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a8'), 'name': 'iPayment', 'number_of_employees': 330}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b2'), 'name': 'SpectorSoft', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d5'), 'name': 'OpSource', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f1'), 'name': 'Proxibid', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f5'), 'name': 'Pronto Networks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a704'), 'name': 'Dot Com Infoway', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a706'), 'name': 'Consileon Business Consultancy GmbH', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a70c'), 'name': 'Exit41', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a71c'), 'name': 'Appcelerator', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a775'), 'name': 'Bitam', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a78d'), 'name': 'ScienceLogic', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a7'), 'name': 'tBits Global', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a7cf'), 'name': 'SecondMarket', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'number_of_employees': 354}, {'_id': ObjectId('52cdef7e4bab8bd67529a81a'), 'name': 'BlueKai', 'number_of_employees': 142}, {'_id': ObjectId('52cdef7e4bab8bd67529a81b'), 'name': 'Shutterstock', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529a81f'), 'name': 'Clear2Pay', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529a834'), 'name': 'Nstein Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a854'), 'name': 'Onebox', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529a861'), 'name': 'QualSoft Services', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a865'), 'name': 'Wink Bill', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a86d'), 'name': 'Solbright', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a88f'), 'name': 'FireEye', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7e4bab8bd67529a894'), 'name': 'Itransition', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529a895'), 'name': 'Program-Ace', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529a8af'), 'name': 'ClickSquared', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b8'), 'name': 'RGB Networks', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529a8cc'), 'name': 'Elemental Technologies', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a8da'), 'name': 'LawCrossing', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a8dd'), 'name': 'BCG Attorney Search', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a8ed'), 'name': 'Veritas Prep', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a954'), 'name': 'Silver Spring Networks', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7e4bab8bd67529a963'), 'name': 'Sonim Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a983'), 'name': 'OSSCube Solutions', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a986'), 'name': 'Convate Consultancy Services Private Ltd', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a988'), 'name': 'Central Reservations', 'number_of_employees': 510}, {'_id': ObjectId('52cdef7e4bab8bd67529a9b3'), 'name': 'Five9', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d7'), 'name': 'Legal Authority', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d8'), 'name': 'Radix Web', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a9dd'), 'name': '2AdPro', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529a9de'), 'name': 'Express KCS', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fd'), 'name': 'Internap', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529aa12'), 'name': 'Clarabridge', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aa22'), 'name': 'TradeKey', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529aa31'), 'name': 'Nalini Networks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529aa37'), 'name': 'Data Tech Computers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aa3d'), 'name': 'Silverpop', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9a'), 'name': 'Huiying Chemical Xiamen Company', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aab4'), 'name': 'Koves Technologies', 'number_of_employees': 146}, {'_id': ObjectId('52cdef7e4bab8bd67529aab8'), 'name': 'e-Spirit', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529aad7'), 'name': 'Initiate Systems', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7e4bab8bd67529aaef'), 'name': 'SundaySky', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf3'), 'name': 'Analytical Graphics', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529aafb'), 'name': 'Aristotle', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529aafc'), 'name': 'Fuel Industries', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ab46'), 'name': 'Digimind', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ab55'), 'name': 'Vocalocity', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7b'), 'name': 'Quality Web Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7c'), 'name': '88DB', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529ab82'), 'name': 'InteQ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ac17'), 'name': '[x+1]', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529ac2c'), 'name': 'Stored Value Systems', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ac6e'), 'name': 'Intalio', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529ac93'), 'name': 'Intellisync', 'number_of_employees': 456}, {'_id': ObjectId('52cdef7e4bab8bd67529ac95'), 'name': 'NorthPoint Communications Group', 'number_of_employees': 948}, {'_id': ObjectId('52cdef7e4bab8bd67529ace5'), 'name': 'Namco Bandai', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529acea'), 'name': 'Skout', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529acec'), 'name': 'Relax Solutions Pvt Ltd', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ad13'), 'name': 'TechAspect Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ad33'), 'name': 'DesignArt Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ad39'), 'name': 'Compulink Systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529ad4b'), 'name': 'Landor Associates', 'number_of_employees': 750}, {'_id': ObjectId('52cdef7e4bab8bd67529ad57'), 'name': 'Naseeb Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7e'), 'name': 'Chelsio Communications', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529ad94'), 'name': 'MapMyIndia', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529adab'), 'name': 'Nexway', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529adb3'), 'name': 'Good Technology', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529adc0'), 'name': 'CAP Digisoft Solutions', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529add6'), 'name': 'Acquirelists', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae11'), 'name': 'Copan Systems', 'number_of_employees': 144}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7e4bab8bd67529ae22'), 'name': 'Synaptics', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae58'), 'name': 'Quantum Secure', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529ae59'), 'name': 'Bizclickusa', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529ae68'), 'name': 'Venda', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6b'), 'name': 'Compolette guide to weight loss', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529aea7'), 'name': 'Tobii Technology', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb3'), 'name': 'National Association of Professional Women', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529aedf'), 'name': 'i-Jet Media', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aee7'), 'name': 'Rigel Networks', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529af27'), 'name': 'Neverblue', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529af3e'), 'name': 'Secure Computing', 'number_of_employees': 344}, {'_id': ObjectId('52cdef7e4bab8bd67529af63'), 'name': 'Mobile Messenger', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529af6d'), 'name': 'SonicWALL', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529afb5'), 'name': 'Power-battery', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529afc6'), 'name': 'OpenMarket', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529afc7'), 'name': 'LeadsMarketer', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529afce'), 'name': 'WANdisco', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529afd1'), 'name': 'School Management Software', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529afd3'), 'name': 'Metricus', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b028'), 'name': 'mogamebo', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b02f'), 'name': 'Perforce Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b036'), 'name': 'DoublePositive', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b04f'), 'name': 'Icreon Communications', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b050'), 'name': 'Synapse', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b051'), 'name': 'Shriv Commedia Solutions Pvt Ltd', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b052'), 'name': 'Leo TechnoSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b06f'), 'name': 'WIT Software', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529b071'), 'name': 'eModeration', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b090'), 'name': 'Digital Marketing Solutions', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d6'), 'name': 'Dot Com Infoway Australia', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b10b'), 'name': 'EyeBuyDirect', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b10e'), 'name': 'Marketwired', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529b112'), 'name': 'Black Soft', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b11f'), 'name': 'eCopy', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b135'), 'name': 'inContact', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b13c'), 'name': 'Skytap', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b15d'), 'name': 'Turtle Entertainment', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529b16a'), 'name': 'Jobnownow Recruitment Agency', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7e4bab8bd67529b195'), 'name': 'NearSoft Europe', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d3'), 'name': 'Marand', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b1eb'), 'name': 'Apalon', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fe'), 'name': 'Brothersoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b212'), 'name': 'Imaginova', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b21b'), 'name': 'Webmetrics', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529b29c'), 'name': 'Jobspring Partners', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b29d'), 'name': 'Workbridge Associates', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c7'), 'name': 'Dyn', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b2cf'), 'name': 'APICS', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d1'), 'name': 'Hirshorn Zuckerman Design Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b2da'), 'name': 'Unity Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b2f3'), 'name': '4shared', 'number_of_employees': 666}, {'_id': ObjectId('52cdef7e4bab8bd67529b320'), 'name': 'Jama Software', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7e4bab8bd67529b32b'), 'name': 'Sixchannels', 'number_of_employees': 114}, {'_id': ObjectId('52cdef7e4bab8bd67529b340'), 'name': 'TaskUs', 'number_of_employees': 540}, {'_id': ObjectId('52cdef7e4bab8bd67529b34b'), 'name': 'ixi mobile', 'number_of_employees': 138}, {'_id': ObjectId('52cdef7e4bab8bd67529b34e'), 'name': 'Orca Interactive', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b35f'), 'name': 'LiveOffice', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b378'), 'name': 'ePartners', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7e4bab8bd67529b393'), 'name': 'Cmed', 'number_of_employees': 188}, {'_id': ObjectId('52cdef7e4bab8bd67529b3b4'), 'name': 'Idea Couture', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'number_of_employees': 881}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d6'), 'name': 'Sift', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d8'), 'name': 'Adityaa Call Centre', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529b3fb'), 'name': 'AMX', 'number_of_employees': 346}, {'_id': ObjectId('52cdef7e4bab8bd67529b423'), 'name': 'Classic Informatics', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529b42c'), 'name': 'NetMotion Wireless', 'number_of_employees': 107}, {'_id': ObjectId('52cdef7e4bab8bd67529b438'), 'name': 'Foursquare', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b483'), 'name': 'RightNow Technologies', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c9'), 'name': 'Axcient', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b4f6'), 'name': 'mjunction services limite', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b51d'), 'name': 'Malwarebytes', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b51e'), 'name': 'Sunbelt Software', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b52e'), 'name': 'Z2Live', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529b52f'), 'name': 'ZillionTV', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b564'), 'name': 'TIS India', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b565'), 'name': 'Lingo24', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b575'), 'name': 'Nimsoft', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b584'), 'name': 'Sowre', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b586'), 'name': 'Paisawaisa', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b587'), 'name': 'ITP Publishing Group', 'number_of_employees': 437}, {'_id': ObjectId('52cdef7e4bab8bd67529b596'), 'name': 'Webfusion', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a7'), 'name': 'Pointlogic', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a8'), 'name': 'ControlCircle', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c4'), 'name': 'Three Stars', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b5d4'), 'name': 'Openbravo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b619'), 'name': 'Parts Express', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b62e'), 'name': 'HootSuite', 'number_of_employees': 370}, {'_id': ObjectId('52cdef7e4bab8bd67529b63b'), 'name': 'i365, A Seagate Company', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7e4bab8bd67529b644'), 'name': 'BelWo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b654'), 'name': 'Smartbuzz', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b675'), 'name': 'Brandsclub', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529b67a'), 'name': 'AbodesIndia', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a6'), 'name': 'Basho Technologies', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b5'), 'name': 'Elluminate', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b6ca'), 'name': 'Teradici', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d5'), 'name': 'NuView Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d8'), 'name': 'Alert Logic', 'number_of_employees': 217}, {'_id': ObjectId('52cdef7e4bab8bd67529b6eb'), 'name': 'Bomgar', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b703'), 'name': 'SEOP', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b716'), 'name': 'SolarEdge', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7e4bab8bd67529b747'), 'name': 'Tuenti Technologies', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b74c'), 'name': 'Fluid', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529b763'), 'name': 'Perception System', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b76a'), 'name': 'amfAR', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b76b'), 'name': 'Consumers Union', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529b77d'), 'name': 'Kaseya', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a4'), 'name': 'TMP Directional Marketing', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b7cd'), 'name': 'u-blox', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7e4bab8bd67529b804'), 'name': 'SurveyMonkey', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b837'), 'name': 'Yourwovenphotos', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8b7'), 'name': 'Yellowbrix', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c3'), 'name': 'AvantGo', 'number_of_employees': 208}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c6'), 'name': 'Brandtology', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e1'), 'name': 'Broadband Suppliers', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e5'), 'name': 'CSSAGlobal', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f1'), 'name': 'Minecode', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f4'), 'name': 'Bluewolf', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b8fd'), 'name': 'Red Engineering Design', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8ff'), 'name': 'Chikka', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b915'), 'name': 'Sonos', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529b919'), 'name': 'Birst', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b92b'), 'name': 'NaturalMotion', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b92f'), 'name': 'Lehren Entertainment Pvt Ltd', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b938'), 'name': 'MAQ Software', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b94c'), 'name': 'oscommerce experts', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b958'), 'name': 'Aspiro', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b95b'), 'name': 'Quallion', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b95d'), 'name': 'FreeWheel', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529b962'), 'name': 'Markafoni', 'number_of_employees': 520}, {'_id': ObjectId('52cdef7e4bab8bd67529b988'), 'name': 'AspireHR', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b98e'), 'name': 'Cybernetics', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b9a3'), 'name': 'EFJohnson Technologies', 'number_of_employees': 290}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ad'), 'name': 'NexJ Systems', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bc'), 'name': 'Huge', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529b9de'), 'name': 'NewAuto Video Technology', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f9'), 'name': 'Netbiscuits', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7e4bab8bd67529ba07'), 'name': 'NetRetail Holding', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529ba11'), 'name': 'Bullhorn', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ba13'), 'name': 'Linekong', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529ba1b'), 'name': 'Excel Telemarketing', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ba35'), 'name': 'Tell Me More', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ba36'), 'name': 'Square', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529ba41'), 'name': 'Interliant', 'number_of_employees': 176}, {'_id': ObjectId('52cdef7e4bab8bd67529ba8d'), 'name': 'GRNLive', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529bab6'), 'name': 'VFM Leonardo', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bab9'), 'name': 'eMeter', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529babb'), 'name': 'Corvil', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529babc'), 'name': 'AeroScout', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bae7'), 'name': 'HauteLook', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bafc'), 'name': 'Quality Copperworks LLC', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb00'), 'name': 'Unitrends Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0d'), 'name': 'Razorsight', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2c'), 'name': 'CASAMUNDO', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bb34'), 'name': 'SourceMedia', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529bb42'), 'name': 'Daimer Industries', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529bb44'), 'name': 'Canopy Financial', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb67'), 'name': 'Lending Stream', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb72'), 'name': 'Acme Scale Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb7d'), 'name': 'BetterTrades', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529bb85'), 'name': 'SatNav Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb87'), 'name': 'Millennial Media', 'number_of_employees': 137}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8d'), 'name': 'ContinuumGlobal', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8e'), 'name': 'Soffront', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb9d'), 'name': 'Veeva', 'number_of_employees': 510}, {'_id': ObjectId('52cdef7e4bab8bd67529bbb7'), 'name': 'Taipan Publishing Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc5'), 'name': 'PSR Productions', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcc'), 'name': 'Venere', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529bbe2'), 'name': 'Prevail Resources', 'number_of_employees': 162}, {'_id': ObjectId('52cdef7e4bab8bd67529bc06'), 'name': 'Kerio Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bc68'), 'name': 'Dimension Funding', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bc6f'), 'name': 'Leapfrog Enterprises', 'number_of_employees': 541}, {'_id': ObjectId('52cdef7e4bab8bd67529bc86'), 'name': 'StorageNetworks', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529bc9d'), 'name': 'Digium', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc0'), 'name': 'Autoquake', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd6'), 'name': '2 Minutes', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529bce6'), 'name': 'CFH Docmail', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529bd39'), 'name': 'Quirky', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bd48'), 'name': 'White House Business Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529bd54'), 'name': 'AVST', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bd5c'), 'name': 'GGK Tech', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bd70'), 'name': 'Sunrun', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7b'), 'name': 'Merchantrms', 'number_of_employees': 117}, {'_id': ObjectId('52cdef7f4bab8bd67529bdae'), 'name': 'Ergon Informatik', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bdd2'), 'name': 'MarketsandMarkets', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529bde7'), 'name': 'uttarbharat Inc', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bdf8'), 'name': 'Netcentives', 'number_of_employees': 496}, {'_id': ObjectId('52cdef7f4bab8bd67529be02'), 'name': 'Wuxi Qiaolian Wind Power Technology', 'number_of_employees': 325}, {'_id': ObjectId('52cdef7f4bab8bd67529be03'), 'name': 'SLR Consulting', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7f4bab8bd67529be16'), 'name': 'TRIRIGA', 'number_of_employees': 214}, {'_id': ObjectId('52cdef7f4bab8bd67529be17'), 'name': '888 Holdings', 'number_of_employees': 931}, {'_id': ObjectId('52cdef7f4bab8bd67529be25'), 'name': 'EdeniQ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529be49'), 'name': 'Icera', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7f4bab8bd67529be4b'), 'name': 'Ipswitch', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529be4f'), 'name': 'Accurate Background', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529be67'), 'name': 'Urban Airship', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7f4bab8bd67529be91'), 'name': 'Pathway Genomics', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529be9e'), 'name': 'Binbit', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529bebb'), 'name': 'AMEC', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7f4bab8bd67529bec0'), 'name': 'Novariant', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bef0'), 'name': 'Netsize', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529befa'), 'name': 'Tiempo Development', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7f4bab8bd67529bf15'), 'name': 'Navtrak', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bf2d'), 'name': 'Tangoe', 'number_of_employees': 485}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3c'), 'name': 'Tribold', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7f4bab8bd67529bf42'), 'name': 'Water Health International', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529bf50'), 'name': 'SolaRover', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7f4bab8bd67529bf52'), 'name': 'viastore systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6e'), 'name': 'Innotech Solar', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd6'), 'name': 'Anacomp', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7f4bab8bd67529c004'), 'name': 'American Land Lease', 'number_of_employees': 195}, {'_id': ObjectId('52cdef7f4bab8bd67529c007'), 'name': 'Delhitoagra', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529c01a'), 'name': 'Telenity', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c033'), 'name': 'UQ Communications', 'number_of_employees': 222}, {'_id': ObjectId('52cdef7f4bab8bd67529c06b'), 'name': 'Avantium Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c09a'), 'name': 'Yahoo! Brazil', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c0a0'), 'name': 'Zemoga', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ac'), 'name': 'Timetric', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ae'), 'name': 'LEVEL Studios', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c7'), 'name': 'LearningMate', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7f4bab8bd67529c0da'), 'name': 'Idealo', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c103'), 'name': 'Galam', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529c157'), 'name': 'COA Solutions', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c162'), 'name': 'MicroVision', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529c166'), 'name': 'Imagination Technologies', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c169'), 'name': 'Biolex Therapeutics', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7f4bab8bd67529c178'), 'name': 'Bigpoint', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c18d'), 'name': 'ZoomSystems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c1a9'), 'name': 'Exent', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c1c5'), 'name': 'Pontis', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d3'), 'name': 'Audience', 'number_of_employees': 189}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ed'), 'name': 'Elite Advanced Laser Corporation', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fe'), 'name': 'OpTier', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c26e'), 'name': 'Varonis Systems', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c29d'), 'name': 'Postindustria', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7f4bab8bd67529c315'), 'name': 'Maxymiser', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529c327'), 'name': 'Anteryon', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c32f'), 'name': 'Mobile Interactive Group', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'number_of_employees': 149}, {'_id': ObjectId('52cdef7f4bab8bd67529c33e'), 'name': 'Solairedirect', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c348'), 'name': 'Mashable', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c368'), 'name': 'SpringSoft', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7f4bab8bd67529c377'), 'name': 'HighJump Software', 'number_of_employees': 352}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a4'), 'name': 'Telogis', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c0'), 'name': 'FleetMatics', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c3dd'), 'name': 'Genesis Communications', 'number_of_employees': 235}, {'_id': ObjectId('52cdef7f4bab8bd67529c3de'), 'name': 'Calypso Technology', 'number_of_employees': 386}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e9'), 'name': 'IRIS Software Group', 'number_of_employees': 347}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f7'), 'name': 'Hifn', 'number_of_employees': 166}, {'_id': ObjectId('52cdef7f4bab8bd67529c3fd'), 'name': 'Sky Bird Travel Tours', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c401'), 'name': 'Onsite3', 'number_of_employees': 422}, {'_id': ObjectId('52cdef7f4bab8bd67529c408'), 'name': 'Tier Technologies', 'number_of_employees': 412}, {'_id': ObjectId('52cdef7f4bab8bd67529c43d'), 'name': 'Tucows', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c44a'), 'name': 'MentorMate', 'number_of_employees': 216}, {'_id': ObjectId('52cdef7f4bab8bd67529c45b'), 'name': 'Cogniance', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529c474'), 'name': 'Fuze Box', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c49e'), 'name': 'Enliven Marketing Technologies', 'number_of_employees': 146}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d4'), 'name': 'Avira', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c4da'), 'name': '800APP', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c505'), 'name': 'Optium', 'number_of_employees': 267}, {'_id': ObjectId('52cdef7f4bab8bd67529c50c'), 'name': 'Wondershare Software', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7f4bab8bd67529c55d'), 'name': 'Amber Networks', 'number_of_employees': 223}, {'_id': ObjectId('52cdef7f4bab8bd67529c56a'), 'name': 'NetScaler', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529c56c'), 'name': 'OSA Technologies', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7f4bab8bd67529c57c'), 'name': 'Abilis Solutions', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7f4bab8bd67529c588'), 'name': 'Applied Language Solutions', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c599'), 'name': 'Catapult Communications', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ba'), 'name': 'iomart Group', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d6'), 'name': 'Swiftprosys', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529c5e9'), 'name': 'G5 Entertainment', 'number_of_employees': 107}, {'_id': ObjectId('52cdef7f4bab8bd67529c5fe'), 'name': 'InfoLogix', 'number_of_employees': 206}, {'_id': ObjectId('52cdef7f4bab8bd67529c601'), 'name': 'smartFOCUS', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7f4bab8bd67529c603'), 'name': 'TGS Geophysicl', 'number_of_employees': 696}, {'_id': ObjectId('52cdef7f4bab8bd67529c609'), 'name': 'INX', 'number_of_employees': 433}, {'_id': ObjectId('52cdef7f4bab8bd67529c616'), 'name': 'Ambassadors Group', 'number_of_employees': 267}, {'_id': ObjectId('52cdef7f4bab8bd67529c618'), 'name': 'optionsXpress', 'number_of_employees': 305}, {'_id': ObjectId('52cdef7f4bab8bd67529c61e'), 'name': 'Embarcadero Technologies', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7f4bab8bd67529c649'), 'name': 'AuthenTec', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7f4bab8bd67529c65c'), 'name': 'SheKnows', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c6a2'), 'name': 'Savvion', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ac'), 'name': 'Inventa Technologies', 'number_of_employees': 207}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d1'), 'name': 'UOL (Universo Online)', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d8'), 'name': 'NextLabs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c6e6'), 'name': 'OfficialVirtualDJ', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f1'), 'name': 'Willdan Group', 'number_of_employees': 385}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f3'), 'name': 'QSGI', 'number_of_employees': 164}]\n" + ] + } + ], + "source": [ + "results8 = list(collection.find(\n", + " {\"$and\": [{\"number_of_employees\": {\"$gte\": 100}}, {\"number_of_employees\": {\"$lt\": 1000}}]},\n", + " {\"name\": 1, \"number_of_employees\": 1}))\n", + "\n", + "print(len(results8))\n", + "print(results8)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 9. Order all the companies by their IPO price descendently." + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "[{'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'ipo': {'valuation_amount': 108960000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'ipo': {'valuation_amount': 104000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'ipo': {'valuation_amount': 100000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297d94'), 'ipo': {'valuation_amount': 18100000000}}, {'_id': ObjectId('52cdef7d4bab8bd675299d5d'), 'ipo': {'valuation_amount': 12800000000}}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'ipo': {'valuation_amount': 11000000000}}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'ipo': {'valuation_amount': 9430000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'ipo': {'valuation_amount': 9310000000}}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'ipo': {'valuation_amount': 6000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'ipo': {'valuation_amount': 5440000000}}]\n" + ] + } + ], + "source": [ + "# NOTE: For memory purposes search results have been limited to 10\n", + "\n", + "results9 = list(collection.find({},{\"ipo.valuation_amount\": 1}).sort(\"ipo.valuation_amount\", -1).limit(10))\n", + "\n", + "print(results9)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 10. Retrieve the 10 companies with more employees, order by the `number of employees`" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd67529941a'), 'name': 'Siemens', 'permalink': 'siemens', 'crunchbase_url': 'http://www.crunchbase.com/company/siemens', 'homepage_url': 'http://www.siemens.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Siemens', 'category_code': 'hardware', 'number_of_employees': 405000, 'founded_year': 1847, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'automation, building-technologies, drive-technology, energy', 'alias_list': '', 'email_address': 'contact@siemens.com', 'phone_number': '49 89 636 34134', 'description': 'Electronics and Electrical Engineering', 'created_at': 'Thu Jul 31 09:29:43 UTC 2008', 'updated_at': 'Thu Nov 28 20:32:55 UTC 2013', 'overview': '

Siemens AG, an electronics and electrical engineering company, operates in the industry, energy, and healthcare sectors worldwide. The company, formerly known as Siemens & Halske, was founded in 1847 and is headquartered in Munich, Germany. Siemens’ principal activities are in the fields of industry, energy, transportation and healthcare. It is organized into five main divisions: Industry, Energy, Healthcare, Infrastructure & Cities, and Siemens Financial Services (SFS). Siemens and its subsidiaries employ approximately 360,000 people across nearly 190 countries and reported global revenue of approximately 73.5 billion euros for the year of 2011.

\\n\\n

In the industry sector, the company’s portfolio ranges from industry automation and drives products and services to building, lighting, and mobility solutions and services, as well as includes system integration and solutions for plant business. It offers automation and drives, industrial solutions and services, transportation systems, Siemens building technologies, and OSRAM lighting solutions.

\\n\\n

In the energy sector, the company provides various solutions for the generation, transmission, and distribution of power, as well as for the extraction, conversion, and transport of oil and gas in the oil and gas industry. Siemens Energy Service delivers service solutions for gas turbines, steam turbines, generators or wind turbines to increase efficiency, reliability and availability throughout the entire lifecycle. From modernizations and upgrades, remote monitoring, lifetime extensions, and condition monitoring to logistical and turnkey service for onshore and offshore wind turbines, Siemens energy services work to achieve maximum success and efficiency.

\\n\\n

In the healthcare sector, Siemens develops, manufactures, and markets diagnostic and therapeutic systems, devices, and consumables, as well as offers IT systems for clinical and administrative purposes.

\\n\\n

Other services include technical maintenance, professional, and consulting services. Siemens AG offers IT solutions and services, primarily information and communications systems. Further, the company provides financial products and services comprising commercial finance, equity and project finance, treasury and investment management, and project and export finance. Siemens AG offers insurance solutions, such as claims management, as well as acts as a broker of company-financed insurances for employees on business trips and foreign assignments.

\\n\\n

The company has equity investments in Nokia Siemens Networks B.V., a telecommunications infrastructure company; and BSH Bosch und Siemens Hausgerate GmbH, a household appliance producer.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0006/5139/65139v2-max-150x150.jpg'], [[250, 58], 'assets/images/resized/0006/5139/65139v2-max-250x250.jpg'], [[450, 104], 'assets/images/resized/0006/5139/65139v2-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman, Supervisory Board', 'person': {'first_name': 'Dr. Gerhard', 'last_name': 'Cromme', 'permalink': 'dr-gerhard-cromme'}}, {'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Joe', 'last_name': 'Kaeser', 'permalink': 'joe-kaeser'}}, {'is_past': False, 'title': 'Head of the Open Innovation Program at the Chief Technology Office', 'person': {'first_name': 'Thomas', 'last_name': 'Lackner', 'permalink': 'thomas-lackner-2'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Ralf', 'last_name': 'P. Thomas', 'permalink': 'ralf-p-thomas'}}, {'is_past': False, 'title': 'Softare Engineer', 'person': {'first_name': 'Ali', 'last_name': 'Ugur', 'permalink': 'ali-ugur'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jens', 'last_name': 'Dressler', 'permalink': 'jens-dressler'}}, {'is_past': False, 'title': 'Director of Venture Technology', 'person': {'first_name': 'Debjit', 'last_name': 'Mukerji', 'permalink': 'debjit-mukerji'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Roland', 'last_name': 'Busch', 'permalink': 'roland-busch'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Barbara', 'last_name': 'Kux', 'permalink': 'barbara-kux'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Siegfried', 'last_name': 'Russwurm', 'permalink': 'siegfried-russwurm'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Michael', 'last_name': 'Suess', 'permalink': 'michael-suess'}}, {'is_past': False, 'title': 'Supervisory Boards', 'person': {'first_name': 'Werner', 'last_name': 'Wenning', 'permalink': 'werner-wenning'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Gerd', 'last_name': 'von Brandenstein', 'permalink': 'gerd-von-brandenstein'}}, {'is_past': False, 'title': 'Audit Committee', 'person': {'first_name': 'Hans Michael', 'last_name': 'Gaul', 'permalink': 'hans-michael-gaul'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Bettina', 'last_name': 'Haller', 'permalink': 'bettina-haller'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Robert', 'last_name': 'Kensbock', 'permalink': 'robert-kensbock'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Harald', 'last_name': 'Kern', 'permalink': 'harald-kern'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Nicola', 'last_name': 'Leibinger-Kammüller', 'permalink': 'nicola-leibinger-kammller'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Güler', 'last_name': 'Sabancı', 'permalink': 'gler-sabanc'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Birgit', 'last_name': 'Steinborn', 'permalink': 'birgit-steinborn'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Beregszaszi', 'permalink': 'alex-beregszaszi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Elnar', 'last_name': 'Hajiyev', 'permalink': 'elnar-hajiyev'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Deniss', 'last_name': 'Belajevs', 'permalink': 'deniss-belajevs'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Nigel', 'last_name': 'Vaz', 'permalink': 'nigel-vaz'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Klaus', 'last_name': 'Helmrich', 'permalink': 'klaus-helmrich'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Hermann', 'last_name': 'Requardt', 'permalink': 'hermann-requardt'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Peter', 'last_name': 'Y. Solmssen', 'permalink': 'peter-y-solmssen'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Berthold', 'last_name': 'Huber', 'permalink': 'berthold-huber'}}, {'is_past': False, 'title': 'Central Works Council', 'person': {'first_name': 'Lothar', 'last_name': 'Adler', 'permalink': 'lothar-adler'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Michael', 'last_name': 'Diekmann', 'permalink': 'michael-diekmann'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Peter', 'last_name': 'Gruss', 'permalink': 'peter-gruss'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Hans-Jürgen', 'last_name': 'Hartung', 'permalink': 'hans-jrgen-hartung'}}, {'is_past': False, 'title': 'Central Works Council', 'person': {'first_name': 'Harald', 'last_name': 'Kern', 'permalink': 'harald-kern'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Jürgen', 'last_name': 'Kerner', 'permalink': 'jrgen-kerner'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Gérard', 'last_name': 'Mestrallet', 'permalink': 'grard-mestrallet'}}, {'is_past': False, 'title': 'Committee of Spokespersons', 'person': {'first_name': 'Rainer', 'last_name': 'Sieg', 'permalink': 'rainer-sieg'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Sibylle', 'last_name': 'Wankel', 'permalink': 'sibylle-wankel'}}, {'is_past': False, 'title': 'Director, Venture Technology - USA', 'person': {'first_name': 'Ayman', 'last_name': 'Fawaz', 'permalink': 'ayman-fawaz'}}, {'is_past': True, 'title': 'Founder (INDX Software)', 'person': {'first_name': 'Mike', 'last_name': 'Brooks', 'permalink': 'mike-brooks'}}, {'is_past': True, 'title': 'President and CEO', 'person': {'first_name': 'F.', 'last_name': 'Steven Feinberg', 'permalink': 'f-steven-feinberg'}}, {'is_past': True, 'title': 'Chief Information Officer', 'person': {'first_name': 'Kerry', 'last_name': 'Stover', 'permalink': 'kerry-stover'}}, {'is_past': True, 'title': 'CTO, Communications Division', 'person': {'first_name': 'Thorsten', 'last_name': 'Heins', 'permalink': 'thorsten-heins'}}, {'is_past': True, 'title': 'Vice President at Siemens Molecular Imaging', 'person': {'first_name': 'Christian', 'last_name': 'Behrenbruch', 'permalink': 'christian-behrenbruch'}}, {'is_past': True, 'title': 'SVP / GM - Siemens Wireless Terminals', 'person': {'first_name': 'Bob', 'last_name': 'Hunsberger', 'permalink': 'bob-hunsberger'}}, {'is_past': True, 'title': 'EVP', 'person': {'first_name': 'Julien', 'last_name': 'Dahan', 'permalink': 'julien-dahan'}}, {'is_past': True, 'title': 'Global Vice President of CT Sales & Marketing, Managing Director Siemens Medical', 'person': {'first_name': 'Peter', 'last_name': 'Kingma', 'permalink': 'peter-kingma'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Robert', 'last_name': 'Bongi', 'permalink': 'robert-bongi'}}, {'is_past': True, 'title': 'VP, GM, Asia-Pacific & EMEA', 'person': {'first_name': 'Salim', 'last_name': 'Khan', 'permalink': 'salim-khan'}}, {'is_past': True, 'title': 'Vice President, T-Mobile USA Account', 'person': {'first_name': 'Jason', 'last_name': 'Mackenzie', 'permalink': 'jason-mackenzie'}}, {'is_past': True, 'title': 'VP, Wireless Solutions', 'person': {'first_name': 'Tom', 'last_name': 'Racca', 'permalink': 'tom-racca'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Leif', 'last_name': 'Pedersen', 'permalink': 'leif-pedersen'}}, {'is_past': True, 'title': 'Vice President, Product LIne Management', 'person': {'first_name': 'Ryan', 'last_name': 'Petty', 'permalink': 'ryan-petty'}}, {'is_past': True, 'title': 'Director M&A, Venturing & Partnering', 'person': {'first_name': 'Henning', 'last_name': 'Kosmack', 'permalink': 'henning-kosmack'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Warren', 'permalink': 'tom-warren'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Sujit', 'last_name': 'Nair', 'permalink': 'sujit-nair'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Rainer', 'last_name': 'Maerkle', 'permalink': 'rainer-maerkle'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Ilan', 'last_name': 'Vardi', 'permalink': 'ilan-vardi'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gregoire', 'last_name': 'jaunin', 'permalink': 'gregoire-jaunin'}}, {'is_past': True, 'title': 'Division Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Crowe', 'permalink': 'jeff-crowe'}}, {'is_past': True, 'title': 'number of ground breaking projects', 'person': {'first_name': 'George', 'last_name': 'Liou', 'permalink': 'george-liou'}}, {'is_past': True, 'title': 'Senior Project Engineer', 'person': {'first_name': 'David', 'last_name': 'Wood', 'permalink': 'david-wood'}}, {'is_past': True, 'title': 'Sr. Programmer Analyst', 'person': {'first_name': 'Zikria', 'last_name': 'Syed', 'permalink': 'zikria-syed'}}, {'is_past': True, 'title': 'Business Development & Partnerships', 'person': {'first_name': 'Neil', 'last_name': 'Harmsworth', 'permalink': 'neil-harmsworth'}}, {'is_past': True, 'title': 'Internet Expert - Software Developer', 'person': {'first_name': 'Christian', 'last_name': 'Berczely', 'permalink': 'christian-berczely'}}, {'is_past': True, 'title': 'Sales Engineer for Siemens Energy and Automation', 'person': {'first_name': 'Scott', 'last_name': 'Davis', 'permalink': 'scott-davis-4'}}, {'is_past': True, 'title': 'Summer Venture Manager', 'person': {'first_name': 'Stefan', 'last_name': 'Kalteis', 'permalink': 'stefan-kalteis'}}, {'is_past': True, 'title': 'Localization Specialist', 'person': {'first_name': 'Andrea', 'last_name': 'Roesch', 'permalink': 'andrea-roesch'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Fahri', 'last_name': 'Diner', 'permalink': 'fahri-diner'}}, {'is_past': True, 'title': 'Manager, IS Officer', 'person': {'first_name': 'Xiao', 'last_name': 'Ling Dong', 'permalink': 'xiao-ling-dong'}}, {'is_past': True, 'title': 'Intern (Software Development)', 'person': {'first_name': 'Stefan', 'last_name': 'Will', 'permalink': 'stefan-will'}}, {'is_past': True, 'title': 'Internship Industrial Design', 'person': {'first_name': 'Bianca', 'last_name': 'Busetti', 'permalink': 'bianca-busetti'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Elena', 'last_name': 'Fironova', 'permalink': 'elena-fironova'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'Vincent', 'last_name': 'Graziani', 'permalink': 'vincent-graziani'}}, {'is_past': True, 'title': 'Senior Director, Sales & Marketing', 'person': {'first_name': 'Walter', 'last_name': 'Lowes', 'permalink': 'walter-lowes'}}, {'is_past': True, 'title': 'IP Counsel', 'person': {'first_name': 'Jim', 'last_name': 'Harlan', 'permalink': 'jim-harlan'}}, {'is_past': True, 'title': 'Software Engineering Manager', 'person': {'first_name': 'Ping', 'last_name': 'Zhang', 'permalink': 'ping-zhang'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Elnar', 'last_name': 'Hajiyev', 'permalink': 'elnar-hajiyev'}}, {'is_past': True, 'title': 'Financial Advisor', 'person': {'first_name': 'Scott', 'last_name': 'Gorton', 'permalink': 'scott-gorton'}}, {'is_past': True, 'title': 'Project Management', 'person': {'first_name': 'Vernon', 'last_name': 'Warner', 'permalink': 'vernon-warner'}}, {'is_past': True, 'title': 'Global Product Manager for Repeater and Confined Area Communication Systems', 'person': {'first_name': 'Tormod', 'last_name': 'Larsen', 'permalink': 'tormod-larsen'}}, {'is_past': True, 'title': 'Core Product Development', 'person': {'first_name': 'Srinivas', 'last_name': 'Muktevi', 'permalink': 'srinivas-muktevi'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Claus', 'last_name': 'Thorsgaard', 'permalink': 'claus-thorsgaard'}}, {'is_past': True, 'title': 'Contracts Manager', 'person': {'first_name': 'Joe', 'last_name': 'Regnery', 'permalink': 'joe-regnery'}}, {'is_past': True, 'title': 'Leadership in Strategic-Partnership Developments', 'person': {'first_name': 'Steve', 'last_name': 'Hane', 'permalink': 'steve-hane'}}, {'is_past': True, 'title': 'HR Leader', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Systems Engineering and Sales Management', 'person': {'first_name': 'Steve', 'last_name': 'Madeira', 'permalink': 'steve-madeira'}}, {'is_past': True, 'title': 'Assistant to the Central Executive', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': 'Supply Chain Management & Business Development', 'person': {'first_name': 'Kevin', 'last_name': 'Owczarzak', 'permalink': 'kevin-owczarzak'}}, {'is_past': True, 'title': 'Senior Human Resources Role', 'person': {'first_name': 'Marietta', 'last_name': 'Harvey', 'permalink': 'marietta-harvey'}}, {'is_past': True, 'title': 'Board of Directors (Castle Networks)', 'person': {'first_name': 'Barry', 'last_name': 'Fidelman', 'permalink': 'barry-fidelman'}}, {'is_past': True, 'title': 'Led a site Manufacturing and Developing', 'person': {'first_name': 'Ed', 'last_name': 'Farrell', 'permalink': 'ed-farrell'}}, {'is_past': True, 'title': 'Country Manager (Sales and Business Development)', 'person': {'first_name': 'Rosemary', 'last_name': 'Lokhorst', 'permalink': 'rosemary-lokhorst'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'K.', 'last_name': 'Cyrus Hadavi', 'permalink': 'k-cyrus-hadavi'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Hanjiang', 'last_name': 'Wang', 'permalink': 'hanjiang-wang'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Bejoy', 'last_name': 'Jaison', 'permalink': 'bejoy-jaison'}}, {'is_past': True, 'title': 'Manager, Channel Sales', 'person': {'first_name': 'David', 'last_name': 'Putnam', 'permalink': 'david-putnam'}}, {'is_past': True, 'title': 'Technical Leader', 'person': {'first_name': 'Kamlesh', 'last_name': 'Pant', 'permalink': 'kamlesh-pant'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Ricky', 'last_name': 'Arora', 'permalink': 'ricky-arora'}}, {'is_past': True, 'title': 'Product Manager, Project Lead', 'person': {'first_name': 'Medha', 'last_name': 'Vedaprakash', 'permalink': 'medha-vedaprakash'}}, {'is_past': True, 'title': 'Various management positions', 'person': {'first_name': 'Jan', 'last_name': 'van Dokkum', 'permalink': 'jan-van-dokkum'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'David', 'last_name': 'Corre', 'permalink': 'david-corre'}}, {'is_past': True, 'title': 'Director, Decision Support', 'person': {'first_name': 'Daphne', 'last_name': 'Thomas', 'permalink': 'daphne-thomas'}}, {'is_past': True, 'title': 'Software Engineer, New Product Development', 'person': {'first_name': 'Anibal', 'last_name': 'Damiao', 'permalink': 'anibal-damiao'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Sid', 'last_name': 'Fein', 'permalink': 'sid-fein'}}, {'is_past': True, 'title': 'Division Manager', 'person': {'first_name': 'Jeffrey', 'last_name': 'Crowe', 'permalink': 'jeffrey-crowe'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Lemuel', 'last_name': 'Park', 'permalink': 'lemuel-park'}}, {'is_past': True, 'title': 'Vice President, Mobile Phones North America', 'person': {'first_name': 'Florian', 'last_name': 'Seiche', 'permalink': 'florian-seiche'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Rick', 'last_name': 'Campfield', 'permalink': 'rick-campfield'}}, {'is_past': True, 'title': 'Sales Management Positions', 'person': {'first_name': 'Woody', 'last_name': 'Sessoms', 'permalink': 'woody-sessoms'}}, {'is_past': True, 'title': 'SALES SUPPORT', 'person': {'first_name': 'Rebecca', 'last_name': 'lin', 'permalink': 'rebecca-lin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Lonsdale', 'permalink': 'simon-lonsdale'}}, {'is_past': True, 'title': 'senior leadership positions', 'person': {'first_name': 'Mark', 'last_name': 'Straton', 'permalink': 'mark-straton'}}, {'is_past': True, 'title': 'Accounting Manager / Internal Audit / Profit Center Reporting Supervisor / Staff Positions', 'person': {'first_name': 'Dan', 'last_name': 'Zebrowski', 'permalink': 'dan-zebrowski'}}, {'is_past': True, 'title': 'Deputy Director', 'person': {'first_name': 'Juergen', 'last_name': 'Schoepf', 'permalink': 'juergen-schoepf'}}, {'is_past': True, 'title': 'System Architect', 'person': {'first_name': 'Atreedev', 'last_name': 'Banerjee', 'permalink': 'atreedev-banerjee'}}, {'is_past': True, 'title': 'Telecommunication Technician', 'person': {'first_name': 'Douglas', 'last_name': 'Correa', 'permalink': 'douglas-correa-2'}}, {'is_past': True, 'title': 'Corporate Auditor, Region Controller', 'person': {'first_name': 'Kathrin', 'last_name': 'Buvac', 'permalink': 'kathrin-buvac'}}, {'is_past': True, 'title': 'Department Manager IC Development', 'person': {'first_name': 'Luc', 'last_name': 'Darmon', 'permalink': 'luc-darmon'}}, {'is_past': True, 'title': 'Director of Strategic Planning', 'person': {'first_name': 'Dan', 'last_name': 'Mondor', 'permalink': 'dan-mondor'}}, {'is_past': True, 'title': 'Medical Data Analysis', 'person': {'first_name': 'Jay', 'last_name': 'B. Simha', 'permalink': 'jay-b-simha'}}, {'is_past': True, 'title': 'R&D / Product Management', 'person': {'first_name': 'Maurice', 'last_name': 'Van Riek', 'permalink': 'maurice-van-riek'}}, {'is_past': True, 'title': 'Distributed Systems and Call Processing Applications', 'person': {'first_name': 'Mark', 'last_name': 'Snycerski', 'permalink': 'mark-snycerski'}}, {'is_past': True, 'title': 'Subject Matter Expert', 'person': {'first_name': 'Adnan', 'last_name': 'Hamid', 'permalink': 'adnan-hamid'}}, {'is_past': True, 'title': 'Account Management and Executive Positions', 'person': {'first_name': 'Mark', 'last_name': 'Baehr', 'permalink': 'mark-baehr'}}, {'is_past': True, 'title': 'Senior Quality & Regulatory Positions (Diagnostic Ultrasound)', 'person': {'first_name': 'Jim', 'last_name': 'Talbot', 'permalink': 'jim-talbot'}}, {'is_past': True, 'title': 'Telecommunications Projects - Greece', 'person': {'first_name': 'Giuseppe', 'last_name': 'Donagemma', 'permalink': 'giuseppe-donagemma'}}, {'is_past': True, 'title': 'Project Manager for Siemens Corporate Technology', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': 'Siemens Technology Accelerator GmbH as a Venture Manager', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Markus', 'last_name': 'Sickmoeller', 'permalink': 'markus-sickmoeller'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Philip', 'last_name': 'Korf', 'permalink': 'philip-korf'}}, {'is_past': True, 'title': 'Corporate Research Division', 'person': {'first_name': 'Leo', 'last_name': 'Grady', 'permalink': 'leo-grady'}}, {'is_past': True, 'title': 'Managed Manufacturing and Procurement', 'person': {'first_name': 'Jeremy', 'last_name': 'Edinger', 'permalink': 'jeremy-edinger'}}, {'is_past': True, 'title': 'Senior Roles in Product Management and Product Development', 'person': {'first_name': 'Pedro', 'last_name': 'Colaco', 'permalink': 'pedro-colao'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Chris', 'last_name': 'Hammelef', 'permalink': 'chris-hammelef'}}], 'competitions': [], 'providerships': [{'title': 'Application Development', 'is_past': False, 'provider': {'name': 'Mercury Digital Agency', 'permalink': 'mercury-digital-agency'}}, {'title': '', 'is_past': True, 'provider': {'name': '_STRATEGY Global Business Development', 'permalink': 'strategy-global-business-development'}}], 'total_money_raised': '$8.9M', 'funding_rounds': [{'id': 17062, 'round_code': 'grant', 'source_url': 'http://www.thealarmclock.com/mt/archives/2010/07/siemens_awarded.html', 'source_description': 'Siemens Awarded $8.9 Million For Clean Coal Plant', 'raised_amount': 8900000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'U.S. Department of Energy', 'permalink': 'u-s-department-of-energy'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 418000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/siemens-buys-solel-for-418-million/', 'source_description': 'Siemens Buys Solel for $418M', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'Solel Solar Systems', 'permalink': 'solel-solar-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/siemens-buys-suregrid-amid-building-management-fever/', 'source_description': 'Siemens Buys SureGrid Amid Building Management Fever', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 1, 'company': {'name': 'SureGrid', 'permalink': 'suregrid'}}, {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/memphis/stories/2005/03/14/daily44.html', 'source_description': 'Siemens to buy CTI Molecular Imaging, Inc., for $1 billion Read more: Siemens to buy CTI Molecular Imaging, Inc., for $1 billion | Memphis Business Journal ', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 18, 'company': {'name': 'CTI Molecular Imaging', 'permalink': 'cti-molecular-imaging'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2011/11/07/daily20-Siemens-buys-Waltham-CAD-software-maker-Vistagy.html', 'source_description': 'Siemens buys Waltham CAD software maker Vistagy', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Vistagy', 'permalink': 'vistagy'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/05/siemens-buys-emeter-to-bolster-its-smart-grid-division/', 'source_description': 'Siemens Buys eMeter To Bolster Its Smart Grid Division', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 6, 'company': {'name': 'eMeter', 'permalink': 'emeter'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siemens.com/press/en/pressrelease/?press=/en/pressrelease/2013/industry/industry-automation/iia2013063008.htm', 'source_description': 'Siemens Aquires Preactor', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 3, 'company': {'name': 'The Preactor Group', 'permalink': 'preactor-international-ltd'}}], 'offices': [{'description': '', 'address1': 'Wittelsbacherplatz 2', 'address2': '', 'zip_code': '80333', 'city': 'Munich', 'state_code': None, 'country_code': 'DEU', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 35852, 'description': 'Siemens Receives €1.8 Billion Order for U.K. Trains ', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://online.wsj.com/article/SB10001424127887323419604578571470024685266.html?mod=europe_home', 'source_text': '', 'source_description': 'Siemens Receives €1.8 Billion Order for U.K. Trains ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Siemens', 'permalink': 'siemens'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 23, 'stock_symbol': 'NYSE:SI'}, 'video_embeds': [{'embed_code': '', 'description': '

More Than Just A Business

'}, {'embed_code': \"\", 'description': '

A World With Seven Billion People

'}, {'embed_code': \"\", 'description': '

The Next Big Step

'}, {'embed_code': \"\", 'description': '

Somewhere In America

'}], 'screenshots': [{'available_sizes': [[[150, 92], 'assets/images/resized/0036/7684/367684v1-max-150x150.png'], [[250, 154], 'assets/images/resized/0036/7684/367684v1-max-250x250.png'], [[450, 277], 'assets/images/resized/0036/7684/367684v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529856a'), 'name': 'IBM', 'permalink': 'ibm', 'crunchbase_url': 'http://www.crunchbase.com/company/ibm', 'homepage_url': 'http://www.ibm.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'IBM', 'category_code': 'software', 'number_of_employees': 388000, 'founded_year': 1896, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'ews@us.ibm.com', 'phone_number': '914-499-1900', 'description': '', 'created_at': 'Fri Mar 14 22:55:52 UTC 2008', 'updated_at': 'Sat Jan 04 02:56:24 UTC 2014', 'overview': '

IBM, acronym for International Business Machines, is a multinational computer technology and consulting corporation. The company is one of the few information technology companies with a continuous history dating back to the 19th century. IBM manufactures and sells computer hardware and software, and offers infrastructure services, hosting services, and consulting services in areas ranging from mainframe computers to nanotechnology..

', 'image': {'available_sizes': [[[150, 60], 'assets/images/resized/0002/1370/21370v1-max-150x150.png'], [[170, 68], 'assets/images/resized/0002/1370/21370v1-max-250x250.png'], [[170, 68], 'assets/images/resized/0002/1370/21370v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Lotus Notes', 'permalink': 'lotus-notes'}, {'name': 'Lotus Sametime', 'permalink': 'lotus-sametime'}, {'name': 'Lotus Quickr', 'permalink': 'lotus-quickr'}, {'name': 'Lotus Connections', 'permalink': 'lotus-connections'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board of Directors', 'person': {'first_name': 'Virginia', 'last_name': 'M. Rometty', 'permalink': 'virginia-m-rometty'}}, {'is_past': False, 'title': 'President and CEO', 'person': {'first_name': 'Virginia', 'last_name': 'M. Rometty', 'permalink': 'virginia-m-rometty'}}, {'is_past': False, 'title': 'Chief Privacy Officer, IBM', 'person': {'first_name': 'Christina', 'last_name': 'Peters', 'permalink': 'christina-peters'}}, {'is_past': False, 'title': 'Vice President and CTO, Global Public Sector', 'person': {'first_name': 'Guruduth', 'last_name': 'Banavar', 'permalink': 'guruduth-banavar'}}, {'is_past': False, 'title': 'Chief Scientist of the IBM Entity Analytics group', 'person': {'first_name': 'Jeff', 'last_name': 'Jonas', 'permalink': 'jeff-jonas'}}, {'is_past': False, 'title': 'Senior VP and CFO', 'person': {'first_name': 'Mark', 'last_name': 'Loughridge', 'permalink': 'mark-loughridge'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'John', 'last_name': 'Blyzinskyj', 'permalink': 'john-blyzinskyj'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Donald', 'last_name': 'J. Rosenberg', 'permalink': 'donald-j-rosenberg'}}, {'is_past': False, 'title': 'Vice President of Services (Information Lifecycle Governance)', 'person': {'first_name': 'Ellis', 'last_name': 'Ishaya', 'permalink': 'ellis-ishaya'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'John', 'last_name': 'Lutsi', 'permalink': 'john-lutsi'}}, {'is_past': False, 'title': 'Vice President, Strategy and Product Management, IBM Security System', 'person': {'first_name': 'Marc', 'last_name': 'Van Zadelhoff', 'permalink': 'marc-van-zadelhoff'}}, {'is_past': False, 'title': 'Vice President, Exascale Systems', 'person': {'first_name': 'Dave', 'last_name': 'Turek', 'permalink': 'dave-turek'}}, {'is_past': False, 'title': 'IBM Global Energy & Utilities Industry , Vice President, Strategy and Development', 'person': {'first_name': 'Allan', 'last_name': 'Schurr', 'permalink': 'allan-schurr'}}, {'is_past': False, 'title': 'Vice President, Corporate Citizenship & Corporate Affairs and President, IBM International Foundation', 'person': {'first_name': 'Stanley', 'last_name': 'S. Litow', 'permalink': 'stanley-s-litow'}}, {'is_past': False, 'title': 'Senior Vice President, Application Management Services, IBM Global Business Services', 'person': {'first_name': 'Colleen', 'last_name': 'Arnold', 'permalink': 'colleen-arnold'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Global Business Services', 'person': {'first_name': 'Bridget', 'last_name': 'van Kralingen', 'permalink': 'bridget-van-kralingen'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Systems & Technology Group and IBM Integrated Supply Chain', 'person': {'first_name': 'Tom', 'last_name': 'Rosamilia', 'permalink': 'tom-rosamilia'}}, {'is_past': False, 'title': 'Senior Vice President and Group Executive - Software & Systems', 'person': {'first_name': 'Steven', 'last_name': 'A. Mills', 'permalink': 'steven-a-mills'}}, {'is_past': False, 'title': 'Senior Vice President, Marketing and Communications', 'person': {'first_name': 'Jon', 'last_name': 'C. Iwata', 'permalink': 'jon-c-iwata'}}, {'is_past': False, 'title': 'Senior Vice President, Sales and Distribution', 'person': {'first_name': 'Bruno', 'last_name': 'Di Leo', 'permalink': 'bruno-di-leo'}}, {'is_past': False, 'title': 'Senior Vice President, Corporate Strategy', 'person': {'first_name': 'Rodney', 'last_name': 'C. Adkins', 'permalink': 'rodney-c-adkins'}}, {'is_past': False, 'title': 'VP, Big Data Products', 'person': {'first_name': 'Anjul', 'last_name': 'Bhambhri', 'permalink': 'anjul-bhambhri'}}, {'is_past': False, 'title': 'Vice president of messaging and collaboration', 'person': {'first_name': 'Kevin', 'last_name': 'Cavanaugh', 'permalink': 'kevin-cavanaugh'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Abdul', 'last_name': 'J', 'permalink': 'abdul-jaleel-kk'}}, {'is_past': False, 'title': 'Research Staff Member', 'person': {'first_name': 'Qinghuang', 'last_name': 'Lin', 'permalink': 'qinghuang-lin'}}, {'is_past': False, 'title': 'System Administrator', 'person': {'first_name': 'Marcel', 'last_name': 'Figueiredo', 'permalink': 'marcel-figueiredo'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Marc', 'last_name': 'Baumbach', 'permalink': 'marc-baumbach'}}, {'is_past': False, 'title': 'IBM Venture Capital - Partner', 'person': {'first_name': 'Martin', 'last_name': 'Kelly', 'permalink': 'martin-kelly'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Lee', 'last_name': 'Hamrick', 'permalink': 'lee-hamrick'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Cordell', 'last_name': 'Carter, II', 'permalink': 'cordell-carter-ii'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Karandeep', 'last_name': 'Chawla', 'permalink': 'karandeep-chawla'}}, {'is_past': False, 'title': 'partnerships', 'person': {'first_name': 'Joseph', 'last_name': 'M. Sanda', 'permalink': 'joseph-m-sanda'}}, {'is_past': False, 'title': 'executive vice president', 'person': {'first_name': 'Lonnie', 'last_name': 'Smith', 'permalink': 'lonnie-smith'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Paul', 'last_name': 'Twombly', 'permalink': 'paul-twombly'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vincent', 'last_name': 'P. Melvin', 'permalink': 'vincent-p-melvin'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vince', 'last_name': 'Hunt', 'permalink': 'vince-hunt'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Global Technology Services', 'person': {'first_name': 'Erich', 'last_name': 'Clementi', 'permalink': 'erich-clementi'}}, {'is_past': False, 'title': 'Senior Vice President and Director of IBM Research', 'person': {'first_name': 'Dr.', 'last_name': 'John E. Kelly III', 'permalink': 'dr-john-e-kelly-iii'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Software Solutions Group', 'person': {'first_name': 'Michael', 'last_name': 'D. Rhodin', 'permalink': 'michael-d-rhodin'}}, {'is_past': False, 'title': 'Senior Vice President, Legal and Regulatory Affairs, and General Counsel', 'person': {'first_name': 'Robert', 'last_name': 'C. Weber', 'permalink': 'robert-c-weber'}}, {'is_past': False, 'title': 'IBM Fellow & Vice President, Innovation', 'person': {'first_name': 'Bernard', 'last_name': 'S. Meyerson', 'permalink': 'bernard-s-meyerson'}}, {'is_past': False, 'title': 'Vice-President/Partner Global Energy and Utilities Leader, IBM Global Business Services', 'person': {'first_name': 'F.', 'last_name': 'Michael Valocchi', 'permalink': 'f-michael-valocchi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': False, 'title': 'Financial and Operational Roles', 'person': {'first_name': 'Paul', 'last_name': 'Nannetti', 'permalink': 'paul-nannetti'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Flávia', 'last_name': 'Melon', 'permalink': 'flvia-melon'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Greg', 'last_name': 'Jorgensen', 'permalink': 'greg-jorgensen'}}, {'is_past': False, 'title': 'Practice Manager', 'person': {'first_name': 'Brent', 'last_name': 'Rhymes', 'permalink': 'brent-rhymes'}}, {'is_past': False, 'title': 'General Manager of Business Analytics', 'person': {'first_name': 'Rob', 'last_name': 'Ashe', 'permalink': 'rob-ashe'}}, {'is_past': False, 'title': 'Finance Industry', 'person': {'first_name': 'Nick', 'last_name': 'Adamo', 'permalink': 'nick-adamo'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'James', 'last_name': 'Bryant', 'permalink': 'james-bryant-2'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': False, 'title': 'Distribution Channels Marketing Leader - NE, Europe', 'person': {'first_name': 'James', 'last_name': 'Hutchison', 'permalink': 'james-hutchison'}}, {'is_past': False, 'title': 'Director and Member of Audit Committee', 'person': {'first_name': 'James', 'last_name': 'W. Owens', 'permalink': 'james-w-owens'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Sally', 'last_name': 'Narodick', 'permalink': 'sally-narodick'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Babak', 'last_name': 'Forutanpour', 'permalink': 'babak-forutanpour'}}, {'is_past': False, 'title': 'Marketing and Operations', 'person': {'first_name': 'Don', 'last_name': 'Clifford', 'permalink': 'don-clifford'}}, {'is_past': False, 'title': 'Member of IBM’s Corporate Executive Committee', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': False, 'title': 'General Manager', 'person': {'first_name': 'Paula', 'last_name': 'L. Summa', 'permalink': 'paula-l-summa-2'}}, {'is_past': False, 'title': 'President - Asia Pacific', 'person': {'first_name': 'Fank', 'last_name': 'Kern', 'permalink': 'fank-kern'}}, {'is_past': False, 'title': 'Director, Market Management - IBM Mobile Enterprise', 'person': {'first_name': 'Ed', 'last_name': 'Brill', 'permalink': 'ed-brill'}}, {'is_past': False, 'title': 'Senior Consultant, IBM Global Services', 'person': {'first_name': 'Phil', 'last_name': 'Michaelson', 'permalink': 'phil-michaelson'}}, {'is_past': False, 'title': 'Strategy & Corporate Development', 'person': {'first_name': 'Vijay', 'last_name': 'Raghavendra', 'permalink': 'vijay-raghavendra'}}, {'is_past': False, 'title': 'Global Storage Efficiency Evangelist', 'person': {'first_name': 'Steve', 'last_name': 'Kenniston', 'permalink': 'steve-kenniston'}}, {'is_past': False, 'title': 'Architect Consultant', 'person': {'first_name': 'Nicolas', 'last_name': 'Gunther', 'permalink': 'nicols-gunther'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Bauman', 'permalink': 'brian-bauman'}}, {'is_past': False, 'title': 'Security Architect', 'person': {'first_name': 'Igor', 'last_name': 'Volovich', 'permalink': 'igor-volovich'}}, {'is_past': False, 'title': 'Smartcamp Mentor', 'person': {'first_name': 'Luis', 'last_name': 'Rivera Gurrea-Nozaleda', 'permalink': 'luis-rivera'}}, {'is_past': False, 'title': 'senior executive leadership', 'person': {'first_name': 'Steve', 'last_name': 'Shute', 'permalink': 'steve-shute'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Daniel', 'last_name': 'Leff', 'permalink': 'daniel-leff'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jeff', 'last_name': 'Jonas', 'permalink': 'jeff-jonas'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'Fiddis', 'permalink': 'richard-fiddis'}}, {'is_past': False, 'title': 'Senior Vice President, Human Resources', 'person': {'first_name': 'Diane', 'last_name': 'Gherson', 'permalink': 'diane-gherson'}}, {'is_past': False, 'title': 'Chairs Technology Team', 'person': {'first_name': 'Robert', 'last_name': 'J. LeBlanc', 'permalink': 'robert-j-leblanc'}}, {'is_past': False, 'title': 'Senior Vice President, Enterprise Transformation', 'person': {'first_name': 'Linda', 'last_name': 'S. Sanford', 'permalink': 'linda-s-sanford'}}, {'is_past': False, 'title': 'Vice President and Chief Information Officer', 'person': {'first_name': 'Jeanette', 'last_name': 'Horan', 'permalink': 'jeanette-horan'}}, {'is_past': False, 'title': 'Senior Vice President, Services Delivery, IBM Global Technology Services', 'person': {'first_name': 'Timothy', 'last_name': 'S. Shaughnessy', 'permalink': 'timothy-s-shaughnessy'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Charlie', 'last_name': 'Thomas', 'permalink': 'charlie-thomas'}}, {'is_past': False, 'title': 'Various Positions', 'person': {'first_name': 'Alex', 'last_name': 'Behfar', 'permalink': 'alex-behfar'}}, {'is_past': False, 'title': 'IBM Executive - Global Natural Resources Sector', 'person': {'first_name': 'Kadir', 'last_name': 'Koken', 'permalink': 'kadir-koken'}}, {'is_past': False, 'title': 'Software engineer', 'person': {'first_name': 'Michael', 'last_name': 'Lipton', 'permalink': 'michael-lipton'}}, {'is_past': False, 'title': 'Global Product Development', 'person': {'first_name': 'Yi-Ling', 'last_name': 'Chen', 'permalink': 'yi-ling-chen'}}, {'is_past': False, 'title': 'Partner / Vice-President', 'person': {'first_name': 'Michael', 'last_name': 'LaRoche', 'permalink': 'michael-laroche'}}, {'is_past': False, 'title': 'Corporate Technology Officer', 'person': {'first_name': 'John', 'last_name': 'Borkenhagen', 'permalink': 'john-borkenhagen'}}, {'is_past': False, 'title': 'STG - WW Sales Executive Leader; Real-time Compression', 'person': {'first_name': 'Roger', 'last_name': 'Cummings', 'permalink': 'roger-cummings'}}, {'is_past': False, 'title': 'Global Business Partner Strategy', 'person': {'first_name': 'Han', 'last_name': 'Sikkens', 'permalink': 'han-sikkens'}}, {'is_past': False, 'title': 'Senior Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': False, 'title': 'vice president', 'person': {'first_name': 'Stratton', 'last_name': 'Sclavos', 'permalink': 'stratton-sclavos-3'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Angel', 'last_name': 'Sansegundo', 'permalink': 'angel-sansegundo'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Praveen', 'last_name': 'Tailam', 'permalink': 'praveen-tailam'}}, {'is_past': False, 'title': 'Business Analyst', 'person': {'first_name': 'Christian', 'last_name': 'Fazzini', 'permalink': 'christian-fazzini'}}, {'is_past': False, 'title': 'Consulting IT Specialist', 'person': {'first_name': 'Marcos', 'last_name': 'Quezada', 'permalink': 'marcos-quezada'}}, {'is_past': False, 'title': 'General Manager - IBM INVESTMENTS, INC.', 'person': {'first_name': 'Paula', 'last_name': 'L. Summa', 'permalink': 'paula-l-summa'}}, {'is_past': True, 'title': 'Co - Founder / EVP / CTO (Watchmark Corp.)', 'person': {'first_name': 'Richard', 'last_name': 'Kateley', 'permalink': 'richard-kateley'}}, {'is_past': True, 'title': 'CEO, Lombardi', 'person': {'first_name': 'Rod', 'last_name': 'Favaron', 'permalink': 'rod-favaron'}}, {'is_past': True, 'title': 'Chairman, President and Chief Executive Officer', 'person': {'first_name': 'Samuel', 'last_name': 'J. Palmisano', 'permalink': 'samuel-j-palmisano'}}, {'is_past': True, 'title': 'President / COO', 'person': {'first_name': 'Charles', 'last_name': 'A. Haggerty', 'permalink': 'charles-a-haggerty'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Kris', 'last_name': 'Lamb', 'permalink': 'kris-lamb'}}, {'is_past': True, 'title': 'CSO, IBM Smarter Commerce / Executive, Digital Marketing & Analytics', 'person': {'first_name': 'John', 'last_name': 'Squire', 'permalink': 'john-squire'}}, {'is_past': True, 'title': 'CTO and Business Development Manager, Israel and EMEA', 'person': {'first_name': 'Jacob', 'last_name': 'Ukelson', 'permalink': 'jacob-ukelson'}}, {'is_past': True, 'title': 'Business Consulting Leader, CFO, VP , Operations', 'person': {'first_name': 'Udi', 'last_name': 'Dagan', 'permalink': 'udi-dagan'}}, {'is_past': True, 'title': 'Chief Architect (File Systems)', 'person': {'first_name': 'Michael', 'last_name': 'Kazar', 'permalink': 'michael-kazar'}}, {'is_past': True, 'title': 'Chief Financial Officer and Vice President of Finance', 'person': {'first_name': 'Bob', 'last_name': 'Calderoni', 'permalink': 'bob-calderoni'}}, {'is_past': True, 'title': 'VP / CFO / Controller', 'person': {'first_name': 'Frank', 'last_name': 'Calderoni', 'permalink': 'frank-calderoni'}}, {'is_past': True, 'title': 'Chief NT Architect of File Systems Group', 'person': {'first_name': 'Jonathan', 'last_name': 'Goldick', 'permalink': 'jonathan-goldick'}}, {'is_past': True, 'title': 'Chief Strategy Officer, IBM System & Technology Group, NEIOT, IBM Zurich', 'person': {'first_name': 'Mark', 'last_name': 'Vargo', 'permalink': 'mark-vargo'}}, {'is_past': True, 'title': 'Chief Architect, Rational Team Concert', 'person': {'first_name': 'Jean-Michel', 'last_name': 'Lemieux', 'permalink': 'jean-michel-lemieux'}}, {'is_past': True, 'title': 'IBM Fellow, VP & CTO, Information Mgmt', 'person': {'first_name': 'Anant', 'last_name': 'Jhingran', 'permalink': 'anant-jhingran'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Douglas', 'last_name': 'L. Maine', 'permalink': 'douglas-l-maine'}}, {'is_past': True, 'title': 'COO, Educational Division', 'person': {'first_name': 'Tim', 'last_name': 'Harrington', 'permalink': 'tim-harrington'}}, {'is_past': True, 'title': 'Chief Strategist, Identity Management', 'person': {'first_name': 'Jeff', 'last_name': 'Curie', 'permalink': 'jeff-curie'}}, {'is_past': True, 'title': 'Vice President, Assistant General Counsel and Secretary', 'person': {'first_name': 'Andrew', 'last_name': 'Bonzani', 'permalink': 'andrew-bonzani'}}, {'is_past': True, 'title': 'VP / GM - Public Sector Hadoop', 'person': {'first_name': 'Shawn', 'last_name': 'Dolley', 'permalink': 'shawn-dolley'}}, {'is_past': True, 'title': 'VP / GM - EMEA', 'person': {'first_name': 'Guillaume', 'last_name': \"d'Eyssautier\", 'permalink': 'guillaume-deyssautier'}}, {'is_past': True, 'title': 'Vice President of the North American', 'person': {'first_name': 'Kelly', 'last_name': 'Gay', 'permalink': 'kelly-gay'}}, {'is_past': True, 'title': 'Vice President, Storage Systems Sales, Americas', 'person': {'first_name': 'Carlos', 'last_name': 'M. Carreras', 'permalink': 'carlos-m-carreras'}}, {'is_past': True, 'title': 'Director of Business Development and Strategy, and VP Business Development', 'person': {'first_name': 'Karl', 'last_name': 'Doyle', 'permalink': 'karl-doyle'}}, {'is_past': True, 'title': 'Senior Exe. / VP roles', 'person': {'first_name': 'Brian', 'last_name': 'McBride', 'permalink': 'brian-mcbride'}}, {'is_past': True, 'title': 'Vice President, Finance, Software Group, Assistant Controller, Vice President, Financial Planning, Asia Pacific, Director of Finance, IBM Software Solutions, Program Director, IBM Corporate Headquarters, Financial Consolidation Manager, IBM Global Service', 'person': {'first_name': 'Charles', 'last_name': 'Neral', 'permalink': 'charles-neral'}}, {'is_past': True, 'title': 'Strategy Consultant, Executive Assistant to VP', 'person': {'first_name': 'Christian', 'last_name': 'Thrane', 'permalink': 'christian-thrane'}}, {'is_past': True, 'title': 'VP Tivoli/netcool, Dir Tivoli BA', 'person': {'first_name': 'Tom', 'last_name': 'Axbey', 'permalink': 'tom-axbey'}}, {'is_past': True, 'title': 'VP Product Strategy, ECM Group, IM', 'person': {'first_name': 'David', 'last_name': 'McCann', 'permalink': 'david-mccann-2'}}, {'is_past': True, 'title': 'VP - Global Marketing & Industry Strategy', 'person': {'first_name': 'Robert', 'last_name': 'Shecterle', 'permalink': 'robert-shecterle'}}, {'is_past': True, 'title': 'VP & GM , Worldwide Marketing and Brand Management', 'person': {'first_name': 'Dave', 'last_name': 'Andonian', 'permalink': 'dave-andonian'}}, {'is_past': True, 'title': 'VP EMEA Business Analytics', 'person': {'first_name': 'Ad', 'last_name': 'Voogt', 'permalink': 'ad-voogt'}}, {'is_past': True, 'title': 'VP, Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Zisman', 'permalink': 'mike-zisman'}}, {'is_past': True, 'title': 'VP Research', 'person': {'first_name': 'Andre', 'last_name': 'Boysen', 'permalink': 'andre-boysen'}}, {'is_past': True, 'title': 'Vice President, Finance IBM Software Group', 'person': {'first_name': 'George', 'last_name': 'W. Harrington', 'permalink': 'george-w-harrington'}}, {'is_past': True, 'title': 'VP and Various Executive Positions', 'person': {'first_name': 'John', 'last_name': 'W. Thompson', 'permalink': 'john-w-thompson'}}, {'is_past': True, 'title': 'VP-GBS Federal', 'person': {'first_name': 'Dane', 'last_name': 'Coyer', 'permalink': 'dane-coyer'}}, {'is_past': True, 'title': 'VP Entity Analytic Systems,, VP EAS,,', 'person': {'first_name': 'John', 'last_name': 'Slitz', 'permalink': 'john-slitz'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Ward', 'permalink': 'stephen-ward'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Arun', 'last_name': 'Oberoi', 'permalink': 'arun-oberoi'}}, {'is_past': True, 'title': 'Vice President, Software Group, Vice President, Storage Technology Division, Vice President, Americas Sales', 'person': {'first_name': 'Greg', 'last_name': 'Enriquez', 'permalink': 'greg-enriquez'}}, {'is_past': True, 'title': 'Vice President of Plans, Controls and Product Management, General Products Division', 'person': {'first_name': 'Dick', 'last_name': 'Williams', 'permalink': 'dick-williams'}}, {'is_past': True, 'title': 'VP, Corporate Strategy', 'person': {'first_name': 'Anil', 'last_name': 'Menon', 'permalink': 'anil-menon'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Steven', 'last_name': 'M. Cooker', 'permalink': 'steven-m-cooker'}}, {'is_past': True, 'title': 'VP, Business Intelligence', 'person': {'first_name': 'Evangelos', 'last_name': 'Simoudis', 'permalink': 'evangelos-simoudis'}}, {'is_past': True, 'title': 'Vice President, CRM Product Group', 'person': {'first_name': 'Scott', 'last_name': 'McCorkle', 'permalink': 'scott-mccorkle'}}, {'is_past': True, 'title': 'Senior VP & GM United States', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': True, 'title': 'Vice President and General Manager for Tivoli Systems Division', 'person': {'first_name': 'Maurizio', 'last_name': 'Carli', 'permalink': 'maurizio-carli'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Chet', 'last_name': 'Kapoor', 'permalink': 'chet-kapoor'}}, {'is_past': True, 'title': 'Vice President, Financial Planning', 'person': {'first_name': 'J.D.', 'last_name': 'Sherman', 'permalink': 'j-d-sherman'}}, {'is_past': True, 'title': 'Partner/ Vice President', 'person': {'first_name': 'Bill', 'last_name': 'Diffenderffer', 'permalink': 'bill-diffenderffer'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Jim', 'last_name': 'Steele', 'permalink': 'jim-steele'}}, {'is_past': True, 'title': 'Vice President, Information Management Solutions', 'person': {'first_name': 'Tom', 'last_name': 'Reilly', 'permalink': 'tom-reilly'}}, {'is_past': True, 'title': 'Vice President of Internet Technology', 'person': {'first_name': 'John', 'last_name': 'R. Patrick', 'permalink': 'john-r-patrick'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Rich', 'last_name': 'Fennessy', 'permalink': 'rich-fennessy'}}, {'is_past': True, 'title': 'VP - IBM Sales Model', 'person': {'first_name': 'Dan', 'last_name': 'Bennewitz', 'permalink': 'dan-bennewitz'}}, {'is_past': True, 'title': 'Vice President and Corporate Officer,Vice President and General Manager for Marketing and Services, Numerous Leadership Positions', 'person': {'first_name': 'William', 'last_name': 'O.Grabe', 'permalink': 'william-o-grabe'}}, {'is_past': True, 'title': 'Vice President and Business Unit General Manager', 'person': {'first_name': 'Jim', 'last_name': 'Ricotta', 'permalink': 'jim-ricotta'}}, {'is_past': True, 'title': 'VP, Software', 'person': {'first_name': 'Paul', 'last_name': 'Gigg', 'permalink': 'paul-gigg'}}, {'is_past': True, 'title': 'VP WW R&D Business Analytics & Applications', 'person': {'first_name': 'Peter', 'last_name': 'JL Griffiths', 'permalink': 'peter-jl-griffiths'}}, {'is_past': True, 'title': 'Division Vice President,Regional Manager, Southeast', 'person': {'first_name': 'Michael', 'last_name': 'Forster', 'permalink': 'michael-forster'}}, {'is_past': True, 'title': 'VP of Semiconductor', 'person': {'first_name': 'Tom', 'last_name': 'Caulfield', 'permalink': 'tom-caulfield'}}, {'is_past': True, 'title': 'Vice President Blade and Modular Systems Development', 'person': {'first_name': 'Jeff', 'last_name': 'Benck', 'permalink': 'jeff-benck-2'}}, {'is_past': True, 'title': 'VP Marketing & Operations eServer', 'person': {'first_name': 'Kim', 'last_name': 'Stevenson', 'permalink': 'kim-stevenson'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'jon', 'last_name': 'griffin', 'permalink': 'jon-griffin'}}, {'is_past': True, 'title': 'VP Content Discovery', 'person': {'first_name': 'Stuart', 'last_name': 'Levinson', 'permalink': 'stuart-levinson'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Papermaster', 'permalink': 'mark-papermaster'}}, {'is_past': True, 'title': 'Vice President, Distribution Sector, Americas', 'person': {'first_name': 'Gerri', 'last_name': 'Elliott', 'permalink': 'gerri-elliott'}}, {'is_past': True, 'title': 'Executive VP Innovation and Technology', 'person': {'first_name': 'Nick', 'last_name': 'Donofrio', 'permalink': 'nick-donofrio'}}, {'is_past': True, 'title': 'Developer of processor targeting 3G handsets', 'person': {'first_name': 'Olivier', 'last_name': 'Schuepbach', 'permalink': 'olivier-schuepbach'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Igor', 'last_name': 'Jablokov', 'permalink': 'igor-jablokov'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Toby', 'last_name': 'Beresford', 'permalink': 'toby-beresford'}}, {'is_past': True, 'title': 'President - Canada', 'person': {'first_name': 'Dan', 'last_name': 'Fortin', 'permalink': 'dan-fortin'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Abhishek', 'last_name': 'Jain', 'permalink': 'abhishek-jain'}}, {'is_past': True, 'title': 'Engineer, Consulting Principal, Sales School', 'person': {'first_name': 'Amir', 'last_name': 'Nathoo', 'permalink': 'amir-nathoo'}}, {'is_past': True, 'title': 'Manager, Commercial Major Accounts', 'person': {'first_name': 'Ean', 'last_name': 'Jackson', 'permalink': 'ean-jackson'}}, {'is_past': True, 'title': 'R&D Engineer', 'person': {'first_name': 'Jaroslav', 'last_name': 'Gergic', 'permalink': 'jaroslav-gergic'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Ali Rıza', 'last_name': 'BabaoÄŸlan', 'permalink': 'ali-rza-babaolan'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Jim', 'last_name': 'Caruso', 'permalink': 'james-caruso'}}, {'is_past': True, 'title': 'Extreme Blue Technical Intern', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brent', 'last_name': 'Metz', 'permalink': 'brent-metz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Warren', 'permalink': 'tom-warren'}}, {'is_past': True, 'title': 'Researcher & Programmer', 'person': {'first_name': 'Boaz', 'last_name': 'Binnun', 'permalink': 'boaz-binnun'}}, {'is_past': True, 'title': 'Global Program Manager, Business Partner Process Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Program Director / Program Manager, IBM Academy of Technology', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Mergers and Acquisitions', 'person': {'first_name': 'Seth', 'last_name': 'Sternberg', 'permalink': 'seth-sternberg'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Rasmus', 'last_name': 'Lerdorf', 'permalink': 'rasmus-lerdorf'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joe', 'last_name': 'Davy', 'permalink': 'joe-davy'}}, {'is_past': True, 'title': 'R&D Manager', 'person': {'first_name': 'Lior', 'last_name': 'Sion', 'permalink': 'lior-sion'}}, {'is_past': True, 'title': 'Privacy Strategist', 'person': {'first_name': 'John', 'last_name': 'Bliss', 'permalink': 'john-bliss'}}, {'is_past': True, 'title': 'Director Software Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Maples, Sr.', 'permalink': 'mike-maples-sr'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Jack', 'last_name': 'Chapin', 'permalink': 'jack-chapin'}}, {'is_past': True, 'title': 'Senior Advisory Systems Programmer', 'person': {'first_name': 'Fred', 'last_name': 'Kauber', 'permalink': 'fred-kauber'}}, {'is_past': True, 'title': 'Advisory Client Representative', 'person': {'first_name': 'Benjamin', 'last_name': 'Joe', 'permalink': 'benjamin-joe'}}, {'is_past': True, 'title': 'Principal Consultant', 'person': {'first_name': 'Barrett', 'last_name': 'Powell', 'permalink': 'barrett-powell'}}, {'is_past': True, 'title': 'Information Developer', 'person': {'first_name': 'Chris', 'last_name': 'Fohlin', 'permalink': 'chris-fohlin'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Basit', 'last_name': 'Mustafa', 'permalink': 'basit-mustafa'}}, {'is_past': True, 'title': 'Interaction Designer / Design Researcher', 'person': {'first_name': 'Chad', 'last_name': 'Thornton', 'permalink': 'chad-thornton'}}, {'is_past': True, 'title': 'Director, Security and Cloud Products', 'person': {'first_name': 'Michael', 'last_name': 'Weider', 'permalink': 'michael-weider'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Charlie', 'last_name': 'Wood', 'permalink': 'charlie-wood'}}, {'is_past': True, 'title': 'Advisory Client Representative', 'person': {'first_name': 'Brian', 'last_name': 'Snyder', 'permalink': 'brian-snyder'}}, {'is_past': True, 'title': 'Director, Wireless Services', 'person': {'first_name': 'Diana', 'last_name': 'Hage', 'permalink': 'diana-hage'}}, {'is_past': True, 'title': 'Enterprise Sales and AIX Business Development', 'person': {'first_name': 'Gamiel', 'last_name': 'Gran', 'permalink': 'gamiel-gran'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Reza', 'last_name': 'Jalili', 'permalink': 'reza-jalili'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Jim', 'last_name': 'McGovern', 'permalink': 'jim-mcgovern'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dwai', 'last_name': 'Banerjee', 'permalink': 'dwai-banerjee'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': \"Kanwaldeep 'KD Singh\", 'last_name': 'Arneja', 'permalink': 'kanwaldeep-kd-singh-arneja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Gibbs', 'permalink': 'kevin-gibbs'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Ariel', 'last_name': 'Cohen', 'permalink': 'ariel-cohen-2'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Steve', 'last_name': 'Drozdowski', 'permalink': 'steve-drozdowski'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Harishankaran', 'last_name': 'Karunanidhi', 'permalink': 'harishankaran-karunanidhi'}}, {'is_past': True, 'title': 'Project Mgr.', 'person': {'first_name': 'Winston', 'last_name': 'Mendoza', 'permalink': 'winston-mendoza'}}, {'is_past': True, 'title': 'Enterprise Software Sales', 'person': {'first_name': 'Elias', 'last_name': 'Guerra', 'permalink': 'elias-guerra'}}, {'is_past': True, 'title': 'Client Representative', 'person': {'first_name': 'Clifford', 'last_name': 'Holekamp', 'permalink': 'cliff-holekamp'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Vincent', 'last_name': 'Lee', 'permalink': 'vincent-lee'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Forest', 'last_name': 'Bond', 'permalink': 'forest-bond'}}, {'is_past': True, 'title': 'marketing roles', 'person': {'first_name': 'Angela', 'last_name': 'Strand', 'permalink': 'angela-strand'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Howard', 'last_name': 'Durdle', 'permalink': 'howard-durdle'}}, {'is_past': True, 'title': 'Technical Project Manager', 'person': {'first_name': 'Martin', 'last_name': 'Jennings', 'permalink': 'martin-jennings'}}, {'is_past': True, 'title': 'Channel Sales Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Voller', 'permalink': 'stephen-voller'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Shawn', 'last_name': 'R. Hughes', 'permalink': 'shawn-r-hughes'}}, {'is_past': True, 'title': 'Scalable POWERParallel Systems Consultant', 'person': {'first_name': 'Uday', 'last_name': 'chinta', 'permalink': 'uday-chinta'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Terry', 'last_name': 'Walby', 'permalink': 'terry-walby'}}, {'is_past': True, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Dr.', 'last_name': 'Orna Berry', 'permalink': 'dr-orna-berry'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Ali', 'last_name': 'Ahmed', 'permalink': 'ali-ahmed'}}, {'is_past': True, 'title': 'Client Services Partner, Communication Sector', 'person': {'first_name': 'Shahid', 'last_name': 'Khan', 'permalink': 'shahid-khan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Martin', 'last_name': 'Milani', 'permalink': 'martin-milani'}}, {'is_past': True, 'title': 'Attorney', 'person': {'first_name': 'Barbara', 'last_name': 'Walkowski', 'permalink': 'barbara-walkowashi'}}, {'is_past': True, 'title': 'Special Bids Pricer, IBM Federal', 'person': {'first_name': 'Joel', 'last_name': 'Pulliam', 'permalink': 'joel-pulliam'}}, {'is_past': True, 'title': 'Analyst / Intern', 'person': {'first_name': 'Stephen', 'last_name': 'Bernstein', 'permalink': 'stephen-bernstein'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Smith', 'permalink': 'jeff-smith'}}, {'is_past': True, 'title': 'advisor', 'person': {'first_name': 'Ronald', 'last_name': 'F.E. Weissman', 'permalink': 'ronald-f-e-weissman'}}, {'is_past': True, 'title': 'Director Phonemail and PBX Development', 'person': {'first_name': 'Tim', 'last_name': 'Kleffman', 'permalink': 'tim-kleffman'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'William', 'last_name': 'L. Hughes', 'permalink': 'william-l-hughes'}}, {'is_past': True, 'title': 'various legal positions', 'person': {'first_name': 'Amy', 'last_name': 'Fliegelman Olli', 'permalink': 'amy-fliegelman-olli'}}, {'is_past': True, 'title': 'Major role', 'person': {'first_name': 'Dennis', 'last_name': 'Roberson', 'permalink': 'dennis-roberson'}}, {'is_past': True, 'title': 'Principal Consultant', 'person': {'first_name': 'Clayton', 'last_name': 'Nicholas', 'permalink': 'clayton-nicholas'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'James', 'last_name': 'Gosling', 'permalink': 'james-gosling-2'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Eric', 'last_name': 'Schurr', 'permalink': 'eric-schurr'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Bo', 'last_name': 'Yang', 'permalink': 'bo-yang'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Peter', 'last_name': 'Chang', 'permalink': 'peter-chang'}}, {'is_past': True, 'title': 'Program Director, Security', 'person': {'first_name': 'Alex', 'last_name': 'Lazar', 'permalink': 'alex-lazar'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Mark', 'last_name': 'Hill', 'permalink': 'mark-hill'}}, {'is_past': True, 'title': 'Distinguished Engineer / Senior IT Architect', 'person': {'first_name': 'Luis', 'last_name': 'Ostdiek', 'permalink': 'luis-ostdiek'}}, {'is_past': True, 'title': 'Plant Manager', 'person': {'first_name': 'Karl', 'last_name': 'Steigele', 'permalink': 'karl-steigele'}}, {'is_past': True, 'title': 'Director, e-Commerce Solutions', 'person': {'first_name': 'Neil', 'last_name': 'Lustig', 'permalink': 'neil-lustig'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Keith', 'last_name': 'Barraclough', 'permalink': 'keith-barraclough'}}, {'is_past': True, 'title': 'Senior Programmer / Team Lead', 'person': {'first_name': 'Dav', 'last_name': 'Yaginuma', 'permalink': 'dav-yaginuma'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Patrick', 'last_name': 'Ervin', 'permalink': 'patrick-ervin'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Jeff', 'last_name': 'Feinstein', 'permalink': 'jeff-feinstein'}}, {'is_past': True, 'title': 'Senior Research Staff Member Manager', 'person': {'first_name': 'Cliff', 'last_name': 'Meltzer', 'permalink': 'cliff-meltzer'}}, {'is_past': True, 'title': 'Manager, Supply Chain Reengineering', 'person': {'first_name': 'RJ', 'last_name': 'Brideau', 'permalink': 'rj-brideau'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Mike', 'last_name': 'Aquino', 'permalink': 'mike-aquino'}}, {'is_past': True, 'title': 'Senior Manager, Business Operations & Development, IBM SWG', 'person': {'first_name': 'Claudia', 'last_name': 'Franco', 'permalink': 'claudia-franco'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Starr', 'permalink': 'brian-starr'}}, {'is_past': True, 'title': 'Development', 'person': {'first_name': 'George', 'last_name': 'Smyth ( Business Intelligence & Analytics )', 'permalink': 'george-smyth-business-intelligence-analytics'}}, {'is_past': True, 'title': 'IBM Alliance Manager', 'person': {'first_name': 'Michael', 'last_name': 'Warkentin ( Storage, Network & Compliance)', 'permalink': 'michael-warkentin-storage-network-compliance'}}, {'is_past': True, 'title': 'Product Requirements Manager', 'person': {'first_name': 'Vinnie', 'last_name': 'Smith ( Database Server & Tools )', 'permalink': 'vinnie-smith-database-server-tools'}}, {'is_past': True, 'title': 'Change Management Analyst', 'person': {'first_name': 'Jason', 'last_name': 'McGinnis', 'permalink': 'jason-mcginnis'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Jeff', 'last_name': 'Spalding', 'permalink': 'jeff-spalding'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Young', 'permalink': 'andrew-young-2'}}, {'is_past': True, 'title': 'Design Engineer', 'person': {'first_name': 'Coby', 'last_name': 'Sella', 'permalink': 'coby-sella'}}, {'is_past': True, 'title': 'sales management', 'person': {'first_name': 'Lewis', 'last_name': 'Miller', 'permalink': 'lewis-miller'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Constantine', 'last_name': 'Korovkin', 'permalink': 'constantine-korovkin'}}, {'is_past': True, 'title': 'Executive Consultant', 'person': {'first_name': 'Jim', 'last_name': 'Mains', 'permalink': 'jim-mains'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Robert', 'last_name': 'Lundy', 'permalink': 'robert-lundy'}}, {'is_past': True, 'title': 'Systems Architect', 'person': {'first_name': 'Christopher', 'last_name': 'Drumgoole', 'permalink': 'christopher-drumgoole'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'Liebhaber', 'permalink': 'richard-liebhaber'}}, {'is_past': True, 'title': 'Sales & Technical positions', 'person': {'first_name': 'Peter', 'last_name': 'Gyenes', 'permalink': 'peter-gyenes'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Donald', 'last_name': 'Southard', 'permalink': 'donald-southard'}}, {'is_past': True, 'title': 'Client Manager', 'person': {'first_name': 'James', 'last_name': 'Hidlay', 'permalink': 'james-hidlay'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Harper', 'permalink': 'mike-harper'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Kishore', 'last_name': 'Ganji', 'permalink': 'kishore-ganji'}}, {'is_past': True, 'title': 'Various Management Positions Product and Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Loughridge', 'permalink': 'mark-loughridge'}}, {'is_past': True, 'title': 'Director of Tools development and Partner Enablement', 'person': {'first_name': 'Anjul', 'last_name': 'Bhambhri', 'permalink': 'anjul-bhambhri'}}, {'is_past': True, 'title': 'Developer at Global Business Solution Center', 'person': {'first_name': 'Abhishek', 'last_name': 'Jain', 'permalink': 'abhishek-jain'}}, {'is_past': True, 'title': 'Senior Product Manager / Program Manager - Lotus SmartSuite', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Louay', 'last_name': 'Eldada', 'permalink': 'louay-eldada'}}, {'is_past': True, 'title': 'Senior Manager, Media/Digital media', 'person': {'first_name': 'George', 'last_name': 'Gutierrez', 'permalink': 'george-gutierrez'}}, {'is_past': True, 'title': 'Associate Developer', 'person': {'first_name': 'Danielle', 'last_name': 'Royston', 'permalink': 'danielle-royston'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Judy', 'last_name': 'Keeley', 'permalink': 'judy-keeley'}}, {'is_past': True, 'title': 'R&D', 'person': {'first_name': 'Steve', 'last_name': 'Fredrick', 'permalink': 'steve-fredrick'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'James', 'last_name': 'Satloff', 'permalink': 'james-satloff'}}, {'is_past': True, 'title': 'Red Hat On-Site Developer', 'person': {'first_name': 'Dustin', 'last_name': 'Kirkland', 'permalink': 'dustin-kirkland'}}, {'is_past': True, 'title': 'Sales/Marketing Representative', 'person': {'first_name': 'Lory', 'last_name': 'Pilchik', 'permalink': 'lory-pilchik'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'AA & Branch Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Hickey', 'permalink': 'kevin-hickey'}}, {'is_past': True, 'title': 'Applications Engineer', 'person': {'first_name': 'Alper', 'last_name': 'Celen', 'permalink': 'alper-celen'}}, {'is_past': True, 'title': 'Enterprise Mobile Solutions Architect', 'person': {'first_name': 'George', 'last_name': 'Papayiannis', 'permalink': 'george-papayiannis'}}, {'is_past': True, 'title': 'Y2K Expert', 'person': {'first_name': 'Greg', 'last_name': 'Caws', 'permalink': 'greg-caws'}}, {'is_past': True, 'title': 'GM Communications Sector', 'person': {'first_name': 'Khalil', 'last_name': 'E. Barsoum', 'permalink': 'khalil-e-barsoum'}}, {'is_past': True, 'title': 'Research Internship', 'person': {'first_name': 'Rusty', 'last_name': 'Irving', 'permalink': 'rusty-irving'}}, {'is_past': True, 'title': 'Knowledge Management consultant', 'person': {'first_name': 'Bjørn', 'last_name': 'Skou Eilertsen', 'permalink': 'bjrn-skou-eilertsen'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Mikel', 'last_name': 'Cármenes Cavia', 'permalink': 'mikel-carmenes-cavia'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dean', 'last_name': 'Schoen', 'permalink': 'dean-schoen'}}, {'is_past': True, 'title': 'Sales & Marketing Management - Asia Pacific', 'person': {'first_name': 'Dominic', 'last_name': 'Toledo', 'permalink': 'dominic-toledo'}}, {'is_past': True, 'title': 'Business Development & Market Development Executive', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': True, 'title': 'Operations & Engineering Roles', 'person': {'first_name': 'Jeffrey', 'last_name': 'E. Williams', 'permalink': 'jeffrey-e-williams'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Craig', 'last_name': 'Newmark', 'permalink': 'craig-newmark'}}, {'is_past': True, 'title': 'Consulting I/T Architect', 'person': {'first_name': 'Gregory', 'last_name': 'Brail', 'permalink': 'gregory-brail'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Cory', 'last_name': 'Lund', 'permalink': 'cory-lund'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Harlan', 'last_name': 'Milkove', 'permalink': 'harlan-milkove'}}, {'is_past': True, 'title': 'Account Marketing Representative, US Marketing and Services Group', 'person': {'first_name': 'Bill', 'last_name': 'Demas', 'permalink': 'bill-demas'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Saad', 'last_name': 'Khan', 'permalink': 'saad-khan'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Andrew', 'last_name': 'Dutton', 'permalink': 'andrew-dutton'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'George', 'last_name': 'Kadifa', 'permalink': 'george-kadifa'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Director Industry Solutions', 'person': {'first_name': 'Alex', 'last_name': 'Shootman', 'permalink': 'alex-shootman'}}, {'is_past': True, 'title': 'Industrial Engineer', 'person': {'first_name': 'Mitch', 'last_name': 'Kushinsky', 'permalink': 'mitch-kushinsky'}}, {'is_past': True, 'title': 'Sr. Technical Writer & Marketing Communications', 'person': {'first_name': 'Joyce', 'last_name': 'Fee', 'permalink': 'joyce-fee'}}, {'is_past': True, 'title': 'Global Technology Services Integration Sales Leader', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'Consultant and IT Architect', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'ILOG US Controller', 'person': {'first_name': 'Jean', 'last_name': 'Francois Hervy', 'permalink': 'jean-francois-hervy'}}, {'is_past': True, 'title': 'Faculty Visitor', 'person': {'first_name': 'Pankaj', 'last_name': 'Mehra', 'permalink': 'pankaj-mehra'}}, {'is_past': True, 'title': 'Americas Solutions Leader, Media & Entertainment Industry', 'person': {'first_name': 'Douglas', 'last_name': 'Korte', 'permalink': 'douglas-korte'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Wilkes', 'permalink': 'alex-wilkes'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Scott', 'last_name': 'Friend', 'permalink': 'scott-friend'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Bill', 'last_name': 'Crawley', 'permalink': 'bill-crawley'}}, {'is_past': True, 'title': 'Staff Counsel', 'person': {'first_name': 'Ellen', 'last_name': 'McDonald', 'permalink': 'ellen-mcdonald'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alicia', 'last_name': 'Navarro', 'permalink': 'alicia-navarro'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Joanne', 'last_name': 'Olsen', 'permalink': 'joanne-olsen'}}, {'is_past': True, 'title': 'Scientific & Technical Computing Specialist', 'person': {'first_name': 'Kurt', 'last_name': 'Stammberger', 'permalink': 'kurt-stammberger'}}, {'is_past': True, 'title': 'Sales Management', 'person': {'first_name': 'Jim', 'last_name': 'Ebzery', 'permalink': 'jim-ebzery'}}, {'is_past': True, 'title': 'Sales & Marketing Director', 'person': {'first_name': 'Garry', 'last_name': 'Veale', 'permalink': 'garry-veale'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Lisa', 'last_name': 'Purvis', 'permalink': 'lisa-purvis'}}, {'is_past': True, 'title': 'Freelance Software Developer', 'person': {'first_name': 'Matt', 'last_name': 'Deegler', 'permalink': 'matt-deegler'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Rohan', 'last_name': 'Shah', 'permalink': 'rohan-shah'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Richard', 'last_name': 'Fields', 'permalink': 'richard-fields'}}, {'is_past': True, 'title': 'Extreme Blue Intern', 'person': {'first_name': 'Leonard', 'last_name': 'Chung', 'permalink': 'leonard-chung'}}, {'is_past': True, 'title': 'Lead Sales and Product Marketing Roles', 'person': {'first_name': 'Cristina', 'last_name': 'Dolan', 'permalink': 'cristina-dolan'}}, {'is_past': True, 'title': 'Brand Manager, Tivoli Software', 'person': {'first_name': 'Juan Pablo', 'last_name': 'Bedoya', 'permalink': 'juan-pablo-bedoya'}}, {'is_past': True, 'title': 'Contracts & Negotiations Specialist', 'person': {'first_name': 'Scott', 'last_name': 'Alridge', 'permalink': 'scott-alridge'}}, {'is_past': True, 'title': 'Netezza Channel Sales Mgr, Mid-Atlantic Region', 'person': {'first_name': 'Mickey', 'last_name': 'James', 'permalink': 'mickey-james'}}, {'is_past': True, 'title': 'IT Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Leu', 'permalink': 'jason-leu'}}, {'is_past': True, 'title': 'Various Sales & Management Roles', 'person': {'first_name': 'Nicholas', 'last_name': 'A. Adamo', 'permalink': 'nicholas-a-adamo'}}, {'is_past': True, 'title': 'SAP IS-U Consultant', 'person': {'first_name': 'Sean', 'last_name': 'Antony', 'permalink': 'sean-antony'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Reza', 'last_name': 'Raji', 'permalink': 'reza-raji'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Patrick', 'last_name': 'Finn', 'permalink': 'patrick-finn'}}, {'is_past': True, 'title': 'financial planning and analysis', 'person': {'first_name': 'Keli', 'last_name': 'Forsman', 'permalink': 'keli-forsman'}}, {'is_past': True, 'title': 'Sales Positions', 'person': {'first_name': 'Susan', 'last_name': 'Chenoweth', 'permalink': 'susan-chenoweth'}}, {'is_past': True, 'title': 'Manager, Engineering', 'person': {'first_name': 'M.C.', 'last_name': 'Srivas', 'permalink': 'm-c-srivas'}}, {'is_past': True, 'title': 'Various Technical & Leadership Positions', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'Sales Management Positions', 'person': {'first_name': 'Woody', 'last_name': 'Sessoms', 'permalink': 'woody-sessoms'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Peter', 'last_name': 'Gassner', 'permalink': 'peter-gassner'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Dan', 'last_name': 'Goldsmith', 'permalink': 'dan-goldsmith'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Tao', 'permalink': 'simon-tao'}}, {'is_past': True, 'title': 'Manager, Network Consulting & integration unit', 'person': {'first_name': 'Daniel', 'last_name': 'Hua', 'permalink': 'daniel-hua'}}, {'is_past': True, 'title': 'Responsible for Logistics, Internship', 'person': {'first_name': 'David', 'last_name': 'Marimon', 'permalink': 'david-marimon'}}, {'is_past': True, 'title': 'Executive Marketing Positons', 'person': {'first_name': 'Lauren', 'last_name': 'Flaherty', 'permalink': 'lauren-flaherty'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'K.', 'last_name': 'Scott Morrison', 'permalink': 'k-scott-morrison'}}, {'is_past': True, 'title': 'Sales GM for IGS China,IBM', 'person': {'first_name': 'Jerry', 'last_name': 'Sung', 'permalink': 'jerry-sung'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Klett', 'permalink': 'michael-klett'}}, {'is_past': True, 'title': 'SAP production support', 'person': {'first_name': 'Ilya', 'last_name': 'Atrashkevich', 'permalink': 'ilya-atrashkevich'}}, {'is_past': True, 'title': 'Director, Messaging Solutions', 'person': {'first_name': 'Blair', 'last_name': 'Hankins', 'permalink': 'blair-hankins'}}, {'is_past': True, 'title': 'Graphics Lead', 'person': {'first_name': 'Long', 'last_name': 'Vo', 'permalink': 'long-vo'}}, {'is_past': True, 'title': 'North America Sales Leader, Business Solutions', 'person': {'first_name': 'Robert', 'last_name': 'Prigge', 'permalink': 'robert-prigge'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alan', 'last_name': 'Hyman', 'permalink': 'alan-hyman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Paul', 'last_name': 'Cheesbrough', 'permalink': 'paul-cheesbrough'}}, {'is_past': True, 'title': 'Internship (Pre-professional Programmer)', 'person': {'first_name': 'Brian', 'last_name': 'Jackson', 'permalink': 'brian-jackson'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'John', 'last_name': 'E. Rehfeld', 'permalink': 'john-e-rehfeld'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Graham', 'last_name': 'Sanderson', 'permalink': 'graham-sanderson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Kruger', 'permalink': 'alex-kruger'}}, {'is_past': True, 'title': 'Director of Brand Strategy and other Sr. Marketing Positions', 'person': {'first_name': 'Dana', 'last_name': 'Prestigiacomo', 'permalink': 'dana-prestigiacomo'}}, {'is_past': True, 'title': 'Sales & Marketing', 'person': {'first_name': 'Gary', 'last_name': 'Little', 'permalink': 'gary-little'}}, {'is_past': True, 'title': 'Client Representative', 'person': {'first_name': 'Carla', 'last_name': 'Derasmo', 'permalink': 'carla-derasmo'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'George', 'last_name': 'Durden', 'permalink': 'george-durden'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Connor', 'permalink': 'ian-connor'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Neal', 'last_name': 'East', 'permalink': 'neal-east'}}, {'is_past': True, 'title': 'Strategic Sales Group', 'person': {'first_name': 'Noah', 'last_name': 'Lewis', 'permalink': 'noah-lewis'}}, {'is_past': True, 'title': 'Intern in Webahead Development', 'person': {'first_name': 'Michael', 'last_name': 'Glukhovsky', 'permalink': 'michael-glukhovsky'}}, {'is_past': True, 'title': 'Software Sales Assistant', 'person': {'first_name': 'Timoor', 'last_name': 'Taufig', 'permalink': 'timoor-taufig'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Spike', 'last_name': 'Washburn', 'permalink': 'spike-washburn'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Novick', 'permalink': 'matt-novick'}}, {'is_past': True, 'title': 'Marketing Associate', 'person': {'first_name': 'Chris', 'last_name': 'Brahm', 'permalink': 'chris-brahm'}}, {'is_past': True, 'title': 'SAP Project Manager', 'person': {'first_name': 'Mati', 'last_name': 'Cohen', 'permalink': 'mati-cohen'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Phil', 'last_name': 'Bronner', 'permalink': 'phil-bronner'}}, {'is_past': True, 'title': 'Research Intern', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'B2B Software Sales', 'person': {'first_name': 'Duy', 'last_name': 'Huynh', 'permalink': 'duy-huynh'}}, {'is_past': True, 'title': 'Sales & Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Chandra', 'permalink': 'rob-chandra'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Philip', 'last_name': '\"Flip\" Gianos', 'permalink': 'philip-flip-gianos'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Jon', 'last_name': 'Seeber', 'permalink': 'jon-seeber'}}, {'is_past': True, 'title': 'Director Entity Analytics, Software Group', 'person': {'first_name': 'Charlie', 'last_name': 'Barbour', 'permalink': 'charlie-barbour'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Bipul', 'last_name': 'Sinha', 'permalink': 'bipul-sinha'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Todd', 'last_name': 'Untrecht', 'permalink': 'todd-untrecht'}}, {'is_past': True, 'title': 'sales and marketing positions.', 'person': {'first_name': 'Ray', 'last_name': 'Lane', 'permalink': 'ray-lane'}}, {'is_past': True, 'title': 'Global Software Dealmaker', 'person': {'first_name': 'Andy', 'last_name': 'Wild', 'permalink': 'andy-wild'}}, {'is_past': True, 'title': 'Marketing Rep', 'person': {'first_name': 'Bruce', 'last_name': 'Brandes', 'permalink': 'bruce-brandes'}}, {'is_past': True, 'title': 'engineering, marketing and executive positions', 'person': {'first_name': 'Nora', 'last_name': 'Denzel', 'permalink': 'nora-denzel'}}, {'is_past': True, 'title': 'Open Source Software Engineer', 'person': {'first_name': 'Sean', 'last_name': 'Johnson', 'permalink': 'sean-johnson-4'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vijay', 'last_name': 'Parmar', 'permalink': 'vijay-parmar'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Maria', 'last_name': 'M. Klawe', 'permalink': 'maria-m-klawe'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Steve', 'last_name': 'Brodie', 'permalink': 'steve-brodie-2'}}, {'is_past': True, 'title': 'Cloud Computing Business Development Executive', 'person': {'first_name': 'Prathap', 'last_name': 'Dendi', 'permalink': 'prathap-dendi'}}, {'is_past': True, 'title': 'stagist', 'person': {'first_name': 'Giuliano', 'last_name': 'Iacobelli', 'permalink': 'giuliano-iacobelli'}}, {'is_past': True, 'title': 'Extreme Blue Intern', 'person': {'first_name': 'Matt', 'last_name': 'Moore', 'permalink': 'matt-moore'}}, {'is_past': True, 'title': 'Systems Management Specialist', 'person': {'first_name': 'David', 'last_name': 'Kopf', 'permalink': 'david-kopf'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Dr.', 'last_name': 'Howard Lee', 'permalink': 'dr-howard-lee'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kunal', 'last_name': 'Sinha', 'permalink': 'kunal-sinha'}}, {'is_past': True, 'title': 'Storage Development Architect', 'person': {'first_name': 'Shachar', 'last_name': 'Fienblit', 'permalink': 'shachar-fienblit'}}, {'is_past': True, 'title': 'Research engineer', 'person': {'first_name': 'Doron', 'last_name': 'Tal', 'permalink': 'doron-tal'}}, {'is_past': True, 'title': 'Advisory Programmer', 'person': {'first_name': 'Oliver', 'last_name': 'Tavakoli', 'permalink': 'oliver-tavakoli'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'David', 'last_name': 'Nevas', 'permalink': 'david-nevas'}}, {'is_past': True, 'title': 'Product/Process Development Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Hilleboe', 'permalink': 'scott-hilleboe'}}, {'is_past': True, 'title': 'ThinkPad Product strategy and Solution Manager,,Product Manager', 'person': {'first_name': 'Masanari', 'last_name': 'Arai', 'permalink': 'masanari-arai'}}, {'is_past': True, 'title': 'Project Executive', 'person': {'first_name': 'Mike', 'last_name': 'Morrissey', 'permalink': 'mike-morrissey'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Paul', 'last_name': 'Mockapetris', 'permalink': 'paul-mockapetris'}}, {'is_past': True, 'title': 'Slaes Management', 'person': {'first_name': 'Stefan', 'last_name': 'Johansson', 'permalink': 'stefan-johansson-2'}}, {'is_past': True, 'title': 'Student Associate / Trainee', 'person': {'first_name': 'Christian', 'last_name': 'Stein', 'permalink': 'christian-steinborn'}}, {'is_past': True, 'title': 'Marketing, Sales and Business Development Roles', 'person': {'first_name': 'Ezequiel', 'last_name': 'Steiner', 'permalink': 'ezequiel-steiner'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Ashish', 'last_name': 'Gambhir', 'permalink': 'ashish-gambhir'}}, {'is_past': True, 'title': 'Executive Consultant', 'person': {'first_name': 'Heiner', 'last_name': 'Sussner', 'permalink': 'heiner-sussner'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'John', 'last_name': 'Bauschard', 'permalink': 'john-bauschard-2'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Michael', 'last_name': 'Donovan', 'permalink': 'michael-donovan'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Lenard', 'last_name': 'Marcus', 'permalink': 'lenard-marcus'}}, {'is_past': True, 'title': 'Senior Associate Programmer', 'person': {'first_name': 'Cliff', 'last_name': 'McBride', 'permalink': 'cliff-mcbride'}}, {'is_past': True, 'title': 'Agile/Lean Software Development Coach,,,, Senior Development Manager, DB2 UDB,,,Manager Software Development, DB2 Client APIs,,, Software Analyst', 'person': {'first_name': 'Robert', 'last_name': 'Begg', 'permalink': 'robert-begg'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Tim', 'last_name': 'Tyrrell', 'permalink': 'tim-tyrrell'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Quinn', 'last_name': 'Li', 'permalink': 'quinn-li'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Neil', 'last_name': 'Dexter', 'permalink': 'neil-dexter'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Loftesness', 'permalink': 'scott-loftesness'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Crotty', 'permalink': 'tom-crotty'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'Joe', 'last_name': 'Polastre', 'permalink': 'joe-polastre'}}, {'is_past': True, 'title': 'Strategy & Change Consultant', 'person': {'first_name': 'Gregory', 'last_name': 'Lok', 'permalink': 'gregory-lok'}}, {'is_past': True, 'title': 'Process Engineer', 'person': {'first_name': 'Matthew', 'last_name': 'L. Scullin', 'permalink': 'matthew-l-scullin'}}, {'is_past': True, 'title': 'Media Relations Manager', 'person': {'first_name': 'Cas', 'last_name': 'Purdy', 'permalink': 'cas-purdy'}}, {'is_past': True, 'title': 'Technical Sales, Cast Iron Systems - IBM Software Group', 'person': {'first_name': 'David', 'last_name': 'Brenegan', 'permalink': 'david-brenegan'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'OB', 'last_name': 'Bilous', 'permalink': 'ob-bilous'}}, {'is_past': True, 'title': 'Senior Knowledge Engineer', 'person': {'first_name': 'Maarten', 'last_name': 'Sierhuis', 'permalink': 'maarten-sierhuis'}}, {'is_past': True, 'title': 'Technical Director - South East Asia', 'person': {'first_name': 'Doug', 'last_name': 'Meadows', 'permalink': 'doug-meadows-2'}}, {'is_past': True, 'title': 'Executive & Corporate Management', 'person': {'first_name': 'Dave', 'last_name': 'Plumer', 'permalink': 'dave-plumer'}}, {'is_past': True, 'title': 'Branch Manager', 'person': {'first_name': 'Jay', 'last_name': 'Haladay', 'permalink': 'jay-haladay'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'Hing', 'last_name': 'Wong', 'permalink': 'hing-wong'}}, {'is_past': True, 'title': 'IT Management Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Zimmerman', 'permalink': 'andy-zimmerman'}}, {'is_past': True, 'title': 'Application Integrator', 'person': {'first_name': 'Vish', 'last_name': 'Baliga', 'permalink': 'vish-baliga'}}, {'is_past': True, 'title': 'Executive roles', 'person': {'first_name': 'Jeff', 'last_name': 'Robinson', 'permalink': 'jeff-robinson-4'}}, {'is_past': True, 'title': 'Sales & Marketing Position', 'person': {'first_name': 'Victor', 'last_name': 'Leventhal', 'permalink': 'victor-leventhal'}}, {'is_past': True, 'title': 'North American Sales Manager', 'person': {'first_name': 'Jon', 'last_name': 'Melamut', 'permalink': 'jon-melamut'}}, {'is_past': True, 'title': 'Sr. Engineering Mgr', 'person': {'first_name': 'Srinivas', 'last_name': 'Kandikattu', 'permalink': 'srinivas-kandikattu'}}, {'is_past': True, 'title': 'Director, Computer Science Research', 'person': {'first_name': 'Daniel', 'last_name': 'Shiffman', 'permalink': 'daniel-shiffman'}}, {'is_past': True, 'title': 'Director, Implementation Services', 'person': {'first_name': 'Gordon', 'last_name': 'Campbell', 'permalink': 'gordon-campbell'}}, {'is_past': True, 'title': 'executive positions', 'person': {'first_name': 'Andre', 'last_name': 'M. Boisvert', 'permalink': 'andre-m-boisvert'}}, {'is_past': True, 'title': 'Manager, Senior Engineer', 'person': {'first_name': 'Joe', 'last_name': 'Lamoreux', 'permalink': 'joe-lamoreux'}}, {'is_past': True, 'title': 'Sales and Marketing Positions', 'person': {'first_name': 'Dave', 'last_name': 'Ward', 'permalink': 'dave-ward'}}, {'is_past': True, 'title': 'Progarm Director, Business Development', 'person': {'first_name': 'Emeka', 'last_name': 'Obianwu', 'permalink': 'emeka-obianwu'}}, {'is_past': True, 'title': 'Online Marketing Specialist & Web Projects Leader', 'person': {'first_name': 'Denis', 'last_name': 'Mazzei', 'permalink': 'denis-mazzei'}}, {'is_past': True, 'title': 'Financial Consultant', 'person': {'first_name': 'Ryan', 'last_name': 'Healy', 'permalink': 'ryan-healy'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Micallef', 'permalink': 'andy-micallef'}}, {'is_past': True, 'title': 'Director NAS Solutions OEM Sales and Marketing', 'person': {'first_name': 'Amanda', 'last_name': 'Jobbins', 'permalink': 'amanda-jobbins'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Vikram', 'last_name': 'Kumar', 'permalink': 'vikram-kumar'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Bowles', 'permalink': 'david-bowles'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Eyal', 'last_name': 'Keren', 'permalink': 'eyal-keren'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Chris', 'last_name': 'Benne', 'permalink': 'chris-benne'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Eva', 'last_name': 'Elmstedt', 'permalink': 'eva-elmstedt'}}, {'is_past': True, 'title': 'Senior Director, Support Services', 'person': {'first_name': 'Eric', 'last_name': 'Goffney', 'permalink': 'eric-goffney'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Don', 'last_name': 'Taylor', 'permalink': 'don-taylor-2'}}, {'is_past': True, 'title': 'Executive Team Member', 'person': {'first_name': 'Luis', 'last_name': 'Arzubi', 'permalink': 'luis-arzubi'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'John', 'last_name': 'Urban', 'permalink': 'john-urban'}}, {'is_past': True, 'title': 'Consultant & Integrated Communications Business Manager', 'person': {'first_name': 'Darren', 'last_name': 'Chalmers Steven', 'permalink': 'darren-chalmers-steven'}}, {'is_past': True, 'title': 'Senior Market Analyst', 'person': {'first_name': 'Jack', 'last_name': 'Reader', 'permalink': 'jack-reader'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Venkat', 'last_name': 'Rajan', 'permalink': 'venkat-rajan'}}, {'is_past': True, 'title': 'Distinguished Engineer / Manager, ibm.com Web Experience', 'person': {'first_name': 'Mike', 'last_name': 'Moran', 'permalink': 'mike-moran'}}, {'is_past': True, 'title': 'Software Programmer', 'person': {'first_name': 'Chris', 'last_name': 'Christensen', 'permalink': 'chris-christensen'}}, {'is_past': True, 'title': 'Technical Sales Rep - EMEA', 'person': {'first_name': 'Adolfo', 'last_name': 'Hernandez', 'permalink': 'adolfo-hernandez'}}, {'is_past': True, 'title': 'Program Manager, SOA Strategy', 'person': {'first_name': 'Nick', 'last_name': 'Burling', 'permalink': 'nick-burling'}}, {'is_past': True, 'title': 'Program Director, Manager, & Market Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Greene', 'permalink': 'kevin-greene'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Dr.', 'last_name': 'Robert P. Lee', 'permalink': 'dr-robert-p-lee'}}, {'is_past': True, 'title': 'GM, Industry Solutions', 'person': {'first_name': 'John', 'last_name': 'Schwarz', 'permalink': 'john-schwarz'}}, {'is_past': True, 'title': 'IT Architect', 'person': {'first_name': 'Sidney', 'last_name': 'Wen', 'permalink': 'sidney-wen'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tom', 'last_name': 'Hughes', 'permalink': 'tom-hughes-3'}}, {'is_past': True, 'title': 'Director of Product Management and Development', 'person': {'first_name': 'Neeraj', 'last_name': 'Sen', 'permalink': 'neeraj-sen'}}, {'is_past': True, 'title': 'Associate Engineer', 'person': {'first_name': 'Don', 'last_name': 'Parsons', 'permalink': 'don-parsons'}}, {'is_past': True, 'title': 'Worldwide Program Director InfoSphere Data Warehousing', 'person': {'first_name': 'Steve', 'last_name': 'Millard', 'permalink': 'steve-millard'}}, {'is_past': True, 'title': 'Senior Manager, Data Warehouse Solutions Evangelism', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Product and Programs Marketing Manager', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Frederick', 'last_name': 'Dotzler', 'permalink': 'frederick-dotzler'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Josef', 'last_name': 'Schodl', 'permalink': 'josef-schodl-2'}}, {'is_past': True, 'title': 'Director of Customer Service', 'person': {'first_name': 'Tim', 'last_name': 'Allaway', 'permalink': 'tim-allaway'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Smith', 'permalink': 'dan-smith-4'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Scruggs', 'permalink': 'david-scruggs'}}, {'is_past': True, 'title': 'Product / Operations - Management Roles', 'person': {'first_name': 'Noah', 'last_name': 'Doyle', 'permalink': 'noah-doyle'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Shaun', 'last_name': 'Seo', 'permalink': 'shaun-seo'}}, {'is_past': True, 'title': 'verseeing global operations', 'person': {'first_name': 'John', 'last_name': 'W. Baumstark', 'permalink': 'john-w-baumstark'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Peter', 'last_name': 'DiLaura', 'permalink': 'peter-dilaura'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Jack', 'last_name': 'Harding', 'permalink': 'jack-harding'}}, {'is_past': True, 'title': 'Summer Co-op', 'person': {'first_name': 'Jon', 'last_name': 'Thornton', 'permalink': 'jon-thornton'}}, {'is_past': True, 'title': 'Executive Sales and Marketing Positions', 'person': {'first_name': 'Gary', 'last_name': 'Napotnik', 'permalink': 'gary-napotnik'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Rami', 'last_name': 'Kalish', 'permalink': 'rami-kalish'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Frank', 'last_name': 'D’Angelo', 'permalink': 'frank-dangelo'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Arun', 'last_name': 'Kulkarni', 'permalink': 'arun-kulkarni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ralph', 'last_name': 'Rivera', 'permalink': 'ralph-rivera'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Greg', 'last_name': 'Lock', 'permalink': 'greg-lock'}}, {'is_past': True, 'title': 'Executives', 'person': {'first_name': 'Amal', 'last_name': 'M. Johnson', 'permalink': 'amal-m-johnson'}}, {'is_past': True, 'title': 'Consumer and Reseller Marketing Programs', 'person': {'first_name': 'Jim', 'last_name': 'Mediate', 'permalink': 'jim-mediate'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Nikolay', 'last_name': 'Rashev', 'permalink': 'nikolay-rashev'}}, {'is_past': True, 'title': 'Test & Mechanical Engineer', 'person': {'first_name': 'Pavan', 'last_name': 'Gupta', 'permalink': 'pavan-gupta'}}, {'is_past': True, 'title': 'Sr. roles, Call center solutions', 'person': {'first_name': 'Owen', 'last_name': 'Bridle', 'permalink': 'owen-bridle'}}, {'is_past': True, 'title': 'Sales Leadership', 'person': {'first_name': 'William', 'last_name': 'Kerrigan', 'permalink': 'william-kerrigan'}}, {'is_past': True, 'title': 'Online Platforms & Applications', 'person': {'first_name': 'Vaidy', 'last_name': 'Panchapakesan', 'permalink': 'vaidy-panchapakesan'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Stela', 'last_name': 'Cassidy', 'permalink': 'stela-cassidy'}}, {'is_past': True, 'title': 'Executive, IBM corporate & World Trade marketing', 'person': {'first_name': 'Zack', 'last_name': 'Margolis', 'permalink': 'zack-margolis'}}, {'is_past': True, 'title': 'Sales & Management positions', 'person': {'first_name': 'Jeff', 'last_name': 'Ray', 'permalink': 'jeff-ray'}}, {'is_past': True, 'title': 'Intern Web Programmer', 'person': {'first_name': 'Muhammad', 'last_name': 'Arrabi', 'permalink': 'muhammad-arrabi'}}, {'is_past': True, 'title': 'Director / Manager - IBM’s Global x86-based server Div.', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Fletcher', 'last_name': 'Payne', 'permalink': 'fletcher-payne'}}, {'is_past': True, 'title': 'Executive Roles', 'person': {'first_name': 'Nigel', 'last_name': 'Broda', 'permalink': 'nigel-broda'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Asad', 'last_name': 'Parvaiz', 'permalink': 'asad-parvaiz'}}, {'is_past': True, 'title': 'Employee (Israel)', 'person': {'first_name': 'Yoram', 'last_name': 'Alroy', 'permalink': 'yoram-alroy'}}, {'is_past': True, 'title': 'Leadership positions in Finance', 'person': {'first_name': 'Rajesh', 'last_name': 'Garg', 'permalink': 'rajesh-garg'}}, {'is_past': True, 'title': 'Leadership roles', 'person': {'first_name': 'Gavin', 'last_name': 'Cato', 'permalink': 'gavin-cato'}}, {'is_past': True, 'title': 'Head, Strategy & Market Development - IBM’s Intel Server business', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': True, 'title': 'Sales & Technical positions', 'person': {'first_name': 'Francois', 'last_name': 'Rene Letourneur', 'permalink': 'francois-rene-letourneur'}}, {'is_past': True, 'title': 'Transition Executive / ITIL SME', 'person': {'first_name': 'Craig', 'last_name': 'Nelson', 'permalink': 'craig-nelson'}}, {'is_past': True, 'title': 'Director level positions', 'person': {'first_name': 'Rick', 'last_name': 'Sizemore', 'permalink': 'rick-sizemore'}}, {'is_past': True, 'title': 'General Manager (Lotus Messaging and Collaboration Division) ,, Held Key Executive Positions', 'person': {'first_name': 'Steve', 'last_name': 'Lewis', 'permalink': 'steve-lewis'}}, {'is_past': True, 'title': 'Senior Marketing positions', 'person': {'first_name': 'Sharon', 'last_name': 'Thompson', 'permalink': 'sharon-thompson'}}, {'is_past': True, 'title': 'Sr. Product Marketing, Product Management & Business Development positions', 'person': {'first_name': 'Santosh', 'last_name': 'Chitakki', 'permalink': 'santosh-chitakki'}}, {'is_past': True, 'title': 'Senior Vice President and Group Executive', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Head, SLA Management Portfolio', 'person': {'first_name': 'Neil', 'last_name': 'Coleman', 'permalink': 'neil-coleman'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Paul', 'last_name': 'Von Autenried', 'permalink': 'paul-von-autenried'}}, {'is_past': True, 'title': 'Semiconductor R&D Center', 'person': {'first_name': 'Raj', 'last_name': 'Jammy', 'permalink': 'raj-jammy'}}, {'is_past': True, 'title': 'Head, Distributed Network & Systems Business', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Head, Strategy for Transaction Processing', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Information Technology', 'person': {'first_name': 'Ahmad', 'last_name': 'Kasmieh', 'permalink': 'ahmad-kasmieh'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ray', 'last_name': 'Ozzie', 'permalink': 'ray-ozzie'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Rua', 'permalink': 'dan-rua'}}, {'is_past': True, 'title': '2nd Line Engineer', 'person': {'first_name': 'Taz', 'last_name': 'Ryder', 'permalink': 'taz-ryder'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abe', 'last_name': 'Thomas', 'permalink': 'abe-thomas'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Eliezer', 'last_name': 'Israel', 'permalink': 'eliezer-israel'}}, {'is_past': True, 'title': 'Applied Research, Marketing', 'person': {'first_name': 'Kris', 'last_name': 'Tuttle', 'permalink': 'kris-tuttle'}}, {'is_past': True, 'title': 'Intellectual Property / R&D', 'person': {'first_name': 'Damion', 'last_name': 'Hankejh', 'permalink': 'damion-hankejh'}}, {'is_past': True, 'title': 'Principal - eBusiness & Org. Change Consulting', 'person': {'first_name': 'R R', 'last_name': 'Dasgupta', 'permalink': 'r-r-dasgupta'}}, {'is_past': True, 'title': 'Technical Editor', 'person': {'first_name': 'Kristi', 'last_name': 'Hadix', 'permalink': 'kristi-hadix'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': 'Ravi', 'last_name': 'Srivatsav', 'permalink': 'ravi-srivatsav-krishnamurthy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sami', 'last_name': 'Shalabi', 'permalink': 'sami-shalabi'}}, {'is_past': True, 'title': 'SEO LEAD ANZ', 'person': {'first_name': 'Ullash', 'last_name': 'Tiwari', 'permalink': 'ullash-tiwari'}}, {'is_past': True, 'title': 'Software consultant', 'person': {'first_name': 'Veeru', 'last_name': 'Mehta', 'permalink': 'veeru-mehta'}}, {'is_past': True, 'title': 'Global Program Manager, IBM Smart Market', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Global Program Manager & Project Executive, Technical Support Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Program Manager, Global Web Architecture & Process Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Sr. Linux System Administrator', 'person': {'first_name': 'Joshua', 'last_name': 'Miller', 'permalink': 'joshua-miller'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Damien', 'last_name': 'Katz', 'permalink': 'damien-katz'}}, {'is_past': True, 'title': 'Sr. Manager, Consumer Systems & SW Research', 'person': {'first_name': 'Mitch', 'last_name': 'Stein', 'permalink': 'mitch-stein'}}, {'is_past': True, 'title': 'User Interface Designer, IBM.com (PCD)', 'person': {'first_name': 'Rob', 'last_name': 'Abbott', 'permalink': 'rob-abbott'}}, {'is_past': True, 'title': 'E-Commerce Consultant', 'person': {'first_name': 'Malcolm', 'last_name': 'Ong', 'permalink': 'malcolm-ong'}}, {'is_past': True, 'title': 'R&D', 'person': {'first_name': 'Kurt', 'last_name': 'Brown', 'permalink': 'kurt-brown'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Tina', 'last_name': 'Gleisner', 'permalink': 'tina-gleisner'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Benjamin', 'last_name': 'Joe', 'permalink': 'benjamin-joe'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Elliot', 'last_name': 'Theis', 'permalink': 'elliot-theis'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Jatinder', 'last_name': 'Singh', 'permalink': 'jatinder-singh-2'}}, {'is_past': True, 'title': 'Worldwide Sales Operations Leader', 'person': {'first_name': 'Basit', 'last_name': 'Mustafa', 'permalink': 'basit-mustafa'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Monica', 'last_name': 'Enand', 'permalink': 'monica-enand'}}, {'is_past': True, 'title': 'WW Alliances Technical Leader, WebSphere Cast Iron', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': True, 'title': 'Software Sales Engineer', 'person': {'first_name': 'Yohannes', 'last_name': 'Tadesse', 'permalink': 'yohannes-tadesse'}}, {'is_past': True, 'title': 'Delivery Solution Manager', 'person': {'first_name': 'David', 'last_name': 'Pessis', 'permalink': 'david-pessis'}}, {'is_past': True, 'title': 'Marketing Account Representative', 'person': {'first_name': 'Peter', 'last_name': 'Kronowitt', 'permalink': 'peter-kronowitt'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Diana', 'last_name': 'Hage', 'permalink': 'diana-hage'}}, {'is_past': True, 'title': 'various sales roles', 'person': {'first_name': 'Stephan', 'last_name': 'Timme', 'permalink': 'stephan-timme'}}, {'is_past': True, 'title': 'Customer Analytics, Customer Experience & SBU Strategy/Planning', 'person': {'first_name': 'Christian', 'last_name': 'Gammill', 'permalink': 'christian-gammill'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Chuks', 'last_name': 'Onwuneme', 'permalink': 'chuks-onwuneme'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sophia', 'last_name': 'Perl', 'permalink': 'sophia-perl'}}, {'is_past': True, 'title': 'Principal', 'person': {'first_name': 'Mahesh', 'last_name': 'Paolini-Subramanya', 'permalink': 'mahesh-paolini-subramanya'}}, {'is_past': True, 'title': 'Technical Intern', 'person': {'first_name': 'Jeremy', 'last_name': 'Espenshade', 'permalink': 'jeremy-espenshade'}}, {'is_past': True, 'title': 'Senior Software Development Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Schreiber', 'permalink': 'amit-schreiber'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Adam', 'last_name': 'Talcott', 'permalink': 'adam-talcott'}}, {'is_past': True, 'title': 'Program Director of Software Development, Cloud Computing', 'person': {'first_name': 'Satwik', 'last_name': 'Seshasai', 'permalink': 'satwik-seshasai'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Winston', 'last_name': 'Mendoza', 'permalink': 'winston-mendoza'}}, {'is_past': True, 'title': 'Research Staf Member', 'person': {'first_name': 'Sergio', 'last_name': 'Fogel', 'permalink': 'sergio-fogel-2'}}, {'is_past': True, 'title': 'Managing Director, Ogilvy', 'person': {'first_name': 'George', 'last_name': 'Gutierrez', 'permalink': 'george-gutierrez'}}, {'is_past': True, 'title': 'OSI Compliance', 'person': {'first_name': 'Eugene', 'last_name': 'Ciurana', 'permalink': 'eugene-ciurana'}}, {'is_past': True, 'title': 'Advanced Technology Business Development Professional', 'person': {'first_name': 'Ime', 'last_name': 'Archibong', 'permalink': 'ime-archibong'}}, {'is_past': True, 'title': 'Project Engineer/Business Manager', 'person': {'first_name': 'Arnoud', 'last_name': 'van Houten', 'permalink': 'arnoud-van-houten'}}, {'is_past': True, 'title': 'Technical Project Manager', 'person': {'first_name': 'Chris', 'last_name': 'Bell', 'permalink': 'chris-bell'}}, {'is_past': True, 'title': 'Senior Product Marketing and Strategy', 'person': {'first_name': 'Tom', 'last_name': 'Vogel', 'permalink': 'tom-vogel'}}, {'is_past': True, 'title': 'Usability Specialist', 'person': {'first_name': 'Brbara', 'last_name': 'Ballard', 'permalink': 'brbara-ballard'}}, {'is_past': True, 'title': 'sales representative and progressed t', 'person': {'first_name': 'Jim', 'last_name': 'Hackbarth', 'permalink': 'jim-hackbarth'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Rudolf', 'last_name': 'Kergassner', 'permalink': 'rudolf-kergassner'}}, {'is_past': True, 'title': 'Global Commodity Manager', 'person': {'first_name': 'Ohad', 'last_name': 'Shvueli', 'permalink': 'ohad-shvueli'}}, {'is_past': True, 'title': 'Part Of R&D Group', 'person': {'first_name': 'Haris', 'last_name': 'Basit', 'permalink': 'haris-basit'}}, {'is_past': True, 'title': 'Branch Manager', 'person': {'first_name': 'Bart', 'last_name': 'Tichelman', 'permalink': 'bart-tichelman'}}, {'is_past': True, 'title': 'Senior Consultant, IBM GBS', 'person': {'first_name': 'Matt', 'last_name': 'Marra', 'permalink': 'matt-marra'}}, {'is_past': True, 'title': 'Global Development Manager for Educational Systems', 'person': {'first_name': 'Deb', 'last_name': 'Miller', 'permalink': 'deb-miller-2'}}, {'is_past': True, 'title': 'Program Director, Security Division', 'person': {'first_name': 'STEVEN', 'last_name': 'BALL', 'permalink': 'steven-ball'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Glenn', 'last_name': 'Osborne', 'permalink': 'glenn-osborne'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': 'Alexey', 'last_name': 'Timanovskiy', 'permalink': 'alexey-timanovskiy'}}, {'is_past': True, 'title': 'VP Partner Marketing', 'person': {'first_name': 'Ian', 'last_name': 'Bonner', 'permalink': 'ian-bonner'}}, {'is_past': True, 'title': 'Software Engineer, WebSphere Business Integration', 'person': {'first_name': 'Lily', 'last_name': 'Chiu', 'permalink': 'lily-chiu'}}, {'is_past': True, 'title': 'front-office analytics systems', 'person': {'first_name': 'Joel', 'last_name': 'Kaplan', 'permalink': 'joel-kaplan'}}, {'is_past': True, 'title': 'enior management positions', 'person': {'first_name': 'Rich', 'last_name': 'Beckert', 'permalink': 'rich-beckert'}}, {'is_past': True, 'title': 'Partner and Sales Leader', 'person': {'first_name': 'Shelly', 'last_name': 'Singh', 'permalink': 'shelly-singh'}}, {'is_past': True, 'title': 'Emerging Technology Analyst', 'person': {'first_name': 'Zaw', 'last_name': 'Thet', 'permalink': 'zaw-thet'}}, {'is_past': True, 'title': 'Operations', 'person': {'first_name': 'Michael', 'last_name': 'Levinthal', 'permalink': 'michael-levinthal'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Pace', 'permalink': 'stephen-pace'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Jim', 'last_name': 'Byrnes', 'permalink': 'jim-byrnes'}}, {'is_past': True, 'title': 'Staff Development Engineer', 'person': {'first_name': 'Tom', 'last_name': 'Rosenmayer', 'permalink': 'tom-rosenmayer'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Carlson', 'permalink': 'brent-carlson'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Hitesh', 'last_name': 'shah', 'permalink': 'hitesh-shah-2'}}, {'is_past': True, 'title': 'Systems Programmer', 'person': {'first_name': 'Alan', 'last_name': 'Matthews', 'permalink': 'alan-matthews'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ori', 'last_name': 'Schwartz', 'permalink': 'ori-schwartz'}}, {'is_past': True, 'title': 'Director, Web Intergration Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Purcell', 'permalink': 'mike-purcell'}}, {'is_past': True, 'title': 'Various Management positions', 'person': {'first_name': 'Umesh', 'last_name': 'Singh', 'permalink': 'umesh-singh'}}, {'is_past': True, 'title': 'Managing Consultant, Supply Chain Planning', 'person': {'first_name': 'Katin', 'last_name': 'Miller', 'permalink': 'katin-miller'}}, {'is_past': True, 'title': 'Manager/Director - IBM Raleigh', 'person': {'first_name': 'Shashank', 'last_name': 'Samant', 'permalink': 'shashank-samant'}}, {'is_past': True, 'title': 'various management and technical Position', 'person': {'first_name': 'Duane', 'last_name': 'Zitzner', 'permalink': 'duane-zitzner'}}, {'is_past': True, 'title': 'Senior Sales, Marketing and Professional Services Leadership Positions', 'person': {'first_name': 'Paul', 'last_name': 'Black', 'permalink': 'paul-black'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Jason', 'last_name': 'Morio', 'permalink': 'jason-morio'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Rich', 'last_name': 'Fennessy', 'permalink': 'rich-fennessy'}}, {'is_past': True, 'title': 'Programmer, sales', 'person': {'first_name': 'Sam', 'last_name': 'Elias', 'permalink': 'sam-elias'}}, {'is_past': True, 'title': 'Director, U2 Data Servers & Tools', 'person': {'first_name': 'Susie', 'last_name': 'Siegesmund', 'permalink': 'susie-siegesmund'}}, {'is_past': True, 'title': 'Senior Manager, Information Management', 'person': {'first_name': 'Simon', 'last_name': 'Caddick ( Platform Leadership )', 'permalink': 'simon-caddick-platform-leadership'}}, {'is_past': True, 'title': 'Business Partner/Operations Manager', 'person': {'first_name': 'Elizabeth', 'last_name': 'Thomas ( Storage, Network & Compliance)', 'permalink': 'elizabeth-thomas-john-procter-storage-network-compliance'}}, {'is_past': True, 'title': 'Consulting Sales Specialist', 'person': {'first_name': 'John', 'last_name': 'Mathieu ( Database Server & Tools )', 'permalink': 'john-mathieu-database-server-tools'}}, {'is_past': True, 'title': 'Research Fellow', 'person': {'first_name': 'Vitaly', 'last_name': 'Sirota', 'permalink': 'vitaly-sirota'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Charles', 'last_name': 'Wuischpard', 'permalink': 'charles-wuischpard'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Rob', 'last_name': 'Anderson', 'permalink': 'rob-anderson-3'}}, {'is_past': True, 'title': 'Senior Scientist', 'person': {'first_name': 'Dr.', 'last_name': 'Kathleen Dahlgren', 'permalink': 'dr-kathleen-dahlgren'}}, {'is_past': True, 'title': 'Software Developer, Tokyo Research Lab', 'person': {'first_name': 'Ethel', 'last_name': 'Chen', 'permalink': 'ethel-chen'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'William', 'last_name': 'A. Geers', 'permalink': 'william-a-geers'}}, {'is_past': True, 'title': 'Large Account Manager', 'person': {'first_name': 'Peter', 'last_name': 'Shields', 'permalink': 'peter-shields'}}, {'is_past': True, 'title': 'Director of Finance, Planning and Administration', 'person': {'first_name': 'Bob', 'last_name': 'Romano', 'permalink': 'bob-romano'}}, {'is_past': True, 'title': 'Marketing Representaion', 'person': {'first_name': 'Jim', 'last_name': 'Donnelly', 'permalink': 'jim-donnelly'}}, {'is_past': True, 'title': 'Business Unit Executive, MDM', 'person': {'first_name': 'Josh', 'last_name': 'Rogers', 'permalink': 'josh-rogers'}}, {'is_past': True, 'title': 'Director, Cloud Business Development', 'person': {'first_name': 'Tim', 'last_name': 'Thatcher', 'permalink': 'tim-thatcher'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Steve', 'last_name': 'Lesem', 'permalink': 'steve-lesem'}}, {'is_past': True, 'title': 'Account Executive, New Business', 'person': {'first_name': 'Greg', 'last_name': 'Katai', 'permalink': 'greg-katai'}}, {'is_past': True, 'title': 'Executive Assistant & Business Development Manager, Regional Sales Manager - Personal Computing Division, Various IBM positions - Boca Raton, FL, Boston, MA, Lansing, MI', 'person': {'first_name': 'John', 'last_name': 'Veit', 'permalink': 'john-veit'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Ed', 'last_name': 'Lacobucci', 'permalink': 'ed-lacobucci'}}, {'is_past': True, 'title': 'Advisory Marketing Rep', 'person': {'first_name': 'Paul', 'last_name': 'Guerin', 'permalink': 'paul-guerin'}}, {'is_past': True, 'title': 'General Manager, Global Distribution Sector', 'person': {'first_name': 'Dan', 'last_name': 'Fortin', 'permalink': 'dan-fortin'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Ed', 'last_name': 'Brill', 'permalink': 'ed-brill'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Igor', 'last_name': 'Jablokov', 'permalink': 'igor-jablokov'}}, {'is_past': True, 'title': 'Business Unit Executive, Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Diamond', 'permalink': 'michael-diamond'}}, {'is_past': True, 'title': 'Client Manager - Healthcare & Public Sector', 'person': {'first_name': 'Martin', 'last_name': 'Kelly', 'permalink': 'martin-kelly'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Vikas', 'last_name': 'Reddy', 'permalink': 'vikas-reddy'}}, {'is_past': True, 'title': 'Variuos Role', 'person': {'first_name': 'Petro', 'last_name': 'Estakhri', 'permalink': 'petro-estakhri'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Jerry', 'last_name': 'Neumann', 'permalink': 'jerry-neumann'}}, {'is_past': True, 'title': 'Branch Manager/General Manager', 'person': {'first_name': 'Brian', 'last_name': 'Brogan', 'permalink': 'brian-brogan'}}, {'is_past': True, 'title': 'Architect, Software Engineer, Master Inventor', 'person': {'first_name': 'Dustin', 'last_name': 'Kirkland', 'permalink': 'dustin-kirkland'}}, {'is_past': True, 'title': 'Global General Manager of Financial Services', 'person': {'first_name': 'John', 'last_name': 'M. Connolly', 'permalink': 'john-m-connolly'}}, {'is_past': True, 'title': 'Senior Manager, IBM SmartCloud for Social Business', 'person': {'first_name': 'Satwik', 'last_name': 'Seshasai', 'permalink': 'satwik-seshasai'}}, {'is_past': True, 'title': 'Acquisition Transition Executive', 'person': {'first_name': 'Scott', 'last_name': 'Cosby', 'permalink': 'scott-cosby'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Sumit', 'last_name': 'Gupta', 'permalink': 'sumit-gupta-3'}}, {'is_past': True, 'title': 'WW IBM Clarity & Cognos FSR Sales Leader', 'person': {'first_name': 'Don', 'last_name': 'Mal', 'permalink': 'don-mal'}}, {'is_past': True, 'title': 'Global Alliances - Business Analytics, Clarity', 'person': {'first_name': 'Steve', 'last_name': \"O'Neil\", 'permalink': 'steve-oneil'}}, {'is_past': True, 'title': 'Various Technical & Management Positions', 'person': {'first_name': 'Adya', 'last_name': 'S. Tripathi', 'permalink': 'adya-s-tripathi'}}, {'is_past': True, 'title': 'various engineering, product management and marketing positions', 'person': {'first_name': 'Paul', 'last_name': 'Santinelli', 'permalink': 'paul-santinelli'}}, {'is_past': True, 'title': 'software engineer', 'person': {'first_name': 'Jesse', 'last_name': 'Schell', 'permalink': 'jesse-schell'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Jay', 'last_name': 'Tansing', 'permalink': 'jay-tansing'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Aiman', 'last_name': 'Ezzat', 'permalink': 'aiman-ezzat'}}, {'is_past': True, 'title': 'Software Client Executive', 'person': {'first_name': 'Bill', 'last_name': 'Almbanis', 'permalink': 'bill-almbanis'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jim', 'last_name': 'Frankola', 'permalink': 'jim-frankola'}}, {'is_past': True, 'title': 'Director, North American Fulfillment', 'person': {'first_name': 'Tim', 'last_name': 'Cook', 'permalink': 'tim-cook'}}, {'is_past': True, 'title': 'Various technical roles in colloaborative software group', 'person': {'first_name': 'Simon', 'last_name': 'Hayhurst', 'permalink': 'simon-hayhurst'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Rob', 'last_name': 'Enns', 'permalink': 'rob-enns'}}, {'is_past': True, 'title': 'Software Engineer Co-op', 'person': {'first_name': 'Luu', 'last_name': 'Tran', 'permalink': 'luu-tran'}}, {'is_past': True, 'title': 'Senior Executive Positions', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Web Application Developer', 'person': {'first_name': 'Matt', 'last_name': 'Goyer', 'permalink': 'matt-goyer'}}, {'is_past': True, 'title': 'Sales Executive', 'person': {'first_name': 'Jim', 'last_name': 'Watson', 'permalink': 'jim-watson'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Greg', 'last_name': 'Duffy', 'permalink': 'greg-duffy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Cheryln', 'last_name': 'Chin', 'permalink': 'cheryln-chin'}}, {'is_past': True, 'title': 'Sr. Engineer/Research Manager', 'person': {'first_name': 'Peng', 'last_name': 'Lu', 'permalink': 'peng-lu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Law', 'permalink': 'david-law'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Caroline', 'last_name': 'Tsay', 'permalink': 'caroline-tsay'}}, {'is_past': True, 'title': 'Code Monkey', 'person': {'first_name': 'John', 'last_name': 'Shedletsky', 'permalink': 'john-shedletsky'}}, {'is_past': True, 'title': 'Client Solutions Executive', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'Partner, IT Optimization', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'e-Business Architect', 'person': {'first_name': 'David', 'last_name': 'Weiss', 'permalink': 'david-weiss'}}, {'is_past': True, 'title': 'Channel Sales Leader for IBM XIV - West IMT', 'person': {'first_name': 'Sudheesh', 'last_name': 'Nair', 'permalink': 'sudheesh-nair'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Andy', 'last_name': 'Wright', 'permalink': 'andy-wright-3'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Ben', 'last_name': 'Slutter', 'permalink': 'ben-slutter'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Qi', 'last_name': 'Lu', 'permalink': 'qi-lu'}}, {'is_past': True, 'title': 'Resident', 'person': {'first_name': 'Neil', 'last_name': 'Sheth', 'permalink': 'neil-sheth'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Maurice', 'last_name': 'Heiblum', 'permalink': 'maurice-heiblum'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Babbitt', 'permalink': 'david-babbitt'}}, {'is_past': True, 'title': 'Senior Software Engineer,,, Advisory Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Feinberg', 'permalink': 'jonathan-feinberg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Takao', 'last_name': 'Endo', 'permalink': 'takao-endo'}}, {'is_past': True, 'title': 'Consultant, Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Sikora', 'permalink': 'scott-sikora'}}, {'is_past': True, 'title': 'Marketing Rep', 'person': {'first_name': 'Andy', 'last_name': 'Kofoi', 'permalink': 'andy-kofoi'}}, {'is_past': True, 'title': 'Midmarket Sales Executive - Great Lakes Region', 'person': {'first_name': 'Bob', 'last_name': 'McCarthy', 'permalink': 'bob-mccarthy'}}, {'is_past': True, 'title': 'Pre-professional Programmer', 'person': {'first_name': 'Ryan', 'last_name': 'Sit', 'permalink': 'ryan-sit'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Andrew', 'last_name': 'Hamilton', 'permalink': 'andrew-hamilton-4'}}, {'is_past': True, 'title': 'sales and alliances', 'person': {'first_name': 'Peter', 'last_name': 'Mahoney', 'permalink': 'peter-mahoney'}}, {'is_past': True, 'title': 'Consultant, Strategy & Change', 'person': {'first_name': 'Rob', 'last_name': 'Schwartz', 'permalink': 'rob-schwartz'}}, {'is_past': True, 'title': 'Consultant Relations Marketing Programs Leader, Finance Industry DM Strategist', 'person': {'first_name': 'Lynn', 'last_name': 'Tornabene', 'permalink': 'lynn-tornabene'}}, {'is_past': True, 'title': 'Application Software Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Sarbiewski', 'permalink': 'mark-sarbiewski'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'George', 'last_name': 'Haidar', 'permalink': 'george-haidar'}}, {'is_past': True, 'title': 'Software Engineer / Programmer', 'person': {'first_name': 'David', 'last_name': 'Spitz', 'permalink': 'david-spitz'}}, {'is_past': True, 'title': 'UNKNOWN', 'person': {'first_name': 'John', 'last_name': 'T. Chambers', 'permalink': 'john-t-chambers'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Stephen', 'last_name': 'Schuckenbrock', 'permalink': 'stephen-schuckenbrock'}}, {'is_past': True, 'title': 'Director, Discovery Products', 'person': {'first_name': 'Amit', 'last_name': 'Somani', 'permalink': 'amit-somani'}}, {'is_past': True, 'title': 'User Experience Program Manager', 'person': {'first_name': 'Brandon', 'last_name': 'Waselnuk', 'permalink': 'brandon-waselnuk'}}, {'is_past': True, 'title': 'Managing Director Iberia', 'person': {'first_name': 'Jordi', 'last_name': 'Botifoll', 'permalink': 'jordi-botifoll'}}, {'is_past': True, 'title': 'Director, Partner Relationship Management', 'person': {'first_name': 'Will', 'last_name': 'Pryor', 'permalink': 'will-pryor'}}, {'is_past': True, 'title': 'Management Positions', 'person': {'first_name': 'Yasufumi', 'last_name': 'Hirai', 'permalink': 'yasufumi-hirai'}}, {'is_past': True, 'title': 'Systems Analyst', 'person': {'first_name': 'Brian', 'last_name': 'Fioca', 'permalink': 'brian-fioca'}}, {'is_past': True, 'title': 'Internal Executive and Field Communications Lead/Site Communications Lead', 'person': {'first_name': 'Arun', 'last_name': 'Krishnan', 'permalink': 'arun-krishnan'}}, {'is_past': True, 'title': 'Account Marketing Representative', 'person': {'first_name': 'Patrick', 'last_name': 'Morley', 'permalink': 'patrick-morley'}}, {'is_past': True, 'title': 'HR Account Manager', 'person': {'first_name': 'Nick', 'last_name': 'Camelio', 'permalink': 'nick-camelio'}}, {'is_past': True, 'title': 'Senior leadership & Management Roles', 'person': {'first_name': 'Jaime', 'last_name': 'Valles', 'permalink': 'jaime-valles'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Jennifer', 'last_name': 'Goldsmith', 'permalink': 'jennifer-goldsmith'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kevin', 'last_name': 'Johnson', 'permalink': 'kevin-johnson'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Todd', 'last_name': 'Rulon-Miller', 'permalink': 'todd-rulon-miller'}}, {'is_past': True, 'title': 'Senior Technical Staff Member', 'person': {'first_name': 'Rick', 'last_name': 'Cole', 'permalink': 'rick-cole'}}, {'is_past': True, 'title': 'Western Region Sales Leader - Enterprise Marketing Management', 'person': {'first_name': 'Jason', 'last_name': 'Han', 'permalink': 'jason-han'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Mick', 'last_name': 'Hollison', 'permalink': 'mick-hollison'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Scott', 'last_name': 'Sorensen', 'permalink': 'scott-sorensen'}}, {'is_past': True, 'title': 'Business Analytics', 'person': {'first_name': 'Lara', 'last_name': 'Shackelford', 'permalink': 'lara-shackelford'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Bruno', 'last_name': 'Santos', 'permalink': 'bruno-santos-2'}}, {'is_past': True, 'title': 'General Manager Global Banking & Financial Markets, Global Lead Partner, Banking and Financial Markets, Business Consulting Services, Global Leader Financial Services Strategy & Change Practice', 'person': {'first_name': 'Shanker', 'last_name': 'Ramamurthy', 'permalink': 'shanker-ramamurthy'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Gary', 'last_name': 'Schofield', 'permalink': 'gary-schofield'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Robert', 'last_name': 'Youngjohns', 'permalink': 'robert-youngjohns'}}, {'is_past': True, 'title': 'GM, BPO & CRM Services Division ,, Variety of executive/mgmt positions', 'person': {'first_name': 'Karen', 'last_name': 'Riley', 'permalink': 'karen-riley'}}, {'is_past': True, 'title': 'Corporate Development - Mergers & Acquisitions Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Artz', 'permalink': 'andy-artz'}}, {'is_past': True, 'title': 'global professional services', 'person': {'first_name': 'Gordon', 'last_name': 'Adams', 'permalink': 'gordon-adams'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Halsall', 'permalink': 'andy-halsall'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Olivier', 'last_name': 'Modica', 'permalink': 'olivier-modica'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Aymeric', 'last_name': 'Puech', 'permalink': 'aymeric-puech'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Christopher', 'last_name': 'Schaepe', 'permalink': 'christopher-schaepe'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Anne', 'last_name': 'Bonaparte', 'permalink': 'anne-bonaparte'}}, {'is_past': True, 'title': 'Project Accountant', 'person': {'first_name': 'Derek', 'last_name': 'Stewart', 'permalink': 'derek-stewart'}}, {'is_past': True, 'title': 'Senior Technical Architect', 'person': {'first_name': 'Gordon', 'last_name': 'Simpson', 'permalink': 'gordon-simpson'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'Stephen', 'last_name': 'R. Smoot', 'permalink': 'stephen-r-smoot'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'David', 'last_name': 'Ting', 'permalink': 'david-ting'}}, {'is_past': True, 'title': 'Application Development, Marketing and Sales', 'person': {'first_name': 'Jason', 'last_name': 'Abodeely', 'permalink': 'jason-abodeely'}}, {'is_past': True, 'title': 'VLSI semiconductor engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Kau', 'permalink': 'andrew-kau'}}, {'is_past': True, 'title': 'MBA Intern', 'person': {'first_name': 'Joseph', 'last_name': 'Holland', 'permalink': 'joseph-holland'}}, {'is_past': True, 'title': 'Developer Intern', 'person': {'first_name': 'Eytan', 'last_name': 'Seidman', 'permalink': 'eytan-seidman'}}, {'is_past': True, 'title': 'IT Strategy', 'person': {'first_name': 'Anthony', 'last_name': 'Austin', 'permalink': 'anthony-austin'}}, {'is_past': True, 'title': 'Greater China General Manager', 'person': {'first_name': 'Anderson', 'last_name': 'Wong', 'permalink': 'anderson-wong'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Don', 'last_name': 'Rainey', 'permalink': 'don-rainey'}}, {'is_past': True, 'title': 'Project Management / Systems Integration', 'person': {'first_name': 'Tom', 'last_name': 'Hartzell', 'permalink': 'tom-hartzell'}}, {'is_past': True, 'title': 'variety of executive positions', 'person': {'first_name': 'Timothy', 'last_name': 'Brown', 'permalink': 'timothy-brown'}}, {'is_past': True, 'title': 'Technical Specialist', 'person': {'first_name': 'Dave', 'last_name': 'Micalizzi', 'permalink': 'dave-micalizzi'}}, {'is_past': True, 'title': 'Lean Manufacturing Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Axe', 'permalink': 'brian-axe-2'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Gray', 'last_name': 'Hall', 'permalink': 'gray-hall'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'James', 'last_name': 'Elste', 'permalink': 'james-elste'}}, {'is_past': True, 'title': 'Member of the Technical Staff', 'person': {'first_name': 'Francis', 'last_name': 'deSouza', 'permalink': 'francis-desouza'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Gaurav', 'last_name': 'Sharma', 'permalink': 'gaurav-sharma-10'}}, {'is_past': True, 'title': 'Sr. Engineer (C)', 'person': {'first_name': 'Chandra', 'last_name': 'Pandey', 'permalink': 'chandra-pandey'}}, {'is_past': True, 'title': 'Lead Developer', 'person': {'first_name': 'Amir', 'last_name': 'Alon', 'permalink': 'amir-alon'}}, {'is_past': True, 'title': 'Client Rep', 'person': {'first_name': 'Ken', 'last_name': 'Cho', 'permalink': 'ken-cho'}}, {'is_past': True, 'title': 'Business Unit Executive, Applications on Demand', 'person': {'first_name': 'Scott', 'last_name': 'Weber', 'permalink': 'scott-weber'}}, {'is_past': True, 'title': 'Senior Management Consultant', 'person': {'first_name': 'Terry', 'last_name': 'Lynn', 'permalink': 'terry-lynn'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Jeff', 'last_name': 'Stacey', 'permalink': 'jeff-stacey'}}, {'is_past': True, 'title': 'Regional Industry Sales Representative', 'person': {'first_name': 'Bob', 'last_name': 'Heard', 'permalink': 'bob-heard'}}, {'is_past': True, 'title': 'Member Technical Staff', 'person': {'first_name': 'Gautam', 'last_name': 'Bhargava', 'permalink': 'gautam-bhargava'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Christian', 'last_name': 'Nall', 'permalink': 'christian-nall'}}, {'is_past': True, 'title': 'Senior Manager Systems Management Strategy', 'person': {'first_name': 'Leo', 'last_name': 'J. Cole', 'permalink': 'leo-j-cole'}}, {'is_past': True, 'title': 'Strategy & Communications, Consultant, Healthcare & LifeSciences', 'person': {'first_name': 'Missy', 'last_name': 'Krasner', 'permalink': 'missy-krasner'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'John', 'last_name': 'A. Swainson', 'permalink': 'john-a-swainson'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Lindsay', 'last_name': 'Mindler', 'permalink': 'lindsay-mindler'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Dennis', 'last_name': 'Kyle', 'permalink': 'dennis-kyle'}}, {'is_past': True, 'title': 'Dealer Advisory Council', 'person': {'first_name': 'Dennis', 'last_name': 'Johnson', 'permalink': 'dennis-johnson'}}, {'is_past': True, 'title': 'sales executive', 'person': {'first_name': 'Aaron', 'last_name': 'Mankovski', 'permalink': 'aaron-mankovski'}}, {'is_past': True, 'title': 'General Manager, Pervasive Computing,,, GM, RS/6000 Division,,, Dir. Yasu M&D', 'person': {'first_name': 'Mark', 'last_name': 'F. Bregman', 'permalink': 'mark-f-bregman-2'}}, {'is_past': True, 'title': 'Sr Technical Writer', 'person': {'first_name': 'Dave', 'last_name': 'Roberts', 'permalink': 'dave-roberts'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Gaurav', 'last_name': 'Kachhawa', 'permalink': 'gaurav-kachhawa'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Joshua', 'last_name': 'Levine', 'permalink': 'joshua-levine'}}, {'is_past': True, 'title': 'PM', 'person': {'first_name': 'Naoshi', 'last_name': 'Suzuki', 'permalink': 'naoshi-suzuki'}}, {'is_past': True, 'title': 'IBM Co-op Program', 'person': {'first_name': 'Daniel', 'last_name': 'Blasingame', 'permalink': 'daniel-blasingame'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Eric', 'last_name': 'Esterlis', 'permalink': 'eric-esterlis'}}, {'is_past': True, 'title': 'Worldwide Marketing Manager', 'person': {'first_name': 'W.', 'last_name': 'Cecyl Hobbs', 'permalink': 'w-cecyl-hobbs'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Zempel', 'permalink': 'jonathan-zempel'}}, {'is_past': True, 'title': 'Advisory Software engineer', 'person': {'first_name': 'John', 'last_name': 'Dickey', 'permalink': 'john-dickey'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Partha', 'last_name': 'Bhattacharya', 'permalink': 'partha-bhattacharya'}}, {'is_past': True, 'title': 'Collegiate Representative', 'person': {'first_name': 'Brian', 'last_name': 'Greenberg', 'permalink': 'brian-j-greenberg'}}, {'is_past': True, 'title': 'Consultant - Strategy & Change', 'person': {'first_name': 'Gabriel', 'last_name': 'Matuschka', 'permalink': 'gabriel-matuschka'}}, {'is_past': True, 'title': 'Marketing Director, IBM Microelectronics', 'person': {'first_name': 'Dave', 'last_name': 'McLean', 'permalink': 'dave-mclean'}}, {'is_past': True, 'title': 'System Analyst', 'person': {'first_name': 'Wolfgang', 'last_name': 'Kandek', 'permalink': 'wolfgang-kandek'}}, {'is_past': True, 'title': 'Territory Systems Engineer', 'person': {'first_name': 'Michel', 'last_name': 'Hepp', 'permalink': 'michel-hepp'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'Blair', 'last_name': 'Taylor', 'permalink': 'blair-taylor'}}, {'is_past': True, 'title': 'Director, Product Strategy', 'person': {'first_name': 'Bob', 'last_name': 'Zurek', 'permalink': 'bob-zurek'}}, {'is_past': True, 'title': 'Marketing and Research & Developmen', 'person': {'first_name': 'Andre', 'last_name': 'Boisvert', 'permalink': 'andre-boisvert'}}, {'is_past': True, 'title': 'Sr Managing Consultant', 'person': {'first_name': 'Brian', 'last_name': 'Brackeen', 'permalink': 'brian-brackeen'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Dunn', 'permalink': 'eric-dunn-2'}}, {'is_past': True, 'title': 'Executive Position', 'person': {'first_name': 'Chris', 'last_name': 'Huff', 'permalink': 'chris-huff'}}, {'is_past': True, 'title': 'Marketing Executive', 'person': {'first_name': 'Mick', 'last_name': 'Liubinskas', 'permalink': 'mick-liubinskas'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Rob', 'last_name': 'Meadows', 'permalink': 'rob-meadows'}}, {'is_past': True, 'title': 'IBM Collegiate Representative', 'person': {'first_name': 'Randy', 'last_name': 'Schmitz', 'permalink': 'randy-schmitz'}}, {'is_past': True, 'title': 'Vice President, Demand Generation', 'person': {'first_name': 'Scott', 'last_name': 'Frank', 'permalink': 'scott-frank'}}, {'is_past': True, 'title': 'Finance', 'person': {'first_name': 'Matt', 'last_name': 'Zakrzewski', 'permalink': 'matt-zakrzewski'}}, {'is_past': True, 'title': 'Director, Alliances', 'person': {'first_name': 'Peter', 'last_name': 'Lalonde', 'permalink': 'peter-lalonde'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kurt', 'last_name': 'Williams', 'permalink': 'kurt-williams-2'}}, {'is_past': True, 'title': 'Executive Relationship Manager', 'person': {'first_name': 'Pete', 'last_name': 'Wassell', 'permalink': 'pete-wassell'}}, {'is_past': True, 'title': 'Object Oriented Programming Department', 'person': {'first_name': 'Ben', 'last_name': 'Whitaker', 'permalink': 'ben-whitaker'}}, {'is_past': True, 'title': 'Sr.Management Role', 'person': {'first_name': 'Amir', 'last_name': 'Mobini', 'permalink': 'amir-mobini'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Tom', 'last_name': 'Scott', 'permalink': 'tom-scott'}}, {'is_past': True, 'title': 'Marketing Manager/Representative', 'person': {'first_name': 'Luis', 'last_name': 'B. Curet', 'permalink': 'luis-b-curet'}}, {'is_past': True, 'title': 'System Analyst', 'person': {'first_name': 'Benoit', 'last_name': 'Scheen', 'permalink': 'benot-scheen'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Reid', 'last_name': 'Hutchins', 'permalink': 'reid-hutchins'}}, {'is_past': True, 'title': 'xSeries Server/Storage Specialist', 'person': {'first_name': 'Sam', 'last_name': 'Herren', 'permalink': 'sam-herren'}}, {'is_past': True, 'title': 'Software Development Manager', 'person': {'first_name': 'Robbie', 'last_name': 'Williamson', 'permalink': 'robbie-willamson'}}, {'is_past': True, 'title': 'IBM Systems Software Specialist', 'person': {'first_name': 'David', 'last_name': 'B. Jackson', 'permalink': 'david-b-jackson'}}, {'is_past': True, 'title': 'Regional Industry Marketing Manager', 'person': {'first_name': 'Art', 'last_name': 'Roldan', 'permalink': 'art-roldan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Rathore', 'permalink': 'amit-rathore'}}, {'is_past': True, 'title': 'Managing Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': True, 'title': 'Senior Executive Positions', 'person': {'first_name': 'Andy', 'last_name': 'Rappaport', 'permalink': 'andy-rappaport'}}, {'is_past': True, 'title': 'Manager, Marketing Planning', 'person': {'first_name': 'Jay', 'last_name': 'Gardner', 'permalink': 'jay-gardner-2'}}, {'is_past': True, 'title': 'Group Manager, Collaborative Services', 'person': {'first_name': 'Jim', 'last_name': 'Lidestri', 'permalink': 'jim-lidestri'}}, {'is_past': True, 'title': 'Marketing Specialist', 'person': {'first_name': 'Ed', 'last_name': 'Barrientos', 'permalink': 'ed-barrientos'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Quynh', 'last_name': 'Pham', 'permalink': 'quynh-pham'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'Rich', 'last_name': 'Warwick', 'permalink': 'rich-warwick'}}, {'is_past': True, 'title': 'Systems Engineer, Marketing Represenative, Corporate Development executive', 'person': {'first_name': 'Michael', 'last_name': 'Balmuth', 'permalink': 'michael-balmuth'}}, {'is_past': True, 'title': 'Sr. Associate System Engineer', 'person': {'first_name': 'Sachin', 'last_name': 'Soni', 'permalink': 'sachin-soni'}}, {'is_past': True, 'title': 'Technical Lead, Hardware & Software Engineering', 'person': {'first_name': 'Rahul', 'last_name': 'Bawa', 'permalink': 'rahul-bawa'}}, {'is_past': True, 'title': 'Competitive Intelligence Unit', 'person': {'first_name': 'Lee', 'last_name': 'Chuen Ting', 'permalink': 'lee-chuen-ting'}}, {'is_past': True, 'title': 'Business Executive', 'person': {'first_name': 'Mads', 'last_name': 'Jensen', 'permalink': 'mads-jensen'}}, {'is_past': True, 'title': 'Extreme Blue Summer Associate', 'person': {'first_name': 'B.', 'last_name': 'Christopher Kim', 'permalink': 'b-christopher-kim'}}, {'is_past': True, 'title': 'Senior Researcher', 'person': {'first_name': 'Paul', 'last_name': 'May', 'permalink': 'paul-may-4'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Andy', 'last_name': 'Norman', 'permalink': 'andy-norman'}}, {'is_past': True, 'title': 'Master Inventor, Sr. Mgr. Targeted Internet Solutions', 'person': {'first_name': 'whurley', 'last_name': '(william hurley)', 'permalink': 'whurley-william-hurley'}}, {'is_past': True, 'title': 'Busines Unit Executive', 'person': {'first_name': 'Glen', 'last_name': 'Schrank', 'permalink': 'glen-schrank'}}, {'is_past': True, 'title': 'Director of marketing', 'person': {'first_name': 'Brain', 'last_name': 'Anderson', 'permalink': 'brain-anderson'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Pradeep', 'last_name': 'Chaudhry', 'permalink': 'pradeep-chaudhry'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Robert', 'last_name': 'M. Howe', 'permalink': 'robert-m-howe-iii'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Seth', 'last_name': 'Tropper', 'permalink': 'seth-tropper'}}, {'is_past': True, 'title': 'Snr. Finance & Strategy Roles', 'person': {'first_name': 'Stephen', 'last_name': 'Henkenmeier', 'permalink': 'stephen-henkenmeier'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Vic', 'last_name': 'Nyman', 'permalink': 'vic-nyman'}}, {'is_past': True, 'title': 'Engineering and Managerial Positions', 'person': {'first_name': 'Mary', 'last_name': 'Boose', 'permalink': 'mary-boose'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Shellye', 'last_name': 'Archambeau', 'permalink': 'shellye-archambeau'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Stefan', 'last_name': 'Lai', 'permalink': 'stefan-lai'}}, {'is_past': True, 'title': 'Business Unit Manager OEM; Business Unit Manager CIM (Computer Integrated Manufacturing) Zurich Switzerland Vienna Austria', 'person': {'first_name': 'Ulf', 'last_name': 'Claesson', 'permalink': 'ulf-claesson'}}, {'is_past': True, 'title': 'Contract Consultant, DB/2 Database Division', 'person': {'first_name': 'Larry', 'last_name': 'Philps', 'permalink': 'larry-philps'}}, {'is_past': True, 'title': 'Communications Specialist', 'person': {'first_name': 'Judith', 'last_name': 'Gan', 'permalink': 'judith-gan'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'Bassam', 'last_name': 'Salem', 'permalink': 'bassam-salem'}}, {'is_past': True, 'title': 'Managing Consultant', 'person': {'first_name': 'Sean', 'last_name': 'Fleming', 'permalink': 'sean-fleming'}}, {'is_past': True, 'title': 'Advisory Sales Leader', 'person': {'first_name': 'Steve', 'last_name': 'Millard', 'permalink': 'steve-millard'}}, {'is_past': True, 'title': 'Senior Manager, Information Management Software Support & Development, Latin America', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Jimmy', 'last_name': 'Fitzgerald', 'permalink': 'jimmy-fitzgerald'}}, {'is_past': True, 'title': 'Global Marketing and Business Development', 'person': {'first_name': 'Anna', 'last_name': 'Convery', 'permalink': 'anna-convery'}}, {'is_past': True, 'title': 'Software Account Manager', 'person': {'first_name': 'Armando', 'last_name': 'Gonzalez', 'permalink': 'armando-gonzalez-2'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Jenn', 'last_name': 'Markey', 'permalink': 'jenn-markey'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Melissa', 'last_name': 'Davis', 'permalink': 'melissa-davis-2'}}, {'is_past': True, 'title': 'GM and Various', 'person': {'first_name': 'Rudy', 'last_name': 'Wedenoja', 'permalink': 'rudy-wedenoja'}}, {'is_past': True, 'title': 'Senior Legal Counsel', 'person': {'first_name': 'Alexander', 'last_name': 'Grinberg', 'permalink': 'alex-grinberg'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Ken', 'last_name': 'Mackay', 'permalink': 'ken-mackay'}}, {'is_past': True, 'title': 'Specialty in the Semiconductor and Communication Industry', 'person': {'first_name': 'David', 'last_name': 'Chang', 'permalink': 'david-chang-6'}}, {'is_past': True, 'title': 'Technical Writer', 'person': {'first_name': 'Robin', 'last_name': 'Caputo', 'permalink': 'robin-caputo'}}, {'is_past': True, 'title': 'Financial Advisor', 'person': {'first_name': 'Scott', 'last_name': 'Gorton', 'permalink': 'scott-gorton'}}, {'is_past': True, 'title': 'Sales / Account Management', 'person': {'first_name': 'Ed', 'last_name': 'Dougherty', 'permalink': 'ed-dougherty'}}, {'is_past': True, 'title': 'Executive positions', 'person': {'first_name': 'Randy', 'last_name': 'Holl', 'permalink': 'randy-holl'}}, {'is_past': True, 'title': 'Operations & Sales', 'person': {'first_name': 'Vete', 'last_name': 'Clements', 'permalink': 'vete-clements'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Shrikant', 'last_name': 'Parikh', 'permalink': 'shrikant-parikh'}}, {'is_past': True, 'title': 'Professional Software', 'person': {'first_name': 'Ken', 'last_name': 'Steele', 'permalink': 'ken-steele'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Promod', 'last_name': 'Narang', 'permalink': 'promod-narang'}}, {'is_past': True, 'title': 'Leader of the Strategic Sourcing Center', 'person': {'first_name': 'Elmer', 'last_name': 'Letts', 'permalink': 'elmer-letts'}}, {'is_past': True, 'title': 'Responsible positions (IBM Microelectronics)', 'person': {'first_name': 'William', 'last_name': 'Getchell', 'permalink': 'william-getchell'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kostadin', 'last_name': 'Jordanov', 'permalink': 'kostadin-jordanov'}}, {'is_past': True, 'title': 'Test & Mechanical Engineer', 'person': {'first_name': 'Pavan', 'last_name': 'Gupta', 'permalink': 'pavan-gupta'}}, {'is_past': True, 'title': 'Global Head, Product Management', 'person': {'first_name': 'Stephen', 'last_name': 'Lazenby', 'permalink': 'stephen-lazenby'}}, {'is_past': True, 'title': 'Sales, Marketing & Management roles', 'person': {'first_name': 'Chris', 'last_name': 'Rees', 'permalink': 'chris-rees'}}, {'is_past': True, 'title': 'Associate Partner, Global Business Services Div.', 'person': {'first_name': 'Joseph', 'last_name': 'Fylypowycz', 'permalink': 'joseph-fylypowycz'}}, {'is_past': True, 'title': 'Online Platforms & Applications', 'person': {'first_name': 'Vaidy', 'last_name': 'Panchapakesan', 'permalink': 'vaidy-panchapakesan'}}, {'is_past': True, 'title': 'Exe. positions in leading global consulting practices', 'person': {'first_name': 'Daniel', 'last_name': 'Rizer', 'permalink': 'daniel-rizer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'L. FitzGerald', 'permalink': 'richard-l-fitzgerald'}}, {'is_past': True, 'title': 'System Engineer', 'person': {'first_name': 'Pierre', 'last_name': 'Leblanc', 'permalink': 'pierre-leblanc'}}, {'is_past': True, 'title': 'General Manager, IBM System x', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': 'Exe. Positions - IBM Server Group, IBM Asia Pacific & IBM Midwest', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Fletcher', 'last_name': 'Payne', 'permalink': 'fletcher-payne'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andreas', 'last_name': 'Kwiatkowski', 'permalink': 'andreas-kwiatkowski'}}, {'is_past': True, 'title': 'Head, IBM Singapore Software Lab', 'person': {'first_name': 'Cheehan', 'last_name': 'Tee', 'permalink': 'cheehan-tee'}}, {'is_past': True, 'title': 'Software Division / GM, Marketing & Services - Asia Pacific / President - Asia Pacific Services Corporation / Director, Global Strategy', 'person': {'first_name': 'Lloyd', 'last_name': 'G. Waterhouse', 'permalink': 'lloyd-g-waterhouse'}}, {'is_past': True, 'title': 'Leadership positions in Finance', 'person': {'first_name': 'Rajesh', 'last_name': 'Garg', 'permalink': 'rajesh-garg'}}, {'is_past': True, 'title': 'Sr. Management positions', 'person': {'first_name': 'John', 'last_name': 'H. Kispert', 'permalink': 'john-h-kispert'}}, {'is_past': True, 'title': 'Head, Strategy & Market Development - IBM’s Intel Server business', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': True, 'title': 'Head, Global Client Sourcing Team', 'person': {'first_name': 'Bill', 'last_name': 'Huber', 'permalink': 'bill-huber'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Homan', 'last_name': 'Haghighi', 'permalink': 'homan-haghighi'}}, {'is_past': True, 'title': 'Director level positions', 'person': {'first_name': 'Rick', 'last_name': 'Sizemore', 'permalink': 'rick-sizemore'}}, {'is_past': True, 'title': 'General Manager (Lotus Messaging and Collaboration Division) ,, Held Key Executive Positions', 'person': {'first_name': 'Steve', 'last_name': 'Lewis', 'permalink': 'steve-lewis'}}, {'is_past': True, 'title': 'Head, Strategy & Business Execution', 'person': {'first_name': 'Martin', 'last_name': 'Neath', 'permalink': 'martin-neath'}}, {'is_past': True, 'title': 'Vice President of the Financial Analytics Business', 'person': {'first_name': 'Jennifer', 'last_name': 'Francis', 'permalink': 'jennifer-francis'}}, {'is_past': True, 'title': 'General Manager, North America; General Manager, Asia Pacific; General Manager, AS/400 Division; President, National Distribution Division', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Sales & Marketing positions', 'person': {'first_name': 'Bill', 'last_name': 'McHale', 'permalink': 'bill-mchale'}}, {'is_past': True, 'title': 'Internet Division', 'person': {'first_name': 'Ting', 'last_name': 'Wu', 'permalink': 'ting-wu'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Paul', 'last_name': 'Von Autenried', 'permalink': 'paul-von-autenried'}}, {'is_past': True, 'title': 'Manager, Thermal Processes and Surface Preparation Group', 'person': {'first_name': 'Raj', 'last_name': 'Jammy', 'permalink': 'raj-jammy'}}, {'is_past': True, 'title': 'Head, Strategy for Transaction Processing', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Head, Distributed Network & Systems Business', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}], 'competitions': [{'competitor': {'name': 'BEA Systems', 'permalink': 'bea-systems'}}, {'competitor': {'name': 'Dell', 'permalink': 'dell'}}, {'competitor': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Nuance Communications', 'permalink': 'nuance'}}, {'competitor': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}, {'competitor': {'name': 'Sun Microsystems', 'permalink': 'sun-microsystems'}}, {'competitor': {'name': 'Infoglide Software Corporation', 'permalink': 'infoglide-software-corporation'}}, {'competitor': {'name': 'Siperian', 'permalink': 'siperian'}}, {'competitor': {'name': 'UnboundID', 'permalink': 'unboundid'}}, {'competitor': {'name': 'Qontext', 'permalink': 'qontext'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'AIIM', 'permalink': 'aiim'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Techaisle ', 'permalink': 'techaisle'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Davies Murphy Group', 'permalink': 'davies-murphy-group'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Swimfish ', 'permalink': 'swimfish'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Synergy Transcription Services', 'permalink': 'synergy-transcription-services'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://www.enterprisedb.com/about/news_events/press_releases/03_25_08a.do', 'source_description': '', 'raised_amount': 16000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 25, 'company': {'name': 'EnterpriseDB', 'permalink': 'enterprisedb'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.monolithics.com/wb/pages/news/allnews.php', 'source_description': 'Sierra Monolithics', 'raised_amount': 14200000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 8, 'funded_day': 28, 'company': {'name': 'Sierra Monolithics', 'permalink': 'sierra-monolithics'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.transitive.com/news/press_full/153', 'source_description': 'IBM announces plans to acquire Transitive', 'acquired_year': 2008, 'acquired_month': 11, 'acquired_day': 18, 'company': {'name': 'Transitive', 'permalink': 'transitive'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2008/01/ibm_buys_novel.html', 'source_description': 'IBM Buys Novel Israeli Storage Firm XIV for $300M+', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 2, 'company': {'name': 'XIV', 'permalink': 'xiv'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'Telelogic', 'permalink': 'telelogic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Capital Report Index', 'acquired_year': 2009, 'acquired_month': 5, 'acquired_day': 5, 'company': {'name': 'Exeros', 'permalink': 'exeros'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23996.wss', 'source_description': 'IBM Acquires InfoDyne to Create World-Class Platform for Market Data Delivery', 'acquired_year': 2008, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'InfoDyne Corporation', 'permalink': 'infodyne-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Index Report', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Diligent Technologies', 'permalink': 'diligent-technologies'}}, {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.informationweek.com/news/software/database_apps/showArticle.jhtml?articleID=218700131', 'source_description': 'IBM To Acquire SPSS For $1.2 Billion', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'SPSS', 'permalink': 'spss'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bilal.ca/ibm-acquisition-of-outblaze/', 'source_description': 'IBM completes acquisition of Outblaze', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 16, 'company': {'name': 'Outblaze', 'permalink': 'outblaze'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.foxbusiness.com/story/markets/industries/technology/ibm-acquires-ounce-labs/', 'source_description': 'IBM Acquires Ounce Labs, Inc.', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Ounce Labs', 'permalink': 'ounce-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/212796/ibm-acquires-business-redpill-solutions-bolster-analytics-services', 'source_description': 'IBM Acquires Business of RedPill Solutions to Bolster Analytics Services', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'RedPill Solutions', 'permalink': 'redpill-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23967.wss', 'source_description': 'IBM Completes Acquisition of FilesX', 'acquired_year': 2008, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'FilesX', 'permalink': 'filesx'}}, {'price_amount': 225000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/30/confirmed-ibm-acquires-database-security-startup-guardium-for-undisclosed-amount/', 'source_description': 'Confirmed: IBM Acquires Database Security Startup Guardium For Undisclosed Amount', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Guardium', 'permalink': 'guardium'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/257250/ibm-acquire-lombardi', 'source_description': 'IBM to Acquire Lombardi', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Lombardi Software', 'permalink': 'lombardi-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2010/02/03/ibm-acquires-data-management-software-startup-initiate-systems/', 'source_description': 'IBM Acquires Data Management Software Company Initiate Systems', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 3, 'company': {'name': 'Initiate Systems', 'permalink': 'initiate-systems'}}, {'price_amount': 3500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Lotus_Development_Corporation', 'source_description': '', 'acquired_year': 1995, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Lotus Development Corporation', 'permalink': 'lotus-development-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/29323.wss', 'source_description': 'IBM Acquires Automation Software Intelliden', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 16, 'company': {'name': 'Intelliden', 'permalink': 'intelliden'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/03/ibm-acquires-cloud-computing-integration-company-cast-iron-systems/', 'source_description': 'IBM Acquires Cloud Computing Integration Company Cast Iron Systems', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 3, 'company': {'name': 'Cast Iron Systems', 'permalink': 'castiron-systems'}}, {'price_amount': 1400000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/05/24/ibm-acquires-sterling-commerce-from-att-for-1-4-billion/', 'source_description': 'IBM Acquires Sterling Commerce From AT&T For $1.4 Billion', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Sterling Commerce', 'permalink': 'sterling-commerce'}}, {'price_amount': 140000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/06/14/storwize-ibm/', 'source_description': 'IBM close to buying Storwize for $140 million, says Israeli site', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Storwize', 'permalink': 'storwize'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2010/06/15/ibm-buys-web-analytics-software-maker-coremetrics/', 'source_description': 'IBM Buys Web Analytics Software Maker Coremetrics', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 15, 'company': {'name': 'Coremetrics', 'permalink': 'coremetrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/01/ibm-acquires-enterprise-data-security-software-company-bigfix/', 'source_description': 'IBM Acquires Enterprise Data Security Software Company BigFix', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'BigFix', 'permalink': 'bigfix'}}, {'price_amount': 480000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.masshightech.com/stories/2010/10/04/daily32-IBMs-480M-buyout-of-Unica-complete.html', 'source_description': \"IBM's $480M buyout of Unica complete\", 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Unica', 'permalink': 'unica'}}, {'price_amount': 1700000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/09/20/ibm-buys-data-analytics-company-netezza-for-1-7b/', 'source_description': 'IBM buys data analytics company Netezza for $1.7B', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 20, 'company': {'name': 'Netezza', 'permalink': 'netezza'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/27/ibm-buys-data-center-switching-company-blade-network-technologies/', 'source_description': 'IBM Buys Data Center Switching Company BLADE Network Technologies', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'BLADE Network Technologies', 'permalink': 'blade-network-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.alacrastore.com/deal-snapshot/IBM_Corp_acquires_Valchemy_Inc-469048', 'source_description': 'IBM Corp acquires Valchemy Inc', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Valchemy', 'permalink': 'valchemy'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pss-systems.com/news/101310.html', 'source_description': 'IBM Acquires PSS Systems', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 13, 'company': {'name': 'PSS Systems', 'permalink': 'pss-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2010/10/21/ibm-buys-financial-governance-software-company-clarity-systems/', 'source_description': 'IBM Buys Financial Governance Software Company Clarity Systems', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 21, 'company': {'name': 'Clarity Systems', 'permalink': 'clarity-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/1219.wss', 'source_description': 'IBM Completes Mainspring Acquisition', 'acquired_year': 2001, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'Mainspring', 'permalink': 'mainspring'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/947.wss', 'source_description': 'IBM Completes Acquisition of CrossWorlds Software', 'acquired_year': 2002, 'acquired_month': 1, 'acquired_day': 14, 'company': {'name': 'CrossWorlds Software', 'permalink': 'crossworlds-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/631.wss', 'source_description': 'IBM Acquires Metamerge', 'acquired_year': 2002, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Metamerge', 'permalink': 'metamerge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/547.wss', 'source_description': 'IBM Acquires TrelliSoft', 'acquired_year': 2002, 'acquired_month': 8, 'acquired_day': 29, 'company': {'name': 'TrelliSoft', 'permalink': 'trellisoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/534.wss', 'source_description': 'IBM Acquires Holosofx to Extend WebSphere Business Integration Software Portfolio', 'acquired_year': 2002, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'HOLOSOFX', 'permalink': 'holosofx'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/491.wss', 'source_description': 'IBM, PricewaterhouseCoopers Complete Sale of PwC Consulting', 'acquired_year': 2002, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'PwC Consulting', 'permalink': 'pwc-consulting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.networkworld.com/news/2002/0903acc360.html', 'source_description': 'IBM to acquire Access360', 'acquired_year': 2002, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Access360', 'permalink': 'access360'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/481.wss', 'source_description': 'IBM To Acquire EADS Matra Datavision', 'acquired_year': 2002, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'EADS Matra Datavision', 'permalink': 'eads-matra-datavision'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/428.wss', 'source_description': 'IBM Completes Acquisition Of Tarian Software', 'acquired_year': 2002, 'acquired_month': 11, 'acquired_day': 15, 'company': {'name': 'Tarian Software', 'permalink': 'tarian-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/314.wss', 'source_description': 'IBM Completes Acquisition of Rational Software', 'acquired_year': 2003, 'acquired_month': 2, 'acquired_day': 21, 'company': {'name': 'Rational Software', 'permalink': 'rational-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/214.wss', 'source_description': 'IBM Acquires Think Dynamics', 'acquired_year': 2003, 'acquired_month': 5, 'acquired_day': 14, 'company': {'name': 'Think Dynamics', 'permalink': 'think-dynamics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/5531.wss', 'source_description': 'IBM Acquires Aptrix', 'acquired_year': 2003, 'acquired_month': 7, 'acquired_day': 15, 'company': {'name': 'Aptrix', 'permalink': 'aptrix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6140.wss', 'source_description': 'IBM to Acquire CrossAccess Technology, Extends Leadership in Information Integration', 'acquired_year': 2003, 'acquired_month': 10, 'acquired_day': 14, 'company': {'name': 'CrossAccess', 'permalink': 'crossaccess'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6335.wss', 'source_description': 'IBM Acquires Retail Self-Checkout Leader, PSI', 'acquired_year': 2003, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Productivity Solutions', 'permalink': 'productivity-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6504.wss', 'source_description': 'IBM Acquires Green Pasture Software', 'acquired_year': 2003, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'Green Pasture Software', 'permalink': 'green-pasture-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6968.wss', 'source_description': 'IBM Completes Acquisition of Trigo Technologies', 'acquired_year': 2004, 'acquired_month': 4, 'acquired_day': 6, 'company': {'name': 'Trigo Technologies', 'permalink': 'trigo-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7160.wss', 'source_description': 'IBM Completes Acquisition of Candle Corporation', 'acquired_year': 2004, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'Candle', 'permalink': 'candle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7223.wss', 'source_description': 'IBM to Acquire Alphablox Corporation, Strengthens Leadership in Business Intelligence', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 14, 'company': {'name': 'AlphaBlox Corporation', 'permalink': 'alphablox-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7245.wss', 'source_description': 'IBM To Acquire Cyanea', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 29, 'company': {'name': 'Cyanea Systems', 'permalink': 'cyanea-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7327.wss', 'source_description': 'IBM Completes Acquisition of Venetica', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'Venetica', 'permalink': 'venetica'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7410.wss', 'source_description': 'IBM Completes Acquisition of Systemcorp', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 19, 'company': {'name': 'Systemcorp A.L.G.', 'permalink': 'systemcorp-a-l-g'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7415.wss', 'source_description': 'IBM to Acquire Liberty Insurance Services', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 23, 'company': {'name': 'Liberty Insurance Services', 'permalink': 'liberty-insurance-services'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.financialexpress.com/news/ibm-to-buy-maersk-data/113320/0', 'source_description': 'IBM To Buy Maersk Data', 'acquired_year': 2004, 'acquired_month': 8, 'acquired_day': 18, 'company': {'name': 'Maersk Data', 'permalink': 'maersk-data'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7455.wss', 'source_description': 'IBM to Acquire KeyMRO, Procurement Services Leader in Europe and North America', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': 13, 'company': {'name': 'KeyMRO', 'permalink': 'keymro'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7471.wss', 'source_description': 'IBM Acquires SRD, Breaks New Ground in Identity Resolution Software', 'acquired_year': 2005, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'SRD', 'permalink': 'srd'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7567.wss', 'source_description': 'IBM Completes Acquisition of Corio', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Corio', 'permalink': 'corio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7642.wss', 'source_description': 'IBM Completes Acquisition Of Ascential Software', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Ascential Software', 'permalink': 'ascential-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7658.wss', 'source_description': 'IBM Acquires Gluecode Software', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 10, 'company': {'name': 'Gluecode Software', 'permalink': 'gluecode-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7755.wss', 'source_description': 'IBM Acquires Meiosys', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Meiosys', 'permalink': 'meiosys'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7820.wss', 'source_description': 'IBM Formally Acquires PureEdge Solutions Inc.,', 'acquired_year': 2005, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'PureEdge Solutions', 'permalink': 'pureedge-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7811.wss', 'source_description': 'IBM Completes Acquisition of Isogon Corporation', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 27, 'company': {'name': 'Isogon Corporation', 'permalink': 'isogon-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7867.wss', 'source_description': 'IBM Formally Acquires DWL, Enhancing Data Integration Portfolio', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'DWL', 'permalink': 'dwl'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7934.wss', 'source_description': 'IBM Acquires DataPower', 'acquired_year': 2005, 'acquired_month': 10, 'acquired_day': 18, 'company': {'name': 'DataPower Technology', 'permalink': 'datapower-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7952.wss', 'source_description': 'IBM Acquires the Business of iPhrase Systems, Inc.', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 1, 'company': {'name': 'iPhrase Technologies', 'permalink': 'iphrase-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://dqchannels.ciol.com/content/reselleralert/105110901.asp', 'source_description': 'IBM to acquire Network Solutions', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Network Solutions Private Limited', 'permalink': 'network-solutions-private-limited'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19064.wss', 'source_description': 'IBM Acquires Bowstreet, Inc. to Help Customers Quickly Create Portals that Integrate Existing Business Applications', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'Bowstreet', 'permalink': 'bowstreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19160.wss', 'source_description': 'IBM Acquires ARGUS Semiconductor Software From INFICON', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 27, 'company': {'name': 'ARGUS Semiconductor Software', 'permalink': 'argus-semiconductor-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19153.wss', 'source_description': 'IBM Acquires CIMS Lab, Inc.', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'CIMS Lab', 'permalink': 'cims-lab'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eweek.com/c/a/IT-Management/IBM-Acquires-Viacore/', 'source_description': 'IBM Acquires Viacore', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 8, 'company': {'name': 'Viacore', 'permalink': 'viacore'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19247.wss', 'source_description': 'IBM Completes Acquisition of Micromuse Inc.', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 15, 'company': {'name': 'Micromuse', 'permalink': 'micromuse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19394.wss', 'source_description': 'IBM TO ACQUIRE LANGUAGE ANALYSIS SYSTEMS, INC.', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Language Analysis Systems', 'permalink': 'language-analysis-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19604.wss', 'source_description': 'IBM Acquires BuildForge, Inc. to Help Organizations Meet Compliance Demands', 'acquired_year': 2006, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'BuildForge', 'permalink': 'buildforge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.forrester.com/rb/Research/ibm_accelerates_metadata_investments_with_acquisition_of/q/id/39682/t/2', 'source_description': 'IBM Accelerates Metadata Investments With Acquisition Of Unicorn Solutions', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 6, 'company': {'name': 'Unicorn Solutions', 'permalink': 'unicorn-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://spectroscopyonline.findanalytichem.com/spectroscopy/article/articleDetail.jsp?id=327850', 'source_description': 'IBM to acquire Rembo Technology', 'acquired_year': 2006, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Rembo Technology', 'permalink': 'rembo-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20058.wss', 'source_description': 'IBM Acquires Webify', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 2, 'company': {'name': 'Webify Solutions', 'permalink': 'webify-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20206.wss', 'source_description': 'IBM Acquires Full Ownership of Brazilian SMB Services Firm Global Value Solutions', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 6, 'company': {'name': 'Global Value Solutions', 'permalink': 'global-value-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20397.wss', 'source_description': 'IBM Completes Acquisition of MRO Software, Inc.', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'MRO Software', 'permalink': 'mro-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20429.wss', 'source_description': 'IBM Completes Acquisition of FileNet Corporation', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 12, 'company': {'name': 'FileNet Corporation', 'permalink': 'filenet-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20468.wss', 'source_description': 'IBM Completes Acquisition of Internet Security Systems', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Internet Security Systems', 'permalink': 'internet-security-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20598.wss', 'source_description': 'IBM Completes the Acquisition of Palisades Technology Partners', 'acquired_year': 2006, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Palisades Technology Partners', 'permalink': 'palisades-technology-partners'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20964.wss', 'source_description': 'IBM Completes Acquisition of Consul', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'Consul risk management international', 'permalink': 'consul-risk-management-international'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21076.wss', 'source_description': 'IBM Completes Acquisition of Vallent', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': 14, 'company': {'name': 'Vallent Corporation', 'permalink': 'vallent-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21164.wss', 'source_description': 'IBM Completes Acquisition of Softek', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Softek Storage Solutions', 'permalink': 'softek-storage-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21921.wss', 'source_description': 'IBM Completes Acquisition of Watchfire', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 23, 'company': {'name': 'Watchfire', 'permalink': 'watchfire'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22210.wss', 'source_description': 'IBM Acquires WebDialogs to Expand Web Conferencing Capabilities in Industry-Leading Lotus Sametime ', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 22, 'company': {'name': 'Webdialogs', 'permalink': 'webdialogs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22282.wss', 'source_description': 'IBM Completes Acquisition of DataMirror', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 4, 'company': {'name': 'DataMirror', 'permalink': 'datamirror'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22318.wss', 'source_description': 'IBM Completes Acquisition of Princeton Softech', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 13, 'company': {'name': 'Princeton Softech', 'permalink': 'princeton-softech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22476.wss', 'source_description': 'IBM Acquires Storage Solutions Company NovusCG', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 24, 'company': {'name': 'NovusCG', 'permalink': 'novuscg'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23376.wss', 'source_description': 'IBM Acquires AptSoft to Expand Portfolio in Burgeoning Business Events Software Market', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 23, 'company': {'name': 'AptSoft', 'permalink': 'aptsoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22921.wss', 'source_description': 'IBM to Acquire Solid Information Technology to Broaden Information on Demand Portfolio', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': 21, 'company': {'name': 'Solid Information Technology', 'permalink': 'solid-information-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23423.wss', 'source_description': 'IBM Completes Acquisition of Cognos', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Cognos', 'permalink': 'cognos'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23404.wss', 'source_description': 'IBM Completes Acquisition of Arsenal Digital Solutions', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Arsenal Digital Solutions', 'permalink': 'arsenal-digital-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23325.wss', 'source_description': 'IBM Reaches Agreement to Acquire Net Integration Technologies Inc.', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Net Integration Technologies', 'permalink': 'net-integration-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23653.wss', 'source_description': 'IBM Acquires Encentuate', 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 12, 'company': {'name': 'Encentuate', 'permalink': 'encentuate'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/24560.wss', 'source_description': 'IBM Acquires Platform Solutions', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'Platform Solutions', 'permalink': 'platform-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/24740.wss', 'source_description': 'IBM Announces Plans to Acquire ILOG', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'ILOG', 'permalink': 'ilog'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/34296.wss', 'source_description': 'IBM Buys Real Estate And Facilities Management Software Company TRIRIGA', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 14, 'company': {'name': 'TRIRIGA', 'permalink': 'tririga'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/31/ibm-buys-crime-prevention-and-data-intelligence-software-developer-i2/', 'source_description': 'IBM Buys Crime Prevention And Data Intelligence Software Developer i2', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'i2', 'permalink': 'i2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/ibm-to-acquire-algorithmics-128865648.html', 'source_description': 'IBM to Acquire Algorithmics', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'Algorithmics', 'permalink': 'algorithmics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/10/04/ibm-buys-network-security-intelligence-company-q1-labs/', 'source_description': 'IBM Buys Network Security Intelligence Company Q1 Labs', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 4, 'company': {'name': 'Q1 Labs', 'permalink': 'q1-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/559423/ibm-acquire-system-software-company-platform-computing-extend-reach-technical-computing', 'source_description': 'IBM to Acquire System Software Company Platform Computing to Extend Reach of Technical Computing', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 11, 'company': {'name': 'Platform Computing', 'permalink': 'platform-computing'}}, {'price_amount': 440000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/08/ibm-buys-retail-forecasting-and-merchandising-software-company-demandtec-for-440m/', 'source_description': 'IBM Buys Retail Forecasting And Merchandising Software Company DemandTec For $440M', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 8, 'company': {'name': 'DemandTec', 'permalink': 'demandtec'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/15/ibm-buys-supply-chain-analytics-software-emptoris-to-boost-smarter-commerce-offerings/', 'source_description': 'IBM Buys Supply Chain Analytics Software Emptoris To Boost Smarter Commerce Offerings', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Emptoris', 'permalink': 'emptoris'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/01/04/ibm-buys-cloud-based-software-testing-platform-green-hat/', 'source_description': 'IBM Buys Cloud-Based Software Testing Platform Green Hat', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'Green Hat', 'permalink': 'green-hat'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/01/31/ibm-buys-html5-app-development-company-worklight-to-expand-mobile-enterprise-services/', 'source_description': 'IBM Buys HTML5 App Development Company WorkLight For $70M To Expand Mobile Enterprise Services', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Worklight', 'permalink': 'worklight'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/13/ibm-acquires-sales-data-and-analytics-software-company-varicent/', 'source_description': 'IBM Acquires Sales Data And Analytics Software Company Varicent', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'Varicent Software', 'permalink': 'varicent-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/25/ibm-acquires-enterprise-search-software-company-vivisimo-to-boost-big-data-analytics/', 'source_description': 'IBM Acquires Enterprise Search Software Company Vivisimo To Boost Big Data Analytics', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 25, 'company': {'name': 'Vivisimo', 'permalink': 'vivsimo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/02/ibm-acquires-tealeaf-to-add-customer-buying-analytics-to-smarter-commerce-products/', 'source_description': 'IBM Acquires Tealeaf To Add Customer Buying Analytics To Smarter Commerce Products', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Tealeaf', 'permalink': 'tealeaf'}}, {'price_amount': 1300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/27/ibm-acquires-hr-and-talent-management-software-company-kenexa-for-1-3b-in-cash/', 'source_description': 'IBM Buys Social HR And Talent Management Software Company Kenexa For $1.3B In Cash', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 28, 'company': {'name': 'Kenexa', 'permalink': 'kenexa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/24/ibm-acquires-butterfly-software-for-data-analysis-and-advanced-storage-capabilites/', 'source_description': 'IBM Acquires Butterfly Software For Data Analysis And Advanced Storage Capabilites', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 24, 'company': {'name': 'Butterfly Software', 'permalink': 'butterfly-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/755307/ibm-acquire-star-analytics-inc-', 'source_description': 'IBM to Acquire Star Analytics, Inc.', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Star Analytics', 'permalink': 'star-analytics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/787778/ibm-acquires-urbancode-help-businesses-rapidly-deliver-mobile-cloud-big-data-and-social', 'source_description': 'IBM ACQUIRES URBANCODE TO HELP BUSINESSES RAPIDLY DELIVER MOBILE, CLOUD, BIG DATA AND SOCIAL SOFTWARE', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 22, 'company': {'name': 'Urbancode', 'permalink': 'urbancode'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-06-04/ibm-to-acquire-cloud-computing-provider-softlayer-technologies.html', 'source_description': ' IBM to Buy Cloud-Computing Firm SoftLayer for $2 Billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'SoftLayer', 'permalink': 'softlayer'}}, {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ynetnews.com/articles/0,7340,L-4403225,00.html', 'source_description': 'IBM buys Israeli CSL for $20M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'company': {'name': 'CSL International', 'permalink': 'csl-international'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/15/ibm-buys-israelus-cybersecurity-specialist-trusteer-for-few-hundred-million-dollars/', 'source_description': 'IBM Buys Israel/US Cybersecurity Specialist Trusteer For Between $800M-$1B', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Trusteer', 'permalink': 'trusteer'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techweekeurope.co.uk/news/ibm-big-data-acquisition-the-now-factory-128534', 'source_description': 'IBM To Acquire Irish Analytics Boffs The Now Factory', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'The Now Factory', 'permalink': 'the-now-factory'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/03/ibm-acquires-xtify-a-mobile-messaging-company/', 'source_description': 'IBM Acquires Xtify, A Mobile Messaging Company', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Xtify Inc.', 'permalink': 'xtify'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://risetothecloud.com/ibm-to-buy-fiberlink-for-mobile-management-informationweek/', 'source_description': 'IBM To Buy Fiberlink For Mobile Management – InformationWeek', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Fiberlink', 'permalink': 'fiberlink-communications-corp'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/19/ibm-buys-aspera-a-file-transfer-company-that-counts-apple-and-netflix-as-customers/', 'source_description': 'IBM Buys Aspera, A File Transfer Company That Counts Apple And Netflix As Customers', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'company': {'name': 'Aspera', 'permalink': 'aspera'}}], 'offices': [{'description': 'Corporate Headquarters', 'address1': 'New Orchard Road', 'address2': '', 'zip_code': '10504', 'city': 'Armonk', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 41.109534, 'longitude': -73.723999}], 'milestones': [{'id': 10471, 'description': 'IBM Completes Acquisition of Informix Database Assets', 'stoned_year': 2001, 'stoned_month': 7, 'stoned_day': 2, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/1174.wss', 'source_text': '', 'source_description': 'IBM Completes Acquisition of Informix Database Assets', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 11620, 'description': 'IBM Beats The Street; Posts Record Revenue Of $29B, Net Income Up 9 Percent', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 18, 'source_url': 'http://techcrunch.com/2011/01/18/ibm-beats-the-street-posts-record-revenue-of-29b-net-income-up-9-percent/', 'source_text': '', 'source_description': 'IBM Beats The Street; Posts Record Revenue Of $29B, Net Income Up 9 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 14252, 'description': 'IBM Beats The Street, Posts Revenue of $24.6B; Net Income Up 10 Percent To $2.9B', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2011/04/19/ibm-beats-the-street-posts-revenue-of-24-6b-net-income-up-10-percent-to-2-9b/', 'source_text': '', 'source_description': 'IBM Beats The Street, Posts Revenue of $24.6B; Net Income Up 10 Percent To $2.9B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 18718, 'description': 'IBM Names Sales Chief Virginia Rometty As CEO, Samuel Palmisano Will Remain As Chairman', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/10/25/ibm-names-sales-chief-virginia-rometty-as-ceo-samuel-palmisano-will-remain-as-chairman/', 'source_text': '', 'source_description': 'IBM Names Sales Chief Virginia Rometty As CEO, Samuel Palmisano Will Remain As Chairman', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 20348, 'description': 'Add FEH as associate partner. ', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 2, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 43985, 'description': 'IBM Buys Dexia Tech Unit, Signs IT Contracts Worth $1.3B', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 9, 'source_url': 'http://www.americanbanker.com/issues/178_235/ibm-buys-dexia-tech-unit-signs-it-contracts-worth-13b-1064123-1.html?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'IBM Buys Dexia Tech Unit, Signs IT Contracts Worth $1.3B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1978, 'pub_month': 1, 'pub_day': 13, 'stock_symbol': 'NYSE:IBM'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/6332/46332v1-max-150x150.png'], [[250, 155], 'assets/images/resized/0004/6332/46332v1-max-250x250.png'], [[450, 279], 'assets/images/resized/0004/6332/46332v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/IBM', 'title': 'IBM at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299d33'), 'name': 'Toyota', 'permalink': 'toyota', 'crunchbase_url': 'http://www.crunchbase.com/company/toyota', 'homepage_url': 'http://www.toyota-global.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Toyota', 'category_code': 'enterprise', 'number_of_employees': 320000, 'founded_year': 1933, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '81 5 6528 2121', 'description': 'Automotive', 'created_at': 'Mon Sep 22 22:00:26 UTC 2008', 'updated_at': 'Mon Nov 11 16:24:21 UTC 2013', 'overview': '

Toyota operates 75 manufacturing companies across 28 countries globally, and markets vehicles in more than 170 countries, thanks to the support of a 320,000-strong workforce. \\nToyota began selling cars in Europe in 1963, has invested over 7 billion since 1990 and currently employs some 80,000 people here.

\\n\\n

Their European operations are supported by a network of 31 National Marketing and Sales Companies in 56 countries, around 3,000 retailers, and nine manufacturing plants.

', 'image': {'available_sizes': [[[135, 37], 'assets/images/resized/0006/6965/66965v1-max-150x150.jpg'], [[135, 37], 'assets/images/resized/0006/6965/66965v1-max-250x250.jpg'], [[135, 37], 'assets/images/resized/0006/6965/66965v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': '', 'person': {'first_name': 'Yukari', 'last_name': 'Matsuzawa', 'permalink': 'yukari-matsuzawa'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'John', 'last_name': 'David Chibuk', 'permalink': 'john-david-chibuk'}}, {'is_past': False, 'title': 'Brand Manager', 'person': {'first_name': 'Dimitri', 'last_name': 'Popov', 'permalink': 'dimitri-popov-2'}}, {'is_past': False, 'title': 'Marketing Counsel', 'person': {'first_name': 'Jeff', 'last_name': 'Sherwood', 'permalink': 'jeff-sherwood'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Kathi', 'last_name': 'Hanley', 'permalink': 'kathi-hanley'}}, {'is_past': True, 'title': 'HR Information Systems Senior Specialist', 'person': {'first_name': 'Nadia', 'last_name': 'Lambrechts', 'permalink': 'nadia-lambrechts'}}, {'is_past': True, 'title': 'Internal Auditor / Consultant', 'person': {'first_name': 'Sheryl', 'last_name': 'Ryan', 'permalink': 'sheryl-ryan'}}, {'is_past': True, 'title': 'GM, Production Engineering West Coast, Toyota North America', 'person': {'first_name': 'Gilbert', 'last_name': 'Passin', 'permalink': 'gilbert-passin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kazunori', 'last_name': 'Takeda', 'permalink': 'kazunori-takeda'}}, {'is_past': True, 'title': 'National manager accounting', 'person': {'first_name': 'Robyn', 'last_name': 'Denholm', 'permalink': 'robyn-denholm'}}, {'is_past': True, 'title': 'Software Consultant', 'person': {'first_name': 'Patrik', 'last_name': 'Outericky', 'permalink': 'patrik-outericky'}}, {'is_past': True, 'title': 'Business Partnerships', 'person': {'first_name': 'Dave', 'last_name': 'Peterson', 'permalink': 'dave-peterson-2'}}, {'is_past': True, 'title': 'Management Trainee and Technical Service, US Headquarters', 'person': {'first_name': 'Greg', 'last_name': 'Tarr', 'permalink': 'greg-tarr'}}, {'is_past': True, 'title': 'Lead Researcher, Toyota Motor Sales', 'person': {'first_name': 'Glen', 'last_name': 'Hogue', 'permalink': 'glen-hogue'}}, {'is_past': True, 'title': 'Government Affairs/Corporate Communications', 'person': {'first_name': 'Brian', 'last_name': 'Birkett', 'permalink': 'brian-birkett'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Kentaro', 'last_name': 'Hyakuno', 'permalink': 'kentaro-hyakuno'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Erick', 'last_name': 'Herring', 'permalink': 'erick-herring'}}, {'is_past': True, 'title': 'Strategic & Product planning & Corporate Finance - USA', 'person': {'first_name': 'Jim', 'last_name': 'Nguyen', 'permalink': 'jim-nguyen'}}], 'competitions': [], 'providerships': [{'title': '', 'is_past': True, 'provider': {'name': 'Leader', 'permalink': 'leader-enterprises'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://onbiovc.com/dnp-green-technology-inc-series-a-12m/', 'source_description': 'DNP Green Technology, Inc.: Series A $12M', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 17, 'company': {'name': 'DNP Green Technology', 'permalink': 'dnp-green-technology'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': 'Toyota Motor Corporation 1', 'address2': 'Toyota-cho', 'zip_code': '471-8571', 'city': 'Aichi', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 84], 'assets/images/resized/0035/5660/355660v2-max-150x150.png'], [[250, 140], 'assets/images/resized/0035/5660/355660v2-max-250x250.png'], [[450, 253], 'assets/images/resized/0035/5660/355660v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 47], 'assets/images/resized/0035/5661/355661v1-max-150x150.png'], [[250, 78], 'assets/images/resized/0035/5661/355661v1-max-250x250.png'], [[450, 141], 'assets/images/resized/0035/5661/355661v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b0fe'), 'name': 'Nippon Telegraph and Telephone Corporation', 'permalink': 'nippon-telegraph-and-telephone-corporation', 'crunchbase_url': 'http://www.crunchbase.com/company/nippon-telegraph-and-telephone-corporation', 'homepage_url': 'http://www.ntt.co.jp/index_e.html', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': None, 'number_of_employees': 227000, 'founded_year': 1985, 'founded_month': 4, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue Feb 17 16:43:28 UTC 2009', 'updated_at': 'Mon Dec 23 19:36:20 UTC 2013', 'overview': '

In the information and communication technology (ICT) market, the uses of social media and cloud computing are expanding along with the increase of high-speed optical fiber and mobile broadband, and the rapid spread of various terminal devices such as smartphones and tablet computers. In line with this trend, not only communications carriers but also various players in other businesses are entering the market and accelerating the diversity and sophistication of services globally.

\\n\\n

Based on its management strategy “Towards the Next Stage,” which was announced in November 2012, the NTT Group will strengthen cutting-edge broadband services such as FLET’S Hikari and the LTE service Xi (crossy)and promote advanced R&D, creating high-value-added services and business models. In particular, we will focus on accelerating global business development with cloud services as the growth driver of NTT’s business operations. We will also offer services that are “Suitable (for customers’ needs),” “Simple(and convenient)” and “Secure (and safe),” thereby supporting our corporate clients in transforming business models and individual customers in creating diverse lifestyles.

\\n\\n

Through these measures, the NTT Group will deliver convenient, enriched, and reliable services to support our customers as a Value Partner that our customers will continue to select. As a result, we will enhance our corporate value and contribute to the development of the Japanese and global economies and society.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0038/1785/381785v3-max-150x150.png'], [[239, 55], 'assets/images/resized/0038/1785/381785v3-max-250x250.png'], [[239, 55], 'assets/images/resized/0038/1785/381785v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'System consultant', 'person': {'first_name': 'Akinori', 'last_name': 'Harada', 'permalink': 'akinori-harada'}}, {'is_past': True, 'title': 'SalesEngineer', 'person': {'first_name': 'Hiroaki', 'last_name': 'Yasutake', 'permalink': 'hiroaki-yasutake'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'e', 'source_url': 'http://www.opsource.net/news/press/read_news.php?&newsid=88', 'source_description': \"OpSource Acquires $10 Million in Series 'E' Funding\", 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 17, 'company': {'name': 'OpSource', 'permalink': 'opsource'}}}, {'funding_round': {'round_code': 'c', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 15, 'company': {'name': 'NexWave Solutions', 'permalink': 'nexwave-solutions'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'NTT', 'address1': '3-1, Otemachi 2-chome, Chiyoda-ku', 'address2': '', 'zip_code': '100-8116', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 42], 'assets/images/resized/0038/1786/381786v1-max-150x150.png'], [[250, 71], 'assets/images/resized/0038/1786/381786v1-max-250x250.png'], [[450, 128], 'assets/images/resized/0038/1786/381786v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675298aa4'), 'name': 'Samsung Electronics', 'permalink': 'samsung-electronics', 'crunchbase_url': 'http://www.crunchbase.com/company/samsung-electronics', 'homepage_url': 'http://www.samsung.com/us', 'blog_url': 'http://www.samsungvillage.com/', 'blog_feed_url': '', 'twitter_username': 'samsungtweets', 'category_code': 'hardware', 'number_of_employees': 221726, 'founded_year': 1969, 'founded_month': 2, 'founded_day': 12, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'electronics', 'alias_list': '', 'email_address': 'manta.client@gmail.com', 'phone_number': '1-800-726-7864', 'description': '', 'created_at': 'Wed May 14 20:34:02 UTC 2008', 'updated_at': 'Wed Dec 04 05:52:38 UTC 2013', 'overview': '

Samsung Electronics Co. Ltd., together with its subsidiaries, is engaged in consumer electronics, information technology and mobile communications, and device solutions businesses worldwide. It develops, manufactures, and sells various consumer products, including mobile phones, tablets, televisions, Blu-rays, DVD players, home theaters, and digital cameras and camcorders; home appliances, such as refrigerators, air conditioners, washing machines, ovens, and dishwashers; PC/peripherals/printers comprising tablet PC, notebooks, monitors, optical disc drive, printers, and computers; memory and storage products, such as solid state drives and memory cards; and accessories.

\\n\\n

The company also provides healthcare and medical equipment comprising ultrasound, digital X-ray, and in-vitro diagnostics; telecommunications infrastructure, including wireless and enterprise network systems; standalone mobile APs for smartphones, CMOS image sensors for mobile cameras, display driver ICs, and smart card ICs; LCD display panels and OLED panels for mobiles; and LED lighting solutions that include LED packages, LED display modules, LED light engines, and LED retrofit lamps. In addition, it engages in cyber game match hosting; technology business venture capital investments; manufacture of semiconductor components; semiconductor equipments business; sponsoring of sports team and games; and credit management activities.

\\n\\n

Further, the company provides repair service for electronic devices, general logistics agency services, consulting services, and communication system services. It has operations in Korea, China, Latin and North America, Europe, the Asia Pacific, and Africa. Samsung Electronics Co. Ltd. has a strategic partnership with Lookout, as well as with Orange Business Services. The company was founded in 1969 as a subsidiary of Samsung Group and is headquartered in Suwon, South Korea.

', 'image': {'available_sizes': [[[150, 78], 'assets/images/resized/0001/8596/18596v6-max-150x150.jpg'], [[250, 130], 'assets/images/resized/0001/8596/18596v6-max-250x250.jpg'], [[311, 162], 'assets/images/resized/0001/8596/18596v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Samsung GALAXY Tab', 'permalink': 'samsung-galaxy-tab'}, {'name': 'Samsung GALAXY S', 'permalink': 'samsung-galaxy-s-series'}, {'name': 'Samsung GALAXY Note', 'permalink': 'samsung-galaxy-note'}], 'relationships': [{'is_past': False, 'title': 'President and CEO, Samsung Telecommunications America', 'person': {'first_name': 'Gregory', 'last_name': 'Lee', 'permalink': 'gregory-lee-2'}}, {'is_past': False, 'title': 'CEO, Vice Chairman & Board of Directors', 'person': {'first_name': 'Oh-Hyun', 'last_name': 'Kwon', 'permalink': 'oh-hyun-kwon'}}, {'is_past': False, 'title': 'Vice Chairman and CEO', 'person': {'first_name': 'Yoon-Woo', 'last_name': 'Lee', 'permalink': 'yoon-woo-lee'}}, {'is_past': False, 'title': 'President and CEO, Samsung Semiconductor, Inc.', 'person': {'first_name': 'Charlie', 'last_name': 'Bae', 'permalink': 'charlie-bae'}}, {'is_past': False, 'title': 'President and Chief Strategy Officer', 'person': {'first_name': 'Young', 'last_name': 'Sohn', 'permalink': 'young-sohn'}}, {'is_past': False, 'title': 'President & CEO, South West Asia Operations', 'person': {'first_name': 'B.D.', 'last_name': 'Park', 'permalink': 'b-d-park'}}, {'is_past': False, 'title': 'President and Chief Executive Officer of Samsung Electronics America', 'person': {'first_name': 'Yangkyu', 'last_name': '(Y.K.) Kim', 'permalink': 'yangkyu-y-k-kim'}}, {'is_past': False, 'title': 'Executive Vice President, Global Media Group', 'person': {'first_name': 'David', 'last_name': 'Eun', 'permalink': 'david-eun'}}, {'is_past': False, 'title': 'Acting President', 'person': {'first_name': 'Lee', 'last_name': 'Soo-bin', 'permalink': 'lee-soo-bin'}}, {'is_past': False, 'title': 'Mobile Technology Strategy and Sourcing', 'person': {'first_name': 'Homayoon', 'last_name': 'Shahinfar', 'permalink': 'homayoon-shahinfar'}}, {'is_past': False, 'title': 'General Manager, Global Business Innovation Group', 'person': {'first_name': 'Kevin', 'last_name': 'Chong', 'permalink': 'kevin-chong'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Ju-Hwa', 'last_name': 'Yoon', 'permalink': 'ju-hwa-yoon'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'In-Ho', 'last_name': 'Lee', 'permalink': 'in-ho-lee'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Byeong-Gi', 'last_name': 'Lee', 'permalink': 'byeong-gi-lee'}}, {'is_past': False, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Taehoon', 'last_name': 'Kang', 'permalink': 'taehoon-kang'}}, {'is_past': False, 'title': 'Director Product Management', 'person': {'first_name': 'Adnan', 'last_name': 'Agboatwalla', 'permalink': 'adnan-agboatwalla'}}, {'is_past': False, 'title': 'Business houner', 'person': {'first_name': 'John', 'last_name': 'wakefiwld', 'permalink': 'john-wakefiwld-2'}}, {'is_past': False, 'title': 'Engineer, Cooperate R&D Lab', 'person': {'first_name': 'Richard', 'last_name': 'Uichel Joung', 'permalink': 'richard-uichel-joung'}}, {'is_past': False, 'title': 'Mechanical Engineer and Managed Technology Strategic Planning', 'person': {'first_name': 'Simon', 'last_name': 'Kim', 'permalink': 'simon-kim'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Aleksey', 'last_name': 'Lazorenko', 'permalink': 'aleksey-lazorenko'}}, {'is_past': False, 'title': 'Manager, Overseas Marketing & Sales', 'person': {'first_name': 'Sean', 'last_name': 'Lee', 'permalink': 'sean-lee-2'}}, {'is_past': False, 'title': 'Manager', 'person': {'first_name': 'Jennifer', 'last_name': 'George', 'permalink': 'jennifer-george'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Varun', 'last_name': 'Vishwanathan', 'permalink': 'varun-vishwanathan'}}, {'is_past': False, 'title': 'Head', 'person': {'first_name': 'Shawn', 'last_name': 'Pouliotte', 'permalink': 'shawn-pouliotte'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Gee-Sung', 'last_name': 'Choi', 'permalink': 'gee-sung-choi'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Dong-Min', 'last_name': 'Yoon', 'permalink': 'dong-min-yoon'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Han-joong', 'last_name': 'Kim', 'permalink': 'han-joong-kim'}}, {'is_past': False, 'title': 'Associate', 'person': {'first_name': 'Leif', 'last_name': 'Karlen', 'permalink': 'leif-karlen'}}, {'is_past': False, 'title': 'Director, New Technology Pathfinding', 'person': {'first_name': 'Thomas', 'last_name': 'W. Fry', 'permalink': 'thomas-w-fry'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Reda', 'last_name': 'Dehy', 'permalink': 'reda-dehy'}}, {'is_past': False, 'title': 'Open Innovation', 'person': {'first_name': 'Brendon', 'last_name': 'Kim', 'permalink': 'brendon-kim'}}, {'is_past': False, 'title': 'Senior Engineer', 'person': {'first_name': 'Benjamin', 'last_name': 'Lee', 'permalink': 'benjamin-lee'}}, {'is_past': False, 'title': 'Senior Manager Business Development, Partnerships Team', 'person': {'first_name': 'Godfrey', 'last_name': 'Powell', 'permalink': 'godfrey-powell'}}, {'is_past': False, 'title': 'President, Samsung Austin Semiconducter', 'person': {'first_name': 'Dr.', 'last_name': 'Woosung Han', 'permalink': 'dr-woosung-han'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Suh', 'permalink': 'ian-suh'}}, {'is_past': True, 'title': 'Co - Founder', 'person': {'first_name': 'Ilbok', 'last_name': 'Lee', 'permalink': 'ilbok-lee'}}, {'is_past': True, 'title': 'Chief Marketing Officer/Vice President Strategic Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Golden', 'permalink': 'paul-golden'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Chen', 'last_name': 'Wang', 'permalink': 'chen-wang'}}, {'is_past': True, 'title': 'Vice President, General Counsel', 'person': {'first_name': 'Randall', 'last_name': 'Wick', 'permalink': 'randall-wick'}}, {'is_past': True, 'title': 'Sr. Director Human Resources', 'person': {'first_name': 'Peter', 'last_name': 'Altuch', 'permalink': 'peter-altuch'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Youcef', 'last_name': 'ES-SKOURI', 'permalink': 'youcef-es-skouri'}}, {'is_past': True, 'title': 'Head of Content', 'person': {'first_name': 'Nick', 'last_name': 'Turner-Samuels', 'permalink': 'nick-turner-samuels'}}, {'is_past': True, 'title': 'Solutions Business Manager', 'person': {'first_name': 'Dan', 'last_name': 'Jones', 'permalink': 'dan-jones-2'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Gin', 'last_name': 'Kim', 'permalink': 'gin-kim'}}, {'is_past': True, 'title': 'Global Strategist', 'person': {'first_name': 'Gonzalo', 'last_name': 'Martinez de Azagra', 'permalink': 'gonzalo-martinez-de-azagra'}}, {'is_past': True, 'title': 'Senior Technologist', 'person': {'first_name': 'Ali', 'last_name': 'Khoshgozaran', 'permalink': 'jeff-khoshgozaran'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Igal', 'last_name': 'Perelman', 'permalink': 'igal-perelman'}}, {'is_past': True, 'title': 'Associate Account Manager', 'person': {'first_name': 'KR', 'last_name': 'Song', 'permalink': 'kr-song'}}, {'is_past': True, 'title': 'Director Flash Marketing', 'person': {'first_name': 'Steffen', 'last_name': 'Hellmold', 'permalink': 'steffen-hellmold'}}, {'is_past': True, 'title': 'Member', 'person': {'first_name': 'Bernard', 'last_name': 'S. Meyerson', 'permalink': 'bernard-s-meyerson'}}, {'is_past': True, 'title': 'Intern Programmer', 'person': {'first_name': 'Chee-Hyung', 'last_name': 'Yoon', 'permalink': 'chee-hyung-yoon'}}, {'is_past': True, 'title': 'General Manager, USA Representative Office', 'person': {'first_name': 'Charles', 'last_name': 'Lho', 'permalink': 'charles-lho-2'}}, {'is_past': True, 'title': 'Business Coordinator / Outbound Logistics Coordinator', 'person': {'first_name': 'Richard', 'last_name': 'Chae', 'permalink': 'richard-chae'}}, {'is_past': True, 'title': 'Director, Product Planning', 'person': {'first_name': 'Paul', 'last_name': 'Gallagher', 'permalink': 'paul-gallagher'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Yang', 'permalink': 'michael-yang'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Dong', 'last_name': 'Su Kim', 'permalink': 'dong-su-kim'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Kalyan', 'last_name': 'Uppalapati', 'permalink': 'kalyan-uppalapati'}}, {'is_past': True, 'title': 'Management Innovation Team', 'person': {'first_name': 'Hunjin', 'last_name': 'Jung', 'permalink': 'hunjin-jung'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Frank', 'last_name': 'Fu', 'permalink': 'frank-fu'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Hai', 'last_name': 'Liu', 'permalink': 'hai-liu'}}, {'is_past': True, 'title': 'Executive Director', 'person': {'first_name': 'Syed', 'last_name': 'Ali', 'permalink': 'syed-ali'}}, {'is_past': True, 'title': 'President / Board of Directors', 'person': {'first_name': 'Ilbok', 'last_name': 'Lee', 'permalink': 'ilbok-lee'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Tord', 'last_name': 'Wingren', 'permalink': 'tord-wingren'}}, {'is_past': True, 'title': 'Manager, System Design', 'person': {'first_name': 'Andy', 'last_name': 'Bell', 'permalink': 'andy-bell'}}, {'is_past': True, 'title': 'Research Engineer', 'person': {'first_name': 'Gene Moo', 'last_name': 'Lee', 'permalink': 'gene-moo-lee'}}, {'is_past': True, 'title': 'International Sales Manager', 'person': {'first_name': 'Mickey', 'last_name': 'Kim', 'permalink': 'mickey-kim'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Chang', 'last_name': 'Kim', 'permalink': 'chang-kim'}}, {'is_past': True, 'title': 'Assistant Manager', 'person': {'first_name': 'Josh Ha-Nyung', 'last_name': 'Chung', 'permalink': 'josh-ha-nyung-chung'}}, {'is_past': True, 'title': 'Social Media Marketing Manager', 'person': {'first_name': 'Esteban', 'last_name': 'Contreras', 'permalink': 'esteban-contreras-3'}}, {'is_past': True, 'title': 'Lead Engineer', 'person': {'first_name': 'Gin', 'last_name': 'Kim', 'permalink': 'gin-kim'}}, {'is_past': True, 'title': 'DSP SW Engineer', 'person': {'first_name': 'Renat', 'last_name': 'Gataullin', 'permalink': 'renat-gataullin'}}, {'is_past': True, 'title': 'Senior Manager, Public Relations', 'person': {'first_name': 'Deborah', 'last_name': 'Szajngarten', 'permalink': 'deborah-szajngarten'}}, {'is_past': True, 'title': 'Senior Marketing Manager Flat TV', 'person': {'first_name': 'Kevin', 'last_name': 'Cahill', 'permalink': 'kevin-cahill'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Young-Min', 'last_name': 'Jo', 'permalink': 'young-min-jo'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Douglas', 'last_name': 'Jardine', 'permalink': 'douglas-jardine'}}, {'is_past': True, 'title': 'Senior Channel Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Sternhell', 'permalink': 'paul-sternhell'}}, {'is_past': True, 'title': 'Director, Center for Global Cooperation', 'person': {'first_name': 'Charles', 'last_name': 'Lho', 'permalink': 'charles-lho-2'}}, {'is_past': True, 'title': 'Sr. Product Manager, New Business Development / Director, Emerging Business & Technologies', 'person': {'first_name': 'Dinesh', 'last_name': 'Moorjani', 'permalink': 'dinesh-moorjani'}}, {'is_past': True, 'title': 'Strategic Marketing Associate/Intern', 'person': {'first_name': 'Dawn', 'last_name': 'Verbrigghe', 'permalink': 'dawn-verbrigghe'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Guneet', 'last_name': 'Singh', 'permalink': 'guneet-singh'}}, {'is_past': True, 'title': 'Head of Developer Relations, Europe', 'person': {'first_name': 'Manfred', 'last_name': 'Bortenschlager', 'permalink': 'manfred-bortenschlager'}}, {'is_past': True, 'title': 'WW Director, Marketing & Product Planning', 'person': {'first_name': 'Paul', 'last_name': 'Gallagher', 'permalink': 'paul-gallagher'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Bumsoo', 'last_name': 'Kim', 'permalink': 'bumsoo-kim'}}, {'is_past': True, 'title': 'HR/Staffing', 'person': {'first_name': 'Jim', 'last_name': 'Everett', 'permalink': 'jim-everett'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rajesh', 'last_name': 'Vashist', 'permalink': 'rajesh-vashist'}}, {'is_past': True, 'title': 'Consulting Practice', 'person': {'first_name': 'Jordi', 'last_name': 'Vinas', 'permalink': 'jordi-vinas'}}, {'is_past': True, 'title': 'Contents Manager', 'person': {'first_name': 'Luis', 'last_name': 'Spencer Freitas', 'permalink': 'luis-spencer-freitas'}}, {'is_past': True, 'title': 'Device & Design Engineering', 'person': {'first_name': 'Kuang', 'last_name': 'Yu Chen', 'permalink': 'kuang-yu-chen'}}, {'is_past': True, 'title': 'Management positions', 'person': {'first_name': 'Vacit', 'last_name': 'Arat', 'permalink': 'vacit-arat'}}, {'is_past': True, 'title': 'Mobile Software Engineer', 'person': {'first_name': 'Jay', 'last_name': 'Park', 'permalink': 'jay-park'}}], 'competitions': [{'competitor': {'name': 'Numonyx', 'permalink': 'numonyx'}}, {'competitor': {'name': 'LG', 'permalink': 'lg'}}], 'providerships': [{'title': 'Electronics', 'is_past': False, 'provider': {'name': 'Carrier y Asociados', 'permalink': 'carrier-y-asociados'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.bizjournals.com/seattle/stories/2008/08/25/daily24.html', 'source_description': 'RadioFrame Networks raises another $28 million in financing', 'raised_amount': 28000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 29, 'company': {'name': 'RadioFrame', 'permalink': 'radioframe'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.beceem.com/news/042209.shtml', 'source_description': 'Beceem Closes $20 Million in Financing and Accelerates WiMAX Product Developments', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 22, 'company': {'name': 'Beceem Communications', 'permalink': 'beceem'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://www.cellular-news.com/story/40700.php', 'source_description': 'cellular-news', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 18, 'company': {'name': 'picoChip', 'permalink': 'picochip'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businessinsider.com/widevine-to-grow-with-new-15-million-venture-round-2009-12', 'source_description': 'TechFlash', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 14, 'company': {'name': 'Widevine Technologies', 'permalink': 'widevine'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2013/06/watchwith-completes-5m-venture-financing.html', 'source_description': 'Watchwith Completes $5M Venture Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 25, 'company': {'name': 'Watchwith', 'permalink': 'watchwith'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/440012/samsung-acquires-display-technology-provider-liquavista', 'source_description': 'SAMSUNG ACQUIRES DISPLAY TECHNOLOGY PROVIDER LIQUAVISTA', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 19, 'company': {'name': 'Liquavista', 'permalink': 'liquavista'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.fis.dowjones.com/article.aspx?ProductIDFromApplication=32&aid=DJFVW00020110801e7820018h&r=Rss&s=DJFVW', 'source_description': 'Samsung Buys Grandis As MRAM Moves Toward Mainstream ', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'Grandis', 'permalink': 'grandis'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/09/samsung-acquires-mobile-entertainment-and-music-streaming-startup-mspot/', 'source_description': 'Samsung Acquires Mobile Entertainment And Music Streaming Startup mSpot', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 9, 'company': {'name': 'mSpot', 'permalink': 'mspot'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/samsung-electronics-acquires-nvelo-214000759.html', 'source_description': 'Samsung Electronics Acquires NVELO', 'acquired_year': 2012, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'NVELO', 'permalink': 'nvelo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/28/samsung-buys-medical-imaging-company-neurologica/', 'source_description': 'Samsung Buys Medical Imaging Company NeuroLogica', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'company': {'name': 'NeuroLogica', 'permalink': 'neurologica'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/03/streaming-entertainment-startup-boxee-acquired-by-samsung-for-around-30m/', 'source_description': 'Streaming Entertainment Startup Boxee Acquired By Samsung For Around $30M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 3, 'company': {'name': 'Boxee', 'permalink': 'boxee'}}, {'price_amount': 347000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/08/09/samsung-to-acquire-german-oled-biz-novaled-for-347m/', 'source_description': 'Samsung to acquire German OLED biz Novaled for $347M', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Novaled', 'permalink': 'novaled'}}], 'offices': [{'description': 'HQ - South Korea', 'address1': 'Maetandong 416 Suwon, Gyeonggi-do Samsung Medison Bldg., 42, Teheran-ro 108 gil', 'address2': '', 'zip_code': '', 'city': 'Suwon', 'state_code': None, 'country_code': 'KOR', 'latitude': None, 'longitude': None}, {'description': 'USA', 'address1': '85 Challenger Road', 'address2': '', 'zip_code': '07660', 'city': 'Ridgefield Park,', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Brazil', 'address1': 'Av. Maria Coelho Aguiar, 215 – Bl. C – 4. Andar. CEP:05804-900', 'address2': '', 'zip_code': '', 'city': 'San Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': None, 'longitude': None}, {'description': 'Japan', 'address1': 'Ichigaya Tokyu Bldg., 4-2-1, Kudankita, Chiyoda-ku', 'address2': '', 'zip_code': '', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}, {'description': 'India', 'address1': '2nd, 3rd & 4th floor, Tower C, Vipul Tech Square, Sector 43, Golf Course Road,Gurgaon -122002', 'address2': '', 'zip_code': 'Haryana', 'city': '', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Germany', 'address1': 'Am Kronberger Hang 6, 65824', 'address2': '', 'zip_code': '', 'city': 'Schwalbach am Taunus', 'state_code': None, 'country_code': 'DEU', 'latitude': None, 'longitude': None}, {'description': 'Italy', 'address1': 'C. Donat Cattin, 5, 20063 Cernusco sul Navigilio', 'address2': '', 'zip_code': '', 'city': 'Milano', 'state_code': None, 'country_code': 'ITA', 'latitude': None, 'longitude': None}, {'description': 'France', 'address1': '270 Avenue de President Wilson, 93458, La Plain Saint Deni', 'address2': '', 'zip_code': '', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': None, 'longitude': None}, {'description': 'China', 'address1': 'China Merchants Tower, Jian Guo Road 118, Chao Yang District, Beijing', 'address2': '', 'zip_code': '', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 11908, 'description': 'Samsung Ships 3 Million Galaxy Tabs', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://www.businessinsider.com/samsung-ships-2-million-galaxy-tabs-2011-1', 'source_text': '', 'source_description': 'Samsung Ships 2 Million Galaxy Tabs', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 14253, 'description': 'Samsung to sell hard disk business to Seagate for $1.375B', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 19, 'source_url': 'http://venturebeat.com/2011/04/19/samsung-to-sell-hard-disk-business-to-seagate-for-1-375b/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_text': '', 'source_description': 'Samsung to sell hard disk business to Seagate for $1.375B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 34232, 'description': 'Confirmed: Samsung buys 10% stake in Korean handset maker Pantech for $48 million', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 22, 'source_url': 'http://thenextweb.com/asia/2013/05/22/samsung-buys-10-stake-in-korean-handset-maker-pantech-for-48-million/', 'source_text': '', 'source_description': 'Confirmed: Samsung buys 10% stake in Korean handset maker Pantech for $48 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 40660, 'description': \"Samsung to acquire stake in Best Buy, vice chairman Lee calls Apple's CEO 'Captain Cook'\", 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://www.phonearena.com/news/Samsung-to-acquire-stake-in-Best-Buy-vice-chairman-Lee-calls-Apples-CEO-Captain-Cook_id47976', 'source_text': '', 'source_description': \"Samsung to acquire stake in Best Buy, vice chairman Lee calls Apple's CEO 'Captain Cook'\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[94, 150], 'assets/images/resized/0020/4819/204819v1-max-150x150.png'], [[156, 250], 'assets/images/resized/0020/4819/204819v1-max-250x250.png'], [[282, 450], 'assets/images/resized/0020/4819/204819v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/Samsung_Electronics', 'title': 'Samsung Electronics at Mashpedia'}, {'external_url': 'http://www.riocoupon.com/articles/samsung-galaxy-s3-review.html', 'title': 'Samsung Galaxy S3 Review'}, {'external_url': 'http://www.riocoupon.com/articles/top-10-android-phones.html', 'title': 'Top 10 Android Smartphones'}, {'external_url': 'http://samsunggalaxys7review.biz/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675298b99'), 'name': 'Accenture', 'permalink': 'accenture', 'crunchbase_url': 'http://www.crunchbase.com/company/accenture', 'homepage_url': 'http://www.accenture.com', 'blog_url': 'http://www.accenture.com/Global/Accenture_Blogs/', 'blog_feed_url': 'http://feeds.accenture.com/Accenture_High_Performance_Business?format=xml', 'twitter_username': 'accenture', 'category_code': 'consulting', 'number_of_employees': 205000, 'founded_year': 2001, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'Consulting, Technology, Outsourcing', 'created_at': 'Fri May 23 17:46:58 UTC 2008', 'updated_at': 'Tue Dec 03 03:57:46 UTC 2013', 'overview': '

Accenture is a global management consulting, technology services and outsourcing company, with approximately 204,000 people serving clients in more than 120 countries. Combining unparalleled experience, comprehensive capabilities across all industries and business functions, and extensive research on the world’s most successful companies, Accenture collaborates with clients to help them become high-performance businesses and governments. The company generated net revenues of US$21.6 billion for the fiscal year ended Aug. 31, 2010.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0001/9509/19509v2-max-150x150.png'], [[162, 57], 'assets/images/resized/0001/9509/19509v2-max-250x250.png'], [[162, 57], 'assets/images/resized/0001/9509/19509v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Accenture Application Dev', 'permalink': 'accenture-application-dev'}, {'name': 'Real-Time Location Tracking Services', 'permalink': 'real-time-location-tracking-services'}], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Pierre', 'last_name': 'Nanterme', 'permalink': 'pierre-nanterme'}}, {'is_past': False, 'title': 'Chief Marketing & Communications Officer', 'person': {'first_name': 'Roxanne', 'last_name': 'Taylor', 'permalink': 'roxanne-taylor'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Jill', 'last_name': 'B. Smart', 'permalink': 'jill-b-smart'}}, {'is_past': False, 'title': 'Chief Executive—Business Process Outsourcing', 'person': {'first_name': 'Michael', 'last_name': 'J. Salvino', 'permalink': 'michael-j-salvino'}}, {'is_past': False, 'title': 'Chief Executive—Resources', 'person': {'first_name': 'Jean-Marc', 'last_name': 'Ollagnier', 'permalink': 'jean-marc-ollagnier'}}, {'is_past': False, 'title': 'Chief Executive—Financial Services', 'person': {'first_name': 'Richard', 'last_name': 'Lumb', 'permalink': 'richard-lumb'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': False, 'title': 'Chief Executive—Products', 'person': {'first_name': 'Gianfranco', 'last_name': 'Casati', 'permalink': 'gianfranco-casati'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'David', 'last_name': 'P. Rowland', 'permalink': 'david-p-rowland'}}, {'is_past': False, 'title': 'Chief Technology Innovation Officer', 'person': {'first_name': 'Gavin', 'last_name': 'Michael', 'permalink': 'gavin-michael'}}, {'is_past': False, 'title': 'Chief Executive US and Managing Director North America', 'person': {'first_name': 'Jorge', 'last_name': 'Benitez', 'permalink': 'jorge-benitez'}}, {'is_past': False, 'title': 'CEO & Partner', 'person': {'first_name': 'William', 'last_name': 'D. Green', 'permalink': 'william-d-green'}}, {'is_past': False, 'title': 'CRM Consultant', 'person': {'first_name': 'Nikhil', 'last_name': 'Daftary', 'permalink': 'nikhil-daftary'}}, {'is_past': False, 'title': 'Wireless Technology Consultant', 'person': {'first_name': 'Colin', 'last_name': 'Lowenberg', 'permalink': 'colin-lowenberg'}}, {'is_past': False, 'title': 'Software Architect', 'person': {'first_name': 'Tom', 'last_name': 'Burger', 'permalink': 'tom-burger'}}, {'is_past': False, 'title': 'Security Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Wei', 'permalink': 'bob-wei'}}, {'is_past': False, 'title': 'Business Analyst', 'person': {'first_name': 'Gaurav', 'last_name': 'Hardikar', 'permalink': 'gaurav-hardikar'}}, {'is_past': False, 'title': 'Global Client Services Director / GTM Lead at Accenture Interactive', 'person': {'first_name': 'Brent', 'last_name': 'Trimble', 'permalink': 'brent-trimble'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dave', 'last_name': 'Robinett', 'permalink': 'dave-robinett'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Stephan', 'last_name': 'Rau', 'permalink': 'stephan-rau'}}, {'is_past': False, 'title': 'Lead Management Scientist', 'person': {'first_name': 'Chris', 'last_name': 'Checco', 'permalink': 'chris-checco'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Nobuyuki', 'last_name': 'Idei', 'permalink': 'nobuyuki-idei'}}, {'is_past': False, 'title': 'Chief Executive - Technology', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': False, 'title': 'Chief Executive—Management Consulting', 'person': {'first_name': 'Sander', 'last_name': \"van 't Noordende\", 'permalink': 'sander-van-t-noordende'}}, {'is_past': False, 'title': 'Chief Executive—Communications, Media & Technology', 'person': {'first_name': 'Robert', 'last_name': 'E. Sell', 'permalink': 'robert-e-sell'}}, {'is_past': False, 'title': 'Chief Geographic Strategy & Operations Officer', 'person': {'first_name': 'David', 'last_name': 'C. Thomlinson', 'permalink': 'david-c-thomlinson'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Ray', 'last_name': 'Grady', 'permalink': 'ray-grady'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dina', 'last_name': 'Dublon', 'permalink': 'dina-dublon'}}, {'is_past': False, 'title': 'Senior Manager', 'person': {'first_name': 'Dan', 'last_name': 'McCue', 'permalink': 'dan-mccue'}}, {'is_past': False, 'title': 'Analyst Consultant', 'person': {'first_name': 'Simon', 'last_name': 'Kempner', 'permalink': 'simon-kempner'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Stephen', 'last_name': 'Phillips', 'permalink': 'stephen-phillips'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'John', 'last_name': 'Staunton', 'permalink': 'john-staunton'}}, {'is_past': False, 'title': 'Digital Marketing Analytics Lead', 'person': {'first_name': 'Janet', 'last_name': 'McCabe', 'permalink': 'janet-mccabe'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Bill', 'last_name': 'Murphy', 'permalink': 'bill-murphy-5'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Julian', 'last_name': 'Lee', 'permalink': 'julian-lee'}}, {'is_past': False, 'title': 'Management Consultancy', 'person': {'first_name': 'Michael', 'last_name': 'Kowalzik', 'permalink': 'michael-kowalzik'}}, {'is_past': False, 'title': 'Executive', 'person': {'first_name': 'Joel', 'last_name': 'Krauss', 'permalink': 'joel-krauss'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jetze', 'last_name': 'van Beijma', 'permalink': 'jetze-van-beijma'}}, {'is_past': False, 'title': 'MD & Global Lead - Accenture Cloud Platform', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': False, 'title': 'Senior Engineer', 'person': {'first_name': 'Mark', 'last_name': 'G. Miller', 'permalink': 'mark-miller-2'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Michael', 'last_name': 'Vichich', 'permalink': 'michael-vichich'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Hankins', 'permalink': 'matt-hankins'}}, {'is_past': False, 'title': 'Senior Manager at Accenture Technology Labs', 'person': {'first_name': 'Alexandre', 'last_name': 'Naressi', 'permalink': 'alexandre-naressi'}}, {'is_past': False, 'title': 'IT consultant', 'person': {'first_name': 'Julien', 'last_name': 'Berthéas', 'permalink': 'julien-berthas'}}, {'is_past': False, 'title': 'Managing Director, Communications, Media and High Technology', 'person': {'first_name': 'Frank', 'last_name': 'Vaculin', 'permalink': 'frank-vaculin'}}, {'is_past': False, 'title': 'CTO & Sr. MD, Technology Strategy & Innovation Group', 'person': {'first_name': 'Paul', 'last_name': 'Daugherty', 'permalink': 'paul-daugherty'}}, {'is_past': False, 'title': 'Managing Director, Service Delivery Lead - avVenta', 'person': {'first_name': 'Narciso', 'last_name': 'Tauler', 'permalink': 'narciso-tauler'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Jamie', 'last_name': 'Posnanski', 'permalink': 'jamie-posnanski'}}, {'is_past': False, 'title': 'Senior Anderson Consulting', 'person': {'first_name': 'Tim', 'last_name': 'Slayton', 'permalink': 'tim-slayton'}}, {'is_past': False, 'title': 'N.A. mCommerce Lead, Accenture Mobility Services', 'person': {'first_name': 'Phong', 'last_name': 'Q. Rock', 'permalink': 'phong-q-rock'}}, {'is_past': False, 'title': 'Sr. Mgr (Cisco Services Unit)', 'person': {'first_name': 'Manvinder', 'last_name': 'Sandhu', 'permalink': 'manvinder-sandhu'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Jo', 'last_name': 'Deblaere', 'permalink': 'jo-deblaere'}}, {'is_past': False, 'title': 'Chief Leadership Officer', 'person': {'first_name': 'Adrian', 'last_name': 'Lajtha', 'permalink': 'adrian-lajtha'}}, {'is_past': False, 'title': 'Chief Executive—Health & Public Service', 'person': {'first_name': 'Stephen', 'last_name': 'J. Rohleder', 'permalink': 'stephen-j-rohleder'}}, {'is_past': False, 'title': 'General Counsel, Secretary & Chief Compliance Officer', 'person': {'first_name': 'Julie', 'last_name': 'Spellman Sweet', 'permalink': 'julie-spellman-sweet'}}, {'is_past': False, 'title': 'iOS DEVELOPER', 'person': {'first_name': 'Aleksejs', 'last_name': 'Sinicins', 'permalink': 'aleksejs-sinicins'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Charles', 'last_name': 'Giancarlo', 'permalink': 'charles-giancarlo'}}, {'is_past': False, 'title': 'Consultant, Advanced Technology Group', 'person': {'first_name': 'Michael', 'last_name': 'Schoen', 'permalink': 'michael-schoen'}}, {'is_past': False, 'title': 'Senior Programmer', 'person': {'first_name': 'Rolands', 'last_name': 'Umbrovskis', 'permalink': 'rolands-umbrovskis'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Esben', 'last_name': 'Friis-Jensen', 'permalink': 'esben-friis-jensen'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Chris', 'last_name': 'Murphy', 'permalink': 'chris-murphy-4'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Karim', 'last_name': 'Chehade', 'permalink': 'karim-chehade'}}, {'is_past': False, 'title': 'Management Consulting', 'person': {'first_name': 'Marco', 'last_name': 'Guglielminetti', 'permalink': 'marco-guglielminetti'}}, {'is_past': False, 'title': 'Business Consultant', 'person': {'first_name': 'Oliver', 'last_name': 'Qi', 'permalink': 'oliver-qi'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Markus', 'last_name': 'Grundmann', 'permalink': 'markus-grundmann'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Arsenault', 'permalink': 'jonathan-arsenault'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Rob', 'last_name': 'van Buuren', 'permalink': 'rob-van-buuren'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Iris', 'last_name': 'Olafsdottir', 'permalink': 'ris-lafsdttir'}}, {'is_past': False, 'title': 'Finance Director, Technology', 'person': {'first_name': 'Grant', 'last_name': 'P. Ireland', 'permalink': 'grant-p-ireland'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Giwan', 'last_name': 'Persaud', 'permalink': 'giwan-persaud'}}, {'is_past': False, 'title': 'Project Leader', 'person': {'first_name': 'Takashi', 'last_name': 'Hondo', 'permalink': 'takashi-hondo'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dev', 'last_name': 'Sanyal', 'permalink': 'dev-sanyal'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Chairman, Diamond Client Forum', 'person': {'first_name': 'David', 'last_name': 'A. Rey', 'permalink': 'david-a-rey'}}, {'is_past': True, 'title': 'International Chairman', 'person': {'first_name': 'Robert', 'last_name': 'N. Frerichs', 'permalink': 'robert-n-frerichs'}}, {'is_past': True, 'title': 'Chief Technology Architect', 'person': {'first_name': 'Paul', 'last_name': 'Daugherty', 'permalink': 'paul-daugherty'}}, {'is_past': True, 'title': 'Chief Executive, Communications & High Technology Operating Group', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Chief Executive', 'person': {'first_name': 'William', 'last_name': 'D. Green', 'permalink': 'william-d-green'}}, {'is_past': True, 'title': 'CFO / Principal Accounting Officer', 'person': {'first_name': 'Harry', 'last_name': 'L. You', 'permalink': 'harry-l-you'}}, {'is_past': True, 'title': 'Executive Vice President of multi-channel specialty retailer, Divers Direct, and as an Engagement Manager', 'person': {'first_name': 'Charles', 'last_name': 'Whiteman', 'permalink': 'charles-whiteman'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Pamela', 'last_name': 'J. Craig', 'permalink': 'pamela-j-craig'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Brian', 'last_name': 'Harrington', 'permalink': 'brian-harrington-2'}}, {'is_past': True, 'title': 'West Region Sales VP', 'person': {'first_name': 'Kelly', 'last_name': 'Malone', 'permalink': 'kelly-malone'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Hansen', 'permalink': 'brian-hansen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen-2'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Skander', 'last_name': 'Ben Mansour', 'permalink': 'skander-ben-mansour'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Miguel Angel', 'last_name': 'Ivars Mas', 'permalink': 'miguel-angel-ivars-mas'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Sheppard', 'permalink': 'andrew-sheppard'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Bils', 'permalink': 'scott-bils'}}, {'is_past': True, 'title': 'Senior Consultant, Center for Strategic Technology', 'person': {'first_name': 'Narinder', 'last_name': 'Singh', 'permalink': 'narinder-singh'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Velicer', 'permalink': 'scott-velicer'}}, {'is_past': True, 'title': 'Asistant', 'person': {'first_name': 'Patricio', 'last_name': 'Torres', 'permalink': 'patricio-torres'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Raymond', 'last_name': 'Grainger', 'permalink': 'raymond-grainger'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Francois', 'last_name': 'Naudé', 'permalink': 'francois-naud'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Anthony', 'last_name': 'DeFilippo', 'permalink': 'anthony-defilippo'}}, {'is_past': True, 'title': 'Solution Architect', 'person': {'first_name': 'David', 'last_name': 'Pessis', 'permalink': 'david-pessis'}}, {'is_past': True, 'title': 'Senior PHP Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Rocher', 'permalink': 'scott-rocher'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Eduardo', 'last_name': 'Frias', 'permalink': 'eduardo-frias'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Cindy', 'last_name': 'Gordon', 'permalink': 'cindy-gordon'}}, {'is_past': True, 'title': 'Product Manager & Solution Architect', 'person': {'first_name': 'Jeanette', 'last_name': 'Cajide', 'permalink': 'jeanette-cajide'}}, {'is_past': True, 'title': 'Business Management Consultant', 'person': {'first_name': 'Filippo', 'last_name': 'Satolli', 'permalink': 'filippo-satolli-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mansour', 'last_name': 'Salame', 'permalink': 'mansour-salame'}}, {'is_past': True, 'title': 'Partner, Analytics and Marketing Services', 'person': {'first_name': 'Jay', 'last_name': 'Rampuria', 'permalink': 'jay-rampuria'}}, {'is_past': True, 'title': 'Senior Management Consultant', 'person': {'first_name': 'Dilek', 'last_name': 'Dayinlarli', 'permalink': 'dilek-dayinlarli'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Rafael', 'last_name': 'Anta', 'permalink': 'rafael-anta'}}, {'is_past': True, 'title': 'Manager / Strategy / TMT', 'person': {'first_name': 'Jamyn', 'last_name': 'Edis', 'permalink': 'jamyn-edis'}}, {'is_past': True, 'title': 'Analyst & PMI', 'person': {'first_name': 'Maria', 'last_name': 'Ocampo', 'permalink': 'maria-ocampo'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Will', 'last_name': 'Neale', 'permalink': 'will-neale'}}, {'is_past': True, 'title': 'Stage', 'person': {'first_name': 'Alessio', 'last_name': 'Bonu', 'permalink': 'alessio-bonu'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jerome', 'last_name': 'Touze', 'permalink': 'jerome-touze'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Mattias', 'last_name': 'Danielsson', 'permalink': 'mattias-danielsson'}}, {'is_past': True, 'title': 'Managing Partner', 'person': {'first_name': 'Mike', 'last_name': 'Donohue', 'permalink': 'mike-donohue'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Scott', 'last_name': 'Covington', 'permalink': 'scott-covington'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Olivier', 'last_name': 'Philippe', 'permalink': 'olivier-philippe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Stephan', 'last_name': 'Widmer', 'permalink': 'stephan-widmer'}}, {'is_past': True, 'title': 'Change Management Analyst', 'person': {'first_name': 'In', 'last_name': 'Hsieh', 'permalink': 'in-hsieh'}}, {'is_past': True, 'title': 'Finance Senior Manager', 'person': {'first_name': 'Todd', 'last_name': 'Getz', 'permalink': 'todd-getz'}}, {'is_past': True, 'title': 'Director, Product Marketing and International Business Development', 'person': {'first_name': 'Edward', 'last_name': 'Vesely', 'permalink': 'edward-vesely'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Ben', 'last_name': 'Kartzman', 'permalink': 'ben-kartzman-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Jacobson', 'permalink': 'scott-jacobson-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Maurice', 'last_name': 'Martin', 'permalink': 'maurice-martin'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Brickley', 'permalink': 'stephen-brickley'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jennifer', 'last_name': 'Kyriakakis', 'permalink': 'jennifer-kyriakakis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Collin', 'last_name': 'Willis', 'permalink': 'collin-willis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Eran', 'last_name': 'Dekel', 'permalink': 'eran-dekel'}}, {'is_past': True, 'title': 'Global Supply Chain practice', 'person': {'first_name': 'Ram', 'last_name': 'Menon', 'permalink': 'ram-menon'}}, {'is_past': True, 'title': 'Executive Partner', 'person': {'first_name': 'Ramon', 'last_name': 'Colomina', 'permalink': 'ramon-colomina'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'David', 'last_name': 'Donabedian', 'permalink': 'david-donabedian'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Lander', 'last_name': 'Coronado-Garcia', 'permalink': 'lander-coronado-garcia'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bruce', 'last_name': 'Goldstein', 'permalink': 'bruce-goldstein-3'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Mendelson', 'permalink': 'jason-mendelson'}}, {'is_past': True, 'title': 'multi-million dollar engagements for both the U.S. Postal Service and the Department of Defense.', 'person': {'first_name': 'Jason', 'last_name': 'Simpson', 'permalink': 'jason-simpson-2'}}, {'is_past': True, 'title': 'Consultant, Strategy and Shareholder Value Groups', 'person': {'first_name': 'Jessica', 'last_name': 'Alter', 'permalink': 'jessica-alter'}}, {'is_past': True, 'title': 'Client Services Director', 'person': {'first_name': 'Steve', 'last_name': 'Meade', 'permalink': 'steve-meade'}}, {'is_past': True, 'title': 'Managing Partner, Products North America', 'person': {'first_name': 'Tom', 'last_name': 'Spann', 'permalink': 'tom-spann'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'John', 'last_name': 'Rollins', 'permalink': 'john-rollins'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Skip', 'last_name': 'Besthoff', 'permalink': 'skip-besthoff'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Yang', 'permalink': 'andy-yang'}}, {'is_past': True, 'title': 'Consulting Analyst', 'person': {'first_name': 'Martin', 'last_name': 'Poschenrieder', 'permalink': 'martin-poschenrieder'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jon', 'last_name': 'Herstein', 'permalink': 'jon-herstein'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mark', 'last_name': 'Roberge', 'permalink': 'mark-roberge'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Michael', 'last_name': 'Hart', 'permalink': 'michael-hart'}}, {'is_past': True, 'title': 'Business consulting firms', 'person': {'first_name': 'Chris', 'last_name': 'Nielsen', 'permalink': 'chris-nielsen'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Scott', 'last_name': 'Hintz', 'permalink': 'scott-hintz'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'Hinshaw', 'permalink': 'john-hinshaw'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Thiago', 'last_name': 'Teodoro', 'permalink': 'thiago-teodoro-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Holger', 'last_name': 'Luedorf', 'permalink': 'holger-luedorf'}}, {'is_past': True, 'title': 'Client Account HR Lead', 'person': {'first_name': 'Kathy', 'last_name': 'Humphreys', 'permalink': 'kathy-humphreys'}}, {'is_past': True, 'title': 'Management Consultant, Digital Strategy', 'person': {'first_name': 'Ceres', 'last_name': 'Chua', 'permalink': 'ceres-chua'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Patrick', 'last_name': 'McCormack', 'permalink': 'patrick-mccormack'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brad', 'last_name': 'Mattick', 'permalink': 'brad-mattick'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thomas', 'last_name': 'Depuydt', 'permalink': 'thomas-depuydt'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Vince', 'last_name': 'Monical', 'permalink': 'vince-monical'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Stefanos', 'last_name': 'Missailidis', 'permalink': 'stefanos-missailidis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jonathan', 'last_name': 'King', 'permalink': 'jonathan-king'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bimal', 'last_name': 'Shah', 'permalink': 'bimal-shah'}}, {'is_past': True, 'title': 'ets', 'person': {'first_name': 'Marco', 'last_name': 'Visibelli', 'permalink': 'marco-visibelli'}}, {'is_past': True, 'title': 'Summer Analyst - Accenture Technology Labs', 'person': {'first_name': 'Steven', 'last_name': 'Bong', 'permalink': 'steven-bong'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Farhan', 'last_name': 'Yasin', 'permalink': 'farhan-yasin'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'John', 'last_name': 'Brennan', 'permalink': 'john-brennan'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dan', 'last_name': 'Goldsmith', 'permalink': 'dan-goldsmith'}}, {'is_past': True, 'title': 'Global Strategic Marketing, Positioning & Insights Lead', 'person': {'first_name': 'Rika', 'last_name': 'Nakazawa', 'permalink': 'rika-nakazawa'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Nisan', 'last_name': 'Gabbay', 'permalink': 'nisan-gabbay'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Pierre', 'last_name': 'Nanterme', 'permalink': 'pierre-nanterme'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Jorge', 'last_name': 'Benitez', 'permalink': 'jorge-benitez'}}, {'is_past': True, 'title': 'BPM Business Development', 'person': {'first_name': 'Ron', 'last_name': 'Rock', 'permalink': 'ron-rock'}}, {'is_past': True, 'title': 'Engagement Manager', 'person': {'first_name': 'James', 'last_name': 'Speer', 'permalink': 'james-spear'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Steve', 'last_name': 'Surdu', 'permalink': 'steve-surdu'}}, {'is_past': True, 'title': 'Sr. Mgr - Strategy Consulting', 'person': {'first_name': 'Kevin', 'last_name': 'Hannan', 'permalink': 'kevin-hannan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'James', 'last_name': 'Hunvanich', 'permalink': 'james-hunvanich'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Urs', 'last_name': 'Haeusler', 'permalink': 'urs-haeusler'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Hunn', 'permalink': 'andy-hunn'}}, {'is_past': True, 'title': 'SAP IS-U Billing Analyst', 'person': {'first_name': 'Sean', 'last_name': 'Antony', 'permalink': 'sean-antony'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Valerie', 'last_name': 'Layman', 'permalink': 'valerie-layman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bzur', 'last_name': 'Haun', 'permalink': 'bzur-haun'}}, {'is_past': True, 'title': 'Praktikant', 'person': {'first_name': 'Arne', 'last_name': 'Horn', 'permalink': 'arne-horn'}}, {'is_past': True, 'title': 'Several assignments', 'person': {'first_name': 'Milan', 'last_name': 'Schnorrer', 'permalink': 'milan-schnorrer'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Rodney', 'last_name': 'Rogers', 'permalink': 'rodney-rogers'}}, {'is_past': True, 'title': 'North American Practice Lead, Data Management & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Ackerman', 'permalink': 'michael-ackerman'}}, {'is_past': True, 'title': 'Global Managing Director', 'person': {'first_name': 'Andrew', 'last_name': 'Zimmerman', 'permalink': 'andrew-zimmerman'}}, {'is_past': True, 'title': 'Partner, Supply Chain Management', 'person': {'first_name': 'Randall', 'last_name': 'E. Berry', 'permalink': 'randall-e-berry'}}, {'is_past': True, 'title': 'Manager, Strategy and Business Architecture Group', 'person': {'first_name': 'Nick', 'last_name': 'Vaney', 'permalink': 'nick-vaney'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Blosl', 'permalink': 'matthew-blosl'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'James', 'last_name': 'Beer', 'permalink': 'james-beer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Simon', 'last_name': 'Blanks', 'permalink': 'simon-blanks'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matthew', 'last_name': 'Goldstein', 'permalink': 'matthew-goldstein'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Adam', 'last_name': 'Siegel', 'permalink': 'adam-siegel'}}, {'is_past': True, 'title': 'Business Intelligence Consultant', 'person': {'first_name': 'Patrick', 'last_name': 'Carolan', 'permalink': 'patrick-carolan'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Olivier', 'last_name': 'Duprez', 'permalink': 'olivier-duprez'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Carolyn', 'last_name': 'Everson', 'permalink': 'carolyn-everson'}}, {'is_past': True, 'title': 'Experienced Management Consultant', 'person': {'first_name': 'Ramesh', 'last_name': 'Venugopal', 'permalink': 'ramesh-venugopal'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'J.', 'last_name': 'Lawrence Podmolik', 'permalink': 'j-lawrence-podmolik'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Yo', 'last_name': 'Koga', 'permalink': 'yo-koga'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Julie', 'last_name': 'Sandler', 'permalink': 'julie-sandler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Mark', 'last_name': 'Pierce', 'permalink': 'mark-pierce'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Frank F.', 'last_name': 'Britt', 'permalink': 'frank-f-britt'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Leah', 'last_name': 'Jones', 'permalink': 'leah-jones'}}, {'is_past': True, 'title': 'Senior Programmer', 'person': {'first_name': 'Rafael', 'last_name': 'Heringer', 'permalink': 'rafael-heringer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Mark', 'last_name': \"D'Agostino\", 'permalink': 'mark-dagostino'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Mark', 'last_name': 'Hadland', 'permalink': 'mark-hadland'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Drew', 'last_name': 'Kane', 'permalink': 'drew-kane'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Kelly', 'last_name': 'Ungerman', 'permalink': 'kelly-ungerman'}}, {'is_past': True, 'title': 'Strategy Management Consultant', 'person': {'first_name': 'Stephen', 'last_name': 'Bernardez', 'permalink': 'stephen-bernardez'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Chelsea', 'last_name': 'Stoner', 'permalink': 'chelsea-stoner'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Andy', 'last_name': 'Macey', 'permalink': 'andy-macey'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Trevor', 'last_name': 'Oelschig', 'permalink': 'trevor-oelschig'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Michael', 'last_name': 'J. Owsiany', 'permalink': 'michael-j-owsiany'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Isai', 'last_name': 'Peimer', 'permalink': 'isai-peimer'}}, {'is_past': True, 'title': 'Sales Lead', 'person': {'first_name': 'Matt', 'last_name': 'Needham', 'permalink': 'matt-needham'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brett', 'last_name': 'Wilson', 'permalink': 'brett-wilson'}}, {'is_past': True, 'title': 'HR Manager', 'person': {'first_name': 'Alice', 'last_name': 'Barriciello', 'permalink': 'alice-barriciello'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Bruno', 'last_name': 'Perreault', 'permalink': 'bruno-perreault'}}, {'is_past': True, 'title': 'Strategy Consulting', 'person': {'first_name': 'Ankur', 'last_name': 'Jain', 'permalink': 'ankur-jain-3'}}, {'is_past': True, 'title': 'Manager, Strategy Formulation', 'person': {'first_name': 'David', 'last_name': 'Popler', 'permalink': 'david-popler'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Chris', 'last_name': 'Seib', 'permalink': 'chris-seib'}}, {'is_past': True, 'title': 'Executive, Healthcare and Life Sciences Practice', 'person': {'first_name': 'Bill', 'last_name': 'Marvin', 'permalink': 'bill-marvin'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Stefano', 'last_name': 'Carrara', 'permalink': 'stefano-carrara'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Dickon', 'last_name': 'Waterfield', 'permalink': 'dickon-waterfield'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Marc', 'last_name': 'Doering', 'permalink': 'marc-doering'}}, {'is_past': True, 'title': 'Sr Consultant', 'person': {'first_name': 'Lane', 'last_name': 'Franks', 'permalink': 'lane-franks'}}, {'is_past': True, 'title': 'Siebel Consultant', 'person': {'first_name': 'Douglas', 'last_name': 'Correa', 'permalink': 'douglas-correa-2'}}, {'is_past': True, 'title': 'International Sales Director', 'person': {'first_name': 'Chris', 'last_name': 'Mitchell', 'permalink': 'chris-mitchell'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kerry', 'last_name': 'Rupp', 'permalink': 'kerry-rupp'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Paul', 'last_name': 'Pieper', 'permalink': 'paul-pieper'}}, {'is_past': True, 'title': 'Director of Human Performance', 'person': {'first_name': 'Daya', 'last_name': 'Kori', 'permalink': 'daya-kori'}}, {'is_past': True, 'title': 'Manager, Technology R&D Organization', 'person': {'first_name': 'Harsh', 'last_name': 'Patel', 'permalink': 'harsh-patel-2'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Teresa', 'last_name': 'Weipert', 'permalink': 'teresa-weipert'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Jones', 'permalink': 'matt-jones-2'}}, {'is_past': True, 'title': 'Sr Manager', 'person': {'first_name': 'David', 'last_name': 'Adams', 'permalink': 'david-adams-5'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Supriya', 'last_name': 'Singh', 'permalink': 'supriya-singh'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Aditya', 'last_name': 'Sanghi', 'permalink': 'aditya-sanghi'}}, {'is_past': True, 'title': 'Manager, Strategic Services Group - Communications and High Tech Practice', 'person': {'first_name': 'Gary', 'last_name': 'Warzynski', 'permalink': 'gary-warzynski'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thad', 'last_name': 'White', 'permalink': 'thad-white'}}, {'is_past': True, 'title': 'Business Intelligence Analyst', 'person': {'first_name': 'Jacob', 'last_name': 'Hansen', 'permalink': 'jacob-hansen'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Philippe', 'last_name': 'Gire', 'permalink': 'philippe-gire'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'James', 'last_name': 'McElwee', 'permalink': 'james-mcelwee'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Grieve', 'permalink': 'kevin-grieve'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Will', 'last_name': 'Hunsinger', 'permalink': 'will-hunsinger'}}, {'is_past': True, 'title': 'IT Analyst', 'person': {'first_name': 'Gerardo', 'last_name': 'Barroeta', 'permalink': 'gerardo-barroeta'}}, {'is_past': True, 'title': 'Technical Architect, Experienced Consultant', 'person': {'first_name': 'Cameron', 'last_name': 'Logan', 'permalink': 'cameron-logan'}}, {'is_past': True, 'title': 'Staff Consultant - Latin America', 'person': {'first_name': 'Turan', 'last_name': 'Sahinkaya', 'permalink': 'turan-sahinkaya'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Esben', 'last_name': 'Friis-Jensen', 'permalink': 'esben-friis-jensen'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Lisa', 'last_name': 'Agona', 'permalink': 'lisa-agona'}}, {'is_past': True, 'title': 'Member, Strategy Practice Consulting Team', 'person': {'first_name': 'Hari', 'last_name': 'Menon', 'permalink': 'hari-menon'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mark', 'last_name': 'Perutz', 'permalink': 'mark-perutz'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Lily', 'last_name': 'Liang', 'permalink': 'lily-liang'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Jason', 'last_name': 'Simeone', 'permalink': 'jason-simeone'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Dan', 'last_name': 'Schulz', 'permalink': 'dan-schulz'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Stan', 'last_name': 'Curtis', 'permalink': 'stan-curtis'}}, {'is_past': True, 'title': 'Global Digital Marketing Manager', 'person': {'first_name': 'Janet', 'last_name': 'McCabe', 'permalink': 'janet-mccabe'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dara', 'last_name': 'Price-Olsen', 'permalink': 'dara-price-olsen'}}, {'is_past': True, 'title': 'Services Delivery Roles', 'person': {'first_name': 'Morgan', 'last_name': 'McReynolds', 'permalink': 'morgan-mcreynolds'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kim', 'last_name': 'Pilman', 'permalink': 'kim-pilman'}}, {'is_past': True, 'title': 'Developer, Designer & Project Manager', 'person': {'first_name': 'Peter', 'last_name': 'Classon', 'permalink': 'peter-classon'}}, {'is_past': True, 'title': 'Strategy & Management Consultant', 'person': {'first_name': 'LIONEL', 'last_name': 'CARNOT', 'permalink': 'lionel-carnot'}}, {'is_past': True, 'title': 'Retail Industry team', 'person': {'first_name': 'Stephen', 'last_name': 'Morris', 'permalink': 'stephen-morris'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Damon', 'last_name': 'Lockwood', 'permalink': 'damon-lockwood'}}, {'is_past': True, 'title': 'Senior Positions', 'person': {'first_name': 'Rajiv', 'last_name': 'Paul', 'permalink': 'rajiv-paul'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Troy', 'last_name': 'Pliska', 'permalink': 'troy-pliska'}}, {'is_past': True, 'title': 'Global Managing Partner, Retail Practice', 'person': {'first_name': 'Robert', 'last_name': 'A. Willett', 'permalink': 'robert-a-willett'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Pedro', 'last_name': 'Ribeiro Santos', 'permalink': 'pedro-ribeiro-santos'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Peter', 'last_name': 'Brooks Johnson', 'permalink': 'peter-brooks-johnson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Barry', 'last_name': 'Yates', 'permalink': 'barry-yates'}}, {'is_past': True, 'title': 'Partner / Member Advisory Board', 'person': {'first_name': 'John', 'last_name': 'Bean', 'permalink': 'john-bean'}}, {'is_past': True, 'title': 'Director, Operations & Finance', 'person': {'first_name': 'Ken', 'last_name': 'Guthrie', 'permalink': 'ken-guthrie'}}, {'is_past': True, 'title': 'Associate Partner, Strategic Services practice', 'person': {'first_name': 'Mick', 'last_name': 'Slattery', 'permalink': 'mick-slattery'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Aziz', 'last_name': 'Virani', 'permalink': 'aziz-virani'}}, {'is_past': True, 'title': 'MD, Industries & Market Innovation', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Head, Public Service & Health (formerly Government) Operating Group', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': True, 'title': 'Auditor', 'person': {'first_name': 'Nicola', 'last_name': 'Downes', 'permalink': 'nicola-downes'}}, {'is_past': True, 'title': 'Manager of Technology Integration Solutions', 'person': {'first_name': 'Rob', 'last_name': 'Leach', 'permalink': 'rob-leach'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Rydell', 'permalink': 'john-rydell'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ramzi', 'last_name': 'AbdelJaber', 'permalink': 'ramzi-abdeljaber'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Venkat', 'last_name': 'Gattamaneni', 'permalink': 'venkat-gattamaneni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Claudio', 'last_name': 'Stabon', 'permalink': 'claudio-stabon'}}, {'is_past': True, 'title': 'Consultant, Communications & High Tech Market Unit', 'person': {'first_name': 'Olivia', 'last_name': 'Garfield', 'permalink': 'olivia-garfield'}}, {'is_past': True, 'title': 'Executive Partner', 'person': {'first_name': 'Jorg', 'last_name': 'Heinemann', 'permalink': 'jorg-heinemann'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Ginal', 'permalink': 'steve-ginal'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Thomas', 'last_name': 'Nikolopulos', 'permalink': 'thomas-nikolopulos'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Russell', 'last_name': 'Joyner', 'permalink': 'russell-joyner'}}, {'is_past': True, 'title': 'Management Teams', 'person': {'first_name': 'Chris', 'last_name': 'Hafenscher', 'permalink': 'chris-hafenscher'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Beth', 'last_name': 'Murphy', 'permalink': 'beth-murphy'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'J.', 'last_name': \"Patrick O'Halloran\", 'permalink': 'j-patrick-ohalloran'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Robert', 'last_name': 'Jones', 'permalink': 'robert-jones-2'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Kerry', 'last_name': 'Stover', 'permalink': 'kerry-stover'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Ricks', 'permalink': 'michael-ricks'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'A.', 'last_name': 'Craig Asher', 'permalink': 'a-craig-asher'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'John', 'last_name': 'Banczak', 'permalink': 'john-banczak'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Dwayne', 'last_name': 'Nesmith', 'permalink': 'dwayne-nesmith'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Sevitz', 'permalink': 'adrian-sevitz'}}, {'is_past': True, 'title': 'Consultant Technology', 'person': {'first_name': 'Laurent', 'last_name': 'Ruben', 'permalink': 'laurent-ruben'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ullash', 'last_name': 'Tiwari', 'permalink': 'ullash-tiwari'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Erick', 'last_name': 'Arndt', 'permalink': 'erick-arndt'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Reismanis', 'permalink': 'scott-reismanis'}}, {'is_past': True, 'title': 'Strategy Consultant, Telecoms & High Tech', 'person': {'first_name': 'Ed', 'last_name': 'Hodges', 'permalink': 'ed-hodges'}}, {'is_past': True, 'title': 'Open Source Consultant', 'person': {'first_name': 'Luc', 'last_name': 'Byhet', 'permalink': 'luc-byhet'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Pearson', 'permalink': 'jeff-pearson'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Howard', 'last_name': 'Koenig', 'permalink': 'howard-koenig'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Giuseppe', 'last_name': 'De Giorgi', 'permalink': 'giuseppe-de-giorgi'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tom', 'last_name': 'Spengler', 'permalink': 'tom-spengler-2'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Goncalo', 'last_name': 'Reis', 'permalink': 'gonalo-reis'}}, {'is_past': True, 'title': 'Managing Partner, Strategy', 'person': {'first_name': 'Steven', 'last_name': 'Lamont', 'permalink': 'steven-lamont'}}, {'is_past': True, 'title': 'Enterprise Architecture', 'person': {'first_name': 'Guilherme', 'last_name': 'Souza', 'permalink': 'guilherme-souza'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jamey', 'last_name': 'Jeff', 'permalink': 'jamey-jeff'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'Liska', 'permalink': 'john-liska'}}, {'is_past': True, 'title': 'Analyst Programmer', 'person': {'first_name': 'Rajneesh', 'last_name': 'Verma', 'permalink': 'rajneesh-verma'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Oriol', 'last_name': 'Penya Sanromà', 'permalink': 'oriol-penya-sanrom'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Ritu', 'last_name': 'Raj', 'permalink': 'ritu-raj'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Christopher', 'last_name': 'Esclapez', 'permalink': 'christopher-esclapez'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alexi', 'last_name': 'Suvacioglu', 'permalink': 'alexi-suvacioglu'}}, {'is_past': True, 'title': 'Internet Marketing Consultant', 'person': {'first_name': 'Antonio', 'last_name': 'Altamirano', 'permalink': 'antonio-altamirano'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Cory', 'last_name': 'Jones', 'permalink': 'cory-jones'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Will', 'last_name': 'Miceli', 'permalink': 'will-miceli'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Martin', 'last_name': 'Mackay', 'permalink': 'martin-mackay'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Kevin', 'last_name': 'Malik', 'permalink': 'kevin-malik'}}, {'is_past': True, 'title': 'Manager - Shared Service Centre', 'person': {'first_name': 'Paul', 'last_name': 'Monelly', 'permalink': 'paul-monelly'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Hnatiuk', 'permalink': 'steve-hnatiuk'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Rodrigo', 'last_name': 'Prudencio', 'permalink': 'rodrigo-prudencio'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Amrit', 'last_name': 'Kirpalani', 'permalink': 'amrit-kirpalani'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Peebler', 'permalink': 'andy-peebler'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Lawrence', 'last_name': 'Leisure', 'permalink': 'lawrence-leisure'}}, {'is_past': True, 'title': 'Process Analyst', 'person': {'first_name': 'TJ', 'last_name': 'Mahony', 'permalink': 'tj-mahony'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Rik', 'last_name': 'Vandevenne', 'permalink': 'rik-vandevenne'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Michael', 'last_name': 'Piacenza', 'permalink': 'michael-piacenza'}}, {'is_past': True, 'title': 'System Integration Consultant', 'person': {'first_name': 'Jacques', 'last_name': 'Marine', 'permalink': 'jacques-marine'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Savitz', 'permalink': 'andrew-savitz'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jim', 'last_name': 'Cyb', 'permalink': 'jim-cyb'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kirk', 'last_name': 'Wolfe', 'permalink': 'kirk-wolfe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Ed', 'last_name': 'Hofffman', 'permalink': 'ed-hofffman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Joe', 'last_name': 'Terry', 'permalink': 'joe-terry'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Stewart', 'last_name': 'Smythe', 'permalink': 'stewart-smythe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Pedro', 'last_name': 'Cerdeira', 'permalink': 'pedro-cerdeira'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Ramirez', 'permalink': 'alex-ramirez'}}, {'is_past': True, 'title': 'Senior consultant', 'person': {'first_name': 'Michael', 'last_name': 'Levit', 'permalink': 'michael-levit'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Clarissa', 'last_name': 'Riggins', 'permalink': 'clarissa-riggins'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Clint', 'last_name': 'Dickson', 'permalink': 'clint-dickson'}}, {'is_past': True, 'title': 'Senior Analyst', 'person': {'first_name': 'Neal', 'last_name': 'Mohan', 'permalink': 'neal-mohan'}}, {'is_past': True, 'title': 'Consultant Developer', 'person': {'first_name': 'Cyndi', 'last_name': 'Mitchell', 'permalink': 'cyndi-mitchell'}}, {'is_past': True, 'title': 'Managing Partner, North American Life Sciences', 'person': {'first_name': 'Amy', 'last_name': 'Loftus', 'permalink': 'amy-loftus'}}, {'is_past': True, 'title': 'Senior Strategy Consultant', 'person': {'first_name': 'David', 'last_name': 'J. Kim', 'permalink': 'david-j-kim'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Denis', 'last_name': 'Bernaert', 'permalink': 'denis-bernaert'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Aparna', 'last_name': 'Kuttuva', 'permalink': 'aparna-kuttuva'}}, {'is_past': True, 'title': 'Enterprise Architect', 'person': {'first_name': 'Christopher', 'last_name': 'Stancombe', 'permalink': 'christopher-stancombe'}}, {'is_past': True, 'title': 'Worldwide Managing Partner of Market Development and Member of the Executive Committee', 'person': {'first_name': 'Skip', 'last_name': 'Battle', 'permalink': 'skip-battle'}}, {'is_past': True, 'title': 'Developer and Design Lead, Telecom OSS', 'person': {'first_name': 'Scott', 'last_name': 'Regan', 'permalink': 'scott-regan'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Lawson', 'permalink': 'matt-lawson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kamal', 'last_name': 'Fariz Mohamed Mahyuddin', 'permalink': 'kamal-fariz-mohamed-mahyuddin'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Michael', 'last_name': 'Malone', 'permalink': 'michael-malone'}}, {'is_past': True, 'title': 'Summer Analyst', 'person': {'first_name': 'Tian', 'last_name': 'He', 'permalink': 'tian-he'}}, {'is_past': True, 'title': 'Senior Manager, Media & Entertainment', 'person': {'first_name': 'Byron', 'last_name': 'Dumbrill', 'permalink': 'byron-dumbrill'}}, {'is_past': True, 'title': 'Information Systems Consultant', 'person': {'first_name': 'John', 'last_name': 'Abraham', 'permalink': 'john-abraham'}}, {'is_past': True, 'title': 'Senior Research Associate', 'person': {'first_name': 'Neil', 'last_name': 'Sheth', 'permalink': 'neil-sheth'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Neil', 'last_name': 'Sequeira', 'permalink': 'neil-sequeira'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Will', 'last_name': 'Peppo', 'permalink': 'will-peppo'}}, {'is_past': True, 'title': 'Managing Partner, India Delivery Centre Network', 'person': {'first_name': 'Chaitanya', 'last_name': 'M. Kamat', 'permalink': 'chaitanya-m-kamat'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Amanda', 'last_name': 'Keleher', 'permalink': 'amanda-keleher'}}, {'is_past': True, 'title': 'Marketing Strategy Executive', 'person': {'first_name': 'Khurrum', 'last_name': 'Malik', 'permalink': 'khurrum-malik'}}, {'is_past': True, 'title': 'Mangaement Consultant', 'person': {'first_name': 'Putri', 'last_name': 'Nurul Ida', 'permalink': 'putri-nurul-ida'}}, {'is_past': True, 'title': 'Research Programmer at Accenture Technology Labs', 'person': {'first_name': 'Brandon', 'last_name': 'Harvey', 'permalink': 'brandon-harvey'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dan', 'last_name': 'Killeen', 'permalink': 'dan-killeen'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Marco', 'last_name': 'Visibelli', 'permalink': 'marco-visibelli'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brian', 'last_name': 'Bispala', 'permalink': 'brian-bispala'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thomas', 'last_name': 'Holl', 'permalink': 'thomas-holl'}}, {'is_past': True, 'title': 'application developer', 'person': {'first_name': 'Yosi', 'last_name': 'Glick', 'permalink': 'yossi-glick'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Longo', 'permalink': 'brian-longo'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Eric', 'last_name': 'Browne', 'permalink': 'eric-browne'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Eunice', 'last_name': 'Yu', 'permalink': 'eunice-yu'}}, {'is_past': True, 'title': 'Director, Communication, Media and Technology / Financial Services', 'person': {'first_name': 'Frank', 'last_name': 'Vaculin', 'permalink': 'frank-vaculin'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Michael', 'last_name': 'Katz', 'permalink': 'michael-katz'}}, {'is_past': True, 'title': 'Senior Consultant – Products/Information and Technology Strategy Practices', 'person': {'first_name': 'Chris', 'last_name': 'Kibarian', 'permalink': 'chris-kibarian'}}, {'is_past': True, 'title': 'Associate Partner, Electronics and High Tech Practice', 'person': {'first_name': 'Michael', 'last_name': 'Frey', 'permalink': 'michael-frey'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Doug', 'last_name': 'Petkanics', 'permalink': 'doug-petkanics'}}, {'is_past': True, 'title': 'Senior Consultant, Strategy Services', 'person': {'first_name': 'Linda', 'last_name': 'Shaffer', 'permalink': 'linda-shaffer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Mark', 'last_name': 'Orttung', 'permalink': 'mark-orttung'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Christine', 'last_name': 'Turcuato Gutierrez', 'permalink': 'christine-turcuato-gutierrez'}}, {'is_past': True, 'title': 'Retail Consultant', 'person': {'first_name': 'Louise', 'last_name': 'Mullock', 'permalink': 'louise-mullock'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Paul', 'last_name': 'Lee', 'permalink': 'paul-lee'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Ed', 'last_name': 'Lang', 'permalink': 'ed-lang-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Evan', 'last_name': 'Ginsburg', 'permalink': 'evan-ginsburg'}}, {'is_past': True, 'title': 'Architect, SOA', 'person': {'first_name': 'Manish', 'last_name': 'Pandit', 'permalink': 'manish-pandit'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Pierre', 'last_name': 'Hennes', 'permalink': 'pierre-hennes'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Ray', 'last_name': 'Smith', 'permalink': 'ray-smith-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Alisdair', 'last_name': 'Faulkner', 'permalink': 'alisdair-faulkner'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Gregory', 'last_name': 'J. Owens', 'permalink': 'gregory-j-owens'}}, {'is_past': True, 'title': 'Technology Analyst', 'person': {'first_name': 'Adriane', 'last_name': 'Musuneggi', 'permalink': 'adriane-musuneggi'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Rob', 'last_name': 'Chandra', 'permalink': 'rob-chandra'}}, {'is_past': True, 'title': 'Consultant,,Analyst', 'person': {'first_name': 'Jason', 'last_name': 'Provisor', 'permalink': 'jason-provisor'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Will', 'last_name': 'Prendergast', 'permalink': 'will-prendergast'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Adam', 'last_name': 'Kanouse', 'permalink': 'adam-kanouse'}}, {'is_past': True, 'title': 'Change Management', 'person': {'first_name': 'Sophia', 'last_name': 'Kim', 'permalink': 'sophia-kim'}}, {'is_past': True, 'title': 'Developing Research', 'person': {'first_name': 'Brain', 'last_name': 'Leslie', 'permalink': 'brain-leslie'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Nate', 'last_name': 'Kontny', 'permalink': 'nate-kontny'}}, {'is_past': True, 'title': 'Staff', 'person': {'first_name': 'Jeffrey', 'last_name': 'Leget', 'permalink': 'jeffrey-leget'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Dintenfass', 'permalink': 'nathan-dintenfass'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Bokor', 'permalink': 'andrew-bokor'}}, {'is_past': True, 'title': 'Summer Analyst', 'person': {'first_name': 'Jason', 'last_name': 'Yeh', 'permalink': 'jason-yeh-2'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Sanjay', 'last_name': 'Wahi', 'permalink': 'sanjay-wahi'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Lettmann', 'permalink': 'jason-lettmann'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'James', 'last_name': 'Miller', 'permalink': 'james-miller-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tracy', 'last_name': 'Randall', 'permalink': 'tracy-randall'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Maria', 'last_name': 'Callahan', 'permalink': 'maria-callahan'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Deon', 'last_name': 'van Heerden', 'permalink': 'deon-van-heerden'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Drew', 'last_name': 'Martin', 'permalink': 'drew-martin'}}, {'is_past': True, 'title': 'Business Analyst and Project Management Consultant', 'person': {'first_name': 'John', 'last_name': 'Ciecholewski', 'permalink': 'john-ciecholewski'}}, {'is_past': True, 'title': 'consultant', 'person': {'first_name': 'Darren', 'last_name': 'Black', 'permalink': 'darren-black'}}, {'is_past': True, 'title': 'Senior Management Consultant, Corporate Finance Group', 'person': {'first_name': 'Talia', 'last_name': 'Rafaeli', 'permalink': 'talia-rafaeli'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Ruchika', 'last_name': 'Kumar', 'permalink': 'ruchika-kumar'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Leigh', 'permalink': 'andrew-leigh'}}, {'is_past': True, 'title': 'Executive Assistant', 'person': {'first_name': 'Laurie', 'last_name': 'Femia', 'permalink': 'laurie-femia'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Tim', 'last_name': 'Curran', 'permalink': 'tim-curran-3'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Liz', 'last_name': 'Devine', 'permalink': 'liz-devine'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Gareth', 'last_name': 'Capon', 'permalink': 'gareth-capon'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Primal', 'last_name': 'Sharma', 'permalink': 'primal-sharma'}}, {'is_past': True, 'title': 'Developer (Gap Year)', 'person': {'first_name': 'Tom', 'last_name': 'Godber', 'permalink': 'tom-godber'}}, {'is_past': True, 'title': 'Senior Staff', 'person': {'first_name': 'Flint', 'last_name': 'A. Lane', 'permalink': 'flint-a-lane'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Colin', 'last_name': 'T. Mistele', 'permalink': 'colin-t-mistele'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Robert', 'last_name': 'A. Lauer', 'permalink': 'robert-a-lauer'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Lin', 'permalink': 'jeff-lin-5'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Mark', 'last_name': 'Krapels', 'permalink': 'mark-krapels'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Edoardo', 'last_name': 'Luciani', 'permalink': 'edoardo-luciani'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Dena', 'last_name': 'Trujillo', 'permalink': 'dena-trujillo'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Cole', 'last_name': 'Harper', 'permalink': 'cole-harper'}}, {'is_past': True, 'title': 'Consulting Practice', 'person': {'first_name': 'Nick', 'last_name': 'Hartman', 'permalink': 'nick-hartman'}}, {'is_past': True, 'title': 'Director, Market and Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Rossie', 'permalink': 'chris-rossie'}}, {'is_past': True, 'title': 'Business Development, North America within Global Analytics Group', 'person': {'first_name': 'John', 'last_name': 'Fraser', 'permalink': 'john-fraser'}}, {'is_past': True, 'title': 'Service Delivery Lead', 'person': {'first_name': 'Manuel', 'last_name': 'Beaudroit', 'permalink': 'manuel-beaudroit'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Gregg', 'last_name': 'Burt', 'permalink': 'gregg-burt'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Damon', 'last_name': 'Clinkscales', 'permalink': 'damon-clinkscales'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Mihir', 'last_name': 'Mehta', 'permalink': 'mihir-mehta'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Tom', 'last_name': 'Englund', 'permalink': 'tom-englund'}}, {'is_past': True, 'title': 'Strategy Consulting', 'person': {'first_name': 'Annie', 'last_name': 'Lin', 'permalink': 'annie-lin'}}, {'is_past': True, 'title': 'IT Project Manager/Sr. Technical Architect', 'person': {'first_name': 'Raghavan', 'last_name': 'Chellappan', 'permalink': 'raghavan-chellappan'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Ravi', 'last_name': 'Mohan', 'permalink': 'ravi-mohan'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Collin', 'last_name': 'West', 'permalink': 'collin-west'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Rebecca', 'last_name': 'Madsen', 'permalink': 'rebecca-madsen'}}, {'is_past': True, 'title': 'Management Consultant (Strategy)', 'person': {'first_name': 'Lisa', 'last_name': 'Bridgett', 'permalink': 'lisa-bridgett'}}, {'is_past': True, 'title': 'Business Intelligence Consultant', 'person': {'first_name': 'Jacob', 'last_name': 'Hansen', 'permalink': 'jacob-hansen'}}, {'is_past': True, 'title': 'Global Client Account HR Lead', 'person': {'first_name': 'Melissa', 'last_name': 'Breakfield', 'permalink': 'melissa-breakfield'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Dain', 'last_name': 'F. DeGroff', 'permalink': 'dain-f-degroff'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Chawanop', 'last_name': 'Witthayaphirak', 'permalink': 'chawanop-witthayaphirak-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Roberts', 'permalink': 'jason-roberts-5'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Jon', 'last_name': 'Schäffer', 'permalink': 'jon-schffer'}}, {'is_past': True, 'title': 'Process Designer', 'person': {'first_name': 'Geoffrey', 'last_name': 'Berthon', 'permalink': 'geoffrey-berthon'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Michael', 'last_name': 'Neal', 'permalink': 'michael-neal-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Meghan', 'last_name': 'Keough', 'permalink': 'meghan-keough'}}, {'is_past': True, 'title': 'Senior manager', 'person': {'first_name': 'Kevin', 'last_name': 'McClain', 'permalink': 'kevin-mcclain'}}, {'is_past': True, 'title': 'Asia region network consulting practice', 'person': {'first_name': 'Omar', 'last_name': 'Hakim', 'permalink': 'omar-hakim'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Ken', 'last_name': 'desGarennes', 'permalink': 'ken-desgarennes'}}, {'is_past': True, 'title': 'Led Initiatives', 'person': {'first_name': 'Doug', 'last_name': 'Marquis', 'permalink': 'doug-marquis'}}, {'is_past': True, 'title': 'Sr. Technology Consultant - New York', 'person': {'first_name': 'Christine', 'last_name': 'Larsen', 'permalink': 'christine-larsen'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Charles', 'last_name': 'Yong', 'permalink': 'charles-yong-2'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'James', 'last_name': 'Gardner', 'permalink': 'james-gardner'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Paul', 'last_name': 'Perleberg', 'permalink': 'paul-perleberg'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Thomas', 'last_name': 'Suk', 'permalink': 'thomas-suk'}}, {'is_past': True, 'title': 'Workday Financials Practice', 'person': {'first_name': 'Brian', 'last_name': 'Wolf', 'permalink': 'brian-wolf'}}, {'is_past': True, 'title': 'IT Consultant', 'person': {'first_name': 'David', 'last_name': 'Lyman', 'permalink': 'david-lyman'}}, {'is_past': True, 'title': 'Sr. Director', 'person': {'first_name': 'Garry', 'last_name': 'Stetser', 'permalink': 'garry-stetser'}}, {'is_past': True, 'title': 'Strategy Partner, Communications & High Tech practice', 'person': {'first_name': 'Daniel', 'last_name': 'Rizer', 'permalink': 'daniel-rizer'}}, {'is_past': True, 'title': 'Consultant, Pharmaceutical R&D', 'person': {'first_name': 'Sam', 'last_name': 'Holliday', 'permalink': 'sam-holliday'}}, {'is_past': True, 'title': 'Business Consultant', 'person': {'first_name': 'Shawn', 'last_name': 'Lu', 'permalink': 'shawn-lu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tor', 'last_name': 'Oystein Repstad', 'permalink': 'tor-ystein-repstad'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Joseph', 'last_name': 'V. Marabito', 'permalink': 'joseph-v-marabito'}}, {'is_past': True, 'title': 'Finance Lead and Startup Controller', 'person': {'first_name': 'Craig', 'last_name': 'Leidlein', 'permalink': 'craig-leidlein'}}, {'is_past': True, 'title': 'Consultant, Technology Div.', 'person': {'first_name': 'Nick', 'last_name': 'McKittrick', 'permalink': 'nick-mckittrick'}}, {'is_past': True, 'title': 'Managing Partner, Financial Services, France and the Global Head of Capital Markets Industry', 'person': {'first_name': 'Salomon', 'last_name': 'Mizrahi', 'permalink': 'salomon-mizrahi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Joel', 'last_name': 'Greensite', 'permalink': 'joel-greensite'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Adam', 'last_name': 'Justice', 'permalink': 'adam-justice'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Florin', 'last_name': 'Rotar', 'permalink': 'florin-rotar'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Eugene', 'last_name': 'Kim', 'permalink': 'eugene-kim-2'}}, {'is_past': True, 'title': 'Client Group Managing Partner', 'person': {'first_name': 'Aziz', 'last_name': 'Virani', 'permalink': 'aziz-virani'}}, {'is_past': True, 'title': 'MD, Management Consulting & Industries - Resources Operating Group', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Consultant, Energy Industry', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Head, Outsourcing & Infrastructure Delivery Group', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': True, 'title': 'Senior Technologist', 'person': {'first_name': 'Scott', 'last_name': 'Rothrock', 'permalink': 'scott-rothrock'}}, {'is_past': True, 'title': 'Managing Director (Finland) ,, Director, Nordic Outsourcing ,, Deputy Managing Director ,, Technology Director', 'person': {'first_name': 'Juho', 'last_name': 'Malmberg', 'permalink': 'juho-malmberg'}}, {'is_past': True, 'title': 'Communications and Technology Analyst', 'person': {'first_name': 'Rachel', 'last_name': 'Hechter', 'permalink': 'rachel-hechter'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Fernanda', 'last_name': 'Gandara', 'permalink': 'fernanda-gandara'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Alan', 'last_name': 'R. Christensen', 'permalink': 'alan-r-christensen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Cindy', 'last_name': 'Bi', 'permalink': 'cindy-bi'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Sanjay', 'last_name': 'Mathur', 'permalink': 'sanjay-mathur'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Robert', 'last_name': 'Auston', 'permalink': 'robert-auston'}}, {'is_past': True, 'title': 'Leadership Role in Accenture’s Logistics Strategy Practice', 'person': {'first_name': 'Irv', 'last_name': 'Grossman', 'permalink': 'irv-grossman'}}, {'is_past': True, 'title': 'Sr Manager', 'person': {'first_name': 'Susanna', 'last_name': 'High', 'permalink': 'susanna-high'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Hakon', 'last_name': 'Kvale', 'permalink': 'hakon-kvale'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mark', 'last_name': 'Bunger', 'permalink': 'mark-bunger'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'J.', 'last_name': \"Patrick O'Halloran\", 'permalink': 'j-patrick-ohalloran'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Feser', 'permalink': 'john-feser'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'Bruce', 'last_name': 'Ballengee', 'permalink': 'bruce-ballengee'}}, {'is_past': True, 'title': 'Director of the Entity Tax Matters Group', 'person': {'first_name': 'Eric', 'last_name': 'C. Green', 'permalink': 'eric-c-green'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Payam', 'last_name': 'Safa', 'permalink': 'payam-safa'}}], 'competitions': [{'competitor': {'name': 'IBM', 'permalink': 'ibm'}}, {'competitor': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, {'competitor': {'name': 'Booz Allen Hamilton', 'permalink': 'booz-allen-hamilton'}}, {'competitor': {'name': 'Deloitte Consulting', 'permalink': 'deloitte-consulting'}}, {'competitor': {'name': 'IBM', 'permalink': 'ibm'}}], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'BuzzConnect ', 'permalink': 'buzzconnect'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://bits.blogs.nytimes.com/2009/10/20/accenture-tries-to-turn-ads-into-gold-with-adchemy/', 'source_description': 'NYTimes', 'raised_amount': 31000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 20, 'company': {'name': 'Adchemy', 'permalink': 'adchemy'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.finsmes.com/2013/07/predixion-software-san-juan-capistrano-ca-based-developer-collaborative-predictive-analytics-solutions-raised-20m-series-financing.html', 'source_description': 'Predixion Software Raises $20 Million in Series C Financing', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 8, 'company': {'name': 'Predixion Software', 'permalink': 'predixion-software'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/07/31/apigee-raises-35m-for-api-management-platform/', 'source_description': 'Apigee Raises $35M For Its API Management Platform', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'company': {'name': 'Apigee', 'permalink': 'apigee'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://biz.yahoo.com/ap/080514/accenture_acquisition.html?.v=1', 'source_description': 'Accenture buying privately held Origin Digital', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Origin Digital', 'permalink': 'origin-digital'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newsroom.accenture.com/article_display.cfm?article_id=4676', 'source_description': 'Accenture to Acquire AddVal Technology Inc., Enhancing Freight-Management Capabilities', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'AddVal Technology', 'permalink': 'addval-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/281730/accenture-acquires-riskcontrol-rio-based-risk-management-company-adding%C2%A0end-end-software', 'source_description': 'Accenture Acquires RiskControl, a Rio-Based Risk Management Company, Adding End-to-End Software Solution to Its Risk Offerings', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 12, 'company': {'name': 'RiskControl', 'permalink': 'riskcontrol'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/accenture-acquire-newspage-leading-provider-080000715.html', 'source_description': 'Accenture to Acquire NewsPage, a Leading Provider of Integrated Distributor Management and Mobility Software for the Consumer Goods Industry', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 30, 'company': {'name': 'NewsPage', 'permalink': 'newspage'}}, {'price_amount': 316000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pulse2.com/2013/05/18/accenture-buying-acquity-group-for-316-million-86190/', 'source_description': 'Accenture Plc (ACN) Acquires E-Commerce Company Acquity Group For $316 Million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 19, 'company': {'name': 'Acquity Group', 'permalink': 'acquity-group'}}, {'price_amount': 375000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businesswire.com/news/home/20131003005465/en/Accenture-Acquire-Procurian-Expanding-Leading-Capabilities-Procurement', 'source_description': ' Accenture to Acquire Procurian Inc., Expanding Its Leading Capabilities in Procurement Business Process Outsourcing ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Procurian', 'permalink': 'procurian'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.trefis.com/stock/acn/articles/148404/accenture-acquires-avventa-to-extend-social-media-marketing-offering/2012-10-12', 'source_description': 'Accenture Acquires avVenta To Extend Social Media Marketing Offering', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 12, 'company': {'name': 'avVenta', 'permalink': 'avventa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newsroom.accenture.com/news/accenture-completes-acquisition-of-duck-creek-technologies.htm', 'source_description': 'Accenture Completes Acquisition of Duck Creek Technologies', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 23, 'company': {'name': 'Duck Creek Technologies', 'permalink': 'duck-creek-technologies'}}], 'offices': [{'description': '', 'address1': '1615 Murray Canyon Road', 'address2': 'Suite 400', 'zip_code': '92108', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '75 Fifth Street NW', 'address2': 'Suite 1100', 'zip_code': '30308', 'city': 'Atlanta', 'state_code': 'GA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '9-10 St Andrew Square', 'address2': '', 'zip_code': 'EH2 2AF', 'city': 'Edinburgh', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '145 King Street West', 'address2': 'Suite 1401', 'zip_code': 'M5H 1J8', 'city': 'Toronto, Ontario', 'state_code': None, 'country_code': 'CAN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 1824, 'description': \"Nokia and Accenture have entered into an agreement for Accenture to acquire Nokia's Symbian Professional Services unit responsible for Symbian OS customer engineering and customer support.\", 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 17, 'source_url': 'http://www.freshnews.com/news/183308/nokias-symbian-professional-services-be-acquired-accenture', 'source_text': '', 'source_description': \"Nokia's Symbian Professional Services to be Acquired by Accenture\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 10210, 'description': 'Accenture Agrees to Acquire CAS Computer Anwendungs-und Systemberatung AG, a Leader in Consumer Products Industry CRM and Mobility Software', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://www.freshnews.com/news/417558/accenture-agrees-acquire-cas-computer-anwendungs-und-systemberatung-ag-leader-consumer-', 'source_text': '', 'source_description': 'Accenture Agrees to Acquire CAS Computer Anwendungs-und Systemberatung AG, a Leader in Consumer Products Industry CRM and Mobility Software', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 30590, 'description': 'ACCENTURE AWARDED HP PARTNER IN EXCELLENCE GLOBAL INNOVATION AWARD FOR CLOUD COMPUTING', 'stoned_year': 2013, 'stoned_month': 2, 'stoned_day': 22, 'source_url': 'http://www.freshnews.com/news/763969/accenture-awarded-hp-partner-excellence-global-innovation-award-cloud-computing', 'source_text': '', 'source_description': 'ACCENTURE AWARDED HP PARTNER IN EXCELLENCE GLOBAL INNOVATION AWARD FOR CLOUD COMPUTING', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 35631, 'description': 'U.S. Air Force Awards Accenture $42 Million Contract for Financial Management System Improvements', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 24, 'source_url': 'http://www.businesswire.com/news/home/20130624005036/en/U.S.-Air-Force-Awards-Accenture-42-Million?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'U.S. Air Force Awards Accenture $42 Million Contract for Financial Management System Improvements', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 43628, 'description': 'Accenture, will purchase Industrial and Embedded Software Solutions from Evopro Group', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 28, 'source_url': 'http://mna.im/segmentview.aspx?ViewModes=6&AcquisitionID=38323', 'source_text': '', 'source_description': 'Accenture, will purchase Industrial and Embedded Software Solutions from Evopro Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 7, 'pub_day': 27, 'stock_symbol': 'NYSE:ACN'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 136], 'assets/images/resized/0011/0968/110968v2-max-150x150.png'], [[250, 227], 'assets/images/resized/0011/0968/110968v2-max-250x250.png'], [[450, 409], 'assets/images/resized/0011/0968/110968v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.accenture.com/Global/About_Accenture/Company_Overview/Executive_Leadership/PierreNanterme.htm', 'title': 'Pierre Nanterme is the new CEO of Accenture'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529a657'), 'name': 'Tata Consultancy Services', 'permalink': 'tata-consultancy-services', 'crunchbase_url': 'http://www.crunchbase.com/company/tata-consultancy-services', 'homepage_url': 'http://www.tcs.com', 'blog_url': '', 'blog_feed_url': 'http://www.tcs.com/rss_feeds/Pages/feed.aspx?f=p', 'twitter_username': 'TCS_News', 'category_code': 'consulting', 'number_of_employees': 200300, 'founded_year': 1968, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tcs, india', 'alias_list': '', 'email_address': 'global.marketing@tcs.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Dec 03 11:25:19 UTC 2008', 'updated_at': 'Thu May 09 11:58:45 UTC 2013', 'overview': '

When you choose Tata Consultancy Services (TCS) as your IT services, consulting and business solutions partner, you will discover what so many global enterprises have already discovered—the power of certainty.

\\n\\n

We are a leader in the global marketplace and among the top 10 technology firms in the world. Our continued rapid growth is a testament to the certainty our clients experience every day. Building on more than 40 years of experience, we add real value to global organizations through domain expertise plus solutions with proven success in the field and world-class service. It’s how we keep you moving forward.

', 'image': {'available_sizes': [[[150, 18], 'assets/images/resized/0003/1888/31888v2-max-150x150.jpg'], [[211, 26], 'assets/images/resized/0003/1888/31888v2-max-250x250.jpg'], [[211, 26], 'assets/images/resized/0003/1888/31888v2-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & President - TCS, Japan K. K.', 'person': {'first_name': 'Richard', 'last_name': 'Dyck', 'permalink': 'richard-dyck'}}, {'is_past': False, 'title': 'CEO & MD', 'person': {'first_name': 'N', 'last_name': 'Chandrasekaran', 'permalink': 'n-chandrasekaran'}}, {'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Ratan', 'last_name': 'N Tata', 'permalink': 'ratan-n-tata'}}, {'is_past': False, 'title': 'Vice-Chairman', 'person': {'first_name': 'S.', 'last_name': 'Ramadorai', 'permalink': 's-ramadorai'}}, {'is_past': False, 'title': 'Systems Engineer', 'person': {'first_name': 'Abdul', 'last_name': 'J', 'permalink': 'abdul-jaleel-kk'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Paras', 'last_name': 'Arora', 'permalink': 'paras-arora'}}, {'is_past': False, 'title': 'Principal', 'person': {'first_name': 'Shikrant', 'last_name': 'N. Pathak', 'permalink': 'shikrant-n-pathak'}}, {'is_past': False, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Rajesh', 'last_name': 'Rathod', 'permalink': 'rajesh-rathod'}}, {'is_past': False, 'title': 'Alliance Head - IBM Business Analytics Solutions', 'person': {'first_name': 'Ram', 'last_name': 'Mohan', 'permalink': 'ram-mohan-2'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'S.', 'last_name': 'Ramadorai', 'permalink': 's-ramadorai'}}, {'is_past': True, 'title': 'Astt. Hardware Engineer', 'person': {'first_name': 'Vibhor', 'last_name': 'Jain', 'permalink': 'vibhor-jain'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kruttik', 'last_name': 'Aggarwal', 'permalink': 'kruttik-aggarwal'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Ashwin', 'last_name': 'Singh', 'permalink': 'ashwin-singh'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Abhishek', 'last_name': 'Sant', 'permalink': 'abhishek-sant'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Sunny', 'last_name': 'Malhi', 'permalink': 'sunny-malhi'}}, {'is_past': True, 'title': 'Asst. Consultant', 'person': {'first_name': 'Sridhar', 'last_name': 'Vutukuri', 'permalink': 'sridhar-vutukuri'}}, {'is_past': True, 'title': 'Assistant Systems Analyst', 'person': {'first_name': 'Neelakantan', 'last_name': 'Natrajan', 'permalink': 'neelakantan-natrajan'}}, {'is_past': True, 'title': 'Systems Analyst', 'person': {'first_name': 'Vineet', 'last_name': 'Sharma', 'permalink': 'vineet-sharma'}}, {'is_past': True, 'title': 'Sr. Engineer', 'person': {'first_name': 'Jayesh', 'last_name': 'Bhayani', 'permalink': 'jayesh-bhayani'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Sonia', 'last_name': 'Ahuja', 'permalink': 'sonia-ahuja'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Marcelo', 'last_name': 'Vaccaro', 'permalink': 'marcelo-vaccaro'}}, {'is_past': True, 'title': 'Assoc Consultant / Group Manager', 'person': {'first_name': 'Suhas', 'last_name': 'Gudihal', 'permalink': 'suhas-gudihal'}}, {'is_past': True, 'title': 'ERP', 'person': {'first_name': 'Vinay', 'last_name': 'Bhardwaj', 'permalink': 'vinay-bhardwaj'}}, {'is_past': True, 'title': 'Team Lead - PLM (Engineering Services)', 'person': {'first_name': 'Renji', 'last_name': 'John', 'permalink': 'renji-john'}}, {'is_past': True, 'title': 'Technical Lead & Project Manager', 'person': {'first_name': 'Ashok', 'last_name': 'Agarwal', 'permalink': 'ashok-agarwal'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Krish', 'last_name': 'Subramanian', 'permalink': 'krish-subramanian'}}, {'is_past': True, 'title': 'Global Practice Head-Telecom BPO', 'person': {'first_name': 'Sathya', 'last_name': 'Karthik', 'permalink': 'sathya-karthik'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ravi', 'last_name': 'Gunti', 'permalink': 'ravi-gunti'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Hemant', 'last_name': 'Kanakia', 'permalink': 'hemant-kanakia'}}, {'is_past': True, 'title': 'Assistant Consultant (Business Development & Program Management)', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Vijay', 'last_name': 'Vasu', 'permalink': 'vijay-vasu'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Kiran', 'last_name': 'Godbole', 'permalink': 'kiran-godbole'}}, {'is_past': True, 'title': 'Sr. Systems Analyst', 'person': {'first_name': 'Bhaskar', 'last_name': 'Roy', 'permalink': 'bhaskar-roy'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Raison', 'last_name': 'D’souza', 'permalink': 'raison-dsouza'}}, {'is_past': True, 'title': 'Assistant System Analyst', 'person': {'first_name': 'Chandan', 'last_name': 'Agrawal', 'permalink': 'chandan-agrawal'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Sunil', 'last_name': 'Samel', 'permalink': 'sunil-samel'}}, {'is_past': True, 'title': 'Software Engineer/Consultant', 'person': {'first_name': 'Dickey', 'last_name': 'Singh', 'permalink': 'dickey-singh'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Tabrez', 'last_name': 'Shaikh', 'permalink': 'tabrez-shaikh'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Vish', 'last_name': 'Baliga', 'permalink': 'vish-baliga'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gaya', 'last_name': 'Vukkadala', 'permalink': 'gaya-vukkadala'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Jagdish', 'last_name': 'Reddy', 'permalink': 'jagdish-reddy'}}, {'is_past': True, 'title': 'Consultant on Product Lifecycle Management technologies', 'person': {'first_name': 'Renji', 'last_name': 'John', 'permalink': 'renji-john'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Krish', 'last_name': 'Subramanian', 'permalink': 'krish-subramanian'}}, {'is_past': True, 'title': 'Head of E-Security Consulting Practice', 'person': {'first_name': 'Venugopal', 'last_name': 'Iyengar', 'permalink': 'venugopal-iyengar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Surinder', 'last_name': 'Singh Anand', 'permalink': 'surinder-singh-anand'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Harish', 'last_name': 'Gala', 'permalink': 'harish-gala'}}], 'competitions': [{'competitor': {'name': 'Infosys Limited', 'permalink': 'infosys-technologies'}}, {'competitor': {'name': 'IBM', 'permalink': 'ibm'}}, {'competitor': {'name': 'Accenture', 'permalink': 'accenture'}}, {'competitor': {'name': 'Wipro Technologies', 'permalink': 'wipro'}}, {'competitor': {'name': 'Cognizant Technology Solutions', 'permalink': 'cognizant-technology-solutions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'World Headquarters', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Mumbai', 'state_code': None, 'country_code': 'IND', 'latitude': 19.017656, 'longitude': 72.856178}, {'description': '', 'address1': 'Plot No 1, Survey No. 64/2, Software Units Layout', 'address2': 'Madhapur', 'zip_code': '', 'city': 'Hyderabad', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529aa51'), 'name': 'Flextronics International', 'permalink': 'flextronics-international', 'crunchbase_url': 'http://www.crunchbase.com/company/flextronics-international', 'homepage_url': 'http://www.flextronics.com', 'blog_url': 'http://www.flextronicsblog.com/', 'blog_feed_url': '', 'twitter_username': 'flextronics', 'category_code': None, 'number_of_employees': 200000, 'founded_year': 1969, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '408-576-7000', 'description': '', 'created_at': 'Fri Jan 02 22:51:36 UTC 2009', 'updated_at': 'Fri Nov 15 23:56:13 UTC 2013', 'overview': '

Headquartered in Singapore, they are a leading, Fortune Global 500 Electronics Manufacturing Services (EMS) provider focused on delivering complete design, engineering and manufacturing services to automotive, computing, consumer, digital, industrial, infrastructure, medical and mobile OEMs. They design, build, ship, and service electronics products for their customers through a network of facilities in 30 countries on four continents. They provide after-market and field services to support customer end-to-end supply chain requirements. By combining design and engineering solutions with core electronics manufacturing and logistics services, vertically integrated with components technologies, they optimize their customers’ operations, lower their costs and reduce time to market.

', 'image': {'available_sizes': [[[150, 18], 'assets/images/resized/0004/0056/40056v2-max-150x150.png'], [[150, 18], 'assets/images/resized/0004/0056/40056v2-max-250x250.png'], [[150, 18], 'assets/images/resized/0004/0056/40056v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'CEO & Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'McNamara', 'permalink': 'mike-mcnamara'}}, {'is_past': False, 'title': 'Chief Procurement and Supply Chain Officer', 'person': {'first_name': 'Tom', 'last_name': 'Linton', 'permalink': 'tom-linton'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': False, 'title': 'Chief Financial Officer and Chief Accounting Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': False, 'title': 'Executive Vice President and General Counsel', 'person': {'first_name': 'Jonathan', 'last_name': 'S. Hoak', 'permalink': 'jonathan-s-hoak'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Davidson', 'permalink': 'jim-davidson-2'}}, {'is_past': False, 'title': 'President of High Reliability Solutions', 'person': {'first_name': 'Paul', 'last_name': 'Humphries', 'permalink': 'paul-humphries'}}, {'is_past': False, 'title': 'President of the High Velocity Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': False, 'title': 'Secretary to the Board of Directors', 'person': {'first_name': 'Jonathan', 'last_name': 'S. Hoak', 'permalink': 'jonathan-s-hoak'}}, {'is_past': False, 'title': 'President of Energy', 'person': {'first_name': 'Jeannine', 'last_name': 'Sargent', 'permalink': 'jeannine-sargent'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Dr.', 'last_name': 'Erik H. Volkerink', 'permalink': 'dr-erik-h-volkerink'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mark', 'last_name': 'Breunig', 'permalink': 'mark-breunig'}}, {'is_past': False, 'title': 'President, Industrial and Emerging Industries Business Group', 'person': {'first_name': 'Doug', 'last_name': 'Britt', 'permalink': 'doug-britt'}}, {'is_past': False, 'title': 'President, Integrated Network Solutions', 'person': {'first_name': 'Caroline', 'last_name': 'Dowling', 'permalink': 'caroline-dowling'}}, {'is_past': False, 'title': 'President of Automotive', 'person': {'first_name': 'Christopher', 'last_name': 'J. Obey', 'permalink': 'christopher-j-obey'}}, {'is_past': False, 'title': 'President of Power Solutions', 'person': {'first_name': 'Christopher', 'last_name': 'Cook', 'permalink': 'christopher-cook'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Marks', 'permalink': 'michael-marks'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bob', 'last_name': 'Todd', 'permalink': 'bob-todd'}}, {'is_past': True, 'title': 'Vice President of Finance and Chief Accounting Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Chief Financial Officer of the Enclosure Systems Division', 'person': {'first_name': 'Terry', 'last_name': 'Ray', 'permalink': 'terry-ray'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Thomas', 'last_name': 'Smach', 'permalink': 'thomas-smach'}}, {'is_past': True, 'title': 'SVP & Chief Procurement Officer,,,,VP Global Materials Management,,,', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Laura', 'last_name': 'A. Brege', 'permalink': 'laura-a-brege'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Paul', 'last_name': 'Read', 'permalink': 'paul-read'}}, {'is_past': True, 'title': 'EVP, Worldwide Operations', 'person': {'first_name': 'Marty', 'last_name': 'T. Neese', 'permalink': 'marty-t-neese'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Bruce', 'last_name': 'McWilliams', 'permalink': 'bruce-mcwilliams-2'}}, {'is_past': True, 'title': 'Vice President of Design and Engineering for the Industrial and Emerging Industries Business Group', 'person': {'first_name': 'Dr.', 'last_name': 'Erik H. Volkerink', 'permalink': 'dr-erik-h-volkerink'}}, {'is_past': True, 'title': 'Senior Vice President, HR Business Partners and Talent Management', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Senior Vice President of Business Management for the Mobile and Consumer Segment', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Executive Vice President of Human Resources', 'person': {'first_name': 'Paul', 'last_name': 'Humphries', 'permalink': 'paul-humphries'}}, {'is_past': True, 'title': 'Senior Vice President of Finance', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Vice President of Business Development, Europe, for the Enclosure Systems Division', 'person': {'first_name': 'Eric', 'last_name': 'Lekacz', 'permalink': 'eric-lekacz'}}, {'is_past': True, 'title': 'SVP, General Manager', 'person': {'first_name': 'Brad', 'last_name': 'Knight', 'permalink': 'brad-knight'}}, {'is_past': True, 'title': 'Senior Vice President - Sales', 'person': {'first_name': 'Mike', 'last_name': 'Frieswyk', 'permalink': 'mike-frieswyk'}}, {'is_past': True, 'title': 'Vice President & General Manager', 'person': {'first_name': 'Shankar', 'last_name': 'Narayanan', 'permalink': 'shankar-narayanan'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': True, 'title': '.net developer', 'person': {'first_name': 'Max', 'last_name': 'Krylov', 'permalink': 'max-krylov'}}, {'is_past': True, 'title': 'Materials Manager', 'person': {'first_name': 'Sean', 'last_name': 'Murphy', 'permalink': 'sean-murphy-7'}}, {'is_past': True, 'title': 'Director of Global Operations', 'person': {'first_name': 'Raymond', 'last_name': 'de Graaf', 'permalink': 'raymond-de-graaf'}}, {'is_past': True, 'title': 'President, Enclosure Systems Division', 'person': {'first_name': 'Ross', 'last_name': 'W. Manire', 'permalink': 'ross-w-manire'}}, {'is_past': True, 'title': 'Vice President of Finance and Corporate Controller', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Senior Vice President of Consumer Digital Products and Senior Vice President of the Flextronics Novo Group', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Leadership of HR Operations', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Senior Vice President, Treasury and Investor Relations', 'person': {'first_name': 'Warren', 'last_name': 'Ligan', 'permalink': 'warren-ligan'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Bruce', 'last_name': 'McWilliams', 'permalink': 'bruce-mcwilliams'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Lip-Bu', 'last_name': 'Tan', 'permalink': 'lip-bu-tan'}}, {'is_past': True, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Dan', 'last_name': 'Jablonsky', 'permalink': 'dan-jablonsky'}}, {'is_past': True, 'title': 'Marketing Analyst', 'person': {'first_name': 'Nelson', 'last_name': 'Kim', 'permalink': 'nelson-kim'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Nicholas', 'last_name': 'Brathwaite', 'permalink': 'nicholas-brathwaite'}}, {'is_past': True, 'title': 'Director of Global Integrations', 'person': {'first_name': 'Raymond', 'last_name': 'de Graaf', 'permalink': 'raymond-de-graaf'}}, {'is_past': True, 'title': 'COO / President, Americas Operations', 'person': {'first_name': 'Mike', 'last_name': 'McNamara', 'permalink': 'mike-mcnamara'}}, {'is_past': True, 'title': 'Senior Vice President of Business Management for High Velocity Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Led Procurement and Global Supply Chain Organizations', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Walter', 'last_name': 'Shimoon', 'permalink': 'walter-shimoon-2'}}, {'is_past': True, 'title': 'President of Flextronics Semiconductor', 'person': {'first_name': 'Vig', 'last_name': 'Sherrill', 'permalink': 'vig-sherrill'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://venturebeat.com/2008/02/11/communications-software-company-aricent-raises-47m-in-sale-of-shares/', 'source_description': 'Communications software company Aricent raises $4.7M in sale of shares', 'raised_amount': 4700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 11, 'company': {'name': 'Aricent Group', 'permalink': 'aricent'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.soccentral.com/results.asp?EntryID=19564', 'source_description': 'InSilica Announces Closure of $18 Million in New Financing', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 7, 'funded_day': 6, 'company': {'name': 'inSilica', 'permalink': 'insilica'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.opticalkeyhole.com/eventtext.asp?ID=55203&pd=12/8/2005&bhcp=1', 'source_description': 'Inphi, supplying high-speed precision ICs, confirms $12m funding but refuses further comment', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'INPHI', 'permalink': 'inphi'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/flextronics-to-acquire-stellar-microelectronics-142308335.html', 'source_description': 'Flextronics to Acquire Stellar Microelectronics', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 12, 'company': {'name': 'Stellar Microelectronics', 'permalink': 'stellar-microelectronics'}}], 'offices': [{'description': 'US HQ', 'address1': '6201 America Center Drive', 'address2': '', 'zip_code': '95002', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Singapore HQ', 'address1': '2 Changi South Lane', 'address2': '', 'zip_code': '486123', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 107], 'assets/images/resized/0011/8091/118091v1-max-150x150.jpg'], [[250, 179], 'assets/images/resized/0011/8091/118091v1-max-250x250.jpg'], [[450, 323], 'assets/images/resized/0011/8091/118091v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299156'), 'name': 'Safeway', 'permalink': 'safeway', 'crunchbase_url': 'http://www.crunchbase.com/company/safeway', 'homepage_url': 'http://www.safeway.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'other', 'number_of_employees': 186000, 'founded_year': 1915, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '925-467-3000', 'description': 'food and drug retailer', 'created_at': 'Wed Jul 09 20:44:34 UTC 2008', 'updated_at': 'Thu Dec 01 07:50:26 UTC 2011', 'overview': '

Safeway, Inc., based in Pleasanton, California, together with its subsidiaries, operates as a food and drug retailer in North America. The company operates stores that provide an array of dry grocery items, food, and general merchandise, as well as features specialty departments, such as bakery, delicatessen, floral, and pharmacy, as well as coffee shops and fuel centers. As of December 29, 2007, Safeway operated approximately 1,743 stores in California, Oregon, Washington, Alaska, Colorado, Arizona, Texas, the Chicago metropolitan area, and the Mid-Atlantic region, as well as British Columbia, Alberta, and Manitoba/Saskatchewan. The company also owns and operates GroceryWorks.com Operating Company, LLC, an online grocery channel, doing business under the names Safeway.com, Vons.com, and Genuardis.com; and Blackhawk Network Holdings, Inc., which provides third-party gift cards, prepaid cards, telecom cards, and sports and entertainment cards to North American retailers for sale to retail customers. It also engages in gift card businesses in the United Kingdom and Australia, and through 49% ownership interest in Casa Ley, S.A. de C.V. operates 137 food and general merchandise stores in Western Mexico.

', 'image': {'available_sizes': [[[150, 63], 'assets/images/resized/0006/7109/67109v1-max-150x150.png'], [[222, 94], 'assets/images/resized/0006/7109/67109v1-max-250x250.png'], [[222, 94], 'assets/images/resized/0006/7109/67109v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Mohan', 'last_name': 'Gyani', 'permalink': 'mohan-gyani'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jack', 'last_name': 'L. Sinclair', 'permalink': 'jack-l-sinclair'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Doug', 'last_name': 'Mackenzie', 'permalink': 'doug-mackenzie'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Arun', 'last_name': 'Sarin', 'permalink': 'arun-sarin'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Frank', 'last_name': 'C. Herringer', 'permalink': 'frank-c-herringer'}}, {'is_past': True, 'title': 'Deputy Chairman of the Board', 'person': {'first_name': 'George', 'last_name': 'Charters', 'permalink': 'george-charters'}}, {'is_past': True, 'title': 'President / CEO', 'person': {'first_name': 'Matthew', 'last_name': 'Gutermuth', 'permalink': 'matthew-gutermuth'}}, {'is_past': True, 'title': 'EVP / CFO', 'person': {'first_name': 'Julian', 'last_name': 'C. Day', 'permalink': 'julian-c-day'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Lesa', 'last_name': 'Musatto', 'permalink': 'lesa-musatto'}}, {'is_past': True, 'title': 'Corporate VP, Lifestyle Initiatives', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': 'Corporate VP, Marketing', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': 'GVP Marketing Strategies', 'person': {'first_name': 'Stuart', 'last_name': 'Aitken', 'permalink': 'stuart-aitken'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Wes', 'last_name': 'Horvath', 'permalink': 'wes-horvath'}}, {'is_past': True, 'title': 'head of Strategic Analysis', 'person': {'first_name': 'Andrew', 'last_name': 'Bentley', 'permalink': 'andrew-bentley'}}, {'is_past': True, 'title': 'Senior Merchandiser and Specialist', 'person': {'first_name': 'Douglas', 'last_name': 'Gnesda', 'permalink': 'douglas-gnesda'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Stephen', 'last_name': 'Taylor', 'permalink': 'stephen-taylor'}}, {'is_past': True, 'title': 'Director, Marketing Planning', 'person': {'first_name': 'Shan', 'last_name': 'Kumar', 'permalink': 'shan-kumar'}}, {'is_past': True, 'title': 'Corporate VP - Deli, Food Service & Starbuck', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Natasha', 'last_name': 'Raja', 'permalink': 'natasha-raja'}}, {'is_past': True, 'title': 'Executive', 'person': {'first_name': 'Greg', 'last_name': 'Wood', 'permalink': 'greg-wood'}}, {'is_past': True, 'title': 'Personnel Manager', 'person': {'first_name': 'Dominique', 'last_name': 'Jones', 'permalink': 'dominique-jones'}}, {'is_past': True, 'title': 'SVP, Alcohol / VP', 'person': {'first_name': 'Matthew', 'last_name': 'Gutermuth', 'permalink': 'matthew-gutermuth'}}, {'is_past': True, 'title': 'MD - Marketing, Trading & Logistics', 'person': {'first_name': 'George', 'last_name': 'Charters', 'permalink': 'george-charters'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '5918 Stoneridge Mall Road', 'address2': '', 'zip_code': '94588-3229', 'city': 'Pleasanton', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 123], 'assets/images/resized/0006/7110/67110v1-max-150x150.jpg'], [[250, 205], 'assets/images/resized/0006/7110/67110v1-max-250x250.jpg'], [[450, 369], 'assets/images/resized/0006/7110/67110v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results10 = list(collection.find({}).sort(\"number_of_employees\", -1).limit(10))\n", + "\n", + "print(results10)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 11. All the companies founded on the second semester of the year. Limit your search to 1000 companies." + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "100\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'permalink': 'abc2', 'crunchbase_url': 'http://www.crunchbase.com/company/wetpaint', 'homepage_url': 'http://wetpaint-inc.com', 'blog_url': 'http://digitalquarters.net/', 'blog_feed_url': 'http://digitalquarters.net/feed/', 'twitter_username': 'BachelrWetpaint', 'category_code': 'web', 'number_of_employees': 47, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 17, 'deadpooled_year': 1, 'tag_list': 'wiki, seattle, elowitz, media-industry, media-platform, social-distribution-system', 'alias_list': '', 'email_address': 'info@wetpaint.com', 'phone_number': '206.859.6300', 'description': 'Technology Platform Company', 'created_at': datetime.datetime(2007, 5, 25, 6, 51, 27), 'updated_at': 'Sun Dec 08 07:15:44 UTC 2013', 'overview': '

Wetpaint is a technology platform company that uses its proprietary state-of-the-art technology and expertise in social media to build and monetize audiences for digital publishers. Wetpaint’s own online property, Wetpaint Entertainment, an entertainment news site that attracts more than 12 million unique visitors monthly and has over 2 million Facebook fans, is a proof point to the company’s success in building and engaging audiences. Media companies can license Wetpaint’s platform which includes a dynamic playbook tailored to their individual needs and comprehensive training. Founded by Internet pioneer Ben Elowitz, and with offices in New York and Seattle, Wetpaint is backed by Accel Partners, the investors behind Facebook.

', 'image': {'available_sizes': [[[150, 75], 'assets/images/resized/0000/3604/3604v14-max-150x150.jpg'], [[250, 125], 'assets/images/resized/0000/3604/3604v14-max-250x250.jpg'], [[450, 225], 'assets/images/resized/0000/3604/3604v14-max-450x450.jpg']]}, 'products': [{'name': 'Wikison Wetpaint', 'permalink': 'wetpaint-wiki'}, {'name': 'Wetpaint Social Distribution System', 'permalink': 'wetpaint-social-distribution-system'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder and VP, Social and Audience Development', 'person': {'first_name': 'Michael', 'last_name': 'Howell', 'permalink': 'michael-howell'}}, {'is_past': False, 'title': 'Co-Founder/CEO/Board of Directors', 'person': {'first_name': 'Ben', 'last_name': 'Elowitz', 'permalink': 'ben-elowitz'}}, {'is_past': False, 'title': 'COO/Board of Directors', 'person': {'first_name': 'Rob', 'last_name': 'Grady', 'permalink': 'rob-grady'}}, {'is_past': False, 'title': 'SVP, Strategy and Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Kollas', 'permalink': 'chris-kollas'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Theresia', 'last_name': 'Ranzetta', 'permalink': 'theresia-ranzetta'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Gus', 'last_name': 'Tai', 'permalink': 'gus-tai'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Len', 'last_name': 'Jordan', 'permalink': 'len-jordan'}}, {'is_past': False, 'title': 'Head of Technology and Product', 'person': {'first_name': 'Alex', 'last_name': 'Weinstein', 'permalink': 'alex-weinstein'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Bert', 'last_name': 'Hogue', 'permalink': 'bert-hogue'}}, {'is_past': True, 'title': 'CFO/ CRO', 'person': {'first_name': 'Brian', 'last_name': 'Watkins', 'permalink': 'brian-watkins'}}, {'is_past': True, 'title': 'Senior Vice President, Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Grady', 'permalink': 'rob-grady'}}, {'is_past': True, 'title': 'VP, Technology and Product', 'person': {'first_name': 'Werner', 'last_name': 'Koepf', 'permalink': 'werner-koepf'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Kevin', 'last_name': 'Flaherty', 'permalink': 'kevin-flaherty'}}, {'is_past': True, 'title': 'VP User Experience', 'person': {'first_name': 'Alex', 'last_name': 'Berg', 'permalink': 'alex-berg'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Steve', 'last_name': 'McQuade', 'permalink': 'steve-mcquade'}}, {'is_past': True, 'title': 'Executive Editor', 'person': {'first_name': 'Susan', 'last_name': 'Mulcahy', 'permalink': 'susan-mulcahy'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Kollas', 'permalink': 'chris-kollas'}}], 'competitions': [{'competitor': {'name': 'Wikia', 'permalink': 'wikia'}}, {'competitor': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'competitor': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Soceeo', 'permalink': 'soceeo'}}, {'competitor': {'name': 'Yola', 'permalink': 'yola'}}, {'competitor': {'name': 'SocialGO', 'permalink': 'socialgo'}}, {'competitor': {'name': 'IslamNor', 'permalink': 'islamnor'}}], 'providerships': [], 'total_money_raised': '$39.8M', 'funding_rounds': [{'id': 888, 'round_code': 'a', 'source_url': 'http://seattlepi.nwsource.com/business/246734_wiki02.html', 'source_description': '', 'raised_amount': 5250000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}]}, {'id': 889, 'round_code': 'b', 'source_url': 'http://pulse2.com/2007/01/09/wiki-builder-website-wetpaint-welcomes-95m-funding/', 'source_description': '', 'raised_amount': 9500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}]}, {'id': 2312, 'round_code': 'c', 'source_url': 'http://www.accel.com/news/news_one_up.php?news_id=185', 'source_description': 'Accel', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://allthingsd.com/20131216/viggle-tries-to-bulk-up-its-social-tv-business-by-buying-wetpaint/?mod=atdtweet', 'source_description': ' Viggle Tries to Bulk Up Its Social TV Business by Buying Wetpaint', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Viggle', 'permalink': 'viggle'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '710 - 2nd Avenue', 'address2': 'Suite 1100', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.603122, 'longitude': -122.333253}, {'description': '', 'address1': '270 Lafayette Street', 'address2': 'Suite 505', 'zip_code': '10012', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7237306, 'longitude': -73.9964312}], 'milestones': [{'id': 5869, 'description': \"Wetpaint named in Lead411's Hottest Seattle Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 8, 'source_url': 'http://www.lead411.com/seattle-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST SEATTLE COMPANIES\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}, {'id': 8702, 'description': 'Site-Builder Wetpaint Makes One For Itself, Using the Demand Media Playbook', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://mediamemo.allthingsd.com/20100906/site-builder-wetpaint-makes-one-for-itself-using-the-demand-media-playbook/', 'source_text': None, 'source_description': 'All Things D', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}], 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 86], 'assets/images/resized/0016/0929/160929v2-max-150x150.png'], [[250, 143], 'assets/images/resized/0016/0929/160929v2-max-250x250.png'], [[450, 258], 'assets/images/resized/0016/0929/160929v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.geekwire.com/2011/rewind-ben-elowitz-wetpaint-ceo-building-type-media-company', 'title': 'GeekWire interview: Rewind - Ben Elowitz, Wetpaint CEO, on building a new type of media company'}, {'external_url': 'http://techcrunch.com/2012/06/17/search-and-social-how-two-will-soon-become-one/', 'title': 'Guest post by CEO Ben Elowitz in TechCrunch'}, {'external_url': 'http://allthingsd.com/20120516/what-to-expect-when-facebook-is-expecting-five-predictions-for-facebooks-first-public-year/', 'title': 'Guest post by CEO Ben Elowitz in AllThingsD'}, {'external_url': 'http://adage.com/article/digitalnext/facebook-biggest-player-advertising-s-540-billion-world/235708/', 'title': 'Guest post by CEO Ben Elowitz in AdAge'}, {'external_url': 'http://www.businessinsider.com/facebook-captures-14-percent-of-our-online-attention-but-only-4-percent-of-ad-spending-online-2012-6', 'title': 'Guest post by CEO Ben Elowitz in Business Insider'}, {'external_url': 'http://allfacebook.com/wetpaint-media-data_b75963', 'title': 'AllFacebook coverage of Wetpaint'}, {'external_url': 'http://adage.com/article/digital/celeb-site-wetpaint-shows-media-profit-facebook/237828/', 'title': 'Profile of Wetpaint in Ad Age'}, {'external_url': 'http://allthingsd.com/20121018/how-to-boost-your-facebook-traffic-tips-and-tricks-from-wetpaint/', 'title': 'Interview with Wetpaint CEO Ben Elowitz in All Things D'}, {'external_url': 'http://www.xconomy.com/seattle/2012/10/19/wetpaint-starts-licensing-its-facebook-based-media-distribution-tech/', 'title': 'Profile of Wetpaint in Xconomy'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8c'), 'name': 'Zoho', 'permalink': 'abc4', 'crunchbase_url': 'http://www.crunchbase.com/company/zoho', 'homepage_url': 'http://zoho.com', 'blog_url': 'http://blogs.zoho.com/', 'blog_feed_url': 'http://blogs.zoho.com/feed', 'twitter_username': 'zoho', 'category_code': 'software', 'number_of_employees': 1600, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 15, 'deadpooled_year': 3, 'tag_list': 'zoho, officesuite, spreadsheet, writer, projects, sheet, crm, show, creator, wiki, planner, suite, notebook, chat, meeting, mail', 'alias_list': '', 'email_address': 'info@zohocorp.com', 'phone_number': '1-888-204-3539', 'description': 'Online Business Apps Suite', 'created_at': 'Fri May 25 19:30:28 UTC 2007', 'updated_at': 'Wed Oct 30 00:07:05 UTC 2013', 'overview': '

Zoho offers a suite of Business, Collaboration & Productivity applications. Apps include CRM, Customer Support, Office Suite, Email Hosting, Project Management, Accounting, App Creator among many others.

\\n\\n

Zoho’s parent company is Zoho Corp (previously AdventNet), “a software company started in 1996 focusing on building quality and affordable software for businesses.”

\\n\\n

Zoho’s main competitors are Google Docs & Spreadsheets, Salesforce as well as Microsoft Office.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0000/3946/3946v12-max-150x150.png'], [[250, 92], 'assets/images/resized/0000/3946/3946v12-max-250x250.png'], [[435, 161], 'assets/images/resized/0000/3946/3946v12-max-450x450.png']]}, 'products': [{'name': 'Zoho Office Suite', 'permalink': 'zoho-office-suite'}, {'name': 'Zoho CRM', 'permalink': 'zoho-crm'}, {'name': 'Zoho Assist', 'permalink': 'zoho-assist'}], 'relationships': [{'is_past': False, 'title': 'CEO and Founder', 'person': {'first_name': 'Sridhar', 'last_name': 'Vembu', 'permalink': 'sridhar-vembu'}}, {'is_past': False, 'title': 'VP Product Managment', 'person': {'first_name': 'Hyther', 'last_name': 'Nizam', 'permalink': 'hyther-nizam'}}, {'is_past': False, 'title': 'VP Marketing', 'person': {'first_name': 'Rodrigo', 'last_name': 'Vaca', 'permalink': 'rodrigo-vaca'}}, {'is_past': False, 'title': 'Evangelist', 'person': {'first_name': 'Raju', 'last_name': 'Vegesna', 'permalink': 'raju-vegesna'}}, {'is_past': False, 'title': 'Director of Product Managment', 'person': {'first_name': 'Gibu', 'last_name': 'Mathew', 'permalink': 'gibu-mathew'}}, {'is_past': False, 'title': 'VP Opration', 'person': {'first_name': 'Neil', 'last_name': 'Butani', 'permalink': 'neil-butani'}}, {'is_past': False, 'title': 'Director Of Engineering', 'person': {'first_name': 'Rajendran', 'last_name': 'Dandapani', 'permalink': 'rajendran-dandapani'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Raj', 'last_name': 'Sabhlok', 'permalink': 'raj-sabhlok'}}, {'is_past': False, 'title': 'GM Marketing', 'person': {'first_name': 'Mouttou', 'last_name': 'Sidambaram', 'permalink': 'mouttou-sidambaram'}}, {'is_past': False, 'title': 'Director of Product Management', 'person': {'first_name': 'Rajesh', 'last_name': 'Ganesan', 'permalink': 'rajesh-ganesan'}}, {'is_past': False, 'title': 'Marketing / Business Development Executive', 'person': {'first_name': 'Aravind', 'last_name': 'Natarajan', 'permalink': 'aravind-natarajan'}}, {'is_past': True, 'title': 'Senior Director Strategic Alliances', 'person': {'first_name': 'Ian', 'last_name': 'Wenig', 'permalink': 'ian-wenig'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Rajkumar', 'last_name': 'Radhakrishnan', 'permalink': 'rajkumar-radhakrishnan'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'KP', 'last_name': 'Saravanan', 'permalink': 'kp-saravanan'}}, {'is_past': True, 'title': 'Member, Technical Staff', 'person': {'first_name': 'Thiyagarajan', 'last_name': 'T', 'permalink': 'thiyagarajan-t'}}, {'is_past': True, 'title': 'Software Architect & Project Manager', 'person': {'first_name': 'Rajkumar', 'last_name': 'Radhakrishnan', 'permalink': 'rajkumar-radhakrishnan'}}, {'is_past': True, 'title': 'Director, Professional Services', 'person': {'first_name': 'Thomas', 'last_name': 'DiGrazia', 'permalink': 'thomas-digrazia'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'Rajaraman', 'last_name': 'S', 'permalink': 'rajaraman-s'}}], 'competitions': [{'competitor': {'name': 'Empressr', 'permalink': 'empressr'}}, {'competitor': {'name': 'Transmedia Corporation', 'permalink': 'transmedia'}}, {'competitor': {'name': 'Live Documents', 'permalink': 'livedocuments'}}, {'competitor': {'name': 'LongJump', 'permalink': 'longjump'}}, {'competitor': {'name': 'Phuser', 'permalink': 'phuser'}}, {'competitor': {'name': 'NetSuite', 'permalink': 'netsuite'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Flypaper', 'permalink': 'flypaper'}}, {'competitor': {'name': 'MovingLabs', 'permalink': 'movinglabs'}}, {'competitor': {'name': 'Ephox', 'permalink': 'ephox'}}, {'competitor': {'name': 'Coghead', 'permalink': 'coghead'}}, {'competitor': {'name': 'SlideRocket', 'permalink': 'sliderocket'}}, {'competitor': {'name': 'Cozimo', 'permalink': 'cozimo'}}, {'competitor': {'name': 'Nordic River', 'permalink': 'textflow'}}, {'competitor': {'name': 'Iceberg', 'permalink': 'iceberg'}}, {'competitor': {'name': 'Thinkfree', 'permalink': 'thinkfree'}}, {'competitor': {'name': 'Bizroof', 'permalink': 'bizroof'}}, {'competitor': {'name': 'Wolf Frameworks', 'permalink': 'wolf-frameworks'}}, {'competitor': {'name': '280 North', 'permalink': '280-north'}}, {'competitor': {'name': 'Workday', 'permalink': 'workday'}}, {'competitor': {'name': 'coAction.com', 'permalink': 'coaction-com'}}, {'competitor': {'name': 'INES CRM', 'permalink': 'ines-crm'}}, {'competitor': {'name': 'OpenERP', 'permalink': 'openerp'}}, {'competitor': {'name': 'Gurron', 'permalink': 'gurron'}}, {'competitor': {'name': 'LiquidPlanner', 'permalink': 'liquidplanner'}}, {'competitor': {'name': 'Helpshift, Inc.', 'permalink': 'helpshift-inc'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '4900 Hopyard Rd', 'address2': 'Suite 310', 'zip_code': '94588', 'city': 'Pleasanton', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.692934, 'longitude': -121.904945}], 'milestones': [{'id': 388, 'description': 'Zoho Reaches 2 Million Users', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 7, 'source_url': '', 'source_text': \"Mike,\\r\\n\\r\\nTomorrow @ 6AM PST, we are announcing that we now have 1 Million users. User registration stats are attached.\\r\\n\\r\\nIt took us 1 Year to get the first 100K users, 6 Months to get the second 100K, 4 Months to get the third etc. In the last 1 year we added 700K new users. The pace has been increasing.\\r\\n\\r\\nThe registration numbers really jumped after we added support for Google & Yahoo users. Currently over 30% of our users are coming from Google/Yahoo accounts (with more Google users than Yahoo users).\\r\\n\\r\\nI'd love to provide more information on this.\\r\\n\\r\\nRaju\\r\\n\\r\\n\", 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}, {'id': 6577, 'description': 'Zoho Calendar Steps Out Of Beta With Sharing, Subscribing And More', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2010/07/07/zoho-calendar-steps-out-of-beta-with-sharing-subscribing-and-more/', 'source_text': '', 'source_description': 'Zoho Calendar Steps Out Of Beta With Sharing, Subscribing And More', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}, {'id': 7360, 'description': 'Zoho Reports Steps Out Of Beta With Pricing Model And New Features', 'stoned_year': 2009, 'stoned_month': 12, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2009/12/15/zoho-reports-steps-out-of-beta-with-pricing-model-and-new-features/', 'source_text': None, 'source_description': 'Zoho Reports Steps Out Of Beta', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}], 'video_embeds': [{'embed_code': '', 'description': '

Zoho’s pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': ''}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.online-tech-tips.com/cool-websites/zoho-free-online-office-applications-word-processor-spreadsheets-etc/', 'title': 'Zoho Overview'}, {'external_url': 'http://www.online-tech-tips.com/cool-websites/free-online-web-meetings/', 'title': 'Zoho Meeting Review'}, {'external_url': 'http://mashpedia.com/Zoho', 'title': 'Zoho at Mashpedia'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8d'), 'name': 'Digg', 'permalink': 'digg', 'crunchbase_url': 'http://www.crunchbase.com/company/digg', 'homepage_url': 'http://www.digg.com', 'blog_url': 'http://blog.digg.com/', 'blog_feed_url': 'http://blog.digg.com/?feed=rss2', 'twitter_username': 'digg', 'category_code': 'news', 'number_of_employees': 60, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 11, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'community, social, news, bookmark, digg, technology, design', 'alias_list': '', 'email_address': 'feedback@digg.com', 'phone_number': '(415) 436-9638', 'description': 'user driven social content website', 'created_at': 'Fri May 25 20:03:23 UTC 2007', 'updated_at': 'Tue Nov 05 21:35:47 UTC 2013', 'overview': '

Digg is a user driven social content website. Everything on Digg is user-submitted. After you submit content, other people read your submission and “Digg” what they like best. If your story receives enough Diggs, it’s promoted to the front page for other visitors to see.

\\n\\n

Kevin Rose came up with the idea for Digg in the fall of 2004. He found programmer Owen Byrne through eLance and paid him $10/hour to develop the idea. In addition, Rose paid $99 per month for hosting and $1,200 for the Digg.com domain. In December of 2004, Kevin launched his creation to the world through a post on his blog.

\\n\\n

In February of 2005, Paris Hilton’s cell phone was hacked. Images and phone numbers from the phone were posted online and it didn’t take long for a user to post the link on Digg. The rapidshare downloads site started to receive an enormous amount of traffic and it was then, Rose says, he saw “the power of breaking stories before anyone else.”

\\n\\n

Digg has been a force ever since. Acquisition offers have been made, Rose was on the cover of BusinessWeek and according to Alexa, Digg is in the top 100 most trafficked sites on the internet. The success hasn’t come without its share of problems though. The site has had to face services aimed at gaming the way stories hit the front page, as well as a user revolt. Digg has however been able to get over these hurdles as it continues to be one of the social news leaders.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0000/4138/4138v5-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0000/4138/4138v5-max-250x250.jpg'], [[280, 280], 'assets/images/resized/0000/4138/4138v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Digg', 'permalink': 'digg'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McLaughlin', 'permalink': 'andrew-mclaughlin'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Bennett', 'last_name': 'Thuener', 'permalink': 'bennett-thuener'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Ben', 'last_name': 'Folk-Williams', 'permalink': 'ben-folk-williams'}}, {'is_past': False, 'title': 'Designer', 'person': {'first_name': 'Tyson', 'last_name': 'Rosage', 'permalink': 'tyson-rosage'}}, {'is_past': False, 'title': 'NetSystem', 'person': {'first_name': 'Elad', 'last_name': 'Gilo', 'permalink': 'elad-gilo'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Kevin', 'last_name': 'Rose', 'permalink': 'kevin-rose'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'John', 'last_name': 'Moffett', 'permalink': 'john-moffett'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Mike', 'last_name': 'Maser', 'permalink': 'mike-maser'}}, {'is_past': True, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Jay', 'last_name': 'Adelson', 'permalink': 'jay-adelson'}}, {'is_past': True, 'title': 'VP Ads Development', 'person': {'first_name': 'Alan', 'last_name': 'Lippman', 'permalink': 'alan-lippman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Brian', 'last_name': 'Link', 'permalink': 'brian-link'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'John', 'last_name': 'Quinn', 'permalink': 'john-quinn-2'}}, {'is_past': True, 'title': 'VP of Product', 'person': {'first_name': 'Keval', 'last_name': 'Desai', 'permalink': 'keval-desai'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Bob', 'last_name': 'Buch', 'permalink': 'bob-buch'}}, {'is_past': True, 'title': 'Vice President, Operations', 'person': {'first_name': 'Scott', 'last_name': 'Baker', 'permalink': 'scott-baker'}}, {'is_past': True, 'title': 'VP of Research and Development', 'person': {'first_name': 'Anton', 'last_name': 'Kast', 'permalink': 'anton-kast'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Owen', 'last_name': 'Byrne', 'permalink': 'owen-byrne'}}, {'is_past': True, 'title': 'Lead Architect', 'person': {'first_name': 'Joe', 'last_name': 'Stump', 'permalink': 'joe-stump'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Van Horn', 'permalink': 'matt-van-horn'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Daniel', 'last_name': 'Burka', 'permalink': 'daniel-burka'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Richard', 'last_name': 'de Silva', 'permalink': 'richard-de-silva'}}, {'is_past': True, 'title': 'User Experience', 'person': {'first_name': 'Mark', 'last_name': 'Trammell', 'permalink': 'mark-trammell'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Addison', 'last_name': 'Kowalski', 'permalink': 'addison-kowalski'}}, {'is_past': True, 'title': 'Team Lead, Core Infrastructure', 'person': {'first_name': 'Arin', 'last_name': 'Sarkissian', 'permalink': 'arin-sarkissian'}}, {'is_past': True, 'title': 'R&D Analyst, Operations Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Standefer', 'permalink': 'ben-standefer'}}, {'is_past': True, 'title': 'UI Developer', 'person': {'first_name': 'Jamie', 'last_name': 'Lottering', 'permalink': 'jamie-lottering'}}, {'is_past': True, 'title': 'Director of Engineering, News Platform', 'person': {'first_name': 'Bill', 'last_name': 'Shupp', 'permalink': 'bill-shupp'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Kurt', 'last_name': 'Wilms', 'permalink': 'kurt-wilms'}}, {'is_past': True, 'title': 'Principal R&D Engineer', 'person': {'first_name': 'Wes', 'last_name': 'Augur', 'permalink': 'wes-augur'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mike', 'last_name': 'Cieri', 'permalink': 'mike-cieri'}}, {'is_past': True, 'title': 'Sr. Systems Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Lathrop', 'permalink': 'paul-lathrop'}}, {'is_past': True, 'title': 'Software engineer & UIX designer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Can', 'last_name': 'Duruk', 'permalink': 'can-duruk'}}, {'is_past': True, 'title': 'Director of Ad Ops', 'person': {'first_name': 'Veronica', 'last_name': 'Tegen', 'permalink': 'veronica-tegen'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Brian', 'last_name': 'Wong', 'permalink': 'brian-wong'}}, {'is_past': True, 'title': 'Senior Community Manager', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Sr. Director of Marketing & Communications', 'person': {'first_name': 'Beth', 'last_name': 'Murphy', 'permalink': 'beth-murphy'}}, {'is_past': True, 'title': 'Systems Engineering Manager', 'person': {'first_name': 'Ron', 'last_name': 'Gorodetzky', 'permalink': 'ron-gorodetzky'}}, {'is_past': True, 'title': 'Director of Communications', 'person': {'first_name': 'Kiersten', 'last_name': 'Hollars', 'permalink': 'kiersten-hollars'}}, {'is_past': True, 'title': 'Head of Sales & Sales Operations', 'person': {'first_name': 'Thomas', 'last_name': 'Shin', 'permalink': 'thomas-shin'}}, {'is_past': True, 'title': 'Publisher & Chief Revenue Officer', 'person': {'first_name': 'Chas', 'last_name': 'Edwards', 'permalink': 'chas-edwards'}}, {'is_past': True, 'title': 'Director of Design and User Experience', 'person': {'first_name': 'Jeffrey', 'last_name': 'Kalmikoff', 'permalink': 'jeffrey-kalmikoff'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Hodsdon', 'permalink': 'jeff-hodsdon'}}, {'is_past': True, 'title': 'Director, PR', 'person': {'first_name': 'Michele', 'last_name': 'Husak', 'permalink': 'michele-husak'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Vishwas', 'last_name': 'Prabhakara', 'permalink': 'vishwas-prabhakara'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Sze', 'permalink': 'david-sze'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vipul', 'last_name': 'Sharma', 'permalink': 'vipul-sharma'}}, {'is_past': True, 'title': 'Head of Search & User Analytics', 'person': {'first_name': 'Marshall', 'last_name': 'Clark', 'permalink': 'marshall-clark'}}, {'is_past': True, 'title': 'Design and User Experience Lead', 'person': {'first_name': 'Marc', 'last_name': 'Hemeon', 'permalink': 'marc-hemeon'}}, {'is_past': True, 'title': 'Director of News Applications', 'person': {'first_name': 'Arsenio', 'last_name': 'Santos', 'permalink': 'arsenio-santos'}}, {'is_past': True, 'title': 'Senior Core Infrastructure Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Eure', 'permalink': 'ian-eure'}}, {'is_past': True, 'title': 'Sr. Developer', 'person': {'first_name': 'Ryan', 'last_name': 'Marshall', 'permalink': 'ryan-marshall'}}, {'is_past': True, 'title': 'PHP Hacker', 'person': {'first_name': 'Eli', 'last_name': 'White', 'permalink': 'eli-white'}}, {'is_past': True, 'title': 'Account Director', 'person': {'first_name': 'Tommy', 'last_name': 'Lee', 'permalink': 'tommy-lee'}}, {'is_past': True, 'title': 'Head of Consumer Product', 'person': {'first_name': 'Dash', 'last_name': 'Gopinath', 'permalink': 'dash-gopinath'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Sammy', 'last_name': 'Yu', 'permalink': 'sammy-yu'}}], 'competitions': [{'competitor': {'name': 'Reddit', 'permalink': 'reddit'}}, {'competitor': {'name': 'Twitter', 'permalink': 'twitter'}}, {'competitor': {'name': 'Newsvine', 'permalink': 'newsvine'}}, {'competitor': {'name': 'Truemors', 'permalink': 'truemors'}}, {'competitor': {'name': 'fav.or.it', 'permalink': 'favorit'}}, {'competitor': {'name': 'Spotplex', 'permalink': 'spotplex'}}, {'competitor': {'name': 'Mixx', 'permalink': 'mixx'}}, {'competitor': {'name': 'Pligg LLC', 'permalink': 'pligg'}}, {'competitor': {'name': 'Silobreaker', 'permalink': 'silobreaker'}}, {'competitor': {'name': 'Newspond', 'permalink': 'newspond'}}, {'competitor': {'name': 'Popularo', 'permalink': 'popularo'}}, {'competitor': {'name': 'ZapNat', 'permalink': 'zapnat'}}, {'competitor': {'name': 'ShoutWire', 'permalink': 'shoutwire'}}, {'competitor': {'name': 'nobosh', 'permalink': 'nobosh'}}, {'competitor': {'name': 'YiGG', 'permalink': 'yigg'}}, {'competitor': {'name': 'Publish2', 'permalink': 'publish2'}}, {'competitor': {'name': 'Naubo', 'permalink': 'naubo'}}, {'competitor': {'name': 'Skewz', 'permalink': 'skewz'}}, {'competitor': {'name': 'eVIPlist', 'permalink': 'eviplist'}}, {'competitor': {'name': 'slinkset', 'permalink': 'slinkset'}}, {'competitor': {'name': 'Subbmitt', 'permalink': 'subbmitt'}}, {'competitor': {'name': 'Link Spank', 'permalink': 'linkspank'}}, {'competitor': {'name': 'EIOBA', 'permalink': 'eioba'}}, {'competitor': {'name': 'buzznewzz', 'permalink': 'buzznewzz'}}, {'competitor': {'name': 'RatherGather', 'permalink': 'rathergather'}}, {'competitor': {'name': 'StumbleUpon', 'permalink': 'stumbleupon'}}, {'competitor': {'name': 'GRAZEit', 'permalink': 'grazeit'}}, {'competitor': {'name': 'Newser', 'permalink': 'newser'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'K/F Communications', 'permalink': 'k-f-communications'}}], 'total_money_raised': '$45M', 'funding_rounds': [{'id': 1, 'round_code': 'b', 'source_url': 'http://www.marketingvox.com/archives/2006/12/29/digg-gets-85mm-in-funding/', 'source_description': '', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}]}, {'id': 85, 'round_code': 'a', 'source_url': 'http://goliath.ecnext.com/coms2/gi_0199-4857782/Social-Content-Web-Site-Digg.html', 'source_description': '', 'raised_amount': 2800000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Al', 'last_name': 'Avery', 'permalink': 'al-avery'}}, {'company': None, 'financial_org': {'name': 'FLOODGATE', 'permalink': 'floodgate'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 3503, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/09/24/spurned-by-google-digg-taps-vcs-for-29-million-c-round/', 'source_description': 'press release', 'raised_amount': 28700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 24, 'investments': [{'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SVB Financial Group', 'permalink': 'svb-financial-group'}, 'person': None}]}, {'id': 24136, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/07/12/digg-raises-an-inside-venture-round/', 'source_description': 'Digg Raises An Inside Venture Round', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 12, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/12/betaworks-acquires-digg/', 'source_description': 'Betaworks Acquires Digg (TechCrunch)', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 12, 'acquiring_company': {'name': 'betaworks', 'permalink': 'betaworks'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 15, 'company': {'name': 'Wefollow', 'permalink': 'wefollow'}}], 'offices': [{'description': None, 'address1': '135 Mississippi St', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.764726, 'longitude': -122.394523}], 'milestones': [{'id': 9588, 'description': 'Another Digg Exec Is Out: Longtime CFO John Moffett Leaves', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2010/10/25/another-digg-exec-is-out-longtime-cfo-john-moffett-leaves/', 'source_text': '', 'source_description': 'Another Digg Exec Is Out: Longtime CFO John Moffett Leaves', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}, {'id': 24912, 'description': 'Digg Sold To LinkedIn AND The Washington Post And Betaworks', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 13, 'source_url': 'http://techcrunch.com/2012/07/12/digg-sold-to-linkedin-and-the-washington-post-and-betaworks/', 'source_text': '', 'source_description': 'Digg Sold To LinkedIn AND The Washington Post And Betaworks', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}, {'id': 42148, 'description': 'Digg Video launches.', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2013/11/05/digg-gives-videos-prime-placement-with-new-digg-video-site/', 'source_text': '', 'source_description': 'Digg Gives Videos Prime Placement With New Digg Video Site', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

TechCrunch interview with Kevin Rose, April 2009

'}], 'screenshots': [{'available_sizes': [[[117, 150], 'assets/images/resized/0020/0633/200633v1-max-150x150.png'], [[196, 250], 'assets/images/resized/0020/0633/200633v1-max-250x250.png'], [[353, 450], 'assets/images/resized/0020/0633/200633v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/25/digg-closed-287-million-in-series-c/', 'title': 'Digg Closed $28.7 Million in Series C round led by Highland Capital Partners'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8f'), 'name': 'Omnidrive', 'permalink': 'omnidrive', 'crunchbase_url': 'http://www.crunchbase.com/company/omnidrive', 'homepage_url': 'http://www.omnidrive.com', 'blog_url': 'http://www.omnidrive.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/omnidrive', 'twitter_username': 'Nomadesk', 'category_code': 'network_hosting', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 9, 'deadpooled_day': 15, 'deadpooled_url': '', 'tag_list': 'storage, sharing, edit, online', 'alias_list': None, 'email_address': 'info@omnidrive.com', 'phone_number': '660-675-5052', 'description': None, 'created_at': 'Sun May 27 03:25:32 UTC 2007', 'updated_at': 'Tue Jul 02 22:48:04 UTC 2013', 'overview': '

Currently in public beta, Omnidrive makes it easy to access, edit and share your files from any computer with a web browser. The site was founded in late 2004 by Nik Cubrilovic and later launched at the November 2006 Web 2.0 Conference. An interesting slew of features make Omnidrive an attractive choice in the online file storage field.

\\n\\n

Omnidrive’s competitors include Box.net, Streamload and Xdrive.

', 'image': {'available_sizes': [[[150, 85], 'assets/images/resized/0000/0823/823v1-max-150x150.jpg'], [[150, 85], 'assets/images/resized/0000/0823/823v1-max-250x250.jpg'], [[150, 85], 'assets/images/resized/0000/0823/823v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Omnidrive', 'permalink': 'omnidrive'}], 'relationships': [{'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Geoff', 'last_name': 'McQueen', 'permalink': 'geoff-mcqueen'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Nik', 'last_name': 'Cubrilovic', 'permalink': 'nik-cubrilovic'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tony', 'last_name': 'Guntharp', 'permalink': 'tony-guntharp'}}, {'is_past': True, 'title': 'Board of Advisors', 'person': {'first_name': 'Mike', 'last_name': 'Cannon-Brookes', 'permalink': 'mike-cannon-brookes'}}], 'competitions': [{'competitor': {'name': 'Dropbox', 'permalink': 'dropbox'}}, {'competitor': {'name': 'filobite', 'permalink': 'filobite'}}, {'competitor': {'name': 'digitalbucket.net', 'permalink': 'digitalbucket'}}, {'competitor': {'name': 'ElephantDrive', 'permalink': 'elephantdrive'}}, {'competitor': {'name': 'Banckle Customer Service 2.0', 'permalink': 'banckle'}}], 'providerships': [], 'total_money_raised': '$800k', 'funding_rounds': [{'id': 225, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 800000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Michael', 'last_name': 'Arrington', 'permalink': 'michael-arrington'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Clavier', 'permalink': 'jeff-clavier'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'Suite 200', 'address2': '654 High Street', 'zip_code': '94301', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'ISR', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d9b'), 'name': 'eBay', 'permalink': 'ebay', 'crunchbase_url': 'http://www.crunchbase.com/company/ebay', 'homepage_url': 'http://ebay.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'eBay', 'category_code': 'web', 'number_of_employees': 15000, 'founded_year': 1995, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'auction, bid, search, market', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Online Marketplace', 'created_at': 'Wed Jun 06 13:03:13 UTC 2007', 'updated_at': 'Tue Sep 10 03:38:03 UTC 2013', 'overview': '

Founded in 1995 in San Jose, CA, eBay connects millions of buyers and sellers globally in the world’s largest online marketplace, utilizing PayPal to ensure secure transactions. The company also operates specialized marketplaces such as StubHub, the world’s largest ticket marketplace, and eBay Classifieds sites, which together have a presence in more than 1,000 cities around the world.

\\n\\n

eBay items can be sold either via a silent auction, in which users input the maximum price they are willing to pay and for which the site will automatically increase bids as necessary up to that maximum, or via “Buy It Now,” with which they purchase items at a set price.

\\n\\n

eBay products and companies include eBay Marketplace, Media Marketplace, PayPal, half.com, MicroPlace, Shopping.com, Rent.com, Stubhub and various online classifieds.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/3625/3625v1-max-150x150.png'], [[210, 87], 'assets/images/resized/0000/3625/3625v1-max-250x250.png'], [[210, 87], 'assets/images/resized/0000/3625/3625v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'eBay Marketplace', 'permalink': 'ebay-marketplace'}, {'name': 'eBay Classifieds', 'permalink': 'ebay-classifieds'}, {'name': 'eBay Mobile Application', 'permalink': 'ebay-mobile'}, {'name': 'eBay Desktop', 'permalink': 'ebay-desktop'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Pierre', 'last_name': 'Omidyar', 'permalink': 'pierre-omidyar'}}, {'is_past': False, 'title': 'Chief Marketing Officer of North America', 'person': {'first_name': 'Richelle', 'last_name': 'P. Parham', 'permalink': 'richelle-p-parham'}}, {'is_past': False, 'title': 'Chief Financial Officer and Senior Vice President of Finance', 'person': {'first_name': 'Robert', 'last_name': 'H. Swan', 'permalink': 'robert-h-swan'}}, {'is_past': False, 'title': 'VP & CFO, eBay North America', 'person': {'first_name': 'David', 'last_name': 'Schwarzbach', 'permalink': 'david-schwarzbach'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Bob', 'last_name': 'Swan', 'permalink': 'bob-swan'}}, {'is_past': False, 'title': 'President/CEO', 'person': {'first_name': 'John', 'last_name': 'Donahoe', 'permalink': 'john-donahoe'}}, {'is_past': False, 'title': 'Chief Product Officer and Senior Vice President', 'person': {'first_name': 'R. J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman-2'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': False, 'title': 'Vice President of Innovation and New Ventures, eBay Inc.', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': False, 'title': 'Vice President Managed Marketplaces Technology', 'person': {'first_name': 'Ken', 'last_name': 'Moss', 'permalink': 'ken-moss-2'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Hugh', 'last_name': 'Williams', 'permalink': 'hugh-williams'}}, {'is_past': False, 'title': 'SVP, Human Resources', 'person': {'first_name': 'Beth', 'last_name': 'Axelrod', 'permalink': 'beth-axelrod'}}, {'is_past': False, 'title': 'Senior VP, Legal Affairs/General Counsel/Secretary', 'person': {'first_name': 'Micheal', 'last_name': 'Jacobson', 'permalink': 'micheal-jacobson'}}, {'is_past': False, 'title': 'President, eBay Marketplace', 'person': {'first_name': 'Lorie', 'last_name': 'Norrington', 'permalink': 'lorie-norrington'}}, {'is_past': False, 'title': 'Senior Director, Platform and Mobile', 'person': {'first_name': 'Max', 'last_name': 'Mancini', 'permalink': 'max-mancini'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': False, 'title': 'Voices Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Director, Product Management eBay Mobile', 'person': {'first_name': 'David', 'last_name': 'Beach', 'permalink': 'david-beach'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Andrea', 'last_name': 'Linett', 'permalink': 'andrea-linett'}}, {'is_past': False, 'title': 'Head of Israel Innovation Center', 'person': {'first_name': 'Ron', 'last_name': 'Gura', 'permalink': 'ron-gura'}}, {'is_past': False, 'title': 'Director of Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Gilmartin', 'permalink': 'dan-gilmartin'}}, {'is_past': False, 'title': 'Architect', 'person': {'first_name': 'Sheffield', 'last_name': 'Nolan', 'permalink': 'sheffield-nolan'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': False, 'title': 'CTO and SVP, Global Products, eBay Marketplaces', 'person': {'first_name': 'Mark', 'last_name': 'Carges', 'permalink': 'mark-carges'}}, {'is_past': False, 'title': 'Head of Retail Innovation', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': False, 'title': 'Director of Human Computer Interaction, eBay Research Labs', 'person': {'first_name': 'Elizabeth', 'last_name': 'Churchill', 'permalink': 'elizabeth-churchill'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jess', 'last_name': 'Fleischer', 'permalink': 'jess-fleischer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Howard', 'last_name': 'Schultz', 'permalink': 'howard-schultz'}}, {'is_past': False, 'title': 'MTS1 Software Engineer', 'person': {'first_name': 'Venkatesan', 'last_name': 'Sundramurthy', 'permalink': 'venkatesan-sundramurthy'}}, {'is_past': False, 'title': 'Director, Global Brand Experience', 'person': {'first_name': 'Dane', 'last_name': 'Howard', 'permalink': 'dane-howard'}}, {'is_past': False, 'title': 'Team member', 'person': {'first_name': 'Ross', 'last_name': 'Borden', 'permalink': 'ross-borden-3'}}, {'is_past': False, 'title': 'Intern', 'person': {'first_name': 'Arindam', 'last_name': 'Chakraborty', 'permalink': 'arindam-chakraborty-2'}}, {'is_past': False, 'title': 'President of Global Ebay Marketplaces Business Unit', 'person': {'first_name': 'Devin', 'last_name': 'N. Wenig', 'permalink': 'devin-n-wenig'}}, {'is_past': False, 'title': 'Head of Business', 'person': {'first_name': 'Larry', 'last_name': 'Illg', 'permalink': 'larry-illg'}}, {'is_past': False, 'title': 'Senior Director, Global HR Systems', 'person': {'first_name': 'Kelly', 'last_name': 'Sallin', 'permalink': 'kelly-sallin'}}, {'is_past': False, 'title': 'VP/General Manager, Tickets', 'person': {'first_name': 'Chris', 'last_name': 'Tsakalakis', 'permalink': 'chris-tsakalakis'}}, {'is_past': False, 'title': 'Head of Internet Marketing', 'person': {'first_name': 'Jorge', 'last_name': 'Herrero', 'permalink': 'jorge-herrero'}}, {'is_past': False, 'title': 'SVP, Corporate Communications', 'person': {'first_name': 'Alan', 'last_name': 'Marks', 'permalink': 'alan-marks'}}, {'is_past': False, 'title': 'Head of Product Strategy & Planning', 'person': {'first_name': 'chris', 'last_name': 'mctiernan', 'permalink': 'chris-mctiernan'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Scott', 'last_name': 'Cook', 'permalink': 'scott-cook'}}, {'is_past': False, 'title': 'Lead UX Developer', 'person': {'first_name': 'David', 'last_name': 'Perini', 'permalink': 'david-perini'}}, {'is_past': False, 'title': 'Lead Front End Software Engineer', 'person': {'first_name': 'Abhyuday', 'last_name': 'Chakravarthi', 'permalink': 'abhyuday-chakravarthi'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Sophia', 'last_name': 'Perl', 'permalink': 'sophia-perl'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Paul', 'last_name': 'Bergholm', 'permalink': 'paul-bergholm'}}, {'is_past': False, 'title': 'Director of Technical Services', 'person': {'first_name': 'Jack', 'last_name': 'McGwire', 'permalink': 'jack-mcgwire'}}, {'is_past': False, 'title': 'Head of Retail Strategy and Innovation', 'person': {'first_name': 'David', 'last_name': 'Geisinger', 'permalink': 'david-geisinger'}}, {'is_past': False, 'title': 'Managing Director, eBay India', 'person': {'first_name': 'Latif', 'last_name': 'Nathani', 'permalink': 'latif-nathani'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Aimee', 'last_name': 'Cardwell', 'permalink': 'aimee-cardwell'}}, {'is_past': False, 'title': 'Sr. Manager, Merchant Services', 'person': {'first_name': 'Celeste', 'last_name': 'Paradise', 'permalink': 'celeste-paradise'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Giovanni', 'last_name': 'Fantasia', 'permalink': 'giovanni-fantasia'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Vamsee', 'last_name': 'Nalamothu', 'permalink': 'vamsee-nalamothu'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Daniel', 'last_name': 'Jarosch', 'permalink': 'daniel-jarosch'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Can', 'last_name': 'Turanlı', 'permalink': 'can-turanl'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': 'Head of Russian Marketplaces Business', 'person': {'first_name': 'Vladimir', 'last_name': 'Dolgov', 'permalink': 'vladimir-dolgov'}}, {'is_past': False, 'title': 'Head of International Advertising Division', 'person': {'first_name': 'Christian', 'last_name': 'Kunz', 'permalink': 'christian-kunz'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Dileepan', 'last_name': 'Siva', 'permalink': 'dileepan-siva'}}, {'is_past': True, 'title': 'Chairman & Country Manager, India', 'person': {'first_name': 'Avnish', 'last_name': 'Bajaj', 'permalink': 'avnish-bajaj'}}, {'is_past': True, 'title': 'Founder & VP eBay Motors', 'person': {'first_name': 'Simon', 'last_name': 'Rothman', 'permalink': 'simon-rothman'}}, {'is_past': True, 'title': 'Founder, eBay Motors & eBay Canada', 'person': {'first_name': 'Alexis', 'last_name': 'Maybank', 'permalink': 'alexis-maybank'}}, {'is_past': True, 'title': 'President, Chief Executive Officer, and Board Chairman', 'person': {'first_name': 'Meg', 'last_name': 'Whitman', 'permalink': 'meg-whitman'}}, {'is_past': True, 'title': 'Non-Executive Chairman, Skype', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'Vice President & Chief Information Security Officer & Chief Security Strategist', 'person': {'first_name': 'Howard', 'last_name': 'Schmidt', 'permalink': 'howard-schmidt'}}, {'is_past': True, 'title': 'CTO - PayPal', 'person': {'first_name': 'Chuck', 'last_name': 'Geiger', 'permalink': 'chuck-geiger'}}, {'is_past': True, 'title': 'Chief of Staff, North America eBay Marketplaces,,,Sr. Manager, Product Management, Customer Segments & Insights,,, Manager, Product Marketing.', 'person': {'first_name': 'Susan', 'last_name': 'Kim', 'permalink': 'susan-kim'}}, {'is_past': True, 'title': 'VP & CFO eBay Marketplaces', 'person': {'first_name': 'Erik', 'last_name': 'Bardman', 'permalink': 'erik-bardman'}}, {'is_past': True, 'title': 'CTO of eBay/China', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'VP Finance & CAO', 'person': {'first_name': 'Douglas', 'last_name': 'Jeffries', 'permalink': 'douglas-jeffries'}}, {'is_past': True, 'title': 'Chief of Staff - Global Product Management', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': True, 'title': 'CTO X.commerce', 'person': {'first_name': 'Neal', 'last_name': 'Sample', 'permalink': 'neal-sample'}}, {'is_past': True, 'title': 'COO, Europe', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Mike', 'last_name': 'Linton', 'permalink': 'mike-linton'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Managing Director and Vice President, Marketing and Sales, German', 'person': {'first_name': 'Harald', 'last_name': 'Eisenaecher', 'permalink': 'harald-eisenaecher'}}, {'is_past': True, 'title': 'Deputy General Counsel / VP', 'person': {'first_name': 'Geoff', 'last_name': 'Brigham', 'permalink': 'geoff-brigham'}}, {'is_past': True, 'title': 'VP and General Manager', 'person': {'first_name': 'Reed', 'last_name': 'Henry', 'permalink': 'reed-henry'}}, {'is_past': True, 'title': 'VP International Marketing', 'person': {'first_name': 'Kip', 'last_name': 'Knight', 'permalink': 'kip-knight'}}, {'is_past': True, 'title': 'VP Relationship Marketing', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice President, Product & Community', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'VP Finance & Investor Relations', 'person': {'first_name': 'Mark', 'last_name': 'Rubash', 'permalink': 'mark-rubash'}}, {'is_past': True, 'title': 'Vice President (VP) and General Manager (GM)', 'person': {'first_name': 'John', 'last_name': 'Herr', 'permalink': 'john-herr'}}, {'is_past': True, 'title': 'VP - Managed Marketplace,,, VP - Buyer and Seller Experience,,, VP - Seller Experience ,,, VP - Trust and Safety', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': True, 'title': 'SVP, Corporate Communications', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Michael', 'last_name': 'Dearing', 'permalink': 'michael-dearing'}}, {'is_past': True, 'title': 'Vice President - Advertising and Internet Marketing', 'person': {'first_name': 'Matt', 'last_name': 'Ackley', 'permalink': 'matt-ackley'}}, {'is_past': True, 'title': 'VP, Global Trust & Safety', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': True, 'title': 'SVP, Marketing, Business Development, M & A, & International', 'person': {'first_name': 'Steve', 'last_name': 'Westly', 'permalink': 'steve-westly-2'}}, {'is_past': True, 'title': 'Senior Vice President, Trust and Safety', 'person': {'first_name': 'Rob', 'last_name': 'Chesnut', 'permalink': 'rob-chesnut'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'John', 'last_name': 'Thibault', 'permalink': 'john-thibault'}}, {'is_past': True, 'title': 'VP & General Manager', 'person': {'first_name': 'Lorna', 'last_name': 'Borenstein', 'permalink': 'lorna-borenstein'}}, {'is_past': True, 'title': 'VP, Finance', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': True, 'title': 'Vice President of Technical Operations', 'person': {'first_name': 'Mazen', 'last_name': 'Rawashdeh', 'permalink': 'mazen-rawashdeh'}}, {'is_past': True, 'title': 'VP, North America marketing', 'person': {'first_name': 'Greg', 'last_name': 'Fant', 'permalink': 'greg-fant'}}, {'is_past': True, 'title': 'VP, International', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'SVP & GM, North America and Global Product', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'VP, Corporate Communications', 'person': {'first_name': 'Shannon', 'last_name': 'Stubo', 'permalink': 'shannon-stubo'}}, {'is_past': True, 'title': 'VP, Mobile', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': True, 'title': 'VP, Product Search', 'person': {'first_name': 'Amir', 'last_name': 'Ashkenazi', 'permalink': 'amir-ashkenazi'}}, {'is_past': True, 'title': 'VP, General Manager', 'person': {'first_name': 'Gil', 'last_name': 'Penchina', 'permalink': 'gil-penchina'}}, {'is_past': True, 'title': 'VP, Internet Marketing & Strategic Partnerships', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'VP, eBay Motors', 'person': {'first_name': 'Rob', 'last_name': 'Chesney', 'permalink': 'rob-chesney'}}, {'is_past': True, 'title': 'SVP, eBay New Ventures', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'VP, Seller Experience', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': True, 'title': 'Board of Directors/Executive VP', 'person': {'first_name': 'Rajiv', 'last_name': 'Dutta', 'permalink': 'rajiv-dutta'}}, {'is_past': True, 'title': 'President, eBay Marketplaces', 'person': {'first_name': 'William C.', 'last_name': 'Cobb', 'permalink': 'william-c-cobb'}}, {'is_past': True, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Amlan', 'last_name': 'Chatterjee', 'permalink': 'amlan-chatterjee'}}, {'is_past': True, 'title': 'eBay Fellow, director ATG', 'person': {'first_name': 'Louis', 'last_name': 'Monier', 'permalink': 'louis-monier'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mary', 'last_name': 'Lou Song', 'permalink': 'mary-lou-song'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Josh', 'last_name': 'Silverman', 'permalink': 'josh-silverman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abe', 'last_name': 'Thomas', 'permalink': 'abe-thomas'}}, {'is_past': True, 'title': 'Product Manager, Desktop', 'person': {'first_name': 'Alan', 'last_name': 'Lewis', 'permalink': 'alan-lewis'}}, {'is_past': True, 'title': 'Senior Manager, Internet Marketing & Business Development', 'person': {'first_name': 'Dave', 'last_name': 'Lu', 'permalink': 'david-lu'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Ole', 'last_name': 'Brandenburg', 'permalink': 'ole-brandenburg'}}, {'is_past': True, 'title': 'Head of Relationship Marketing', 'person': {'first_name': 'Nigel', 'last_name': 'Whiteoak', 'permalink': 'nigel-whiteoak'}}, {'is_past': True, 'title': 'Director, Retention Marketing', 'person': {'first_name': 'Mark', 'last_name': 'Harrington', 'permalink': 'mark-harrington'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Todd', 'last_name': 'Pringle', 'permalink': 'todd-pringle'}}, {'is_past': True, 'title': 'GM, Planning, Formats & Premium Features', 'person': {'first_name': 'David', 'last_name': 'Feller', 'permalink': 'david-feller'}}, {'is_past': True, 'title': 'Managing Director, Canada', 'person': {'first_name': 'Jordan', 'last_name': 'Banks', 'permalink': 'jordan-banks'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Greg', 'last_name': 'Bettinelli', 'permalink': 'greg-bettinelli'}}, {'is_past': True, 'title': 'Director, eBay Express North America', 'person': {'first_name': 'Adam', 'last_name': 'Nash', 'permalink': 'adam-nash'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Justin', 'last_name': 'Miller', 'permalink': 'justin-miller-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Larry', 'last_name': 'Cornett', 'permalink': 'larry-cornett'}}, {'is_past': True, 'title': 'Director, Global Buyer Engagement', 'person': {'first_name': 'Dan', 'last_name': 'Burkhart', 'permalink': 'dan-burkhart-2'}}, {'is_past': True, 'title': 'Director, Business Development & Marketing Strategy', 'person': {'first_name': 'Allan', 'last_name': 'Majotra', 'permalink': 'allan-majotra'}}, {'is_past': True, 'title': 'VP, eBay Buyer Experience', 'person': {'first_name': 'Rob', 'last_name': 'Chesney', 'permalink': 'rob-chesney'}}, {'is_past': True, 'title': 'Executive Senior Vice President of Contrarian Thinking', 'person': {'first_name': 'Anthony', 'last_name': 'Nemitz', 'permalink': 'anthony-nemitz'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Heidema', 'permalink': 'jason-heidema'}}, {'is_past': True, 'title': 'Director, PR, Marketplaces', 'person': {'first_name': 'Jennifer', 'last_name': 'Caukin', 'permalink': 'jennifer-caukin'}}, {'is_past': True, 'title': 'Executive Recruiter', 'person': {'first_name': 'Sean', 'last_name': 'Splaine', 'permalink': 'sean-splaine'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Director, Design', 'person': {'first_name': 'Preston', 'last_name': 'Smalley', 'permalink': 'preston-smalley'}}, {'is_past': True, 'title': 'Senior Manager, Customer Acquisition', 'person': {'first_name': 'Clint', 'last_name': 'Schmidt', 'permalink': 'clint-schmidt'}}, {'is_past': True, 'title': 'Manager, Top Sellers (Power Sellers)', 'person': {'first_name': 'Tiffaney', 'last_name': 'Fox Quintana', 'permalink': 'tiffaney-fox-quintana'}}, {'is_past': True, 'title': 'Head of Strategy UK', 'person': {'first_name': 'Doug', 'last_name': 'Monro', 'permalink': 'doug-monro'}}, {'is_past': True, 'title': 'Director, Strategy, Analytics, and Product / Distinguished Research Scientist', 'person': {'first_name': 'DJ', 'last_name': 'Patil', 'permalink': 'dj-patil'}}, {'is_past': True, 'title': 'Deputy General Counsel', 'person': {'first_name': 'Kent', 'last_name': 'Walker', 'permalink': 'kent-walker-2'}}, {'is_past': True, 'title': 'Director, UX', 'person': {'first_name': 'Shailesh', 'last_name': 'Shilwant', 'permalink': 'shailesh-shilwant'}}, {'is_past': True, 'title': 'Consumer Electronics Category', 'person': {'first_name': 'Gary', 'last_name': 'Calega', 'permalink': 'gary-calega'}}, {'is_past': True, 'title': 'Head of Strategy, Taiwan', 'person': {'first_name': 'Bruce', 'last_name': 'Chen', 'permalink': 'bruce-chen-2'}}, {'is_past': True, 'title': 'Business Developer and Innovation', 'person': {'first_name': 'Clément', 'last_name': 'Delangue', 'permalink': 'clment-delangue'}}, {'is_past': True, 'title': 'Director, eBay Buyer Protection', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Director, Marketing and CLV', 'person': {'first_name': 'Arnaud', 'last_name': 'Collin', 'permalink': 'arnaud-collin'}}, {'is_past': True, 'title': 'Senior Manager, Seller Marketing', 'person': {'first_name': 'Tommaso', 'last_name': 'Cacurio', 'permalink': 'tommaso-cacurio'}}, {'is_past': True, 'title': 'Account Executive, Private Marketplace', 'person': {'first_name': 'Nick', 'last_name': 'Basso', 'permalink': 'nick-basso'}}, {'is_past': True, 'title': 'New Ventures Associate', 'person': {'first_name': 'Sandro', 'last_name': 'Diazzi', 'permalink': 'sandro-diazzi'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Billy', 'last_name': 'Leung', 'permalink': 'billy-leung'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Alexi', 'last_name': 'Suvacioglu', 'permalink': 'alexi-suvacioglu'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Canning', 'permalink': 'rob-canning'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Katharine', 'last_name': 'Lewis', 'permalink': 'katharine-lewis'}}, {'is_past': True, 'title': 'Director Advertising', 'person': {'first_name': 'Michel', 'last_name': 'Vergotte', 'permalink': 'michel-vergotte'}}, {'is_past': True, 'title': 'General Manager, Sr Director Business & Industrial', 'person': {'first_name': 'Jordan', 'last_name': 'Glazier', 'permalink': 'jordan-glazier'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Darian', 'last_name': 'Shirazi', 'permalink': 'darian-shirazi'}}, {'is_past': True, 'title': 'Sr. Director of Product Development', 'person': {'first_name': 'Shawn', 'last_name': 'Kernes', 'permalink': 'shawn-kernes'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Stromberg', 'permalink': 'eric-stromberg-2'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'David', 'last_name': 'Wygant', 'permalink': 'david-wygant'}}, {'is_past': True, 'title': 'Senior Manager leading the Platform Solutions Group', 'person': {'first_name': 'Bjorn', 'last_name': 'Behrendt', 'permalink': 'bjorn-behrendt'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Faith', 'last_name': 'Sedlin', 'permalink': 'faith-sedlin'}}, {'is_past': True, 'title': 'Senior Director Advertising and Internet Marketing,Senior Director New Business ,Director Corporate Developement', 'person': {'first_name': 'Helmut', 'last_name': 'Becker', 'permalink': 'helmut-becker'}}, {'is_past': True, 'title': 'Finance Manager, International', 'person': {'first_name': 'Eric', 'last_name': 'Horndahl', 'permalink': 'eric-horndahl'}}, {'is_past': True, 'title': 'Head of Product Management', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Lee', 'last_name': 'Bouyea', 'permalink': 'lee-bouyea'}}, {'is_past': True, 'title': 'Product Manager, Selling', 'person': {'first_name': 'Rob', 'last_name': 'Veres', 'permalink': 'rob-veres'}}, {'is_past': True, 'title': 'Special Projects Manager', 'person': {'first_name': 'Chris', 'last_name': 'Downie', 'permalink': 'chris-downie'}}, {'is_past': True, 'title': 'Head', 'person': {'first_name': 'Chittu', 'last_name': 'Nagarajan', 'permalink': 'chittu-nagarajan'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Forth', 'permalink': 'aaron-forth'}}, {'is_past': True, 'title': 'Senior Product Manager, Disruptive Innovations Group', 'person': {'first_name': 'Anirban', 'last_name': 'Datta', 'permalink': 'anirban-datta'}}, {'is_past': True, 'title': 'Director, PayPal International Marketplaces', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sen Software Engineer', 'person': {'first_name': 'Anurag', 'last_name': 'Dod', 'permalink': 'anurag-dod'}}, {'is_past': True, 'title': 'Principal Member of Product Development', 'person': {'first_name': 'Sherif', 'last_name': 'Korashy', 'permalink': 'sherif-korashy'}}, {'is_past': True, 'title': 'Director, Search Engine Marketing and Internet Marketing Strategy and planning', 'person': {'first_name': 'Will', 'last_name': 'Martin-Gill', 'permalink': 'will-martin-gill'}}, {'is_past': True, 'title': 'Part Leader', 'person': {'first_name': 'Dylan', 'last_name': 'Ko', 'permalink': 'dylan-ko'}}, {'is_past': True, 'title': 'Director of Corporate Development', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Summer Intern, Top Seller Development', 'person': {'first_name': 'Jonah', 'last_name': 'Lopin', 'permalink': 'jonah-lopin'}}, {'is_past': True, 'title': 'Director of Engineering for Search and Discover, Director of Engineering for Verticals, Director of Research and Engineering', 'person': {'first_name': 'Ali', 'last_name': 'Dasdan', 'permalink': 'ali-dasdan'}}, {'is_past': True, 'title': 'President, eBay Technology', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Managing Director, eBay Germany', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ajay', 'last_name': 'Agrawal', 'permalink': 'ajay-agrawal'}}, {'is_past': True, 'title': 'Business Development Associate', 'person': {'first_name': 'Carey', 'last_name': 'Lai', 'permalink': 'carey-lai'}}, {'is_past': True, 'title': 'Senior Manager Corporate Communications', 'person': {'first_name': 'Usher', 'last_name': 'Lieberman', 'permalink': 'usher-lieberman'}}, {'is_past': True, 'title': 'Sr. Business Development Manager - Strategic Partnerships', 'person': {'first_name': 'Jon', 'last_name': 'Phenix', 'permalink': 'jon-phenix'}}, {'is_past': True, 'title': 'Director of Categories (Product, Marketing, BD)', 'person': {'first_name': 'Sergio', 'last_name': 'Monsalve', 'permalink': 'sergio-monsalve'}}, {'is_past': True, 'title': 'Director, Verticals Fashion', 'person': {'first_name': 'Diana', 'last_name': 'L. Williams', 'permalink': 'diana-l-williams'}}, {'is_past': True, 'title': 'Director, Finance', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Manager - Motors', 'person': {'first_name': 'Jiby', 'last_name': 'Thomas', 'permalink': 'jiby-thomas'}}, {'is_past': True, 'title': 'Vice President, Seller Experience', 'person': {'first_name': 'Jim', 'last_name': 'Ambach', 'permalink': 'jim-ambach'}}, {'is_past': True, 'title': 'Associate Category Manager', 'person': {'first_name': 'Sarah', 'last_name': 'Welch', 'permalink': 'sarah-welch'}}, {'is_past': True, 'title': 'President, eBay Marketplaces', 'person': {'first_name': 'Lorrie', 'last_name': 'Norrington', 'permalink': 'lorrie-norrington'}}, {'is_past': True, 'title': 'Director, Business Operations', 'person': {'first_name': 'Nancy', 'last_name': 'Ramamurthi', 'permalink': 'nancy-ramamurthi'}}, {'is_past': True, 'title': 'Sr. Director, Buyer Experience', 'person': {'first_name': 'Kirstin', 'last_name': 'Hoefer', 'permalink': 'kirstin-hoefer'}}, {'is_past': True, 'title': 'Consulting Search Scientist', 'person': {'first_name': 'Michael', 'last_name': 'Tung', 'permalink': 'michael-tung'}}, {'is_past': True, 'title': 'Senior Member of Technical Staff', 'person': {'first_name': 'Justin', 'last_name': 'Van Winkle', 'permalink': 'justin-van-winkle'}}, {'is_past': True, 'title': 'MBA Intern - Business Development', 'person': {'first_name': 'Joseph', 'last_name': 'Holland', 'permalink': 'joseph-holland'}}, {'is_past': True, 'title': 'Senior Interactive Designer and Online Producer', 'person': {'first_name': 'Andrea', 'last_name': 'Ho', 'permalink': 'andrea-ho'}}, {'is_past': True, 'title': 'GM, Fashion', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Vivek', 'last_name': 'Goyal', 'permalink': 'vivek-goyal'}}, {'is_past': True, 'title': 'Strategy and Business Development Manager', 'person': {'first_name': 'Tom', 'last_name': 'Valentine', 'permalink': 'tom-valentine'}}, {'is_past': True, 'title': 'Product Manager (Shopping.com)', 'person': {'first_name': 'Maya', 'last_name': 'Pizov', 'permalink': 'maya-pizov'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Nico', 'last_name': 'Posner', 'permalink': 'nico-posner'}}, {'is_past': True, 'title': 'Manager eBay Operations, Netherlands', 'person': {'first_name': 'Egbert', 'last_name': 'van Keulen', 'permalink': 'egbert-van-keulen'}}, {'is_past': True, 'title': 'HR. Head, Southeast Asia, Japan, & India', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Executive Recruiter', 'person': {'first_name': 'Gina', 'last_name': 'Moss', 'permalink': 'gina-moss'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Sudhakar', 'last_name': 'Chintu', 'permalink': 'sudhakar-chintu'}}, {'is_past': True, 'title': 'Product Manager - User Acquistion', 'person': {'first_name': 'Amy', 'last_name': 'Chang', 'permalink': 'amy-chang'}}, {'is_past': True, 'title': 'Managing Director Europe', 'person': {'first_name': 'Alexander', 'last_name': 'Samwer', 'permalink': 'alexander-samwer'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Oliver', 'last_name': 'Samwer', 'permalink': 'oliver-samwer'}}, {'is_past': True, 'title': 'Group Manager, Product Management & Product Marketing', 'person': {'first_name': 'Chung', 'last_name': 'Meng Cheong', 'permalink': 'chung-meng-cheong'}}, {'is_past': True, 'title': 'Director, Customer Retention', 'person': {'first_name': 'Allis', 'last_name': 'Ghim', 'permalink': 'allis-ghim'}}, {'is_past': True, 'title': 'Country Finance Director, East Asia', 'person': {'first_name': 'Kalyan', 'last_name': 'Krishnamurthy', 'permalink': 'kalyan-krishnamurthy'}}, {'is_past': True, 'title': 'Sr. Business Development/Category Manager', 'person': {'first_name': 'Dave', 'last_name': 'Coglizer', 'permalink': 'dave-coglizer'}}, {'is_past': True, 'title': 'Senior Director of Information Security', 'person': {'first_name': 'Chris', 'last_name': 'Lalonde', 'permalink': 'chris-lalonde'}}, {'is_past': True, 'title': 'Infrastructure Architect', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Senior Member of Technical Staffs', 'person': {'first_name': 'Simon', 'last_name': 'Ru', 'permalink': 'simon-ru'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Czaja', 'permalink': 'jonathan-czaja'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Eric', 'last_name': 'Moriarty', 'permalink': 'eric-moriarty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Guy', 'permalink': 'dan-guy'}}, {'is_past': True, 'title': 'SVP, Corporate Affairs', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'Senior Manager, Internet Marketing', 'person': {'first_name': 'Ryan', 'last_name': 'Spoon', 'permalink': 'ryan-spoon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Blake', 'last_name': 'Williams', 'permalink': 'blake-williams'}}, {'is_past': True, 'title': 'Principal, Product Strategy', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'SVP, Product', 'person': {'first_name': 'Andre', 'last_name': 'Haddad', 'permalink': 'andre-haddad'}}, {'is_past': True, 'title': 'Senior PR Manager', 'person': {'first_name': 'Dean', 'last_name': 'Jutilla', 'permalink': 'dean-jutilla'}}, {'is_past': True, 'title': 'Director, Marketplace Programs', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Chuck', 'last_name': 'Freedman', 'permalink': 'chuck-freedman'}}, {'is_past': True, 'title': 'Head of Seller Experience', 'person': {'first_name': 'Nigel', 'last_name': 'Whiteoak', 'permalink': 'nigel-whiteoak'}}, {'is_past': True, 'title': 'Senior Manager, Site Experience', 'person': {'first_name': 'Adrian', 'last_name': 'Sevitz', 'permalink': 'adrian-sevitz'}}, {'is_past': True, 'title': 'Community Manager', 'person': {'first_name': 'Jose Antonio', 'last_name': 'Gallego', 'permalink': 'jose-antonio-gallego'}}, {'is_past': True, 'title': 'Director, Distributed Commerce', 'person': {'first_name': 'Josh', 'last_name': 'Wetzel', 'permalink': 'josh-wetzel-3'}}, {'is_past': True, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Udi', 'last_name': 'Nir', 'permalink': 'udi-nir'}}, {'is_past': True, 'title': 'Sr. Director, Global CS Infrastructure', 'person': {'first_name': 'George', 'last_name': 'Leimer', 'permalink': 'george-leimer'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Siddharth', 'last_name': 'Anand', 'permalink': 'siddharth-anand'}}, {'is_past': True, 'title': 'User Experience Architect, Disruptive Innovations', 'person': {'first_name': 'Rob', 'last_name': 'Abbott', 'permalink': 'rob-abbott'}}, {'is_past': True, 'title': 'Head, Global SEM', 'person': {'first_name': 'Prashant', 'last_name': 'Puri', 'permalink': 'prashant-puri'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Leonard', 'last_name': 'Speiser', 'permalink': 'leonard-speiser'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'VP & GM, eBay Motors', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Director, Product, Buyers', 'person': {'first_name': 'Micki', 'last_name': 'Seibel', 'permalink': 'micki-seibel'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Art', 'last_name': 'Leyzerovich', 'permalink': 'art-leyzerovich'}}, {'is_past': True, 'title': 'Director, Global Ad Sales', 'person': {'first_name': 'Scott', 'last_name': 'Engler', 'permalink': 'scott-engler'}}, {'is_past': True, 'title': 'Head of CRM Loyalty Marketing', 'person': {'first_name': 'Natasha', 'last_name': 'Raja', 'permalink': 'natasha-raja'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'David L.', 'last_name': 'Jones', 'permalink': 'david-jones'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Vaughan', 'last_name': 'Smith', 'permalink': 'vaughan-smith'}}, {'is_past': True, 'title': 'Director, Parts & Accessories', 'person': {'first_name': 'Ro', 'last_name': 'Choy', 'permalink': 'ro-choy'}}, {'is_past': True, 'title': 'Head of Retail Business Development', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': True, 'title': 'Head of Internet Marketing', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Greg', 'last_name': 'McCullough', 'permalink': 'greg-mccullough-2'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Nii', 'last_name': 'A. Ahene', 'permalink': 'nii-a-ahene'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Go', 'permalink': 'rob-go'}}, {'is_past': True, 'title': 'Seller Acquistion and Development', 'person': {'first_name': 'Gary', 'last_name': 'Calega', 'permalink': 'gary-calega'}}, {'is_past': True, 'title': 'Corporate Infrastructure Engineer', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Senior Director, Strategic Partnerships', 'person': {'first_name': 'Don', 'last_name': 'Albert', 'permalink': 'don-albert'}}, {'is_past': True, 'title': 'Senior Manager, Platform Evangelism', 'person': {'first_name': 'Jeffrey', 'last_name': 'McManus', 'permalink': 'jeffrey-mcmanus'}}, {'is_past': True, 'title': 'Software Engineer 3, Quality', 'person': {'first_name': 'Milind', 'last_name': 'Shah', 'permalink': 'milind-shah'}}, {'is_past': True, 'title': 'Technology Director', 'person': {'first_name': 'Richard', 'last_name': 'Shusterman', 'permalink': 'richard-shusterman'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Lily', 'last_name': 'Shen', 'permalink': 'lily-shen'}}, {'is_past': True, 'title': 'GM, eBay North America', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Consumer Marketing, GM eBay Business', 'person': {'first_name': 'Lori', 'last_name': 'Goler', 'permalink': 'lori-goler'}}, {'is_past': True, 'title': 'Sr. Product and Design Manager', 'person': {'first_name': 'Christina', 'last_name': 'Mercando', 'permalink': 'christina-mercando'}}, {'is_past': True, 'title': 'Sr. Application/Tools Engineer', 'person': {'first_name': 'Taner', 'last_name': 'Halicioglu', 'permalink': 'taner-halicioglu'}}, {'is_past': True, 'title': 'Head of Planning & Analytics', 'person': {'first_name': 'Sanford', 'last_name': 'Kenyon', 'permalink': 'sanford-kenyon'}}, {'is_past': True, 'title': 'Director of Advertising', 'person': {'first_name': 'Aaron', 'last_name': 'Forth', 'permalink': 'aaron-forth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Sung', 'permalink': 'alex-sung'}}, {'is_past': True, 'title': 'Software Development Engineer II', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Gonzalez', 'permalink': 'john-gonzalez-2'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Joel', 'last_name': 'Johnson', 'permalink': 'joel-johnson'}}, {'is_past': True, 'title': 'Director eBay Europe', 'person': {'first_name': 'Mattias', 'last_name': 'Danielsson', 'permalink': 'mattias-danielsson'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Sr. Manager, Tailored Shopping Experiences - eBay Express', 'person': {'first_name': 'Chris', 'last_name': 'Maliwat', 'permalink': 'chris-maliwat'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Stefan', 'last_name': 'Groß-Selbeck', 'permalink': 'stefan-gro-selbeck'}}, {'is_past': True, 'title': 'HR Consultant - eBay Motors and eBay Financing Center', 'person': {'first_name': 'Jill', 'last_name': 'Kulick', 'permalink': 'jill-kulick'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Li', 'permalink': 'alex-li'}}, {'is_past': True, 'title': 'Strategic Advisor, Sustainable Shopping', 'person': {'first_name': 'Priya', 'last_name': 'Haji', 'permalink': 'priya-haji'}}, {'is_past': True, 'title': 'Head, New Businesses, eBay Motors', 'person': {'first_name': 'Mark', 'last_name': 'Hohmann', 'permalink': 'mark-hohmann'}}, {'is_past': True, 'title': 'Product/Project Manager', 'person': {'first_name': 'Dave', 'last_name': 'Heilmann', 'permalink': 'dave-heilmann'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Josh', 'last_name': 'Knepfle', 'permalink': 'josh-knepfle'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'Head of Motors and Category Development', 'person': {'first_name': 'Andrew', 'last_name': 'Robb', 'permalink': 'andrew-robb'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Henry', 'last_name': 'Vogel', 'permalink': 'henry-vogel'}}, {'is_past': True, 'title': 'Sr. Director, Product Strategy & Operations, eBay North America', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'Head of Marketing, New York', 'person': {'first_name': 'Kelly', 'last_name': 'Ford', 'permalink': 'kelly-ford'}}, {'is_past': True, 'title': 'Director of Product Management, Buyer Applications', 'person': {'first_name': 'Yulie', 'last_name': 'Kim', 'permalink': 'yulie-kim'}}, {'is_past': True, 'title': 'Director, International', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Director of Development', 'person': {'first_name': 'Michael', 'last_name': 'Gardner', 'permalink': 'michael-gardner'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'Kenneth', 'last_name': 'Chiu', 'permalink': 'kenneth-chiu'}}, {'is_past': True, 'title': 'Director, Corporate Development', 'person': {'first_name': 'Stewart', 'last_name': 'Ellis', 'permalink': 'stewart-ellis'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Jen', 'last_name': 'Faenza', 'permalink': 'jen-faenza'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Sean', 'last_name': 'Macnew', 'permalink': 'sean-macnew'}}, {'is_past': True, 'title': 'Director, eBay Express', 'person': {'first_name': 'Bob', 'last_name': 'Holden', 'permalink': 'bob-holden'}}, {'is_past': True, 'title': 'Software Developer Intern', 'person': {'first_name': 'Ben', 'last_name': 'McRedmond', 'permalink': 'ben-mcredmond'}}, {'is_past': True, 'title': 'Senior Product Manager, Finding Traffic Optimization', 'person': {'first_name': 'Elliot', 'last_name': 'Shmukler', 'permalink': 'elliot-shmukler'}}, {'is_past': True, 'title': 'General Manager, US Classifieds & Mobile', 'person': {'first_name': 'Deepak', 'last_name': 'Thomas', 'permalink': 'deepak-thomas'}}, {'is_past': True, 'title': 'Senior Manager, PR', 'person': {'first_name': 'Michele', 'last_name': 'Husak', 'permalink': 'michele-husak'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Jalpa', 'last_name': 'Trivedi', 'permalink': 'jalpa-trivedi'}}, {'is_past': True, 'title': 'marketing leadership', 'person': {'first_name': 'Anna', 'last_name': 'Fieler', 'permalink': 'anna-fieler'}}, {'is_past': True, 'title': 'Finance Director, eBay UK', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Entertainment Strategic Partnerships', 'person': {'first_name': 'Chris', 'last_name': 'Fralic', 'permalink': 'chris-fralic'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'General Manager, eBay Ireland', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Senior Manager, Billing & Collections', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Evan', 'last_name': 'Liang', 'permalink': 'evan-liang'}}, {'is_past': True, 'title': 'Top Buyer Group', 'person': {'first_name': 'Timothy', 'last_name': 'Lo', 'permalink': 'timothy-lo'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Raghav', 'last_name': 'Gupta', 'permalink': 'raghav-gupta-3'}}, {'is_past': True, 'title': 'Strategy Manager (Summer Internship), Corporate Strategy Group', 'person': {'first_name': 'Michal', 'last_name': 'Panowicz', 'permalink': 'michal-panowicz'}}, {'is_past': True, 'title': 'Marketing Campaigns Technical Consultant', 'person': {'first_name': 'Amit', 'last_name': 'Narayanan', 'permalink': 'amit-narayanan'}}, {'is_past': True, 'title': 'Sr. Manager, Customer Analytics', 'person': {'first_name': 'Asher', 'last_name': 'Matsuda', 'permalink': 'asher-matsuda'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Maya', 'last_name': 'Pizov', 'permalink': 'maya-pizov'}}, {'is_past': True, 'title': 'IT Asset Management', 'person': {'first_name': 'Daniel', 'last_name': 'Barney', 'permalink': 'daniel-barney'}}, {'is_past': True, 'title': 'Head of Category Management', 'person': {'first_name': 'Marina', 'last_name': 'Tognetti', 'permalink': 'marina-tognetti'}}, {'is_past': True, 'title': 'Senior VP, eBay International', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Several senior positions', 'person': {'first_name': 'Bill', 'last_name': 'Barmeier', 'permalink': 'bill-barmeier'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'MD', 'person': {'first_name': 'Frederic', 'last_name': 'de Bure', 'permalink': 'frederic-de-bure'}}, {'is_past': True, 'title': 'Director & General Manager, ProStores', 'person': {'first_name': 'Eric', 'last_name': 'Shoup', 'permalink': 'eric-shoup'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Marc', 'last_name': 'Samwer', 'permalink': 'marc-samwer'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Yidrienne', 'last_name': 'Lai', 'permalink': 'yidrienne-lai'}}, {'is_past': True, 'title': 'Technology Evaluation / Scalability Strategy Manager ,, Program Manager, Advanced Technology Group', 'person': {'first_name': 'Thomas', 'last_name': 'DiGrazia', 'permalink': 'thomas-digrazia'}}, {'is_past': True, 'title': 'Director, Financial Planning & Analysis, Asia Pacific Region', 'person': {'first_name': 'Kalyan', 'last_name': 'Krishnamurthy', 'permalink': 'kalyan-krishnamurthy'}}, {'is_past': True, 'title': 'VP Strategic Partnerships', 'person': {'first_name': 'Gary', 'last_name': 'Dillabough', 'permalink': 'gary-dillabough'}}, {'is_past': True, 'title': 'Mobile Strategy and Operations - PayPal Here', 'person': {'first_name': 'Imran', 'last_name': 'Ahmad', 'permalink': 'imran-ahmad'}}, {'is_past': True, 'title': 'Principal Database Administrator', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}, {'is_past': True, 'title': 'Sales & Key Account Manager', 'person': {'first_name': 'Peggy', 'last_name': 'Housset', 'permalink': 'peggy-housset'}}, {'is_past': True, 'title': 'Management Consultant / Program Manager', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Howard', 'last_name': 'Rosenberg', 'permalink': 'howard-rosenberg'}}, {'is_past': True, 'title': 'Several Positions', 'person': {'first_name': 'Dave', 'last_name': 'Gershon', 'permalink': 'dave-gershon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Travers', 'permalink': 'david-travers'}}], 'competitions': [{'competitor': {'name': 'Taobao', 'permalink': 'taobao'}}, {'competitor': {'name': 'Seatwave', 'permalink': 'seatwave'}}, {'competitor': {'name': 'Craigslist', 'permalink': 'craigslist'}}, {'competitor': {'name': 'Darrb', 'permalink': 'darrb'}}, {'competitor': {'name': 'Infibeam', 'permalink': 'infibeam'}}, {'competitor': {'name': 'OLX', 'permalink': 'olx'}}, {'competitor': {'name': 'MyFab', 'permalink': 'myfab'}}, {'competitor': {'name': 'Wigix', 'permalink': 'wigix'}}, {'competitor': {'name': 'MyStore.com', 'permalink': 'mystore'}}, {'competitor': {'name': 'iList', 'permalink': 'ilist'}}, {'competitor': {'name': 'erento', 'permalink': 'erento'}}, {'competitor': {'name': 'Corkin', 'permalink': 'corkin'}}, {'competitor': {'name': 'CellBazaar', 'permalink': 'cellbazaar'}}, {'competitor': {'name': 'MySkip.com', 'permalink': 'myskip-com'}}, {'competitor': {'name': '1000 Markets', 'permalink': '1000-markets'}}, {'competitor': {'name': 'Swapidy', 'permalink': 'swapidy'}}, {'competitor': {'name': 'Equallo', 'permalink': 'equallo'}}], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Cooley LLP', 'permalink': 'cooley-godward-kronish-llp'}}, {'title': 'UK, France', 'is_past': False, 'provider': {'name': 'Ballou PR', 'permalink': 'ballou-pr'}}], 'total_money_raised': '$6.7M', 'funding_rounds': [{'id': 24534, 'round_code': 'unattributed', 'source_url': 'http://www.fundinguniverse.com/company-histories/Benchmark-Capital-Company-History.html', 'source_description': 'Benchmark Capital', 'raised_amount': 6700000, 'raised_currency_code': 'USD', 'funded_year': 1997, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/05/channeladvisor.html', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://channeladvisor.com/company/press_releases/2004/pr040122.html', 'source_description': 'ChannelAdvisor Press Release', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 22, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://channeladvisor.com/company/press_releases/2005/pr050428.html', 'source_description': 'ChannelAdvisor Press Release', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 28, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.earthtimes.org/articles/show/channeladvisor-secures-20-million-in-funding,527146.shtml', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 5, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2004/08/14/BUG6B87P0F1.DTL', 'source_description': 'EBay buys 25% stake in Craigslist', 'raised_amount': 13500000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 8, 'funded_day': 14, 'company': {'name': 'Craigslist', 'permalink': 'craigslist'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businessweek.com/technology/content/mar2006/tc20060309_072549.htm', 'source_description': \" eBay's Affinity for Meetup.com \", 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 9, 'company': {'name': 'Meetup', 'permalink': 'meetup'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_description': 'eBay Completes Skype Sale at $2.75 Billion Valuation', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 19, 'company': {'name': 'Skype', 'permalink': 'skype'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.appcelerator.com/2010/10/appcelerator-and-paypal-team-up/', 'source_description': 'Sierra Leads $9 Million Investment in Appcelerator; eBay Makes Strategic Investment', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 26, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/03/15/magento-scores-22-5-million-for-open-source-e-commerce-platform-play/', 'source_description': 'Magento Scores $22.5 Million For Open Source E-commerce Platform Play', 'raised_amount': 22500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Magento', 'permalink': 'magento'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcircle.vccircle.com/500/quikr-raises-8m-in-series-d-led-by-nokia-growth-partners/', 'source_description': 'Quikr Raises $8M In Series D, Led By Nokia Growth Partners', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'Quikr India', 'permalink': 'quikr-india'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/07/13/ebay-and-rubbermaid-put-6-million-in-order-fulfillment-company-shipwire/', 'source_description': 'eBay And Rubbermaid Put $6 Million In Order Fulfillment Company Shipwire', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 13, 'company': {'name': 'Shipwire', 'permalink': 'shipwire'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/11/01/appcelerator-raises-15-million-series-c-round/', 'source_description': 'Appcelerator Raises $15 Million Series C Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2012/05/22/quikr-raises-32m/', 'source_description': 'Quikr, India’s Spin On Craigslist, Gobbles Up $32M From Warburg Pincus, eBay & More', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 22, 'company': {'name': 'Quikr India', 'permalink': 'quikr-india'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://venturebeat.com/2013/04/01/snapdeal-funding/', 'source_description': 'Snapdeal nabs $50M from eBay & others to dominate online Indian e-commerce', 'raised_amount': 75000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 1, 'company': {'name': 'Snapdeal', 'permalink': 'snapdeal'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/04/10/bypass-grabs-3-5m-from-ebay-nolan-ryan-others-to-help-big-ticket-venues-upgrade-their-payment-solutions/', 'source_description': 'Bypass Grabs $3.5M From eBay, Nolan Ryan & Others To Help Big-Ticket Venues Upgrade Their Payment Solutions', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 10, 'company': {'name': 'Bypass Mobile', 'permalink': 'bypass-lane'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2013/07/16/appcelerator-raise/', 'source_description': 'Appcelerator Raises $12.1M To Expand Into Asia And Help Enterprises Build The Best Apps', 'raised_amount': 12100000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 16, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 200000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Cuturia', 'permalink': 'cuturia'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'company': {'name': 'PayPal', 'permalink': 'paypal'}}, {'price_amount': 620000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://archive.thestandard.com/internetnews/003081.php', 'source_description': 'EBay buys Shopping.com for $620 million', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 2, 'company': {'name': 'Shopping.com', 'permalink': 'shopping-com'}}, {'price_amount': 48300000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.thealarmclock.com/euro/archives/2006/04/ebay_buy_swedens_traderacom_gi.html', 'source_description': \"eBay Acquires Sweden's Tradera.com - VCs Exit\", 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Tradera', 'permalink': 'tradera'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.auctionbytes.com/cab/abn/y07/m03/i30/s00', 'source_description': 'eBay Getting into Micro-Finance through Purchase of MicroPlace', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'MicroPlace', 'permalink': 'microplace'}}, {'price_amount': 310000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2007/01/10/its-official-ebay-is-buying-stubhub-for-310-million/', 'source_description': 'It’s Official - eBay is Buying StubHub For $310 million', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 10, 'company': {'name': 'StubHub', 'permalink': 'stubhub'}}, {'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://ecommercetimes.com/story/3555.html', 'source_description': 'eBay Broadens Scope with Half.com Buy', 'acquired_year': 2000, 'acquired_month': 6, 'acquired_day': 13, 'company': {'name': 'Half.com', 'permalink': 'half-com'}}, {'price_amount': 945000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2008/10/06/ebay-spends-more-than-1-billion-to-buy-billmelater-and-dbadk-and-lays-off-10-of-employees/', 'source_description': 'Ebay Spends More Than $1.2 Billion To Buy BillMeLater And DBA.dk, And Lays Off 10% Of Employees', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'price_amount': 380000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/10/06/ebay-buys-denmarks-dba-for-380-million/', 'source_description': 'eBay Buys Denmark’s DBA for $380 million', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Den Bla Avis', 'permalink': 'dba-dk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&newsId=20050630005091&newsLang=en', 'source_description': \"eBay's Kijiji Acquires German Classifieds Web Site opusforum\", 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'Opusforum.org', 'permalink': 'opusforum-org'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.zdnet.co.uk/internet/0,1000000097,39199141,00.htm', 'source_description': 'eBay grabs hold of Gumtree', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 19, 'company': {'name': 'Gumtree', 'permalink': 'gumtree'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.auctionbytes.com/cab/abn/y05/m05/i18/s05', 'source_description': \"eBay's Kijiji Acquires Gumtree & LoQUo Classifieds Sites\", 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Loquo', 'permalink': 'loquo'}}, {'price_amount': 415000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.internetnews.com/ec-news/article.php/3449421', 'source_description': 'eBay Grabs Rent.com for $415M', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': None, 'company': {'name': 'Rent.com', 'permalink': 'rent-com'}}, {'price_amount': 290000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=148001', 'source_description': 'eBay Acquires Dutch Company Marktplaats.nl', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Marktplaats.nl', 'permalink': 'marktplaats-nl'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.rediff.com/money/2004/jun/23ebay.htm', 'source_description': 'eBay buys Baazee.com for $50 mn', 'acquired_year': 2004, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Baazee', 'permalink': 'baazee'}}, {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=113943', 'source_description': 'eBay Completes EachNet Investment', 'acquired_year': 2003, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'EachNet', 'permalink': 'eachnet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=100770', 'source_description': 'eBay Motors Announces Acquisition Agreement and New Strategic Relationship', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'CARad', 'permalink': 'carad'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://investor.ebay.com/ReleaseDetail.cfm?releaseid=152866', 'source_description': 'eBay to Acquire Kurant Assets', 'acquired_year': 2005, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Kurant', 'permalink': 'kurant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Index Report', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Vuvox', 'permalink': 'vuvox'}}, {'price_amount': 215000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/04/12/ebay-acquires-turkish-marketplace-gittigidiyor/', 'source_description': 'eBay Acquires Turkish Marketplace GittiGidiyor', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'GittiGidiyor.com', 'permalink': 'gittigidiyor-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.ebay.com/releasedetail.cfm?ReleaseID=267296', 'source_description': 'eBay Acquires Afterbuy.com', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 4, 'company': {'name': 'ViA-Online', 'permalink': 'via-online'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://bits.blogs.nytimes.com/2008/08/13/ebay-in-talks-to-buy-share-of-korean-auction-site-gmarket/', 'source_description': 'EBay in Talks to Buy Share of Korean Auction Site GMarket', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 25, 'company': {'name': 'Gmarket', 'permalink': 'gmarket'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/06/23/ebay-acquires-barcode-scanning-iphone-app-redlaser/', 'source_description': 'eBay Acquires RedLaser To Integrate Barcode-Scanning Into iPhone Apps', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'RedLaser', 'permalink': 'redlaser'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_1998_July_16/ai_20909153/', 'source_description': 'eBay Announces Acquisition of Jump Inc. and Its Person-to-Person Online Trading Site Up4sale', 'acquired_year': 1998, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Jump', 'permalink': 'jump'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/eBay-buys-Butterfield--Butterfield/2100-1017_3-224933.html', 'source_description': 'eBay buys Butterfield & Butterfield', 'acquired_year': 1999, 'acquired_month': 4, 'acquired_day': 26, 'company': {'name': 'Butterfield & Butterfield', 'permalink': 'butterfield-butterfield'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/eBay-buys-Billpoint,-Kruse/2100-12_3-258449.html', 'source_description': 'eBay buys Billpoint, Kruse', 'acquired_year': 1999, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Billpoint', 'permalink': 'billpoint'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www2.prnewswire.com/cgi-bin/stories.pl?ACCT=105&STORY=/www/story/06-22-1999/0000968029', 'source_description': \"eBay Acquires Germany's Leading Online Person-to-Person Trading Site - alando.de AG\", 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 22, 'company': {'name': 'alando.de', 'permalink': 'alando-de'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=246467', 'source_description': 'eBay Acquires StumbleUpon', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 30, 'company': {'name': 'StumbleUpon', 'permalink': 'stumbleupon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ebayinkblog.com/2009/01/08/ebay-acquires-positronic-inc/', 'source_description': 'eBay Acquires Positronic, Inc.', 'acquired_year': 2009, 'acquired_month': 1, 'acquired_day': 8, 'company': {'name': 'Positronic', 'permalink': 'positronic'}}, {'price_amount': 75000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/02/confirmed-ebay-acquires-milo-for-75-million-investors-make-a-killing/', 'source_description': 'Confirmed: Ebay Acquires Milo For $75 Million. Investors Make A Killing.', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 2, 'company': {'name': 'Milo', 'permalink': 'milo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/15/ebay-buys-mobile-app-developer-critical-path-software/', 'source_description': 'eBay Buys Mobile App Developer Critical Path Software', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Critical Path Software', 'permalink': 'critical-path-software'}}, {'price_amount': 200000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'https://www.fis.dowjones.com/article.aspx?ProductIDFromApplication=32&aid=DJFVW00020101220e6cl0005m&r=Rss&s=DJFVW', 'source_description': \" EBay To Acquire Germany's Brands4friends For $200M\", 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'brands4friends', 'permalink': 'brands4friends'}}, {'price_amount': 2400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/28/ebay-to-acquire-gsi-commerce-for-2-4-billion/', 'source_description': 'eBay Acquires GSI Commerce For $2.4 Billion In Cash And Debt', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 20, 'company': {'name': 'GSI Commerce', 'permalink': 'gsi-commerce'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://bostinnovation.com/2011/04/20/retail-giant-ebay-acquires-where-for-135-million/', 'source_description': 'BostInnovation', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Where', 'permalink': 'where-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/05/02/ebay-acquires-nonprofit-fundraising-tool-missionfish/', 'source_description': 'eBay Acquires Nonprofit Fundraising Tool MissionFish', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'MissionFish', 'permalink': 'missionfish'}}, {'price_amount': 180000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/23/ebay-acquired-magento-for-over-180-million-but-not-everyone-is-smiling/', 'source_description': 'eBay Acquired Magento For Over $180 Million – But Not Everyone Is Smiling', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 6, 'company': {'name': 'Magento', 'permalink': 'magento'}}, {'price_amount': 240000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/07/07/ebay-acquires-mobile-payments-company-zong-for-240-million-in-cash/', 'source_description': \"eBay Buys Zong For $240 Million In Cash To Boost PayPal's Mobile Payments Technology\", 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 7, 'company': {'name': 'Zong', 'permalink': 'zong'}}, {'price_amount': 2600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/122516/ebay_buys_skype_for_26_billion.html', 'source_description': 'EBay Buys Skype for $2.6 Billion', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'Skype', 'permalink': 'skype'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://allthingsd.com/20110908/ebay-bets-on-social-commerce-with-acquisition-of-the-gifts-project/', 'source_description': 'All Things D', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'The Gifts Project', 'permalink': 'the-gifts-project'}}, {'price_amount': 80000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://uncrunched.com/2011/11/21/ebays-got-a-hunch-for-around-80-million/', 'source_description': 'EBAY’S GOT A HUNCH, FOR AROUND $80 MILLION', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 21, 'company': {'name': 'Hunch', 'permalink': 'hunch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20111222005130/en/eBay-Acquires-BillSAFE', 'source_description': 'eBay Inc. Acquires BillSAFE', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 22, 'company': {'name': 'BillSAFE', 'permalink': 'billsafe'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Flockish', 'permalink': 'flockish'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/06/ebay-acquires-style-focused-social-curated-shopping-site-svpply/', 'source_description': 'eBay Acquires Style-Focused, Social, Curated Shopping Site Svpply', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 6, 'company': {'name': 'Svpply', 'permalink': 'svpply'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/04/ebay-buys-2dehands-be-and-ememain-be-in-belgium-consolidates-classifieds-power-in-europe/', 'source_description': 'eBay Buys 2dehands.be And 2ememain.be In Belgium, Consolidates Classifieds Power In Europe', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': '2dehands.be', 'permalink': '2dehands-be'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/04/ebay-buys-2dehands-be-and-ememain-be-in-belgium-consolidates-classifieds-power-in-europe/', 'source_description': 'eBay Buys 2dehands.be And 2ememain.be In Belgium, Consolidates Classifieds Power In Europe', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': '2ememain.be', 'permalink': '2ememain-be'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/09/ebay-acquires-decide-com.html', 'source_description': 'Ebay Acquires Decide.com', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Decide.com', 'permalink': 'decide-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/27/ebay-acquires-mens-content-meets-commerce-shopping-site-bureau-of-trade/', 'source_description': 'Ebay Acquires Men’s “Content Meets Commerce” Shopping Site, Bureau Of Trade', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'Bureau Of Trade', 'permalink': 'bureau-of-trade'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/ebay-acquires-uk-startup-shutl-to-change-the-ecommerce-game-with-one-hour-delivery/', 'source_description': 'eBay Acquires UK Startup Shutl To Change The Ecommerce Game With One Hour Delivery', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Shutl', 'permalink': 'shutl'}}], 'offices': [{'description': 'Headquarters', 'address1': '2145 Hamilton Avenue', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.295005, 'longitude': -121.930035}], 'milestones': [{'id': 7107, 'description': 'eBay Q2 Revenue Hits $2.2 Billion', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2010/07/21/ebay-q2-revenue-hits-2-2-billion-paypal-adding-one-million-new-accounts-each-month/', 'source_text': '', 'source_description': 'eBay Q2 Revenue Hits $2.2 Billion, PayPal Adding One Million New Accounts Each Month', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 11521, 'description': 'eBay: Mobile Sales Grew From $600 Million To $2 Billion In 2010', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 6, 'source_url': 'http://techcrunch.com/2011/01/06/ebay-mobile-sales-2010/', 'source_text': '', 'source_description': 'eBay: Mobile Sales Grew From $600 Million To $2 Billion In 2010', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 14439, 'description': 'eBay Beats The Street; Revenue Up 16 Percent To $2.5B; Net Income Up 12 Percent', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/04/27/ebay-beats-the-street-revenue-up-16-percent-to-2-5b-net-income-up-12-percent/', 'source_text': '', 'source_description': 'eBay Beats The Street; Revenue Up 16 Percent To $2.5B; Net Income Up 12 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 15745, 'description': 'eBay Closes $2.4 Billion Acquisition Of GSI Commerce', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/06/20/ebay-closes-2-4-billion-acquisition-of-gsi-commerce/', 'source_text': '', 'source_description': 'eBay Closes $2.4 Billion Acquisition Of GSI Commerce', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1998, 'pub_month': 10, 'pub_day': 2, 'stock_symbol': 'NASDAQ:EBAY'}, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 71], 'assets/images/resized/0003/3450/33450v1-max-150x150.jpg'], [[250, 119], 'assets/images/resized/0003/3450/33450v1-max-250x250.jpg'], [[450, 215], 'assets/images/resized/0003/3450/33450v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 72], 'assets/images/resized/0014/8877/148877v1-max-150x150.jpg'], [[250, 120], 'assets/images/resized/0014/8877/148877v1-max-250x250.jpg'], [[450, 216], 'assets/images/resized/0014/8877/148877v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d9d'), 'name': 'Joost', 'permalink': 'joost', 'crunchbase_url': 'http://www.crunchbase.com/company/joost', 'homepage_url': 'http://joost.com', 'blog_url': 'http://blog.joost.com', 'blog_feed_url': 'http://blog.joost.com/atom.xml', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'iptv, babelgum, television, video, theveniceproject', 'alias_list': None, 'email_address': 'newyork@joost.com', 'phone_number': '', 'description': None, 'created_at': 'Sat Jun 09 07:05:30 UTC 2007', 'updated_at': 'Fri Mar 15 23:31:11 UTC 2013', 'overview': '

As their third major undertaking, Skype and Kazaa founders Janus Friis and Niklas Zennstrom are attempting to perfect IPTV with Joost. Joost is a p2p on demand video player that offers professional (legal) programming much like on your television, but whenever you want. The service is free, however, there are video advertisements interspersed between and during programs as well as small type or image ads on the sides of your screen.

\\n\\n

With very heavy backing from media giants CBS and Viacom, Joost looks good to take on competitors Bablegum and Microsoft LiveStation. Currently Joost has content deals with CNN, the NHL and Sony as well as their financiers CBS and Viacom (MTV, Comedy Central etc). They have also recently developed a new Widget API open to third parties to make their own Joost widgets.

\\n\\n

Unlike many online video platforms, joost does require a download and cannot play video directly from users’ browsers. joost offers a desktop client that allows the user to watch on-demand TV over the internet. In addition, Joost enhances the TV experience by offering interactive tools. For example, users will be able to chat with friends while watching a show. The channels will also have interactive displays where users can discover behind-the-scene content.

\\n\\n

Joost’s peer-to-peer technology also lowers the cost of channel owners by reducing the amount of data the servers must stream out. joost only serves some selected users, while the rest of the data is distributed from user to user.

\\n\\n

Rumor has it that Joost is in talks with hardware manufacturers to embed its platform into TV set-top boxes. If the move were successful it could change the TV industry substantially.

\\n\\n

Joost is now fully public and open to all.

\\n\\n

UPDATE: Joost has recently deactivated it’s software client and now streams it’s entire catalog via Adobe’s Flash Player which is available for Windows, Mac OS X, and Linux.

', 'image': {'available_sizes': [[[150, 64], 'assets/images/resized/0000/3718/3718v1-max-150x150.png'], [[199, 85], 'assets/images/resized/0000/3718/3718v1-max-250x250.png'], [[199, 85], 'assets/images/resized/0000/3718/3718v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Joost', 'permalink': 'joost'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Matt', 'last_name': 'Zelesko', 'permalink': 'matt-zelesko'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Janus', 'last_name': 'Friis', 'permalink': 'janus-friis'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Matthew', 'last_name': 'Zelesko', 'permalink': 'matthew-zelesko'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Mike', 'last_name': 'Volpi', 'permalink': 'mike-volpi'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Dirk-Willem', 'last_name': 'van Gulik', 'permalink': 'dirk-willem-van-gulik'}}, {'is_past': True, 'title': 'SVP of Sales', 'person': {'first_name': 'Elizabeth', 'last_name': 'Schiff', 'permalink': 'elizabeth-schiff'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Vipin', 'last_name': 'Goyal', 'permalink': 'vipin-goyal'}}, {'is_past': True, 'title': 'SVP Engineering', 'person': {'first_name': 'Matt', 'last_name': 'Zelesko', 'permalink': 'matt-zelesko'}}, {'is_past': True, 'title': 'Backend systems architect', 'person': {'first_name': 'Sylvain', 'last_name': 'Wallez', 'permalink': 'sylvain-wallez'}}, {'is_past': True, 'title': 'Director of Operations', 'person': {'first_name': 'Sander', 'last_name': 'van Zoest', 'permalink': 'sander-van-zoest'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Aki', 'last_name': 'Tsuchiya', 'permalink': 'aki-tsuchiya'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Esther', 'last_name': 'Park', 'permalink': 'esther-park'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Hiro', 'last_name': 'Tamura', 'permalink': 'hiro-tamura'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Mark', 'last_name': 'Dyne', 'permalink': 'mark-dyne'}}, {'is_past': True, 'title': 'Senior P2P Software Engineer', 'person': {'first_name': 'Jens', 'last_name': 'Finkhaeuser', 'permalink': 'jens-finkhaeuser'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Mark', 'last_name': 'Webster', 'permalink': 'mark-webster'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Allan', 'last_name': 'Beaufour', 'permalink': 'allan-beaufour'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Kaare', 'last_name': 'Larsen', 'permalink': 'kaare-larsen'}}], 'competitions': [{'competitor': {'name': 'Babelgum', 'permalink': 'babelgum'}}, {'competitor': {'name': 'Zattoo', 'permalink': 'zattoo'}}, {'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'Veoh', 'permalink': 'veoh'}}, {'competitor': {'name': 'Vudu', 'permalink': 'vudu'}}, {'competitor': {'name': 'Inuk Networks', 'permalink': 'inuk-networks'}}, {'competitor': {'name': 'Participatory Culture Foundation', 'permalink': 'participatory-culture-foundation'}}, {'competitor': {'name': 'Next New Networks', 'permalink': 'next-new-networks'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'MUBI', 'permalink': 'mubi'}}], 'providerships': [], 'total_money_raised': '$45M', 'funding_rounds': [{'id': 19, 'round_code': 'a', 'source_url': 'http://www.lksf.org/eng/media/press/20070510.shtml', 'source_description': 'Joost Announces $45 million Funding', 'raised_amount': 45000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Li', 'last_name': 'Ka-shing', 'permalink': 'li-ka-shing'}}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/24/joost-acquired-adconion/', 'source_description': 'Joost Is Now Officially Dead – Assets Acquired By Adconion Media Group', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 24, 'acquiring_company': {'name': 'Adconion Media Group', 'permalink': 'adconion-media-group'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '100 5th Ave Fl 6', 'address2': '', 'zip_code': '10011-6903', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7464969, 'longitude': -74.0094471}], 'milestones': [{'id': 4860, 'description': 'Joost Video Network Reaches 67 million Viewers/Month', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2010/04/14/joost-video-network/', 'source_text': '', 'source_description': 'Joost Video Network Stuns With Big Reach: 67 Million Viewers Per Month ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Joost', 'permalink': 'joost'}}], 'ipo': None, 'video_embeds': [{'embed_code': '\\r\\n Joost iPhone App Review - AppVee.com', 'description': ''}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297da1'), 'name': 'Plaxo', 'permalink': 'plaxo', 'crunchbase_url': 'http://www.crunchbase.com/company/plaxo', 'homepage_url': 'http://www.plaxo.com', 'blog_url': 'http://blog.plaxo.com/', 'blog_feed_url': 'http://blog.plaxo.com/index.rdf', 'twitter_username': 'plaxo', 'category_code': 'web', 'number_of_employees': 50, 'founded_year': 2002, 'founded_month': 11, 'founded_day': 17, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'contact-management, address-book, sync, contacts, de-duper, import, personal-cloud', 'alias_list': '', 'email_address': 'info@plaxo.com', 'phone_number': '650-254-5400', 'description': 'Contact Management', 'created_at': 'Sat Jun 09 14:18:54 UTC 2007', 'updated_at': 'Tue Jul 02 03:00:59 UTC 2013', 'overview': '

Plaxo helps keep people connected by solving the common and frustrating problem of out-of-date contact information. Users and their contacts store their information on Plaxo’s servers. When a user edits their own information, the changes appear in the address books of all those who listed the user in their own address books. Because contacts are stored in a central location, it’s possible to list connections between contacts and access the address book from anywhere.

\\n\\n

Napster co-founder, Sean Parker, was one of Plaxo’s founders

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/3880/3880v7-max-150x150.png'], [[250, 78], 'assets/images/resized/0000/3880/3880v7-max-250x250.png'], [[450, 141], 'assets/images/resized/0000/3880/3880v7-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Plaxo Basic', 'permalink': 'plaxo-basic-and-premium'}, {'name': 'Plaxo Pulse', 'permalink': 'plaxo-pulse'}, {'name': 'Plaxo Personal Assistant', 'permalink': 'plaxo-personal-assistant'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Justin', 'last_name': 'Miller', 'permalink': 'justin-miller-2'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Ryan', 'last_name': 'King', 'permalink': 'ryan-king'}}, {'is_past': False, 'title': 'VP Business Development', 'person': {'first_name': 'Peter', 'last_name': 'Lester', 'permalink': 'peter-lester'}}, {'is_past': False, 'title': 'VP Globalization, IT, Customer Support, and Privacy', 'person': {'first_name': 'Redgee', 'last_name': 'Capili', 'permalink': 'redgee-capili'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Redgee', 'last_name': 'Capili', 'permalink': 'redgee-capili'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Minh', 'last_name': 'Nguyen', 'permalink': 'minh-nguyen-2'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Sean', 'last_name': 'Parker', 'permalink': 'sean-parker'}}, {'is_past': True, 'title': 'Chief Privacy Officer', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Joseph', 'last_name': 'Smarr', 'permalink': 'joseph-smarr'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'John', 'last_name': 'McCrea', 'permalink': 'john-mccrea'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ben', 'last_name': 'Golub', 'permalink': 'ben-golub'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'J. Todd', 'last_name': 'Masonis', 'permalink': 'j-todd-masonis'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Venkates', 'last_name': 'Swaminathan', 'permalink': 'venkates-swaminathan'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'GM and Sr. Director, Product', 'person': {'first_name': 'Preston', 'last_name': 'Smalley', 'permalink': 'preston-smalley'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Garret', 'last_name': 'Heaton', 'permalink': 'garret-heaton'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Peng', 'permalink': 'eric-peng'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ryan', 'last_name': 'King', 'permalink': 'ryan-king'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Cameron', 'last_name': 'T. Ring', 'permalink': 'cameron-t-ring'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Jon', 'last_name': 'Callaghan', 'permalink': 'jon-callaghan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Tawheed', 'last_name': 'Kader', 'permalink': 'tawheed-kader'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Pankaj', 'last_name': 'Bengani', 'permalink': 'pankaj-bengani'}}, {'is_past': True, 'title': 'Non-Exec Advisory board', 'person': {'first_name': 'Alan', 'last_name': 'Coad', 'permalink': 'alan-coad'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'George', 'last_name': 'Tang', 'permalink': 'george-tang'}}], 'competitions': [{'competitor': {'name': 'Xobni', 'permalink': 'xobni'}}, {'competitor': {'name': 'Socialthing', 'permalink': 'socialthing'}}, {'competitor': {'name': 'Spokeo', 'permalink': 'spokeo'}}, {'competitor': {'name': 'Soocial', 'permalink': 'soocial'}}, {'competitor': {'name': 'fruux', 'permalink': 'fruux'}}, {'competitor': {'name': 'Gist', 'permalink': 'gist'}}, {'competitor': {'name': 'WhitePages.com', 'permalink': 'whitepages-com'}}, {'competitor': {'name': 'Spoke', 'permalink': 'spoke'}}, {'competitor': {'name': 'Jigsaw', 'permalink': 'jigsaw'}}, {'competitor': {'name': 'Alternion', 'permalink': 'alternion'}}, {'competitor': {'name': 'TAPP', 'permalink': 'tapp'}}, {'competitor': {'name': 'licobo', 'permalink': 'licobo'}}, {'competitor': {'name': 'Memotoo', 'permalink': 'memotoo'}}], 'providerships': [], 'total_money_raised': '$28.3M', 'funding_rounds': [{'id': 20, 'round_code': 'a', 'source_url': 'http://www.plaxo.com/about/releases/release-02-18-03', 'source_description': 'Plaxo Press Release - 2/18/2003', 'raised_amount': 3800000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 21, 'round_code': 'b', 'source_url': 'http://www.plaxo.com/about/releases/release-07-28-03', 'source_description': 'Plaxo Press Release - 7/28/2003', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Harbinger Ventures', 'permalink': 'harbinger-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 29, 'round_code': 'c', 'source_url': 'http://sanjose.bizjournals.com/sanjose/stories/2004/05/24/daily3.html', 'source_description': 'Plaxo connects to more funding', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': {'name': 'Cisco', 'permalink': 'cisco'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Yahoo!', 'permalink': 'yahoo'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 30, 'round_code': 'd', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/05/14/confirmed-comcast-bought-plaxo-deal-closed-today/', 'source_description': 'Confirmed: Comcast Bought Plaxo, Deal Closed Today', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': 'Comcast', 'permalink': 'comcast'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '1050 Enterprise Way, 5th floor', 'address2': '', 'zip_code': '94089', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.387845, 'longitude': -122.055197}], 'milestones': [{'id': 4563, 'description': 'Long-Time Plaxo CEO Golub Leaves ', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 25, 'source_url': 'http://paidcontent.org/article/419-long-time-plaxo-ceo-golub-leaves/', 'source_text': '', 'source_description': 'Long-Time Plaxo CEO Golub Leaves ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}, {'id': 14919, 'description': 'Plaxo lines up new leadership team including promotions (Capili, Erchinger) and new hires Javarappa, and Smalley.', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 17, 'source_url': 'http://www.businesswire.com/news/home/20110517006049/en/Plaxo-Lines-Leadership-Team-Business-Strategy-Engineering', 'source_text': None, 'source_description': 'Plaxo Lines Up Leadership Team in Business Strategy, Engineering, Operations & Customer Service to Execute on World’s Most Powerful Address Book', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}, {'id': 14924, 'description': 'Plaxo returns to its address book roots and introduces the Plaxo Personal Assistant.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 16, 'source_url': 'http://www.prweb.com/releases/2011/3/prweb8199028.htm', 'source_text': None, 'source_description': 'Plaxo Returns to Its Address Book Roots, Offers the Most Intelligent Address Book for Your Connected Life', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

About Plaxo - In 60 seconds

'}, {'embed_code': '', 'description': '

Techcrunch Interview of CEO - April 2010

'}], 'screenshots': [{'available_sizes': [[[56, 150], 'assets/images/resized/0012/7053/127053v2-max-150x150.jpg'], [[94, 250], 'assets/images/resized/0012/7053/127053v2-max-250x250.jpg'], [[169, 450], 'assets/images/resized/0012/7053/127053v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 134], 'assets/images/resized/0012/7054/127054v2-max-150x150.jpg'], [[250, 223], 'assets/images/resized/0012/7054/127054v2-max-250x250.jpg'], [[450, 402], 'assets/images/resized/0012/7054/127054v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 112], 'assets/images/resized/0013/5280/135280v2-max-150x150.png'], [[250, 186], 'assets/images/resized/0013/5280/135280v2-max-250x250.png'], [[450, 336], 'assets/images/resized/0013/5280/135280v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297da4'), 'name': 'Powerset', 'permalink': 'powerset', 'crunchbase_url': 'http://www.crunchbase.com/company/powerset', 'homepage_url': 'http://powerset.com', 'blog_url': 'http://blog.powerset.com/', 'blog_feed_url': 'http://blog.powerset.com/atom.xml', 'twitter_username': 'Powerset', 'category_code': 'search', 'number_of_employees': 60, 'founded_year': 2006, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'searchengine, google, techcrunch40, natural-language', 'alias_list': '', 'email_address': 'info@powerset.com', 'phone_number': '415-848-7000', 'description': '', 'created_at': 'Mon Jun 11 19:33:13 UTC 2007', 'updated_at': 'Sat Mar 16 06:13:05 UTC 2013', 'overview': '

Powerset is a search engine focused on natural language processing. In other words, Powerset will not search based simply on keywords alone, but will try to understand the semantic meaning behind the search phrase as a whole. The company launched in May 2008 with intentions of making search more easy and intuitive.

\\n\\n

Powerset was acquired by Microsoft on 1st July 2008.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0000/3934/3934v1-max-150x150.png'], [[231, 59], 'assets/images/resized/0000/3934/3934v1-max-250x250.png'], [[231, 59], 'assets/images/resized/0000/3934/3934v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Powerset', 'permalink': 'powerset'}], 'relationships': [{'is_past': False, 'title': 'Founder / Product Architect', 'person': {'first_name': 'Lorenzo', 'last_name': 'Thione', 'permalink': 'lorenzo-thione'}}, {'is_past': False, 'title': 'Chief Science Officer', 'person': {'first_name': 'Ron', 'last_name': 'Kaplan', 'permalink': 'ron-kaplan'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Eric', 'last_name': 'Tilenius', 'permalink': 'eric-tilenius'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': False, 'title': 'General Manager & Director of Product', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': False, 'title': 'Director of Finance', 'person': {'first_name': 'Bennett', 'last_name': 'Thuener', 'permalink': 'bennett-thuener'}}, {'is_past': True, 'title': 'COO, Founder, Board', 'person': {'first_name': 'Steve', 'last_name': 'Newcomb', 'permalink': 'steve-newcomb'}}, {'is_past': True, 'title': 'Board / Founder / CEO', 'person': {'first_name': 'Barney', 'last_name': 'Pell', 'permalink': 'barney-pell'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Scientist, Ranking & Search Relevance', 'person': {'first_name': 'Jonathan', 'last_name': 'Siddharth', 'permalink': 'jonathan-siddharth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Le', 'permalink': 'alex-le'}}, {'is_past': True, 'title': 'Manager of Knowledge Resources', 'person': {'first_name': 'John', 'last_name': 'Lowe', 'permalink': 'john-lowe-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Johnson', 'permalink': 'mark-johnson-4'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'General Manager and Director of Product', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Bill', 'last_name': 'Trenchard', 'permalink': 'bill-trenchard'}}, {'is_past': True, 'title': 'Director of Operations', 'person': {'first_name': 'bill', 'last_name': 'fumerola', 'permalink': 'bill-fumerola'}}, {'is_past': True, 'title': 'Investor (acquired by Microsoft)', 'person': {'first_name': 'Mohsen', 'last_name': 'Moazami', 'permalink': 'mohsen-moazami'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Tom', 'last_name': 'Preston-Werner', 'permalink': 'tom-preston-werner'}}], 'competitions': [{'competitor': {'name': 'Hakia', 'permalink': 'hakia'}}, {'competitor': {'name': 'TextWise', 'permalink': 'textwise'}}, {'competitor': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Blekko', 'permalink': 'blekko'}}, {'competitor': {'name': 'JIxperts', 'permalink': 'jixperts'}}, {'competitor': {'name': 'Viewzi', 'permalink': 'viewzi'}}, {'competitor': {'name': 'Gloofi', 'permalink': 'gloofi'}}, {'competitor': {'name': 'Cognition Technologies', 'permalink': 'cognition-technologies'}}, {'competitor': {'name': 'Devtap', 'permalink': 'devtap'}}, {'competitor': {'name': 'CDNPAL', 'permalink': 'cdnpal'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}], 'total_money_raised': '$22.5M', 'funding_rounds': [{'id': 22, 'round_code': 'a', 'source_url': 'http://www.powerset.com/press/seriesa, http://venturebeat.com/2007/11/02/powerset-the-hyped-search-engine-company-sees-shakeup/#more-52474', 'source_description': '', 'raised_amount': 12500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Foundation Capital', 'permalink': 'foundation-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': {'name': 'Bezos Expeditions', 'permalink': 'bezos-expeditions'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 2827, 'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2008/07/01/ok-now-its-done-microsoft-to-acquire-powerset/', 'source_description': 'Ok, Now It’s Done. Microsoft To Acquire Powerset', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': []}, {'id': 13872, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Amidzad Partners', 'permalink': 'amidzad-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CommerceNet', 'permalink': 'commercenet'}, 'person': None}, {'company': {'name': 'ValleyVC', 'permalink': 'valleyvc'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.powerset.com/blog/articles/2008/07/01/microsoft-to-acquire-powerset', 'source_description': 'Microsoft to Acquire Powerset', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'Microsoft', 'permalink': 'microsoft'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '475 Brannan St', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.778613, 'longitude': -122.395289}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': ' ', 'description': '

Powerset Demo video

'}, {'embed_code': '', 'description': '

HyveUp interview with Lorenzo Thione

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Powerset_(company)', 'title': 'Wikipedia article'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dab'), 'name': 'Kyte', 'permalink': 'kyte', 'crunchbase_url': 'http://www.crunchbase.com/company/kyte', 'homepage_url': 'http://www.kyte.com', 'blog_url': 'http://kyte.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/kyte_blog', 'twitter_username': 'kyte', 'category_code': 'games_video', 'number_of_employees': 40, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'video, mobile, iphone-app, video-platform, mobile-app, media, interactive', 'alias_list': '', 'email_address': 'info@kyte.com', 'phone_number': '', 'description': 'Online & Mobile Video Platform', 'created_at': 'Thu Jun 14 18:26:11 UTC 2007', 'updated_at': 'Mon Oct 28 09:34:37 UTC 2013', 'overview': '

Kyte is the online and mobile video platform for media and entertainment. The Kyte Platform combines the real-time, interactive and community building capabilities of the social web with the analytics, control, and monetization features of professional video platforms, enabling companies to converge online and mobile audiences, build community, and monetize.

', 'image': {'available_sizes': [[[116, 70], 'assets/images/resized/0000/4300/4300v2-max-150x150.png'], [[116, 70], 'assets/images/resized/0000/4300/4300v2-max-250x250.png'], [[116, 70], 'assets/images/resized/0000/4300/4300v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Kyte', 'permalink': 'kyte'}, {'name': 'Kyte Mobile Producer', 'permalink': 'kyte-mobile-producer'}], 'relationships': [{'is_past': False, 'title': 'CTO and co-founder', 'person': {'first_name': 'Erik', 'last_name': 'Abair', 'permalink': 'erik-abaic'}}, {'is_past': True, 'title': 'CEO and co-founder', 'person': {'first_name': 'Daniel', 'last_name': 'Graf', 'permalink': 'daniel-graf'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Dan', 'last_name': 'FitzSimons', 'permalink': 'dan-fitzsimons'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Barnaby', 'last_name': 'Dorfman', 'permalink': 'barnaby-dorfman'}}, {'is_past': True, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Gannon', 'last_name': 'Hall', 'permalink': 'gannon-hall'}}, {'is_past': True, 'title': 'Managing Director Europe', 'person': {'first_name': 'Peter', 'last_name': 'Schuepbach', 'permalink': 'peter-schuepbach'}}, {'is_past': True, 'title': 'Observer', 'person': {'first_name': 'Joel', 'last_name': 'Yarmon', 'permalink': 'joel-yarmon'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Iris', 'last_name': 'Pittl', 'permalink': 'iris-pittl'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Marisol', 'last_name': 'Segal', 'permalink': 'marisol-segal'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Chad', 'last_name': 'Richard', 'permalink': 'chad-richard'}}, {'is_past': True, 'title': 'Director of User Experience', 'person': {'first_name': 'Shawn', 'last_name': 'Smith', 'permalink': 'shawn-smith-3'}}], 'competitions': [{'competitor': {'name': 'Ustream', 'permalink': 'ustream'}}, {'competitor': {'name': 'Qik', 'permalink': 'qik'}}, {'competitor': {'name': 'Flixwagon', 'permalink': 'flixwagon'}}, {'competitor': {'name': 'Brightcove', 'permalink': 'brightcove'}}, {'competitor': {'name': 'Magnify', 'permalink': 'magnify'}}, {'competitor': {'name': 'Kaltura', 'permalink': 'kaltura'}}, {'competitor': {'name': 'Ooyala', 'permalink': 'ooyala'}}, {'competitor': {'name': 'Livestream', 'permalink': 'livestream'}}, {'competitor': {'name': 'VMIX Media', 'permalink': 'vmixmedia'}}, {'competitor': {'name': 'Bambuser', 'permalink': 'bambuser'}}], 'providerships': [], 'total_money_raised': '$23.4M', 'funding_rounds': [{'id': 32, 'round_code': 'a', 'source_url': 'http://www.kyte.tv/press/release/20070423.html', 'source_description': 'kyte.tv takes self expression to the next level', 'raised_amount': 2250000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Atomico', 'permalink': 'atomico'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 480, 'round_code': 'b', 'source_url': 'http://scobleizer.com/2007/12/19/kytetv-announces-funding-new-features/', 'source_description': 'Kyte announces funding, new features', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': {'name': 'Nokia', 'permalink': 'nokia'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DoCoMo Capital', 'permalink': 'docomo-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Swisscom Ventures', 'permalink': 'swisscom-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 1697, 'round_code': 'b', 'source_url': 'http://www.kyte.com/newsroom/pg/kyte_completes_211_million_of_series_b_funding_with_investments_from_steamb', 'source_description': 'Kyte press release', 'raised_amount': 6100000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 10, 'investments': [{'company': None, 'financial_org': {'name': 'Steamboat Ventures', 'permalink': 'steamboat-ventures'}, 'person': None}, {'company': {'name': 'Teliasonera', 'permalink': 'teliasonera'}, 'financial_org': None, 'person': None}]}, {'id': 52969, 'round_code': 'seed', 'source_url': '', 'source_description': 'y combinator source', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/31/exclusive-kit-digital-acquires-kickapps-kewego-and-kyte-for-77-2-million/', 'source_description': 'KIT digital Acquires KickApps, Kewego AND Kyte For $77.2 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'KIT digital', 'permalink': 'kit-digital'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '442 Post Street', 'address2': '10th Floor', 'zip_code': '94102', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.788482, 'longitude': -122.409173}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV: 8/2008

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dae'), 'name': 'Thoof', 'permalink': 'thoof', 'crunchbase_url': 'http://www.crunchbase.com/company/thoof', 'homepage_url': 'http://thoof.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2013, 'deadpooled_month': 8, 'deadpooled_day': 4, 'deadpooled_url': '', 'tag_list': 'social-news', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Sat Jun 16 05:05:50 UTC 2007', 'updated_at': 'Wed Dec 18 13:06:44 UTC 2013', 'overview': '

Thoof is a late entry to the personalized/social news arena. As many Digg clones and alternative models are failing or have failed to take hold of a substantial user base, Thoof brings a slightly new take on getting your daily stories which it hopes will attract more than a niche audience. Thoof is an automated news recommender of sorts. It works similarly to many music recommendation engines such as Last.fm and Pandora, by displaying articles you might like based upon your past reading history. Readers submit articles in a Digg-like fashion, but don’t vote to get the articles on the front page. Founder Ian Clarke, formerly of video site Revver, claims that with video as well as news, many people may read articles but few will vote on them. Clarke hints that the passivity of news and video consumption may ultimately weed out news aggregators that cannot automatically deliver customized news. However, Thoof users are allowed to edit the news by suggesting alternative links. If link changes are to stand they must get enough votes from the rest of the community. Thoof has many web 2.0 elements including article tagging, wiki features and aforementioned recommendation engine. It isn’t an exact clone of any one social news site, but can be considered a competitor to sites like Digg, Netscape and Y Combinator company Reddit.

', 'image': {'available_sizes': [[[150, 74], 'assets/images/resized/0000/4462/4462v1-max-150x150.png'], [[195, 97], 'assets/images/resized/0000/4462/4462v1-max-250x250.png'], [[195, 97], 'assets/images/resized/0000/4462/4462v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Thoof', 'permalink': 'thoof'}], 'relationships': [{'is_past': True, 'title': 'Founder and CEO', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}], 'competitions': [{'competitor': {'name': 'Last.fm', 'permalink': 'last-fm'}}, {'competitor': {'name': 'Mixx', 'permalink': 'mixx'}}], 'providerships': [], 'total_money_raised': '$1M', 'funding_rounds': [{'id': 35, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/', 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Austin Ventures', 'permalink': 'austin-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.268735, 'longitude': -97.745209}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.duraslide.com.sg/', 'title': 'Aluminium Glass Suppliers in Singapore,Stainless Steel Product Suppliers Singapore'}, {'external_url': 'http://utopia.com.sg/', 'title': 'Cleanroom Equipments Services Singapore | Construction Materials | Cleanroom Products | Cleanroom Laundry Service'}, {'external_url': 'http://www.feigeasia.com.sg/', 'title': 'Automatic Liquid Filling machine '}, {'external_url': 'http://airtech.com.sg/', 'title': 'Cleanroom Products Services In Singapore,Laboratory Equipment Suppliers In Singapore '}, {'external_url': 'http://housemaid.com.sg/', 'title': 'Singapore Maid Agency, Housemaid Agency Singapore,best maid agency in singapore '}, {'external_url': 'http://polytech.com.sg/', 'title': 'Industrial Keypad Manufacturers Singapore'}, {'external_url': 'http://futurisk.in', 'title': 'Insurance Companies in Chennai, Consulting Insurance Agency, Insurance Broking in India, General Insurance Brokers In India'}, {'external_url': 'http://www.xsreal.com/current-projects/harmony.html', 'title': 'One way to acknowledge our desires is to opt for Compact apartments and Smart Functional Homes that come equipped with every convenience and ensure safety in a secure location.'}, {'external_url': 'http://pilgg.com/', 'title': 'The Best Online Games! Awesome Play Free Online Games, Online Play Games, Free Game Online, Free Car Racing Games, Play Cricket Games, Free Kids Online Games'}, {'external_url': 'http://www.smilepublishingindia.com/', 'title': 'Buy Story for Preschool Kids, Best Books for Preschoolers, Story Book for Preschool, Buy preschool books from smile books publishers India'}, {'external_url': 'http://adcomcom.com/', 'title': ' Commercial printing remain one of the most effective ways to market your business. '}, {'external_url': 'http://chaitanyafoundations.com/', 'title': 'Chaitanya Foundations is a contemporary residential and commercial property enterprise that is rooted in old world values of fair play, personalised service, and promises that are honoured,Apartments Builders in Chennai,Best Builder in Chennai.'}, {'external_url': 'http://www.tdpplastering.co.uk/', 'title': 'Plasterers Brighton'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_doors.html', 'title': 'Auto door systems Suppliers Singapore The most common type of doors is the single-leaf door which consists of a single rigid panel that fills the doorway and the double-leaf door that have two adjacent independent panels hinged on each side of the doorway'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_railing1.html', 'title': 'Swimming Pool Glass Railing suppliers singapore Can glass be used to withstand the loading of water? Yes. It has been tested and proven.\\xa0For families with children, the transparency allows you to spot any danger from the side of the pool and react on time'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_railing2.html', 'title': 'Glass Ralling Horizontal or vertical sheets of plate glass can be used either to enclose a balcony, terrace or staircase. Profiles using balustrades will add a sense of lightness, lack of materiality and a very modern touch either to your home or business'}, {'external_url': 'http://www.duraslide.com.sg/product_stainlesssteel_bbqpit.html', 'title': 'stainless steel product suppliers | stainless steel railing manufacturers Stainless steel’s resistance to corrosion and staining, low maintenance, relatively low cost, and familiar lustre make it an ideal material for many applications '}, {'external_url': 'http://www.duraslide.com.sg/product_stainlesssteel_flagpole.html', 'title': 'Stainless Steel Flagpole Stainless steel’s resistance to corrosion and staining, low maintenance, relatively low cost, and familiar lustre make it an ideal material for many applications '}, {'external_url': 'http://adcomcom.com/services_printing.html', 'title': 'Adcom being a leading commercial printing company provides a complete range of printing services. Always focused at working closely with the esteemed clients, translating their vision into reality, ensures the best possible results.'}, {'external_url': 'http://adcomcom.com/services_printing_banner.html', 'title': 'Looking for a big banner to grab attention at an event or complement an advertising campaign? Adcom offers the latest, cutting-edge banner printing technology with virtually unlimited selection of sizes'}, {'external_url': 'http://adcomcom.com/services_printing_poster.html', 'title': 'Posters are a popular way of promoting any event like arts and music festivals, charity function, concerts, rallies, including sales and advertising.\\xa0'}, {'external_url': 'http://adcomcom.com/services_printing_brouchure.html', 'title': 'Brochures advertise information about your products, pricing, services, events, etc and are usually eye-catching in design so that your company profiles and objectives are directly stated.\\xa0'}, {'external_url': 'http://adcomcom.com/services_printing_catalog.html', 'title': 'We offer to our clients high quality books printing and binding, books printing services and books binding services at the most competitive rates.\\xa0'}, {'external_url': 'http://airtech.com.sg/Stretcher_with_Physical_Containment.html', 'title': 'Airtech is one of the world leaders in the design and supply of flexible containment and integrated systems for all aspects of the containment of potent materials for the Pharmaceutical, Chemical, Medical and Food industries. '}, {'external_url': 'http://airtech.com.sg/Infections_Disease_Treatment_Room.html', 'title': 'Infectious diseases can spread from one person to another by aerosol droplets. The spread of Tuberculosis (TB), for example, occurs when an otherwise healthy individual inhales a sufficient number of tubercle bacilli that are expelled by a patient infecte'}, {'external_url': 'http://airtech.com.sg/Isolated_Treatment_Room.html', 'title': 'Isolation room equipment Services Singapore,Isolated Treatment Room Service Singapore,cleanroom products,cleanroom products in singapore,customised cleanroom equipment,hospital equipments,hospital solutions,Biosafety Level,Isolation room equipment,Operati'}, {'external_url': 'http://airtech.com.sg/Operating_Room.html', 'title': 'In the area of Operating Room, Bio-clean room and bio-hazard room construction, Airtech has developed system that offer even greater precision and efficiency that it’s earlier system and is now fully organized to meet the requirement of its customers. '}, {'external_url': 'http://utopia.com.sg/airtech_equipments.html', 'title': 'A\\xa0Cleanroom\\xa0Is An Environment, Typically Used In\\xa0Manufacturing\\xa0Or Scientific Research That Has A Low Level Of Environmental\\xa0Pollutants\\xa0Such As Dust, Airborne\\xa0Microbes,\\xa0Aerosol\\xa0Particles And Chemical Vapors. Airtech Equipments'}, {'external_url': 'http://utopia.com.sg/cleanroom_construction_material.html', 'title': 'Airtech Equipment Pte Ltd, A Joint Venture Between Utopia-Aire And Airtech Japan Ltd, Was Incorporated To Manufacture Cleanroom Equipment Of High Quality And That Meet International Standards Of Cleanroom Technology.Cleanroom Equipments'}, {'external_url': 'http://utopia.com.sg/biofit_clean_room_chairs.html', 'title': 'The Chair Is The Integral Part Of Work Place Ergonomics. Choose A Chair For What It Can Do To Make Your Employee’S Job Healthier And More Comfortable. Cleanroom Chairs & Furnitures'}, {'external_url': 'http://utopia.com.sg/hospital_equipment.html', 'title': 'The Special Purpose Of An Isolation Room Is To Protect Health Care Workers, Other Patients And Visitors In A Hospital From Exposure To An Airborne Infectious Agent In The Event That An Infectious Patient Is Staying In The Room. Hospital Ahu & Hvac Equipme'}, {'external_url': 'http://www.housemaid.com.sg/agencies_list.html', 'title': 'Online searching of a housemaid a pleasurable experience for the employer and an absolute smooth sailing for the registered Housemaid agency.,Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal '}, {'external_url': 'http://www.housemaid.com.sg/search_maid.html', 'title': 'Online searching of a housemaid a pleasurable experience for the employer and an absolute smooth sailing for the registered Housemaid agency.,Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal '}, {'external_url': 'http://www.housemaid.com.sg/services.html', 'title': 'Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal Singapore,Maid Agency In Singapore,Maids Portal,Hire Maids In Singapore,Maid ,Maid Agencies Hub,Maid Agencies In Singapore,Maid Agency ,Maid S'}, {'external_url': 'http://www.mogepay.com/', 'title': 'Now no need to carry Casy, Shopping made easy with Mogepay. At Mogepay we offer a variety of products to suit your everyday needs - Online Bill Payment Service, Online Ticket Booking, Mobile Recharge, Credit Card Payment'}, {'external_url': 'http://chaitanyafoundations.com/', 'title': 'Chaitanya Foundations is a contemporary residential and commercial property enterprise that is rooted in old world values of fair play, personalised service, and promises that are honoured.'}, {'external_url': 'http://www.mogepay.com/travel.html', 'title': 'Book your instant cheapest air ticket through us. We arrange any kinds of Domestic & International Air Ticket Booking Services for you without any extra charges. '}, {'external_url': 'http://www.mogepay.com/index.html', 'title': 'At Mogepay we offer a variety of products to suit your everyday needs'}, {'external_url': 'http://www.mogepay.com/finance.html', 'title': 'Mogepay mobile financial services (MFS) products provide you with the extension you require to provide a robust financial services offering to your subscriber and merchant customers.'}, {'external_url': 'http://www.mogepay.com/billpayment.html', 'title': 'Utility Bills & Insurance Premium Payment Now, you have the luxury of paying your bills at your convenience through Internet, or Mogepay Store. Pay your Electricity, Mobile, Telephone, Insurance, Credit Card and other bills under one roof.'}, {'external_url': 'http://www.mogepay.com/about.html', 'title': 'Mogepay Technologies is a leading provider of mobile transaction infrastructure software, providing mobile operators the most efficient and cost-effective way'}, {'external_url': 'http://www.mogepay.com/mobile_recharge.html', 'title': \"Mogepay recharge services provide you with a flexible platform for your subscribers and merchants to recharge their account. Our products plug into your existing infrastructure leveraging the investment you've made in charging systems and value added serv\"}, {'external_url': 'http://www.mogepay.com/recharge.html', 'title': \"Mogepay recharge services provide you with a flexible platform for your subscribers and merchants to recharge their account. Our products plug into your existing infrastructure leveraging the investment you've made in charging systems and value added serv\"}, {'external_url': 'http://www.mogepay.com/shoponline.html', 'title': \"Mogepayonline shopping store is an online shop that provides a wide range of Grocery, Electronics, Personal, Beauty & Health products catering to different customers' needs. \"}, {'external_url': 'http://chaitanyafoundations.com/floor-plan-excellence.html', 'title': 'Floor Plan Excellence, Chaitanya Foundations designs are studies in living elegance and work flow dynamics. A large living area is separated by sliding glass doors, creating warm cosy spaces.'}, {'external_url': 'http://chaitanyafoundations.com/apartment-builders.html', 'title': 'Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai,Duplex apartments in Chenn'}, {'external_url': 'http://chaitanyafoundations.com/flat-promoters.html', 'title': 'Flat Promoters in Chennai,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai '}, {'external_url': 'http://chaitanyafoundations.com/green-design.html', 'title': 'Green Design,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai,Duplex apartm'}, {'external_url': 'http://chaitanyafoundations.com/location-selection.html', 'title': 'location,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders'}, {'external_url': 'http://chaitanyafoundations.com/services.html', 'title': 'The comprehensive range of services offered by Chaitanya Foundations recognise the varied needs of landowners and customers. Experience a menu-driven host of services that best meet your needs.'}, {'external_url': 'http://chaitanyafoundations.com/uplifting-elevation.html', 'title': 'A Chaitanya project elevation immediately distinguishes itself. Stark white and earth tone exteriors. Rough stone cladding for visual relief. '}, {'external_url': 'http://www.talhunt.co.in/', 'title': 'Software Testing & Training Courses Chennai, J2ME, NS2, Embedded, VLSI, MATLAB, IEEE, Final Year Projects Chennai, JDBC, IT, Hibernate Training Institute Chennai.'}, {'external_url': 'http://futurisk.in/', 'title': 'Futurisk have the scale and expertise to Insurance Companies In India, Consulting Insurance Agency, Insurance Agency Consulting, Insurance Broking In India, General Insurance Brokers In India'}, {'external_url': 'http://futurisk.in/index.php/product-services/health-insurance', 'title': 'Employee Benifits Health Insurance, Group Health and Accident Insurance Cover, Group Health Insurance Plans, Group Insurance'}, {'external_url': 'http://futurisk.in/index.php/product-services/liability-insurance', 'title': 'Property Insurance Broking Company Chennai'}, {'external_url': 'http://futurisk.in/index.php/product-services/property-insurance', 'title': 'Liability Insurance Broking Company Chennai'}, {'external_url': 'http://futurisk.in/index.php/product-services/employee-benefits', 'title': 'Health Insurance Broking Company Chennai '}, {'external_url': 'http://www.futurisk.in/index.php/agri-insurance', 'title': 'agri insurance'}, {'external_url': 'http://futurisk.in/index.php/product-services/motor-insurance', 'title': 'insurance auto sales'}, {'external_url': 'http://www.talhunt.co.in/training/certification-programming-training-chennai.php', 'title': 'Best Certification Programming Training Institutes Chennai | Inplant Training | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/certified-ethical-hacking-certification-training-chennai.php', 'title': 'Best Certified Ethical Hacking Certification V8 Training Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/cloud-computing-training-chennai.php', 'title': 'Best Cloud Computing Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/database/oracle-training-chennai.php', 'title': 'Best Oracle Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/database/sql-training-chennai.php', 'title': 'Best Sql Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/final-year-project-training-chennai.php', 'title': 'Best Final Year Project Training Institutes in Chennai | Tnagar | Thiruvanmiyur | IEEE Final year projects centres in Chennai | IEEE Project centre in Chennai'}, {'external_url': 'http://www.talhunt.co.in/training/itil-v3-training-chennai.php', 'title': 'Best Itil V3 Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/ibm-aix-training-chennai.php', 'title': 'Best Ibm Aix Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/linux-training-chennai.php', 'title': 'Best Linux Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.velsuniv.ac.in/', 'title': 'Deemed University In India'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297daf'), 'name': 'Jingle Networks', 'permalink': 'jingle-networks', 'crunchbase_url': 'http://www.crunchbase.com/company/jingle-networks', 'homepage_url': 'http://jinglenetworks.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Marchex', 'category_code': 'mobile', 'number_of_employees': 35, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'directoryassistance, advertising, mobile', 'alias_list': '', 'email_address': 'pr@jinglenetworks.com', 'phone_number': '212-481-4114 x237', 'description': 'Voice and Mobile Search', 'created_at': 'Sat Jun 16 05:53:38 UTC 2007', 'updated_at': 'Mon Jun 03 05:26:22 UTC 2013', 'overview': '

Jingle Networks is the leading provider of advertising and technology solutions for voice and mobile business search. By tapping into the thriving business search market, Jingle Networks provides a powerful new media channel to connect businesses with consumers ready to transact.

\\n\\n

Jingle Networks offers solutions that cater to carriers, network operators, adverting agencies, brand marketers and small businesses.

\\n\\n

Thousands of national brand marketers and local businesses use Jingle Network solutions to leverage brief in-call audio or text advertisements to acquire new customers via phone or during mobile app or online searches.

\\n\\n

Network operators and telecom carriers have also discovered the power of Jingle Networks technology and advertising solutions. Many select Jingle Networks as their search provider of choice.

\\n\\n

Whether you want to build a brand, create awareness or maximize business search, Jingle Networks has a solution that will guarantee success.

\\n\\n

Jingle Networks invented the free directory assistance service called 1-800-FREE411.

\\n\\n

Consumers dial 1-800-FREE411 (1-800-373-3411) from any phone in the United States to use the toll-free service, which allows callers to obtain any residential, business, or government phone number for no charge. Sponsors cover the service cost by playing short advertising messages, about 12 seconds long, customized based on the number the customer is looking up.

\\n\\n

The company was founded by veteran advertising and technology executives.

', 'image': {'available_sizes': [[[150, 24], 'assets/images/resized/0000/4474/4474v6-max-150x150.png'], [[230, 38], 'assets/images/resized/0000/4474/4474v6-max-250x250.png'], [[230, 38], 'assets/images/resized/0000/4474/4474v6-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MyFree411', 'permalink': 'myfree411'}], 'relationships': [{'is_past': False, 'title': 'Founder and CTO', 'person': {'first_name': 'Scott', 'last_name': 'Kliger', 'permalink': 'scott-kliger'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Louis', 'last_name': 'Toth', 'permalink': 'louis-toth'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Scott', 'last_name': 'Bruce', 'permalink': 'scott-bruce'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'David', 'last_name': 'Berkman', 'permalink': 'david-berkman'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Joshua', 'last_name': 'Kopelman', 'permalink': 'joshua-kopelman'}}, {'is_past': True, 'title': 'CFO and Treasurer', 'person': {'first_name': 'Joanne', 'last_name': 'Bryce', 'permalink': 'joanne-bryce'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Brian', 'last_name': 'Roberts', 'permalink': 'brian-roberts'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Greg', 'last_name': 'White', 'permalink': 'greg-white'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Chip', 'last_name': 'Hazard', 'permalink': 'chip-hazard'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Annita', 'last_name': 'Tanini', 'permalink': 'annita-tanini'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Ken', 'last_name': 'Bronfin', 'permalink': 'ken-bronfin'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'LaunchSquad', 'permalink': 'launchsquad'}}, {'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}], 'total_money_raised': '$88.7M', 'funding_rounds': [{'id': 36, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}]}, {'id': 37, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rose Tech Ventures', 'permalink': 'rose-tech-ventures'}, 'person': None}]}, {'id': 38, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 26000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}]}, {'id': 1279, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2005/10/03/1-800-free-411-free-directory-calls/', 'source_description': '', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lead Dog Ventures', 'permalink': 'lead-dog-ventures'}, 'person': None}]}, {'id': 1402, 'round_code': 'c', 'source_url': 'http://www.pehub.com/article/articledetail.php?articlepostid=9702', 'source_description': '', 'raised_amount': 13000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Flybridge Capital Partners', 'permalink': 'flybridge-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}]}, {'id': 5025, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2009/02/04/jingle-networks-keys-up-75m-for-directory-assistance/', 'source_description': ' Jingle Networks keys up $7.5M for directory assistance', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IDG Ventures', 'permalink': 'idg-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comcast Ventures', 'permalink': 'comcast-interactive-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}]}, {'id': 10683, 'round_code': 'unattributed', 'source_url': 'http://sec.gov/Archives/edgar/data/1337954/000133795409000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 6751133, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 28, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 62500000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.masshightech.com/stories/2011/04/11/daily11-Jingle-Networks-bought-for-up-to-625M.html', 'source_description': 'Jingle Networks bought for up to $62.5M', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Marchex', 'permalink': 'marchex'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '475 Park Ave South', 'address2': '10th Floor', 'zip_code': '10016', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 37.480999, 'longitude': -122.173887}], 'milestones': [{'id': 6110, 'description': \"Jingle Networks named in Lead411's Hottest Boston Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.lead411.com/boston-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Boston Companies\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jingle Networks', 'permalink': 'jingle-networks'}}, {'id': 14078, 'description': 'Marchex Inc. of Seattle today said that it has acquired directory assistance provider Jingle Networks Inc., based in Billerica and New York.', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 11, 'source_url': 'http://www.masshightech.com/stories/2011/04/11/daily11-Jingle-Networks-bought-for-up-to-625M.html', 'source_text': None, 'source_description': 'Jingle Networks bought for up to $62.5M', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jingle Networks', 'permalink': 'jingle-networks'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.talkcrunch.com/2006/10/23/interview-with-jingle-ceo-and-venture-capitalist/', 'title': 'Interview With CEO And Investor - 10/06'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'permalink': 'lifelock', 'crunchbase_url': 'http://www.crunchbase.com/company/lifelock', 'homepage_url': 'http://www.lifelock.com', 'blog_url': 'http://blog.lifelock.com', 'blog_feed_url': '', 'twitter_username': 'LifeLock', 'category_code': 'security', 'number_of_employees': 644, 'founded_year': 2005, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'member.feedback@lifelock.com', 'phone_number': '1-800-543-3562', 'description': 'Identity theft protection', 'created_at': 'Mon Jun 18 11:31:31 UTC 2007', 'updated_at': 'Thu Dec 12 12:38:35 UTC 2013', 'overview': '

LifeLock Inc., founded in 2005, is an American identity theft protection company based in Tempe, Arizona. The company charges $10 a month for the LifeLock identity theft protection intended to detect fraudulent applications for some forms of credit and non-credit related services. It also provides a $1 million guarantee in the event of identity theft to pay for fees associated with collecting on stolen funds, and the guarantee is backed by identity theft insurance to cover other losses. (Source: LifeLock)

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0000/4513/4513v1-max-150x150.png'], [[200, 66], 'assets/images/resized/0000/4513/4513v1-max-250x250.png'], [[200, 66], 'assets/images/resized/0000/4513/4513v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'LifeLock', 'permalink': 'lifelock'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Todd', 'last_name': 'Davis', 'permalink': 'todd-davis'}}, {'is_past': False, 'title': 'EVP, Chief Legal Officer and Secretary', 'person': {'first_name': 'Clarissa', 'last_name': 'Cerda', 'permalink': 'clarissa-cerda'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Marvin', 'last_name': 'Davis', 'permalink': 'marvin-davis'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Chris', 'last_name': 'Power', 'permalink': 'chris-power'}}, {'is_past': False, 'title': 'Vice President, Product', 'person': {'first_name': 'Juan Pablo', 'last_name': 'Bedoya', 'permalink': 'juan-pablo-bedoya'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Cowan', 'permalink': 'david-cowan'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Ted', 'last_name': 'Schlein', 'permalink': 'ted-schlein'}}, {'is_past': False, 'title': 'Chief Product Officer', 'person': {'first_name': 'Steve', 'last_name': 'Seoane', 'permalink': 'steve-seoane'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Governor', 'last_name': 'Tom Ridge', 'permalink': 'governor-tom-ridge'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Roy', 'last_name': 'Guthrie', 'permalink': 'roy-guthrie'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Chini', 'last_name': 'Krishnan', 'permalink': 'chini-krishnan'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Hilary', 'last_name': 'Schneider', 'permalink': 'hilary-schneider'}}, {'is_past': False, 'title': 'Chief Executive Officer, ID Analytics', 'person': {'first_name': 'Larry', 'last_name': 'McIntosh', 'permalink': 'larry-mcintosh'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Rocky', 'last_name': 'Pimentel', 'permalink': 'rocky-pimentel'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': '\"Jack\" H. Wyant', 'permalink': 'john-jack-h-wyant'}}, {'is_past': True, 'title': 'Founder, Chief Marketing Officer', 'person': {'first_name': 'Robert', 'last_name': 'Maynard', 'permalink': 'robert-maynard-2'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Prakash', 'last_name': 'Ramamurthy', 'permalink': 'prakash-ramamurthy'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Luke', 'last_name': 'Helms', 'permalink': 'luke-helms'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Jim', 'last_name': 'Greener', 'permalink': 'jim-greener'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Greener', 'permalink': 'jim-greener'}}], 'competitions': [{'competitor': {'name': 'TrustedID', 'permalink': 'trustedid'}}], 'providerships': [], 'total_money_raised': '$178M', 'funding_rounds': [{'id': 39, 'round_code': 'b', 'source_url': 'http://www.topix.net/vc/2007/04/lifelock-announces-6-85-million-series-b-funding', 'source_description': '', 'raised_amount': 6850000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}]}, {'id': 40, 'round_code': 'a', 'source_url': '', 'source_description': 'Lifelock', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 915, 'round_code': 'c', 'source_url': 'http://www.alleyinsider.com/2008/01/credit-protector-lifelock-raises-25-million-220-million-valuation.html', 'source_description': '', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}]}, {'id': 7894, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2009/08/05/symantec-pumps-20m-into-identity-theft-protection-company-lifelock/', 'source_description': 'Symantec helps pump $40M into identity theft protection company Lifelock', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 5, 'investments': [{'company': {'name': 'Symantec', 'permalink': 'symantec'}, 'financial_org': None, 'person': None}]}, {'id': 28734, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/03/15/identity-theft-protection-company-lifelock-raises-100m-from-kleiner-symantec-acquires-id-analytics/', 'source_description': 'Identity Theft Protection Company LifeLock Raises $100M From Kleiner, Symantec; Acquires ID Analytics', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}, {'company': {'name': 'Symantec', 'permalink': 'symantec'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Industry Ventures', 'permalink': 'industry-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Institutional Venture Partners', 'permalink': 'institutional-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Keating Capital', 'permalink': 'keating-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Thayer Street Partners', 'permalink': 'thayer-street-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Cross Creek Capital', 'permalink': 'cross-creek-capital'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/phoenix/news/2012/03/14/lifelock-gets-100-million-investment.html', 'source_description': 'LifeLock Strengthens Market Position Through Acquisition of ID Analytics', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': 'ID Analytics', 'permalink': 'id-analytics'}}, {'price_amount': 42600000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/12/lifelock-acquires-mobile-wallet-platform-lemon-for-42-6-million/', 'source_description': 'LifeLock Acquires Mobile Wallet Platform Lemon For $42.6 Million, Launches LifeLock Wallet ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 12, 'company': {'name': 'Lemon', 'permalink': 'lemon'}}], 'offices': [{'description': '', 'address1': '60 E. Rio Salado Pkwy, Suite 400', 'address2': '', 'zip_code': '85281', 'city': 'Tempe', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.429859, 'longitude': -111.938739}], 'milestones': [{'id': 8415, 'description': 'LifeLock recognized as one of the Hottest Southwest Companies by Lead411 ', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': 31, 'source_url': 'http://www.lead411.com/southwest-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST SOUTHWEST COMPANIES\" LIST', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'LifeLock', 'permalink': 'lifelock'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 10, 'pub_day': 4, 'stock_symbol': 'NYSE:LOCK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.bloomberg.com/news/2012-04-16/lifelock-ceo-in-talks-with-goldman-sachs-jpmorgan-about-ipo.html', 'title': 'LifeLock CEO in Talks With Goldman Sachs, JPMorgan About IPO'}, {'external_url': 'http://www.wnba.com/mercury/news/lifelock_release_090601.html', 'title': 'Mercury, LifeLock Break New Ground with Partnership'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db6'), 'name': 'Wesabe', 'permalink': 'wesabe', 'crunchbase_url': 'http://www.crunchbase.com/company/wesabe', 'homepage_url': 'http://wesabe.com', 'blog_url': 'http://blog.wesabe.com/', 'blog_feed_url': 'http://blog.wesabe.com/feed/', 'twitter_username': 'jasonlong', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 6, 'deadpooled_day': 30, 'deadpooled_url': 'http://techcrunch.com/2010/06/30/wesabe-shuts-down/', 'tag_list': 'moneymanagement, finance, money', 'alias_list': None, 'email_address': 'contact@wesabe.com', 'phone_number': None, 'description': None, 'created_at': 'Wed Jun 20 10:59:01 UTC 2007', 'updated_at': 'Fri Apr 15 01:40:13 UTC 2011', 'overview': '

JF11V8 You’ve hit the ball out the park! Inecdrible!

', 'image': {'available_sizes': [[[129, 133], 'assets/images/resized/0000/0061/61v1-max-150x150.jpg'], [[129, 133], 'assets/images/resized/0000/0061/61v1-max-250x250.jpg'], [[129, 133], 'assets/images/resized/0000/0061/61v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Wesabe', 'permalink': 'wesabe'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Marc', 'last_name': 'Hedlund', 'permalink': 'marc-hedlund'}}, {'is_past': True, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jason', 'last_name': 'Knight', 'permalink': 'jason-knight'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Tony', 'last_name': 'Stubblebine', 'permalink': 'tony-stubblebine'}}], 'competitions': [{'competitor': {'name': 'Revolution Money', 'permalink': 'revolutionmoney'}}, {'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'BillMonk', 'permalink': 'billmonk'}}, {'competitor': {'name': 'PayPal', 'permalink': 'paypal'}}, {'competitor': {'name': 'Buxfer', 'permalink': 'buxfer'}}, {'competitor': {'name': 'expensr', 'permalink': 'expensr'}}, {'competitor': {'name': 'Cake Financial', 'permalink': 'cakefinancial'}}, {'competitor': {'name': 'Thrive', 'permalink': 'thrive'}}, {'competitor': {'name': 'Jwaala', 'permalink': 'jwaala'}}, {'competitor': {'name': 'PearBudget', 'permalink': 'pearbudget'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}], 'providerships': [], 'total_money_raised': '$4.7M', 'funding_rounds': [{'id': 43, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/tag/wesabe', 'source_description': None, 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': \"O'Reilly AlphaTech Ventures\", 'permalink': 'o-reilly-alphatech-ventures'}, 'person': None}]}, {'id': 44, 'round_code': 'a', 'source_url': 'http://blog.wesabe.com/2007/06/20/wesabe-raises-4m-in-series-a-funding/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': \"O'Reilly AlphaTech Ventures\", 'permalink': 'o-reilly-alphatech-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '400 Montgomery St, Suite 900', 'address2': None, 'zip_code': '94104', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793148, 'longitude': -122.402567}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Interview with Marc Hedlund, Co-founder and CEO of Wesabe

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db8'), 'name': 'SmugMug', 'permalink': 'smugmug', 'crunchbase_url': 'http://www.crunchbase.com/company/smugmug', 'homepage_url': 'http://www.smugmug.com', 'blog_url': 'http://blogs.smugmug.com/', 'blog_feed_url': '', 'twitter_username': 'smugmug', 'category_code': 'photo_video', 'number_of_employees': 62, 'founded_year': 2002, 'founded_month': 11, 'founded_day': 3, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'photo, photosharing, antiweb20, videosharing, h264, video', 'alias_list': '', 'email_address': 'help@smugmug.com', 'phone_number': '', 'description': 'Awesome Photo & Video Sharing', 'created_at': 'Fri Dec 07 16:02:18 UTC 2007', 'updated_at': 'Fri Oct 04 17:20:52 UTC 2013', 'overview': '

SmugMug is not your typical Web 2.0 photo sharing site. It’s not free, there are no ads, the company is self funded, and has been profitable for over three years. SmugMug is geared more towards professional photographers with features such as watermarking, selling downloads and prints, and creating galleries of photos. Users can even use their own domain names for these galleries. SmugMug still has the more typical Web 2.0 photo sharing features like RSS feeds, tags, and a public API. More recently, SmugMug has added functionality to automatically scale the size of photos to the viewing size of the browser. Smug also supports HD quality video uploading.

\\n\\n

Competitors include: Flickr, Photobucket, Webshots, Fotki, BubbleShare, Zenfolio, Zoomr, and Facebook.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/2542/2542v4-max-150x150.jpg'], [[250, 87], 'assets/images/resized/0000/2542/2542v4-max-250x250.jpg'], [[450, 158], 'assets/images/resized/0000/2542/2542v4-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'SmugMug', 'permalink': 'smugmug'}], 'relationships': [{'is_past': False, 'title': 'COO', 'person': {'first_name': 'Andy', 'last_name': 'Williams', 'permalink': 'andy-williams'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Chris', 'last_name': 'MacAskill', 'permalink': 'chris-macaskill'}}], 'competitions': [{'competitor': {'name': 'Webshots', 'permalink': 'webshots'}}, {'competitor': {'name': 'Flickr', 'permalink': 'flickr'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Zooomr', 'permalink': 'zooomr'}}, {'competitor': {'name': 'Fotomoto', 'permalink': 'fotomoto'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'Photosforyou', 'permalink': 'photosforyou'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'RLM PR', 'permalink': 'rlm-pr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '67 E. Evelyn Ave, Suite 200', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.390056, 'longitude': -122.067692}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Video interview by Robert Scoble

'}, {'embed_code': '', 'description': '

SmugMug’s pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.latimes.com/technology/la-fi-smugmug24dec24,0,7652804.story', 'title': 'A focused family business'}, {'external_url': 'http://www.businessweek.com/magazine/content/08_03/b4067202218875.htm', 'title': 'An Idea The Really Clicked'}, {'external_url': 'http://www.usatoday.com/tech/products/2008-02-19-smugmug_N.htm', 'title': 'Son rules the roost at SmugMug'}, {'external_url': 'http://dehe.com/2010/02/16/82nd-academy-awards-oscars-list-of-nominees/', 'title': '82nd Academy Awards – Oscars – List of Nominees'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/smug-mug/our-review', 'title': 'SmugMug Review'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dba'), 'name': 'Google', 'permalink': 'google', 'crunchbase_url': 'http://www.crunchbase.com/company/google', 'homepage_url': 'http://google.com', 'blog_url': 'http://googleblog.blogspot.com', 'blog_feed_url': 'http://googleblog.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': 'google', 'category_code': 'search', 'number_of_employees': 28000, 'founded_year': 1998, 'founded_month': 9, 'founded_day': 7, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'search, gmail, blogger, find, information, youtube, google', 'alias_list': 'Google', 'email_address': 'google@google.com', 'phone_number': '650.253.0000', 'description': '', 'created_at': 'Sat Jun 30 22:18:12 UTC 2007', 'updated_at': 'Mon Jan 06 04:52:54 UTC 2014', 'overview': '

Google provides search and advertising services, which together aim to organize and monetize the world’s information. In addition to its dominant search engine, it offers a plethora of online tools and platforms including: Gmail, Maps, YouTube, and Google+, the company’s extension into the social space. Most of its Web-based products are free, funded by Google’s highly integrated online advertising platforms AdWords and AdSense. Google promotes the idea that advertising should be highly targeted and relevant to users thus providing them with a rich source of information.

\\n\\n

Google has also made strong moves into the web-based apps space with acquisitions of Jotspot (documents), 2Web Technologies (spreadsheets) and Zenter (presentations). The company has also made a splash with the acquisitions of YouTube, DoubleClick and Feedburner.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0002/9578/29578v31-max-150x150.png'], [[250, 85], 'assets/images/resized/0002/9578/29578v31-max-250x250.png'], [[450, 154], 'assets/images/resized/0002/9578/29578v31-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Gmail', 'permalink': 'gmail'}, {'name': 'Blogger', 'permalink': 'blogger'}, {'name': 'Google Search', 'permalink': 'google-search'}, {'name': 'Google Calendar', 'permalink': 'google-calendar'}, {'name': 'iGoogle', 'permalink': 'igoogle'}, {'name': 'Google Reader', 'permalink': 'google-reader'}, {'name': 'Google Alerts', 'permalink': 'google-alerts'}, {'name': 'Google Blog Search', 'permalink': 'google-blog-search'}, {'name': 'Google Books', 'permalink': 'google-books'}, {'name': 'Google Checkout', 'permalink': 'google-checkout'}, {'name': 'Google Desktop', 'permalink': 'google-desktop'}, {'name': 'Google Earth', 'permalink': 'google-earth'}, {'name': 'Google Finance', 'permalink': 'google-finance'}, {'name': 'Google Images', 'permalink': 'google-images'}, {'name': 'Google Maps', 'permalink': 'google-maps'}, {'name': 'Google News', 'permalink': 'google-news'}, {'name': 'Google Notebook', 'permalink': 'google-notebook'}, {'name': 'Google Patent Search', 'permalink': 'google-patent-search'}, {'name': 'Google Product Search', 'permalink': 'google-product-search'}, {'name': 'Google Scholar', 'permalink': 'google-scholar'}, {'name': 'Google Special Searches', 'permalink': 'google-special-searches'}, {'name': 'Google Toolbar', 'permalink': 'google-toolbar'}, {'name': 'Google Video', 'permalink': 'google-video'}, {'name': 'Google Code', 'permalink': 'google-code'}, {'name': 'Google Custom Search', 'permalink': 'google-custom-search'}, {'name': 'Google Labs', 'permalink': 'google-labs'}, {'name': 'Google Docs', 'permalink': 'google-docs'}, {'name': 'Google Groups', 'permalink': 'google-groups'}, {'name': 'Orkut', 'permalink': 'orkut'}, {'name': 'Picasa', 'permalink': 'picasa'}, {'name': 'Google SketchUp', 'permalink': 'google-sketchup'}, {'name': 'Google Talk', 'permalink': 'google-talk'}, {'name': 'Google Translate', 'permalink': 'google-translate'}, {'name': 'Google Social Graph API', 'permalink': 'google-social-graph-api'}, {'name': 'Google Sites', 'permalink': 'google-sites'}, {'name': 'Google Gears', 'permalink': 'google-gears'}, {'name': 'Android', 'permalink': 'android'}, {'name': 'Google Contacts Data API', 'permalink': 'google-contacts-data-api'}, {'name': 'Google App Engine', 'permalink': 'google-app-engine'}, {'name': 'Google Web Toolkit', 'permalink': 'google-web-toolkit'}, {'name': 'Google Mini Search Appliance', 'permalink': 'google-mini-search-appliance'}, {'name': 'Google Search Appliance', 'permalink': 'google-search-appliance'}, {'name': 'Google Health', 'permalink': 'google-health'}, {'name': 'Google Site Search', 'permalink': 'google-site-search'}, {'name': 'Lively', 'permalink': 'lively'}, {'name': 'Google Mobile Application', 'permalink': 'google-mobile'}, {'name': 'Knol', 'permalink': 'knol'}, {'name': 'Google Analytics', 'permalink': 'google-analytics'}, {'name': 'Google Ad Manager', 'permalink': 'google-ad-manager'}, {'name': 'Google Chrome', 'permalink': 'chrome'}, {'name': 'Google Moderator', 'permalink': 'google-moderator'}, {'name': 'Google AdSense', 'permalink': 'google-adsense'}, {'name': 'Google Friend Connect', 'permalink': 'google-friend-connect'}, {'name': 'Android G1', 'permalink': 'android-g1'}, {'name': 'Google Latitude', 'permalink': 'google-latitude'}, {'name': 'Google Wave', 'permalink': 'google-wave'}, {'name': 'Google Apps', 'permalink': 'google-apps'}, {'name': 'Google Chrome OS', 'permalink': 'google-chrome-os'}, {'name': 'Pubsubhubbub', 'permalink': 'pubsubhubbub'}, {'name': 'Google Voice', 'permalink': 'google-voice'}, {'name': 'Sidewiki', 'permalink': 'sidewiki'}, {'name': 'Google AdWords', 'permalink': 'google-adwords'}, {'name': 'Nexus One', 'permalink': 'nexus-one'}, {'name': 'Google Local', 'permalink': 'google-local'}, {'name': 'Google Buzz', 'permalink': 'google-buzz'}, {'name': 'Google Profiles', 'permalink': 'google-profiles'}, {'name': 'Google TV', 'permalink': 'google-tv'}, {'name': 'Google Places', 'permalink': 'google-places'}, {'name': 'Google eBooks', 'permalink': 'google-ebooks'}, {'name': 'Nexus S', 'permalink': 'nexus-s'}, {'name': 'Google Chromebook', 'permalink': 'google-chromebook'}, {'name': 'Google+', 'permalink': 'google-plus'}, {'name': 'Google Chromium', 'permalink': 'google-chromium'}, {'name': 'Google Chromebox', 'permalink': 'google-chromebox'}, {'name': 'Androidify', 'permalink': 'androidify'}, {'name': 'Google 3D Warehouse', 'permalink': 'google-3d-warehouse'}, {'name': 'Google Agency Edge', 'permalink': 'google-agency-edge'}, {'name': 'Google Answers', 'permalink': 'google-answers'}, {'name': 'Google Wallet', 'permalink': 'google-wallet'}, {'name': 'Google Developers', 'permalink': 'google-developers'}, {'name': 'Google Glass', 'permalink': 'google-glass'}, {'name': 'Google Play', 'permalink': 'google-play'}, {'name': 'Google Now', 'permalink': 'google-now'}, {'name': 'Nexus 7', 'permalink': 'nexus'}, {'name': 'Nexus Q', 'permalink': 'nexus-q'}, {'name': 'Google Keep', 'permalink': 'google-keep'}, {'name': 'Google Partners', 'permalink': 'google-partners'}, {'name': 'Chromecast', 'permalink': 'chromecast'}, {'name': 'Google Helpouts', 'permalink': 'google-helpouts'}, {'name': 'Google Music', 'permalink': 'google-music'}, {'name': 'Google Cultural Institute', 'permalink': 'google-cultural-institute'}], 'relationships': [{'is_past': False, 'title': 'CEO of Google Comparison Inc', 'person': {'first_name': 'Dan', 'last_name': 'Shapiro', 'permalink': 'dan-shapiro'}}, {'is_past': False, 'title': 'CEO & Co-Founder', 'person': {'first_name': 'Larry', 'last_name': 'Page', 'permalink': 'larry-page'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Eric', 'last_name': 'Schmidt', 'permalink': 'eric-schmidt'}}, {'is_past': False, 'title': 'Chief Network Engineering', 'person': {'first_name': 'Walter', 'last_name': 'Delgado', 'permalink': 'walter-delgado'}}, {'is_past': False, 'title': 'Vice President & Chief Internet Evangelist', 'person': {'first_name': 'Vinton', 'last_name': 'Cerf', 'permalink': 'vinton-cerf'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Patrick', 'last_name': 'Pichette', 'permalink': 'patrick-pichette'}}, {'is_past': False, 'title': 'Chief Economist', 'person': {'first_name': 'Hal', 'last_name': 'Varian', 'permalink': 'hal-varian'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Benjamin', 'last_name': 'Fried', 'permalink': 'benjamin-fried'}}, {'is_past': False, 'title': 'Senior Vice President - Corp Development, Chief Legal Officer', 'person': {'first_name': 'David', 'last_name': 'Drummond', 'permalink': 'david-drummond'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Nikesh', 'last_name': 'Arora', 'permalink': 'nikesh-arora'}}, {'is_past': False, 'title': 'SVP, People Operations', 'person': {'first_name': 'Laszlo', 'last_name': 'Bock', 'permalink': 'laszlo-bock'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Venkat', 'last_name': 'Panchapakesan', 'permalink': 'venkat-panchapakesan'}}, {'is_past': False, 'title': 'Vice President, Enterprise Operations', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': False, 'title': 'Google Fellow and VP', 'person': {'first_name': 'Sebastian', 'last_name': 'Thrun', 'permalink': 'sebastian-thrun'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': False, 'title': 'VP, Product, YouTube / Video', 'person': {'first_name': 'Shishir', 'last_name': 'Mehrotra', 'permalink': 'shishir-mehrotra'}}, {'is_past': False, 'title': 'Vice President, Product Management', 'person': {'first_name': 'John', 'last_name': 'Hanke', 'permalink': 'john-hanke'}}, {'is_past': False, 'title': 'Vice President, Display Advertising Products', 'person': {'first_name': 'Neal', 'last_name': 'Mohan', 'permalink': 'neal-mohan'}}, {'is_past': False, 'title': 'VP, Engineering', 'person': {'first_name': 'Brian', 'last_name': 'McClendon', 'permalink': 'brian-mcclendon'}}, {'is_past': False, 'title': 'Senior VP, Chrome', 'person': {'first_name': 'Sundar', 'last_name': 'Pichai', 'permalink': 'sundar-pichai'}}, {'is_past': False, 'title': 'Senior VP, Mobile', 'person': {'first_name': 'Andy', 'last_name': 'Rubin', 'permalink': 'andy-rubin'}}, {'is_past': False, 'title': 'Senior Vice President, Advertising & Commerce', 'person': {'first_name': 'Susan', 'last_name': 'Wojcicki', 'permalink': 'susan-wojcicki'}}, {'is_past': False, 'title': 'VP Product, Google Apps', 'person': {'first_name': 'Bradley', 'last_name': 'Horowitz', 'permalink': 'bradley-horowitz'}}, {'is_past': False, 'title': 'VP Product Management', 'person': {'first_name': 'Sundar', 'last_name': 'Pichal', 'permalink': 'sundar-pichal'}}, {'is_past': False, 'title': 'SVP Engineering', 'person': {'first_name': 'Jeff', 'last_name': 'Huberq', 'permalink': 'jeff-huberq'}}, {'is_past': False, 'title': 'SVP Engineering', 'person': {'first_name': 'W.', 'last_name': 'M. Coughran', 'permalink': 'w-m-coughran'}}, {'is_past': False, 'title': 'Senior Vice President, Social', 'person': {'first_name': 'Vic', 'last_name': 'Gundotra', 'permalink': 'vic-gundotra'}}, {'is_past': False, 'title': 'Vice President Corporate Development', 'person': {'first_name': 'David', 'last_name': 'Lawee', 'permalink': 'david-lawee'}}, {'is_past': False, 'title': 'Senior VP - Engineering and Research', 'person': {'first_name': 'Alan', 'last_name': 'Eustace', 'permalink': 'alan-eustace'}}, {'is_past': False, 'title': 'Senior VP - Global Sales & Business Dev', 'person': {'first_name': 'Omid', 'last_name': 'Kordestani', 'permalink': 'omid-kordestani'}}, {'is_past': False, 'title': 'Co-Founder, President of Technology', 'person': {'first_name': 'Sergey', 'last_name': 'Brin', 'permalink': 'sergey-brin'}}, {'is_past': False, 'title': 'Technical Sales', 'person': {'first_name': 'Mohsin', 'last_name': 'Imam', 'permalink': 'mohsin-imam'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'John', 'last_name': 'L. Hennessy', 'permalink': 'john-l-hennessy'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Paul', 'last_name': 'S. Otellini', 'permalink': 'paul-s-otellini'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Brad', 'last_name': 'Fitzpatrick', 'permalink': 'brad-fitzpatrick'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Brett', 'last_name': 'Slatkin', 'permalink': 'brett-slatkin'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Gabe', 'last_name': 'Smedresman', 'permalink': 'gabe-smedresman'}}, {'is_past': False, 'title': 'Gmail Project Manager', 'person': {'first_name': 'Keith', 'last_name': 'Coleman', 'permalink': 'keith-coleman'}}, {'is_past': False, 'title': 'Senior Policy Director', 'person': {'first_name': 'Richard', 'last_name': 'Whitt', 'permalink': 'richard-whitt'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Shuman', 'last_name': 'Ghosemajumder', 'permalink': 'shuman-ghosemajumder'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Taraneh', 'last_name': 'Razavi', 'permalink': 'taraneh-razavi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Adam', 'last_name': 'Lasnik', 'permalink': 'adam-lasnik'}}, {'is_past': False, 'title': 'Head Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Fitzpatrick', 'permalink': 'brian-fitzpatrick'}}, {'is_past': False, 'title': 'PM, Lively', 'person': {'first_name': 'Mel', 'last_name': 'Guymon', 'permalink': 'mel-guymon'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Casey', 'last_name': 'Ho', 'permalink': 'casey-ho'}}, {'is_past': False, 'title': 'Director Global Communications', 'person': {'first_name': 'Brian', 'last_name': \"O'Shaughnessy\", 'permalink': 'brian-oshaughnessy'}}, {'is_past': False, 'title': 'Vice President, Global Communications & Public Affairs', 'person': {'first_name': 'Rachel', 'last_name': 'Whetstone', 'permalink': 'rachel-whetstone'}}, {'is_past': False, 'title': 'Director, Google Apps Channels', 'person': {'first_name': 'Stephen', 'last_name': 'Cho', 'permalink': 'stephen-cho'}}, {'is_past': False, 'title': 'President, The Americas Operation and Senior Vice President, Advertising Sales and Operations', 'person': {'first_name': 'Dennis', 'last_name': 'Woodside', 'permalink': 'dennis-woodside'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andy', 'last_name': 'Hertzfeld', 'permalink': 'andy-hertzfeld'}}, {'is_past': False, 'title': 'VP Engineering, Core Search', 'person': {'first_name': 'Udi', 'last_name': 'Manber', 'permalink': 'udi-manber'}}, {'is_past': False, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Jens', 'last_name': 'Rasmussen', 'permalink': 'jens-rasmussen'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': False, 'title': 'Director/Head of Sales Strategy', 'person': {'first_name': 'Patrick', 'last_name': 'Keane', 'permalink': 'patrick-keane'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Sami', 'last_name': 'Shalabi', 'permalink': 'sami-shalabi'}}, {'is_past': False, 'title': 'Product Management', 'person': {'first_name': 'Amit', 'last_name': 'Jain', 'permalink': 'amit-jain'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Mat', 'last_name': 'Balez', 'permalink': 'mat-balez'}}, {'is_past': False, 'title': 'Director of Product Management', 'person': {'first_name': 'Bernardo', 'last_name': 'Hernandez', 'permalink': 'bernardo-hernandez'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Don', 'last_name': 'Dodge', 'permalink': 'don-dodge'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Joseph', 'last_name': 'Smarr', 'permalink': 'joseph-smarr'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Aaron', 'last_name': 'Boodman', 'permalink': 'aaron-boodman'}}, {'is_past': False, 'title': 'Head of Google TV Distribution Partnerships', 'person': {'first_name': 'Mickey', 'last_name': 'Kim', 'permalink': 'mickey-kim'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Philip', 'last_name': 'Brittan', 'permalink': 'philip-brittan'}}, {'is_past': False, 'title': 'Open Web Advocate', 'person': {'first_name': 'Chris', 'last_name': 'Messina', 'permalink': 'chris-messina'}}, {'is_past': False, 'title': 'President, Global Sales Operations and Business Development', 'person': {'first_name': 'Nikesh', 'last_name': 'Arora', 'permalink': 'nikesh-arora'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Minnie', 'last_name': 'Ingersoll', 'permalink': 'minnie-ingersoll'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ayush', 'last_name': 'Agarwal', 'permalink': 'ayush-agarwal'}}, {'is_past': False, 'title': 'Staff Tech Lead Manager', 'person': {'first_name': 'Guy', 'last_name': 'Tavor', 'permalink': 'guy-tavor'}}, {'is_past': False, 'title': 'MTS', 'person': {'first_name': 'Michel', 'last_name': 'Weksler', 'permalink': 'michel-weksler'}}, {'is_past': False, 'title': 'Sales Strategy', 'person': {'first_name': 'Yael', 'last_name': 'Davidowitz-Neu', 'permalink': 'yael-davidowitz-neu'}}, {'is_past': False, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'Max', 'last_name': 'Luebbe', 'permalink': 'max-luebbe'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'JJ', 'last_name': 'Geewax', 'permalink': 'jj-geewax'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Gadi', 'last_name': 'Royz', 'permalink': 'gadi-royz'}}, {'is_past': False, 'title': 'M&A Lead', 'person': {'first_name': 'Neeraj', 'last_name': 'Arora', 'permalink': 'neeraj-arora'}}, {'is_past': False, 'title': 'Business Development, Google Shopping', 'person': {'first_name': 'Tim', 'last_name': 'Schulz', 'permalink': 'tim-schulz'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Ömer Özgün', 'last_name': 'IŞIKMAN', 'permalink': 'mer-zgn-ikman'}}, {'is_past': False, 'title': 'User Experience Researcher', 'person': {'first_name': 'Andrew', 'last_name': 'Warr', 'permalink': 'andrew-warr'}}, {'is_past': False, 'title': 'Product Manager, AdWords', 'person': {'first_name': 'Nick', 'last_name': 'Fox', 'permalink': 'nick-fox'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Rohan', 'last_name': 'Shah', 'permalink': 'rohan-shah'}}, {'is_past': False, 'title': 'Director, Corporate Development', 'person': {'first_name': 'David', 'last_name': 'Sobota', 'permalink': 'david-sobota'}}, {'is_past': False, 'title': 'Avalex Enterprises', 'person': {'first_name': 'Eeryn', 'last_name': 'Falk-Lubicich', 'permalink': 'eeryn-falk-lubicich'}}, {'is_past': False, 'title': 'Business Development Manager', 'person': {'first_name': 'Tushar', 'last_name': 'Trivedi', 'permalink': 'tushar-trivedi'}}, {'is_past': False, 'title': 'Product', 'person': {'first_name': 'Kurt', 'last_name': 'Wilms', 'permalink': 'kurt-wilms'}}, {'is_past': False, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Ezequiel', 'last_name': 'Vidra', 'permalink': 'ezequiel-vidra'}}, {'is_past': False, 'title': 'Engineering Director, Site Lead', 'person': {'first_name': 'Steven', 'last_name': 'Woods', 'permalink': 'steven-woods-3'}}, {'is_past': False, 'title': 'Head Up News Business', 'person': {'first_name': 'Richard', 'last_name': 'Gingras', 'permalink': 'richard-gingras'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sanaz', 'last_name': 'Ahari', 'permalink': 'sanaz-ahari'}}, {'is_past': False, 'title': 'User Experience Designer', 'person': {'first_name': 'Jonah', 'last_name': 'Jones', 'permalink': 'jonah-jones'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Chris', 'last_name': 'Lambert', 'permalink': 'chris-lambert'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Junius', 'last_name': 'Gunaratne', 'permalink': 'junius-gunaratne'}}, {'is_past': False, 'title': 'Head of Mobile Product Management, Docs', 'person': {'first_name': 'Anil', 'last_name': 'Sabharwal', 'permalink': 'anil-sabharwal'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Nicolas', 'last_name': 'Darveau-Garneau', 'permalink': 'nicolas-darveau-garneau'}}, {'is_past': False, 'title': 'Mobile, Media and Platforms', 'person': {'first_name': 'Jamie', 'last_name': 'Ferguson-Woods', 'permalink': 'jamie-ferguson-woods'}}, {'is_past': False, 'title': 'Media & Entertainment, AdWords Large Customer Sales', 'person': {'first_name': 'Erica', 'last_name': 'Nachamkin', 'permalink': 'erica-nachamkin'}}, {'is_past': False, 'title': 'Mentor, Summer of Code', 'person': {'first_name': 'AJ', 'last_name': 'Jaghori', 'permalink': 'aj-jaghori'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ginsu', 'last_name': 'Yoon', 'permalink': 'ginsu-yoon'}}, {'is_past': False, 'title': 'Business Development Manager', 'person': {'first_name': 'Eric', 'last_name': 'Mauskopf', 'permalink': 'eric-mauskopf'}}, {'is_past': False, 'title': 'Lead Product Manager, EMEA Display Ads', 'person': {'first_name': 'Rahul', 'last_name': 'Bafna', 'permalink': 'rahul-bafna'}}, {'is_past': False, 'title': 'Senior Director, Software Engineering', 'person': {'first_name': 'Peeyush', 'last_name': 'Ranjan', 'permalink': 'peeyush-ranjan'}}, {'is_past': False, 'title': 'Cloud Security and Test Manager', 'person': {'first_name': 'Anthony', 'last_name': 'Voellm', 'permalink': 'anthony-voellm'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Rose', 'permalink': 'kevin-rose'}}, {'is_past': False, 'title': 'AppEngine Consultant', 'person': {'first_name': 'Nicolas', 'last_name': 'Gunther', 'permalink': 'nicols-gunther'}}, {'is_past': False, 'title': 'Android@Home', 'person': {'first_name': 'Chris', 'last_name': 'McKillop', 'permalink': 'chris-mckillop'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Snehal', 'last_name': 'Patel', 'permalink': 'snehal-patel'}}, {'is_past': False, 'title': 'Engagement Programs Manager', 'person': {'first_name': 'Scott', 'last_name': 'Savage', 'permalink': 'scott-savage'}}, {'is_past': False, 'title': 'User Experience Designer', 'person': {'first_name': 'Chanpory', 'last_name': 'Rith', 'permalink': 'chanpory-rith'}}, {'is_past': False, 'title': 'Web Developer', 'person': {'first_name': 'Jeremy', 'last_name': 'Williams', 'permalink': 'jeremy-williams'}}, {'is_past': False, 'title': 'Business Product Manager, Google Compute Engine', 'person': {'first_name': 'Martin', 'last_name': 'Buhr', 'permalink': 'martin-buhr'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Shiva', 'last_name': 'Rajaraman', 'permalink': 'shiva-rajaraman'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Lane', 'permalink': 'rick-lane'}}, {'is_past': False, 'title': 'Engineering tech lead and manager', 'person': {'first_name': 'Sacha', 'last_name': 'Arnoud', 'permalink': 'sacha-arnoud'}}, {'is_past': False, 'title': 'Sr Designer, YouTube', 'person': {'first_name': 'Jason', 'last_name': 'Carlin', 'permalink': 'jason-carlin'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yumio', 'last_name': 'Saneyoshi', 'permalink': 'yumio-saneyoshi'}}, {'is_past': False, 'title': 'Technical Program Manager', 'person': {'first_name': 'Victor', 'last_name': 'Cheng', 'permalink': 'victor-cheng-2'}}, {'is_past': False, 'title': 'Head of EMEA Search & Google+ Partnerships', 'person': {'first_name': 'Maxim', 'last_name': 'Edelman', 'permalink': 'maxim-edelman'}}, {'is_past': False, 'title': 'Industry Analyst Travel', 'person': {'first_name': 'Andrea Roberto', 'last_name': 'Bifulco', 'permalink': 'andrea-roberto-bifulco'}}, {'is_past': False, 'title': 'Director, Google Maps', 'person': {'first_name': 'Daniel', 'last_name': 'Graf', 'permalink': 'daniel-graf'}}, {'is_past': False, 'title': 'Head of Business Development, Google Wallet and Payments', 'person': {'first_name': 'Jonathan', 'last_name': 'Weiner', 'permalink': 'jonathan-weiner'}}, {'is_past': False, 'title': 'Head of Channel Partnerships, N. America', 'person': {'first_name': 'Tae E.', 'last_name': 'Kim', 'permalink': 'tae-e-kim'}}, {'is_past': False, 'title': 'Partner Solutions', 'person': {'first_name': 'Yoav', 'last_name': 'Ben-Ari', 'permalink': 'yoav-ben-ari'}}, {'is_past': False, 'title': 'Head, Consumer Marketing', 'person': {'first_name': 'Guneet', 'last_name': 'Singh', 'permalink': 'guneet-singh'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Bigler', 'permalink': 'jason-bigler'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Sunil', 'last_name': 'James', 'permalink': 'sunil-james'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Hollingsworth', 'permalink': 'tim-hollingsworth'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Anish', 'last_name': 'Acharya', 'permalink': 'anish-acharya'}}, {'is_past': False, 'title': 'Head of Technology Partnerships', 'person': {'first_name': 'Reena', 'last_name': 'Nadkarni', 'permalink': 'reena-nadkarni'}}, {'is_past': False, 'title': 'Strategic Partner Development EMEA', 'person': {'first_name': 'Razia', 'last_name': 'Ahamed', 'permalink': 'razia-ahamed'}}, {'is_past': False, 'title': 'Consultant-Advisor', 'person': {'first_name': 'Nick', 'last_name': 'Ashton-Hart', 'permalink': 'nick-ashton-hart'}}, {'is_past': False, 'title': 'NCD On-net, Manager', 'person': {'first_name': 'Gary', 'last_name': 'Baldus', 'permalink': 'gary-baldus'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Bell', 'permalink': 'david-bell-4'}}, {'is_past': False, 'title': 'PM', 'person': {'first_name': 'Matthew', 'last_name': 'Kovinsky', 'permalink': 'matthew-kovinsky'}}, {'is_past': False, 'title': 'UI/UX Design Intern', 'person': {'first_name': 'Dillon', 'last_name': 'Grove', 'permalink': 'dillon-grove'}}, {'is_past': False, 'title': 'Head, Global Mobile Sales & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Spero', 'permalink': 'jason-spero'}}, {'is_past': False, 'title': 'Director, APAC Partnerships', 'person': {'first_name': 'Jeff', 'last_name': 'Merkel', 'permalink': 'jeff-merkel'}}, {'is_past': False, 'title': 'Senior Advisor', 'person': {'first_name': 'Al', 'last_name': 'Gore', 'permalink': 'al-gore'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Fritz', 'last_name': 'Schneider', 'permalink': 'fritz-schneider'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Winton', 'last_name': 'Davies', 'permalink': 'winton-davies'}}, {'is_past': False, 'title': 'Research Scientist', 'person': {'first_name': 'David', 'last_name': 'Reiley', 'permalink': 'david-reiley'}}, {'is_past': False, 'title': 'UX', 'person': {'first_name': 'Micah', 'last_name': 'Laaker', 'permalink': 'micah-laaker'}}, {'is_past': False, 'title': 'Head of Consumer Acquisition & Engagement, Google Commerce', 'person': {'first_name': 'Dan', 'last_name': 'Visnick', 'permalink': 'dan-visnick'}}, {'is_past': False, 'title': 'Head of Commerce Operations,, Head of Consumer Apps User Operations.', 'person': {'first_name': 'Susan', 'last_name': 'Kim', 'permalink': 'susan-kim'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Feinberg', 'permalink': 'jonathan-feinberg'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Yazdani', 'permalink': 'bobby-yazdani'}}, {'is_past': False, 'title': 'Various', 'person': {'first_name': 'Noah', 'last_name': 'J. Doyle', 'permalink': 'noah-j-doyle-2'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Dmitry', 'last_name': 'Shapiro', 'permalink': 'dmitry-shapiro'}}, {'is_past': False, 'title': 'Supply Chain', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': False, 'title': 'SWE', 'person': {'first_name': 'Daniel', 'last_name': 'Ehrenberg', 'permalink': 'daniel-ehrenberg'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Philipp', 'last_name': 'Gutheim', 'permalink': 'philipp-gutheim'}}, {'is_past': False, 'title': 'Interaction Design Director, Google Creative Lab', 'person': {'first_name': 'Matt', 'last_name': 'Jones', 'permalink': 'matt-jones'}}, {'is_past': False, 'title': 'global Product Managemen', 'person': {'first_name': 'Alok', 'last_name': 'Goel', 'permalink': 'alok-goel'}}, {'is_past': False, 'title': 'User Experience Director', 'person': {'first_name': 'Cordell', 'last_name': 'Ratzlaff', 'permalink': 'cordell-ratzlaff'}}, {'is_past': False, 'title': 'NAM Sales Director', 'person': {'first_name': 'Mark', 'last_name': 'Coleman', 'permalink': 'mark-coleman'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Torrence', 'last_name': 'Boone', 'permalink': 'torrence-boone'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Kurt', 'last_name': 'Kluever', 'permalink': 'kurt-kluever'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Imad', 'last_name': 'Jureidini', 'permalink': 'imad-jureidini'}}, {'is_past': False, 'title': 'Manager Information Security', 'person': {'first_name': 'Heather', 'last_name': 'Adkins', 'permalink': 'heather-adkins'}}, {'is_past': False, 'title': 'Recruiting Specialist', 'person': {'first_name': 'Salima', 'last_name': 'Ladha', 'permalink': 'salima-ladha'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Rich', 'last_name': 'Burdon', 'permalink': 'rich-burdon'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Elliot', 'last_name': 'Lee', 'permalink': 'elliot-lee'}}, {'is_past': False, 'title': 'Manager', 'person': {'first_name': 'Anastasia', 'last_name': 'Leng', 'permalink': 'anastasia-leng'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Nathalie', 'last_name': 'Criou', 'permalink': 'nathalie-criou'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mykhaylo', 'last_name': 'Kostandov', 'permalink': 'mykhaylo-kostandov'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jeffrey', 'last_name': 'Morgan', 'permalink': 'jeffrey-morgan'}}, {'is_past': False, 'title': 'Developer Programs Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Dorsey', 'permalink': 'brian-dorsey'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Margaret', 'last_name': 'H. Lawrence', 'permalink': 'margaret-h-lawrence'}}, {'is_past': False, 'title': 'Co-Leader Alternative Access Group', 'person': {'first_name': 'Larry', 'last_name': 'Alder', 'permalink': 'larry-alder'}}, {'is_past': False, 'title': 'Head of Product Management', 'person': {'first_name': 'Jürgen', 'last_name': 'Galler', 'permalink': 'jrgen-galler'}}, {'is_past': False, 'title': 'Head of Google for Entrepreneurs Europe', 'person': {'first_name': 'Ezequiel', 'last_name': 'Vidra', 'permalink': 'ezequiel-vidra'}}, {'is_past': False, 'title': 'Finance Director, Northern & Central Europe Sales', 'person': {'first_name': 'Raif', 'last_name': 'Jacobs', 'permalink': 'raif-jacobs'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Brian', 'last_name': 'Kennish', 'permalink': 'brian-kennish'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Stuart', 'last_name': 'Reavley', 'permalink': 'stuart-reavley'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Blaise Agüera y', 'last_name': 'Arcas', 'permalink': 'blaise-agera-y-arcas'}}, {'is_past': False, 'title': 'Senior VP - Business Operations', 'person': {'first_name': 'Shona', 'last_name': 'Brown', 'permalink': 'shona-brown'}}, {'is_past': False, 'title': 'Vice President, New Business Development', 'person': {'first_name': 'Megan', 'last_name': 'Smith', 'permalink': 'megan-smith'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Ann', 'last_name': 'Mather', 'permalink': 'ann-mather'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Shirley', 'last_name': 'M. Tilghman', 'permalink': 'shirley-m-tilghman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Guido', 'last_name': 'van Rossum', 'permalink': 'guido-van-rossum'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Nathan', 'last_name': 'Naze', 'permalink': 'nathan-naze'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Patrick', 'last_name': 'Chanezon', 'permalink': 'patrick-chanezon'}}, {'is_past': False, 'title': 'Gmail Anti-Spam Team Lead', 'person': {'first_name': 'Brad', 'last_name': 'Taylor', 'permalink': 'brad-taylor'}}, {'is_past': False, 'title': 'Principal Research Scientist', 'person': {'first_name': 'Krishna', 'last_name': 'Bharat', 'permalink': 'krishna-bharat'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Cutts', 'permalink': 'matt-cutts'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Avinash', 'last_name': 'Kaushik', 'permalink': 'avinash-kaushik'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Luis', 'last_name': 'Sigal', 'permalink': 'luis-sigal'}}, {'is_past': False, 'title': 'Director Product Management Enterprise', 'person': {'first_name': 'Matthew', 'last_name': 'Glotzbach', 'permalink': 'matthew-glotzbach'}}, {'is_past': False, 'title': 'Strategist', 'person': {'first_name': 'Heni', 'last_name': 'Hazbay', 'permalink': 'heni-hazbay'}}, {'is_past': False, 'title': 'Director Of Engineering', 'person': {'first_name': 'Aditya', 'last_name': 'Palande', 'permalink': 'aditya-palande'}}, {'is_past': False, 'title': 'SVP Operations, Google Fellow', 'person': {'first_name': 'Urs', 'last_name': 'Holzle', 'permalink': 'urs-holzl'}}, {'is_past': False, 'title': 'Senior Product Manager, Google Apps', 'person': {'first_name': 'Rishi', 'last_name': 'Chandra', 'permalink': 'rishi-chandra'}}, {'is_past': False, 'title': 'Technology Leader of Panoramio', 'person': {'first_name': 'Joaquín', 'last_name': 'Cuenca Abela', 'permalink': 'jaoquin-cuenca-abela'}}, {'is_past': False, 'title': 'Google Country Consultant (Malaysia)', 'person': {'first_name': 'Hanson', 'last_name': 'Toh', 'permalink': 'hanson-toh'}}, {'is_past': False, 'title': 'Director Engineering, Google Labs', 'person': {'first_name': 'Radhika', 'last_name': 'Malpani', 'permalink': 'radhika-malpani'}}, {'is_past': False, 'title': 'Associate Product Manager', 'person': {'first_name': 'Alex', 'last_name': 'Komoroske', 'permalink': 'alex-komoroske'}}, {'is_past': False, 'title': 'Engineering Director Gmail', 'person': {'first_name': 'Sam', 'last_name': 'Schillace', 'permalink': 'sam-schillace'}}, {'is_past': False, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Greg', 'last_name': 'Badros', 'permalink': 'greg-badros'}}, {'is_past': False, 'title': 'Product Manager, iGoogle', 'person': {'first_name': 'Rose', 'last_name': 'Yao', 'permalink': 'rose-yao'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Fox', 'permalink': 'michael-fox-2'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Leung', 'permalink': 'patrick-leung'}}, {'is_past': False, 'title': 'Geospatial Technologist', 'person': {'first_name': 'Ed', 'last_name': 'Parsons', 'permalink': 'ed-parsons'}}, {'is_past': False, 'title': 'Fellow, Search Team', 'person': {'first_name': 'Amit', 'last_name': 'Singhal', 'permalink': 'amit-singhal'}}, {'is_past': False, 'title': 'Google Books Engineering Director', 'person': {'first_name': 'Dan', 'last_name': 'Clancy', 'permalink': 'dan-clancy'}}, {'is_past': False, 'title': 'Director of Corporate Communication', 'person': {'first_name': 'Jill', 'last_name': 'Hazelbaker', 'permalink': 'jill-hazelbaker'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Juan', 'last_name': 'Walker', 'permalink': 'juan-walker'}}, {'is_past': False, 'title': 'Developer Advocate, Android Mobile', 'person': {'first_name': 'Tim', 'last_name': 'Bray', 'permalink': 'tim-bray'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Walter', 'last_name': 'Korman', 'permalink': 'walter-korman'}}, {'is_past': False, 'title': 'Project Manager', 'person': {'first_name': 'Peter', 'last_name': 'Chane', 'permalink': 'peter-chane-2'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Brad', 'last_name': 'Adams', 'permalink': 'brad-adams'}}, {'is_past': False, 'title': 'Project Manager', 'person': {'first_name': 'Nicolas', 'last_name': 'Escudero Heiberg', 'permalink': 'nicolas-escudero-heiberg'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Emerson', 'permalink': 'jon-emerson'}}, {'is_past': False, 'title': 'Director, User Operations', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': False, 'title': 'Staff Software Engineer and Product Designer, Google[x]', 'person': {'first_name': 'Mike', 'last_name': 'LeBeau', 'permalink': 'mike-lebeau'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Steve', 'last_name': 'Olechowski', 'permalink': 'steve-olechowski'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Miron', 'last_name': 'Cuperman', 'permalink': 'miron-cuperman'}}, {'is_past': False, 'title': 'Product Manager, Google Offers', 'person': {'first_name': 'Marcus', 'last_name': 'Foster', 'permalink': 'marcus-foster'}}, {'is_past': False, 'title': 'Account Coordinator', 'person': {'first_name': 'Cem', 'last_name': 'Kansu', 'permalink': 'cem-kansu'}}, {'is_past': False, 'title': 'Associate Product Marketing Manager', 'person': {'first_name': 'Debbie', 'last_name': 'Leight', 'permalink': 'debbie-leight'}}, {'is_past': False, 'title': 'Leadership Recruiter', 'person': {'first_name': 'Sean', 'last_name': 'Splaine', 'permalink': 'sean-splaine'}}, {'is_past': False, 'title': 'Head, Content & Business Operations, YouTube', 'person': {'first_name': 'Robert', 'last_name': 'Kyncl', 'permalink': 'robert-kyncl'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ben', 'last_name': 'Eidelson', 'permalink': 'ben-eidelson'}}, {'is_past': False, 'title': 'Marketing Manager', 'person': {'first_name': 'Wael', 'last_name': 'Ghonim', 'permalink': 'wael-ghonim'}}, {'is_past': False, 'title': 'Director of Consumer Marketing, YouTube', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Phil', 'last_name': 'Mui', 'permalink': 'phil-mui'}}, {'is_past': False, 'title': 'User Experience & Visual Designer', 'person': {'first_name': 'Mary J.', 'last_name': 'Kim Diaz', 'permalink': 'mary-j-kim-diaz'}}, {'is_past': False, 'title': 'Head of Engineering, Middle East/North Africa', 'person': {'first_name': 'Ahmad', 'last_name': 'Hamzawi', 'permalink': 'ahmad-hamzawi'}}, {'is_past': False, 'title': 'Recruiting Manager', 'person': {'first_name': 'Greg', 'last_name': 'Garrison', 'permalink': 'greg-garrison'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Iein', 'last_name': 'Valdez', 'permalink': 'iein-valdez'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Melanie', 'last_name': 'Curtiss', 'permalink': 'melanie-curtiss'}}, {'is_past': False, 'title': 'Head of Android Partnerships, Asia Pacific', 'person': {'first_name': 'Christine', 'last_name': 'Moon', 'permalink': 'christine-moon'}}, {'is_past': False, 'title': 'Student Contract Developer', 'person': {'first_name': 'Mayank', 'last_name': 'Gupta', 'permalink': 'mayank-gupta'}}, {'is_past': False, 'title': 'Program Manager, GDL', 'person': {'first_name': 'Louis', 'last_name': 'Gray', 'permalink': 'louis-gray'}}, {'is_past': False, 'title': 'Account Manager', 'person': {'first_name': 'Eric', 'last_name': 'Kami', 'permalink': 'eric-kami'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Ryan', 'last_name': 'Snelson', 'permalink': 'ryan-snelson'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ryan', 'last_name': 'Snelson', 'permalink': 'ryan-snelson'}}, {'is_past': False, 'title': 'Search Quality Associate', 'person': {'first_name': 'Daniel', 'last_name': 'Seeff', 'permalink': 'daniel-seeff'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jared', 'last_name': 'Oberhaus', 'permalink': 'jared-oberhaus'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jared', 'last_name': 'Cohen', 'permalink': 'jared-cohen'}}, {'is_past': False, 'title': 'Web Developer', 'person': {'first_name': 'Thomas', 'last_name': 'Turnbull', 'permalink': 'thomas-turnbull'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Pep', 'last_name': 'Gomez', 'permalink': 'pep-gomez'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Ken', 'last_name': 'Norton', 'permalink': 'ken-norton'}}, {'is_past': False, 'title': 'Mobile Product Support Specialist, Google Apps', 'person': {'first_name': 'Luke', 'last_name': 'Bornheimer', 'permalink': 'luke-bornheimer'}}, {'is_past': False, 'title': 'Head of Search & Discovery, Google Play', 'person': {'first_name': 'Ankit', 'last_name': 'Jain', 'permalink': 'ankit-jain'}}, {'is_past': False, 'title': 'Business Operations', 'person': {'first_name': 'Paul', 'last_name': 'Davison', 'permalink': 'paul-davison'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Josh', 'last_name': 'Lane', 'permalink': 'joshua-lane'}}, {'is_past': False, 'title': 'Tech Lead and Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Gibbs', 'permalink': 'kevin-gibbs'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Christopher', 'last_name': 'Pedregal', 'permalink': 'christopher-pedregal'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Horia', 'last_name': 'Ciurdar', 'permalink': 'horia-ciurdar'}}, {'is_past': False, 'title': 'YouTube Global Creator Development & Management Lead', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': False, 'title': 'Lead Recruiter', 'person': {'first_name': 'Jonathan', 'last_name': 'Barker', 'permalink': 'jonathan-barker'}}, {'is_past': False, 'title': 'Content Partnerships Director, YouTube', 'person': {'first_name': 'Malik', 'last_name': 'Ducard', 'permalink': 'malik-ducard'}}, {'is_past': False, 'title': 'Managing Director, Israel R&D Center', 'person': {'first_name': 'Yossi', 'last_name': 'Matias', 'permalink': 'yossi-matias'}}, {'is_past': False, 'title': 'User Interface Designer', 'person': {'first_name': 'Clement', 'last_name': 'Ng', 'permalink': 'clement-ng'}}, {'is_past': False, 'title': 'Head of Mobile Platform Sales', 'person': {'first_name': 'Marc', 'last_name': 'Theermann', 'permalink': 'marc-theermann'}}, {'is_past': False, 'title': 'Software Engineer/SRE', 'person': {'first_name': 'Serene', 'last_name': 'Han', 'permalink': 'shufeng-han'}}, {'is_past': False, 'title': 'Marketing Director, Google+', 'person': {'first_name': 'Marvin', 'last_name': 'Chow', 'permalink': 'marvin-chow'}}, {'is_past': False, 'title': 'Director, Google Giving', 'person': {'first_name': 'Jacquelline', 'last_name': 'Fuller', 'permalink': 'jacquelline-fuller'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Nafis', 'last_name': 'Zebarjadi', 'permalink': 'nafis-zebarjadi'}}, {'is_past': False, 'title': 'Strategic Partner Development Manager', 'person': {'first_name': 'Vinay', 'last_name': 'Bhargava', 'permalink': 'vinay-bhargava'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Phalgun', 'last_name': 'Raju', 'permalink': 'phalgun-raju'}}, {'is_past': False, 'title': 'Google Cultural Institute', 'person': {'first_name': 'Steve', 'last_name': 'Crossan', 'permalink': 'steve-crossan'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Beaumont', 'permalink': 'scott-beaumont'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Tzachi', 'last_name': 'Ben Ayoun', 'permalink': 'tzachi-ben-ayoun'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Sachs', 'permalink': 'eric-sachs'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Marcus', 'last_name': 'Cavanaugh', 'permalink': 'marcus-cavanaugh'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yukari', 'last_name': 'Matsuzawa', 'permalink': 'yukari-matsuzawa'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Austin', 'last_name': 'Chang', 'permalink': 'austin-chang'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Philipp', 'last_name': 'Hertel', 'permalink': 'philipp-hertel'}}, {'is_past': False, 'title': 'Senior Lead | Digital Evangelist', 'person': {'first_name': 'Kevin', 'last_name': 'Foote', 'permalink': 'kevin-foote'}}, {'is_past': False, 'title': 'Sr. Strategic Consultant', 'person': {'first_name': 'Steve', 'last_name': 'Elefant', 'permalink': 'steve-elefant'}}, {'is_past': False, 'title': 'Sales Strategy & Operations Manager', 'person': {'first_name': 'Cory', 'last_name': 'Klippsten', 'permalink': 'cory-klippsten'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Philippe', 'last_name': 'Mussler', 'permalink': 'philippe-mussler'}}, {'is_past': False, 'title': 'Engineering', 'person': {'first_name': 'Chandu', 'last_name': 'Thota', 'permalink': 'chandu-thota'}}, {'is_past': False, 'title': 'Global Strategic Partnerships', 'person': {'first_name': 'Raissa', 'last_name': 'Nebie', 'permalink': 'raissa-nebie'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Raveh', 'permalink': 'dan-raveh'}}, {'is_past': False, 'title': 'Mobile Ads Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Morse', 'permalink': 'jason-morse'}}, {'is_past': False, 'title': 'Director, Android Global Partnerships', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Ray', 'last_name': 'Kurzweil', 'permalink': 'ray-kurzweil'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yoonie', 'last_name': 'Kim', 'permalink': 'yoonie-kim'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Bankhead', 'permalink': 'paul-bankhead'}}, {'is_past': False, 'title': 'Engineering lead of Personalization', 'person': {'first_name': 'Sep', 'last_name': 'Kamvar', 'permalink': 'sep-kamvar'}}, {'is_past': False, 'title': 'Head, Display Solutions, North America', 'person': {'first_name': 'Sharif', 'last_name': 'El-Badawi', 'permalink': 'sharif-el-badawi'}}, {'is_past': False, 'title': 'Director, Product Management - Google Wallet', 'person': {'first_name': 'Peter', 'last_name': 'Hazlehurst', 'permalink': 'peter-hazlehurst'}}, {'is_past': False, 'title': 'Product Marketing Manager, Chrome OS', 'person': {'first_name': 'Shahid', 'last_name': 'Hussain', 'permalink': 'shahid-hussain'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Joris', 'last_name': 'Tinbergen', 'permalink': 'joris-tinbergen'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Qasar', 'last_name': 'Younis', 'permalink': 'qasar-younis'}}, {'is_past': False, 'title': 'Head of Market Intelligence', 'person': {'first_name': 'chris', 'last_name': 'mctiernan', 'permalink': 'chris-mctiernan'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Aoun', 'permalink': 'adrian-aoun'}}, {'is_past': False, 'title': 'Senior Executive', 'person': {'first_name': 'Regina', 'last_name': 'Dugan', 'permalink': 'regina-dugan'}}, {'is_past': False, 'title': 'senior engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Dean', 'permalink': 'jeff-dean-2'}}, {'is_past': False, 'title': 'Software Engineer, Site Reliability Engineering', 'person': {'first_name': 'Ivan', 'last_name': 'Tarasov', 'permalink': 'ivan-tarasov'}}, {'is_past': False, 'title': 'Senior Director of Global Marketing, Google Enterprise', 'person': {'first_name': 'Chris', 'last_name': 'Farinacci', 'permalink': 'chris-farinacci'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Tamar', 'last_name': 'Yehoshua', 'permalink': 'tamar-yehoshua'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Nikhyl', 'last_name': 'Singhal', 'permalink': 'nikhyl-singhal'}}, {'is_past': False, 'title': 'Industry Analyst, Automotive', 'person': {'first_name': 'Daniel', 'last_name': 'Araújo', 'permalink': 'daniel-arajo'}}, {'is_past': False, 'title': 'Technical director of Google Developers Group (Greece)', 'person': {'first_name': 'George', 'last_name': 'Delaportas', 'permalink': 'george-delaportas'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Steven', 'last_name': 'Klebe', 'permalink': 'steven-klebe'}}, {'is_past': False, 'title': 'Captain of Moonshots', 'person': {'first_name': 'Astro', 'last_name': 'Teller', 'permalink': 'astro-teller'}}, {'is_past': False, 'title': 'Director, Engineering', 'person': {'first_name': 'Luc', 'last_name': 'Vincent', 'permalink': 'luc-vincent-2'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Donald', 'last_name': 'Huh', 'permalink': 'donald-huh'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Sridhar', 'last_name': 'Ramaswamy', 'permalink': 'sridhar-ramaswamy'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Victor', 'last_name': 'Koch', 'permalink': 'victor-koch'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Reza', 'last_name': 'Hussein', 'permalink': 'reza-hussein'}}, {'is_past': False, 'title': 'Head of platform marketing, Agency/Advertiser', 'person': {'first_name': 'Scott', 'last_name': 'Brown', 'permalink': 'scott-brown-5'}}, {'is_past': False, 'title': 'Manager, Partner Operations - Google Commerce', 'person': {'first_name': 'Brandon W.', 'last_name': 'Jones', 'permalink': 'brandon-w-jones'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Gary', 'last_name': 'Peck', 'permalink': 'gary-peck'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Martyn', 'last_name': 'Holman', 'permalink': 'martyn-holman'}}, {'is_past': False, 'title': 'Software Developer', 'person': {'first_name': 'Kartik', 'last_name': 'Agaram', 'permalink': 'kartik-agaram'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Basil', 'last_name': 'Horangic', 'permalink': 'basil-horangic'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Branko', 'last_name': 'Cerny', 'permalink': 'branko-cerny'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Mike', 'last_name': 'Jazayeri', 'permalink': 'mike-jazayeri'}}, {'is_past': False, 'title': 'Product Strategy', 'person': {'first_name': 'Scott', 'last_name': 'Jenson', 'permalink': 'scott-jenson'}}, {'is_past': False, 'title': 'Global Program Manager for Innovation & Creativity', 'person': {'first_name': 'Dr. Frederik G.', 'last_name': 'Pferdt', 'permalink': 'dr-frederik-g-pferdt'}}, {'is_past': False, 'title': 'Acquisitions SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': False, 'title': 'Operations / Strategy', 'person': {'first_name': 'Brandon', 'last_name': 'Simins', 'permalink': 'brandon-simins'}}, {'is_past': False, 'title': 'Engineering Director', 'person': {'first_name': 'Kurt', 'last_name': 'Brown', 'permalink': 'kurt-brown'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Eric', 'last_name': 'Schmidt', 'permalink': 'eric-schmidt'}}, {'is_past': True, 'title': 'Chief Evangelist, Wildfire by Google', 'person': {'first_name': 'Maya', 'last_name': 'Grinberg', 'permalink': 'maya-grinberg'}}, {'is_past': True, 'title': 'Chief Rocket Scientist', 'person': {'first_name': 'Ron', 'last_name': 'Garret', 'permalink': 'ron-garret-2'}}, {'is_past': True, 'title': 'VP, Treasurer and Chief Accountant', 'person': {'first_name': 'Brent', 'last_name': 'Callinicos', 'permalink': 'brent-callinicos'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Brian', 'last_name': 'Smith', 'permalink': 'brian-smith-4'}}, {'is_past': True, 'title': 'AdMob CFO', 'person': {'first_name': 'Cheryl', 'last_name': 'Dalrymple', 'permalink': 'cheryl-dalrymple'}}, {'is_past': True, 'title': 'CIO and Vice President Engineering', 'person': {'first_name': 'Douglas', 'last_name': 'Merrill', 'permalink': 'douglas-merrill'}}, {'is_past': True, 'title': 'VP, Android Product Management', 'person': {'first_name': 'Hugo', 'last_name': 'Barra', 'permalink': 'hugo-barra'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager, EMEA', 'person': {'first_name': 'Maurizio', 'last_name': 'Carli', 'permalink': 'maurizio-carli'}}, {'is_past': True, 'title': 'VP, Search Products & User Experience', 'person': {'first_name': 'Marissa', 'last_name': 'Mayer', 'permalink': 'marissa-mayer'}}, {'is_past': True, 'title': 'Vice President, Agency Sales & Partnerships, Worldwide', 'person': {'first_name': 'Penry', 'last_name': 'Price', 'permalink': 'penry-price'}}, {'is_past': True, 'title': 'VP, Eng, Architect Google Health', 'person': {'first_name': 'Adam', 'last_name': 'Bosworth', 'permalink': 'adam-bosworth'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'VP Engg & Distinguished Entrepreneur', 'person': {'first_name': 'N', 'last_name': 'Shivakumar', 'permalink': 'n-shivakumar'}}, {'is_past': True, 'title': 'VP of Legal', 'person': {'first_name': 'Ramsey', 'last_name': 'Homsany', 'permalink': 'ramsey-homsany'}}, {'is_past': True, 'title': 'VP, Global Sales Operations', 'person': {'first_name': 'Margo', 'last_name': 'Georgiadis', 'permalink': 'margo-georgiadis'}}, {'is_past': True, 'title': 'Vice President Global Online Sales & Operations', 'person': {'first_name': 'David', 'last_name': 'Fischer', 'permalink': 'david-fischer-2'}}, {'is_past': True, 'title': 'Vice President, Location & Local Services', 'person': {'first_name': 'Marissa', 'last_name': 'Mayer', 'permalink': 'marissa-mayer'}}, {'is_past': True, 'title': 'President, The Americas Operation and Senior Vice President, Advertising Sales and Operations', 'person': {'first_name': 'Tim', 'last_name': 'Armstrong', 'permalink': 'tim-armstrong'}}, {'is_past': True, 'title': 'VP Content Partnerships', 'person': {'first_name': 'David', 'last_name': 'Eun', 'permalink': 'david-eun'}}, {'is_past': True, 'title': 'Vice President of Corporate Development at Google', 'person': {'first_name': 'Salman', 'last_name': 'Ullah', 'permalink': 'salman-ullah'}}, {'is_past': True, 'title': 'Vice President, Global Communications & Public Affairs', 'person': {'first_name': 'Elliot', 'last_name': 'Schrage', 'permalink': 'elliot-schrage'}}, {'is_past': True, 'title': 'Senior Vice President, YouTube and Video', 'person': {'first_name': 'Salar', 'last_name': 'Kamangar', 'permalink': 'salar-kamangar'}}, {'is_past': True, 'title': 'VP Online Operations and Sales', 'person': {'first_name': 'Sheryl', 'last_name': 'Sandberg', 'permalink': 'sheryl-sandberg'}}, {'is_past': True, 'title': 'Senior VP - Product Management', 'person': {'first_name': 'Jonathan', 'last_name': 'Rosenberg', 'permalink': 'jonathan-rosenberg'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Arthur', 'last_name': 'D. Levinson', 'permalink': 'arthur-d-levinson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Avichal', 'last_name': 'Garg', 'permalink': 'avichal-garg'}}, {'is_past': True, 'title': 'Director of Social Media', 'person': {'first_name': 'Ethan', 'last_name': 'Beard', 'permalink': 'ethan-beard'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Justin', 'last_name': 'Rosenstein', 'permalink': 'justin-rosenstein'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Louis', 'last_name': 'Monier', 'permalink': 'louis-monier'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jason', 'last_name': 'Liebman', 'permalink': 'jason-liebman'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Daniel', 'last_name': 'Blackman', 'permalink': 'daniel-blackman'}}, {'is_past': True, 'title': 'Webmaster Central', 'person': {'first_name': 'Vanessa', 'last_name': 'Fox', 'permalink': 'vanessa-fox'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ana', 'last_name': 'Yang', 'permalink': 'ana-yang'}}, {'is_past': True, 'title': 'Product Manager, Google Maps', 'person': {'first_name': 'Jess', 'last_name': 'Lee', 'permalink': 'jess-lee'}}, {'is_past': True, 'title': 'iGoogle', 'person': {'first_name': 'Sean', 'last_name': 'Knapp', 'permalink': 'sean-knapp'}}, {'is_past': True, 'title': 'Product Manager / New Business Development Manager', 'person': {'first_name': 'Jason', 'last_name': 'Shellen', 'permalink': 'jason-shellen'}}, {'is_past': True, 'title': 'Senior Specialist, Blogger', 'person': {'first_name': 'Evan', 'last_name': 'Williams', 'permalink': 'evan-williams'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'Radez', 'permalink': 'rob-radez'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'David', 'last_name': 'Hirsch', 'permalink': 'david-hirsch'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Bob', 'last_name': 'Lee', 'permalink': 'bob-lee'}}, {'is_past': True, 'title': 'User Experience Manager', 'person': {'first_name': 'Jeffrey', 'last_name': 'Veen', 'permalink': 'jeffrey-veen'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Norm', 'last_name': 'Page', 'permalink': 'norm-page'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'API evangelist', 'person': {'first_name': 'Patrick', 'last_name': 'Chanezon', 'permalink': 'patrick-chanezon'}}, {'is_past': True, 'title': 'Corporate Development & Business Product Manager', 'person': {'first_name': 'David', 'last_name': 'Friedberg', 'permalink': 'david-friedberg'}}, {'is_past': True, 'title': 'Google API Lead', 'person': {'first_name': 'Mark', 'last_name': 'Lucovsky', 'permalink': 'mark-lucovsky'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Joe', 'last_name': 'Kraus', 'permalink': 'joe-kraus'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Rudy', 'last_name': 'Winnacker', 'permalink': 'rudy-winnacker'}}, {'is_past': True, 'title': 'Regional Manager', 'person': {'first_name': 'Tim', 'last_name': 'Moynihan', 'permalink': 'tim-moynihan'}}, {'is_past': True, 'title': 'Head of Sales Finance, North America', 'person': {'first_name': 'Michael', 'last_name': 'Adair', 'permalink': 'michael-adair'}}, {'is_past': True, 'title': 'Online Operations Associate', 'person': {'first_name': 'Otilia', 'last_name': 'Otlacan', 'permalink': 'otilia-otlacan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Piaw', 'last_name': 'Na', 'permalink': 'piaw-na'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Alex', 'last_name': 'Limi', 'permalink': 'alexander-limi'}}, {'is_past': True, 'title': 'Mobile Marketing Product Manager', 'person': {'first_name': 'Ulf', 'last_name': 'Waschbusch', 'permalink': 'ulf-waschbusch'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jyri', 'last_name': 'Engestrom', 'permalink': 'jyri-engestrom'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Joshua', 'last_name': 'Schachter', 'permalink': 'joshua-schachter'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ned', 'last_name': 'Walley', 'permalink': 'ned-walley'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': 'Latin America Director', 'person': {'first_name': 'Gonzalo', 'last_name': 'Alonso', 'permalink': 'gonzalo-alonso'}}, {'is_past': True, 'title': 'Director Product Management, Google Labs', 'person': {'first_name': 'R.J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Matthew', 'last_name': 'Papakipos', 'permalink': 'matthew-papakipos'}}, {'is_past': True, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Lars', 'last_name': 'Rasmussen', 'permalink': 'lars-rasmussen'}}, {'is_past': True, 'title': 'President, Asian-Pacific and Latin American Markets', 'person': {'first_name': 'Sukhinder', 'last_name': 'Singh Cassidy', 'permalink': 'sukhinder-singh-cassidy'}}, {'is_past': True, 'title': 'Head of Corporate Development EMEA', 'person': {'first_name': 'Anil', 'last_name': 'Hansjee', 'permalink': 'anil-hansjee'}}, {'is_past': True, 'title': 'Senior Associate', 'person': {'first_name': 'Max', 'last_name': 'Ventilla', 'permalink': 'max-ventilla'}}, {'is_past': True, 'title': 'Associate General Counsel', 'person': {'first_name': 'Alexander', 'last_name': 'Macgillivray', 'permalink': 'alexander-macgillivray'}}, {'is_past': True, 'title': 'SPD', 'person': {'first_name': 'Justin', 'last_name': 'McCarthy', 'permalink': 'justin-mccarthy'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Nate', 'last_name': 'Johnson', 'permalink': 'nate-johnson'}}, {'is_past': True, 'title': 'Director, Search & Analytics', 'person': {'first_name': 'Tom', 'last_name': 'Phillips', 'permalink': 'tom-phillips'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Ethan', 'last_name': 'Anderson', 'permalink': 'ethan-anderson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tim', 'last_name': 'Maly', 'permalink': 'tim-maly'}}, {'is_past': True, 'title': 'Product Specialist', 'person': {'first_name': 'Oscar', 'last_name': 'Karlsten', 'permalink': 'oscar-karlsten'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee'}}, {'is_past': True, 'title': 'Director Product Management Search', 'person': {'first_name': 'R.J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Vincent', 'last_name': 'Cheung', 'permalink': 'vincent-cheung'}}, {'is_past': True, 'title': 'Principal, New Business Development', 'person': {'first_name': 'David', 'last_name': 'Lee', 'permalink': 'david-lee'}}, {'is_past': True, 'title': 'Director of Corporate Development', 'person': {'first_name': 'Jeremy', 'last_name': 'Wenokur', 'permalink': 'jeremy-wenokur'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Keval', 'last_name': 'Desai', 'permalink': 'keval-desai'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Elad', 'last_name': 'Gil', 'permalink': 'elad-gil'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Othman', 'last_name': 'Laraki', 'permalink': 'othman-laraki'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Lunt', 'permalink': 'eric-lunt'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Bradford', 'last_name': 'Cross', 'permalink': 'bradford-cross'}}, {'is_past': True, 'title': 'Retail Team Leader', 'person': {'first_name': 'Amanda', 'last_name': 'Sanguinet', 'permalink': 'amanda-sanguinet'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Mircea', 'last_name': 'Pasoi', 'permalink': 'mircea-pasoi'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Joe', 'last_name': 'Kottke', 'permalink': 'joe-kottke'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Dan', 'last_name': 'Crow', 'permalink': 'dan-crow'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'David', 'last_name': 'King', 'permalink': 'david-king-5'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Bindu', 'last_name': 'Reddy', 'permalink': 'bindu-reddy'}}, {'is_past': True, 'title': 'Gangsta Programma', 'person': {'first_name': 'Pedram', 'last_name': 'Keyani', 'permalink': 'pedram-keyani'}}, {'is_past': True, 'title': 'SEM Channel Manager', 'person': {'first_name': 'Eric', 'last_name': 'Facas', 'permalink': 'eric-facas'}}, {'is_past': True, 'title': 'Lead Product Manager, Android', 'person': {'first_name': 'Erick', 'last_name': 'Tseng', 'permalink': 'erick-tseng'}}, {'is_past': True, 'title': 'Ad Management Consultant / Customer Solutions Consultant', 'person': {'first_name': 'Omar', 'last_name': 'Salix', 'permalink': 'omar-salix'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Waynn', 'last_name': 'Lue', 'permalink': 'waynn-lue'}}, {'is_past': True, 'title': 'Product Operations Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Schoonveld', 'permalink': 'patrick-schoonveld'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Zal', 'last_name': 'Bilimoria', 'permalink': 'zal-bilimoria'}}, {'is_past': True, 'title': 'Director, Google India', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Sean', 'last_name': 'Duffy', 'permalink': 'sean-duffy'}}, {'is_past': True, 'title': 'Strategic Partner Manager', 'person': {'first_name': 'Anshuman', 'last_name': 'Bapna', 'permalink': 'anshuman-bapna'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Joseph', 'last_name': 'Huang', 'permalink': 'joseph-huang'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Christine', 'last_name': 'Tsai', 'permalink': 'christine-tsai'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jon', 'last_name': 'Steinback', 'permalink': 'jon-steinback'}}, {'is_past': True, 'title': 'Head of Financial Services - Midwest', 'person': {'first_name': 'Brent', 'last_name': 'Hill', 'permalink': 'brent-hill'}}, {'is_past': True, 'title': 'Senior Manager, Corporate Communications', 'person': {'first_name': 'Lynn', 'last_name': 'Foxymax', 'permalink': 'lynn-fox'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joey', 'last_name': 'Liaw', 'permalink': 'joey-liaw'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Amit', 'last_name': 'Garg', 'permalink': 'amit-garg'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Lichi', 'last_name': 'Wu', 'permalink': 'lichi-wu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Larry', 'last_name': 'Gadea', 'permalink': 'larry-gadea'}}, {'is_past': True, 'title': 'Engineering Manager, Google Maps', 'person': {'first_name': 'Paul', 'last_name': 'Rademacher', 'permalink': 'paul-rademacher'}}, {'is_past': True, 'title': 'Head of New Markets', 'person': {'first_name': 'Christian', 'last_name': 'Hernandez', 'permalink': 'christian-hernandez'}}, {'is_past': True, 'title': 'Strategic Partnerships, Mobile', 'person': {'first_name': 'Jordan', 'last_name': 'Kobert', 'permalink': 'jordan-kobert'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Remi', 'last_name': 'Gabillet', 'permalink': 'rmi-gabillet'}}, {'is_past': True, 'title': 'SRE Manager', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Senior UX Researcher', 'person': {'first_name': 'Paul', 'last_name': 'Adams', 'permalink': 'paul-adams'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Bob', 'last_name': 'Zoller', 'permalink': 'bob-zoller'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Josh', 'last_name': 'Mendelsohn', 'permalink': 'josh-mendelsohn-2'}}, {'is_past': True, 'title': 'Interaction Designer', 'person': {'first_name': 'Chad', 'last_name': 'Thornton', 'permalink': 'chad-thornton'}}, {'is_past': True, 'title': 'Attorney', 'person': {'first_name': 'John', 'last_name': 'Duncan', 'permalink': 'john-duncan'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Tim', 'last_name': 'Cheadle', 'permalink': 'tim-cheadle'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gummi', 'last_name': 'Hafsteinsson', 'permalink': 'gummi-hafsteinsson'}}, {'is_past': True, 'title': 'UI Design', 'person': {'first_name': 'George', 'last_name': 'Chen', 'permalink': 'george-chen'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Danny', 'last_name': 'Lin', 'permalink': 'danny-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Chang', 'last_name': 'Kim', 'permalink': 'chang-kim'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Nate', 'last_name': 'Smith', 'permalink': 'nate-smith-2'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Brendan', 'last_name': 'Clavin', 'permalink': 'brendan-clavin'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Aman', 'last_name': 'Kumar', 'permalink': 'aman-kumar'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Sean', 'last_name': 'Owen', 'permalink': 'sean-owen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Alexander', 'last_name': 'Kleinberg', 'permalink': 'alexander-kleinberg'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Lee', 'permalink': 'ben-lee'}}, {'is_past': True, 'title': 'Sr. Web Developer', 'person': {'first_name': 'Geoff', 'last_name': 'Stearns', 'permalink': 'geoff-stearns'}}, {'is_past': True, 'title': 'Product Manager, Google Product Search', 'person': {'first_name': 'Jeff', 'last_name': 'Bartelma', 'permalink': 'jeff-bartelma'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Jag', 'last_name': 'Duggal', 'permalink': 'jag-duggal'}}, {'is_past': True, 'title': 'Business Operations Associate', 'person': {'first_name': 'Murthy', 'last_name': 'Mathiprakasam', 'permalink': 'murthy-mathiprakasam'}}, {'is_past': True, 'title': 'Director of Consumer Marketing and Brand Management', 'person': {'first_name': 'Doug', 'last_name': 'Edwards', 'permalink': 'doug-edwards'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alexandre', 'last_name': 'Oliveira', 'permalink': 'alexandre-oliveira'}}, {'is_past': True, 'title': 'Head of Radio', 'person': {'first_name': 'Ryan', 'last_name': 'Steelberg', 'permalink': 'ryan-steelberg'}}, {'is_past': True, 'title': 'New Business Development Manager', 'person': {'first_name': 'Omid', 'last_name': 'Ashtari', 'permalink': 'omid-ashtari'}}, {'is_past': True, 'title': 'Associate, Enterprise', 'person': {'first_name': 'Alon', 'last_name': 'Bartur', 'permalink': 'alon-bartur'}}, {'is_past': True, 'title': 'GRID SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Megan', 'last_name': 'Quinn', 'permalink': 'megan-quinn'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Josh', 'last_name': 'Avant', 'permalink': 'josh-avant'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Klau', 'permalink': 'rick-klau'}}, {'is_past': True, 'title': 'President Media, Mobile & Platforms Worldwide', 'person': {'first_name': 'Henrique', 'last_name': 'De Castro', 'permalink': 'henrique-de-castro'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gregor', 'last_name': 'Hochmuth', 'permalink': 'gregor-hochmuth'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Allen', 'last_name': 'Romero', 'permalink': 'allen-romero'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gabor', 'last_name': 'Cselle', 'permalink': 'gabor-cselle'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Ajit', 'last_name': 'Varma', 'permalink': 'ajit-varma'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Spector', 'permalink': 'david-spector'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Hutchins', 'permalink': 'chris-hutchins'}}, {'is_past': True, 'title': 'TechLead & Senior Software Engineer', 'person': {'first_name': 'Andrin', 'last_name': 'von Rechenberg', 'permalink': 'andrin-von-rechenberg'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'John', 'last_name': 'Adractas', 'permalink': 'john-adractas'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Clement', 'last_name': 'Pang', 'permalink': 'clement-pang'}}, {'is_past': True, 'title': 'Senior Partner Technology Manager', 'person': {'first_name': 'April', 'last_name': 'Underwood', 'permalink': 'april-underwood'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Matthew', 'last_name': 'Moore', 'permalink': 'matthew-moore'}}, {'is_past': True, 'title': 'Online Media Consultant', 'person': {'first_name': 'Atiq', 'last_name': 'Khan', 'permalink': 'atiq-khan'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Roetter', 'permalink': 'alex-roetter'}}, {'is_past': True, 'title': 'Search Specialist', 'person': {'first_name': 'Richard', 'last_name': 'Wan', 'permalink': 'richard-wan'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Chris', 'last_name': 'Wetherell', 'permalink': 'chris-wetherell'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Blum', 'permalink': 'scott-blum'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Linda', 'last_name': 'Tong', 'permalink': 'linda-tong'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Nemanja', 'last_name': 'Spasojevic', 'permalink': 'nemanja-spasojevic'}}, {'is_past': True, 'title': 'University Recruiter', 'person': {'first_name': 'Kinh', 'last_name': 'DeMaree', 'permalink': 'kinh-demaree'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Thomas', 'last_name': 'Arend', 'permalink': 'thomas-arend'}}, {'is_past': True, 'title': 'Director, Enterprise Operations', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': True, 'title': 'YouTube Global Creator Initiatives Manager', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Justin', 'last_name': 'Smith', 'permalink': 'justin-smith-6'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Calvin', 'last_name': 'Young', 'permalink': 'calvin-young'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'Brit', 'last_name': 'Morin', 'permalink': 'brit-morin'}}, {'is_past': True, 'title': 'Creative Development & Project Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Yazzie', 'permalink': 'matthew-yazzie'}}, {'is_past': True, 'title': 'Senior Designer', 'person': {'first_name': 'Leo', 'last_name': 'Baghdassarian', 'permalink': 'leo-baghdassarian'}}, {'is_past': True, 'title': 'UX Recruiter', 'person': {'first_name': 'Brian', 'last_name': 'Samson', 'permalink': 'brian-samson'}}, {'is_past': True, 'title': 'Senior Industry Analyst', 'person': {'first_name': 'Imad', 'last_name': 'Karam', 'permalink': 'imad-karam'}}, {'is_past': True, 'title': 'Software Engineer, Technical Lead', 'person': {'first_name': 'John', 'last_name': 'Jersin', 'permalink': 'john-jersin'}}, {'is_past': True, 'title': 'Corporate Operations Engineer', 'person': {'first_name': 'Rex', 'last_name': 'Pechler', 'permalink': 'rex-pechler'}}, {'is_past': True, 'title': 'Team Lead, DART Search', 'person': {'first_name': 'Geoffrey', 'last_name': 'Shenk', 'permalink': 'geoff-shenk'}}, {'is_past': True, 'title': 'Head of Acquisition Marketing, APAC', 'person': {'first_name': 'Chris', 'last_name': 'Luo', 'permalink': 'chris-luo'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Dhruv', 'last_name': 'Mehrotra', 'permalink': 'dhruv-mehrotra'}}, {'is_past': True, 'title': 'Group PM', 'person': {'first_name': 'Vincent', 'last_name': 'Paquet', 'permalink': 'vincent-paquet'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Ran', 'last_name': 'Tavory', 'permalink': 'ran-tavory'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Lin', 'permalink': 'michael-lin-4'}}, {'is_past': True, 'title': 'SRE Engineering Program manager', 'person': {'first_name': 'Bob', 'last_name': 'Sutterfield', 'permalink': 'bob-sutterfield'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Barnathan', 'permalink': 'michael-barnathan'}}, {'is_past': True, 'title': 'Technical Program Manager II', 'person': {'first_name': 'Daniel', 'last_name': 'Kornev', 'permalink': 'daniel-kornev'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Morgan', 'last_name': 'Knutson', 'permalink': 'morgan-knutson'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Nima', 'last_name': 'Rahnemoon', 'permalink': 'nima-rahnemoon'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Kenneth', 'last_name': 'Schlenker', 'permalink': 'kenneth-schlenker'}}, {'is_past': True, 'title': 'Global Head of Payments Business Development', 'person': {'first_name': 'Anil', 'last_name': 'D. Aggarwal', 'permalink': 'anil-d-aggarwal'}}, {'is_past': True, 'title': 'Android Business Development', 'person': {'first_name': 'Serge', 'last_name': 'Kassardjian', 'permalink': 'serge-kassardjian'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Tural', 'last_name': 'Badirkhanli', 'permalink': 'tural-badirkhanli'}}, {'is_past': True, 'title': 'Google Summer of Code 2008 Student', 'person': {'first_name': 'Radek', 'last_name': 'Strnad', 'permalink': 'radek-strnad'}}, {'is_past': True, 'title': 'DoubleClick Sales', 'person': {'first_name': 'Stu', 'last_name': 'Libby', 'permalink': 'stu-libby'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Peter', 'last_name': 'Edge', 'permalink': 'peter-edge'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joel', 'last_name': 'Johnson', 'permalink': 'joel-johnson'}}, {'is_past': True, 'title': 'Developers Program Engineer', 'person': {'first_name': 'Austin', 'last_name': 'Chau', 'permalink': 'austin-chau'}}, {'is_past': True, 'title': 'Contract Developer', 'person': {'first_name': 'Abhishek', 'last_name': 'Gupta', 'permalink': 'abhishek-gupta'}}, {'is_past': True, 'title': 'Director of Recruiting and Outreach Programs - EMEA', 'person': {'first_name': 'Randy', 'last_name': 'Knaflic', 'permalink': 'randy-knaflic'}}, {'is_past': True, 'title': 'M&A Finance', 'person': {'first_name': 'Keith', 'last_name': 'Adams', 'permalink': 'keith-adams'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Shailo', 'last_name': 'Rao', 'permalink': 'shailo-rao'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Grant', 'last_name': 'Gold', 'permalink': 'grant-gold'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Christian', 'last_name': 'DiCarlo', 'permalink': 'christian-dicarlo'}}, {'is_past': True, 'title': 'Head, Mobile Solutions, North America', 'person': {'first_name': 'Eric', 'last_name': 'DeLange', 'permalink': 'eric-delange'}}, {'is_past': True, 'title': 'Head of Product Marketing and Strategy - Slide', 'person': {'first_name': 'Viva', 'last_name': 'Chu', 'permalink': 'viva-chu'}}, {'is_past': True, 'title': 'Senior Research Scientist', 'person': {'first_name': 'MartÃ\\xadn', 'last_name': 'Farach-Colton', 'permalink': 'martn-farach-colton'}}, {'is_past': True, 'title': 'Head of TV Ads, Strategic Partner Development', 'person': {'first_name': 'John', 'last_name': 'Saroff', 'permalink': 'john-saroff'}}, {'is_past': True, 'title': 'Head, Market Insights', 'person': {'first_name': 'David', 'last_name': 'Whiteman', 'permalink': 'david-whiteman'}}, {'is_past': True, 'title': 'Director of Global Public Policy', 'person': {'first_name': 'Andrew', 'last_name': 'McLaughlin', 'permalink': 'andrew-mclaughlin'}}, {'is_past': True, 'title': 'Industry Analyst Intern', 'person': {'first_name': 'Arnaud', 'last_name': 'Ferreri', 'permalink': 'arnaud-ferreri'}}, {'is_past': True, 'title': 'Head of Industry', 'person': {'first_name': 'John', 'last_name': 'Farrar', 'permalink': 'john-farrar'}}, {'is_past': True, 'title': 'Lead Sales Engineer', 'person': {'first_name': 'Piyush', 'last_name': 'Mangalick', 'permalink': 'piyush-mangalick'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'James', 'last_name': 'Gosling', 'permalink': 'james-gosling-2'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Daren', 'last_name': 'Jackson', 'permalink': 'daren-jackson'}}, {'is_past': True, 'title': 'GSOC student', 'person': {'first_name': 'Toomas', 'last_name': 'Römer', 'permalink': 'toomas-rmer'}}, {'is_past': True, 'title': 'Sales Strategy', 'person': {'first_name': 'Camille', 'last_name': 'Tyan', 'permalink': 'camille-tyan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ankur', 'last_name': 'Pansari', 'permalink': 'ankur-pansari'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jeson', 'last_name': 'Patel', 'permalink': 'jeson-patel'}}, {'is_past': True, 'title': 'Partnership/business development', 'person': {'first_name': 'Sagi', 'last_name': 'Shorrer', 'permalink': 'sagi-shorrer'}}, {'is_past': True, 'title': 'Business Associate Intern', 'person': {'first_name': 'Andre', 'last_name': 'Albuquerque', 'permalink': 'andre-albuquerque'}}, {'is_past': True, 'title': 'Sr Engineering Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Swerdlow', 'permalink': 'andrew-swerdlow'}}, {'is_past': True, 'title': 'Program Manager for Advanced Projects', 'person': {'first_name': 'Edward', 'last_name': 'T. Lu', 'permalink': 'edward-t-lu'}}, {'is_past': True, 'title': 'Director of Vertical Markets Group', 'person': {'first_name': 'David', 'last_name': 'Scacco', 'permalink': 'david-scacco'}}, {'is_past': True, 'title': 'Business Product Manager, Localization', 'person': {'first_name': 'Luis', 'last_name': 'Garcia', 'permalink': 'luis-garcia'}}, {'is_past': True, 'title': 'Staff Designer', 'person': {'first_name': 'Kevin', 'last_name': 'Ho', 'permalink': 'kevin-ho'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Krishna', 'last_name': 'Yeshwant', 'permalink': 'krishna-yeshwant'}}, {'is_past': True, 'title': 'Senior User Experience Designer', 'person': {'first_name': 'Braden', 'last_name': 'Kowitz', 'permalink': 'braden-kowitz'}}, {'is_past': True, 'title': 'Staff UX Designer', 'person': {'first_name': 'Jake', 'last_name': 'Knapp', 'permalink': 'jake-knapp'}}, {'is_past': True, 'title': 'Associate, Global Communications and Public Affairs', 'person': {'first_name': 'Chris', 'last_name': 'Schreiber', 'permalink': 'chris-schreiber'}}, {'is_past': True, 'title': 'Embedded', 'person': {'first_name': 'Maximos', 'last_name': 'Lih', 'permalink': 'maximos-lih'}}, {'is_past': True, 'title': 'Human Resources Business Partner', 'person': {'first_name': 'Brad', 'last_name': 'Strader', 'permalink': 'brad-strader'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Alex', 'last_name': 'Kinnier', 'permalink': 'alex-kinnier'}}, {'is_past': True, 'title': 'Staff UX Researcher and UX Manager (Seattle/Kirkland)', 'person': {'first_name': 'Michael', 'last_name': 'Margolis', 'permalink': 'michael-margolis-2'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Davenport', 'permalink': 'ben-davenport'}}, {'is_past': True, 'title': 'Vertical Markets', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Monali', 'last_name': 'Narayanswami', 'permalink': 'monali-narayanswami'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel'}}, {'is_past': True, 'title': 'Head of Strategic Partnerships', 'person': {'first_name': 'Rob', 'last_name': 'Macdonald', 'permalink': 'rob-macdonald'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Pupius', 'permalink': 'dan-pupius'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Karl', 'last_name': 'Rosaen', 'permalink': 'karl-rosaen'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Matt', 'last_name': 'Zitzmann', 'permalink': 'matt-zitzmann'}}, {'is_past': True, 'title': 'Head of Affiliate Sales', 'person': {'first_name': 'Jim', 'last_name': 'Robinson', 'permalink': 'jim-robinson'}}, {'is_past': True, 'title': 'Tech Lead/Manager in Platforms', 'person': {'first_name': 'Henry', 'last_name': 'Green', 'permalink': 'henry-green'}}, {'is_past': True, 'title': 'Software Engineering Intern, Privacy Team', 'person': {'first_name': 'Craig', 'last_name': 'Younkins', 'permalink': 'craig-younkins'}}, {'is_past': True, 'title': 'Sr. Director, Engineering', 'person': {'first_name': 'Kevin', 'last_name': 'Scott', 'permalink': 'kevin-scott'}}, {'is_past': True, 'title': 'Director, AdMob Japan and Korea', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': True, 'title': 'Director of Engineering Finance', 'person': {'first_name': 'Kim', 'last_name': 'Jabal', 'permalink': 'kim-jabal'}}, {'is_past': True, 'title': 'Manager of Global Datacenter Operations', 'person': {'first_name': 'Keith', 'last_name': 'Kleiner', 'permalink': 'keith-kleiner'}}, {'is_past': True, 'title': 'Director, Ad Exchange', 'person': {'first_name': 'Michael', 'last_name': 'Rubenstein', 'permalink': 'michael-rubenstein'}}, {'is_past': True, 'title': 'Senior Director, Staffing and HR', 'person': {'first_name': 'ARNNON', 'last_name': 'GESHURI', 'permalink': 'arnnon-geshuri'}}, {'is_past': True, 'title': 'Adwords Coordinator', 'person': {'first_name': 'Greg', 'last_name': 'Strickland', 'permalink': 'greg-strickland'}}, {'is_past': True, 'title': 'Head of Global Leadership Development', 'person': {'first_name': 'Evan', 'last_name': 'Wittenberg', 'permalink': 'evan-wittenberg'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dhanji', 'last_name': 'Prasanna', 'permalink': 'dhanji-prasanna'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Jason', 'last_name': 'Crain', 'permalink': 'jason-crain'}}, {'is_past': True, 'title': 'Product Director, Advertiser Products', 'person': {'first_name': 'Ari', 'last_name': 'Paparo', 'permalink': 'ari-paparo'}}, {'is_past': True, 'title': 'Director, Product Management, YouTube / Video', 'person': {'first_name': 'Shishir', 'last_name': 'Mehrotra', 'permalink': 'shishir-mehrotra'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Horia', 'last_name': 'Ciurdar', 'permalink': 'horia-ciurdar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Chetan', 'last_name': 'Ahuja', 'permalink': 'chetan-ahuja'}}, {'is_past': True, 'title': 'Sales Manager, Strategic Accounts', 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'is_past': True, 'title': 'Head of Mobile Business, Japan & Asia-Pacific, Head of Business Development, India', 'person': {'first_name': 'Atul', 'last_name': 'Satija', 'permalink': 'atul-satija'}}, {'is_past': True, 'title': 'Senior Director, Product Management of Search Products and Local Business Products', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'Software Engineer (Intern)', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Pete', 'last_name': 'Koomen', 'permalink': 'pete-koomen'}}, {'is_past': True, 'title': 'Keeper of Insectivores', 'person': {'first_name': 'Nathan', 'last_name': 'Stoll', 'permalink': 'nathan-stoll'}}, {'is_past': True, 'title': 'Business Operations', 'person': {'first_name': 'Adam', 'last_name': 'Cahan', 'permalink': 'adam-cahan'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Siraj', 'last_name': 'Khaliq', 'permalink': 'siraj-khaliq'}}, {'is_past': True, 'title': 'Head of Experience - Google X', 'person': {'first_name': 'Tom', 'last_name': 'Chi', 'permalink': 'tom-chi'}}, {'is_past': True, 'title': 'Head of Privacy & Policy - Google+', 'person': {'first_name': 'Anne', 'last_name': 'Toth', 'permalink': 'anne-toth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Robby', 'last_name': 'Walker', 'permalink': 'robby-walker'}}, {'is_past': True, 'title': 'Senior Software Engineering Manager', 'person': {'first_name': 'Tom', 'last_name': 'Annau', 'permalink': 'tom-annau'}}, {'is_past': True, 'title': 'AdMob Evangelist', 'person': {'first_name': 'Russell', 'last_name': 'Buckley', 'permalink': 'russell-buckley'}}, {'is_past': True, 'title': 'Key Account Sales', 'person': {'first_name': 'Ella', 'last_name': 'Zhang', 'permalink': 'ella-zhang'}}, {'is_past': True, 'title': 'AdWords Representative', 'person': {'first_name': 'Lichi', 'last_name': 'Wu', 'permalink': 'lichi-wu'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Ashutosh', 'last_name': 'Garg', 'permalink': 'ashutosh-garg'}}, {'is_past': True, 'title': 'Technical Lead/Manager', 'person': {'first_name': 'Vinodh', 'last_name': 'Kumar', 'permalink': 'vinodh-kumar-2'}}, {'is_past': True, 'title': 'Coordinator', 'person': {'first_name': 'Kassidee', 'last_name': 'Kipp', 'permalink': 'kassidee-kipp'}}, {'is_past': True, 'title': 'Product Manager, Android Voice UI', 'person': {'first_name': 'Marcus', 'last_name': 'Foster', 'permalink': 'marcus-foster'}}, {'is_past': True, 'title': 'Country Marketing Manager, Korea', 'person': {'first_name': 'Jiyoung', 'last_name': 'Choi', 'permalink': 'jiyoung-choi'}}, {'is_past': True, 'title': 'Sr. Product Manager - Google Voice', 'person': {'first_name': 'Craig', 'last_name': 'Walker', 'permalink': 'craig-walker'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Tudor', 'last_name': 'Bosman', 'permalink': 'tudor-bosman'}}, {'is_past': True, 'title': 'Open Web Advocate', 'person': {'first_name': 'Dion', 'last_name': 'Almaer', 'permalink': 'dion-almaer'}}, {'is_past': True, 'title': 'Group Product Marketing Manager EMEA', 'person': {'first_name': 'Sean', 'last_name': 'Cornwell', 'permalink': 'sean-cornwell'}}, {'is_past': True, 'title': 'Summer of Code 2008 Participant', 'person': {'first_name': 'Erik', 'last_name': 'Hazzard', 'permalink': 'erik-hazzard'}}, {'is_past': True, 'title': 'Head of YouTube Marketing, Product Marketing Manager, Vertical Markets Manager', 'person': {'first_name': 'Jennifer', 'last_name': 'Hyman', 'permalink': 'jennifer-hyman-2'}}, {'is_past': True, 'title': 'Product Marketing Manager,,,,Account Executive - Tech Industry', 'person': {'first_name': 'Aaron', 'last_name': 'Weissman', 'permalink': 'aaron-weissman'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Matt', 'last_name': 'Nichols', 'permalink': 'matt-nichols'}}, {'is_past': True, 'title': 'Field Marketing Manager', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Director of Emerging Platforms', 'person': {'first_name': 'Vince', 'last_name': 'Monical', 'permalink': 'vince-monical'}}, {'is_past': True, 'title': 'Account Executive, Online Sales', 'person': {'first_name': 'Kris', 'last_name': 'Davis', 'permalink': 'kris-davis'}}, {'is_past': True, 'title': 'Director National Brand Advertising', 'person': {'first_name': 'Jeff', 'last_name': 'Mayo', 'permalink': 'jeff-mayo'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'John', 'last_name': 'Rector', 'permalink': 'john-rector'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Casey', 'last_name': 'Saran', 'permalink': 'casey-saran'}}, {'is_past': True, 'title': 'Head, DoubleClick Communications', 'person': {'first_name': 'Lynn', 'last_name': 'Tornabene', 'permalink': 'lynn-tornabene'}}, {'is_past': True, 'title': 'Mobile Head of Display Technology Vertical, Mobile', 'person': {'first_name': 'Jen', 'last_name': 'Bennett', 'permalink': 'jen-bennett'}}, {'is_past': True, 'title': 'Industry Manager', 'person': {'first_name': 'Johannes', 'last_name': 'Bruder', 'permalink': 'johannes-bruder'}}, {'is_past': True, 'title': 'Visiting Research Scientist', 'person': {'first_name': 'Vijay', 'last_name': 'Karamcheti', 'permalink': 'vijay-karamcheti'}}, {'is_past': True, 'title': 'Group Product Manager, Google AdWords Keyword Recommendations', 'person': {'first_name': 'Amit', 'last_name': 'Somani', 'permalink': 'amit-somani'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Daniel', 'last_name': 'Loreto', 'permalink': 'daniel-loreto'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'M.C.', 'last_name': 'Srivas', 'permalink': 'm-c-srivas'}}, {'is_past': True, 'title': 'Hardware Corp Systems', 'person': {'first_name': 'Gavino', 'last_name': 'Felix', 'permalink': 'gavino-felix'}}, {'is_past': True, 'title': 'Associate Technology Manager Intern', 'person': {'first_name': 'George', 'last_name': 'Tang', 'permalink': 'george-tang'}}, {'is_past': True, 'title': 'Director, Agency and Advertiser Sales', 'person': {'first_name': 'Andrew', 'last_name': 'Rutledge', 'permalink': 'andrew-rutledge'}}, {'is_past': True, 'title': 'Legal Director', 'person': {'first_name': 'David', 'last_name': 'Estrada', 'permalink': 'david-estrada'}}, {'is_past': True, 'title': 'Product Management Director - Payments', 'person': {'first_name': 'Puneet', 'last_name': 'Agarwal', 'permalink': 'puneet-agarwal'}}, {'is_past': True, 'title': 'product manager', 'person': {'first_name': 'Song', 'last_name': 'Jie', 'permalink': 'song-jie'}}, {'is_past': True, 'title': 'Ambassador', 'person': {'first_name': 'Leore', 'last_name': 'Avidar', 'permalink': 'leore-avidar'}}, {'is_past': True, 'title': 'Member, Technical Staff (MTS)', 'person': {'first_name': 'David', 'last_name': 'Franke', 'permalink': 'david-franke'}}, {'is_past': True, 'title': 'Financial Analyst Revenue Operations', 'person': {'first_name': 'César', 'last_name': 'Mozo', 'permalink': 'csar-mozo'}}, {'is_past': True, 'title': 'Associate Product Manager - Google+ Mobile', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Summer of Code Mentor', 'person': {'first_name': 'Dario', 'last_name': 'Freddi', 'permalink': 'dario-freddi'}}, {'is_past': True, 'title': 'software engineer', 'person': {'first_name': 'Naoki', 'last_name': 'Hiroshima', 'permalink': 'naoki-hiroshima'}}, {'is_past': True, 'title': 'he led the engineering team responsible for the creation of the Android mobile operating system and platform for the first three years.', 'person': {'first_name': 'Steve', 'last_name': 'Horowitz', 'permalink': 'steve-horowitz-2'}}, {'is_past': True, 'title': 'UX Design Lead', 'person': {'first_name': 'Dave', 'last_name': 'Young', 'permalink': 'dave-young'}}, {'is_past': True, 'title': 'Security Enginee', 'person': {'first_name': 'Rastislav', 'last_name': 'Turek', 'permalink': 'rastislav-turek'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Joe', 'last_name': 'Doliner', 'permalink': 'joe-doliner'}}, {'is_past': True, 'title': 'Director of Strategic Accounts', 'person': {'first_name': 'Seph', 'last_name': 'Zdarko', 'permalink': 'seph-zdarko'}}, {'is_past': True, 'title': 'Finance Controller, G&A', 'person': {'first_name': 'Roy', 'last_name': 'Rong', 'permalink': 'roy-rong'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Brown', 'permalink': 'andrew-brown-4'}}, {'is_past': True, 'title': 'Global Team Manager', 'person': {'first_name': 'Thomas', 'last_name': 'Korte', 'permalink': 'thomas-korte'}}, {'is_past': True, 'title': 'Strategy and Integration Team Intern', 'person': {'first_name': 'Tanya', 'last_name': 'Menendez', 'permalink': 'tanya-menendez'}}, {'is_past': True, 'title': 'Director Product Management - AdSense, PicasaWeb', 'person': {'first_name': 'Brian', 'last_name': 'Axe', 'permalink': 'brian-axe-2'}}, {'is_past': True, 'title': 'Director - Security Engineering', 'person': {'first_name': 'Stephen', 'last_name': 'McHenry', 'permalink': 'stephen-mchenry'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jason', 'last_name': 'Arbon', 'permalink': 'jason-arbon'}}, {'is_past': True, 'title': 'Yield Team Lead', 'person': {'first_name': 'Nicholas', 'last_name': 'Gammell', 'permalink': 'nicholas-gammell'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Huang', 'permalink': 'michael-huang'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Aaron', 'last_name': 'Iba', 'permalink': 'aaron-iba'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Ari', 'last_name': 'Jacoby', 'permalink': 'ari-jacoby'}}, {'is_past': True, 'title': 'Engineering Ambassador , Germany', 'person': {'first_name': 'Piaw', 'last_name': 'Na', 'permalink': 'piaw-na'}}, {'is_past': True, 'title': 'Product Marketing Lead, Consumer Search', 'person': {'first_name': 'Missy', 'last_name': 'Krasner', 'permalink': 'missy-krasner'}}, {'is_past': True, 'title': 'Strategic Partnerships & Special Projects', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'eCommerce Project Manager', 'person': {'first_name': 'Graham', 'last_name': 'Cooke', 'permalink': 'graham-cooke'}}, {'is_past': True, 'title': 'Web Solutions Engineer', 'person': {'first_name': 'Leah', 'last_name': 'Jones', 'permalink': 'leah-jones'}}, {'is_past': True, 'title': 'Global Head of Product Marketing', 'person': {'first_name': 'Sanjeev', 'last_name': 'Agrawal', 'permalink': 'sanjeev-agrawal'}}, {'is_past': True, 'title': 'Network engineer, Network tools', 'person': {'first_name': 'Vadim', 'last_name': 'Kurland', 'permalink': 'vadim-kurland'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sergey', 'last_name': 'Surkov', 'permalink': 'sergey-surkov'}}, {'is_past': True, 'title': 'Director of Sales Ops', 'person': {'first_name': 'Charley', 'last_name': 'Cassell', 'permalink': 'charley-cassell-2'}}, {'is_past': True, 'title': 'Senior Software Engineer - Android, Tech Lead / Software Engineer - International', 'person': {'first_name': 'Nicolas', 'last_name': 'Sallembien', 'permalink': 'nicolas-sallembien'}}, {'is_past': True, 'title': 'Industry Manager, Multi-Channel', 'person': {'first_name': 'STEPHANIE', 'last_name': 'EMMANOUEL', 'permalink': 'stephanie-emmanouel'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Wan', 'last_name': 'Li Zhu', 'permalink': 'wan-li-zhu'}}, {'is_past': True, 'title': 'Customer Insights', 'person': {'first_name': 'Nitesh', 'last_name': 'Banta', 'permalink': 'nitesh-banta'}}, {'is_past': True, 'title': 'Associate Product Manager Intern', 'person': {'first_name': 'Danny', 'last_name': 'Crichton', 'permalink': 'danny-crichton'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Manish', 'last_name': 'Patel', 'permalink': 'manish-patel'}}, {'is_past': True, 'title': 'Software Engineering Intern (Systems Infrastructure)', 'person': {'first_name': 'John', 'last_name': 'Giacomoni', 'permalink': 'john-giacomoni'}}, {'is_past': True, 'title': 'Process Excellence Specialist', 'person': {'first_name': 'Naz', 'last_name': 'Ozertugrul', 'permalink': 'naz-ozertugrul'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Googler', 'person': {'first_name': 'Nicholas', 'last_name': 'Gilman', 'permalink': 'nicholas-gilman'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Aditya', 'last_name': 'Panda', 'permalink': 'aditya-panda'}}, {'is_past': True, 'title': 'MBA Intern', 'person': {'first_name': 'Avin', 'last_name': 'Bansal', 'permalink': 'avin-bansal'}}, {'is_past': True, 'title': 'HR', 'person': {'first_name': 'Barbara', 'last_name': 'Jobs', 'permalink': 'barbara-jobs'}}, {'is_past': True, 'title': 'Google News UX Lead Designer / Manager', 'person': {'first_name': 'Jasson', 'last_name': 'Schrock', 'permalink': 'jasson-schrock'}}, {'is_past': True, 'title': 'Interaction Designer, Google+', 'person': {'first_name': 'Srividya', 'last_name': 'Sriram', 'permalink': 'srividya-sriram'}}, {'is_past': True, 'title': 'Senior Software Engineer/Engineering Manager', 'person': {'first_name': 'Jason', 'last_name': 'Bennett', 'permalink': 'jason-bennett-2'}}, {'is_past': True, 'title': 'Global Online Content Acquisition & Partnerships Manager, AdSense Online', 'person': {'first_name': 'Uri', 'last_name': 'Lancry', 'permalink': 'uri-lancry'}}, {'is_past': True, 'title': 'Director - Finance', 'person': {'first_name': 'Jillian', 'last_name': 'Gillespie', 'permalink': 'jillian-gillespie'}}, {'is_past': True, 'title': 'Regional Director UK, Ireland Benelux', 'person': {'first_name': 'Kate', 'last_name': 'Burns', 'permalink': 'kate-burns'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Deng-Kai', 'last_name': 'Chen', 'permalink': 'deng-kai-chen'}}, {'is_past': True, 'title': 'Strategist, Online Operations', 'person': {'first_name': 'Jassim', 'last_name': 'Latif', 'permalink': 'jassim-latif'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Maneesh', 'last_name': 'Arora', 'permalink': 'maneesh-k-arora'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Bill', 'last_name': 'Hudak', 'permalink': 'bill-hudak'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Igor', 'last_name': 'Grinkin', 'permalink': 'igor-grinkin'}}, {'is_past': True, 'title': 'Online Help Manager', 'person': {'first_name': 'Morten', 'last_name': 'Lundsby Jensen', 'permalink': 'morten-lundsby-jensen'}}, {'is_past': True, 'title': 'AdWords Domain Expert', 'person': {'first_name': 'Sam', 'last_name': 'Mazaheri', 'permalink': 'sam-mazaheri'}}, {'is_past': True, 'title': 'European Marketing Director', 'person': {'first_name': 'Rikard', 'last_name': 'Steiber', 'permalink': 'rikard-steiber'}}, {'is_past': True, 'title': 'Product Management Positions', 'person': {'first_name': 'Jorge', 'last_name': 'Zapata', 'permalink': 'jorge-zapata'}}, {'is_past': True, 'title': 'Strategic Business Development Manager', 'person': {'first_name': 'Renu', 'last_name': 'Gupta', 'permalink': 'renu-gupta'}}, {'is_past': True, 'title': 'Associate Product Marketing Manager', 'person': {'first_name': 'Chris', 'last_name': 'Sell', 'permalink': 'chris-sell-2'}}, {'is_past': True, 'title': 'AdWords Account Strategist', 'person': {'first_name': 'Carla', 'last_name': 'Swiryn', 'permalink': 'carla-swiryn'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Manav', 'last_name': 'Mishra', 'permalink': 'manav-mishra'}}, {'is_past': True, 'title': 'User experience designer', 'person': {'first_name': 'Adam', 'last_name': 'Baker', 'permalink': 'adam-baker-3'}}, {'is_past': True, 'title': 'Advisory Boards', 'person': {'first_name': 'Misty', 'last_name': 'Locke', 'permalink': 'misty-locke'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Maarten', 'last_name': \"'t Hooft\", 'permalink': 'maarten-t-hooft'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Glick', 'permalink': 'brian-glick'}}, {'is_past': True, 'title': 'Senior Director of New Business Development', 'person': {'first_name': 'Jack', 'last_name': 'Ancone', 'permalink': 'jack-ancone'}}, {'is_past': True, 'title': 'Global Staffing Manager for Search and Executive Recruiting', 'person': {'first_name': 'Jon', 'last_name': 'LoCurto', 'permalink': 'jon-locurto'}}, {'is_past': True, 'title': 'Product Specialist', 'person': {'first_name': 'Scott', 'last_name': 'Hartley', 'permalink': 'scott-hartley'}}, {'is_past': True, 'title': 'Cloud Evangelist', 'person': {'first_name': 'Daniel', 'last_name': 'Rongo', 'permalink': 'daniel-rongo'}}, {'is_past': True, 'title': 'Technical Programs Manager', 'person': {'first_name': 'Jason', 'last_name': 'Costa', 'permalink': 'jason-costa'}}, {'is_past': True, 'title': 'Senior Manager, Communications', 'person': {'first_name': 'Larry', 'last_name': 'Yu', 'permalink': 'larry-yu'}}, {'is_past': True, 'title': 'Products Counsel', 'person': {'first_name': 'Glenn', 'last_name': 'Otis Brown', 'permalink': 'glenn-otis-brown'}}, {'is_past': True, 'title': 'Product Manager (APM program)', 'person': {'first_name': 'Gaurav', 'last_name': 'Jain', 'permalink': 'gaurav-jain-2'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Daniel', 'last_name': 'Borok', 'permalink': 'daniel-borok'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Neil', 'last_name': 'Kandalgaonkar', 'permalink': 'neil-kandalgaonkar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gabor', 'last_name': 'Cselle', 'permalink': 'gabor-cselle'}}, {'is_past': True, 'title': 'Director, Brand Advertising', 'person': {'first_name': 'Ash', 'last_name': 'ElDifrawi', 'permalink': 'ash-eldifrawi'}}, {'is_past': True, 'title': 'Product Management Director, Adsense', 'person': {'first_name': 'Gokul', 'last_name': 'Rajaram', 'permalink': 'gokul-rajaram'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Russell', 'last_name': 'Power', 'permalink': 'russell-power'}}, {'is_past': True, 'title': 'Product Manager, Google Apps', 'person': {'first_name': 'Sanjay', 'last_name': 'Raman', 'permalink': 'sanjay-raman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Steffen', 'last_name': 'Mueller', 'permalink': 'steffen-mueller-2'}}, {'is_past': True, 'title': 'Senior User Experience Design Lead', 'person': {'first_name': 'Kevin', 'last_name': 'Fox', 'permalink': 'kevin-fox'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Brian', 'last_name': 'Dick', 'permalink': 'brian-dick'}}, {'is_past': True, 'title': 'Senior Product Manager, AdSense', 'person': {'first_name': 'Bismarck', 'last_name': 'Lepe', 'permalink': 'bismarck-lepe'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Belsasar', 'last_name': 'Lepe', 'permalink': 'belsasar-lepe'}}, {'is_past': True, 'title': 'Senior Specialist, Blogger', 'person': {'first_name': 'Biz', 'last_name': 'Stone', 'permalink': 'biz-stone'}}, {'is_past': True, 'title': 'Blogger', 'person': {'first_name': 'Jason', 'last_name': 'Goldman', 'permalink': 'jason-goldman'}}, {'is_past': True, 'title': 'Online Operations Coordinator, Google Base', 'person': {'first_name': 'Clint', 'last_name': 'Guerrero', 'permalink': 'clint-guerrero'}}, {'is_past': True, 'title': 'Product Manager, AdWords', 'person': {'first_name': 'Dominic', 'last_name': 'Preuss', 'permalink': 'dominic-preuss'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Tom', 'last_name': 'Stocky', 'permalink': 'tom-stocky'}}, {'is_past': True, 'title': 'Gmail', 'person': {'first_name': 'Aaron', 'last_name': 'Dunn', 'permalink': 'aaron-dunn'}}, {'is_past': True, 'title': 'Director of Engineering, Friend Connect', 'person': {'first_name': 'David', 'last_name': 'Glazer', 'permalink': 'david-glazer'}}, {'is_past': True, 'title': 'Network Engineer/Manager', 'person': {'first_name': 'Jack', 'last_name': 'Levin', 'permalink': 'jack-levin'}}, {'is_past': True, 'title': 'Product Lead for Web Search', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'Group Product Manager, Gmail', 'person': {'first_name': 'Todd', 'last_name': 'Jackson', 'permalink': 'todd-jackson'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Tony', 'last_name': 'Pribyl', 'permalink': 'tony-pribyl'}}, {'is_past': True, 'title': 'Developer Advocate', 'person': {'first_name': 'Kevin', 'last_name': 'Marks', 'permalink': 'kevin-marks'}}, {'is_past': True, 'title': 'Intranet Web Developer', 'person': {'first_name': 'Ted', 'last_name': 'Dziuba', 'permalink': 'ted-dziuba'}}, {'is_past': True, 'title': 'Sales and Operations Manager', 'person': {'first_name': 'Dan', 'last_name': 'Daugherty', 'permalink': 'dan-daugherty'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Patrick', 'last_name': 'Li', 'permalink': 'patrick-li'}}, {'is_past': True, 'title': 'Managing Director for South East Asia', 'person': {'first_name': 'Richard', 'last_name': 'Kimber', 'permalink': 'richard-kimber'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Niniane', 'last_name': 'Wang', 'permalink': 'niniane-wang'}}, {'is_past': True, 'title': 'Country Director, Netherlands', 'person': {'first_name': 'Marc', 'last_name': 'Duijndam', 'permalink': 'marc-duijndam'}}, {'is_past': True, 'title': 'Director, Display Advertising', 'person': {'first_name': 'David', 'last_name': 'Rosenblatt', 'permalink': 'david-rosenblatt'}}, {'is_past': True, 'title': 'Senior Director, Product Management', 'person': {'first_name': 'Deep', 'last_name': 'Nishar', 'permalink': 'deep-nishar'}}, {'is_past': True, 'title': 'President, Enterprise', 'person': {'first_name': 'Dave', 'last_name': 'Girouard', 'permalink': 'dave-girouard'}}, {'is_past': True, 'title': 'Product Manager, Google Finance', 'person': {'first_name': 'Katie', 'last_name': 'Jacobs Stanton', 'permalink': 'katie-jacobs-stanton'}}, {'is_past': True, 'title': 'Eng Director', 'person': {'first_name': 'Christopher', 'last_name': 'Nguyen', 'permalink': 'christopher-nguyen'}}, {'is_past': True, 'title': 'Group Product Manager: Google Voice, Google Talk, Google Talk Video', 'person': {'first_name': 'Craig', 'last_name': 'Walker', 'permalink': 'craig-walker'}}, {'is_past': True, 'title': 'Marketing and Sales, Americas', 'person': {'first_name': 'Jeff', 'last_name': 'Levick', 'permalink': 'jeff-levick'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brittany', 'last_name': 'Bohnet', 'permalink': 'brittany-bohnet'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Stephanie', 'last_name': 'Hannon', 'permalink': 'stephanie-hannon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dennis', 'last_name': 'Crowley', 'permalink': 'dennis-crowley'}}, {'is_past': True, 'title': 'Product Manager (AdSense)', 'person': {'first_name': 'Rob', 'last_name': 'Kniaz', 'permalink': 'rob-kniaz'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Ronny', 'last_name': 'Conway', 'permalink': 'ronny-conway'}}, {'is_past': True, 'title': 'Technical Director', 'person': {'first_name': 'Derek', 'last_name': 'Collison', 'permalink': 'derek-collison'}}, {'is_past': True, 'title': 'Group Manager, Mobile Platforms', 'person': {'first_name': 'Rich', 'last_name': 'Miner', 'permalink': 'rich-miner'}}, {'is_past': True, 'title': 'Manager - OSO', 'person': {'first_name': 'Santosh', 'last_name': 'Jayaram', 'permalink': 'santosh-jayaram'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'Joey', 'last_name': 'Primiani', 'permalink': 'joey-primiani'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Yaron', 'last_name': 'Binur', 'permalink': 'yaron-binur'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Knapp', 'permalink': 'mike-knapp'}}, {'is_past': True, 'title': 'Strategic Partner Development Manager, Local Markets', 'person': {'first_name': 'Jon', 'last_name': 'Steinberg', 'permalink': 'jon-steinberg'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Daniel', 'last_name': 'Tunkelang', 'permalink': 'daniel-tunkelang'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Hunter', 'last_name': 'Walk', 'permalink': 'hunter-walk'}}, {'is_past': True, 'title': 'Group Product Manager, Ads', 'person': {'first_name': 'Dick', 'last_name': 'Costolo', 'permalink': 'dick-costolo'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Siobhan', 'last_name': 'Quinn', 'permalink': 'siobhan-quinn'}}, {'is_past': True, 'title': 'Product Evangelist', 'person': {'first_name': 'Thomas', 'last_name': 'Korte', 'permalink': 'thomas-korte'}}, {'is_past': True, 'title': 'Strategic Partner Manager', 'person': {'first_name': 'Natala', 'last_name': 'Menezes', 'permalink': 'natala-menezes'}}, {'is_past': True, 'title': 'Senior Designer', 'person': {'first_name': 'Jason', 'last_name': 'Morrow', 'permalink': 'jason-morrow'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Amit', 'last_name': 'Paunikar', 'permalink': 'amit-paunikar'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Betz', 'permalink': 'jonathan-betz'}}, {'is_past': True, 'title': 'Head of Affiliate Network', 'person': {'first_name': 'Chris', 'last_name': 'Henger', 'permalink': 'chris-henger'}}, {'is_past': True, 'title': 'Content Acquisition Associate', 'person': {'first_name': 'Brian', 'last_name': 'Pokorny', 'permalink': 'brian-pokorny'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jeff', 'last_name': 'Huber', 'permalink': 'jeff-huber'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Bret', 'last_name': 'Taylor', 'permalink': 'bret-taylor'}}, {'is_past': True, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Arvind', 'last_name': 'Sundararajan', 'permalink': 'arvind-sundararajan'}}, {'is_past': True, 'title': 'Director, Global Communications and Public Affairs', 'person': {'first_name': 'David', 'last_name': 'Krane', 'permalink': 'david-krane'}}, {'is_past': True, 'title': 'Online Sales and Operations', 'person': {'first_name': 'Daniel', 'last_name': 'Franz', 'permalink': 'daniel-franz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Eric', 'last_name': 'Facas', 'permalink': 'eric-facas'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Siobhan', 'last_name': 'Quinn', 'permalink': 'siobhan-quinn'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Morgan', 'last_name': 'Missen', 'permalink': 'morgan-missentzis'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Harry', 'last_name': 'Heymann', 'permalink': 'harry-heymann'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Amund', 'last_name': 'Tveit', 'permalink': 'amund-tveit'}}, {'is_past': True, 'title': 'Member of Technical Staff - Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Krulewitz', 'permalink': 'steve-krulewitz'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Abhishek', 'last_name': 'Amit', 'permalink': 'abhishek-amit'}}, {'is_past': True, 'title': 'Sr. Software Engineer & Technical Lead', 'person': {'first_name': 'Peter', 'last_name': 'Szulczewski', 'permalink': 'peter-szulczewski'}}, {'is_past': True, 'title': 'Product Quality Operations', 'person': {'first_name': 'Cristina', 'last_name': 'Cordova', 'permalink': 'cristina-cordova'}}, {'is_past': True, 'title': 'PR Specialist', 'person': {'first_name': 'Daniel', 'last_name': 'Lemin', 'permalink': 'daniel-lemin'}}, {'is_past': True, 'title': 'Head, Mobile Applications Partnerships', 'person': {'first_name': 'Charles', 'last_name': 'Yim', 'permalink': 'charles-yim'}}, {'is_past': True, 'title': 'Corporate Development Associate', 'person': {'first_name': 'Kevin', 'last_name': 'Systrom', 'permalink': 'kevin-systrom'}}, {'is_past': True, 'title': 'Head of Marketing, Jambool / Social Gold', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Amin', 'last_name': 'Zoufonoun', 'permalink': 'amin-zoufonoun'}}, {'is_past': True, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'David', 'last_name': 'Barksdale', 'permalink': 'david-barksdale'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Amit', 'last_name': 'Garg', 'permalink': 'amit-garg'}}, {'is_past': True, 'title': 'EMEA Maps Partnerships', 'person': {'first_name': 'Bart', 'last_name': 'Denny', 'permalink': 'bart-denny'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Art', 'last_name': 'Leyzerovich', 'permalink': 'art-leyzerovich'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Rademacher', 'permalink': 'paul-rademacher'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Turitzin', 'permalink': 'mike-turitzin'}}, {'is_past': True, 'title': 'Associate, Risk Operations', 'person': {'first_name': 'Jason', 'last_name': 'Wang', 'permalink': 'jason-wang'}}, {'is_past': True, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Kevin', 'last_name': 'Donahue', 'permalink': 'kevin-donahue'}}, {'is_past': True, 'title': 'Strategic Partnerships, AdMob', 'person': {'first_name': 'Aunkur', 'last_name': 'Arya', 'permalink': 'aunkur-arya'}}, {'is_past': True, 'title': 'Adsense Associate', 'person': {'first_name': 'Pedro', 'last_name': 'Cruz', 'permalink': 'pedro-cruz'}}, {'is_past': True, 'title': 'Business Analytics', 'person': {'first_name': 'Korey', 'last_name': 'Lee', 'permalink': 'korey-lee'}}, {'is_past': True, 'title': 'Google Places Lead', 'person': {'first_name': 'Lior', 'last_name': 'Ron', 'permalink': 'lior-ron'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sandra Liu', 'last_name': 'Huang', 'permalink': 'sandra-liu-huang'}}, {'is_past': True, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Cheadle', 'permalink': 'tim-cheadle'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Darren', 'last_name': 'Lewis', 'permalink': 'darren-lewis-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Thai', 'last_name': 'Tran', 'permalink': 'thai-tran'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Dan', 'last_name': 'Engel', 'permalink': 'dan-engel'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Elliot', 'last_name': 'Kroo', 'permalink': 'elliot-kroo'}}, {'is_past': True, 'title': 'Senior Technical Recruiter', 'person': {'first_name': 'Joe', 'last_name': 'Cheung', 'permalink': 'joseph-cheung'}}, {'is_past': True, 'title': 'Global Marketing Director - Mobile & Social Advertising', 'person': {'first_name': 'Rikard', 'last_name': 'Steiber', 'permalink': 'rikard-steiber'}}, {'is_past': True, 'title': 'Software Engineer, Partner Solutions', 'person': {'first_name': 'Ian', 'last_name': 'Langworth', 'permalink': 'ian-langworth'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Tyma', 'permalink': 'paul-tyma'}}, {'is_past': True, 'title': 'UX Manager/Designer', 'person': {'first_name': 'Graham', 'last_name': 'Jenkin', 'permalink': 'graham-jenkin'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Favreau-Lessard', 'permalink': 'simon-favreau-lessard'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Benjy', 'last_name': 'Weinberger', 'permalink': 'benjy-weinberger'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Vida', 'last_name': 'Ha', 'permalink': 'vida-ha'}}, {'is_past': True, 'title': 'Sr Director', 'person': {'first_name': 'Marc', 'last_name': 'Leibowitz', 'permalink': 'marc-leibowitz'}}, {'is_past': True, 'title': 'VP, Commerce and Payments', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Joshua', 'last_name': 'To', 'permalink': 'joshua-to'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Isabel', 'last_name': 'Mattos', 'permalink': 'isabel-mattos'}}, {'is_past': True, 'title': 'New Initiatives Manager (Google/YouTube/DoubleClick)', 'person': {'first_name': 'Daniel', 'last_name': 'Maloney', 'permalink': 'daniel-maloney'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Sam', 'last_name': 'Johnston', 'permalink': 'sam-johnston'}}, {'is_past': True, 'title': 'Lead Sales Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Sangani', 'permalink': 'amit-sangani'}}, {'is_past': True, 'title': 'Manager, Engineering', 'person': {'first_name': 'David', 'last_name': 'Aubespin', 'permalink': 'david-aubespin'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Joe', 'last_name': 'Sriver', 'permalink': 'joe-sriver'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Brotzman', 'permalink': 'michael-brotzman'}}, {'is_past': True, 'title': 'Head of Office', 'person': {'first_name': 'Kevin', 'last_name': 'Willer', 'permalink': 'kevin-willer'}}, {'is_past': True, 'title': 'Software Developer In Test, Intern', 'person': {'first_name': 'Barbara', 'last_name': 'Macdonald', 'permalink': 'barbara-macdonald'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Shaun', 'last_name': 'Modi', 'permalink': 'shaun-modi'}}, {'is_past': True, 'title': 'Associate, Strategy & Business Operations', 'person': {'first_name': 'Clara', 'last_name': 'Shih', 'permalink': 'clara-shih'}}, {'is_past': True, 'title': 'Strategic Partner Management', 'person': {'first_name': 'Ben', 'last_name': 'Smith', 'permalink': 'ben-smith-4'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Zubin', 'last_name': 'Chagpar', 'permalink': 'zubin-chagpar'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Mikko', 'last_name': 'Järvenpää', 'permalink': 'mikko-jrvenp-2'}}, {'is_past': True, 'title': 'Agency Sales', 'person': {'first_name': 'Kamal', 'last_name': 'Taylor', 'permalink': 'kamal-taylor'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Tommaso', 'last_name': 'Cacurio', 'permalink': 'tommaso-cacurio'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Jacquie', 'last_name': 'Phillips', 'permalink': 'jacquie-phillips'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'James', 'last_name': 'Kelm', 'permalink': 'james-kelm'}}, {'is_past': True, 'title': 'Head of Domain Channel', 'person': {'first_name': 'Eytan', 'last_name': 'Elbaz', 'permalink': 'eytan-elbaz'}}, {'is_past': True, 'title': 'Senior Visual Designer', 'person': {'first_name': 'Jamie', 'last_name': 'Divine', 'permalink': 'jamie-divine'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ori', 'last_name': 'Allon', 'permalink': 'ori-allon'}}, {'is_past': True, 'title': 'Senior Manager, Websearch & Syndication', 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'is_past': True, 'title': 'Manager, Strategy & Operations', 'person': {'first_name': 'Gavin', 'last_name': 'Walsh', 'permalink': 'gavin-walsh'}}, {'is_past': True, 'title': 'Sr Product Manager', 'person': {'first_name': 'Emre', 'last_name': 'Baran', 'permalink': 'emre-baran'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ryo', 'last_name': 'Chijiiwa', 'permalink': 'ryo-chijiiwa'}}, {'is_past': True, 'title': 'Account Strategist - Technology and Retail', 'person': {'first_name': 'Vitor', 'last_name': 'de Mesquita', 'permalink': 'vitor-de-mesquita'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Patrick', 'last_name': 'Campbell', 'permalink': 'patrick-campbell-3'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mohit', 'last_name': 'Mittal', 'permalink': 'mohit-mittal'}}, {'is_past': True, 'title': 'Principal, New Business Development', 'person': {'first_name': 'Robert', 'last_name': 'Swerling', 'permalink': 'robert-swerling'}}, {'is_past': True, 'title': 'Head of Local Marketing', 'person': {'first_name': 'Jeff', 'last_name': 'Aguero', 'permalink': 'jeff-aguero'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Sohail', 'last_name': 'Prasad', 'permalink': 'sohail-prasad'}}, {'is_past': True, 'title': 'Google.org Marketing', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': True, 'title': 'AdWords', 'person': {'first_name': 'Esther', 'last_name': 'Park', 'permalink': 'esther-park'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Noah', 'last_name': 'Ready-Campbell', 'permalink': 'noah-ready-campbell'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Charlie', 'last_name': 'Liang', 'permalink': 'charlie-liang'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Rich', 'last_name': 'Wan', 'permalink': 'rich-wan'}}, {'is_past': True, 'title': 'Head of Mobile', 'person': {'first_name': 'Leon', 'last_name': 'Zhao', 'permalink': 'leon-zhao'}}, {'is_past': True, 'title': 'Industry Director', 'person': {'first_name': 'Russ', 'last_name': 'Laraway', 'permalink': 'russ-laraway'}}, {'is_past': True, 'title': 'Ad Operations Analyst', 'person': {'first_name': 'Rich', 'last_name': 'Armstrong', 'permalink': 'rich-armstrong'}}, {'is_past': True, 'title': 'Marketing Director, Asia Pacific', 'person': {'first_name': 'Marvin', 'last_name': 'Chow', 'permalink': 'marvin-chow'}}, {'is_past': True, 'title': 'Product Lead', 'person': {'first_name': 'Chris', 'last_name': 'Shepard', 'permalink': 'chris-shepard'}}, {'is_past': True, 'title': 'Managing Director, Google.org', 'person': {'first_name': 'Gregory', 'last_name': 'Miller', 'permalink': 'gregory-miller'}}, {'is_past': True, 'title': 'Head of Android Product Marketing, APAC', 'person': {'first_name': 'Jonathan', 'last_name': 'Matus', 'permalink': 'joanthan-matus'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Justin', 'last_name': 'Abrahms', 'permalink': 'justin-abrahms'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Cameron', 'last_name': 'Adams', 'permalink': 'cameron-adams'}}, {'is_past': True, 'title': 'Group Product Manager, Places for Business', 'person': {'first_name': 'Joe', 'last_name': 'Wolf', 'permalink': 'joe-wolf'}}, {'is_past': True, 'title': 'Search Engineer', 'person': {'first_name': 'David', 'last_name': 'Leach', 'permalink': 'david-leach'}}, {'is_past': True, 'title': 'Search Quality specialist', 'person': {'first_name': 'Andre', 'last_name': 'Weyher', 'permalink': 'andre-weyher'}}, {'is_past': True, 'title': 'Engineering Intern', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Jared', 'last_name': 'Fliesler', 'permalink': 'jared-fliesler'}}, {'is_past': True, 'title': 'Senior Account Strategist', 'person': {'first_name': 'Joaquin', 'last_name': 'Muro', 'permalink': 'joaquin-muro'}}, {'is_past': True, 'title': 'Head of Search Solutions, Americas', 'person': {'first_name': 'Paul', 'last_name': 'Sternhell', 'permalink': 'paul-sternhell'}}, {'is_past': True, 'title': 'Staff Software Engineer / TLM', 'person': {'first_name': 'Jeff', 'last_name': 'Raubitschek', 'permalink': 'jeff-raubitschek'}}, {'is_past': True, 'title': 'New Business Development Manager', 'person': {'first_name': 'Charles', 'last_name': 'Hudson', 'permalink': 'charles-hudson'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Nassar', 'last_name': 'Stoertz', 'permalink': 'nassar-stoertz'}}, {'is_past': True, 'title': 'Industry Leader Media & Entertainment', 'person': {'first_name': 'Joel', 'last_name': 'Berger', 'permalink': 'joel-berger'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Neeraj', 'last_name': 'Agrawal', 'permalink': 'neeraj-agrawal'}}, {'is_past': True, 'title': 'Engagement Team Manager', 'person': {'first_name': 'Michael', 'last_name': 'Powers', 'permalink': 'michael-powers'}}, {'is_past': True, 'title': 'Researcher, Manager', 'person': {'first_name': 'Amit', 'last_name': 'Singh', 'permalink': 'amit-singh-4'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abraham', 'last_name': 'Shafi', 'permalink': 'abraham-shafi'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Boris', 'last_name': 'Babenko', 'permalink': 'boris-babenko'}}, {'is_past': True, 'title': 'Consumer Operations Intern', 'person': {'first_name': 'Michael', 'last_name': 'Schrader', 'permalink': 'michael-schrader'}}, {'is_past': True, 'title': 'Engineering Intern', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian-2'}}, {'is_past': True, 'title': 'Business Manager', 'person': {'first_name': 'Shawn', 'last_name': 'Lim', 'permalink': 'shawn-lim'}}, {'is_past': True, 'title': 'Offboarding', 'person': {'first_name': 'Scott', 'last_name': 'Becker', 'permalink': 'scott-becker'}}, {'is_past': True, 'title': 'Head of SMB Acquisition Marketing, APAC', 'person': {'first_name': 'Daisuke', 'last_name': 'Sasaki', 'permalink': 'daisuke-sasaki'}}, {'is_past': True, 'title': 'Head of Revenue Operations, Youtube and Google, JAPAC', 'person': {'first_name': 'Anna', 'last_name': 'Nguyen', 'permalink': 'anna-nguyen-2'}}, {'is_past': True, 'title': 'Team Lead - CPG', 'person': {'first_name': 'Rob', 'last_name': 'Sprungman', 'permalink': 'rob-sprungman'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Elizabeth', 'last_name': 'Yin', 'permalink': 'elizabeth-yin'}}, {'is_past': True, 'title': 'Lead Recruiter', 'person': {'first_name': 'Mike', 'last_name': 'Smith', 'permalink': 'mike-smith-7'}}, {'is_past': True, 'title': 'Group Product Manager, Personalized Products', 'person': {'first_name': 'Dan', 'last_name': 'Cohen', 'permalink': 'dan-cohen'}}, {'is_past': True, 'title': 'Director Engineering', 'person': {'first_name': 'Glenn', 'last_name': 'Morten', 'permalink': 'glenn-morten'}}, {'is_past': True, 'title': 'Global Head of Product Management, Shopping & Product Ads', 'person': {'first_name': 'Jennifer', 'last_name': 'Dulski', 'permalink': 'jennifer-dulski'}}, {'is_past': True, 'title': 'Strategic Product Partnerships Manager', 'person': {'first_name': 'Karishma', 'last_name': 'Shah', 'permalink': 'karishma-shah-2'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Paul', 'last_name': 'Rogers', 'permalink': 'paul-rogers-7'}}, {'is_past': True, 'title': 'Senior Technology Program Manager & Product Manager', 'person': {'first_name': 'Piyush', 'last_name': 'Mangalick', 'permalink': 'piyush-mangalick'}}, {'is_past': True, 'title': 'Head, VAS Partnerships - Google Wallet', 'person': {'first_name': 'Aunkur', 'last_name': 'Arya', 'permalink': 'aunkur-arya'}}, {'is_past': True, 'title': 'Contract Recruiter', 'person': {'first_name': 'KYLENE', 'last_name': 'BARKER', 'permalink': 'kylene-barker'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'John', 'last_name': 'Giacamoni', 'permalink': 'john-giacamoni'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Justin', 'last_name': 'Legakis', 'permalink': 'justin-legakis'}}, {'is_past': True, 'title': 'Senior Account Manager', 'person': {'first_name': 'KR', 'last_name': 'Song', 'permalink': 'kr-song'}}, {'is_past': True, 'title': 'Head of User Experience', 'person': {'first_name': 'Irene', 'last_name': 'Au', 'permalink': 'irene-au'}}, {'is_past': True, 'title': 'PMM', 'person': {'first_name': 'Raj', 'last_name': 'Sarkar', 'permalink': 'raj-sarkar'}}, {'is_past': True, 'title': 'Mobile Partnership Intern', 'person': {'first_name': 'Andre', 'last_name': 'Albuquerque', 'permalink': 'andre-albuquerque'}}, {'is_past': True, 'title': 'AdWords Representative', 'person': {'first_name': 'Saad', 'last_name': 'Munif', 'permalink': 'saad-munif'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Tali', 'last_name': 'Saar', 'permalink': 'tali-saar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Terry (Qing)', 'last_name': 'Li', 'permalink': 'terry-qing-li'}}, {'is_past': True, 'title': 'Business Product Manager, Localization', 'person': {'first_name': 'Ignacio', 'last_name': 'Salas', 'permalink': 'ignacio-salas'}}, {'is_past': True, 'title': 'Team Manager, Commerce and Analytics', 'person': {'first_name': 'Bill', 'last_name': 'Masterson', 'permalink': 'bill-masterson-2'}}, {'is_past': True, 'title': 'Director, Predicitve Modeling - Ads', 'person': {'first_name': 'Adam', 'last_name': 'Ghobarah', 'permalink': 'adam-ghobarah'}}, {'is_past': True, 'title': 'Quantitative Marketing Manager', 'person': {'first_name': 'Choongsoon', 'last_name': 'Bae', 'permalink': 'choongsoon-bae'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'John', 'last_name': 'Zeratsky', 'permalink': 'john-zeratsky'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Lem', 'last_name': 'Diaz', 'permalink': 'lem-diaz'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Reuben', 'last_name': 'Antman', 'permalink': 'reuben-antman'}}, {'is_past': True, 'title': 'Global People Operations', 'person': {'first_name': 'Carrie', 'last_name': 'Farrell', 'permalink': 'carrie-farrell'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Stritar', 'permalink': 'jon-stritar'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Lucy', 'last_name': 'Zhang', 'permalink': 'lucy-zhang'}}, {'is_past': True, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Perlow', 'permalink': 'jonathan-perlow'}}, {'is_past': True, 'title': 'advertising sales team', 'person': {'first_name': 'Shital', 'last_name': 'Chheda', 'permalink': 'shital-chheda'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Mandal', 'permalink': 'rishi-mandal'}}, {'is_past': True, 'title': 'UX Manager', 'person': {'first_name': 'Scott', 'last_name': 'Jenson', 'permalink': 'scott-jenson'}}, {'is_past': True, 'title': 'Datacenter Site Director', 'person': {'first_name': 'Jeff', 'last_name': 'Layton', 'permalink': 'jeff-layton'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Petteri', 'last_name': 'Koponen', 'permalink': 'petteri-koponen'}}, {'is_past': True, 'title': 'Director, Global Sales & Operations Strategy', 'person': {'first_name': 'John', 'last_name': 'Barabino', 'permalink': 'john-barabino'}}, {'is_past': True, 'title': 'TL', 'person': {'first_name': 'Wayne', 'last_name': 'Pan', 'permalink': 'wayne-pan'}}, {'is_past': True, 'title': 'Senior Visual Designer', 'person': {'first_name': 'Kai', 'last_name': 'Gradert', 'permalink': 'kai-gradert-2'}}, {'is_past': True, 'title': 'Head of Mobile Advertising Platform Strategy and Sales', 'person': {'first_name': 'Clay', 'last_name': 'Kellogg', 'permalink': 'clay-kellogg'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Rod', 'last_name': 'Begbie', 'permalink': 'rod-begbie'}}, {'is_past': True, 'title': 'Director, Mobile', 'person': {'first_name': 'Jason', 'last_name': 'Spero', 'permalink': 'jason-spero'}}, {'is_past': True, 'title': 'Director, Mobile', 'person': {'first_name': 'Jeff', 'last_name': 'Merkel', 'permalink': 'jeff-merkel'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Chi-Hua', 'last_name': 'Chien', 'permalink': 'chi-hua-chien'}}, {'is_past': True, 'title': 'Search Quality', 'person': {'first_name': 'Adi', 'last_name': 'Goradia', 'permalink': 'adi-goradia'}}, {'is_past': True, 'title': 'Communications, Public Affairs, Public Relations', 'person': {'first_name': 'Ricardo', 'last_name': 'Reyes', 'permalink': 'ricardo-reyes'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Jen', 'last_name': 'Grant', 'permalink': 'jen-grant'}}, {'is_past': True, 'title': 'Senior Engineering Director', 'person': {'first_name': 'Sam', 'last_name': 'Schillace', 'permalink': 'sam-schillace'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Khaitan', 'permalink': 'rishi-khaitan'}}, {'is_past': True, 'title': 'User Interface Designer', 'person': {'first_name': 'Cameron', 'last_name': 'Adams', 'permalink': 'cameron-adams'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Jochen', 'last_name': 'Bekmann', 'permalink': 'jochen-bekmann'}}, {'is_past': True, 'title': 'Global Industry Relations', 'person': {'first_name': 'Jonathan', 'last_name': 'Perelman', 'permalink': 'jonathan-perelman'}}, {'is_past': True, 'title': 'Customer Insights Analyst', 'person': {'first_name': 'Amy', 'last_name': 'Kiefer', 'permalink': 'amy-kiefer'}}, {'is_past': True, 'title': 'Global Head, Content Operations at YouTube', 'person': {'first_name': 'Tom', 'last_name': 'Pickett', 'permalink': 'tom-pickett'}}, {'is_past': True, 'title': 'EMEA Founding Member', 'person': {'first_name': 'Rohit', 'last_name': 'Kumar', 'permalink': 'rohit-kumar'}}, {'is_past': True, 'title': 'Site Director', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'David', 'last_name': 'Richardson', 'permalink': 'david-richardson'}}, {'is_past': True, 'title': 'Director of Strategic Partnerships, Director of New Media', 'person': {'first_name': 'Crid', 'last_name': 'Yu', 'permalink': 'crid-yu'}}, {'is_past': True, 'title': 'Senior Director, Product Management and Engineering, Mobile Applications Lab', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Dan', 'last_name': 'Siroker', 'permalink': 'dan-siroker'}}, {'is_past': True, 'title': 'Managing Director - Media and Platforms Market Development', 'person': {'first_name': 'Matt', 'last_name': 'Ackley', 'permalink': 'matt-ackley'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Spiro', 'permalink': 'rob-spiro'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Pickhardt', 'permalink': 'jeff-pickhardt'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Florence', 'last_name': 'Thinh', 'permalink': 'florence-thinh'}}, {'is_past': True, 'title': 'Director, Sales Strategy & Operations, Americas', 'person': {'first_name': 'Patricia', 'last_name': 'Severynse', 'permalink': 'patricia-severynse'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Birken', 'permalink': 'dan-birken'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Michael', 'last_name': 'Todd', 'permalink': 'michael-todd'}}, {'is_past': True, 'title': 'Googler', 'person': {'first_name': 'Chuck', 'last_name': 'McManis', 'permalink': 'chuck-mcmanis'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Scott', 'permalink': 'kevin-scott'}}, {'is_past': True, 'title': 'Strategic Partner Development Manager', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': True, 'title': 'Senior Scientist', 'person': {'first_name': 'Vibhu', 'last_name': 'Mittal', 'permalink': 'vibhu-mittal'}}, {'is_past': True, 'title': 'Senior Product Manager, Google Talk', 'person': {'first_name': 'Chris', 'last_name': 'Szeto', 'permalink': 'chris-szeto'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Amit', 'last_name': 'Aggarwal', 'permalink': 'amit-aggarwal'}}, {'is_past': True, 'title': 'Head of Product, YouTube on TV', 'person': {'first_name': 'Thomas', 'last_name': 'Purnell-Fisher', 'permalink': 'thomas-purnell-fisher'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Geir', 'last_name': 'Engdahl', 'permalink': 'geir-engdahl'}}, {'is_past': True, 'title': 'Strategic Partner Development, Content Acquisition', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sanjeev', 'last_name': 'Singh', 'permalink': 'sanjeev-singh'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Haley', 'last_name': 'Barrile', 'permalink': 'haley-barrile'}}, {'is_past': True, 'title': 'Head of Mobile Partnerships', 'person': {'first_name': 'Laurence', 'last_name': 'Aderemi', 'permalink': 'laurence-aderemi'}}, {'is_past': True, 'title': 'Product Guy', 'person': {'first_name': 'Mohammed', 'last_name': 'Abdoolcarim', 'permalink': 'mohammed-abdoolcarim'}}, {'is_past': True, 'title': 'Director, Sales Operations, North America, Director, Global Sales & Operations Strategy, Director, Content Media Group', 'person': {'first_name': 'Kurt', 'last_name': 'Abrahamson', 'permalink': 'kurt-abrahamson'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Deborah', 'last_name': 'Powsner', 'permalink': 'deborah-powsner'}}, {'is_past': True, 'title': 'Global Communications and Public Affairs', 'person': {'first_name': 'Steffi', 'last_name': 'Wu', 'permalink': 'steffi-wu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Wells', 'permalink': 'mike-wells'}}, {'is_past': True, 'title': 'Senior Sales Manager', 'person': {'first_name': 'Derek', 'last_name': 'Kuhl', 'permalink': 'derek-kuhl'}}, {'is_past': True, 'title': 'Senior Business Analyst MBA Intern', 'person': {'first_name': 'Jonathan', 'last_name': 'Taqqu', 'permalink': 'jonathan-taqqu'}}, {'is_past': True, 'title': 'Strategic Publishing Manager France', 'person': {'first_name': 'Stefan', 'last_name': 'Lechere', 'permalink': 'stefan-lechere'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Peterson', 'permalink': 'brian-peterson'}}, {'is_past': True, 'title': 'Manager, Partnership Development', 'person': {'first_name': 'Steve', 'last_name': 'Roach', 'permalink': 'steve-roach'}}, {'is_past': True, 'title': 'Principle Technology Specialist', 'person': {'first_name': 'Jason', 'last_name': 'Hines', 'permalink': 'jason-hines'}}, {'is_past': True, 'title': 'Emerging Business Lead, GeoCommerce', 'person': {'first_name': 'Jeremy', 'last_name': 'Arnon', 'permalink': 'jeremy-arnon'}}, {'is_past': True, 'title': 'Online Sales & Operations MBA Intern', 'person': {'first_name': 'Kent', 'last_name': 'Bennett', 'permalink': 'kent-bennett'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Hisham', 'last_name': 'Zarka', 'permalink': 'hisham-zarka'}}, {'is_past': True, 'title': 'Sales & Marketing Consultant', 'person': {'first_name': 'Hristo', 'last_name': 'Odiseev', 'permalink': 'hristo-odiseev'}}, {'is_past': True, 'title': 'Monetization Specialist', 'person': {'first_name': 'Adam', 'last_name': 'Klee', 'permalink': 'adam-klee'}}, {'is_past': True, 'title': 'Online Operations Associate', 'person': {'first_name': 'Mike', 'last_name': 'Winters', 'permalink': 'mike-winters'}}, {'is_past': True, 'title': 'Business Associate (MBA Intern), Advertising Monetization Strategy', 'person': {'first_name': 'Randall', 'last_name': 'Lloyd', 'permalink': 'randall-lloyd'}}, {'is_past': True, 'title': 'Student Developer', 'person': {'first_name': 'Tim', 'last_name': 'Jurka', 'permalink': 'tim-jurka'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Ian', 'last_name': 'MacKinnon', 'permalink': 'ian-mackinnon-2'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Farooq', 'last_name': 'Mela', 'permalink': 'farooq-mela'}}, {'is_past': True, 'title': 'senior marketing positions', 'person': {'first_name': 'Yvonne', 'last_name': 'Chien', 'permalink': 'yvonne-chien'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Axel', 'last_name': 'Hansen', 'permalink': 'axel-hansen'}}, {'is_past': True, 'title': 'Search', 'person': {'first_name': 'Bruce', 'last_name': 'Witz', 'permalink': 'bruce-witz-2'}}, {'is_past': True, 'title': 'Technical Lead', 'person': {'first_name': 'Mike', 'last_name': 'Sego', 'permalink': 'mike-sego'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Michael', 'last_name': 'Barrett', 'permalink': 'michael-barrett'}}, {'is_past': True, 'title': 'Member Technical Staff', 'person': {'first_name': 'Bruce', 'last_name': 'Karsh', 'permalink': 'bruce-karsh'}}, {'is_past': True, 'title': 'Associate Product Manager - Google API Infrastructure', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Prabhdeep', 'last_name': 'Gill', 'permalink': 'prabhdeep-gill'}}, {'is_past': True, 'title': 'Sales Finance Development Manager', 'person': {'first_name': 'Randy', 'last_name': 'Meech', 'permalink': 'randy-meech'}}, {'is_past': True, 'title': 'Data Acquisition Representative for Google Earth', 'person': {'first_name': 'Lily', 'last_name': 'Cheng', 'permalink': 'lily-cheng'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Douwe', 'last_name': 'Osinga', 'permalink': 'douwe-osinga'}}, {'is_past': True, 'title': 'Web Specialist', 'person': {'first_name': 'Thomas', 'last_name': 'Leidinger', 'permalink': 'thomas-leidinger'}}, {'is_past': True, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Scott', 'last_name': 'Crosby', 'permalink': 'scott-crosby'}}, {'is_past': True, 'title': 'Western Advertising Director', 'person': {'first_name': 'Peter', 'last_name': \"O'Sullivan\", 'permalink': 'peter-osullivan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ryan', 'last_name': 'Rawson', 'permalink': 'ryan-rawson'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'Willem', 'last_name': 'Van Lancker', 'permalink': 'willem-van-lancker'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Soo', 'last_name': 'Jin Oh', 'permalink': 'soo-jin-oh'}}, {'is_past': True, 'title': 'eCommerce GM / Product Management Director', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'OSO', 'person': {'first_name': 'Tal', 'last_name': 'Riesenfeld', 'permalink': 'tal-riesenfeld'}}, {'is_past': True, 'title': 'Finance Manager', 'person': {'first_name': 'Eric', 'last_name': 'Kim', 'permalink': 'eric-kim-3'}}, {'is_past': True, 'title': 'Head of Consumer Payments', 'person': {'first_name': 'Vikas', 'last_name': 'Gupta', 'permalink': 'vikas-gupta'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Adam', 'last_name': 'Wooley', 'permalink': 'adam-wooley'}}, {'is_past': True, 'title': 'Product Manager, Google Chrome', 'person': {'first_name': 'Nick', 'last_name': 'Baum', 'permalink': 'nick-baum'}}, {'is_past': True, 'title': 'Associate Program Manager', 'person': {'first_name': 'Maria', 'last_name': 'Ly', 'permalink': 'maria-ly'}}, {'is_past': True, 'title': 'Executive Assistant to Executive Director', 'person': {'first_name': 'Sadie', 'last_name': 'Ferguson', 'permalink': 'sadie-ferguson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Peng', 'permalink': 'eric-peng'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Adam', 'last_name': 'Smith', 'permalink': 'adam-smith-9'}}, {'is_past': True, 'title': 'Product Lead International Search and Search Quality', 'person': {'first_name': 'Sakina', 'last_name': 'Arsiwala', 'permalink': 'sakina-arsiwala'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Robert', 'last_name': 'Moffat', 'permalink': 'robert-moffat'}}, {'is_past': True, 'title': 'eCommerce Senior Project Manager, EMEA', 'person': {'first_name': 'Graham', 'last_name': 'Cooke', 'permalink': 'graham-cooke'}}, {'is_past': True, 'title': 'Web Solutions Engineer', 'person': {'first_name': 'Russell', 'last_name': 'Middleton', 'permalink': 'russell-middleton'}}, {'is_past': True, 'title': 'Managing Director, Enterprise Marketing Strategy', 'person': {'first_name': 'Brian', 'last_name': 'Giacomin', 'permalink': 'brian-giacomin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Abhishek', 'last_name': 'Poddar', 'permalink': 'abhishek-poddar'}}, {'is_past': True, 'title': 'Investments Principal, Google.org, Head of Business Development, China, Head of Patents', 'person': {'first_name': 'Karl', 'last_name': 'Sun', 'permalink': 'karl-sun'}}, {'is_past': True, 'title': 'Key Account Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Cernat', 'permalink': 'adrian-cernat'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Adam', 'last_name': 'Hilss', 'permalink': 'adam-hills'}}, {'is_past': True, 'title': \"Men's Clothing, Style, & Fashion Consultant\", 'person': {'first_name': 'Antonio', 'last_name': 'Centeno', 'permalink': 'antonio-centeno'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'Teo', 'permalink': 'jonathan-teo-2'}}, {'is_past': True, 'title': 'Lead Product Manager, Google+ Mobile', 'person': {'first_name': 'Anish', 'last_name': 'Acharya', 'permalink': 'anish-acharya'}}, {'is_past': True, 'title': 'UX Manager', 'person': {'first_name': 'Jake', 'last_name': 'Knapp', 'permalink': 'jake-knapp'}}, {'is_past': True, 'title': 'Associate Product Manager Intern', 'person': {'first_name': 'RJ', 'last_name': 'Walsh', 'permalink': 'rj-walsh'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Naz', 'last_name': 'Ozertugrul', 'permalink': 'naz-ozertugrul'}}, {'is_past': True, 'title': 'Head of Career Development & Mobility - Global Sales', 'person': {'first_name': 'Dan', 'last_name': 'Hynes', 'permalink': 'dan-hynes'}}, {'is_past': True, 'title': 'Policy Manager Africa', 'person': {'first_name': 'Ory', 'last_name': 'Okolloh', 'permalink': 'ory-okolloh'}}, {'is_past': True, 'title': 'Principal', 'person': {'first_name': 'David', 'last_name': 'Lee', 'permalink': 'david-lee'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Suken', 'last_name': 'Vakil', 'permalink': 'suken-vakil'}}, {'is_past': True, 'title': 'Global Head of Product, Google Ads Measurement', 'person': {'first_name': 'Amy', 'last_name': 'Chang', 'permalink': 'amy-chang'}}, {'is_past': True, 'title': 'Software Engineer in Test', 'person': {'first_name': 'Venkatesan', 'last_name': 'Sundramurthy', 'permalink': 'venkatesan-sundramurthy'}}, {'is_past': True, 'title': 'Business Product Management, Google Earth / Maps', 'person': {'first_name': 'Noah', 'last_name': 'Doyle', 'permalink': 'noah-doyle'}}, {'is_past': True, 'title': 'Interaction Designer, Google News', 'person': {'first_name': 'Srividya', 'last_name': 'Sriram', 'permalink': 'srividya-sriram'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Navneet', 'last_name': 'Loiwal', 'permalink': 'navneet-loiwal'}}, {'is_past': True, 'title': 'MD Media Platforms (EMEA)', 'person': {'first_name': 'Ben', 'last_name': 'Regensburger', 'permalink': 'ben-regensburger'}}, {'is_past': True, 'title': 'Head of Platforms - JAPAC', 'person': {'first_name': 'Kaylie', 'last_name': 'Smith', 'permalink': 'kaylie-smith'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Mukund', 'last_name': 'Jha', 'permalink': 'mukund-jha'}}, {'is_past': True, 'title': 'Corporate Controller', 'person': {'first_name': 'Pietro', 'last_name': 'Dova', 'permalink': 'pietro-dova'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Jassim', 'last_name': 'Latif', 'permalink': 'jassim-latif'}}, {'is_past': True, 'title': 'Counsel for Advanced Networks', 'person': {'first_name': 'Kenneth', 'last_name': 'Carter', 'permalink': 'kenneth-carter-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Shannon', 'last_name': 'Bauman', 'permalink': 'shannon-bauman'}}, {'is_past': True, 'title': 'Quality rater', 'person': {'first_name': 'Roberto', 'last_name': 'Chibbaro', 'permalink': 'roberto-chibbaro'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sadik', 'last_name': 'Kapadia', 'permalink': 'sadik-kapadia'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Shaun', 'last_name': 'Seo', 'permalink': 'shaun-seo'}}, {'is_past': True, 'title': 'Product Manager and Engineer', 'person': {'first_name': 'Jamie', 'last_name': 'Davidson', 'permalink': 'jamie-davidson-2'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Ying', 'last_name': 'Fu', 'permalink': 'ying-fu'}}, {'is_past': True, 'title': 'Various Senior Finance Management Roles', 'person': {'first_name': 'Pinakin', 'last_name': 'Sheth', 'permalink': 'pinakin-sheth'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Gareth Paul', 'last_name': 'Jones', 'permalink': 'gareth-paul-jones'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Francis', 'last_name': 'Pedraza', 'permalink': 'francis-pedraza'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': 'Strategy Analyst', 'person': {'first_name': 'Jamie', 'last_name': 'Shah', 'permalink': 'jamie-shah'}}, {'is_past': True, 'title': 'APMM', 'person': {'first_name': 'Chris', 'last_name': 'Sell', 'permalink': 'chris-sell'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Jack', 'last_name': 'Russell', 'permalink': 'jack-russell'}}, {'is_past': True, 'title': 'Global Marketing Director', 'person': {'first_name': 'Patrick', 'last_name': 'Mork', 'permalink': 'patrick-mork'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Oliver', 'last_name': 'Deighton', 'permalink': 'oliver-deighton'}}, {'is_past': True, 'title': 'Bandaid SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Ex-Product Manager', 'person': {'first_name': 'Pierre', 'last_name': 'Lebeau', 'permalink': 'pierre-lebeau'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Byttow', 'permalink': 'david-byttow'}}, {'is_past': True, 'title': 'Director of Emerging Business', 'person': {'first_name': 'Emily', 'last_name': 'White', 'permalink': 'emily-white'}}, {'is_past': True, 'title': 'Member, Google Docs Team', 'person': {'first_name': 'Anthony', 'last_name': 'Glenning', 'permalink': 'anthony-glenning'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Matt', 'last_name': 'Mohebbi', 'permalink': 'matt-mohebbi'}}, {'is_past': True, 'title': 'Product', 'person': {'first_name': 'Henry', 'last_name': 'Modisett', 'permalink': 'henry-modisett'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Luanne', 'last_name': 'Calvert', 'permalink': 'luanne-calvert'}}], 'competitions': [{'competitor': {'name': 'Technorati', 'permalink': 'technorati'}}, {'competitor': {'name': 'IceRocket', 'permalink': 'icerocket'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Aductions', 'permalink': 'aductions'}}, {'competitor': {'name': 'Zoho', 'permalink': 'zoho'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Danger', 'permalink': 'danger'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'SlideRocket', 'permalink': 'sliderocket'}}, {'competitor': {'name': 'EveryScape', 'permalink': 'everyscape'}}, {'competitor': {'name': 'Jivox', 'permalink': 'jivox'}}, {'competitor': {'name': 'Tencent', 'permalink': 'tencent'}}, {'competitor': {'name': 'PriorSmart', 'permalink': 'priorsmart'}}, {'competitor': {'name': 'Hurdan', 'permalink': 'better-searcher'}}, {'competitor': {'name': 'Powerset', 'permalink': 'powerset'}}, {'competitor': {'name': 'Baidu', 'permalink': 'baidu'}}, {'competitor': {'name': 'Zenbe', 'permalink': 'zenbe'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'Nordic River', 'permalink': 'textflow'}}, {'competitor': {'name': 'Pixsta', 'permalink': 'pixsta'}}, {'competitor': {'name': 'JellyCloud', 'permalink': 'jellycloud'}}, {'competitor': {'name': 'Yandex', 'permalink': 'yandex'}}, {'competitor': {'name': 'Thinkfree', 'permalink': 'thinkfree'}}, {'competitor': {'name': 'Twitoosearch', 'permalink': 'twitoosearch'}}, {'competitor': {'name': 'Discovery Mining', 'permalink': 'discovery-mining'}}, {'competitor': {'name': 'AdECN', 'permalink': 'adecn'}}, {'competitor': {'name': 'Kedrix', 'permalink': 'kedrix'}}, {'competitor': {'name': 'fefoo', 'permalink': 'fefoo'}}, {'competitor': {'name': '280 North', 'permalink': '280-north'}}, {'competitor': {'name': 'Collecta', 'permalink': 'collecta'}}, {'competitor': {'name': 'Rocket Fuel', 'permalink': 'rocket-fuel'}}, {'competitor': {'name': 'SachaWorld', 'permalink': 'sachaworld'}}, {'competitor': {'name': 'HipChat', 'permalink': 'hipchat'}}, {'competitor': {'name': 'Mail.com Media Corporation', 'permalink': 'mail-com-media-corporation'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Rockmelt', 'permalink': 'rockmelt'}}, {'competitor': {'name': 'Ness Computing', 'permalink': 'ness-computing'}}, {'competitor': {'name': 'just.me', 'permalink': 'justme'}}, {'competitor': {'name': 'Twiddle', 'permalink': 'twiddle'}}, {'competitor': {'name': 'Cybozu, Inc.', 'permalink': 'cybozu-inc'}}, {'competitor': {'name': 'MapQuest', 'permalink': 'mapquest'}}], 'providerships': [{'title': 'Public Relations (APAC)', 'is_past': False, 'provider': {'name': 'The Hoffman Agency', 'permalink': 'the-hoffman-agency'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Simple IT', 'permalink': 'simple-it'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Baker & McKenzie', 'permalink': 'baker-mckenzie'}}, {'title': '', 'is_past': False, 'provider': {'name': 'btrax', 'permalink': 'btrax'}}], 'total_money_raised': '$555M', 'funding_rounds': [{'id': 380, 'round_code': 'angel', 'source_url': 'http://www.google.com/corporate/history.html', 'source_description': '', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 1998, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Andy', 'last_name': 'Bechtolsheim', 'permalink': 'andy-bechtolsheim'}}]}, {'id': 381, 'round_code': 'a', 'source_url': 'http://www.google.com/corporate/history.html', 'source_description': '', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 6, 'funded_day': 7, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 59722, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1288776/000128877610000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 530082792, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 8, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://23andme.com/press.html', 'source_description': '', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'company': {'name': '23andMe', 'permalink': '23andme'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.teslamotors.com/media/press_room.php?id=54', 'source_description': '', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Tesla Motors', 'permalink': 'tesla-motors'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.lightreading.com/document.asp?doc_id=88186', 'source_description': 'LightReading', 'raised_amount': 18000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 6, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://english.martinvarsavsky.net/fon/fon-has-raised-another-10-million-euros-to-grow-its-wifi-community-around-the-world.html', 'source_description': \"Founder's Blog\", 'raised_amount': 10000000, 'raised_currency_code': 'EUR', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 7, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.marketwatch.com/News/Story/Story.aspx?guid={BDC943CA-1936-4F19-9FDE-1DDC4D648178}', 'source_description': 'MarketWatch', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 6, 'funded_day': 18, 'company': {'name': 'Baidu', 'permalink': 'baidu'}}}, {'funding_round': {'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 6000000, 'raised_currency_code': 'EUR', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 10, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'post_ipo_equity', 'source_url': 'http://www.google.com/press/pressrel/twaol_expanded.html', 'source_description': \"Time Warner's AOL and Google to Expand Strategic Alliance \", 'raised_amount': 1000000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'AOL', 'permalink': 'aol'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://news.cnet.com/Google-invests-in-power-line-broadband/2100-1036_3-5777917.html', 'source_description': 'Google invests in power-line broadband', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 7, 'funded_day': 6, 'company': {'name': 'Current Communications Group', 'permalink': 'current-communications-group'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.nytimes.com/2007/01/05/technology/06googlecnd.html', 'source_description': 'Google Acquires Stake in Chinese Web Site', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 5, 'company': {'name': 'kankan', 'permalink': 'kankan'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2006/12/01/google-invests-less-than-1m-in-meraki-for-indoor-wifi/', 'source_description': 'http://venturebeat.com/2006/11/14/phonezoo-offers-free-extensive-ringtone-download-service/', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'Meraki', 'permalink': 'meraki'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2009/06/18/all-in-the-family-sergey-brin-loans-23andme-10-million-and-google-ponies-up-26-million/', 'source_description': 'All In the Family: Sergey Brin Loans 23andme $10 Million And Google Ponies Up $2.6 Million', 'raised_amount': 12600000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 18, 'company': {'name': '23andMe', 'permalink': '23andme'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://green.venturebeat.com/2008/08/23/makani-power-takes-in-5m-for-high-altitude-wind-energy/', 'source_description': 'Makani Power takes in $5M for high-altitude wind energy', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Makani Power', 'permalink': 'makani-power'}}}, {'funding_round': {'round_code': 'grant', 'source_url': 'http://venturebeat.com/2008/08/28/android-developer-challenge-i-winners-nary-a-big-name-in-sight', 'source_description': 'Android Developer Challenge 1 Winners ', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 4, 'company': {'name': 'Life360', 'permalink': 'life360'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.actacell.com/pressrelease', 'source_description': 'ActaCell Closes $5.8 Million Series A Financing; Investment Consortium Led By DFJ Mercury Includes Google.org, Applied Ventures and Good Energies ', 'raised_amount': 5800000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 22, 'company': {'name': 'Actacell', 'permalink': 'actacell'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://earth2tech.com/2008/07/25/aptera-raises-24m-for-electric-car-production/', 'source_description': 'Aptera Raises $24M for Electric Car Production', 'raised_amount': 24000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 25, 'company': {'name': 'Aptera', 'permalink': 'aptera'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.ubiquisys.com/ubiquisys3/pressreleases.php?id=42', 'source_description': ' Ubiquisys Secures B Round Funding for Breakthrough Femtocell Technology', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 20, 'company': {'name': 'Ubiquisys', 'permalink': 'ubiquisys'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://venturebeat.com/2007/11/07/navigenics-raises-more-than-25m-for-personal-genetics/', 'source_description': 'Navigenics raises more than $25M for personal genetics', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 7, 'company': {'name': 'Navigenics', 'permalink': 'navigenics'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/02/trialpay_backed.html', 'source_description': 'TrialPay Backed By Investors of Skype, Google, and Akamai For Payment Platform', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 20, 'company': {'name': 'TrialPay', 'permalink': 'trialpay'}}}, {'funding_round': {'round_code': 'post_ipo_equity', 'source_url': 'http://www.techcrunch.com/2008/05/06/32-billion-wimax-deal-goes-through-take-cover/', 'source_description': '$3.2 Billion WiMax Deal Goes Through. Take Cover.', 'raised_amount': 3200000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 6, 'company': {'name': 'Clearwire', 'permalink': 'clearwire'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.nytimes.com/2010/07/25/business/25zynga.html?_r=1&partner=rss&emc=rss&pagewanted=all', 'source_description': '', 'raised_amount': 300000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 14, 'company': {'name': 'Zynga', 'permalink': 'zynga'}}}, {'funding_round': {'round_code': 'grant', 'source_url': 'http://www.naturebridge.org/news/google-holiday-giving-includes-4-million-naturebridge-environmental-education', 'source_description': 'Google Holiday Giving Includes $4 Million to NatureBridge for Environmental Education', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 4, 'company': {'name': 'NatureBridge', 'permalink': 'naturebridge'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2011/04/11/brightsource-ivanpah-168-million-goog/', 'source_description': 'BrightSource Nabs $168 Million From Google To Develop Ivanpah Solar Power Plant In The Mojave', 'raised_amount': 168000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 11, 'company': {'name': 'BrightSource Energy', 'permalink': 'brightsource-energy'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/06/22/google-invests-102-million-more-into-californias-alta-wind-energy-center/', 'source_description': 'Google Invests $102 Million More Into California’s Alta Wind Energy Center', 'raised_amount': 102000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 22, 'company': {'name': 'Alta Wind Energy Center', 'permalink': 'alta-wind-energy-center'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://spacenews.com/satellite_telecom/101129-financing-o3b-constellation-closer.html', 'source_description': 'With $1.2B in Financing, O3b Constellation Closer to Reality', 'raised_amount': 410000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 30, 'company': {'name': 'O3b Networks', 'permalink': 'o3b-networks'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/05/21/machinima-youtube-35m/', 'source_description': 'Machinima Gets $35M In Funding, Led By Google', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 21, 'company': {'name': 'Machinima', 'permalink': 'machinima'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.bandwidthblog.com/2012/04/18/talking-to-google-umbono-funded-pashash-co-founder-faheem-kajee/', 'source_description': 'Talking to Google Umbono funded Pashash co-founder Faheem Kajee', 'raised_amount': 50000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Foundshopping.com', 'permalink': 'found-3'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2013/01/edf-renewable-energy-receives-approximately-200m-equity-investment-google.html', 'source_description': 'EDF Renewable Energy Receives Approximately $200M Equity Investment from Google', 'raised_amount': 200000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 10, 'company': {'name': 'EDF Renewable Energy', 'permalink': 'edf-renewable-energy'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://allthingsd.com/20130116/exclusive-surveymonkey-raises-850-million-in-debt-and-equity-for-tender-offer-including-new-investment-from-googles-new-late-stage-unit/', 'source_description': ' Exclusive: SurveyMonkey Raises $850 Million in Debt and Equity for Tender Offer — Including New Investment From Google’s New Late-Stage Unit', 'raised_amount': 450000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 16, 'company': {'name': 'SurveyMonkey', 'permalink': 'surveymonkey'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/05/01/readying-for-an-ipo-peer-to-peer-lending-marketplace-lending-club-raises-125m-from-google-and-others-at-1-6b-valuation/', 'source_description': 'Readying For An IPO, Peer-To-Peer Lending Marketplace Lending Club Raises $125M From Google And Others At $1.6B Valuation', 'raised_amount': 125000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Lending Club', 'permalink': 'lendingclub'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/12/retrofit-raises-additional-5m-financing.html', 'source_description': ' \\tRetrofit Raises Additional $5M in Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 20, 'company': {'name': 'Retrofit', 'permalink': 'retrofit'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 60000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/02/deal-is-confirmed-google-acquired-grandcentral/', 'source_description': 'Deal is Confirmed: Google Acquired GrandCentral', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'GrandCentral', 'permalink': 'grandcentral'}}, {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2007/05/23/100-million-payday-for-feedburner-this-deal-is-confirmed/', 'source_description': '$100 Million Payday For Feedburner – This Deal Is Confirmed', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'FeedBurner', 'permalink': 'feedburner'}}, {'price_amount': 102000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.clickz.com/showPage.html?page=3577791', 'source_description': 'Google Buys Into Radio', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'dMarc Broadcasting', 'permalink': 'dmarcbroadcasting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.infoworld.com/article/07/05/29/Google-buys-into-security_1.html', 'source_description': 'Google buys into security, acquires GreenBorder', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 29, 'company': {'name': 'GreenBorder', 'permalink': 'greenborder'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/10/09/google-takes-jaiku-to-the-altar/', 'source_description': 'Google buys Jaiku, Twitter losing ground', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 9, 'company': {'name': 'Jaiku', 'permalink': 'jaiku'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2006/10/31/google-acquires-wiki-company-jotspot/', 'source_description': 'Google Acquires Wiki Collaboration Company Jotspot', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.technewsworld.com/story/49851.html', 'source_description': 'Google Acquires Orion Search Algorithm', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 9, 'company': {'name': 'Orion', 'permalink': 'orion'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/List_of_Google_acquisitions', 'source_description': 'Wikipedia', 'acquired_year': 2003, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Neotonic Software', 'permalink': 'neotonic-software'}}, {'price_amount': 3100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://googleblog.blogspot.com/2008/03/weve-officially-acquired-doubleclick.html', 'source_description': \"We've officially acquired DoubleClick\", 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 11, 'company': {'name': 'DoubleClick', 'permalink': 'doubleclick'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.gizmodo.com.au/2011/08/googles-16-biggest-acquisitions-so-far-and-what-happened-to-them/', 'source_description': 'Android mobile platform, “up to” $US50 million (estimated)', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'Android', 'permalink': 'android'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2006/02/14/google-buys-measuremap/', 'source_description': 'Google Buys Measure Map', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 14, 'company': {'name': 'Measure Map', 'permalink': 'measure-map'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2007/05/31/google-to-buy-geo-tagging-site-panoramio/', 'source_description': ' Google to Buy Geo-Tagging Site Panoramio', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Panoramio', 'permalink': 'panoramio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 27, 'company': {'name': 'Keyhole.co', 'permalink': 'keyhole-co'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blog.quintura.com/2008/05/22/mangrove-capital-bets-on-russian-in-game-advertising/', 'source_description': 'Google acquired in-game advertising company Adscape for $23 million in February 2007.', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Adscape', 'permalink': 'adscape'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2007/06/19/google-acquires-zenter-to-fill-out-coming-powerpoint-application/', 'source_description': 'Google Acquires Zenter; Y Combinator Gets Another Payday', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Zenter', 'permalink': 'zenter'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.google.com/press/pressrel/pressrelease48.html', 'source_description': 'Google Acquires Usenet Discussion Service and Significant Assets from Deja.com', 'acquired_year': 2001, 'acquired_month': 2, 'acquired_day': 12, 'company': {'name': 'Deja', 'permalink': 'deja'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2001_Sept_20/ai_78429980', 'source_description': \"Google Acquires Technology Assets of Outride Inc.; Transaction Complements Google's Technology Development To Provide Search Results with Greater Relevance\", 'acquired_year': 2001, 'acquired_month': 9, 'acquired_day': 20, 'company': {'name': 'Outride', 'permalink': 'outride'}}, {'price_amount': 102000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://newsbreaks.infotoday.com/nbreader.asp?ArticleID=16713', 'source_description': 'Google Buys Applied Semantics ', 'acquired_year': 2003, 'acquired_month': 4, 'acquired_day': 23, 'company': {'name': 'Applied Semantics', 'permalink': 'applied-semantics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2003_Sept_30/ai_108316401', 'source_description': 'Google Acquires Kaltix Corp.; New Technologies and Engineering Team Complement Google Search Engine', 'acquired_year': 2003, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Kaltix', 'permalink': 'kaltix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.webpronews.com/topnews/2003/11/05/google-acquires-sprinks', 'source_description': 'Google Acquires Sprinks', 'acquired_year': 2003, 'acquired_month': 11, 'acquired_day': 5, 'company': {'name': 'Sprinks', 'permalink': 'sprinks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 10, 'acquired_day': 10, 'company': {'name': 'Genius Labs', 'permalink': 'genius-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.webpronews.com/topnews/2004/05/10/google-quietly-acquires-ignite-logic', 'source_description': 'Google Quietly Acquires Ignite Logic', 'acquired_year': 2004, 'acquired_month': 5, 'acquired_day': 10, 'company': {'name': 'Ignite Logic', 'permalink': 'ignite-logic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.clickz.com/showPage.html?page=3380451', 'source_description': 'Google Acquires Picasa', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 13, 'company': {'name': 'Picasa', 'permalink': 'picasa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.siliconbeat.com/entries/2005/03/30/google_acquires_traffic_info_startup_zipdash.html', 'source_description': 'Google acquires traffic info start-up Zipdash', 'acquired_year': 2004, 'acquired_month': 9, 'acquired_day': 10, 'company': {'name': 'ZipDash', 'permalink': 'zipdash'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blogs.smh.com.au/mashup/archives/010257.html', 'source_description': 'Google innovations, made in Australia', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 9, 'company': {'name': 'Where2', 'permalink': 'where2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.nytimes.com/2005/03/29/technology/29urchin.html', 'source_description': 'Google Acquires Urchin Software', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 29, 'company': {'name': 'Urchin Software', 'permalink': 'urchin-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.informationweek.com/news/management/showArticle.jhtml?articleID=163101669', 'source_description': 'Google Acquires Mobile Social-Networking Company Dodgeball.com', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 11, 'company': {'name': 'Dodgeball', 'permalink': 'dodgeball'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/8301-10784_3-6024842-7.html', 'source_description': 'Google buys Canadian wireless-software company', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'Reqwireless', 'permalink': 'reqwireless'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://localtechwire.com/business/local_tech_wire/news/story/1126258/', 'source_description': 'Google Comes Out of the Shadows in N.C.: Search Engine Giant Has Software Operation in Chapel Hill', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Skia', 'permalink': 'skia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.google.com/press/pressrel/latam_office.html', 'source_description': 'Google Continues International Expansion, Opens Offices in Latin America', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 17, 'company': {'name': 'Akwan Information Technologies', 'permalink': 'akwan-information-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://digg.com/software/Google_acquires_Widget_Engine', 'source_description': 'Google acquires Widget Engine', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 27, 'company': {'name': 'Phatbits', 'permalink': 'phatbits'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'allPAY', 'permalink': 'allpay'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'bruNET', 'permalink': 'brunet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.infoworld.com/article/06/03/10/76316_HNgooglebuysupstartle_1.html', 'source_description': 'Google acquires online word processing app provider', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 9, 'company': {'name': 'Upstartle', 'permalink': 'upstartle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/Google-acquires-Last-Software/2100-1030_3-6049511.html', 'source_description': 'Google has acquired @Last Software, a 3D-design toolmaker and developer of the SketchUp software, the start-up announced Tuesday.', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': '@Last Software', 'permalink': 'last-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Pyra Labs', 'permalink': 'pyra-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businessreviewonline.com/os/archives/2006/06/google_acquires.html', 'source_description': 'Google acquires XL2Web, launches Google Spreadsheets', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': '2Web Technologies', 'permalink': '2web-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.seobythesea.com/?p=267', 'source_description': 'Google Acquires Neven Vision', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Neven Vision', 'permalink': 'neven-vision'}}, {'price_amount': 28000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://googlesystem.blogspot.com/2006/12/google-buys-endoxon.html', 'source_description': 'Google Buys Endoxon', 'acquired_year': 2006, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Endoxon', 'permalink': 'endoxon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://infosthetics.com/archives/2007/03/google_acquires_trendalyzer_gapminder.html', 'source_description': 'Google acquires Trendalyzer', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Trendalyzer', 'permalink': 'trendalyzer'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/04/17/googles-office-suite-complete-google-powerpoint-confirmed/', 'source_description': \"Google's Office Suite Complete: Google “PowerPointâ€\\x9d Confirmed\", 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 17, 'company': {'name': 'Tonic Systems', 'permalink': 'tonic-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/04/20/google-acquires-marratech-gets-into-webex-territory/', 'source_description': 'Google Acquires Marratech; Gets Into WebEx Territory', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Marratech', 'permalink': 'marratech'}}, {'price_amount': 20300000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032502201.html', 'source_description': 'Proxy Watch: Google: $1 Million Stake In Comsenz; $20 Million For Peakstream; Salaries; Human Rights', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'PeakStream', 'permalink': 'peakstream'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/21/google-acquires-imageamerica/', 'source_description': 'Google Acquires ImageAmerica', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'Image America, Inc.', 'permalink': 'image-america-inc'}}, {'price_amount': 625000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'source_description': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'Postini', 'permalink': 'postini'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/09/27/google-acquires-mobile-platform-operator-zingku/', 'source_description': 'Google Acquires Mobile Platform Operator Zingku', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'Zingku', 'permalink': 'zingku'}}, {'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/07/30/google-acquires-omnisio-to-spice-up-youtube/', 'source_description': 'Google Acquires Omnisio To Spice Up YouTube', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 30, 'company': {'name': 'Omnisio', 'permalink': 'omnisio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/09/12/google-buys-foothold-in-korea-with-acquisition-of-blog-platform-tnc/', 'source_description': 'TechCrunch', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'TNC', 'permalink': 'tnc'}}, {'price_amount': 1650000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2006/10/09/google-has-acquired-youtube/', 'source_description': 'Google has acquired YouTube', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'YouTube', 'permalink': 'youtube'}}, {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.washingtonpost.com/wp-dyn/content/article/2009/08/05/AR2009080501579.html', 'source_description': 'Google To Acquire Video Compression Developer On2 For $106.5 Million', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 19, 'company': {'name': 'On2 Technologies', 'permalink': 'on2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2009/09/16/google-acquires-recaptcha-to-power-scanning-for-google-books-and-google-news/', 'source_description': 'Google Acquires reCaptcha To Power Scanning For Google Books And Google News', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'reCAPTCHA', 'permalink': 'recaptcha'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/8301-13577_3-10040228-36.html', 'source_description': 'Google buys Korean blog platform TNC', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'TNC', 'permalink': 'tnc'}}, {'price_amount': 750000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2009/11/09/google-acquires-admob/', 'source_description': 'Google Acquires AdMob For $750 Million', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'AdMob', 'permalink': 'admob'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/09/exclusive-google-has-acquired-gizmo5/', 'source_description': 'Exclusive: Google Has Acquired Gizmo5', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://googleblog.blogspot.com/2009/11/displaying-best-display-ad-with.html', 'source_description': 'Google', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 23, 'company': {'name': 'Teracent', 'permalink': 'teracent'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/12/04/google-acquires-etherpad/', 'source_description': 'Confirmed: Google Acquires AppJet, The Maker Of EtherPad', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 4, 'company': {'name': 'AppJet', 'permalink': 'appjet'}}, {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/12/19/google-to-acquire-docverse-office-war-heats-up/', 'source_description': 'Google To Acquire DocVerse; Office War Heats Up', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 5, 'company': {'name': 'DocVerse', 'permalink': 'docverse'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/02/11/google-acquires-aardvark-for-50-million/', 'source_description': 'Google Acquires Aardvark For $50 million', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 11, 'company': {'name': 'Aardvark', 'permalink': 'aardvark'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/02/17/remail-google/', 'source_description': 'Venturebeat', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 17, 'company': {'name': 'reMail', 'permalink': 'remail'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-google-buys-photo-editing-site-picnik/', 'source_description': 'Google Buys Photo-Editing Site Picnik ', 'acquired_year': 2010, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Picnik', 'permalink': 'picnik'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/04/02/google-acquires-online-video-hosting-platform-episodic/', 'source_description': 'Google Acquires Online Video Hosting Platform Episodic ', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 2, 'company': {'name': 'Episodic', 'permalink': 'episodic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://deals.venturebeat.com/2010/04/12/google-acquires-uk-mobile-visual-search-company-plink-to-bolster-goggles/', 'source_description': 'Google acquires UK mobile visual search company Plink to bolster Goggles', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Plink Solutions', 'permalink': 'plink-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/04/20/google-agnilux-apple/#ixzz0lhB4jfk6', 'source_description': 'Battle Cry? Google Buys Stealth Company Founded By Guys That Spurned Apple ', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Agnilux', 'permalink': 'agnilux'}}, {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/04/27/labpixies-google-25-million/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 27, 'company': {'name': 'LabPixies', 'permalink': 'labpixies'}}, {'price_amount': 35000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/02/bumptop-possible-google-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'BumpTop', 'permalink': 'bumptop'}}, {'price_amount': 68200000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/05/18/google-to-buy-global-ip-solutions-for-68-2-million-in-cash/', 'source_description': 'Google To Buy Global IP Solutions For $68.2 Million In Cash', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Global IP Solutions', 'permalink': 'global-ip-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/20/google-buys-simplify-media-to-power-music-syncing-for-new-itunes-competitor/', 'source_description': 'Google Buys Simplify Media To Power Music Syncing For New iTunes Competitor', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'Simplify Media', 'permalink': 'simplify-media'}}, {'price_amount': 80000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://mediamemo.allthingsd.com/20100609/googles-final-price-tag-for-invite-media-81-million/', 'source_description': 'Google Paid $81 Million for Invite Media', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 2, 'company': {'name': 'Invite Media', 'permalink': 'invitemedia'}}, {'price_amount': 700000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/04/13/after-agreeing-to-doj-settlement-google-closes-700m-acquisition-of-ita-software/', 'source_description': 'After Agreeing To DOJ Settlement, Google Closes $700M Acquisition Of ITA Software', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'ITA Software', 'permalink': 'ita-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/16/google-acquires-metaweb-to-make-search-smarter/', 'source_description': 'Google Acquires Metaweb To Make Search Smarter', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Metaweb Technologies', 'permalink': 'metawebtechnologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/04/google-instantiations/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 4, 'company': {'name': 'Instantiations', 'permalink': 'instantiations'}}, {'price_amount': 182000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/06/google-confirms-slide-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 6, 'company': {'name': 'Slide', 'permalink': 'slide'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/09/google-aquires-jambool-social-gold/', 'source_description': \"Another Piece To Google's Social Puzzle: To Acquire Jambool For $70 Million\", 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Jambool', 'permalink': 'jambool'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/20/its-official-google-acquires-like-com/', 'source_description': \"It's Official: Google Acquires Like.com\", 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 20, 'company': {'name': 'Like.com', 'permalink': 'like'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/27/google-buys-angstro-as-it-furthers-social-strategy/', 'source_description': 'Google Buys Angstro As It Furthers Social Strategy', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 27, 'company': {'name': 'Angstro', 'permalink': 'angstro'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.insidesocialgames.com/2010/08/30/google-buys-mobile-social-game-developer-socialdeck/', 'source_description': 'Google Buys Mobile Social Game Developer SocialDeck', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 30, 'company': {'name': 'SocialDeck', 'permalink': 'socialdeck'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.haaretz.com/print-edition/business/google-buying-second-israeli-startup-quiksee-1.313483', 'source_description': 'Haaretz', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'MentorWave Technologies', 'permalink': 'mentorwave-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-confirmed-google-buys-video-tour-startup-quiksee/', 'source_description': ' Confirmed: Google Buys Video Tour Startup Quiksee ', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 14, 'company': {'name': 'Quiksee', 'permalink': 'quiksee'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/28/google-plannr/', 'source_description': 'Google Buys Schedule Management Startup Plannr', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 28, 'company': {'name': 'Plannr', 'permalink': 'plannr'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/10/01/google-acquires-impressive-touchscreen-keyboard-startup-blindtype/', 'source_description': 'Google Acquires Impressive Touchscreen Keyboard Startup BlindType', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 1, 'company': {'name': 'BlindType', 'permalink': 'blindtype'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.freebase.com/2010/07/16/metaweb-joins-google/', 'source_description': 'Metaweb joins Google', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Freebase', 'permalink': 'freebase'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eyefortravel.com/news/north-america/google-acquires-ruba-com', 'source_description': 'Google acquires Ruba.com', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Ruba', 'permalink': 'ruba'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/03/google-acquires-phonetic-arts/', 'source_description': 'Google Acquires Phonetic Arts To Make Robo-Voices Sound Human', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Phonetic Arts', 'permalink': 'phonetic-arts'}}, {'price_amount': 160000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/12/03/google-buys-on-demand-video-startup-widevine-to-bolster-its-own-tv-efforts/', 'source_description': 'Google Buys On Demand Video Service Widevine To Bolster Its Own TV Efforts', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Widevine Technologies', 'permalink': 'widevine'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.the451group.com/techdeals/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 13, 'company': {'name': 'Zetawire', 'permalink': 'zetawire'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/12/google-acquires-ebook-technologies/', 'source_description': 'Google Acquires eBook Technologies', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 12, 'company': {'name': 'eBook Technologies', 'permalink': 'ebook-technologies'}}, {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/25/google-to-acquire-fflick-for-10-million/', 'source_description': 'Google To Acquire fflick For $10 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'fflick', 'permalink': 'fflick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/25/google-buys-voice-messaging-startup-saynow/', 'source_description': 'Google Buys Voice Messaging Application Developer SayNow', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'SayNow', 'permalink': 'saynow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/01/google-buys-security-analytics-startup-zynamics/', 'source_description': 'Google Buys Security Analytics Software Developer Zynamics', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'zynamics', 'permalink': 'zynamics'}}, {'price_amount': 37700000, 'price_currency_code': 'GBP', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/07/beat-that-google-acquires-the-uks-beatthatquote-com-for-37-7m/', 'source_description': \"Beat That! Google Acquires The UK's BeatThatQuote.com For £37.7M\", 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 7, 'company': {'name': 'BeatThatQuote.com', 'permalink': 'beatthatquote-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/08/google-buys-mobile-entertainment-platform-pushlife/', 'source_description': 'Google Buys Mobile Music And Entertainment Platform PushLife', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 8, 'company': {'name': 'PushLife', 'permalink': 'pushlife'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/25/google-acquires-talkbin-a-feedback-platform-for-businesses-thats-only-five-months-old/', 'source_description': \"Google Acquires TalkBin, A Feedback Platform For Businesses That's Only Five Months Old\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'TalkBin', 'permalink': 'talkbin'}}, {'price_amount': 4900000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/05/20/google-spends-4-9-million-on-modu-patent-portfolio/', 'source_description': 'Google Spends $4.9 Million On Modu Patent Portfolio', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'modu', 'permalink': 'modu'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/03/google-acquires-postrank-an-analytics-service-for-the-social-web/', 'source_description': 'Google Acquires PostRank, An Analytics Service For The Social Web', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 3, 'company': {'name': 'PostRank', 'permalink': 'aiderss'}}, {'price_amount': 400000000, 'price_currency_code': 'CAD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/09/google-acquires-admeld-for-400-million/', 'source_description': '', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Admeld', 'permalink': 'admeld'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/google-sage-tv-2011-6', 'source_description': 'Google Acquires Slingbox-Style Tech Company Sage TV', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 19, 'company': {'name': 'SageTV', 'permalink': 'sagetv'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/11/google-confirms-that-it-has-acquired-digital-loyalty-startup-punchd/', 'source_description': 'Google Confirms That It Has Acquired Digital Loyalty Startup Punchd', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 11, 'company': {'name': 'Punchd', 'permalink': 'punchd'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/google-makes-its-first-aquisition-and-buys-social-group-startup-fridge-2011-7', 'source_description': 'Google+ Makes Its First Acquisition And Buys Social Group Startup Fridge', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 21, 'company': {'name': 'Fridge', 'permalink': 'the-fridge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/22/google-acquires-facial-recognition-software-company-pittpatt/', 'source_description': 'Google Acquires Facial Recognition Software Company PittPatt', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'PittPatt', 'permalink': 'pittpatt'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': '', 'source_description': 'http://techcrunch.com/2011/08/01/google-scoops-up-daily-deal-aggregator-the-dealmap/', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'The Dealmap', 'permalink': 'the-dealmap'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/05/23/google-acquires-kayak-for-consumer-electronics-sparkbuy/', 'source_description': \"Google Acquires 'Kayak For Consumer Electronics' Sparkbuy\", 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 23, 'company': {'name': 'Sparkbuy', 'permalink': 'sparkbuy'}}, {'price_amount': 12500000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/05/22/google-closes-acquisition-of-motorola-woodside-to-lead-page-focuses-on-mobile-announcing-deal/', 'source_description': 'Google Closes Acquisition Of Motorola: Woodside To Lead; Page Pushes Mobile Aspect', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 22, 'company': {'name': 'Motorola Mobility', 'permalink': 'motorola-mobility'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/02/google-zave-networks/', 'source_description': 'Google Acquires Digital Coupons/Incentives Platform Zave Networks To Bulk Up Commerce', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Zave Networks', 'permalink': 'zave-networks'}}, {'price_amount': 151000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/10/26/report-puts-googles-zagat-purchase-at-151-million/', 'source_description': \"Report Puts Google's Zagat Purchase At $151 Million\", 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 26, 'company': {'name': 'Zagat', 'permalink': 'zagat'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/19/google-buys-german-groupon-clone-dailydeal/', 'source_description': 'Google Buys German Groupon Clone DailyDeal', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 19, 'company': {'name': 'DailyDeal', 'permalink': 'dailydeal'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/10/10/google-acquires-socialgrapple/', 'source_description': 'Google acquires social analytics startup SocialGrapple', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 10, 'company': {'name': 'SocialGrapple', 'permalink': 'socialgrapple'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.privco.com/mergers-acquisitions/google-inc-acquires-katango-november-11th-2011', 'source_description': 'Google Acquires Katango, The Automatic Friend Sorter', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Katango', 'permalink': 'katango'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-google-takes-two-buys-apture-to-enhance-chrome-katango-to-beef-up-googl/', 'source_description': 'Google Takes Two: Buys Apture To Enhance Chrome, Katango To Beef Up Google+ ', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Apture', 'permalink': 'apture'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://online.wsj.com/article/SB10001424052970203501304577088781618116446.html', 'source_description': 'Google Acquires Music Royalty Manager RightsFlow ', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 9, 'company': {'name': 'RightsFlow', 'permalink': 'rightsflow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/03/15/winning-a-bidding-war-with-facebook-google-picks-up-the-entire-milk-team/?grcc=33333Z98', 'source_description': 'Winning A Bidding War With Facebook, Google Picks Up The Milk Product Team', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Milk', 'permalink': 'milk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/02/google-buys-txvia-banking-on-better-payment-tech-and-100m-customers-for-google-wallet/', 'source_description': 'Google Buys TxVia, Banks On Better Payment Technology (And 100M Customers) For Google Wallet', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 2, 'company': {'name': 'TxVia', 'permalink': 'txvia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siliconvalleywire.com/svw/2012/06/mountain-view-based-google-acquires-trust-score-service-kikscore.html', 'source_description': 'Mountain View-Based Google Acquires Trust-Score Service KikScore', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'KikScore', 'permalink': 'kikscore'}}, {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/04/confirmed-google-is-buying-meebo-the-startup-that-turned-chat-into-a-business/', 'source_description': 'Confirmed: Google Is Buying Meebo, The Startup That Turned Chat Into A Business [Updated]', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Meebo', 'permalink': 'meebo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/13/google-acquires-clever-sense-creator-of-local-recommendations-app-alfred/', 'source_description': 'Google Acquires Clever Sense, Creator Of Local Recommendations App Alfred', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': None, 'company': {'name': 'Clever Sense', 'permalink': 'cellixis'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/05/google-acquires-mobile-productivity-company-quickoffice/', 'source_description': 'Google Acquires Mobile Productivity Company Quickoffice', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'Quickoffice', 'permalink': 'quickoffice'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/20/google-acquires-iosmac-email-client-sparrow/', 'source_description': 'Google Acquires iOS/Mac Email Client Sparrow, Apps To Remain Available But Development Stopped', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'Sparrow', 'permalink': 'sparrow'}}, {'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/31/google-acquires-wildfire/', 'source_description': 'Google Acquires Wildfire, Will Now Sell Facebook And Twitter Marketing Services [Update: $350M Price]', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 31, 'company': {'name': 'Wildfire, a division of Google', 'permalink': 'wildfire-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/13/google-acquiring-frommers-travel-brand-more-google-improvements-likely-to-follow/', 'source_description': 'Google Acquiring Frommer’s Travel Brand: Zagat Integration, Google+ Improvements To Follow', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 13, 'company': {'name': \"Frommer's\", 'permalink': 'frommers'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/07/google-acquires-online-virus-malware-and-url-scanner-virustotal/', 'source_description': 'Google Acquires Online Virus, Malware and URL Scanner VirusTotal', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'VirusTotal', 'permalink': 'virustotal'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/17/google-acquires-nik-software-the-company-behind-the-popular-snapseed-photo-editing-app-for-ios/', 'source_description': 'Google Acquires Nik Software, The Company Behind The Popular Snapseed Photo Editing App For iOS', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 17, 'company': {'name': 'Nik Software', 'permalink': 'nik-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/11/28/google-acquires-incentive-targeting-to-power-targeted-coupon-programs/', 'source_description': 'Confirmed: Google Acquires Incentive Targeting To Power Super Targeted, Personalized Coupon Programs', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 28, 'company': {'name': 'Incentive Targeting', 'permalink': 'incentive-targeting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/11/30/google-acquires-waterloo-based-e-commerce-startup-amazon-locker-competitor-and-yc-graduate-bufferbox/', 'source_description': 'Google Acquires Waterloo-Based E-Commerce Startup, Amazon Locker Competitor And YC Graduate BufferBox', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'BufferBox', 'permalink': 'bufferbox'}}, {'price_amount': 125000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/02/06/google-acquires-channel-intelligence-to-boost-product-recommendations-and-e-commer-with-users/', 'source_description': 'Google Acquires Channel Intelligence For $125M To Boost Product Referrals And E-Commerce With Users', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'company': {'name': 'Channel Intelligence', 'permalink': 'channel-intelligence'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/20/google-justspotted/', 'source_description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'JustSpotted', 'permalink': 'justspotted'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/15/google-acquires-web-application-server-talaria-to-enhance-its-cloud-platform/', 'source_description': 'Google Acquires Web Application Server Talaria To Enhance Its Cloud Platform', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 15, 'company': {'name': 'Talaria', 'permalink': 'talaria'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/23/google-buys-wavii-for-north-of-30-million/', 'source_description': 'Google Buys Wavii For North Of $30 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 23, 'company': {'name': 'Wavii', 'permalink': 'wavii'}}, {'price_amount': 1100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/11/its-official-google-buys-waze-giving-a-social-data-boost-to-its-location-and-mapping-business/?utm_source=dlvr.it&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Google Bought Waze For $1.1B, Giving A Social Data Boost To Its Mapping Business', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 11, 'company': {'name': 'Waze', 'permalink': 'waze'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/article/google-acquires-startup-behavio-analyst-blog-cm238247', 'source_description': 'Google Acquires Startup Behavio', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Behavio', 'permalink': 'behavio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/31/google-acquires-wimm-labs/', 'source_description': 'Google Confirms It Has Acquired Android Smartwatch Maker WIMM Labs', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'WIMM Labs', 'permalink': 'wimm-labs'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iphoneincanada.ca/news/google-discontinue-bump-flock-jan-2014/', 'source_description': ' Google to Discontinue Sharing App Bump and Flock on Jan. 31, 2014 ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'Bump Technologies', 'permalink': 'bump-technologies'}}, {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/02/google-acquires-yc-backed-flutter-a-gesture-recognition-technology-startup/', 'source_description': 'Google Acquires YC-Backed Flutter, A Gesture Recognition Technology Startup', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'Flutter', 'permalink': 'flutter-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ft.com/cms/s/2/1ea6fba2-462a-11df-8769-00144feab49a.html#axzz2gO4mC3kT', 'source_description': 'Google buys UK visual search engine', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 10, 'company': {'name': 'Plink Search', 'permalink': 'plink-search'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/google-flexycore/', 'source_description': 'Google Acquires Android Performance Startup FlexyCore For A Reported $23 Million', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'FlexyCore', 'permalink': 'flexycore'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/14/google-buys-boston-dynamics-creator-of-big-dog/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Google Buys Boston Dynamics, Creator Of Big Dog', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 13, 'company': {'name': 'Boston Dynamics', 'permalink': 'boston-dynamics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.androidheadlines.com/2014/01/google-acquires-bitspin-makers-timely-app-purchases-now-free.html?utm_source=dlvr.it&utm_medium=twitter', 'source_description': 'Google Acquires Bitspin, Makers of Timely – All In-App Purchases are Now Free!', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'Bitspin', 'permalink': 'bitspin'}}], 'offices': [{'description': 'Google Headquarters', 'address1': '1600 Amphitheatre Parkway', 'address2': '', 'zip_code': '', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.421972, 'longitude': -122.084143}, {'description': 'Google Ann Arbor', 'address1': '112 S. Main St.', 'address2': '2nd Floor', 'zip_code': '48104', 'city': 'Ann Arbor', 'state_code': 'MI', 'country_code': 'USA', 'latitude': 42.280988, 'longitude': -83.748882}, {'description': 'Google Atlanta', 'address1': '10 10th Street NE', 'address2': 'Suite 600', 'zip_code': '30309', 'city': 'Atlanta', 'state_code': 'GA', 'country_code': 'USA', 'latitude': 33.781466, 'longitude': -84.387519}, {'description': 'Google Austin', 'address1': 'Plaza 7000', 'address2': '7000 North MoPac Expressway, 2nd Floor', 'zip_code': '78731', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.351416, 'longitude': -97.751382}, {'description': 'Google Boulder', 'address1': '2590 Pearl Street', 'address2': 'Suite 100', 'zip_code': '80302', 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.021416, 'longitude': -105.260931}, {'description': 'Google Cambridge', 'address1': '5 Cambridge Center', 'address2': 'Floors 3-6', 'zip_code': '02142', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.36305, 'longitude': -71.087478}, {'description': 'Google Chicago', 'address1': '20 West Kinzie St.', 'address2': '', 'zip_code': '60610', 'city': 'Chicago', 'state_code': 'IL', 'country_code': 'USA', 'latitude': 41.889474, 'longitude': -87.628912}, {'description': 'Google Coppell', 'address1': '701 Canyon Drive', 'address2': 'Suite 120', 'zip_code': '75019', 'city': 'Coppell', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.981465, 'longitude': -97.018196}, {'description': 'Google Dallas', 'address1': '3102 Oak Lawn', 'address2': 'Suite 200', 'zip_code': '75219', 'city': 'Dallas', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.809161, 'longitude': -96.807693}, {'description': 'Google Denver', 'address1': '4600 S. Syracuse St.', 'address2': '8th Floor', 'zip_code': '80237', 'city': 'Denver', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 39.62919, 'longitude': -104.898419}, {'description': 'Google Detroit', 'address1': '114 Willits Street', 'address2': '', 'zip_code': '48009', 'city': 'Birmingham', 'state_code': 'MI', 'country_code': 'USA', 'latitude': 42.547807, 'longitude': -83.215498}, {'description': 'Google Irvine', 'address1': '19540 Jamboree Road', 'address2': '2nd Floor', 'zip_code': '92612', 'city': 'Irvine', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 33.658331, 'longitude': -117.861817}, {'description': 'Google Kirkland', 'address1': 'Central Way Plaza', 'address2': '720 4th Avenue, Ste 400', 'zip_code': '98033', 'city': 'Kirkland', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google New York', 'address1': '76 Ninth Avenue', 'address2': '4th Floor', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.74222, 'longitude': -74.004489}, {'description': 'Google Phoenix', 'address1': '1551 S. Rural Road', 'address2': '2nd floor', 'zip_code': '85281', 'city': 'Tempe', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.411898, 'longitude': -111.926263}, {'description': 'Google Pittsburgh', 'address1': '4720 Forbes Avenue', 'address2': 'Lower Level', 'zip_code': '15213', 'city': 'Pittsburgh', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.444528, 'longitude': -79.946269}, {'description': 'Google San Francisco', 'address1': '345 Spear Street', 'address2': '4th Floor', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.789803, 'longitude': -122.389757}, {'description': 'Google Santa Monica', 'address1': '604 Arizona Avenue', 'address2': '', 'zip_code': '90401', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.019282, 'longitude': -118.494288}, {'description': 'Google Seattle', 'address1': 'Evanston Building', 'address2': '501 N. 34th Street, Suite 300', 'zip_code': '98103', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.675326, 'longitude': -122.351397}, {'description': 'Google Seattle', 'address1': '651 N. 34th St.', 'address2': '', 'zip_code': '98103', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.649701, 'longitude': -122.350592}, {'description': 'Google Washington DC', 'address1': '1101 New York Avenue, N.W.', 'address2': 'Second Floor', 'zip_code': '20005', 'city': 'Washington', 'state_code': 'DC', 'country_code': 'USA', 'latitude': 38.901113, 'longitude': -77.027101}, {'description': 'Google Melbourne', 'address1': 'Rialto South Tower, Level 27', 'address2': '525 Collins Street', 'zip_code': '3000', 'city': 'Melbourne', 'state_code': None, 'country_code': 'AUS', 'latitude': -37.879234, 'longitude': 145.073608}, {'description': 'Google Sydney', 'address1': 'Levels 11 & 18, Tower 1, Darling Park', 'address2': '201 Sussex St.', 'zip_code': '2000', 'city': 'Sydney', 'state_code': None, 'country_code': 'AUS', 'latitude': -34.822723, 'longitude': 138.612396}, {'description': 'Google Beijing', 'address1': 'Tsinghua Science Park Bldg 6', 'address2': 'No. 1 Zhongguancun East Road', 'zip_code': '100084', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Guangzhou', 'address1': 'Tower A, 23/F, Center Plaza', 'address2': '161 Lin he Xi Lu, Tian He District', 'zip_code': '510620', 'city': 'Guangzhou', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Shanghai', 'address1': '16F, Raffles City', 'address2': 'No.268 Xizang Zhong Road, Huangpu District', 'zip_code': '200001', 'city': 'Shanghai', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Hong Kong', 'address1': 'One IFC - 18/F', 'address2': '1 Harbour View Street', 'zip_code': '', 'city': 'Central', 'state_code': None, 'country_code': 'HKG', 'latitude': None, 'longitude': None}, {'description': 'Google Bangalore', 'address1': 'Prestige Sigma, No. 3, 1st Floor', 'address2': 'Vittal Mallya Road (Grant Road)', 'zip_code': '560 001', 'city': 'Bangalore', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Delhi', 'address1': 'Tower C, Level 9', 'address2': 'Building No. 8', 'zip_code': '122002', 'city': 'Gurgaon', 'state_code': None, 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google Delhi (Honeybee)', 'address1': 'No. B1/A6, First Floor', 'address2': 'Mohan Co-operative Industrial Estate Mathura Road', 'zip_code': '110044', 'city': 'New Delhi', 'state_code': None, 'country_code': 'IND', 'latitude': 28.86999, 'longitude': 77.122261}, {'description': 'Google Hyderabad', 'address1': 'BLOCK A, Fourth Floor', 'address2': 'Plot No. 14, Road NO 2', 'zip_code': '500 081', 'city': 'Hyderabad', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Mumbai', 'address1': '264-265 Vasvani Chambers', 'address2': 'Dr Annie Besant Road', 'zip_code': '400 025', 'city': 'Mumbai', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Japan Headquarters', 'address1': '6F Cerulean Tower', 'address2': '26-1 Sakuragaoka-cho', 'zip_code': '150-8512', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}, {'description': 'Google Osaka', 'address1': '9F, Edobori Center Building', 'address2': '2-1-1 Edobori', 'zip_code': '550-0002', 'city': 'Osaka', 'state_code': None, 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google Seoul', 'address1': '22nd Floor, Gangnam Finance Center', 'address2': '737 Yeoksam-dong', 'zip_code': '135 984', 'city': 'Seoul', 'state_code': None, 'country_code': 'PRK', 'latitude': None, 'longitude': None}, {'description': 'Google Singapore', 'address1': 'Level 25 North Tower', 'address2': 'One Raffles Quay', 'zip_code': '048583', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': None, 'longitude': None}, {'description': 'Google Taipei', 'address1': 'Level 73, Taipei 101 Tower', 'address2': '7 Xinyi Road, Sec. 5,', 'zip_code': '110', 'city': 'Taipei', 'state_code': None, 'country_code': 'TWN', 'latitude': None, 'longitude': None}, {'description': 'Google Aarhus', 'address1': 'Aabogade 15', 'address2': '8200 Aarhus N', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'DNK', 'latitude': 56.171882, 'longitude': 10.187799}, {'description': 'Google Copenhagen', 'address1': 'Larsbjornsstraede 3', 'address2': '1454 Copenhagen K.', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'DNK', 'latitude': None, 'longitude': None}, {'description': 'Google Helsinki', 'address1': 'Luna House', 'address2': 'Mannerheimintie 12 B', 'zip_code': '', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': None, 'longitude': None}, {'description': 'Google Paris', 'address1': \"38 avenue de l'Opéra\", 'address2': '', 'zip_code': '75002', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.869606, 'longitude': 2.332749}, {'description': 'Google Hamburg', 'address1': 'ABC-Strasse 19', 'address2': '', 'zip_code': '20354', 'city': 'Hamburg', 'state_code': None, 'country_code': 'DEU', 'latitude': 53.554052, 'longitude': 9.985266}, {'description': 'Google Dublin', 'address1': 'Gordon House', 'address2': 'Barrow Street', 'zip_code': '4', 'city': 'Dublin', 'state_code': None, 'country_code': 'IRL', 'latitude': 53.339914, 'longitude': -6.234424}, {'description': 'Google Italy', 'address1': 'Corso Europa 2', 'address2': '', 'zip_code': '20122', 'city': 'Milan', 'state_code': None, 'country_code': 'ITA', 'latitude': 45.46381, 'longitude': 9.195978}, {'description': 'Google Amsterdam', 'address1': 'Claude Debussylaan 34', 'address2': 'Vinoly Mahler 4', 'zip_code': '1082', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.337495, 'longitude': 4.871464}, {'description': 'Google Oslo', 'address1': 'C.J. Hambros plass 2C', 'address2': '', 'zip_code': 'N-0164', 'city': 'Oslo', 'state_code': None, 'country_code': 'NOR', 'latitude': 59.915848, 'longitude': 10.741047}, {'description': 'Google Trondheim', 'address1': 'Beddingen 10', 'address2': '', 'zip_code': '7014', 'city': 'Trondheim', 'state_code': None, 'country_code': 'NOR', 'latitude': 63.435324, 'longitude': 10.412428}, {'description': 'Google Kraków', 'address1': 'ul. Krupnicza 16', 'address2': '', 'zip_code': '31-123', 'city': 'Kraków', 'state_code': None, 'country_code': 'POL', 'latitude': 50.063281, 'longitude': 19.929806}, {'description': 'Google WrocÅ‚aw', 'address1': 'Bema Plaza, V pietro', 'address2': 'Plac Gen. Jozefa Bema nr 2', 'zip_code': '50-265', 'city': 'Wroclaw', 'state_code': None, 'country_code': 'POL', 'latitude': 51.116574, 'longitude': 17.041942}, {'description': 'Google Moscow', 'address1': '7 Balchug st.', 'address2': '', 'zip_code': '115035', 'city': 'Moscow', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Google St. Petersburg', 'address1': 'Nevsky 25', 'address2': 'Nevsky Prospect 25', 'zip_code': '191186', 'city': 'St. Petersburg', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Google Madrid', 'address1': 'Torre Picasso', 'address2': 'Plaza Pablo Ruiz Picasso 1', 'zip_code': '28020', 'city': 'Madrid', 'state_code': None, 'country_code': 'ESP', 'latitude': None, 'longitude': None}, {'description': 'Google LuleÃ¥ Sweden', 'address1': 'Aurorum 2', 'address2': '', 'zip_code': '977 75', 'city': 'LuleÃ¥', 'state_code': None, 'country_code': 'SWE', 'latitude': 65.617491, 'longitude': 22.126255}, {'description': 'Google Stockholm', 'address1': 'Mäster Samuelsgatan 60', 'address2': '', 'zip_code': '111 21', 'city': 'Stockholm', 'state_code': None, 'country_code': 'SWE', 'latitude': 59.332344, 'longitude': 18.060162}, {'description': 'Google Zürich', 'address1': 'Brandschenkestrasse 110', 'address2': '', 'zip_code': '8002', 'city': 'Zürich', 'state_code': None, 'country_code': 'CHE', 'latitude': 47.36554, 'longitude': 8.524864}, {'description': 'Google London', 'address1': 'Belgrave House', 'address2': '76 Buckingham Palace Road', 'zip_code': 'SW1W 9TQ', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': 'Google Manchester', 'address1': 'Peter House', 'address2': 'Oxford Street', 'zip_code': 'M1 5AN', 'city': 'Manchester', 'state_code': None, 'country_code': 'GBR', 'latitude': 53.473606, 'longitude': -2.250166}, {'description': 'Google Montreal', 'address1': '1000 rue de la Gauchetiere Ouest', 'address2': 'Suite 2449', 'zip_code': 'H3B4W5', 'city': 'Montreal', 'state_code': None, 'country_code': 'CAN', 'latitude': 45.498588, 'longitude': -73.567044}, {'description': 'Google Toronto', 'address1': 'BCE Place, TD Canada Trust Tower', 'address2': '161 Bay Street, 27th Floor', 'zip_code': 'M5J 2S1', 'city': 'Toronto', 'state_code': None, 'country_code': 'CAN', 'latitude': None, 'longitude': None}, {'description': 'Google Waterloo', 'address1': '340 Hagey Blvd', 'address2': '2nd Floor', 'zip_code': 'N2L 6R6', 'city': 'Waterloo', 'state_code': None, 'country_code': 'CAN', 'latitude': 43.474704, 'longitude': -80.546381}, {'description': 'Google Buenos Aires', 'address1': 'Alicia M. De Justo 350, 2º', 'address2': 'Puerto Madero', 'zip_code': 'C1107AAH', 'city': 'Buenos Aires', 'state_code': None, 'country_code': 'ARG', 'latitude': None, 'longitude': None}, {'description': 'Google Sao Paulo', 'address1': 'Av. Brigadeiro Faria Lima', 'address2': 'nº 3900 5th floor, Itaim', 'zip_code': '04538-132', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.590463, 'longitude': -46.681494}, {'description': 'Google Mexico', 'address1': 'Blvd. Manuel Avila Camacho #36', 'address2': 'Torre Esmeralda 2, Piso 12, Lomas de Chapultepec', 'zip_code': '1100', 'city': 'Mexico', 'state_code': None, 'country_code': 'MEX', 'latitude': 19.507519, 'longitude': -99.030156}, {'description': 'Google Haifa', 'address1': 'Building 30, MATAM, Advanced Technology Center', 'address2': 'PO Box 15096', 'zip_code': '31905', 'city': 'Haifa', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}, {'description': 'Google Tel Aviv', 'address1': 'Levinstein Tower', 'address2': '23 Menachem Begin Road', 'zip_code': '66183', 'city': 'Tel-Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}, {'description': 'Google Istanbul', 'address1': 'Kanyon Ofis Binasi Kat. 6', 'address2': 'Buyukdere Cad. No. 185', 'zip_code': '34394', 'city': 'Istanbul', 'state_code': None, 'country_code': 'TUR', 'latitude': None, 'longitude': None}, {'description': 'Google Dubai', 'address1': 'First Floor, Building No 17', 'address2': 'Dubai Internet City', 'zip_code': '1', 'city': 'Dubai', 'state_code': None, 'country_code': 'ARE', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3, 'description': 'More than 4 Billion videos viewed at Google Sites, 37.9% according to comScore', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': 'http://www.comscore.com/press/release.asp?press=2268', 'source_text': None, 'source_description': '11 Billion Videos Viewed Online in the U.S. in April 2008', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 429, 'description': 'Google Sinks $10 Million Into New Geothermal Technologies', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 19, 'source_url': 'http://www.techcrunch.com/2008/08/19/google-sinks-10-million-into-new-geothermal-technologies/', 'source_text': '', 'source_description': 'Google Sinks $10 Million Into New Geothermal Technologies', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 1857, 'description': 'Google sells its stake in AOL back to Time Warner for about 1/4 of what it paid for it in 2006.', 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 27, 'source_url': 'http://www.businessinsider.com/google-sells-aol-stake-back-to-time-warner-for-283-million-2009-7', 'source_text': '', 'source_description': 'Google Sells AOL Stake Back To Time Warner For $283 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 2267, 'description': 'iLike and LaLa music services to be integrated into Google to stream song directly from search. iLike was acquired by MySpace in August 2009', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 21, 'source_url': 'http://www.techcrunch.com/2009/10/21/google-to-partner-with-ilike-and-lala-for-new-music-service/', 'source_text': '', 'source_description': 'Google To Partner With iLike And LaLa For New Music Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 6929, 'description': 'Google Buys Wind Power, First Deal for “Google Energyâ€\\x9d', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 20, 'source_url': '', 'source_text': '', 'source_description': 'Google Buys Wind Power, First Deal for “Google Energyâ€\\x9d', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 9633, 'description': 'Google To Give $5 Million To Journalism Non-Profits; $3 Million Outside US ', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://paidcontent.org/article/419-google-to-give-5-million-to-journalism-non-profits-3-million-outside-us/', 'source_text': '', 'source_description': 'Google To Give $5 Million To Journalism Non-Profits; $3 Million Outside US ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10152, 'description': 'Google To Enter Fashion Shopping Territory With Launch Of Boutiques.com?', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2010/11/15/google-to-enter-fashion-shopping-territory-with-launch-of-boutiques-com/', 'source_text': '', 'source_description': 'Google To Enter Fashion Shopping Territory With Launch Of Boutiques.com?', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10288, 'description': \"Google: Now We're Investing In A Huge Wind Farm Off New Jersey That Will Power 2 Million Homes\", 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 12, 'source_url': 'http://www.businessinsider.com/google-wind-farm-2010-10', 'source_text': '', 'source_description': \"Google: Now We're Investing In A Huge Wind Farm Off New Jersey That Will Power 2 Million Homes\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10647, 'description': 'Tracked Down: Google Just Quietly Launched An Official Latitude iPhone App', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2010/12/07/google-latitude-iphone-app/', 'source_text': '', 'source_description': 'Tracked Down: Google Just Quietly Launched An Official Latitude iPhone App', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11665, 'description': 'Big Bang At Google: Larry Page To Replace Eric Schmidt As CEO On April 4', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/01/20/google-ceo-change/', 'source_text': '', 'source_description': 'Big Bang At Google: Larry Page To Replace Eric Schmidt As CEO On April 4', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11686, 'description': 'Schmidt Files To Sell $334 Million Of Google Stock ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://paidcontent.org/article/419-schmidt-files-to-sell-334-million-of-google-stock/', 'source_text': '', 'source_description': 'Schmidt Files To Sell $334 Million Of Google Stock ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11792, 'description': 'Google Gives Schmidt A $100 Million Equity Award ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 24, 'source_url': 'http://paidcontent.org/article/419-google-gives-schmidt-a-100-million-equity-award/', 'source_text': '', 'source_description': 'Google Gives Schmidt A $100 Million Equity Award ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 12778, 'description': 'Google Grants $2.7 Million To IPI To Promote Innovation In Online Journalism', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/02/23/google-grants-2-7-million-to-ipi-to-promote-innovation-in-online-journalism/', 'source_text': '', 'source_description': 'Google Grants $2.7 Million To IPI To Promote Innovation In Online Journalism', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 13946, 'description': 'Larry Page Takes Over Google, Spends $900 Million On His First Day ', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://www.businessinsider.com/larry-page-takes-over-google-spends-900-million-on-his-first-day-2011-4', 'source_text': '', 'source_description': 'Larry Page Takes Over Google, Spends $900 Million On His First Day ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14011, 'description': 'Google Invests $5 Million In German Solar Power Plant', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2011/04/07/google-invests-5-million-in-german-solar-power-plant/', 'source_text': '', 'source_description': 'Google Invests $5 Million In German Solar Power Plant', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14228, 'description': 'Google Invests $100M in (Another!) Wind Farm', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 18, 'source_url': 'http://gigaom.com/cleantech/google-invests-100m-in-another-wind-farm/', 'source_text': '', 'source_description': 'Google Invests $100M in (Another!) Wind Farm', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14750, 'description': 'Google Announces 160 Million Chrome Users, Massive Improvements Coming', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 11, 'source_url': 'http://techcrunch.com/2011/05/11/google-announces-160-million-chrome-users-massive-improvements-coming/', 'source_text': '', 'source_description': 'Google Announces 160 Million Chrome Users, Massive Improvements Coming', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 16732, 'description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 21, 'source_url': 'http://www.washingtonpost.com/business/technology/google-hires-justspottedscoopler-team-to-work-on-google/2011/07/20/gIQA9WNiQI_story.html', 'source_text': '', 'source_description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 17495, 'description': 'Google to Settle with U.S. Government for $500 Million', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 24, 'source_url': 'http://techcrunch.com/2011/08/24/google-to-settle-with-u-s-government-for-500-million/', 'source_text': '', 'source_description': 'Google to Settle with U.S. Government for $500 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 22985, 'description': 'Google Wins $35 Million U.S. Government Contract Over Microsoft', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 1, 'source_url': 'http://techcrunch.com/2012/05/01/google-wins-35-million-u-s-government-contract-over-microsoft/', 'source_text': '', 'source_description': 'Google Wins $35 Million U.S. Government Contract Over Microsoft', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 23504, 'description': 'Google Closes The $12.5 Billion Deal To Own Motorola', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 22, 'source_url': 'http://www.businessinsider.com/google-now-officially-owns-motorola-2012-5', 'source_text': '', 'source_description': 'Google Closes The $12.5 Billion Deal To Own Motorola', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 26264, 'description': 'Google Now Lets Businesses Rent Chromebooks For $30 Per Month', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2012/09/05/google-now-lets-businesses-rent-chromebooks-for-30-per-month/', 'source_text': '', 'source_description': 'Google Now Lets Businesses Rent Chromebooks For $30 Per Month', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 27920, 'description': 'Google Invests $75M In Iowa Wind Farm, Bringing Its Total Green Energy Investments To Almost $1B', 'stoned_year': 2012, 'stoned_month': 11, 'stoned_day': 16, 'source_url': 'http://techcrunch.com/2012/11/15/google-invests-75m-in-iowa-wind-farm-bringing-its-total-green-energy-investments-to-almost-1b/', 'source_text': '', 'source_description': 'Google Invests $75M In Iowa Wind Farm, Bringing Its Total Green Energy Investments To Almost $1B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 30629, 'description': 'Google.org Provides $4.4M In Grants To The Internet Society And NSRC To Improve Internet Access In Sub-Saharan Africa', 'stoned_year': 2013, 'stoned_month': 2, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2013/02/25/google-org-provides-4-4m-in-grants-to-the-internet-society-and-nsrc-to-improve-internet-access-in-sub-saharan-africa/', 'source_text': '', 'source_description': 'Google.org Provides $4.4M In Grants To The Internet Society And NSRC To Improve Internet Access In Sub-Saharan Africa', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 34478, 'description': 'Google Makes Its First Renewable Energy Investment In Africa, Puts $12M Toward South African Solar Plant\\r\\n', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2013/05/30/google-makes-its-first-renewable-energy-investment-in-africa-puts-12m-toward-south-african-solar-plant/', 'source_text': '', 'source_description': 'Google Makes Its First Renewable Energy Investment In Africa, Puts $12M Toward South African Solar Plant', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 34915, 'description': 'Report: Google Is Close To Buying Mapping Startup Waze For $1.3 Billion', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 9, 'source_url': 'http://www.businessinsider.com/google-close-to-buying-waze-2013-6', 'source_text': '', 'source_description': 'Report: Google Is Close To Buying Mapping Startup Waze For $1.3 Billion', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 35336, 'description': 'Google Pledges $5M To Fight Online Child Exploitation', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2013/06/16/google-pledges-5m-to-fight-online-child-exploitation/', 'source_text': '', 'source_description': 'Google Pledges $5M To Fight Online Child Exploitation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 36185, 'description': 'Google grants $1.2 million for Natural Language Research\\r\\n', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 7, 'source_url': 'http://www.gabblet.com/post/2013/07/07/google-grants-1-2-million-for-natural-language-research-13053.aspx', 'source_text': '', 'source_description': ' Google grants $1.2 million for Natural Language Research', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 36195, 'description': 'Racing Google To Bring Driverless Cars To The Road, Mobileye Valued At $1.5B As Investors Take $400M Stake', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://techcrunch.com/2013/07/07/racing-google-to-bring-affordable-driverless-cars-to-the-road-mobileye-valued-at-1-5b-as-investors-take-400m-stake/', 'source_text': '', 'source_description': 'Racing Google To Bring Driverless Cars To The Road, Mobileye Valued At $1.5B As Investors Take $400M Stake', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 39942, 'description': 'Google launches €60m fund to help French media sites', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 20, 'source_url': 'http://www.telegraph.co.uk/technology/google/10321166/Google-launches-60m-fund-to-help-French-media-sites.html', 'source_text': '', 'source_description': 'Google launches €60m fund to help French media sites', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 42098, 'description': 'Google invests €450m in Finnish data centre ', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://www.stuff.co.nz/technology/digital-living/30002847/Google-invests-450m-in-Finnish-data-centre', 'source_text': '', 'source_description': 'Google invests €450m in Finnish data centre ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 8, 'pub_day': 25, 'stock_symbol': 'NASDAQ:GOOG'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': [{'partner_name': 'AngelList', 'homepage_url': 'http://google.com', 'link_1_url': 'https://angel.co/just-us-2-dunrs-roxy?utm_source=crunchbase&utm_medium=link&utm_content=profile&utm_term=google&utm_campaign=crunchbase', 'link_2_url': None, 'link_3_url': None, 'link_1_name': 'AngelList Page', 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297dbc'), 'name': 'Skype', 'permalink': 'skype', 'crunchbase_url': 'http://www.crunchbase.com/company/skype', 'homepage_url': 'http://www.skype.com', 'blog_url': 'http://blogs.skype.com', 'blog_feed_url': 'http://feeds.feedburner.com/shareskypeen', 'twitter_username': 'skype', 'category_code': 'software', 'number_of_employees': 0, 'founded_year': 2003, 'founded_month': 8, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'phone, voip, sweden, skype', 'alias_list': '', 'email_address': '', 'phone_number': '94117733', 'description': 'VoIP Software ', 'created_at': 'Tue Jul 03 05:20:31 UTC 2007', 'updated_at': 'Wed Dec 11 13:03:57 UTC 2013', 'overview': '

Skype is a software application that allows users to make voice and video calls and chats over the Internet. Calls to other users within the Skype service are free, while calls to both traditional landline telephones and mobile phones can be made for a fee using a debit-based user account system. Skype was founded by Niklas Zennstrom and Janus Friis who were also the founders of the file sharing application Kazaa.

\\n\\n

Skype has also become popular for its additional features which include instant messaging, file transfer, and video conferencing. Skype has 663 million registered users as of 2010.

\\n\\n

Unlike other VoIP services, Skype is a peer-to-peer system rather than a client-server system, and makes use of background processing on computers running Skype software; the original name proposed “Sky peer-to-peer” reflects this.

\\n\\n

Some network administrators have banned Skype on corporate, government, home, and education networks, citing reasons such as inappropriate usage of resources, excessive bandwidth usage, and security concerns.

\\n\\n

On 10 May 2011, Microsoft Corporation agreed to acquire Skype Communications, US$8.5 billion. The company is to be incorporated as a division of Microsoft, and Microsoft will acquire all of the company’s technologies, including Skype, with the purchase.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/1387/1387v12-max-150x150.jpg'], [[250, 110], 'assets/images/resized/0000/1387/1387v12-max-250x250.jpg'], [[315, 139], 'assets/images/resized/0000/1387/1387v12-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Skype', 'permalink': 'skype'}, {'name': 'SkypeOut', 'permalink': 'skypeout'}, {'name': 'Skype Online Numbers (formerly SkypeIn)', 'permalink': 'skypein'}, {'name': 'Skype Voicemail', 'permalink': 'skype-voicemail'}, {'name': 'Skype Mobile', 'permalink': 'skype-mobile'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tony', 'last_name': 'Bates', 'permalink': 'tony-bates'}}, {'is_past': False, 'title': 'Chief Architect Consumer Mobile Video', 'person': {'first_name': 'Alexey', 'last_name': 'Timanovskiy', 'permalink': 'alexey-timanovskiy'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Mark', 'last_name': 'Gillett', 'permalink': 'mark-gillett'}}, {'is_past': False, 'title': 'Vice President, Product Management & Design', 'person': {'first_name': 'Rick', 'last_name': 'Osterloh', 'permalink': 'rick-osterloh'}}, {'is_past': False, 'title': 'Vice President of Advertising and Monetization', 'person': {'first_name': 'Sandhya', 'last_name': 'Venkatachalam', 'permalink': 'sandhya-venkatachalam'}}, {'is_past': False, 'title': 'VP, GM Products & Marketing', 'person': {'first_name': 'Neil', 'last_name': 'Stevens', 'permalink': 'neil-stevens'}}, {'is_past': False, 'title': 'Vice President of Finance', 'person': {'first_name': 'Laura', 'last_name': 'Shesgreen', 'permalink': 'laura-shesgreen'}}, {'is_past': False, 'title': 'Business Development Director', 'person': {'first_name': 'Enrico', 'last_name': 'Noseda', 'permalink': 'enrico-noseda'}}, {'is_past': False, 'title': 'Mac Product Engineering Manager', 'person': {'first_name': 'Janno', 'last_name': 'Teelem', 'permalink': 'janno-teelem'}}, {'is_past': False, 'title': 'Senior Product Manager - Consumer Mobile Video', 'person': {'first_name': 'Rishi', 'last_name': 'Mallik', 'permalink': 'rishi-mallik'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Elisa', 'last_name': 'Steele', 'permalink': 'elisa-steele'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Marco', 'last_name': 'Wolfsheimer', 'permalink': 'marco-wolfsheimer'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Charles', 'last_name': 'Giancarlo', 'permalink': 'charles-giancarlo-3'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Enlai', 'last_name': 'Chu', 'permalink': 'enlai-chu'}}, {'is_past': False, 'title': 'Head of Communications', 'person': {'first_name': 'Brian', 'last_name': \"O'Shaughnessy\", 'permalink': 'brian-oshaughnessy'}}, {'is_past': False, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'Jennifer', 'last_name': 'Caukin', 'permalink': 'jennifer-caukin'}}, {'is_past': False, 'title': 'Senior Product Engineering Manager', 'person': {'first_name': 'Rain', 'last_name': 'Johanson', 'permalink': 'rain-johanson'}}, {'is_past': False, 'title': 'Director Consumer Video Technology', 'person': {'first_name': 'Nikolay', 'last_name': 'Abkairov', 'permalink': 'nikolay-abkairov'}}, {'is_past': False, 'title': 'Director, Program Management - Mobile', 'person': {'first_name': 'David', 'last_name': 'Still', 'permalink': 'david-still'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Davidson', 'permalink': 'jim-davidson-2'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Chao', 'permalink': 'bobby-chao'}}, {'is_past': True, 'title': 'Co-Founder, Chief Engineer', 'person': {'first_name': 'Toivo', 'last_name': 'Annus', 'permalink': 'toivo-annus'}}, {'is_past': True, 'title': 'Interim CEO', 'person': {'first_name': 'Michael', 'last_name': 'van Swaaij', 'permalink': 'michael-van-swaaij'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Geoffrey', 'last_name': 'Prentice', 'permalink': 'geoffrey-prentice'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Jonathan', 'last_name': 'Chadwick', 'permalink': 'jonathan-chadwick'}}, {'is_past': True, 'title': 'Founding Engineer, Chief Technical Architect', 'person': {'first_name': 'Ahti', 'last_name': 'Heinla', 'permalink': 'ahti-heinla'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Doug', 'last_name': 'Bewsher', 'permalink': 'doug-bewsher'}}, {'is_past': True, 'title': 'Chief Financial and Administration Officer', 'person': {'first_name': 'Adrian', 'last_name': 'T. Dillon', 'permalink': 'adrian-t-dillon'}}, {'is_past': True, 'title': 'Chief Development Officer', 'person': {'first_name': 'Madhu', 'last_name': 'Yarlagadda', 'permalink': 'madhu-yarlagadda'}}, {'is_past': True, 'title': 'COO/VP & Director of Paid Services', 'person': {'first_name': 'Michael', 'last_name': 'Jackson', 'permalink': 'michael-jackson'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Daniel', 'last_name': 'Berg', 'permalink': 'daniel-berg'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Scott', 'last_name': 'Durchslag', 'permalink': 'scott-durchslag'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Josh', 'last_name': 'Silverman', 'permalink': 'josh-silverman'}}, {'is_past': True, 'title': 'VP&GM Skype for Business', 'person': {'first_name': 'David', 'last_name': 'Gurle', 'permalink': 'david-gurle'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Saul', 'last_name': 'Klein', 'permalink': 'saul-klein'}}, {'is_past': True, 'title': 'VP, Mobile video', 'person': {'first_name': 'Vijay', 'last_name': 'Tella', 'permalink': 'vijay-tella'}}, {'is_past': True, 'title': 'VP & GM, Americas and Advertising', 'person': {'first_name': 'Don', 'last_name': 'Albert', 'permalink': 'don-albert'}}, {'is_past': True, 'title': 'Vice President & General Manager, Skype Enterprise', 'person': {'first_name': 'David', 'last_name': 'Gurle', 'permalink': 'david-gurl'}}, {'is_past': True, 'title': 'VP & General Manager, Platform', 'person': {'first_name': 'Jonathan', 'last_name': 'Christensen', 'permalink': 'jonathan-christensen'}}, {'is_past': True, 'title': 'VP Business Development/GM Europe', 'person': {'first_name': 'James', 'last_name': 'Bilefield', 'permalink': 'james-bilefield'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Janus', 'last_name': 'Friis', 'permalink': 'janus-friis'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Robert', 'last_name': 'Miller', 'permalink': 'robert-miller'}}, {'is_past': True, 'title': 'Director of Consumer Engineering', 'person': {'first_name': 'Ott', 'last_name': 'Kaukver', 'permalink': 'ott-kaukver'}}, {'is_past': True, 'title': 'International Marketing', 'person': {'first_name': 'Melany', 'last_name': 'Libraro', 'permalink': 'melany-libraro'}}, {'is_past': True, 'title': 'Manager, Business Development and Marketing, North America', 'person': {'first_name': 'Tristen', 'last_name': 'Langley', 'permalink': 'tristen-langley'}}, {'is_past': True, 'title': 'Product Manager, Devices', 'person': {'first_name': 'Liz', 'last_name': 'Rice', 'permalink': 'liz-rice'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Morten', 'last_name': 'Lund', 'permalink': 'morten-lund'}}, {'is_past': True, 'title': 'Creative Designer', 'person': {'first_name': 'Malthe', 'last_name': 'Sigurdsson', 'permalink': 'malthe-sigurdsson'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Mark', 'last_name': 'Dyne', 'permalink': 'mark-dyne'}}, {'is_past': True, 'title': 'Marketer', 'person': {'first_name': 'Andrus', 'last_name': 'Purde', 'permalink': 'andrus-purde'}}, {'is_past': True, 'title': 'Chief Legal and Regulatory Officer', 'person': {'first_name': 'Neal', 'last_name': 'Goldman', 'permalink': 'neal-goldman'}}, {'is_past': True, 'title': '(interim) Director of CRM', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Director, Strategy', 'person': {'first_name': 'Taavet', 'last_name': 'Hinrikus', 'permalink': 'taavet-hinrikus'}}, {'is_past': True, 'title': 'Head of Business Development', 'person': {'first_name': 'Bob', 'last_name': 'Rosin', 'permalink': 'bob-rosin'}}, {'is_past': True, 'title': 'Reseach Lead, Data Analytics', 'person': {'first_name': 'André', 'last_name': 'Karpištšenko', 'permalink': 'andr-karpitenko'}}, {'is_past': True, 'title': 'associate general counsel', 'person': {'first_name': 'Susan', 'last_name': 'Stick', 'permalink': 'susan-stick'}}, {'is_past': True, 'title': 'Head of Qik Products', 'person': {'first_name': 'Bhaskar', 'last_name': 'Roy', 'permalink': 'bhaskar-roy'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Alistair', 'last_name': 'Shrimpton', 'permalink': 'alistair-shrimpton'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Simon', 'last_name': 'Patterson', 'permalink': 'simon-patterson'}}, {'is_past': True, 'title': 'Executive Advisor', 'person': {'first_name': 'Ed', 'last_name': 'Gillis', 'permalink': 'ed-gillis'}}, {'is_past': True, 'title': 'Operations Change Management, Lead', 'person': {'first_name': 'Kaili', 'last_name': 'Kleemeier', 'permalink': 'kaili-kleemeier'}}, {'is_past': True, 'title': 'Director / Advisor', 'person': {'first_name': 'Hiro', 'last_name': 'Tamura', 'permalink': 'hiro-tamura'}}, {'is_past': True, 'title': 'Head of Business Development - Qik', 'person': {'first_name': 'Bob', 'last_name': 'Rosin', 'permalink': 'bob-rosin'}}, {'is_past': True, 'title': 'Country Manager, Greater China', 'person': {'first_name': 'Kelly', 'last_name': 'Poon', 'permalink': 'kelly-poon'}}, {'is_past': True, 'title': 'Strategy & Asia', 'person': {'first_name': 'Geoffery', 'last_name': 'Prentice', 'permalink': 'geoffery-prentice'}}, {'is_past': True, 'title': 'Telecoms', 'person': {'first_name': 'Stefan', 'last_name': 'Oberg', 'permalink': 'stefan-oberg'}}, {'is_past': True, 'title': 'HR', 'person': {'first_name': 'Annemie', 'last_name': 'Jense Van Rensburg', 'permalink': 'annemie-jense-van-rensburg'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Sten', 'last_name': 'Tamkivi', 'permalink': 'sten-kamkivi'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Dean', 'permalink': 'christopher-dean'}}, {'is_past': True, 'title': 'Head of Web Backend Team', 'person': {'first_name': 'Martin', 'last_name': 'Villig', 'permalink': 'martin-villig'}}, {'is_past': True, 'title': 'General Manager, Mobile and Hardware Devices', 'person': {'first_name': 'Gareth', 'last_name': \"O'Loughlin\", 'permalink': 'gareth-oloughlin'}}, {'is_past': True, 'title': 'GM Desktop Products', 'person': {'first_name': 'Carter', 'last_name': 'Adamson', 'permalink': 'carter-adamson'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Klaus', 'last_name': 'Hommels', 'permalink': 'klaus-hommels'}}, {'is_past': True, 'title': 'Director and Principal Architect', 'person': {'first_name': 'Matthew', 'last_name': 'Kaufman', 'permalink': 'matthew-kaufman'}}, {'is_past': True, 'title': 'Vice President & General Manager, Mobile', 'person': {'first_name': 'Russ', 'last_name': 'Shaw', 'permalink': 'russ-shaw'}}, {'is_past': True, 'title': 'Product Strategy', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'David', 'last_name': 'Litwak', 'permalink': 'david-litwak'}}, {'is_past': True, 'title': 'Interaction designer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Jason', 'last_name': 'Fischl', 'permalink': 'jason-fischl'}}, {'is_past': True, 'title': 'Mobile Video Deployments', 'person': {'first_name': 'Ramu', 'last_name': 'Sunkara', 'permalink': 'ramu-sunkara'}}, {'is_past': True, 'title': 'Head of Mobile Partnerships', 'person': {'first_name': 'Tony', 'last_name': 'Saigh', 'permalink': 'tony-saigh'}}, {'is_past': True, 'title': 'Director - Skype Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Lagier', 'permalink': 'eric-lagier'}}, {'is_past': True, 'title': 'Board Member / Venture Investor', 'person': {'first_name': 'Rob', 'last_name': 'Stavis', 'permalink': 'rob-stavis'}}, {'is_past': True, 'title': 'Operations Manager', 'person': {'first_name': 'Kaili', 'last_name': 'Kleemeier', 'permalink': 'kaili-kleemeier'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Pooj', 'last_name': 'Preena', 'permalink': 'pooj-preena'}}, {'is_past': True, 'title': 'Director of Global Partnerships, Mobile', 'person': {'first_name': 'Tony', 'last_name': 'Saigh', 'permalink': 'tony-saigh'}}, {'is_past': True, 'title': 'Strategic Partnership and ODM ecosystem consultant', 'person': {'first_name': 'Andy', 'last_name': 'Chen', 'permalink': 'andy-chen-6'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Eugene', 'last_name': 'Mizin', 'permalink': 'eugene-mizin'}}], 'competitions': [{'competitor': {'name': 'fring Ltd', 'permalink': 'fring'}}, {'competitor': {'name': 'Yeigo', 'permalink': 'yeigo'}}, {'competitor': {'name': 'barablu', 'permalink': 'barablu'}}, {'competitor': {'name': 'TokBox', 'permalink': 'tokbox'}}, {'competitor': {'name': 'Truphone', 'permalink': 'truphone'}}, {'competitor': {'name': 'Mobivox', 'permalink': 'mobivox'}}, {'competitor': {'name': 'Rebtel', 'permalink': 'rebtel'}}, {'competitor': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'competitor': {'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere'}}, {'competitor': {'name': 'PeerMe', 'permalink': 'peerme'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'TalkShoe', 'permalink': 'talkshoe'}}, {'competitor': {'name': 'iSkoot', 'permalink': 'iskoot'}}, {'competitor': {'name': 'Talkonaut', 'permalink': 'talkonaut'}}, {'competitor': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'competitor': {'name': 'Goober Networks', 'permalink': 'goober-networks'}}, {'competitor': {'name': 'Teleo', 'permalink': 'teleo-inc'}}, {'competitor': {'name': 'InfoInterActive', 'permalink': 'infointeractive'}}, {'competitor': {'name': 'VoxOx', 'permalink': 'voxox'}}, {'competitor': {'name': 'Foonz', 'permalink': 'foonz'}}, {'competitor': {'name': 'Banckle Customer Service 2.0', 'permalink': 'banckle'}}, {'competitor': {'name': 'FaceFlow', 'permalink': 'faceflow'}}, {'competitor': {'name': 'iCall', 'permalink': 'icall'}}, {'competitor': {'name': 'Hall', 'permalink': 'hall-com'}}, {'competitor': {'name': 'Streamup', 'permalink': 'streamup'}}, {'competitor': {'name': 'Glip', 'permalink': 'glip'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Brinkwire ', 'permalink': 'brinkwire'}}, {'title': 'Digital Acquisition', 'is_past': False, 'provider': {'name': 'Jellyfish', 'permalink': 'jellyfish'}}, {'title': '', 'is_past': True, 'provider': {'name': 'Six Degrees', 'permalink': 'six-degrees'}}, {'title': '', 'is_past': True, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}], 'total_money_raised': '$76.8M', 'funding_rounds': [{'id': 79, 'round_code': 'b', 'source_url': 'http://www.prnewswire.co.uk/cgi/news/release?id=119130', 'source_description': '', 'raised_amount': 18800000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}, {'id': 2119, 'round_code': 'a', 'source_url': 'http://www.vcgate.com/Bessemer_Venture_Partners.asp', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 10623, 'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_description': 'eBay Completes Skype Sale at $2.75 Billion Valuation', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 19, 'investments': [{'company': {'name': 'eBay', 'permalink': 'ebay'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Andreessen Horowitz', 'permalink': 'andreessen-horowitz'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Silver Lake Partners', 'permalink': 'silver-lake-partners'}, 'person': None}]}, {'id': 33585, 'round_code': 'angel', 'source_url': 'http://www.efinancialnews.com/story/2005-09-19/skype-provides-record-return-on-capital', 'source_description': '', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 57737, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1489709/000148970910000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 7755032, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 16, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://www.lightreading.com/document.asp?doc_id=88186', 'source_description': 'LightReading', 'raised_amount': 18000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 6, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/02/trialpay_backed.html', 'source_description': 'TrialPay Backed By Investors of Skype, Google, and Akamai For Payment Platform', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 20, 'company': {'name': 'TrialPay', 'permalink': 'trialpay'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/10/14/skype-founders-take-a-break-from-starting-lawsuits-to-start-music-company/', 'source_description': 'Skype Founders Take A Break From Starting Lawsuits To Start Music Company', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 10, 'funded_day': 14, 'company': {'name': 'Rdio', 'permalink': 'rdio'}}}], 'acquisition': {'price_amount': 2600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/122516/ebay_buys_skype_for_26_billion.html', 'source_description': 'EBay Buys Skype for $2.6 Billion', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 12, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/skype-to-acquire-qik-for-100-million-says-reliable-source-2011-1', 'source_description': 'CONFIRMED: Skype To Acquire Qik For $150 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 6, 'company': {'name': 'Qik', 'permalink': 'qik'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/23/what-skype-really-paid-for-groupme/', 'source_description': 'What Skype Really Paid For GroupMe', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 21, 'company': {'name': 'GroupMe', 'permalink': 'groupme'}}], 'offices': [{'description': 'Global HQ', 'address1': '23-29 Rives de Clausen', 'address2': '', 'zip_code': 'L-2165', 'city': 'Luxembourg City', 'state_code': None, 'country_code': 'LUX', 'latitude': 51.518132, 'longitude': -0.131916}, {'description': 'US office', 'address1': '3210 Porter Drive', 'address2': '', 'zip_code': '94304', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'London Office', 'address1': '2 Stephen Street', 'address2': '', 'zip_code': 'W1T 1AN', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 552, 'description': 'Skype released publicly', 'stoned_year': 2003, 'stoned_month': 8, 'stoned_day': 29, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 553, 'description': '1.5 million downloads and 100,000 concurrent users', 'stoned_year': 2003, 'stoned_month': 10, 'stoned_day': 22, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 554, 'description': 'SkypeOut launched', 'stoned_year': 2004, 'stoned_month': 7, 'stoned_day': 27, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 555, 'description': 'One million concurrent Skype users', 'stoned_year': 2004, 'stoned_month': 10, 'stoned_day': 20, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 556, 'description': '100 Billion free skype-to-skype minutes served.', 'stoned_year': 2008, 'stoned_month': 2, 'stoned_day': 22, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 557, 'description': '338 million registered Skype users', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 30, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 558, 'description': '100 million registered skype users', 'stoned_year': 2006, 'stoned_month': 4, 'stoned_day': 28, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 1231, 'description': 'Skype reaches more than 400 mio users.\\r\\nUSD 145 mio revenue in Q1 2009', 'stoned_year': 2009, 'stoned_month': 1, 'stoned_day': 31, 'source_url': 'http://investor.ebay.com/common/download/download.cfm?companyid=ebay&fileid=266606&filekey=581a206a-78df-4c3c-81c4-4a8b57e62440&filename=eBay_FINALQ42008EarningsRelease.pdf', 'source_text': '', 'source_description': 'Ebay Investor relations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 1285, 'description': 'Skype releases corporate Session-Internet-Protocol communications', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': 23, 'source_url': 'http://about.skype.com/2009/03/skype_opens_up_to_corporate_si.html', 'source_text': '', 'source_description': 'Skype opens up to corporate SIP communications', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 2271, 'description': 'Skype hits 521 million users and $175 million in Q3', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 21, 'source_url': 'http://www.techcrunch.com/2009/10/21/skype-hits-521-million-users-and-185-million-in-quarterly-revenue/', 'source_text': '', 'source_description': 'Skype Hits 521 Million Users And $185 Million In Quarterly Revenue', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 4335, 'description': 'eBay completes Skype sale to Silver Lake Partners, Andreessen Horowitz, Joltid, and the Canada Pension Plan Investment Board. ', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_text': '', 'source_description': 'Breaking: eBay Completes Skype Sale At $2.75 Billion Valuation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 11953, 'description': 'Skype says new CEO, shaky market will delay its IPO until at least July', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://venturebeat.com/2011/01/26/skype-delays-ipo/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Venturebeat_deals+(VentureBeat+%C2%BB+Deals+%26+More)', 'source_text': '', 'source_description': 'Skype says new CEO, shaky market will delay its IPO until at least July', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 13070, 'description': 'Skype Revenue Up 20 Percent To $860M In 2010; Paid Users Up 19 Percent', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2011/03/07/skype-revenue-up-20-percent-to-860m-in-2010-paid-users-up-19-percent/', 'source_text': '', 'source_description': 'Skype Revenue Up 20 Percent To $860M In 2010; Paid Users Up 19 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 15453, 'description': 'Skype reverse-engineered by Russian geek', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.ewdn.com/2011/06/04/skype-reverse-engineered-by-russian-geek/', 'source_text': None, 'source_description': 'Skype reverse-engineered by Russian geek', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 16364, 'description': 'Facebook Skype released', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 6, 'source_url': 'http://techcrunch.com/2011/07/06/facebook-launches-skype-powered-video-calling/', 'source_text': '', 'source_description': 'Facebook Launches Skype-Powered Video Calling', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 130], 'assets/images/resized/0019/7978/197978v1-max-150x150.png'], [[250, 217], 'assets/images/resized/0019/7978/197978v1-max-250x250.png'], [[450, 390], 'assets/images/resized/0019/7978/197978v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.ewdn.com/2011/06/05/ewdn-exclusive-an-interview-with-efim-bushmanov/', 'title': 'Interview with Efim Bushmanov, Skype reverse engineer'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc3'), 'name': 'Pando Networks', 'permalink': 'pando-networks', 'crunchbase_url': 'http://www.crunchbase.com/company/pando-networks', 'homepage_url': 'http://pandonetworks.com', 'blog_url': 'http://www.pandonetworks.com/blog', 'blog_feed_url': 'http://blog.pando.com/?feed=rss2', 'twitter_username': 'pandonetworks', 'category_code': 'games_video', 'number_of_employees': 23, 'founded_year': 2004, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'p2p, video, streaming, download, cdn', 'alias_list': '', 'email_address': 'info@pando.com', 'phone_number': '212-343-8800', 'description': 'Accelerating large media delivery', 'created_at': 'Tue Feb 05 22:28:14 UTC 2008', 'updated_at': 'Thu Aug 15 12:52:39 UTC 2013', 'overview': '

Pando Networks (www.pandonetworks.com) improves the delivery performance of online media assets. Pando accelerates content delivery, increases download completion and provides detailed performance data. Pando technology currently accelerates the delivery of more than 200 million media downloads around the world each year. Pando is funded by Intel Capital, BRM Capital and Wheatley Partners.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0000/0406/406v1-max-150x150.png'], [[200, 67], 'assets/images/resized/0000/0406/406v1-max-250x250.png'], [[200, 67], 'assets/images/resized/0000/0406/406v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Pando', 'permalink': 'pando'}, {'name': 'Pando Publisher', 'permalink': 'pando-publisher'}], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Robert', 'last_name': 'Levitan', 'permalink': 'robert-levitan'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Avi', 'last_name': 'Cohen', 'permalink': 'avi-cohen'}}, {'is_past': False, 'title': 'VP Product Management', 'person': {'first_name': 'Narkis', 'last_name': 'Engler', 'permalink': 'narkis-engler'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Eli', 'last_name': 'Barkat', 'permalink': 'eli-barkat'}}, {'is_past': True, 'title': 'Founder & CMO', 'person': {'first_name': 'Yaron', 'last_name': 'Samid', 'permalink': 'yaron-samid'}}, {'is_past': True, 'title': 'Founder & CTO', 'person': {'first_name': 'Laird', 'last_name': 'Popkin', 'permalink': 'laird-popkin'}}, {'is_past': True, 'title': 'VP BD', 'person': {'first_name': 'David', 'last_name': 'Buckland', 'permalink': 'david-buckland'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Deanna', 'last_name': 'Vincent', 'permalink': 'deanna-vincent'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'RLM PR', 'permalink': 'rlm-pr'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'TriplePoint', 'permalink': 'triplepoint'}}], 'total_money_raised': '$11M', 'funding_rounds': [{'id': 1750, 'round_code': 'a', 'source_url': '', 'source_description': 'SEC D', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': []}, {'id': 13587, 'round_code': 'b', 'source_url': 'http://www.pando.com/pr-intel', 'source_description': 'INTEL CAPITAL LEADS INVESTMENT IN PANDO NETWORKS’ SECOND FUNDING ROUND OF $7 MILLION', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'BRM Capital', 'permalink': 'brm-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Wheatley Partners', 'permalink': 'wheatley-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '520 Broadway', 'address2': '10th Floor', 'zip_code': '10012', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.722655, 'longitude': -73.99873}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc6'), 'name': 'Ikan', 'permalink': 'ikan', 'crunchbase_url': 'http://www.crunchbase.com/company/ikan', 'homepage_url': 'http://www.ikan.net', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 5, 'founded_year': 2003, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'scan, groceries', 'alias_list': None, 'email_address': 'customerservice@ikan.net', 'phone_number': '887.365.4526', 'description': None, 'created_at': 'Tue Jun 26 09:30:55 UTC 2007', 'updated_at': 'Mon Jul 28 19:53:41 UTC 2008', 'overview': '

Ikan is a countertop unit that allows you to keep track of groceries you’ll need on your next trip. You simply scan the products as you finish them and it’s automatically added to your online shopping cart. When you’re ready to order your groceries you’ll know exactly what you need. If you’re the forgetful type, then the e-mail reminders will keep you abreast of your diminishing food supply. The voice recorder also lets you tack on products when there isn’t a barcode available for scanning.

', 'image': {'available_sizes': [[[150, 88], 'assets/images/resized/0000/0466/466v1-max-150x150.png'], [[159, 94], 'assets/images/resized/0000/0466/466v1-max-250x250.png'], [[159, 94], 'assets/images/resized/0000/0466/466v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'ikan', 'permalink': 'ikan'}], 'relationships': [{'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Fred', 'last_name': 'Wagner', 'permalink': 'fred-wagner'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Fabio', 'last_name': 'Zsigmond', 'permalink': 'fabio-zsigmond'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Geraldo', 'last_name': 'Yoshizawa', 'permalink': 'geraldo-yoshizawa'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '2001 West Main St., Suite 255', 'address2': None, 'zip_code': '06902', 'city': 'Stamford', 'state_code': 'CT', 'country_code': 'USA', 'latitude': 41.049051, 'longitude': -73.563878}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc7'), 'name': 'delicious', 'permalink': 'delicious', 'crunchbase_url': 'http://www.crunchbase.com/company/delicious', 'homepage_url': 'http://delicious.com', 'blog_url': 'http://blog.delicious.com/', 'blog_feed_url': 'http://blog.delicious.com/blog/feed', 'twitter_username': 'Delicious', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2003, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'taxna', 'alias_list': 'de.licio.us', 'email_address': 'contact@avos.com', 'phone_number': '18873654526', 'description': 'Social Bookmarking', 'created_at': 'Tue Jun 26 10:03:51 UTC 2007', 'updated_at': 'Mon Oct 07 17:17:01 UTC 2013', 'overview': '

Delicious is a social bookmarking website – the primary use of Delicious is to store your bookmarks online, which allows you to access the same bookmarks from any computer and add bookmarks from anywhere, too. On Delicious, you can use tags to organize and remember your bookmarks, which is a much more flexible system than folders.

\\n\\n

You can also use del.icio.us to see the interesting links that your friends and other people bookmark, and share links with them in return. You can even browse and search Delicious to discover the cool and useful bookmarks that everyone else has saved – which is made easy with tags.

\\n\\n

Delicious was acquired by Yahoo on December 9, 2005. No formal acquisition price was disclosed, though it has been speculated at $10 to $15 million. Early seed round investors include Marc Andreessen, Tim O’Reilly, Esther Dyson, Josh Kopelman, Bob Young, Seth Goldstein and Howard Morgan.

\\n\\n

In September 2007 Delicious showed an upcoming version 2 to the public, along with the announcement of a complete re-write of the code base.

\\n\\n

In April 2011, Delicious was acquired by Chad Hurley and Steve Chen’s AVOS Systems. Since the acquisition, Delicious has undergone several redesigns.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0000/0499/499v2-max-150x150.jpg'], [[247, 68], 'assets/images/resized/0000/0499/499v2-max-250x250.jpg'], [[247, 68], 'assets/images/resized/0000/0499/499v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'del.icio.us', 'permalink': 'del-icio-us'}], 'relationships': [{'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Thomas', 'last_name': 'Gieselmann', 'permalink': 'thomas-gieselmann'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Joshua', 'last_name': 'Schachter', 'permalink': 'joshua-schachter'}}, {'is_past': True, 'title': 'Lead Engineer', 'person': {'first_name': 'Josh', 'last_name': 'Whiting', 'permalink': 'josh-whiting'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Dan', 'last_name': 'Kantor', 'permalink': 'dan-kantor'}}, {'is_past': True, 'title': 'Product team lead', 'person': {'first_name': 'Stephen', 'last_name': 'Hood', 'permalink': 'stephen-hood'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nick', 'last_name': 'Nguyen', 'permalink': 'nick-nguyen'}}], 'competitions': [{'competitor': {'name': 'Faves', 'permalink': 'faves'}}, {'competitor': {'name': 'ZapNat', 'permalink': 'zapnat'}}, {'competitor': {'name': 'Diigo', 'permalink': 'diigo'}}, {'competitor': {'name': 'Zigtag', 'permalink': 'zigtag'}}, {'competitor': {'name': 'Skewz', 'permalink': 'skewz'}}, {'competitor': {'name': 'Xerpi', 'permalink': 'xerpi'}}, {'competitor': {'name': 'DeliciousSafari', 'permalink': 'delicioussafari'}}, {'competitor': {'name': 'link-together', 'permalink': 'link-together'}}, {'competitor': {'name': 'Antstorm', 'permalink': 'antstorm'}}, {'competitor': {'name': 'ma.gnolia', 'permalink': 'magnolia'}}, {'competitor': {'name': 'Pinboard', 'permalink': 'pinboard'}}, {'competitor': {'name': 'Clipboard', 'permalink': 'clipboard'}}, {'competitor': {'name': 'Kippt', 'permalink': 'kippt'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 53, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/?p=23', 'source_description': 'Profile: Del.icio.us', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': {'name': 'Amazon', 'permalink': 'amazon'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'e.ventures', 'permalink': 'e-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Josh', 'last_name': 'Kopelman', 'permalink': 'josh-kopelman'}}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/27/yahoo-sells-delicious-to-youtube-founders/', 'source_description': 'Yahoo Sells Delicious To YouTube Founders', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 27, 'acquiring_company': {'name': 'AVOS Systems', 'permalink': 'avos'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Mateo', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 13, 'description': 'Joshua Schachter resigns from the company he started.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 19, 'source_url': 'http://www.techcrunch.com/2008/06/19/it-gets-worse-for-yahoo-delicious-founder-leaving/', 'source_text': None, 'source_description': 'It Gets Worse: Joshua Schachter Leaving Yahoo', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 320, 'description': 'Delicious 2.0 enters private beta', 'stoned_year': 2007, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://www.techcrunch.com/2007/09/06/exclusive-screen-shots-and-feature-overview-of-delicious-20-preview/', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 346, 'description': 'Delicious 2.0 launches', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 31, 'source_url': 'http://www.techcrunch.com/2008/07/31/delicious-20-launches-really-it-totally-launched/', 'source_text': '', 'source_description': 'Delicious 2.0 Launches. Really. It Totally Launched.', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 14503, 'description': 'Delicious acquired by AVOS', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/04/27/yahoo-sells-delicious-to-youtube-founders/', 'source_text': None, 'source_description': 'Yahoo Sells Delicious To YouTube Founders', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 18122, 'description': 'Delicious 3.0 launches', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 27, 'source_url': 'http://www.whatissixsigma.net/delicious-3-0-the-end-of-del-icio-us/', 'source_text': None, 'source_description': 'Delicious 3.0 – The End of Del.icio.us', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 111], 'assets/images/resized/0015/5793/155793v2-max-150x150.png'], [[250, 186], 'assets/images/resized/0015/5793/155793v2-max-250x250.png'], [[450, 335], 'assets/images/resized/0015/5793/155793v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.whatissixsigma.net/delicious-3-0-the-end-of-del-icio-us/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dcc'), 'name': 'AllPeers', 'permalink': 'allpeers', 'crunchbase_url': 'http://www.crunchbase.com/company/allpeers', 'homepage_url': 'http://www.allpeers.com', 'blog_url': 'http://www.allpeers.com/blog/', 'blog_feed_url': 'http://www.allpeers.com/blog/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 3, 'deadpooled_day': 3, 'deadpooled_url': 'http://www.techcrunch.com/2008/03/03/much-hyped-allpeers-to-deadpool/', 'tag_list': 'allpeers', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Thu Jun 28 07:47:43 UTC 2007', 'updated_at': 'Sat Mar 06 00:28:43 UTC 2010', 'overview': '

AllPeers is a simple, persistent buddy list in the browser. Initially, interaction with those buddies will be limited to discovering and sharing files - If you choose to, you can share any file on your network with one or more of your friends. They will be able to see what files you choose to share (even getting an RSS feed of new files you include), and with a single click download it to their own hard drive.

\\n\\n

AllPeers will work even when the sharer is offline - AllPeers is a bittorent client, and will allow files to be pulled from multiple sources. When downloading, the file may be grabbed partially or fully from others you have shared it with (or who shared it with you). So a user just clicks on a file, and waits for it to eventually download.

', 'image': {'available_sizes': [[[150, 58], 'assets/images/resized/0000/0985/985v1-max-150x150.jpg'], [[175, 68], 'assets/images/resized/0000/0985/985v1-max-250x250.jpg'], [[175, 68], 'assets/images/resized/0000/0985/985v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'AllPeers', 'permalink': 'allpeers'}], 'relationships': [{'is_past': None, 'title': 'Chief Software Architect', 'person': {'first_name': 'Jan', 'last_name': 'Odvarko', 'permalink': 'jan-odvarko'}}, {'is_past': None, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Louis', 'last_name': 'Letourneau', 'permalink': 'louis-letourneau'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Cedric', 'last_name': 'Maloux', 'permalink': 'cedric-maloux'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Matthew', 'last_name': 'Gertner', 'permalink': 'matthew-gertner'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Gerard', 'last_name': 'Lopez', 'permalink': 'gerard-lopez'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 64, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2006/03/06/allpeers-nails-series-a-funding/', 'source_description': 'AllPeers Nails Series A Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Oxford', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.752276, 'longitude': -1.255824}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dd0'), 'name': 'Wize', 'permalink': 'wize', 'crunchbase_url': 'http://www.crunchbase.com/company/wize', 'homepage_url': 'http://wize.com', 'blog_url': 'http://blog.wize.com/', 'blog_feed_url': 'http://blog.wize.com/my_weblog/index.rdf', 'twitter_username': 'WizeDotCom', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'reviews, shopping, search', 'alias_list': '', 'email_address': '', 'phone_number': '650-312-1017', 'description': 'eCommerce Product Reviews', 'created_at': 'Thu Jun 28 09:08:16 UTC 2007', 'updated_at': 'Wed May 15 05:12:51 UTC 2013', 'overview': '

Finding the products that are right for you and within your budget is a tough task, but Wize has a solution. Wize is simplifying the shopping experience for you by centralizing all of the important information about products and allowing you to easily navigate through product reviews. We understand how hard it is to find the best products specific to your needs and have built Wize.com to help you shop with confidence. Using our proprietary technology, we analyze content around the web and generate Wize product recommendations specific to how people intend to use them.

\\n\\n

Are you looking for the best digital cameras for your upcoming vacation? Or maybe you’re interested in finding the best stroller for twins? Simply tell us what you are looking for and we’ll do the rest! Let us help you so that you can be sure you are getting the best product at the best price for you!

', 'image': {'available_sizes': [[[90, 60], 'assets/images/resized/0000/1156/1156v4-max-150x150.png'], [[90, 60], 'assets/images/resized/0000/1156/1156v4-max-250x250.png'], [[90, 60], 'assets/images/resized/0000/1156/1156v4-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Head of Product', 'person': {'first_name': 'Ethan', 'last_name': 'Smith', 'permalink': 'ethan-smith'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Stephanie', 'last_name': 'Quay', 'permalink': 'stephanie-quay'}}, {'is_past': True, 'title': 'Sr. Engineer', 'person': {'first_name': 'Stefan', 'last_name': 'Antonowicz', 'permalink': 'stefan-antonowicz'}}], 'competitions': [{'competitor': {'name': 'PowerReviews', 'permalink': 'powerreviews'}}, {'competitor': {'name': 'Retrevo', 'permalink': 'retrevo'}}, {'competitor': {'name': 'Testseek', 'permalink': 'testseek'}}, {'competitor': {'name': 'SmartRatings', 'permalink': 'smartratings'}}, {'competitor': {'name': 'utoopia', 'permalink': 'utoopia'}}, {'competitor': {'name': 'Reviewgist', 'permalink': 'reviewgist'}}, {'competitor': {'name': 'TestFreaks', 'permalink': 'testfreaks'}}, {'competitor': {'name': 'Pluribo', 'permalink': 'pluribo'}}], 'providerships': [], 'total_money_raised': '$4.99M', 'funding_rounds': [{'id': 70, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/01/21/four-month-old-wize-gets-4-million/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 5291, 'round_code': 'b', 'source_url': 'http://www.bayareanewsgroup.com/multimedia/mn/biz/specialreport/vcchart_q42008.htm', 'source_description': 'VC Funding, Fourth Quarter 2008 ', 'raised_amount': 988000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/07/comparison-shopping-site-nextag-acquires-product-review-engine-wize/', 'source_description': 'Comparison Shopping Site NexTag Acquires Product Review Engine Wize', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 7, 'acquiring_company': {'name': 'NexTag', 'permalink': 'nextag'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1110 Burlingame Ave', 'address2': 'Suite 300', 'zip_code': '94010', 'city': 'Burlingame', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.559287, 'longitude': -122.302262}], 'milestones': [{'id': 6600, 'description': 'NexTag acquires Wize', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://techcrunch.com/2010/07/07/comparison-shopping-site-nextag-acquires-product-review-engine-wize/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wize', 'permalink': 'wize'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
\\r\\n', 'description': ''}, {'embed_code': '
See this video on Vator.tv »
', 'description': ''}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV: 4/2008

'}], 'screenshots': [{'available_sizes': [[[120, 150], 'assets/images/resized/0003/7874/37874v1-max-150x150.png'], [[200, 250], 'assets/images/resized/0003/7874/37874v1-max-250x250.png'], [[361, 450], 'assets/images/resized/0003/7874/37874v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dd7'), 'name': 'SellABand', 'permalink': 'sellaband', 'crunchbase_url': 'http://www.crunchbase.com/company/sellaband', 'homepage_url': 'http://sellaband.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'sellaband', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 2, 'deadpooled_day': 23, 'deadpooled_url': 'http://thenextweb.com/eu/2010/02/23/sellaband-deadpool-files-bankruptcy/', 'tag_list': 'musicmonetizatoin, music, bands', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Fund raising for bands', 'created_at': 'Wed Jul 04 05:29:56 UTC 2007', 'updated_at': 'Thu Apr 29 21:39:39 UTC 2010', 'overview': '

SellaBand.com first launched in August 2006. The new SellaBand Fan Funding model launched 1st October 2009 and allows artists to raise any budget for any project. Artists are in control and retain all rights. Revenue Share is optional.

\\n\\n

Artists that sign up to SellaBand have the freedom to choose:\\nTarget budget: Starting at $10,000 up to $100,000\\nThey can set their own Incentives for the Believers: The minimum incentive is a download\\nRevenue share is now optional and Artists can set the Percentage of revenues they wish to share between the Artist and the Believers\\nArtists will always own the master recordings and keep 100% of publishing rights.\\nIf Artists go ‘Custom’, they can adapt it all: Budgets, part prices, incentives, currencies, even use the funds for touring or promotion… You name it! Initially, Custom is by invitation only.

\\n\\n

SellaBand is the Fan Funding engine for the music industry.

', 'image': {'available_sizes': [[[150, 27], 'assets/images/resized/0000/1741/1741v1-max-150x150.png'], [[235, 43], 'assets/images/resized/0000/1741/1741v1-max-250x250.png'], [[235, 43], 'assets/images/resized/0000/1741/1741v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SellABand', 'permalink': 'sellaband'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Johan', 'last_name': 'Vosmeijer', 'permalink': 'johan-vosmeijer'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Pim', 'last_name': 'Betist', 'permalink': 'pim-betist'}}, {'is_past': False, 'title': 'Music Director', 'person': {'first_name': 'Dagmar', 'last_name': 'Heijmans', 'permalink': 'dagmar-heijmans'}}], 'competitions': [{'competitor': {'name': 'Amie Street', 'permalink': 'amiestreet'}}, {'competitor': {'name': 'Slice The Pie', 'permalink': 'slice-the-pie'}}, {'competitor': {'name': 'amazingtunes', 'permalink': 'amazingtunes'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 1989, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2008/04/08/sellaband-wins-5-million-in-further-funding/', 'source_description': 'SellaBand wins $5 million in further funding', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 8, 'investments': [{'company': None, 'financial_org': {'name': 'Prime Ventures', 'permalink': 'prime-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Harderhook 22', 'address2': None, 'zip_code': None, 'city': '46395 Bocholt', 'state_code': None, 'country_code': 'DEU', 'latitude': 51.808933, 'longitude': 6.553452}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'permalink': 'icontact', 'crunchbase_url': 'http://www.crunchbase.com/company/icontact', 'homepage_url': 'http://icontact.com', 'blog_url': 'http://icontact.com/blog', 'blog_feed_url': '', 'twitter_username': 'icontact', 'category_code': 'messaging', 'number_of_employees': 300, 'founded_year': 2003, 'founded_month': 7, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'icontact, blogs, rss, surveys, community, newsletters, email-marketing, email-marketing-software, email-marketing-social-media-marketing, social-media-marketing', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'email marketing software', 'created_at': 'Sat Jul 07 07:53:12 UTC 2007', 'updated_at': 'Fri Dec 27 21:08:43 UTC 2013', 'overview': '

iContact is the largest private provider of email marketing and social media marketing software and services to small and mid-sized companies globally. It is based in Morrisville, NC. iContact makes it easy to create, send, and track email newsletters, surveys, autoresponders. iContact’s products include iContact, iContact Enterprise, iContact Agency, iContact for Salesforce, iContact Free Edition and Ettend.com.

\\n\\n

As a B Corporation, iContact utilizes the 4-1s Corporate Social Responsibility Model, donating 1% of employee time to community volunteering, 1% of payroll, 1% of equity, and 1% of product to its local and global community as part of its social mission. iContact works hard to maintain a fun, creative, energetic, challenging, and community-oriented company culture.

\\n\\n

iContact was founded in 2003 by Ryan Allis and Aaron Houghton in Chapel Hill, NC.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/1954/1954v3-max-150x150.png'], [[219, 76], 'assets/images/resized/0000/1954/1954v3-max-250x250.png'], [[219, 76], 'assets/images/resized/0000/1954/1954v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'iContact', 'permalink': 'icontact'}, {'name': 'iContact Plus', 'permalink': 'icontactplus'}, {'name': 'iContact Enterprise', 'permalink': 'icontact-enterprise'}, {'name': 'iContact Agency', 'permalink': 'icontact-agency'}, {'name': 'iContact for Salesforce', 'permalink': 'icontact-for-salesforce'}], 'relationships': [{'is_past': False, 'title': 'Chairman and Co-Founder', 'person': {'first_name': 'Aaron', 'last_name': 'Houghton', 'permalink': 'aaron-houghton'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Ralph', 'last_name': 'Kasuba', 'permalink': 'ralph-kasuba-2'}}, {'is_past': False, 'title': 'Chief Architect', 'person': {'first_name': 'David', 'last_name': 'Rasch', 'permalink': 'david-rasch'}}, {'is_past': False, 'title': 'SVP of Sales & BD', 'person': {'first_name': 'Kevin', 'last_name': 'Fitzgerald', 'permalink': 'kevin-fitzgerald-3'}}, {'is_past': False, 'title': 'SVP Customer Support', 'person': {'first_name': 'Sarah', 'last_name': 'Stealey', 'permalink': 'sarah-stealey'}}, {'is_past': False, 'title': 'investments', 'person': {'first_name': 'Bob', 'last_name': 'Nye', 'permalink': 'bob-nye'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Bradford D.', 'last_name': 'Woloson', 'permalink': 'bradford-d-woloson'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Carter', 'last_name': 'Griffin', 'permalink': 'carter-griffin'}}, {'is_past': True, 'title': 'Co-Founder/CEO', 'person': {'first_name': 'Ryan', 'last_name': 'Allis', 'permalink': 'ryan-allis'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Keith', 'last_name': 'Moore', 'permalink': 'keith-moore'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Tim', 'last_name': 'Oakley', 'permalink': 'tim-oakley'}}, {'is_past': True, 'title': 'Vice President of Marketing', 'person': {'first_name': 'Brandon', 'last_name': 'Milford', 'permalink': 'brandon-milford'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Taylor', 'last_name': 'Barr', 'permalink': 'taylor-barr'}}, {'is_past': True, 'title': 'Chief Product and Marketing Officer', 'person': {'first_name': 'Jeff', 'last_name': 'Revoy', 'permalink': 'jeff-revoy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Alan', 'last_name': 'Cox', 'permalink': 'alan-cox'}}, {'is_past': True, 'title': 'Creative Director / Senior Manager of User Experience and Design', 'person': {'first_name': 'Jeff', 'last_name': 'Wright', 'permalink': 'jeff-wright'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Ken', 'last_name': \"O'Berry\", 'permalink': 'ken-oberry'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Arie', 'last_name': 'Abecassis', 'permalink': 'arie-abecassis'}}, {'is_past': True, 'title': 'Early Employee', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'UX Designer', 'person': {'first_name': 'Dan', 'last_name': 'Auer', 'permalink': 'dan-auer'}}], 'competitions': [{'competitor': {'name': 'Mad Mimi', 'permalink': 'mad-mimi'}}, {'competitor': {'name': 'AWeber Communications', 'permalink': 'aweber-communications'}}, {'competitor': {'name': 'VerticalResponse', 'permalink': 'vertical-response'}}, {'competitor': {'name': 'Constant Contact', 'permalink': 'constant-contact'}}, {'competitor': {'name': 'MailChimp', 'permalink': 'mailchimp'}}, {'competitor': {'name': 'Freshview', 'permalink': 'freshview'}}, {'competitor': {'name': 'MailerMailer', 'permalink': 'mailermailer'}}], 'providerships': [{'title': 'Accounting', 'is_past': False, 'provider': {'name': 'Hughes Pittman & Gupton LLP', 'permalink': 'hughes-pittman-gupton'}}], 'total_money_raised': '$53.4M', 'funding_rounds': [{'id': 92, 'round_code': 'a', 'source_url': 'http://www.ryanallis.com/blog/archives/000227.html', 'source_description': '', 'raised_amount': 5350000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 29, 'investments': [{'company': None, 'financial_org': {'name': 'IDEA Fund Partners', 'permalink': 'idea-fund-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Updata Partners', 'permalink': 'updata-partners'}, 'person': None}]}, {'id': 3705, 'round_code': 'debt_round', 'source_url': 'http://localtechwire.com/business/local_tech_wire/venture/story/3788893/', 'source_description': 'iContact closes on $5M in new funding', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'North Atlantic Capital', 'permalink': 'north-atlantic-capital'}, 'person': None}]}, {'id': 17944, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/419-e-mail-marketer-icontact-raises-40-million/', 'source_description': 'E-Mail Marketer iContact Raises $40 Million', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 30, 'investments': [{'company': None, 'financial_org': {'name': 'JMI Equity', 'permalink': 'jmi-equity'}, 'person': None}]}, {'id': 18060, 'round_code': 'debt_round', 'source_url': '', 'source_description': '', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 2, 'investments': []}, {'id': 28787, 'round_code': 'seed', 'source_url': 'http://www.prleap.com/pr/35747/', 'source_description': 'Broadwick Set to Expand With $500,000 of Funding from NC IDEA', 'raised_amount': 500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'IDEA Fund Partners', 'permalink': 'idea-fund-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/02/28/vocus-buys-email-marketing-company-icontact-for-169-million/', 'source_description': 'Vocus Buys Email Marketing Company iContact For $169 Million', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 28, 'acquiring_company': {'name': 'Vocus', 'permalink': 'vocus'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.icontact.com/blog/announcing-icontact%E2%80%99s-series-b-investment/', 'source_description': 'Announcing iContact’s Series B Investment', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Ettend', 'permalink': 'ettend'}}], 'offices': [{'description': 'iContact', 'address1': '5221 Paramount Parkway', 'address2': '', 'zip_code': '27560', 'city': 'Morrisville', 'state_code': 'NC', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://email-marketing-services.bestreviews.net/interview-with-icontact-vocus-marketing-strategist-john-hayes/', 'title': \"iContact's John Hayes on iContact and Vocus' Marketing Suite\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddb'), 'name': 'MeeVee', 'permalink': 'meevee', 'crunchbase_url': 'http://www.crunchbase.com/company/meevee', 'homepage_url': 'http://meevee.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2000, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tvguide, video', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Personalized TV Guide', 'created_at': 'Sat Jul 07 07:59:25 UTC 2007', 'updated_at': 'Sun Apr 26 05:09:47 UTC 2009', 'overview': '

The experience is centered on the personalized TV guide. On MeeVee, you select from a list of favorite actors, genres, subjects, or enter keyword interests (e.g. “golf”). The guide then finds upcoming programming based on those interests. It’s a saved search so it’ll keep looking for those programs for you until you remove the interests. If you love “Jennifer Aniston”, you can add her as a favorite actress or keyword and, until you delete her, all shows or movies on TV with Jennifer Aniston showing through your cable or satellite provider will populate your guide. If you are willing to invest the time, you can build a totally customized TV guide and ditch the universal grid completely. It’s an easy-to-use application and it’s a nice model for building a personalized web experience. The TV listings widget (called “MeeVee Guide”) they’ve built shows your personal guide to visitors of your pages on other sites. You can add to a page by pasting a snippet of code to it.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0000/1960/1960v1-max-150x150.png'], [[176, 80], 'assets/images/resized/0000/1960/1960v1-max-250x250.png'], [[176, 80], 'assets/images/resized/0000/1960/1960v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MeeVee', 'permalink': 'meevee'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Ian', 'last_name': 'Aaron', 'permalink': 'ian-aaron'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Brian', 'last_name': 'Steel', 'permalink': 'brian-steel-2'}}, {'is_past': True, 'title': 'Co-founder; EVP Business Development', 'person': {'first_name': 'Jonathan', 'last_name': 'Barker', 'permalink': 'jonathan-barker-2'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Raneri', 'permalink': 'michael-raneri'}}, {'is_past': True, 'title': 'VP of Engineering and Products', 'person': {'first_name': 'Shampa', 'last_name': 'Banerjee', 'permalink': 'shampa-banerjee'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Larry', 'last_name': 'Kubal', 'permalink': 'larry-kubal'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Ido', 'last_name': 'Shilon', 'permalink': 'ido-shilon'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'PerkettPR', 'permalink': 'perkettpr'}}], 'total_money_raised': '$25M', 'funding_rounds': [{'id': 90, 'round_code': 'b', 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2006_Feb_27/ai_n16085490', 'source_description': '', 'raised_amount': 6500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Labrador Ventures', 'permalink': 'labrador-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}, {'id': 91, 'round_code': 'c', 'source_url': 'http://www.econtentmag.com/Articles/ArticleReader.aspx?ArticleID=17395', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DBL Investors', 'permalink': 'dbl-investors'}, 'person': None}]}, {'id': 398, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}, {'id': 704, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2007/09/20/meevee-for-online-video-search-and-sharing-raises-35-million/', 'source_description': 'Meevee, for online video search and sharing, raises $3.5 million', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'FCPR Israel Discovery Fund', 'permalink': 'fcpr-israel-discovery-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Labrador Ventures', 'permalink': 'labrador-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DBL Investors', 'permalink': 'dbl-investors'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/05/07/meevee-acquired-by-live-universe/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'acquiring_company': {'name': 'LiveUniverse', 'permalink': 'liveuniverse'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '500 Airport Blvd., Suite 400', 'address2': None, 'zip_code': '94010', 'city': 'Burlingame', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.590339, 'longitude': -122.341715}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddc'), 'name': 'blinkx', 'permalink': 'blinkx', 'crunchbase_url': 'http://www.crunchbase.com/company/blinkx', 'homepage_url': 'http://www.blinkx.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'blinkxdotcom', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'videosearch, search, multimediasearch', 'alias_list': '', 'email_address': 'feedback@blinkx.com', 'phone_number': '+1 415 848 2986', 'description': '', 'created_at': 'Sat Jul 07 10:51:42 UTC 2007', 'updated_at': 'Wed Dec 04 03:54:40 UTC 2013', 'overview': '

blinkx is an Internet Media platform that connects online video viewers with content publishers and distributors, utilizing advertising to monetize those interactions. blinkx has an index of over 35 million hours of video and 800 media partnerships; 111 patents preserve the site’s proprietary search engine technology, which is known as CORE.

\\n\\n

Founded in 2004, blinkx went public on the London Stock Exchange (AIM) in May, 2007. The company is headquartered in San Francisco, CA and London, England.

\\n\\n

blinkx powers video search for sites such as AOL and ask.com. In addition, blinkx has expanded into mobile video and Connected TV through partnerships with Samsung, Sony, Roku, Orb Networks and other companies.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0000/2068/2068v3-max-150x150.png'], [[158, 72], 'assets/images/resized/0000/2068/2068v3-max-250x250.png'], [[158, 72], 'assets/images/resized/0000/2068/2068v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Blinkx', 'permalink': 'blinkx'}], 'relationships': [{'is_past': False, 'title': 'CEO & Executive Director', 'person': {'first_name': 'S.', 'last_name': 'Brian Mukherjee', 'permalink': 's-brian-mukherjee'}}, {'is_past': False, 'title': 'Founder And President', 'person': {'first_name': 'Suranga', 'last_name': 'Chandratillake', 'permalink': 'suranga-chandratillake'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Julia', 'last_name': 'Blystone', 'permalink': 'julia-blystone'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Matthew', 'last_name': 'Scheybeler', 'permalink': 'matthew-scheybeler'}}, {'is_past': False, 'title': 'Vice President of Product', 'person': {'first_name': 'Robert', 'last_name': 'McDaniel', 'permalink': 'robert-mcdaniel'}}, {'is_past': False, 'title': 'Executive Vice President, Business Affairs and General Counsel', 'person': {'first_name': 'Frank', 'last_name': 'Pao', 'permalink': 'frank-pao'}}, {'is_past': False, 'title': 'Finance Director', 'person': {'first_name': 'Frances', 'last_name': 'Smith', 'permalink': 'frances-smith'}}, {'is_past': False, 'title': 'Senior Vice President, Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Slivhanovski', 'permalink': 'dan-slivhanovski'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Suranga', 'last_name': 'Chandratillake', 'permalink': 'suranga-chandratillake'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'S.', 'last_name': 'Brian Mukherjee', 'permalink': 's-brian-mukherjee'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Jonathan', 'last_name': 'Spira', 'permalink': 'jonathan-spira'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Matthew', 'last_name': 'Service', 'permalink': 'matthew-service'}}, {'is_past': True, 'title': 'Senior Vice President - Group Controller', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': True, 'title': 'SVP - Business Development', 'person': {'first_name': 'Federico', 'last_name': 'Grosso', 'permalink': 'federico-grosso'}}, {'is_past': True, 'title': 'engineer', 'person': {'first_name': 'Gene', 'last_name': 'Tsai', 'permalink': 'gene-tsai'}}, {'is_past': True, 'title': 'President/General Manager Desktop Division', 'person': {'first_name': 'Jamie', 'last_name': 'Miller', 'permalink': 'jamie-miller-2'}}, {'is_past': True, 'title': 'Special Advisor - Business Development', 'person': {'first_name': 'Federico', 'last_name': 'Grosso', 'permalink': 'federico-grosso'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Tim', 'last_name': 'Hanlon', 'permalink': 'tim-hanlon'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Matthew', 'last_name': 'Service', 'permalink': 'matthew-service'}}], 'competitions': [{'competitor': {'name': 'Truveo', 'permalink': 'truveo'}}, {'competitor': {'name': 'Pixsy Image Search', 'permalink': 'pixsy-image-search'}}, {'competitor': {'name': 'CastTV', 'permalink': 'casttv'}}, {'competitor': {'name': 'Dabble', 'permalink': 'dabble'}}, {'competitor': {'name': 'RAMP Holdings', 'permalink': 'ramp'}}, {'competitor': {'name': 'MeFeedia', 'permalink': 'mefeedia'}}, {'competitor': {'name': 'Medioh!', 'permalink': 'medioh'}}, {'competitor': {'name': 'VideoSurf', 'permalink': 'videosurf'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 18500000, 'price_currency_code': 'GBP', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/04/08/video-ads-roll-up-as-blinkx-buys-burst-media-for-18-5-million/', 'source_description': 'Video Ads Roll-Up as Blinkx Buys Burst Media for £18.5 million', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 8, 'company': {'name': 'Burst Media', 'permalink': 'burstmedia'}}, {'price_amount': 36000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.mediapost.com/publications/article/162099/blinkx-buys-pvmg-for-engine-and-agency.html#axzz2KABoDYc3', 'source_description': 'Blinkx Buys PVMG For Engine And Agency ', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': None, 'company': {'name': 'Prime Visibility Media Group', 'permalink': 'prime-visibility-media-group'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/05/grab-media-grabbed-by-blinkx/', 'source_description': 'Amid Speculation That Yahoo Was Sniffing Around, Blinkx Acquires Video Content Syndication And Ad Platform Grab Media', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'Grab Media', 'permalink': 'grab-networks'}}, {'price_amount': 65000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mediapost.com/publications/article/214672/blinkx-acquires-mobile-video-ad-platform-rhythm-ne.html', 'source_description': 'Blinkx Acquires Mobile Video Ad Platform Rhythm NewMedia', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Rhythm NewMedia', 'permalink': 'rhythm-newmedia'}}], 'offices': [{'description': None, 'address1': '1 Market Street', 'address2': '19th Floor, Spear Tower', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793819, 'longitude': -122.395089}], 'milestones': [{'id': 30219, 'description': 'blinkx announces the blinkx app is available on Roku.', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 30, 'source_url': 'http://sip-trunking.tmcnet.com/news/2011/05/30/5542619.htm', 'source_text': None, 'source_description': 'blinkx Provides Content to Roku With New App ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30220, 'description': 'blinkx Appoints Frank Pao Executive Vice President of Business Affairs and General Counsel', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/blinkx-appoints-frank-pao-executive-vice-president-of-business-affairs-and-general-counsel-131130298.html', 'source_text': None, 'source_description': 'blinkx Appoints Frank Pao Executive Vice President of Business Affairs and General Counsel', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30221, 'description': 'blinkx Announces Partnership With Orb Networks', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 1, 'source_url': 'http://betanews.com/newswire/2011/11/01/blinkx-announces-partnership-with-orb-networks-to-bring-35-million-hours-of-tv-video-and-audio-to-orb-tv-and-orb-br-users/', 'source_text': None, 'source_description': 'blinkx Announces Partnership With Orb Networks to Bring 35 Million Hours of TV, Video and Audio to Orb TV and Orb BR Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30471, 'description': 'blinkx receives U.S. Patent for \"Moving Thumbnails\" technology', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://www.prnewswire.com/news-releases/blinkx-receives-us-patent-grant-for-moving-thumbnails-technology-138115278.html', 'source_text': None, 'source_description': 'blinkx Receives U.S. Patent Grant for Moving Thumbnails Technology ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30472, 'description': 'blinkx CEO Suranga Chandratillake Selected for San Francisco Business Times 40 Under 40', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 24, 'source_url': 'http://www.bizjournals.com/sanfrancisco/print-edition/2012/02/24/suranga-chandratillake.html', 'source_text': None, 'source_description': 'Forty Under 40: Suranga Chandratillake', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30473, 'description': 'blinkx reaches 100 million user milestone', 'stoned_year': 2012, 'stoned_month': 3, 'stoned_day': 27, 'source_url': 'http://mandmglobal.com/news/27-03-12/blinkx-reaches-100-million-users-milestone.aspx', 'source_text': None, 'source_description': 'Blinkx reaches 100 million users milestone', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30474, 'description': 'blinkx founder Suranga Chandratillake moves to role of President/Chief Strategy Officer. ', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 20, 'source_url': 'http://www.broadbandtvnews.com/2012/07/20/blinkx-founder-becomes-chief-strategy-officer/', 'source_text': None, 'source_description': 'Blinkx founder becomes chief strategy officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30475, 'description': 'blinkx founder Suranga Chandratillake elected Fellow of the Royal Academy of Engeneering', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 25, 'source_url': 'http://www.reuters.com/article/2012/07/25/idUS150801+25-Jul-2012+PRN20120725', 'source_text': None, 'source_description': \" Follow Reuters Facebook Twitter RSS YouTube RECOMMENDED VIDEO Assad's forces battle rebels closing in on Damascus… Market Pulse: Gold bugs to jitter bugs - $1,500/oz… New video of Russian meteorite emerges (1:22) Ask E. Jean: Three Occasions on \", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30476, 'description': 'Next-generation blinkx site goes into open beta', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 18, 'source_url': 'http://www.connectedworld.tv/articles/blinkx-opens-up-beta-of-next-gen-video-search-and-discovery-site/8121', 'source_text': None, 'source_description': 'BLINKX OPENS UP BETA OF NEXT-GEN VIDEO SEARCH AND DISCOVERY SITE', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30477, 'description': 'Next-generation blinkx site goes global with full availability', 'stoned_year': 2013, 'stoned_month': 1, 'stoned_day': 22, 'source_url': 'http://www.prnewswire.com/news-releases/blinkxs-next-generation-video-search-and-discovery-site-goes-global-with-full-availability-187859371.html', 'source_text': None, 'source_description': \"blinkx's Next Generation Video Search And Discovery Site Goes Global With Full Availability\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 6, 'pub_day': 22, 'stock_symbol': 'BLNX'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/10/blinkxcom-is-fastest-growing-video-site-in-us-and-uk/', 'title': 'blinkx.com is Fastest Growing Video Site in U.S. and U.K.'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddf'), 'name': 'Zlio', 'permalink': 'zlio', 'crunchbase_url': 'http://www.crunchbase.com/company/zlio', 'homepage_url': 'http://zlio.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 9, 'deadpooled_day': 20, 'deadpooled_url': '', 'tag_list': 'ecommerce', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Tue Jul 10 06:07:25 UTC 2007', 'updated_at': 'Wed Dec 04 22:47:22 UTC 2013', 'overview': '

Zlio gives users the ability to create their own shops and sell goods from other e-commerce services. Users can stock their store with over three million products and earn commissions on every item bought from their Zlio Shop in a similar fashion to a regular affiliate program.

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/2248/2248v1-max-150x150.png'], [[200, 63], 'assets/images/resized/0000/2248/2248v1-max-250x250.png'], [[200, 63], 'assets/images/resized/0000/2248/2248v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Zlio', 'permalink': 'zlio'}], 'relationships': [{'is_past': False, 'title': 'President/CEO', 'person': {'first_name': 'Jeremie', 'last_name': 'Berrebi', 'permalink': 'jeremie-berrebi'}}], 'competitions': [{'competitor': {'name': 'Lemonade', 'permalink': 'lemonade'}}], 'providerships': [], 'total_money_raised': '$4M', 'funding_rounds': [{'id': 94, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2007/07/09/zlio-secures-4-million-in-series-a-funding/', 'source_description': 'Zlio Secures $4 million In Series A Funding', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '55 rue Servan', 'address2': '', 'zip_code': '75011', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.862825, 'longitude': 2.381836}], 'milestones': [{'id': 17364, 'description': 'Zlio Exits', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 19, 'source_url': 'http://blog-money-wiki.com/blog/2011/08/alert-zlio-is-closing-its-doors.php', 'source_text': None, 'source_description': 'ALERT : Zlio is Closing Its Doors', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zlio', 'permalink': 'zlio'}}, {'id': 17365, 'description': 'Zlio joins the deadpool.', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 11, 'source_url': 'http://twitter.com/#!/zlio/status/103806720589049857', 'source_text': None, 'source_description': 'Zlio Twitter', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zlio', 'permalink': 'zlio'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'permalink': 'yelp', 'crunchbase_url': 'http://www.crunchbase.com/company/yelp', 'homepage_url': 'http://yelp.com', 'blog_url': 'http://officialblog.yelp.com/', 'blog_feed_url': 'http://naturallylindy.com', 'twitter_username': 'Yelp', 'category_code': 'search', 'number_of_employees': 800, 'founded_year': 2004, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'localsearch, localreviews, reviews, avriette', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Local search and review site', 'created_at': 'Tue Jul 10 06:21:37 UTC 2007', 'updated_at': 'Wed Nov 13 09:32:29 UTC 2013', 'overview': '

Yelp (NYSE: YELP) connects people with great local businesses. Yelp was founded in San Francisco in July 2004. Since then, Yelp communities have taken root in major metros across the US, Canada, UK, Ireland, France, Germany, Austria, The Netherlands, Spain, Italy, Switzerland, Belgium, Australia, Sweden, Denmark, Norway, Finland, Singapore, Poland and Turkey. Yelp had a monthly average of 86 million unique visitors in Q4 2012*. By the end of Q4 2012, Yelpers had written more than 36 million rich, local reviews, making Yelp the leading local guide for real word-of-mouth on everything from boutiques and mechanics to restaurants and dentists. Yelp’s mobile application was used on 9.2 million unique mobile devices on a monthly average basis during Q4 2012.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/2263/2263v12-max-150x150.png'], [[250, 103], 'assets/images/resized/0000/2263/2263v12-max-250x250.png'], [[435, 180], 'assets/images/resized/0000/2263/2263v12-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Slimak', 'permalink': 'jonathan-slimak'}}, {'is_past': False, 'title': 'Chairman & Board Director', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': False, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': False, 'title': 'Vice President, Local Sales', 'person': {'first_name': 'Erica', 'last_name': 'Galos Alioto', 'permalink': 'erica-galos-alioto'}}, {'is_past': False, 'title': 'Vice President, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Vice President of New Markets', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': False, 'title': 'Vice President, North American Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': False, 'title': 'VP of Corporate Communic', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': False, 'title': 'Senior Vice President of Global Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Laurence', 'last_name': 'Wilson', 'permalink': 'laurence-wilson-2'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Fenton', 'permalink': 'peter-fenton'}}, {'is_past': False, 'title': 'Vice President of Business and Corporate Development', 'person': {'first_name': 'Mike', 'last_name': 'Ghaffary', 'permalink': 'mike-ghaffary'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': False, 'title': 'VP, Revenue & Analytics', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': False, 'title': 'Director, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Android Developer', 'person': {'first_name': 'Alexander', 'last_name': 'Davis', 'permalink': 'alexander-davis-2'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeremy', 'last_name': 'Levine', 'permalink': 'jeremy-levine'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': False, 'title': 'Tech Lead', 'person': {'first_name': 'Ken', 'last_name': 'Struys', 'permalink': 'ken-struys'}}, {'is_past': False, 'title': 'Vice President, Consumer & Mobile Productser and Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': False, 'title': 'Global Head of Human Resources', 'person': {'first_name': 'Jose', 'last_name': 'Martin', 'permalink': 'jose-martin-3'}}, {'is_past': False, 'title': 'Sales Account Executive', 'person': {'first_name': 'Clement', 'last_name': 'Bazan', 'permalink': 'clement-bazan'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Vlado', 'last_name': 'Herman', 'permalink': 'vlado-herman'}}, {'is_past': True, 'title': 'Vice President of European Marketing', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Neil', 'last_name': 'Kumar', 'permalink': 'neil-kumar'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Sales Director', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Marketing Consultant', 'person': {'first_name': 'Jeremy', 'last_name': 'Krantz', 'permalink': 'jeremy-krantz'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Emile', 'last_name': 'Petrone', 'permalink': 'emile-petrone'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Jae', 'last_name': 'Kwon', 'permalink': 'jae-kwon'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Mueller', 'permalink': 'jason-mueller'}}, {'is_past': True, 'title': 'Senior Business Intelligence Analyst', 'person': {'first_name': 'Nikhil', 'last_name': 'Nirmel', 'permalink': 'nikhil-nirmel-2'}}, {'is_past': True, 'title': 'Regional Marketing Director', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Key Account Executive', 'person': {'first_name': 'Stephen', 'last_name': 'Smith', 'permalink': 'stephen-smith-2'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Director of Sales / West', 'person': {'first_name': 'Amanda', 'last_name': 'Levy', 'permalink': 'amanda-levy'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mamoon', 'last_name': 'Hamid', 'permalink': 'mamoon-hamid'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Kenji', 'last_name': 'Kaneko', 'permalink': 'kenji-kaneko'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kyle', 'last_name': 'Killion', 'permalink': 'kyle-killion'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Robertson', 'permalink': 'tim-robertson'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Director of Consumer & Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'John', 'last_name': 'Lin', 'permalink': 'john-lin-2'}}], 'competitions': [{'competitor': {'name': 'Insider Pages', 'permalink': 'insiderpages'}}, {'competitor': {'name': 'Viewpoints', 'permalink': 'viewpoints'}}, {'competitor': {'name': 'Judys Book', 'permalink': 'judysbook'}}, {'competitor': {'name': 'LocoGopher', 'permalink': 'locogopher'}}, {'competitor': {'name': 'Citysearch', 'permalink': 'citysearch'}}, {'competitor': {'name': 'Zvents', 'permalink': 'zvents'}}, {'competitor': {'name': 'Upcoming', 'permalink': 'upcoming'}}, {'competitor': {'name': 'Tipped', 'permalink': 'tipped'}}, {'competitor': {'name': 'GenieTown', 'permalink': 'genietown'}}, {'competitor': {'name': 'YellowPages', 'permalink': 'yellowpages'}}, {'competitor': {'name': 'YellowBot', 'permalink': 'yellowbot'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'CitySquares', 'permalink': 'citysquares'}}, {'competitor': {'name': 'Loladex', 'permalink': 'loladex'}}, {'competitor': {'name': 'Pelago', 'permalink': 'pelago'}}, {'competitor': {'name': 'Notches', 'permalink': 'notches'}}, {'competitor': {'name': 'Kudzu', 'permalink': 'kudzu'}}, {'competitor': {'name': 'TriValleyBook', 'permalink': 'trivalleybook'}}, {'competitor': {'name': 'BooRah', 'permalink': 'boorah'}}, {'competitor': {'name': 'TrustedPlaces', 'permalink': 'trustedplaces'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'Outalot', 'permalink': 'outalot'}}, {'competitor': {'name': 'Tupalo', 'permalink': 'tupalo'}}, {'competitor': {'name': 'RateItAll', 'permalink': 'rateitall'}}, {'competitor': {'name': 'ApartmentRatings', 'permalink': 'apartmentratings'}}, {'competitor': {'name': 'Zagat', 'permalink': 'zagat'}}, {'competitor': {'name': 'AroundMe', 'permalink': 'aroundme'}}, {'competitor': {'name': 'LocalPrice', 'permalink': 'localprice'}}, {'competitor': {'name': 'burrp!', 'permalink': 'burrp'}}, {'competitor': {'name': 'Shustir', 'permalink': 'shustir'}}, {'competitor': {'name': 'Koko', 'permalink': 'koko'}}, {'competitor': {'name': 'Redbeacon', 'permalink': 'redbeacon'}}, {'competitor': {'name': 'Thumbtack', 'permalink': 'thumbtack'}}, {'competitor': {'name': 'Tellmewhere', 'permalink': 'tellmewhere'}}, {'competitor': {'name': 'Trusted Opinion', 'permalink': 'trustedopinion'}}, {'competitor': {'name': 'Geodruid', 'permalink': 'geodruid'}}, {'competitor': {'name': 'Foursquare', 'permalink': 'foursquare'}}, {'competitor': {'name': 'Explore.To Yellow Pages', 'permalink': 'explore-to-yellow-pages'}}, {'competitor': {'name': 'FindAPro.com', 'permalink': 'findapro'}}, {'competitor': {'name': 'Dish.fm', 'permalink': 'dish-fm'}}, {'competitor': {'name': 'Compass (by Hugleberry Corp.)', 'permalink': 'hugleberry'}}, {'competitor': {'name': 'AlterGeo', 'permalink': 'altergeo'}}, {'competitor': {'name': 'Semadic', 'permalink': 'semadic-com'}}, {'competitor': {'name': 'DinnDinn', 'permalink': 'dinndinn'}}, {'competitor': {'name': 'ComplaintsBoard.com', 'permalink': 'complaintsboard-com'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The Local Data Company', 'permalink': 'the-local-data-company'}}, {'title': '', 'is_past': False, 'provider': {'name': 'RatePoint', 'permalink': 'ratepoint'}}], 'total_money_raised': '$90M', 'funding_rounds': [{'id': 95, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2006/10/04/local-review-site-yelp-raises-10-million-from-benchmark/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 96, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 293, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}]}, {'id': 1648, 'round_code': 'd', 'source_url': 'http://www.paidcontent.org/entry/419-user-reviews-site-yelp-raises-15-million', 'source_description': 'User Reviews Site Yelp Raises $15 Million Fourth Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}, {'id': 11626, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2010/01/27/update-elevation-to-invest-as-much-as-100-million-in-yelp/', 'source_description': 'TechCrunch', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Elevation Partners', 'permalink': 'elevation-partners'}, 'person': None}]}, {'id': 42197, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864912000008/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 25250029, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 7, 'investments': []}, {'id': 44472, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864913000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 8719311, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/10/24/yelp-pays-50m-to-acquire-its-big-european-rival-qype/', 'source_description': 'Yelp Pays $50M To Acquire Its Big European Rival, Qype, To Beef Up Its Recommendations And Listings Business', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 25, 'company': {'name': 'Qype', 'permalink': 'qype'}}, {'price_amount': 12700000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/18/yelp-acquires-online-reservation-service-seatme/', 'source_description': 'Yelp To Acquire Online Reservation Service SeatMe For Up To $12.7M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'SeatMe', 'permalink': 'seatme'}}], 'offices': [{'description': '', 'address1': '706 Mission Street', 'address2': '7th Floor', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.786183, 'longitude': -122.402195}], 'milestones': [{'id': 5336, 'description': 'Yelp Launches in France\\r\\n', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/yelp-launches-in-france-92908424.html', 'source_text': 'AN FRANCISCO, May 5 /PRNewswire/ -- Yelp (http://www.yelp.com), the community-led local search site, today announced the availability of Yelp France (http://www.yelp.fr). Representing its first non-English speaking country, people in France can now use Yelp.fr to read and share reviews about great local businesses in their native language. Additionally, Yelp users everywhere will have the option to view Yelp\\'s interface in French or English, as well as write and access reviews in these supported languages via a link at the bottom of any business listing.\\r\\n(Logo: http://www.newscom.com/cgi-bin/prnh/20050511/SFW134LOGO)\\r\\n\\r\\n\"France is a country steeped in rich culinary, artistic and cultural traditions. Considering this heritage, it represents the next logical destination for Yelp, which is all about connecting people with great local businesses,\" said Jeremy Stoppelman, co-founder and CEO. \"Today\\'s launch represents an exciting step for us and we are committed to making Yelp France the go-to resource for locals to share their knowledge and opinions with one another.\"\\r\\n\\r\\nThe launch of Yelp France underscores the site\\'s increased effort towards broader availability in Europe. In April 2010, one million unique visitors consulted Yelp UK and Yelp Ireland, with the vast majority of that traffic coming from London. Reaching one million unique visitors after 16 months is an even faster growth rate than Yelp experienced in its first U.S. market of San Francisco and a strong indicator that Yelp is poised to gain the same type of traction in Europe.\\r\\n\\r\\nYelp for iPhone and Yelp for Business Owners will be available shortly after the launch of Yelp.fr.\\r\\n\\r\\nAbout Yelp! Inc.', 'source_description': 'Yelp Launches in France ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 8051, 'description': \"Yelp named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 13945, 'description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://techcrunch.com/2011/04/04/yelp-now-drawing-50-million-users-a-month-to-its-17-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 16471, 'description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2011/07/15/yelp-20-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 19293, 'description': 'Yelp Files For IPO To Raise $100 Million', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/11/17/yelp-files-for-100-million-ipo/', 'source_text': '', 'source_description': 'Yelp Files For IPO To Raise $100 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 21391, 'description': 'Yelp sets terms for $93 mil IPO', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 16, 'source_url': 'http://www.renaissancecapital.com/ipohome/news/Reviews-website-Yelp-sets-IPO-terms-seeking-$93-million-11067.html', 'source_text': None, 'source_description': 'Reviews website Yelp sets IPO terms, seeking $93 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}], 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 75], 'assets/images/resized/0024/5749/245749v2-max-150x150.png'], [[250, 125], 'assets/images/resized/0024/5749/245749v2-max-250x250.png'], [[450, 226], 'assets/images/resized/0024/5749/245749v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Yelp,_Inc.', 'title': 'Wikipedia page'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de1'), 'name': 'Jaiku', 'permalink': 'jaiku', 'crunchbase_url': 'http://www.crunchbase.com/company/jaiku', 'homepage_url': 'http://www.jaiku.com', 'blog_url': 'http://www.jaiku.com/blog', 'blog_feed_url': 'http://jaikido.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'mobile', 'number_of_employees': 8, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2012, 'deadpooled_month': 1, 'deadpooled_day': 15, 'deadpooled_url': 'http://googleblog.blogspot.com/2011/10/fall-sweep.html', 'tag_list': 'mobil, mobile', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Jul 10 08:51:57 UTC 2007', 'updated_at': 'Wed Jun 13 18:24:06 UTC 2012', 'overview': '

Founded in July 2006 by Jyri Engestrom and Petteri Kopponen, Jaiku is a micro-blogging and social networking site based in Finland. As a free service, it allows users to post thoughts, or “Jaikus,” via the web or using the Nokia S60 mobile phone. Users’ “stream” of Jaikus can be made either public or private. By allowing people to check their friends’ posts or to update their own micro-blog stream, Jaiku can be used as a way for individuals to remain in constant contact with others. Both Twitter and Pownce can be identified as close competitors to Jaiku.

\\n\\n

In 2007 Jaiku was acquired by Google.

', 'image': {'available_sizes': [[[150, 106], 'assets/images/resized/0001/3579/13579v6-max-150x150.jpg'], [[250, 178], 'assets/images/resized/0001/3579/13579v6-max-250x250.jpg'], [[450, 320], 'assets/images/resized/0001/3579/13579v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Jaiku', 'permalink': 'jaiku'}], 'relationships': [{'is_past': True, 'title': 'Co-Founder & Chairman', 'person': {'first_name': 'Jyri', 'last_name': 'Engestrom', 'permalink': 'jyri-engestrom'}}, {'is_past': True, 'title': 'Co - Founder / CEO', 'person': {'first_name': 'Petteri', 'last_name': 'Koponen', 'permalink': 'petteri-koponen'}}], 'competitions': [{'competitor': {'name': 'Twitter', 'permalink': 'twitter'}}, {'competitor': {'name': 'Pownce', 'permalink': 'pownce'}}, {'competitor': {'name': 'Loopt', 'permalink': 'loopt'}}, {'competitor': {'name': 'trymehere', 'permalink': 'trymehere'}}, {'competitor': {'name': 'spotengine', 'permalink': 'spotengine-inc'}}, {'competitor': {'name': 'Shoutitout', 'permalink': 'shoutitout'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/10/09/google-takes-jaiku-to-the-altar/', 'source_description': 'Google buys Jaiku, Twitter losing ground', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Lannrotinkatu 32 D 51, 00180', 'address2': '', 'zip_code': '', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': 60.16377, 'longitude': 24.93105}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3549/43549v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3549/43549v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3549/43549v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de4'), 'name': 'Yapta', 'permalink': 'yapta', 'crunchbase_url': 'http://www.crunchbase.com/company/yapta', 'homepage_url': 'http://www.yapta.com', 'blog_url': 'http://blog.yapta.com/', 'blog_feed_url': '', 'twitter_username': 'yapta', 'category_code': 'travel', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'travel, airfare, airline', 'alias_list': '', 'email_address': 'info@yapta.com', 'phone_number': '', 'description': 'Flight Price Tracking Service', 'created_at': 'Wed Jul 11 07:30:01 UTC 2007', 'updated_at': 'Thu Dec 26 03:51:43 UTC 2013', 'overview': '

Yapta is a travel Website and browser add-on that lets you track flight prices as they change and alerts you when the price for a particular flight drops. It also helps you get a refund or credit from airlines with guaranteed low-price policies.

', 'image': {'available_sizes': [[[150, 57], 'assets/images/resized/0000/2395/2395v1-max-150x150.png'], [[200, 77], 'assets/images/resized/0000/2395/2395v1-max-250x250.png'], [[200, 77], 'assets/images/resized/0000/2395/2395v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Yapta Tagger', 'permalink': 'yapta-tagger'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'James', 'last_name': 'Filsinger', 'permalink': 'james-filsinger'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Jerry', 'last_name': 'McGuire', 'permalink': 'jerry-mcguire'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Valerie', 'last_name': 'Layman', 'permalink': 'valerie-layman'}}, {'is_past': False, 'title': 'Vice President of Sales', 'person': {'first_name': 'Roger', 'last_name': 'Gould', 'permalink': 'roger-gould'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Matt', 'last_name': 'Hulett', 'permalink': 'matt-hulett'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'Hilton', 'permalink': 'mike-hilton'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Andy', 'last_name': 'Chen', 'permalink': 'andy-chen'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Alan', 'last_name': 'Lippman', 'permalink': 'alan-lippman'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Bill', 'last_name': 'McAleer', 'permalink': 'bill-mcaleer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Falter', 'permalink': 'david-falter'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Wilson', 'permalink': 'scott-wilson'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Tom', 'last_name': 'Kippola', 'permalink': 'tom-kippola'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Rob', 'last_name': 'Solomon', 'permalink': 'rob-solomon'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'John', 'last_name': 'Lusk', 'permalink': 'john-lusk'}}, {'is_past': True, 'title': 'Vice President, Products & Engineering', 'person': {'first_name': 'Karim', 'last_name': 'Meghji', 'permalink': 'karim-meghji'}}, {'is_past': True, 'title': 'Marketing & Strategy Executive / Advisor', 'person': {'first_name': 'Julie', 'last_name': 'McGinnis', 'permalink': 'julie-mcginnis'}}, {'is_past': True, 'title': 'Senior Consultant / Advisory Board Member', 'person': {'first_name': 'Dave', 'last_name': 'Pelter', 'permalink': 'dave-pelter'}}], 'competitions': [{'competitor': {'name': 'Farecast', 'permalink': 'farecast'}}, {'competitor': {'name': 'airfarewatchdog.com', 'permalink': 'airfarewatchdog-com'}}], 'providerships': [], 'total_money_raised': '$24.3M', 'funding_rounds': [{'id': 112, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 2300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Voyager Capital', 'permalink': 'voyager-capital'}, 'person': None}]}, {'id': 113, 'round_code': 'seed', 'source_url': 'http://www.techflash.com/venture/Yapta_raises_27_million_to_develop_new_airfare_tracking_features36080544.html', 'source_description': 'Yapta raises $2.7 million to develop new airfare tracking features', 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': []}, {'id': 4139, 'round_code': 'b', 'source_url': 'http://www.techflash.com/venture/Yapta_raises_27_million_to_develop_new_airfare_tracking_features36080544.html', 'source_description': 'Yapta raises $2.7 million to develop new airfare tracking features', 'raised_amount': 2700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 12, 'funded_day': 12, 'investments': []}, {'id': 6925, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2009/06/25/yapta-lands-2m-to-track-airfare-and-hotel-prices/', 'source_description': 'Yapta lands $2M to track airfare and hotel prices', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Voyager Capital', 'permalink': 'voyager-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Swiftsure Capital', 'permalink': 'swiftsure-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'W Media Ventures', 'permalink': 'w-media-ventures'}, 'person': None}]}, {'id': 13698, 'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1377299/000137729910000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 28, 'investments': []}, {'id': 20706, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/12/29/flight-and-hotel-price-tracking-startup-yapta-is-raising-a-6-4-million-round/', 'source_description': 'Flight And Hotel Price Tracking Startup Yapta Is Raising A $6.4 Million Round', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 29, 'investments': []}, {'id': 24280, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/07/20/tripit-owner-concur-invests-5-million-in-flight-price-tracker-yapta/', 'source_description': 'TripIt Owner Concur Invests $5 Million In Flight Price Tracker Yapta', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 20, 'investments': [{'company': {'name': 'Concur Technologies', 'permalink': 'concur-technologies'}, 'financial_org': None, 'person': None}]}, {'id': 41163, 'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1377299/000137729913000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 1150000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 4, 'investments': []}, {'id': 43437, 'round_code': 'd', 'source_url': 'http://www.finsmes.com/2013/07/yapta-raises-4-2m-series-funding.html', 'source_description': 'Yapta Raises $4.2M In Series D Funding', 'raised_amount': 4220000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 22, 'investments': []}, {'id': 54596, 'round_code': 'd', 'source_url': 'http://www.finsmes.com/2013/11/yapta-raises-additional-2m-series-financing.html', 'source_description': 'Yapta Raises Additional $2M in Series D Financing', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'investments': [{'company': {'name': 'Concur Technologies', 'permalink': 'concur-technologies'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Amadeus', 'permalink': 'amadeus'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '315 1st Avenue S', 'address2': 'Floor 3', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.599925, 'longitude': -122.334264}, {'description': '', 'address1': '159 Jackson Street', 'address2': '', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator TV: 10/2008

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3550/43550v1-max-150x150.png'], [[250, 155], 'assets/images/resized/0004/3550/43550v1-max-250x250.png'], [[450, 280], 'assets/images/resized/0004/3550/43550v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de7'), 'name': 'Fleck', 'permalink': 'fleck', 'crunchbase_url': 'http://www.crunchbase.com/company/fleck', 'homepage_url': 'http://www.fleck.com', 'blog_url': 'http://blog.fleck.com', 'blog_feed_url': 'http://blog.fleck.com/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 3, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 10, 'deadpooled_day': 16, 'deadpooled_url': 'http://www.techcrunch.com/2008/10/16/fleck-headed-to-the-deadpool-because-nobody-wants-to-annotate-the-web/', 'tag_list': 'fleck, notes, annotations', 'alias_list': None, 'email_address': 'fleckhelp@gmail.com', 'phone_number': '+31621811784', 'description': None, 'created_at': 'Tue Feb 05 22:28:16 UTC 2008', 'updated_at': 'Wed May 12 20:25:36 UTC 2010', 'overview': '

Based in The Netherlands, Fleck is a simple service that lets users post public or private text notes on webpages. Notes can be posted by using a browser plugin or by ajax when Fleck feeds web pages through its servers and adds the necessary annotation code. Permalinks to annotated pages can be emailed to friends and posted to blogs.

\\n\\n

Other web annotation services include Trailfire, Diigo and ShiftSpace

', 'image': {'available_sizes': [[[104, 100], 'assets/images/resized/0000/2515/2515v1-max-150x150.png'], [[104, 100], 'assets/images/resized/0000/2515/2515v1-max-250x250.png'], [[104, 100], 'assets/images/resized/0000/2515/2515v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Fleck.com', 'permalink': 'fleck-com'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Boris', 'last_name': 'Veldhuijzen van Zanten', 'permalink': 'boris-veldhuijzen-van-zanten'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Arjen', 'last_name': 'Schat', 'permalink': 'arjen-schat'}}], 'competitions': [{'competitor': {'name': 'Reframe It', 'permalink': 'reframe-it'}}, {'competitor': {'name': 'ShiftSpace', 'permalink': 'shiftspace'}}, {'competitor': {'name': 'Trailfire', 'permalink': 'trailfire'}}, {'competitor': {'name': 'Stickis', 'permalink': 'stickis'}}], 'providerships': [], 'total_money_raised': '€225k', 'funding_rounds': [{'id': 101, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 225000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Oosterdokskade 5', 'address2': None, 'zip_code': '1017TE', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.375595, 'longitude': 4.908556}], 'milestones': [{'id': 5232, 'description': 'Discontinued May 2010', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 10, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Fleck', 'permalink': 'fleck'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297deb'), 'name': 'SideStep', 'permalink': 'sidestep', 'crunchbase_url': 'http://www.crunchbase.com/company/sidestep', 'homepage_url': 'http://www.sidestep.com', 'blog_url': None, 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 75, 'founded_year': 1999, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'deals, travel, flights, hotels, tickets, vacation, travel-comparison, travel-search', 'alias_list': None, 'email_address': None, 'phone_number': '408-235-1700', 'description': None, 'created_at': 'Wed Jul 11 02:50:10 UTC 2007', 'updated_at': 'Thu Jan 13 02:41:17 UTC 2011', 'overview': '

SideStep is a metasearch engine for travel which makes money through advertising and referral fees. It searches more than 200 websites looking for the best travel deals.

\\n\\n

SideStep has recently been aggressive in building up its offerings. They acquired TripUp (a social network focused on travel) and TravelPost.com (a hotel ratings site) with the goal of becoming “the leader in online travel related information.” In addition, they have launched two Facebook applications. The Trips Facebook application provides a trip planning service that currently has over 150,000 users. The Extended Info application allows users to add fields and categories of their own choice to a Facebook profile. SideStep is also developing a Facebook App for TripUp that should be launched later in the year.

\\n\\n

SideStep was acquired in December 2007 by their nearest competitor Kayak for roughly $180,000,000.

\\n\\n

Other popular travel metasearch sites and SideStep competitors include Cheapflights, Farechase, Mobissimo and Qixo.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/2569/2569v1-max-150x150.png'], [[168, 59], 'assets/images/resized/0000/2569/2569v1-max-250x250.png'], [[168, 59], 'assets/images/resized/0000/2569/2569v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SideStep', 'permalink': 'sidestep'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Brian', 'last_name': 'Barth', 'permalink': 'brian-barth'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Robert', 'last_name': 'Soloman', 'permalink': 'robert-soloman'}}, {'is_past': True, 'title': 'President & Chief Executive Officer', 'person': {'first_name': 'Rob', 'last_name': 'Solomon', 'permalink': 'rob-solomon'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Eric', 'last_name': 'Rosenzweig', 'permalink': 'eric-rosenzweig'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Sam', 'last_name': 'Shank', 'permalink': 'sam-shank'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Natraj', 'last_name': 'Gujran', 'permalink': 'natraj-gujran'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'Robert', 'last_name': 'Abbott', 'permalink': 'robert-abbott'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Khaitan', 'permalink': 'rishi-khaitan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Johnson', 'permalink': 'mark-johnson-4'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Ian', 'last_name': 'White', 'permalink': 'ian-white-2'}}, {'is_past': True, 'title': 'Board member', 'person': {'first_name': 'Woody', 'last_name': 'Marshall', 'permalink': 'woody-marshall'}}], 'competitions': [{'competitor': {'name': 'Mobissimo', 'permalink': 'mobissimo'}}, {'competitor': {'name': 'TripUp', 'permalink': 'tripup'}}, {'competitor': {'name': 'Farecast', 'permalink': 'farecast'}}, {'competitor': {'name': 'Orbitz Worldwide', 'permalink': 'orbitz'}}, {'competitor': {'name': 'Cheapflights', 'permalink': 'cheapflights'}}], 'providerships': [], 'total_money_raised': '$32M', 'funding_rounds': [{'id': 105, 'round_code': 'c', 'source_url': 'http://news.com.com/2110-1038_3-6156937.html?part=rss', 'source_description': None, 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Leader Ventures', 'permalink': 'leader-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Norwest Venture Partners', 'permalink': 'norwest-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Saints Capital', 'permalink': 'saints-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trident Capital', 'permalink': 'trident-capital'}, 'person': None}]}, {'id': 107, 'round_code': 'b', 'source_url': 'http://www.sidestep.com/html/press_center/press_releases/2004/pr_010604.html', 'source_description': None, 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Trident Capital', 'permalink': 'trident-capital'}, 'person': None}]}, {'id': 226, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 2200000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}, {'id': 227, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 6800000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 180000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.xconomy.com/2007/12/21/kayak-sidestep-will-travel-together-in-rare-east-buys-west-acquisition/', 'source_description': 'xconomy', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': 1, 'acquiring_company': {'name': 'KAYAK', 'permalink': 'kayak'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '2980 Bowers Ave.', 'address2': None, 'zip_code': '95051', 'city': 'Santa Clara', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.374998, 'longitude': -121.977853}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'permalink': 'rockyou', 'crunchbase_url': 'http://www.crunchbase.com/company/rockyou', 'homepage_url': 'http://www.rockyou.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'rockyoulive', 'category_code': 'games_video', 'number_of_employees': 106, 'founded_year': 2005, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'widgets, photos, avatars, countdown, horoscope, voicemail, rockyou, facebook, highoktane', 'alias_list': 'netpickle', 'email_address': '', 'phone_number': '650-344-4016', 'description': 'Social Gaming Company', 'created_at': 'Wed Jul 11 09:27:43 UTC 2007', 'updated_at': 'Tue Dec 03 09:30:43 UTC 2013', 'overview': '

RockYou® is committed to defining the future of social gaming, creating products intended to serve players, advertisers, and developers alike. The company has dedicated itself to the development of high-quality games, including the award-nominated Gourmet Ranchâ„¢ and the celebrated Zoo Worldâ„¢ franchise. With advertising products that offer brands more meaningful interactions with players, RockYou creates an unmatched value-per-engagement for both brands and users. RockYou’s partnerships with world-class talent are part of their steadfast commitment to working with the next generation of social game developers. \\nFounded in 2005 and headquartered in Redwood City, California, RockYou is funded by Sequoia Capital, Partech International, Lightspeed Venture Partners, DCM and Softbank. More information at www.rockyou.com.

', 'image': {'available_sizes': [[[141, 36], 'assets/images/resized/0009/0962/90962v1-max-150x150.png'], [[141, 36], 'assets/images/resized/0009/0962/90962v1-max-250x250.png'], [[141, 36], 'assets/images/resized/0009/0962/90962v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'RockYou', 'permalink': 'rockyou'}, {'name': 'Studio Partners', 'permalink': 'studio-partners'}], 'relationships': [{'is_past': False, 'title': 'CEO, RockYou Asia', 'person': {'first_name': 'Jia', 'last_name': 'Shen', 'permalink': 'jia-shen'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lisa', 'last_name': 'Marino', 'permalink': 'lisa-marino'}}, {'is_past': False, 'title': 'SVP and General Manager of Rewards Based Games', 'person': {'first_name': 'Manu', 'last_name': 'Gambhir', 'permalink': 'manu-gambhir'}}, {'is_past': False, 'title': 'SVP of Corporate Development & Strategy', 'person': {'first_name': 'Josh', 'last_name': 'Grant', 'permalink': 'josh-grant'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lehmann', 'permalink': 'john-lehmann'}}, {'is_past': False, 'title': 'Business Development/Marketing', 'person': {'first_name': 'Karina', 'last_name': 'Paje', 'permalink': 'karina-paje'}}, {'is_past': False, 'title': 'VP of Product for RockYou Media', 'person': {'first_name': 'Peter', 'last_name': 'Everett', 'permalink': 'peter-everett'}}, {'is_past': False, 'title': 'Advisor / Angel Investor', 'person': {'first_name': 'Saar', 'last_name': 'Gur', 'permalink': 'saar-gur'}}, {'is_past': True, 'title': 'CEO & Co-Founder', 'person': {'first_name': 'Lance', 'last_name': 'Tokuda', 'permalink': 'lance-tokuda'}}, {'is_past': True, 'title': 'CRO', 'person': {'first_name': 'Ro', 'last_name': 'Choy', 'permalink': 'ro-choy'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Steven', 'last_name': 'Van Horne', 'permalink': 'steven-van-horne'}}, {'is_past': True, 'title': 'SVP RockYou Media', 'person': {'first_name': 'Sandy', 'last_name': 'Diep', 'permalink': 'sandy-diep'}}, {'is_past': True, 'title': 'SVP of Technology', 'person': {'first_name': 'Greg', 'last_name': 'Kearney', 'permalink': 'greg-kearney'}}, {'is_past': True, 'title': 'SVP of Games', 'person': {'first_name': 'Jonathan', 'last_name': 'Knight', 'permalink': 'jonathan-knight'}}, {'is_past': True, 'title': 'Vice President, Ad Network Sales ,,, Senior Director, International', 'person': {'first_name': 'Randall', 'last_name': 'Lloyd', 'permalink': 'randall-lloyd'}}, {'is_past': True, 'title': 'SVP of Technology', 'person': {'first_name': 'Rogelio', 'last_name': 'Choy', 'permalink': 'rogelio-choy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Poler', 'permalink': 'ariel-poler'}}, {'is_past': True, 'title': 'VP Ad Network', 'person': {'first_name': 'Mihir', 'last_name': 'Shah', 'permalink': 'mihir-shah'}}, {'is_past': True, 'title': 'SVP/General Counsel', 'person': {'first_name': 'Allyson', 'last_name': 'Willoughby', 'permalink': 'allyson-willoughby'}}, {'is_past': True, 'title': 'Head of HR', 'person': {'first_name': 'Kelli', 'last_name': 'Dragovich', 'permalink': 'kelli-dragovich'}}, {'is_past': True, 'title': 'Art Director', 'person': {'first_name': 'Ryan', 'last_name': 'Kirkman', 'permalink': 'ryan-kirkman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Greg', 'last_name': 'McAdoo', 'permalink': 'greg-mcadoo'}}, {'is_past': True, 'title': 'Facebook Platform Architect', 'person': {'first_name': 'ibrahim', 'last_name': 'okuyucu', 'permalink': 'ibrahim-okuyucu'}}, {'is_past': True, 'title': 'GM/SVP of RockYou Media', 'person': {'first_name': 'Julie', 'last_name': 'Shumaker', 'permalink': 'julie-shumaker'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Tim', 'last_name': 'Clarke', 'permalink': 'tim-clarke'}}, {'is_past': True, 'title': 'GM, Publishing Manager, Senior Developer', 'person': {'first_name': 'Tong', 'last_name': 'Xu', 'permalink': 'tong-xu'}}], 'competitions': [{'competitor': {'name': 'Slide', 'permalink': 'slide'}}, {'competitor': {'name': 'Flektor', 'permalink': 'flektor'}}, {'competitor': {'name': 'PlayFirst', 'permalink': 'playfirst'}}, {'competitor': {'name': 'Widgetbox', 'permalink': 'widgetbox'}}, {'competitor': {'name': 'Mixercast', 'permalink': 'mixercast'}}, {'competitor': {'name': 'Lindotiger', 'permalink': 'lindotiger'}}, {'competitor': {'name': 'Oosah', 'permalink': 'oosah'}}, {'competitor': {'name': 'Mugsho', 'permalink': 'mugsho'}}, {'competitor': {'name': 'LabPixies', 'permalink': 'labpixies'}}, {'competitor': {'name': 'Capzles', 'permalink': 'capzles'}}, {'competitor': {'name': 'Animoto', 'permalink': 'animoto'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Raj Abhyanker LLP', 'permalink': 'raj-abhyanker-llp'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'TriplePoint', 'permalink': 'triplepoint'}}], 'total_money_raised': '$136M', 'funding_rounds': [{'id': 115, 'round_code': 'a', 'source_url': 'http://www.siliconbeat.com/entries/2006/06/19/sequoia_invests_15_in_slideshow_startup_rockyou_other_valley_news.html', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 116, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2007/03/05/more-information-on-rockyou-financing/', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Partech Ventures', 'permalink': 'partech-international'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 2539, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/06/09/slide-got-theirs-now-rockyou-gets-some-too/', 'source_description': 'Slide Got Theirs, Now RockYou Gets Some Too', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'DCM', 'permalink': 'dcm'}, 'person': None}]}, {'id': 3789, 'round_code': 'c', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 11, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'SK Telecom Ventures', 'permalink': 'sk-telecom-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 9592, 'round_code': 'd', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 16129, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/06/07/rockyou-raises-another-10-million-to-expand-presence-in-asia/', 'source_description': 'RockYou Raises Another $10 Million To Expand Presence In Asia', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 7, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 36295, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 45110, 'round_code': 'e', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1439538/000143953812000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 6755336, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 6, 'funded_day': 22, 'investments': []}, {'id': 53462, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'VC Funding: Q4 2012', 'raised_amount': 1210000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Partech Ventures', 'permalink': 'partech-international'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DCM', 'permalink': 'dcm'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Shawn V.', 'last_name': 'Gruver', 'permalink': 'shawn-gruver'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/13/rockyou-playdemic/', 'source_description': 'RockYou Buys UK-Based Social Gaming Startup Playdemic', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 13, 'company': {'name': 'Playdemic', 'permalink': 'playdemic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/01/rockyou-buys-developer-studio-3-blokes-to-build-social-combat-games-on-facebook/', 'source_description': 'RockYou Buys Studio 3 Blokes To Build Social Combat Games On Facebook', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': '3 Blokes Studios', 'permalink': '3-blokes-studios'}}], 'offices': [{'description': '', 'address1': '585 Broadway', 'address2': 'Suite A', 'zip_code': '94063', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.484619, 'longitude': -122.206893}], 'milestones': [{'id': 837, 'description': 'Japanese mobile giant SoftBank and Korean telecom investment company SK Telecom Ventures have invested $17 million to create a new joint venture to build apps for the Asia-Pacific market.', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 3, 'source_url': 'http://news.cnet.com/8301-13577_3-10080841-36.html?tag=mncol;title', 'source_text': '', 'source_description': 'RockYou looks to Asia with new $17 million investment', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'id': 3147, 'description': 'RockYou is hit with a Class Action Lawsuit for poor security measures', 'stoned_year': 2009, 'stoned_month': 12, 'stoned_day': 30, 'source_url': 'http://www.wired.com/threatlevel/2009/12/facebook-app-data-breach/', 'source_text': '', 'source_description': 'Facebook App Maker Hit With Data-Breach Class Action', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'id': 15377, 'description': 'RockYou announced the acquisition of social game developer 3 Blokes. Based in Brisbane, Australia, 3 Blokes will operate independently as a RockYou studio and develop strategy and combat-driven Facebook games. RockYou is expanding its studio system to sup', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 1, 'source_url': 'http://verticalwire.com/releases/2208-rockyou-acquires-social-game-developer-playdemic', 'source_text': None, 'source_description': 'RockYou® Acquires 3 Blokes Game Development Studio', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Robert Scoble interviews RockYou

'}, {'embed_code': '', 'description': '

FaceReviews - CEO Lance Toduka - Part 1

'}, {'embed_code': '', 'description': '

FaceReviews - CEO Lance Toduka - Part 2 man superslow painfull interviewer. wow bad

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 82], 'assets/images/resized/0009/4029/94029v1-max-150x150.jpg'], [[250, 138], 'assets/images/resized/0009/4029/94029v1-max-250x250.jpg'], [[450, 248], 'assets/images/resized/0009/4029/94029v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://venturebeat.com/2008/05/21/rockyou-between-a-funding-rock-and-an-acquisition/', 'title': 'RockYou between a funding rock and an acquisition'}, {'external_url': 'http://www.socialgamesobserver.com/rockyou-acquires-tirnua-3383', 'title': 'RockYou Acquires TirNua'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df3'), 'name': 'Instructables', 'permalink': 'instructables', 'crunchbase_url': 'http://www.crunchbase.com/company/instructables', 'homepage_url': 'http://www.instructables.com', 'blog_url': 'http://www.instructables.com/news', 'blog_feed_url': '', 'twitter_username': 'instructables', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 8, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@instructables.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 11 11:48:08 UTC 2007', 'updated_at': 'Fri Mar 15 19:37:01 UTC 2013', 'overview': '

Instructables is a site developed by Squid Labs, a lab whose focus is on technical innovation and whose founders were once part of the MIT Media Lab. Instructables provides a forum for personal creativity, as it allows users to post instructions to describe how they created something. The concept of Instructables has been in the works for over five years, and has evolved from a platform initally called iFabricate that was developed in late 2004.

', 'image': {'available_sizes': [[[150, 48], 'assets/images/resized/0001/1058/11058v2-max-150x150.jpg'], [[250, 80], 'assets/images/resized/0001/1058/11058v2-max-250x250.jpg'], [[250, 80], 'assets/images/resized/0001/1058/11058v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Instructables', 'permalink': 'instructables'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Eric', 'last_name': 'Wilhelm', 'permalink': 'eric-wilhelm'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Jeff', 'last_name': 'Feldman', 'permalink': 'jeff-feldman'}}, {'is_past': False, 'title': 'Interaction Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Nguyen', 'permalink': 'eric-nguyen'}}, {'is_past': False, 'title': 'Head of Production', 'person': {'first_name': 'Noah', 'last_name': 'Weinstein', 'permalink': 'noah-weinstein'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Poler', 'permalink': 'ariel-poler'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Christy', 'last_name': 'Canida', 'permalink': 'christy-canida'}}, {'is_past': False, 'title': 'Senior Software Developer', 'person': {'first_name': 'Rachel', 'last_name': 'McConnell', 'permalink': 'rachel-mcconnell'}}, {'is_past': False, 'title': 'Director of Products', 'person': {'first_name': 'Cloude', 'last_name': 'Porteus', 'permalink': 'cloude-porteus'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Mark', 'last_name': 'Jacobsen', 'permalink': 'mark-jacobsen'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Lisa', 'last_name': 'Gansky', 'permalink': 'lisa-gansky'}}], 'competitions': [{'competitor': {'name': 'SuTree', 'permalink': 'sutree'}}, {'competitor': {'name': 'Expert Village', 'permalink': 'expertvillage'}}, {'competitor': {'name': '5min Media', 'permalink': '5min'}}, {'competitor': {'name': 'Howcast', 'permalink': 'howcast'}}, {'competitor': {'name': 'Monkeysee', 'permalink': 'monkeysee'}}, {'competitor': {'name': 'WonderHowTo', 'permalink': 'wonderhowto'}}, {'competitor': {'name': 'FindHow.com', 'permalink': 'findhow'}}, {'competitor': {'name': 'wikiHow', 'permalink': 'wikihow'}}, {'competitor': {'name': 'About.com', 'permalink': 'about-com'}}, {'competitor': {'name': 'Tipstrs', 'permalink': 'tipstrs'}}, {'competitor': {'name': 'eHow', 'permalink': 'ehow'}}, {'competitor': {'name': 'HowStuffWorks', 'permalink': 'howstuffworks'}}, {'competitor': {'name': 'WatchDoit', 'permalink': 'watchdoit'}}, {'competitor': {'name': 'NeedInstructions.com', 'permalink': 'need-instructions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/01/autodesk-acquires-diy-community-instructables/', 'source_description': 'Autodesk Acquires DIY Community Instructables', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'acquiring_company': {'name': 'Autodesk', 'permalink': 'autodesk'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '489 Clementina St.', 'address2': '', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7791761, 'longitude': -122.4058887}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'permalink': 'netvibes', 'crunchbase_url': 'http://www.crunchbase.com/company/netvibes', 'homepage_url': 'http://www.netvibes.com', 'blog_url': 'http://blog.netvibes.com/', 'blog_feed_url': 'http://blog.netvibes.com//rss.php', 'twitter_username': 'netvibes', 'category_code': 'web', 'number_of_employees': 35, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'homepage, ajaxhomepage, ajax, startpage, pageflakes, france', 'alias_list': '', 'email_address': 'feedback@netvibes.com', 'phone_number': '', 'description': 'Dashboard Everything', 'created_at': 'Wed Jul 11 16:05:32 UTC 2007', 'updated_at': 'Sat Mar 16 06:11:13 UTC 2013', 'overview': '

Netvibes Dashboard platforms transform browsing, sharing, and tagging into tangible business data to share, analyze, and act on in real-time.\\nListen to Everything. Learn from Everyone. Act in Real-Time. This is Dashboard Intelligence, the evolution of Business Intelligence.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/2974/2974v8-max-150x150.png'], [[223, 59], 'assets/images/resized/0000/2974/2974v8-max-250x250.png'], [[223, 59], 'assets/images/resized/0000/2974/2974v8-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Netvibes Mobile', 'permalink': 'netvibes-mobile'}, {'name': 'netvibes', 'permalink': 'netvibes'}], 'relationships': [{'is_past': False, 'title': 'Chief Finance Officer', 'person': {'first_name': 'Annabelle', 'last_name': 'Malherbe', 'permalink': 'annabelle-malherbe'}}, {'is_past': False, 'title': 'VP, Business Development Europe', 'person': {'first_name': 'Stefan', 'last_name': 'Lechere', 'permalink': 'stefan-lechere'}}, {'is_past': False, 'title': 'VP, Product Development', 'person': {'first_name': 'Franck', 'last_name': 'Mahon', 'permalink': 'franck-mahon'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Damsen', 'permalink': 'chris-damsen'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Neil', 'last_name': 'Rimer', 'permalink': 'neil-rimer'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Annabelle', 'last_name': 'Malherbe', 'permalink': 'annabelle-malherbe'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Freddy', 'last_name': 'Mini', 'permalink': 'freddy-mini'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Tariq', 'last_name': 'Krim', 'permalink': 'tariq-krim'}}, {'is_past': True, 'title': 'Business Development Manager Europe', 'person': {'first_name': 'Michael', 'last_name': 'Cohen', 'permalink': 'michael-cohen-2'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Victor', 'last_name': 'Cerutti', 'permalink': 'victor-cerutti'}}, {'is_past': True, 'title': 'System Engineer', 'person': {'first_name': 'Charles', 'last_name': 'Viard', 'permalink': 'charles-viard'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Hubert', 'last_name': 'Michaux', 'permalink': 'hubert-michaux'}}, {'is_past': True, 'title': 'Director of Netvibes Professional Services', 'person': {'first_name': 'Charles', 'last_name': 'Viard', 'permalink': 'charles-viard'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Franck', 'last_name': 'Mahon', 'permalink': 'franck-mahon'}}], 'competitions': [{'competitor': {'name': 'iGoogle', 'permalink': 'igoogle'}}, {'competitor': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'competitor': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'competitor': {'name': 'uberVU', 'permalink': 'ubervu'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Elevate Recruiting Group', 'permalink': 'elevate-recruiting-group'}}, {'title': 'Hosting', 'is_past': False, 'provider': {'name': 'Typhon', 'permalink': 'typhon'}}], 'total_money_raised': '$16M', 'funding_rounds': [{'id': 119, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2006/03/22/netvibes-to-announce-seed-financing-today/', 'source_description': 'Netvibes to Announce Seed Financing Today', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Neil', 'last_name': 'Rimer', 'permalink': 'neil-rimer'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Pierre', 'last_name': 'Chappaz', 'permalink': 'pierre-chappaz'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Martin', 'last_name': 'Varsavsky', 'permalink': 'martin-varsavsky'}}]}, {'id': 120, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/08/13/netvibes-secures-a-15million-investment/', 'source_description': 'Netvibes secures a $15 million investment', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/dassault-systemes-acquires-netvibes-2012-02-09', 'source_description': 'Dassault Systemes Acquires Netvibes', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 9, 'acquiring_company': {'name': 'Dassault Systemes', 'permalink': 'dassault'}}, 'acquisitions': [], 'offices': [{'description': 'Paris', 'address1': '114, rue Cardinet', 'address2': '', 'zip_code': '75017', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.870806, 'longitude': 2.34668}, {'description': 'San Francisco', 'address1': '49 Geary', 'address2': 'Suite 234', 'zip_code': '94108', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Netvibes’ pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '

Netvibes Dashboard Intelligence from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboard Intelligence

'}, {'embed_code': '

Netvibes Dashboard Intelligence from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboard Intelligence

'}, {'embed_code': '

Netvibes Showcase from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboards

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df5'), 'name': 'Swivel', 'permalink': 'swivel', 'crunchbase_url': 'http://www.crunchbase.com/company/swivel', 'homepage_url': 'http://www.swivel.com', 'blog_url': 'http://blog.swivel.com/', 'blog_feed_url': 'http://blog.swivel.com/weblog/index.rdf', 'twitter_username': 'teamswivel', 'category_code': 'search', 'number_of_employees': 1, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 7, 'deadpooled_day': None, 'deadpooled_url': 'http://eagereyes.org/criticism/the-rise-and-fall-of-swivel', 'tag_list': 'data, research, graphs, swivel', 'alias_list': '', 'email_address': 'support@swivel.com', 'phone_number': '415-680-3641', 'description': '', 'created_at': 'Thu Jul 12 01:06:29 UTC 2007', 'updated_at': 'Wed Aug 21 20:08:41 UTC 2013', 'overview': '

Described by its founders as “YouTube for Data” Swivel offers users a unique way to visually share data. You no longer have to freeze data in a document or presentation. By using Swivel, data can be shared with friends who can then easily explore it themselves. In a world where most news is pure spin and opinion, Swivel is trying to apply the power of the Web to dig up the facts. By making it easy for people to explore data themselves, biased news sources no longer have to be relied on.

\\n\\n

Public accounts are free. However, for those interested in examining their business data Swivel will eventually offer private and secure accounts for a fee.

\\n\\n

Swivel is already making a splash after announcing The Organization for Economic Cooperation and Development (OECD) is making its 2007 OECD Fact book available on Swivel.

\\n\\n

Swivel’s competitors in the “data organization” business include\\nFreebase and IBM.

\\n\\n

Swivel ceased operations in Q3 2010.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/3013/3013v1-max-150x150.jpg'], [[250, 65], 'assets/images/resized/0000/3013/3013v1-max-250x250.jpg'], [[275, 72], 'assets/images/resized/0000/3013/3013v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Swivel', 'permalink': 'swivel'}], 'relationships': [{'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Visnu', 'last_name': 'Pitiyanuvath', 'permalink': 'visnu-pitiyanuvath'}}, {'is_past': True, 'title': 'Co-Founder & Product Chief', 'person': {'first_name': 'Dmitry', 'last_name': 'Dimov', 'permalink': 'dmitry-dimov'}}, {'is_past': True, 'title': 'VP & Chief Data Officer', 'person': {'first_name': 'Sara', 'last_name': 'Wood', 'permalink': 'sara-wood'}}, {'is_past': True, 'title': 'Co-Founder & CEO', 'person': {'first_name': 'Brian', 'last_name': 'Mulloy', 'permalink': 'brian-mulloy'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Ron', 'last_name': 'Palmeri', 'permalink': 'ron-palmeri'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Tao', 'last_name': 'Ge', 'permalink': 'tao-ge'}}, {'is_past': True, 'title': 'Design Chief', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Jesse', 'last_name': 'Robbins', 'permalink': 'jesse-robbins'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$2M', 'funding_rounds': [{'id': 125, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Minor Ventures', 'permalink': 'minor-ventures'}, 'person': None}]}, {'id': 126, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Minor Ventures', 'permalink': 'minor-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '199 Fremont St.', 'address2': '12th Floor', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.789268, 'longitude': -122.395184}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df6'), 'name': 'Slide', 'permalink': 'slide', 'crunchbase_url': 'http://www.crunchbase.com/company/slide', 'homepage_url': 'http://www.slide.com', 'blog_url': 'http://blog.slide.com/', 'blog_feed_url': 'http://blog.slide.com/slide_blog/index.rdf', 'twitter_username': 'SlideInc', 'category_code': 'public_relations', 'number_of_employees': 64, 'founded_year': 2005, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 8, 'deadpooled_day': None, 'deadpooled_url': 'http://techcrunch.com/2011/08/25/slide-google-bloodbath/', 'tag_list': 'widgets, slideshows, expression, guestbook, screensaver, personalize, photos, myspace, flash', 'alias_list': '', 'email_address': 'feedback@slide.com', 'phone_number': '', 'description': 'Develops self-expression widgets', 'created_at': 'Thu Jul 12 03:03:08 UTC 2007', 'updated_at': 'Wed Jun 26 21:10:33 UTC 2013', 'overview': '

Slide, founded by PayPal co-founder Max Levchin, makes widgets that help people express themselves. The company took a big risk in 2006 when they gave users the ability to auto-insert slide shows into their MySpace pages and blasting bulletins out to all their friends. They did this by asking users to hand over their MySpace credentials, and doing all the hard work for them. This is a clear violation of MySpace’s terms of service, though, and most people expected Slide to receive a cease and desist letter and/or get access turned off. But that never happened, and Slide’s big bet has paid off. Slide has since evolved to offer a number of widgets. Users create and personalize widgets on Slide.com and can then use them on social networks, blogs and desktops.

\\n\\n

According to comScore Slide has more than 117 million unique monthly viewers. Slide also claims more than 200,000 new Slide Shows are added to the Slide Network each day.

', 'image': {'available_sizes': [[[108, 40], 'assets/images/resized/0004/5997/45997v1-max-150x150.png'], [[108, 40], 'assets/images/resized/0004/5997/45997v1-max-250x250.png'], [[108, 40], 'assets/images/resized/0004/5997/45997v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Slide', 'permalink': 'slide'}], 'relationships': [{'is_past': True, 'title': 'Founder / CEO / Chairman', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Jeremiah', 'last_name': 'Robison', 'permalink': 'jeremiah-robison'}}, {'is_past': True, 'title': 'VP, Finance & Business Operations', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'VP Virtual Worlds', 'person': {'first_name': 'Viva', 'last_name': 'Chu', 'permalink': 'viva-chu'}}, {'is_past': True, 'title': 'EVP of Strategy & Business Development', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Director of Advertising', 'person': {'first_name': 'Sonya', 'last_name': 'Chawla', 'permalink': 'sonya-chawla'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Nikil', 'last_name': 'Gandhy', 'permalink': 'nikil-gandhy'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Vineet', 'last_name': 'Buch', 'permalink': 'vineet-buch'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'James', 'last_name': 'Hong', 'permalink': 'james-hong'}}, {'is_past': True, 'title': 'Director of East Coast Sales', 'person': {'first_name': 'Jason', 'last_name': 'Bitensky', 'permalink': 'jason-bitensky'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Philipp', 'last_name': 'Pfeiffenberger', 'permalink': 'philipp-pfeiffenberger'}}, {'is_past': True, 'title': 'Board of Advisors', 'person': {'first_name': 'Michael', 'last_name': 'Wolf', 'permalink': 'michael-wolf'}}, {'is_past': True, 'title': 'General Manager, Social Media', 'person': {'first_name': 'Shravan', 'last_name': 'Goli', 'permalink': 'shravan-goli'}}, {'is_past': True, 'title': 'Advisor & Investor', 'person': {'first_name': 'Lisa', 'last_name': 'Gansky', 'permalink': 'lisa-gansky'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Sergei', 'last_name': 'Sorokin', 'permalink': 'sergei-sorokin'}}, {'is_past': True, 'title': 'Business Development & Marketing Manager', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Suhail', 'last_name': 'Doshi', 'permalink': 'suhail-doshi'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Lead Data Admin/Architect', 'person': {'first_name': 'Taso', 'last_name': 'Du Val', 'permalink': 'taso-du-val'}}, {'is_past': True, 'title': 'Vice President, Product', 'person': {'first_name': 'Mike', 'last_name': 'Huang', 'permalink': 'mike-huang'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'John', 'last_name': 'Duncan', 'permalink': 'john-duncan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jared', 'last_name': 'Kopf', 'permalink': 'jared-kopf'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'William', 'last_name': 'Liu', 'permalink': 'william-liu'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Weiden', 'permalink': 'david-weiden'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Jared', 'last_name': 'Fliesler', 'permalink': 'jared-fliesler'}}, {'is_past': True, 'title': 'PR Manager', 'person': {'first_name': 'Ryan', 'last_name': 'Sommer', 'permalink': 'ryan-sommer'}}, {'is_past': True, 'title': 'Director of Design', 'person': {'first_name': 'Kevin', 'last_name': 'Ho', 'permalink': 'kevin-ho'}}, {'is_past': True, 'title': 'investor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}, {'is_past': True, 'title': 'Director of Advertising Operations', 'person': {'first_name': 'Veronica', 'last_name': 'Tegen', 'permalink': 'veronica-tegen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Mandal', 'permalink': 'rishi-mandal'}}, {'is_past': True, 'title': 'Engineering Manager & Dragon Tamer', 'person': {'first_name': 'Rod', 'last_name': 'Begbie', 'permalink': 'rod-begbie'}}, {'is_past': True, 'title': 'Director, Corporate Communications', 'person': {'first_name': 'Tammy', 'last_name': 'H. Nam', 'permalink': 'tammy-h-nam'}}, {'is_past': True, 'title': 'Engineering Development Manager', 'person': {'first_name': 'Matt', 'last_name': 'Rowe', 'permalink': 'matt-rowe'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Krane', 'permalink': 'aaron-krane'}}], 'competitions': [{'competitor': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'competitor': {'name': 'Mixercast', 'permalink': 'mixercast'}}, {'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'Gydget', 'permalink': 'gydget'}}, {'competitor': {'name': 'Animoto', 'permalink': 'animoto'}}, {'competitor': {'name': 'Flektor', 'permalink': 'flektor'}}, {'competitor': {'name': 'Widgetbox', 'permalink': 'widgetbox'}}, {'competitor': {'name': 'Lindotiger', 'permalink': 'lindotiger'}}, {'competitor': {'name': 'Oosah', 'permalink': 'oosah'}}, {'competitor': {'name': 'Mugsho', 'permalink': 'mugsho'}}, {'competitor': {'name': 'LabPixies', 'permalink': 'labpixies'}}], 'providerships': [{'title': 'Marketing', 'is_past': True, 'provider': {'name': 'Rassak Experience', 'permalink': 'rassak-experience'}}, {'title': 'talent', 'is_past': False, 'provider': {'name': 'Elevate Recruiting Group', 'permalink': 'elevate-recruiting-group'}}], 'total_money_raised': '$78M', 'funding_rounds': [{'id': 122, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/01/06/rumor-slides-venture-round-was-20-million/', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Khosla Ventures', 'permalink': 'khosla-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}]}, {'id': 123, 'round_code': 'b', 'source_url': 'http://mashable.com/2006/11/15/slidecom-gets-funding-for-myspace-slide-shows/', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}]}, {'id': 582, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}]}, {'id': 1388, 'round_code': 'd', 'source_url': 'http://bits.blogs.nytimes.com/2008/01/18/slide-slides-into-some-cash/index.html?ref=technology', 'source_description': '', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'T. Rowe Price', 'permalink': 't-rowe-price'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Fidelity Investments', 'permalink': 'fidelity-investments'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 182000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/06/google-confirms-slide-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 6, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '301 Brannan Street', 'address2': '6th Floor', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.781427, 'longitude': -122.392144}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.TV Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dfd'), 'name': 'CrowdVine', 'permalink': 'crowdvine', 'crunchbase_url': 'http://www.crunchbase.com/company/crowdvine', 'homepage_url': 'http://www.crowdvine.com', 'blog_url': 'http://blog.crowdvine.com', 'blog_feed_url': 'http://blog.crowdvine.com/feed/', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 10, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 6, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialnetworks, conferences', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Conference Social Networks', 'created_at': 'Thu Jul 12 08:45:03 UTC 2007', 'updated_at': 'Thu Apr 11 18:09:51 UTC 2013', 'overview': '

CrowdVine provides social networks for conferences and other professional communities.

\\n\\n

Conference attendees are looking for a tool to help them make contacts at the event. CrowdVine for Conferences is a hosted social network package that’s tailored specifically for conferences. Rather than being yet another place to manage your friends, it helps you organize a want-to-meet list, see which sessions your friends are going to, and when the conference is over, export your new contacts to your permanent social network (LinkedIn, Facebook, email).

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3193/3193v3-max-150x150.png'], [[250, 61], 'assets/images/resized/0000/3193/3193v3-max-250x250.png'], [[319, 79], 'assets/images/resized/0000/3193/3193v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'CrowdVine', 'permalink': 'crowdvine'}], 'relationships': [{'is_past': False, 'title': 'General Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Koumarianos', 'permalink': 'andrew-koumarianos'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Tony', 'last_name': 'Stubblebine', 'permalink': 'tony-stubblebine'}}], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'EventVue', 'permalink': 'eventvue'}}, {'competitor': {'name': 'Groupsite', 'permalink': 'collectivex'}}, {'competitor': {'name': 'Skalfa', 'permalink': 'skalfa'}}, {'competitor': {'name': 'Pathable', 'permalink': 'pathable'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '53 S Knoll Rd', 'address2': '', 'zip_code': '94941-2464', 'city': 'Mill Valley', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.90077, 'longitude': -122.511687}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dff'), 'name': 'TheFind', 'permalink': 'thefind', 'crunchbase_url': 'http://www.crunchbase.com/company/thefind', 'homepage_url': 'http://www.thefind.com', 'blog_url': 'http://blog.thefind.com/', 'blog_feed_url': 'http://blog.thefind.com/feed/', 'twitter_username': 'thefind', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'thefind, shopping, search, glimpse, thefindgreen, local', 'alias_list': '', 'email_address': 'talk@thefind.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 12 12:13:51 UTC 2007', 'updated_at': 'Sun Jul 07 11:38:57 UTC 2013', 'overview': '

TheFind’s patented search, browse and discovery technology is expanding the eCommerce landscape through social, mobile and tablet commerce innovations. TheFind.com is a search destination where millions of shoppers are finding the best products from every online and local store. Leveraging the company’s unique ability to surface and categorize more than 500 million product offers from 500,000 stores along with their identifying attributes, TheFind is building the only comprehensive map of the merchandise, stores and brands that people “Like”. The result is Glimpse by TheFind, a new way to discover products that is instantly personal and socially curated using Facebook’s OpenGraph and other signals. TheFind Mobile empowers smart phone equipped shoppers with a powerful in-store companion that combines barcode scanning and text search to surface local and online prices and availability for nearly any product imaginable. A pioneer and market leader in the tablet commerce space, TheFind revolutionized catalog shopping with the launch of Catalogue by TheFind, a shopping app for the iPad, Kindle Fire, Android tablets and large screen smart phones, where you can browse more than 170 popular catalog titles. Ranked number 12 on the 2010 Inc. 500 list of fastest growing private companies, TheFind was founded in 2005, venture funded by Bain Capital Ventures, Lightspeed Venture Partners and Redpoint Ventures and is a San Francisco and Silicon Valley-based company.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0000/3307/3307v10-max-150x150.png'], [[250, 60], 'assets/images/resized/0000/3307/3307v10-max-250x250.png'], [[450, 109], 'assets/images/resized/0000/3307/3307v10-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'TheFind.com', 'permalink': 'thefind-com'}], 'relationships': [{'is_past': False, 'title': 'Co - Founder & CEO', 'person': {'first_name': 'Siva', 'last_name': 'Kumar', 'permalink': 'siva-kumar'}}, {'is_past': False, 'title': 'Co-founder, CTO', 'person': {'first_name': 'Shashikant', 'last_name': 'Khandelwal', 'permalink': 'shashikant-khandelwal'}}, {'is_past': False, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Dave', 'last_name': 'Cook', 'permalink': 'dave-cook-2'}}, {'is_past': False, 'title': 'VP of Business Development', 'person': {'first_name': 'Rob', 'last_name': 'Ulveling', 'permalink': 'rob-ulveling'}}, {'is_past': False, 'title': 'VP Engg', 'person': {'first_name': 'Zoran', 'last_name': 'Dukic', 'permalink': 'zoran-dukic'}}, {'is_past': False, 'title': 'Board/Advisor', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': False, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'Usher', 'last_name': 'Lieberman', 'permalink': 'usher-lieberman'}}, {'is_past': False, 'title': 'Vice President & General Manager Mobile', 'person': {'first_name': 'Ramneek', 'last_name': 'Bhasin', 'permalink': 'ramneek-bhasin'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Tim', 'last_name': 'Haley', 'permalink': 'tim-haley'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Scott', 'last_name': 'Friend', 'permalink': 'scott-friend'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Ravi', 'last_name': 'Mhatre', 'permalink': 'ravi-mhatre'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Prasanth', 'last_name': 'Madhavan', 'permalink': 'prasanth-madhavan'}}, {'is_past': True, 'title': 'Co-Founder & CEO', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': True, 'title': 'Co-Founder, Director of Engineering', 'person': {'first_name': 'Ranjit', 'last_name': 'Padmanabhan', 'permalink': 'ranjit-padmanabhan'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Trey', 'last_name': 'Pruitt', 'permalink': 'trey-pruitt'}}, {'is_past': True, 'title': 'VP of B2B Marketing [Interim]', 'person': {'first_name': 'Darby', 'last_name': 'Williams', 'permalink': 'darby-williams'}}, {'is_past': True, 'title': 'VP Products', 'person': {'first_name': 'Ron', 'last_name': 'Levi', 'permalink': 'ron-levi'}}, {'is_past': True, 'title': 'Product Development', 'person': {'first_name': 'Namita', 'last_name': 'Bhasin', 'permalink': 'namita-bhasin'}}, {'is_past': True, 'title': 'Senior Director, Business Development', 'person': {'first_name': 'Rob', 'last_name': 'Ulveling', 'permalink': 'rob-ulveling'}}, {'is_past': True, 'title': 'Operating & Consulting roles', 'person': {'first_name': 'Bill', 'last_name': 'Youstra', 'permalink': 'bill-youstra'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Adam', 'last_name': 'Talcott', 'permalink': 'adam-talcott'}}, {'is_past': True, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Tung', 'permalink': 'michael-tung'}}], 'competitions': [{'competitor': {'name': 'Twenga', 'permalink': 'twenga'}}, {'competitor': {'name': 'Become', 'permalink': 'become'}}, {'competitor': {'name': 'ShopWiki', 'permalink': 'shopwiki'}}, {'competitor': {'name': 'NexTag', 'permalink': 'nextag'}}, {'competitor': {'name': 'Bing Shopping', 'permalink': 'bing-shopping'}}, {'competitor': {'name': 'Devtap', 'permalink': 'devtap'}}, {'competitor': {'name': 'SearcHub.com', 'permalink': 'searchub-com'}}], 'providerships': [], 'total_money_raised': '$26M', 'funding_rounds': [{'id': 132, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}, {'id': 133, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}, {'id': 134, 'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bain Capital Ventures', 'permalink': 'bain-capital-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'Glimpse', 'permalink': 'glimpse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/09/01/thefind-acquires-istorezcom-to-help-consumers-find-deals-while-shopping/', 'source_description': 'TheFind Acquires iStorez.com To Help Consumers Find Deals While Shopping', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'iStorez', 'permalink': 'istorez'}}], 'offices': [{'description': '', 'address1': '310 Villa Street', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.391502, 'longitude': -122.073463}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://ideamensch.com/siva-kumar/', 'title': 'Ideamensch.com Interview'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e04'), 'name': 'Sway', 'permalink': 'sway', 'crunchbase_url': 'http://www.crunchbase.com/company/sway', 'homepage_url': 'http://www.swayonline.com', 'blog_url': 'http://www.sparkeffect.com', 'blog_feed_url': 'http://www.sparkeffect.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'advertising', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 3, 'deadpooled_year': 2012, 'deadpooled_month': 12, 'deadpooled_day': 2, 'deadpooled_url': '', 'tag_list': 'socialmedia, marketing, onlinemarketing, advertising', 'alias_list': None, 'email_address': 'info@swayonline.com', 'phone_number': '608-833-0088', 'description': None, 'created_at': 'Fri Feb 01 10:33:22 UTC 2008', 'updated_at': 'Wed Oct 09 06:00:12 UTC 2013', 'overview': '

Headquartered in the Silicon Prairie of Madison, Wisconsin, Shoutlet, Inc. was a privately held technology firm that developed tools to help global brands, small businesses, and marketing agencies build, engage, and measure social media communication via one affordable, easy-to-use, multi-user application.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0000/3370/3370v1-max-150x150.png'], [[184, 42], 'assets/images/resized/0000/3370/3370v1-max-250x250.png'], [[184, 42], 'assets/images/resized/0000/3370/3370v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Research : Social Media Map', 'permalink': 'research-social-media-map'}], 'relationships': [{'is_past': False, 'title': 'CEO and Chief Marketing Strategist', 'person': {'first_name': 'Jason', 'last_name': 'Weaver', 'permalink': 'jason-weaver'}}, {'is_past': None, 'title': 'COO and CFO', 'person': {'first_name': 'Edward', 'last_name': 'Muir', 'permalink': 'edward-muir'}}, {'is_past': None, 'title': 'Creative Director', 'person': {'first_name': 'Ann', 'last_name': 'Edmunds', 'permalink': 'ann-edmunds'}}, {'is_past': None, 'title': 'Shoutlet Product Marketing Manager', 'person': {'first_name': 'Jason', 'last_name': 'Konz', 'permalink': 'jason-konz'}}, {'is_past': None, 'title': 'Marketing Research Manager', 'person': {'first_name': 'Milissa', 'last_name': 'Rick', 'permalink': 'milissa-rick'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Leah', 'last_name': 'Clevenger', 'permalink': 'leah-clevenger'}}], 'competitions': [{'competitor': {'name': 'Trendpedia', 'permalink': 'trenpedia'}}], 'providerships': [], 'total_money_raised': '$2M', 'funding_rounds': [{'id': 11292, 'round_code': 'a', 'source_url': 'http://www.finsmes.com/2010/01/sway-raises-2m-in-series-funding-round.html', 'source_description': 'Sway Raises $2M in Series A Funding Round', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Origin Ventures', 'permalink': 'origin-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Leo Capital Holdings', 'permalink': 'leo-capital-holdings'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '8313 Greenway Blvd Suite 100', 'address2': '', 'zip_code': '53562', 'city': 'Middleton', 'state_code': 'WI', 'country_code': 'USA', 'latitude': 43.090756, 'longitude': -89.522805}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 82], 'assets/images/resized/0007/4016/74016v1-max-150x150.jpg'], [[250, 137], 'assets/images/resized/0007/4016/74016v1-max-250x250.jpg'], [[450, 246], 'assets/images/resized/0007/4016/74016v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e05'), 'name': 'CornerWorld', 'permalink': 'cornerworld', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerworld', 'homepage_url': 'http://www.cornerworld.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'public_relations', 'number_of_employees': None, 'founded_year': 2002, 'founded_month': 9, 'founded_day': 30, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'marketing, socialnetworking, telecommunication, applicationserviceprovider', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'Marketing and Technology Services', 'created_at': 'Fri Feb 01 10:36:13 UTC 2008', 'updated_at': 'Mon Sep 21 21:22:53 UTC 2009', 'overview': '

CornerWorld Corporation [OTCBB: CWRL] is a marketing and technology services company creating opportunities from the increased accessibility of content across mobile, television and internet platforms. The key asset is the patented 611 Roaming Service™ from RANGER Wireless Solutions®, which generates revenue by processing over 14 million calls from roaming wireless customers per year and seamlessly transferring them to their service providers.

\\n\\n

Mission Statement- Building on its current assets, CornerWorld is developing an ecosystem of direct marketing, telecommunication and technology companies that is uniquely positioned to capitalize on industry evolutions as an advertiser, content creator and service provider.

\\n\\n

CornerWorld’s holdings include:

\\n\\n

Dial611, a site for 611 Roaming Serviceâ„¢, the customer service short code for over 30 mobile carriers.

\\n\\n

Encontent Networkâ„¢, magazine-style destination web sites designed to drive prospects to request information.

\\n\\n

Enversa, a leading marketing communications provider offering a full menu of services for brand and direct response customer acquisition campaigns including media buying and planning for online and mobile media.

\\n\\n

RANGER Wireless Solutions® is a wireless shortcodes and application development company supporting over 30 carriers in North America. RANGER®’s core service is 611 Roaming Service™, which provides a seamless means for wireless subscribers to reach their home provider’s customer service call center.

\\n\\n

SocialUr.com (formerly CornerWorld.com) is a soon to be relaunched business management and social networking platform that empowers independent content creators to share and profit from their skills.

\\n\\n

T² Communications is a next-generation telecommunications and entertainment service provider that uses a portfolio of industry-leading technology to deliver phone, television and internet products for homes and businesses.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0000/3373/3373v1-max-150x150.png'], [[151, 30], 'assets/images/resized/0000/3373/3373v1-max-250x250.png'], [[151, 30], 'assets/images/resized/0000/3373/3373v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SocialUr', 'permalink': 'cornerworld'}], 'relationships': [{'is_past': False, 'title': 'Chairman and CEO', 'person': {'first_name': 'Scott', 'last_name': 'Beck', 'permalink': 'scott-beck'}}, {'is_past': False, 'title': 'Director and Chief Operating Officer-Woodland Holdings', 'person': {'first_name': 'Ned', 'last_name': 'Timmer', 'permalink': 'ned-timmer'}}, {'is_past': False, 'title': 'Secretary and Public Relations', 'person': {'first_name': 'Kelly', 'last_name': 'Larabee', 'permalink': 'kelly-larabee'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Marc', 'last_name': 'Blumberg', 'permalink': 'marc-blumberg'}}, {'is_past': False, 'title': 'Chief Marketing Officer and President-Enversa Companies', 'person': {'first_name': 'Marc', 'last_name': 'Pickren', 'permalink': 'marc-pickren'}}, {'is_past': True, 'title': 'VP of sales and marketing', 'person': {'first_name': 'Michael', 'last_name': 'Caranfa', 'permalink': 'michael-caranfa'}}], 'competitions': [{'competitor': {'name': 'Gydget', 'permalink': 'gydget'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '12222 Merit Drive Suite 120', 'address2': '', 'zip_code': '75251', 'city': 'Dallas', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.914662, 'longitude': -96.771281}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e0d'), 'name': 'FlickIM', 'permalink': 'flickim', 'crunchbase_url': 'http://www.crunchbase.com/company/flickim', 'homepage_url': 'http://www.outfittershaven.com', 'blog_url': 'http://www.outfittershaven.com', 'blog_feed_url': 'http://www.outfittershaven.com', 'twitter_username': 'HabbibalZaker', 'category_code': 'mobile', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobileim, chat, im, andreshmt', 'alias_list': 'NextThree', 'email_address': 'habbibalzaker@yahoo.com', 'phone_number': '', 'description': 'chat programs', 'created_at': 'Tue Jul 17 05:23:38 UTC 2007', 'updated_at': 'Sat Feb 02 02:45:48 UTC 2013', 'overview': '

FlickIM is a chat program designed specifically for the iPhone. The application is made entirely in javascript; however, you cannot access the service if you are not on the iPhone. The product currently only supports AIM.

\\n\\n

FlickIM is a product of NextThree, which is currently in stealth mode. NextThree is currently based in Berkeley.

', 'image': {'available_sizes': [[[150, 45], 'assets/images/resized/0000/3451/3451v1-max-150x150.png'], [[200, 60], 'assets/images/resized/0000/3451/3451v1-max-250x250.png'], [[200, 60], 'assets/images/resized/0000/3451/3451v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'FlickIM', 'permalink': 'flickim'}], 'relationships': [{'is_past': False, 'title': 'Co-founder/CEO', 'person': {'first_name': 'David', 'last_name': 'Shirazi', 'permalink': 'david-shirazi'}}, {'is_past': False, 'title': 'Co-founder/Chief Software Architect', 'person': {'first_name': 'Max', 'last_name': 'Crane', 'permalink': 'max-crane'}}, {'is_past': True, 'title': 'VP Business Operations & Strategy', 'person': {'first_name': 'Tyler', 'last_name': 'Dikman', 'permalink': 'tyler-dikman'}}, {'is_past': True, 'title': 'Eng', 'person': {'first_name': 'David', 'last_name': 'McIntosh', 'permalink': 'david-mcintosh'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Ross', 'last_name': 'Rudd', 'permalink': 'ross-rudd'}}], 'competitions': [{'competitor': {'name': 'eBuddy', 'permalink': 'ebuddy'}}], 'providerships': [], 'total_money_raised': '$1.6M', 'funding_rounds': [{'id': 155, 'round_code': 'a', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Alsop Louie Partners', 'permalink': 'alsop-louie-partners'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '2030 Addison St.', 'address2': 'Suite 620', 'zip_code': '', 'city': 'Berkeley', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.870744, 'longitude': -122.269259}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e0f'), 'name': 'Terabitz', 'permalink': 'terabitz', 'crunchbase_url': 'http://www.crunchbase.com/company/terabitz', 'homepage_url': 'http://www.terabitz.com', 'blog_url': 'http://www.terabitzblog.com/', 'blog_feed_url': '', 'twitter_username': 'TheTerabitz', 'category_code': 'web', 'number_of_employees': 12, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'realstate', 'alias_list': '', 'email_address': '', 'phone_number': '650-320-9000', 'description': '', 'created_at': 'Tue Jul 17 08:58:01 UTC 2007', 'updated_at': 'Thu May 16 04:04:40 UTC 2013', 'overview': '

Terabitz is a personalized page service for real estate applications. It was founded in July 2006 by father and son co-founders Ashfaq Munshi and Kamran Munshi and is headquartered in Palo Alto, CA. Terabitz recently raised $10 million in Series A funding from Tudor Investments in February 2007.

\\n\\n

Terabitz allows users to gather all their important real estate tools, apps and data to one page that they can further personalize. Users are able to drag and drop their apps for Craigslist listings, Trulia listings, Google Maps, schools, restaurants, etc. Once they’ve created a page for a real estate market they’re interested in they can then share it with others.

', 'image': {'available_sizes': [[[136, 46], 'assets/images/resized/0000/3469/3469v2-max-150x150.jpg'], [[136, 46], 'assets/images/resized/0000/3469/3469v2-max-250x250.jpg'], [[136, 46], 'assets/images/resized/0000/3469/3469v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Terabitz', 'permalink': 'terabitz'}], 'relationships': [{'is_past': False, 'title': 'VP of Sales', 'person': {'first_name': 'Chris', 'last_name': 'Kosloski', 'permalink': 'chris-kosloski'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Charles', 'last_name': 'Cotton', 'permalink': 'charles-cotton'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Carl', 'last_name': 'Fantasia', 'permalink': 'carl-fantasia'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Ron', 'last_name': 'Wohl', 'permalink': 'ron-wohl'}}, {'is_past': True, 'title': 'Co-founder, CTO', 'person': {'first_name': 'Kamran', 'last_name': 'Munshi', 'permalink': 'kamran-munshi'}}, {'is_past': True, 'title': 'VP of Marketing & Business Development', 'person': {'first_name': 'Kevin', 'last_name': 'Akeroyd', 'permalink': 'kevin-akeroyd'}}, {'is_past': True, 'title': 'VP of Product', 'person': {'first_name': 'Travis', 'last_name': 'Chow', 'permalink': 'travis-chow'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Vishal', 'last_name': 'vyas', 'permalink': 'vishal-vyas'}}], 'competitions': [{'competitor': {'name': 'Cyberhomes', 'permalink': 'cyberhomes'}}, {'competitor': {'name': 'Trulia', 'permalink': 'trulia'}}, {'competitor': {'name': 'Zillow', 'permalink': 'zillow'}}, {'competitor': {'name': 'Redfin', 'permalink': 'redfin'}}, {'competitor': {'name': 'HotPads', 'permalink': 'hotpads-com'}}], 'providerships': [], 'total_money_raised': '$10M', 'funding_rounds': [{'id': 162, 'round_code': 'a', 'source_url': 'http://www.inman.com/news/2007/07/2/another-venture-backed-startup-lands-in-real-estate', 'source_description': 'Another venture-backed startup lands in real estate', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Tudor Investments', 'permalink': 'tudor-investments'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '5 Palo Alto Sq Ste 220', 'address2': '', 'zip_code': '94306-2123', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.437328, 'longitude': -122.159928}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e17'), 'name': 'Kaboodle', 'permalink': 'kaboodle', 'crunchbase_url': 'http://www.crunchbase.com/company/kaboodle', 'homepage_url': 'http://www.kaboodle.com', 'blog_url': 'http://blog.kaboodle.com', 'blog_feed_url': 'http://blog.kaboodle.com/kaboodleblog/index.rdf', 'twitter_username': 'kaboodle', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'shopping, kaboodle', 'alias_list': '', 'email_address': 'info@kaboodle-inc.com', 'phone_number': '408-492-0028', 'description': '', 'created_at': 'Wed Jul 18 06:01:15 UTC 2007', 'updated_at': 'Tue Jul 02 22:44:20 UTC 2013', 'overview': '

Launched in October 2005, Kaboodle offers an easy way to collect information from the web and also search for things you may be interested in. Kaboodle can be used to collect and share information for shopping, travel, research, or just about anything else. With over 35,000 users, Kaboodle’s user base is relatively small, but the site is young and has much room to grow.

\\n\\n

The company has received funding and strong support from such investors as Kanwal Rekhi of Inventus Capital, Junglee founder Ashish Gupta, and co-author of Google’s early search algorithm research Rajeev Motwani.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/6674/16674v3-max-150x150.jpg'], [[171, 171], 'assets/images/resized/0001/6674/16674v3-max-250x250.jpg'], [[171, 171], 'assets/images/resized/0001/6674/16674v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Kaboodle', 'permalink': 'kaboodle'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Anne', 'last_name': 'Zehren', 'permalink': 'ann-zehren'}}, {'is_past': True, 'title': 'Co-founder & VP of Engineering', 'person': {'first_name': 'Chetan', 'last_name': 'Pungaliya', 'permalink': 'chetan-pungaliya'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Manish', 'last_name': 'Chandra', 'permalink': 'manish-chandra'}}, {'is_past': True, 'title': 'Co-founder & CTO', 'person': {'first_name': 'Keiron', 'last_name': 'McCammon', 'permalink': 'keiron-mccammon'}}, {'is_past': True, 'title': 'VP Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Hansen', 'permalink': 'brian-hansen'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Namita', 'last_name': 'Bhasin', 'permalink': 'namita-bhasin'}}], 'competitions': [{'competitor': {'name': 'Crowdstorm USA', 'permalink': 'crowdstorm'}}, {'competitor': {'name': 'ThisNext', 'permalink': 'thisnext'}}, {'competitor': {'name': 'ShopWiki', 'permalink': 'shopwiki'}}, {'competitor': {'name': 'Open Fashion', 'permalink': 'open-fashion'}}, {'competitor': {'name': 'iliketotallyloveit', 'permalink': 'iliketotallyloveit'}}, {'competitor': {'name': 'Savvy Circle', 'permalink': 'savvy-circle'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 176, 'round_code': 'a', 'source_url': 'http://www.news.com/2110-1025_3-6061513.html', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Garage Technology Ventures', 'permalink': 'garage-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kanwal', 'last_name': 'Rekhi', 'permalink': 'kanwal-rekhi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rajeev', 'last_name': 'Motwani', 'permalink': 'rajeev-motwani'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Iggy', 'last_name': 'Fanlo', 'permalink': 'iggy-fanlo'}}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Clavier', 'permalink': 'jeff-clavier'}}]}, {'id': 318, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}]}, {'id': 319, 'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 1, 'acquiring_company': {'name': 'Hearst Corporation', 'permalink': 'hearstcorporation'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '640 W. California Ave.', 'address2': 'Suite 220', 'zip_code': '94041', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.382162, 'longitude': -122.036301}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 80], 'assets/images/resized/0003/2056/32056v1-max-150x150.jpg'], [[250, 133], 'assets/images/resized/0003/2056/32056v1-max-250x250.jpg'], [[450, 240], 'assets/images/resized/0003/2056/32056v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e18'), 'name': 'GigaOM', 'permalink': 'gigaom', 'crunchbase_url': 'http://www.crunchbase.com/company/gigaom', 'homepage_url': 'http://gigaom.com', 'blog_url': '', 'blog_feed_url': 'http://feeds.feedburner.com/ommalik', 'twitter_username': 'gigaom', 'category_code': 'news', 'number_of_employees': 75, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'blog, web2-0', 'alias_list': 'Giga Omni Media', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 09:08:31 UTC 2007', 'updated_at': 'Thu Oct 24 00:02:03 UTC 2013', 'overview': '

Gigaom provides intelligent, credible analysis of emerging technologies. More than 5.5 million monthly unique readers turn to Gigaom to better understand major technology disruptions and the new business opportunities they are creating.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0001/1380/11380v5-max-150x150.jpg'], [[250, 83], 'assets/images/resized/0001/1380/11380v5-max-250x250.jpg'], [[450, 150], 'assets/images/resized/0001/1380/11380v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'GigaOm', 'permalink': 'gigaom'}, {'name': 'Gigaom Research', 'permalink': 'gigaom-pro'}, {'name': 'GigaOM Events', 'permalink': 'gigaom-events'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Paul', 'last_name': 'Walborsky', 'permalink': 'paul-walborsky'}}, {'is_past': False, 'title': 'Founder and Senior Writer', 'person': {'first_name': 'Om', 'last_name': 'Malik', 'permalink': 'om-malik'}}, {'is_past': False, 'title': 'VP, Product', 'person': {'first_name': 'Raza', 'last_name': 'Zaidi', 'permalink': 'raza-zaidi-2'}}, {'is_past': False, 'title': 'VP, Operations and Sales', 'person': {'first_name': 'Asanka', 'last_name': 'de Mel', 'permalink': 'asanka-de-mel'}}, {'is_past': False, 'title': 'VP, Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Abegglen', 'permalink': 'andrea-abegglen'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Alison', 'last_name': 'Murdock', 'permalink': 'alison-murdock'}}, {'is_past': False, 'title': 'VP, Sales', 'person': {'first_name': 'Mike', 'last_name': 'Sly', 'permalink': 'mike-sly'}}, {'is_past': False, 'title': 'Senior Writer and Features Editor', 'person': {'first_name': 'Katie', 'last_name': 'Fehrenbacher', 'permalink': 'katie-fehrenbacher'}}, {'is_past': False, 'title': 'Senior Writer', 'person': {'first_name': 'Stacey', 'last_name': 'Higginbotham', 'permalink': 'stacey-higginbotham'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Ammar', 'last_name': 'Hanafi', 'permalink': 'ammar-hanafi'}}, {'is_past': False, 'title': 'Sr. Sales Director', 'person': {'first_name': 'Nick', 'last_name': 'Basso', 'permalink': 'nick-basso'}}, {'is_past': False, 'title': 'Executive Editor', 'person': {'first_name': 'Ernie', 'last_name': 'Sander', 'permalink': 'ernie-sander'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Josh', 'last_name': 'Stevens', 'permalink': 'josh-stevens'}}, {'is_past': False, 'title': 'Staff Writer', 'person': {'first_name': 'Janko', 'last_name': 'Roettgers', 'permalink': 'janko-roettgers'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Callahan', 'permalink': 'john-callahan'}}, {'is_past': False, 'title': 'Director of Product', 'person': {'first_name': 'Ian', 'last_name': 'Kennedy', 'permalink': 'ian-kennedy'}}, {'is_past': False, 'title': 'VP, Research', 'person': {'first_name': 'David', 'last_name': 'Card', 'permalink': 'david-card'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Kevin', 'last_name': 'Brown', 'permalink': 'kevin-brown-5'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Ivan', 'last_name': 'Koon', 'permalink': 'ivan-koon'}}, {'is_past': True, 'title': 'SVP, Product & Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Silmore', 'permalink': 'dan-silmore'}}, {'is_past': True, 'title': 'VP, Editorial', 'person': {'first_name': 'Nicole', 'last_name': 'Solis', 'permalink': 'nicole-solis'}}, {'is_past': True, 'title': 'VP, Research', 'person': {'first_name': 'Michael', 'last_name': 'Wolf', 'permalink': 'michael-wolf-2'}}, {'is_past': True, 'title': 'VP, Events', 'person': {'first_name': 'Surj', 'last_name': 'Patel', 'permalink': 'surj-patel'}}, {'is_past': True, 'title': 'Editor of NewTeeVee.com', 'person': {'first_name': 'Liz', 'last_name': 'Gannes', 'permalink': 'liz-gannes'}}, {'is_past': True, 'title': 'Writer Web Worker Daily', 'person': {'first_name': 'Judi', 'last_name': 'Sohn', 'permalink': 'judi-sohn'}}, {'is_past': True, 'title': 'Writer NewTeeVee', 'person': {'first_name': 'Karina', 'last_name': 'Longworth', 'permalink': 'karina-longworth'}}, {'is_past': True, 'title': 'Manager, Business Development', 'person': {'first_name': 'Joanne \"Joey\"', 'last_name': 'Wan', 'permalink': 'joanne-wan'}}, {'is_past': True, 'title': 'Special Projects Editor', 'person': {'first_name': 'Celeste', 'last_name': 'LeCompte', 'permalink': 'celeste-lecompte'}}, {'is_past': True, 'title': 'Editor of Ostatic.com', 'person': {'first_name': 'Sam', 'last_name': 'Dean', 'permalink': 'sam-dean'}}, {'is_past': True, 'title': 'Editor of TheAppleBlog', 'person': {'first_name': 'Josh', 'last_name': 'Pigford', 'permalink': 'josh-pigford'}}, {'is_past': True, 'title': 'National Account Manager for GigaOM Pro', 'person': {'first_name': 'Nathan', 'last_name': 'Entrekin', 'permalink': 'nathan-entrekin'}}, {'is_past': True, 'title': 'Staff Writer', 'person': {'first_name': 'Ryan', 'last_name': 'Lawler', 'permalink': 'ryan-lawler'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Dan', 'last_name': 'Burke', 'permalink': 'dan-burke-2'}}, {'is_past': True, 'title': 'Writer', 'person': {'first_name': 'Wagner James', 'last_name': 'Au', 'permalink': 'wagner-james-au'}}, {'is_past': True, 'title': 'Writer Web Worker Daily', 'person': {'first_name': 'Mike', 'last_name': 'Gunderloy', 'permalink': 'mike-gunderloy'}}, {'is_past': True, 'title': 'Writer Earth2Tech & NewTeeVee', 'person': {'first_name': 'Craig', 'last_name': 'Rubens', 'permalink': 'craig-rubens'}}, {'is_past': True, 'title': 'Managing Editor', 'person': {'first_name': 'Carolyn', 'last_name': 'Pritchard', 'permalink': 'carolyn-pritchard'}}, {'is_past': True, 'title': 'Editor of FoundRead', 'person': {'first_name': 'Carleen', 'last_name': 'Hawn', 'permalink': 'carleen-hawn'}}, {'is_past': True, 'title': 'Writer NewTeeVee.com', 'person': {'first_name': 'Liz', 'last_name': 'Shannon Miller', 'permalink': 'liz-shannon-miller'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Brad', 'last_name': \"O'Neill\", 'permalink': 'brad-oneill'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Ryan', 'last_name': 'Freitas', 'permalink': 'ryan-freitas'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Askew', 'permalink': 'tony-askew'}}, {'is_past': True, 'title': 'Blogger', 'person': {'first_name': 'Jessica', 'last_name': 'Stillman', 'permalink': 'jessica-stillman'}}], 'competitions': [{'competitor': {'name': 'iamweb2.0', 'permalink': 'iamweb2'}}], 'providerships': [{'title': 'PR', 'is_past': False, 'provider': {'name': 'Mercury Global Partners', 'permalink': 'mercury-global-partners'}}, {'title': 'Event management', 'is_past': False, 'provider': {'name': 'Magnify Communications', 'permalink': 'magnify-communications'}}], 'total_money_raised': '$14.3M', 'funding_rounds': [{'id': 184, 'round_code': 'a', 'source_url': 'http://gigaom.com/2006/06/12/its-time-to-transition/', 'source_description': '', 'raised_amount': 325000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jon', 'last_name': 'Callaghan', 'permalink': 'jon-callaghan'}}]}, {'id': 1502, 'round_code': 'b', 'source_url': 'http://gigaom.com/2007/11/15/a-small-note-about-our-series-b-funding/', 'source_description': 'GigaOm', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rakesh', 'last_name': 'Mathur', 'permalink': 'rakesh-mathur'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Venky', 'last_name': 'Harinarayan', 'permalink': 'venky-harinarayan'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Anand', 'last_name': 'Rajaraman', 'permalink': 'anand-rajaraman'}}]}, {'id': 3593, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/10/06/gigaom-ignores-my-advice-raises-another-45-million/', 'source_description': 'GigaOm Ignores My Advice, Raises Another $4.5 Million', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}]}, {'id': 19456, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2010/10/22/looks-like-our-friends-over-at-gigaom-just-raised-another-2-5-million/', 'source_description': 'Looks Like Our Friends Over At GigaOm Just Raised Another $2.5 Million', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}]}, {'id': 23187, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/05/25/gigaom-raises-another-6-million-at-40-million-valuation/', 'source_description': '', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Reed Elsevier Ventures', 'permalink': 'reed-elsevier'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2008/07/22/gigaom-acquires-jkontherun/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'jkOnTheRun', 'permalink': 'jkontherun'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2008/09/15/gigaom-acquires-theappleblog/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': None, 'company': {'name': 'TheAppleBlog', 'permalink': 'theappleblog'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2012/02/08/why-we-are-buying-paidcontent/', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'paidContent', 'permalink': 'paidcontent'}}], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.775196, 'longitude': -122.419204}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7143528, 'longitude': -74.0059731}], 'milestones': [{'id': 8100, 'description': \"Giga Omni Media named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'GigaOM', 'permalink': 'gigaom'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Gigaom CEO Paul Walborsky explains the company and our branding refresh.

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'permalink': 'redfin', 'crunchbase_url': 'http://www.crunchbase.com/company/redfin', 'homepage_url': 'http://redfin.com', 'blog_url': 'http://blog.redfin.com/', 'blog_feed_url': 'http://feeds2.feedburner.com/redfin_corporate?format=xml', 'twitter_username': 'Redfin', 'category_code': 'real_estate', 'number_of_employees': 100, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'realestate, hybrid-business, rental', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Online Real Estate ', 'created_at': 'Wed Jul 18 09:13:16 UTC 2007', 'updated_at': 'Thu Nov 21 18:28:24 UTC 2013', 'overview': '

Redfin is an online real estate company that provides real estate search and brokerage services. Redfin uses an interesting combination of online real estate search and access to live agents. They employ their agents so they can better control customer satisfaction; traditional brokerage firms license their name to independent agents. Redfin claims to save homebuyers on average $7,500 by reimbursing roughly 1/2 of the buy-side real estate fee directly on closing. Redfin also pays bonuses to agents when they receive high customer satisfaction.

\\n\\n

The service launched in February 2006.

\\n\\n

Redfin’s main competitors include real estate search services like Trulia, Zillow, Estately and Realtor.com. None of their competitors combine online real estate search and brokerage services.

\\n\\n

On their site, Redfin combines MLS listing information with historical data into a single map. You can search for homes by neighborhood, city or MLS number, or you can refine results using detailed parameters like price and number of beds or baths. As of July 2007, users can look for homes in Chicago, Washington, D.C. area, including Central Maryland and Northern Virginia, Greater Boston, the San Francisco Bay Area, Greater Seattle and Southern California, including Los Angeles, Orange County, the Inland Empire and San Diego.

\\n\\n

The company was founded by David Eraker and is based out of Seattle; there is also a San Francisco engineering office, and local agents in each of the markets Redfin serves.

', 'image': {'available_sizes': [[[117, 39], 'assets/images/resized/0020/4948/204948v1-max-150x150.png'], [[117, 39], 'assets/images/resized/0020/4948/204948v1-max-250x250.png'], [[117, 39], 'assets/images/resized/0020/4948/204948v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Redfin', 'permalink': 'redfin'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Glenn', 'last_name': 'Kelman', 'permalink': 'glenn-kelman'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Chris', 'last_name': 'Nielsen', 'permalink': 'chris-nielsen'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Sasha', 'last_name': 'Aickin', 'permalink': 'sasha-aickin'}}, {'is_past': False, 'title': 'Chief of Real Estate Operationsons', 'person': {'first_name': 'Scott', 'last_name': 'Nagel', 'permalink': 'scot-nagel'}}, {'is_past': False, 'title': 'Vice President, Marketing Operations', 'person': {'first_name': 'Matt', 'last_name': 'Goyer', 'permalink': 'matt-goyer'}}, {'is_past': False, 'title': 'Vice President, Public Relations', 'person': {'first_name': 'Jani', 'last_name': 'Strand', 'permalink': 'jani-strand'}}, {'is_past': False, 'title': 'Vice President, Seattle Engineering', 'person': {'first_name': 'Bridget', 'last_name': 'Frey', 'permalink': 'bridget-frey'}}, {'is_past': False, 'title': 'Vice President, Products', 'person': {'first_name': 'Bryan', 'last_name': 'Selner', 'permalink': 'bryan-selner'}}, {'is_past': False, 'title': 'Board member', 'person': {'first_name': 'James', 'last_name': 'Slavet', 'permalink': 'james-slavet'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Josh', 'last_name': 'Stein', 'permalink': 'josh-stein'}}, {'is_past': False, 'title': 'Vice President, Analytics & New Business', 'person': {'first_name': 'Adam', 'last_name': 'Wiener', 'permalink': 'adam-wiener'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Paul', 'last_name': 'Goodrich', 'permalink': 'paul-goodrich'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'William', 'last_name': 'Meurer', 'permalink': 'william-meurer'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Tom', 'last_name': 'Vogl', 'permalink': 'tom-vogl'}}, {'is_past': False, 'title': 'Board Observer', 'person': {'first_name': 'Scott', 'last_name': 'Jacobson', 'permalink': 'scott-jacobson-2'}}, {'is_past': False, 'title': 'Vice President, Real Estate Operations', 'person': {'first_name': 'Karen', 'last_name': 'Krupsaw', 'permalink': 'karen-krupsaw'}}, {'is_past': True, 'title': 'CTO & Co-Founder', 'person': {'first_name': 'David', 'last_name': 'Selinger', 'permalink': 'david-selinger'}}, {'is_past': True, 'title': 'Vice President, Engineering,, Engineering Manager, Search Team.', 'person': {'first_name': 'Sasha', 'last_name': 'Aickin', 'permalink': 'sasha-aickin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Young', 'permalink': 'michael-young'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lehmann', 'permalink': 'john-lehmann'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Bryan', 'last_name': 'Selner', 'permalink': 'bryan-selner'}}, {'is_past': True, 'title': 'Director of Analytics Engineering', 'person': {'first_name': 'Bridget', 'last_name': 'Frey', 'permalink': 'bridget-frey'}}, {'is_past': True, 'title': 'Real Estate Scientist', 'person': {'first_name': 'Tim', 'last_name': 'Ellis', 'permalink': 'tim-ellis-4'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Leo', 'last_name': 'Shklovskii', 'permalink': 'leo-shklovskii'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Director, Partner Programs & New Products,, Lead Product Manager.', 'person': {'first_name': 'Adam', 'last_name': 'Wiener', 'permalink': 'adam-wiener'}}, {'is_past': True, 'title': 'UI Graphic Designer', 'person': {'first_name': 'Stuart', 'last_name': 'Norrie', 'permalink': 'stuart-norrie'}}], 'competitions': [{'competitor': {'name': 'Cyberhomes', 'permalink': 'cyberhomes'}}, {'competitor': {'name': 'Trulia', 'permalink': 'trulia'}}, {'competitor': {'name': 'Zillow', 'permalink': 'zillow'}}, {'competitor': {'name': 'Terabitz', 'permalink': 'terabitz'}}, {'competitor': {'name': 'HotPads', 'permalink': 'hotpads-com'}}, {'competitor': {'name': 'HouseSpin', 'permalink': 'housespin'}}, {'competitor': {'name': 'findwell', 'permalink': 'findwell'}}, {'competitor': {'name': 'Metropolitan Regional Information Systems', 'permalink': 'metropolitan-regional-information-systems'}}, {'competitor': {'name': 'The Housing Block', 'permalink': 'the-housing-block'}}, {'competitor': {'name': 'Movoto', 'permalink': 'movoto-online-real-estate'}}, {'competitor': {'name': 'Estately', 'permalink': 'estately'}}], 'providerships': [], 'total_money_raised': '$96.8M', 'funding_rounds': [{'id': 185, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/07/17/redfin-takes-12-million-series-c-financing-amid-realtor-war/', 'source_description': '', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BEV Capital', 'permalink': 'bev-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 187, 'round_code': 'b', 'source_url': 'http://www.redfin.com/stingray/do/landing-page?uid=pr-funding', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BEV Capital', 'permalink': 'bev-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 188, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 770000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}]}, {'id': 9502, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 12, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 14113, 'round_code': 'unattributed', 'source_url': 'http://360digest.com/real-estate-opinion/redfin-gets-125-million/', 'source_description': 'Redfin Gets $1.25 Million', 'raised_amount': 1250000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}]}, {'id': 26203, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/10/27/redfin-raises-14-85-million-in-funding/', 'source_description': 'Redfin Raises Another $14.8 Million To Reinvent The Real Estate Market', 'raised_amount': 14800000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CrunchFund', 'permalink': 'crunchfund'}, 'person': None}]}, {'id': 54672, 'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/11/13/online-real-estate-veteran-redfin-lands-50m-from-tiger-global-investment-giant-t-rowe-price-as-it-looks-to-gain-market-share-in-the-u-s/', 'source_description': 'Online Real Estate Veteran Redfin Lands $50M From Tiger Global, Investment Giant T. Rowe Price As It Looks To Gain Market Share In The U.S.', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Tiger Global Management', 'permalink': 'tiger-global'}, 'person': None}, {'company': None, 'financial_org': {'name': 'T. Rowe Price', 'permalink': 't-rowe-price'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CrunchFund', 'permalink': 'crunchfund'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2025 1st Ave', 'address2': 'Suite 600', 'zip_code': '98121', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.603122, 'longitude': -122.333253}], 'milestones': [{'id': 5930, 'description': \"Redfin named in Lead411's Hottest Seattle Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 8, 'source_url': 'http://www.lead411.com/seattle-companies.html', 'source_text': None, 'source_description': \" Lead411's Hottest Seattle Companies list\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Redfin', 'permalink': 'redfin'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1a'), 'name': 'Wink', 'permalink': 'wink', 'crunchbase_url': 'http://www.crunchbase.com/company/wink', 'homepage_url': 'http://Wink.com', 'blog_url': 'http://blog.wink.com/', 'blog_feed_url': 'http://blog.wink.com/feed/', 'twitter_username': '', 'category_code': 'search', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 19, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'facebook-lesly-cordon-1832476690', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 12:16:09 UTC 2007', 'updated_at': 'Mon Mar 18 11:21:35 UTC 2013', 'overview': '

Wink is a people search engine that searches for profiles across the Web.

\\n\\n

Wink began in 2004 as a social search engine to use input from other people to influence the relevance of Web pages. But in 2006 Wink changed directions to become a people search engine. At the time there were numerous growing social networks and other places online with limited ability to search. Serving those looking to find old friends or anyone with an active online life, Wink searches about one billion profiles across popular social networks and other destinations.

\\n\\n

Wink merged with Reunion.com in November, 2008.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0000/3538/3538v1-max-150x150.png'], [[200, 67], 'assets/images/resized/0000/3538/3538v1-max-250x250.png'], [[200, 67], 'assets/images/resized/0000/3538/3538v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wink', 'permalink': 'wink'}], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Michael', 'last_name': 'Tanne', 'permalink': 'michael-tanne'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'David', 'last_name': 'Beach', 'permalink': 'david-beach'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'David', 'last_name': 'Koblas', 'permalink': 'david-koblas'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Bruce', 'last_name': 'Karsh', 'permalink': 'bruce-karsh'}}, {'is_past': True, 'title': 'Investment', 'person': {'first_name': 'William', 'last_name': 'Stewart', 'permalink': 'william-stewart'}}], 'competitions': [{'competitor': {'name': 'LinkedIn', 'permalink': 'linkedin'}}, {'competitor': {'name': 'WikiYou', 'permalink': 'wikiyou'}}, {'competitor': {'name': 'PeekYou', 'permalink': 'peekyou'}}, {'competitor': {'name': 'Bigsight Media Group', 'permalink': 'bigsight-media-group'}}, {'competitor': {'name': 'Biographicon', 'permalink': 'biographicon'}}, {'competitor': {'name': 'Spock', 'permalink': 'spock'}}, {'competitor': {'name': 'ZoomInfo', 'permalink': 'zoominfo'}}], 'providerships': [], 'total_money_raised': '$6.2M', 'funding_rounds': [{'id': 186, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/11/10/wink-now-searches-myspace-linkedin-and-beebo/', 'source_description': None, 'raised_amount': 6200000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2008/11/03/old-friends-wink-and-reunioncom-reconnect-merge/', 'source_description': 'Old Friends Wink And Reunion.com Reconnect, Merge', 'acquired_year': 2008, 'acquired_month': 11, 'acquired_day': None, 'acquiring_company': {'name': 'MyLife', 'permalink': 'mylife-com'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.40047, 'longitude': -122.072981}], 'milestones': [{'id': 1602, 'description': 'Wink People Search Reaches 500 Million People Worldwide', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 24, 'source_url': '', 'source_text': 'Wink People Search Reaches 500 Million People Worldwide', 'source_description': 'Wink People Search Reaches 500 Million People Worldwide', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wink', 'permalink': 'wink'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/25/wink-people-search-reaches-500-million-people-worldwide/', 'title': 'Wink People Search Reaches 500 Million People Worldwide'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1b'), 'name': 'Go2Web20', 'permalink': 'go2web20', 'crunchbase_url': 'http://www.crunchbase.com/company/go2web20', 'homepage_url': 'http://www.go2web20.net', 'blog_url': 'http://scoutness.com/', 'blog_feed_url': 'http://feeds.feedburner.com/go2web20net', 'twitter_username': 'Go2web20', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'go2web20, web2-0, flash, ajax, logos, directory', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 12:59:44 UTC 2007', 'updated_at': 'Tue Mar 12 17:46:10 UTC 2013', 'overview': '

Started in mid 2006, Go2Web20.net is a directory of web 2.0 applications and services. Israeli founders Orli Yakuel and Eyal Shahar started the site as a side project to show off their passion for Flash. Their directory of new web startup logos and basic information is nicely designed and fun to navigate. The site has proved to be popular (thousands of visitors every day), which has led the founders to add more logos and upgrade the site.

\\n\\n

In early 2007 the site began to take on advertisers (TechCrunch is advertising on the site to support the project).

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0000/3541/3541v2-max-150x150.jpg'], [[177, 35], 'assets/images/resized/0000/3541/3541v2-max-250x250.jpg'], [[177, 35], 'assets/images/resized/0000/3541/3541v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Go2Web20', 'permalink': 'go2web20'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Orli', 'last_name': 'Yakuel', 'permalink': 'orli-yakuel'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Eyal', 'last_name': 'Shahar', 'permalink': 'eyal-shahar'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Tel Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': 32.0554, 'longitude': 34.7595}], 'milestones': [{'id': 2412, 'description': '?', 'stoned_year': 1991, 'stoned_month': 2, 'stoned_day': 2, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Go2Web20', 'permalink': 'go2web20'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1e'), 'name': 'TechnologyGuide', 'permalink': 'technologyguide', 'crunchbase_url': 'http://www.crunchbase.com/company/technologyguide', 'homepage_url': 'http://www.technologyguide.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 10, 'founded_year': 2001, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Thu Aug 23 12:33:07 UTC 2007', 'updated_at': 'Fri Jul 11 21:08:47 UTC 2008', 'overview': None, 'image': None, 'products': [], 'relationships': [], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 1, 'acquiring_company': {'name': 'TechTarget', 'permalink': 'techtarget'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '7420 Jager Ct', 'address2': '', 'zip_code': '45230', 'city': 'Cincinnati', 'state_code': 'OH', 'country_code': 'USA', 'latitude': 39.06685, 'longitude': -84.351532}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e22'), 'name': 'Techmeme', 'permalink': 'techmeme', 'crunchbase_url': 'http://www.crunchbase.com/company/techmeme', 'homepage_url': 'http://techmeme.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'techmeme', 'category_code': 'web', 'number_of_employees': 11, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'techmeme, aggregator, news, technology, tech', 'alias_list': None, 'email_address': 'questionsorcomments@techmeme.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 19 05:06:39 UTC 2007', 'updated_at': 'Wed May 08 06:09:21 UTC 2013', 'overview': '

Techmeme, “the favorite news website of technology industry insiders” (Bloomberg) and “one of the first Web sites loaded on Silicon Valley’s laptops and iPhones each morning” (NYT), is the tech industry’s leading news aggregator. Introduced in 2005, the company added Mediagazer in 2010 to track media news. Other verticals include memeorandum (politics) and WeSmirch (celebrity news).

\\n\\n

Operating originally as Google News-style fully-automated news aggregators, the company blended in human editors to the curation process at Techmeme and Mediagazer beginning in 2008. Its staff now includes nine news editors.

\\n\\n

Techmeme has taken no outside investment, and is supported through revenues from sponsored blog posts, hiring promos, and event listings.

\\n\\n

Techmeme won two Crunchies (2007 and 2012), both for “Best Bootstrapped Startup”.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0000/3553/3553v1-max-150x150.jpg'], [[250, 66], 'assets/images/resized/0000/3553/3553v1-max-250x250.jpg'], [[281, 75], 'assets/images/resized/0000/3553/3553v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'TechMeme', 'permalink': 'techmeme'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Gabe', 'last_name': 'Rivera', 'permalink': 'gabe-rivera'}}, {'is_past': True, 'title': 'Editor', 'person': {'first_name': 'E.J', 'last_name': 'Kalafarski', 'permalink': 'e-j-kalafarski'}}], 'competitions': [{'competitor': {'name': 'Spinn3r', 'permalink': 'tailrank'}}, {'competitor': {'name': 'BuzzFeed', 'permalink': 'buzzfeed'}}, {'competitor': {'name': 'Silobreaker', 'permalink': 'silobreaker'}}, {'competitor': {'name': 'Newspond', 'permalink': 'newspond'}}, {'competitor': {'name': 'Pressflip', 'permalink': 'pressflip'}}, {'competitor': {'name': 'Naubo', 'permalink': 'naubo'}}, {'competitor': {'name': 'iKnowlej', 'permalink': 'iknowlej'}}, {'competitor': {'name': 'nobosh', 'permalink': 'nobosh'}}, {'competitor': {'name': 'Feedego', 'permalink': 'feedego'}}, {'competitor': {'name': 'RatherGather', 'permalink': 'rathergather'}}, {'competitor': {'name': 'OneSpot', 'permalink': 'onespot'}}, {'competitor': {'name': 'TechFuga', 'permalink': 'techfuga'}}, {'competitor': {'name': 'Newser', 'permalink': 'newser'}}, {'competitor': {'name': 'LAUNCH Ticker', 'permalink': 'launch-ticker'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7618242, 'longitude': -122.3985871}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://go.bloomberg.com/tech-deals/2012-12-04-no-vc-why-techmemes-gabe-rivera-resists-investors/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2b'), 'name': 'Ujogo', 'permalink': 'ujogo', 'crunchbase_url': 'http://www.crunchbase.com/company/ujogo', 'homepage_url': 'http://ujogo.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'ujogo', 'category_code': 'web', 'number_of_employees': 6, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2012, 'deadpooled_month': 1, 'deadpooled_day': 11, 'deadpooled_url': '', 'tag_list': 'ujogo', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Fri Jul 20 01:57:42 UTC 2007', 'updated_at': 'Mon Oct 07 09:11:55 UTC 2013', 'overview': '

Founded in 2006, Ujogo.com is a rewards-based free online games site. They’re trying to differentiate themselves from other free game sites by giving users points for time spent playing, which can later be redeemed for prizes. Ujogo can afford to give away these prizes due to money made from ads shown during games.

\\n\\n

Jul 19, 2007 was a big day for the San Francisco based site. They announced the launch of their public beta, a round of Series A funding and the acquisition of game developer Gaming Everywhere.

\\n\\n

It is unknown how long the site will be in public beta. Ujogo still has a long way to go with only one game currently available and no way to redeem points yet.

', 'image': {'available_sizes': [[[150, 76], 'assets/images/resized/0000/3610/3610v1-max-150x150.jpg'], [[165, 84], 'assets/images/resized/0000/3610/3610v1-max-250x250.jpg'], [[165, 84], 'assets/images/resized/0000/3610/3610v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Ujogo', 'permalink': 'ujogo'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder & COO', 'person': {'first_name': 'Steven', 'last_name': 'Sheinfield', 'permalink': 'steven-sheinfield'}}, {'is_past': False, 'title': 'Co-Founder & CIO', 'person': {'first_name': 'Doug', 'last_name': 'Sheppard', 'permalink': 'doug-sheppard'}}, {'is_past': False, 'title': 'VP, Sales and Marketing', 'person': {'first_name': 'Don', 'last_name': 'Cerullo', 'permalink': 'don-cerullo'}}, {'is_past': True, 'title': 'Founder, President & CEO', 'person': {'first_name': 'Eric', 'last_name': 'Gonzales', 'permalink': 'eric-gonzales'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 200, 'round_code': 'a', 'source_url': 'http://www.marketwirecanada.com/2.0/release.do?id=752801', 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.76785, 'longitude': -122.392861}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2c'), 'name': 'Recipezaar', 'permalink': 'recipezaar', 'crunchbase_url': 'http://www.crunchbase.com/company/recipezaar', 'homepage_url': 'http://www.recipezaar.com', 'blog_url': 'http://www.recipezaar.com/sitenews/', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 5, 'founded_year': 1999, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'recipes, recipezaar, cooking, cookpoint', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Jul 20 03:47:19 UTC 2007', 'updated_at': 'Tue Feb 14 08:27:43 UTC 2012', 'overview': '

Launched in December 1999, Recipezaar (originally Cookpoint.com) is an online community for people who like to cook. The site was started by two former Microsoft employees in Seattle. Users have posted hundreds of thousands of recipes to the site and hundreds more are added each day.

\\n\\n

The company has been profitable since 2002 and never took outside funding. On July 19, 2007 Recipezaar was acquired by Scripps Networks (a division of the The E.W. Scripps Company) for a rumored $25 million. Scripps is the company behind HGTV and the Food Network. They’ve said that Recipezaar will function separate from, but as a complement to FoodNetwork.com.

\\n\\n

Recipezaar reported 2.3 million unique visitors in June 2007, which combined with FoodNetwork.com’s visitors will increase Scripps Networks’ audience share to 19 percent.

\\n\\n

In 2010, Scripps Networks rebranded RecipeZaar as Food.com, and phased out the RecipeZaar.com brand. RecipeZaar now redirects to Food.com.

\\n\\n

Other cooking/recipe sites include AllRecipes, Snacksby and Google Recipes (part of Google Base).

', 'image': {'available_sizes': [[[147, 100], 'assets/images/resized/0000/3613/3613v1-max-150x150.jpg'], [[147, 100], 'assets/images/resized/0000/3613/3613v1-max-250x250.jpg'], [[147, 100], 'assets/images/resized/0000/3613/3613v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Recipezaar', 'permalink': 'recipezaar'}], 'relationships': [{'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Gay', 'last_name': 'Gilmore', 'permalink': 'gay-gilmore'}}, {'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Troy', 'last_name': 'Hakala', 'permalink': 'troy-hakala'}}], 'competitions': [{'competitor': {'name': 'Cookthink', 'permalink': 'cookthink'}}, {'competitor': {'name': 'FamilyOven', 'permalink': 'familyoven'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blog.seattlepi.nwsource.com/venture/archives/118242.asp', 'source_description': 'seatlepi.com', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'Scripps Networks Interactive', 'permalink': 'scripps-networks-interactive'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'P.O. Box 1749', 'address2': None, 'zip_code': '98070', 'city': 'Vashon', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.420728, 'longitude': -122.450942}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2d'), 'name': 'Gumiyo', 'permalink': 'gumiyo', 'crunchbase_url': 'http://www.crunchbase.com/company/gumiyo', 'homepage_url': 'http://www.gumiyo.com', 'blog_url': 'http://blog.gumiyo.com', 'blog_feed_url': 'http://blog.gumiyo.com/feeds/posts/default?alt=rss', 'twitter_username': 'Gumiyo', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, publishing, platform, saas, cloud', 'alias_list': '', 'email_address': 'contact@gumiyo.com', 'phone_number': '8184714000', 'description': '', 'created_at': 'Tue Feb 05 22:28:18 UTC 2008', 'updated_at': 'Sat May 18 10:02:02 UTC 2013', 'overview': '

Gumiyo enables publishers and businesses to connect with consumers on any device. The company’s cloud-hosted platform includes authoring tools that power more than 45,000 mobile sites, apps, and messaging programs for leading publishers, media companies, and software vendors worldwide. Integrating over 6,000 separate data sources including inventory systems, content management systems, CRM and ERP systems, Gumiyo’s platform enables its customers to build and distribute private label mobile solutions to over 150,000 small- and medium-sized businesses in a scalable and cost-effective way.

\\n\\n

Gumiyo operates across a number of industries, including traditional and digital publishers, broadcast media, automotive, real estate, local business and brand marketing.

\\n\\n

The company was founded in 2006 with corporate headquarters in Woodland Hills, CA.

', 'image': {'available_sizes': [[[150, 64], 'assets/images/resized/0000/3616/3616v6-max-150x150.jpg'], [[250, 107], 'assets/images/resized/0000/3616/3616v6-max-250x250.jpg'], [[342, 147], 'assets/images/resized/0000/3616/3616v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Gumiyo.com', 'permalink': 'gumiyo-com'}], 'relationships': [{'is_past': False, 'title': 'Board Chairman', 'person': {'first_name': 'Chuck', 'last_name': 'Abronson', 'permalink': 'chuck-abronson'}}, {'is_past': False, 'title': 'Co - Founder & CEO', 'person': {'first_name': 'Shuki', 'last_name': 'Lehavi', 'permalink': 'shuki-lehavi'}}, {'is_past': False, 'title': 'Co - Founder & VP, Marketing', 'person': {'first_name': 'Richard', 'last_name': 'Abronson', 'permalink': 'richard-abronson'}}, {'is_past': False, 'title': 'Director, Sales', 'person': {'first_name': 'Tim', 'last_name': 'Repsher', 'permalink': 'tim-repsher'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Harvey', 'last_name': 'Olifson', 'permalink': 'harvey-olifson'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bob', 'last_name': 'Hawk', 'permalink': 'bob-hawk'}}, {'is_past': False, 'title': 'Director, Account Management', 'person': {'first_name': 'Jim', 'last_name': 'Justinich', 'permalink': 'jim-justinich'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Yuri', 'last_name': 'Pikover', 'permalink': 'yuri-pikover'}}, {'is_past': True, 'title': 'VP, Operations', 'person': {'first_name': 'Fabian', 'last_name': 'Schonholz', 'permalink': 'fabian-schonholz'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 1011, 'round_code': 'seed', 'source_url': 'http://biz.yahoo.com/bw/071030/20071030005082.html?.v=1', 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '21021 Ventura Blvd.', 'address2': 'Suite 220', 'zip_code': '91364', 'city': 'Woodland Hills', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.184598, 'longitude': -118.601532}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2e'), 'name': 'stylediary', 'permalink': 'stylediary', 'crunchbase_url': 'http://www.crunchbase.com/company/stylediary', 'homepage_url': 'http://www.stylediary.net', 'blog_url': 'http://www.industrygirlblog.com', 'blog_feed_url': 'http://www.industrygirlblog.com/?feed=rss2', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Feb 05 22:28:18 UTC 2008', 'updated_at': 'Sat May 09 19:34:01 UTC 2009', 'overview': '

Niche fashion social media company.

', 'image': {'available_sizes': [[[150, 45], 'assets/images/resized/0000/3619/3619v1-max-150x150.png'], [[250, 75], 'assets/images/resized/0000/3619/3619v1-max-250x250.png'], [[265, 80], 'assets/images/resized/0000/3619/3619v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'stylediary', 'permalink': 'stylediary'}], 'relationships': [{'is_past': None, 'title': 'founder/ceo', 'person': {'first_name': 'Patricia', 'last_name': 'Handschiegel', 'permalink': 'patricia-handschiegel'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'William', 'last_name': 'Wicks', 'permalink': 'william-kapke'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'JMP Securities', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': None, 'acquiring_company': {'name': 'Stylehive', 'permalink': 'stylehive'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': None, 'zip_code': '90036', 'city': '', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.070436, 'longitude': -118.350486}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3560/43560v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3560/43560v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3560/43560v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e34'), 'name': 'Piczo', 'permalink': 'piczo', 'crunchbase_url': 'http://www.crunchbase.com/company/piczo', 'homepage_url': 'http://www.piczo.com', 'blog_url': 'http://officialpiczoblog.piczo.com/', 'blog_feed_url': 'http://officialpiczoblog.piczo.com/', 'twitter_username': 'piczo', 'category_code': 'network_hosting', 'number_of_employees': None, 'founded_year': 1990, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialnetwork, teenagers, uk, tevinakahypo, playboy, sarse, xxhollienkeeleyxx-piczo-com, www-ilovejayloads-piczo-com', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Fri Jul 20 06:52:48 UTC 2007', 'updated_at': 'Tue Mar 19 10:26:22 UTC 2013', 'overview': '

Few websites can say that they emerged from 100 emails sent to potential users and word of mouth. Even fewer can say that from those 100 emails came 10 million unique visitors a day. Such is the story of the creation of Piczo.com, a social networking site aimed at young teens. Piczo presents itself as the safer alternative to other social networking sites like Facebook, Myspace, and Friendster. This emphasis on safety is due to heavy involvement by WiredSafety and the Child Exploiation and Online Protection Agency. In 2007, Piczo announced $11 Million in Series C funding, primarily by U.S. Venture Partners and Mangrove Capital. In September 2009 Piczo changed is design to a more girlish design thinking that it would increase it’s users, but it only made things worse, both sex’s rebelled against this change and still to this day Piczo hasn’t regretted changing although many of it’s users are now switching to alternatives such as Weebly and Webs.

\\n\\n

(Updated on 1st September 2010 by Mongrels

', 'image': {'available_sizes': [[[130, 95], 'assets/images/resized/0002/7314/27314v45-max-150x150.png'], [[130, 95], 'assets/images/resized/0002/7314/27314v45-max-250x250.png'], [[130, 95], 'assets/images/resized/0002/7314/27314v45-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Piczo', 'permalink': 'piczo'}], 'relationships': [{'is_past': True, 'title': 'Founder, CTO, VP Engineering', 'person': {'first_name': 'Jim', 'last_name': 'Conning', 'permalink': 'jim-conning'}}, {'is_past': True, 'title': 'CEO and President', 'person': {'first_name': 'Jeremy', 'last_name': 'Verba', 'permalink': 'jeremy-verba'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Sandy', 'last_name': 'Khaund', 'permalink': 'sandy-khaund'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Peter', 'last_name': 'Van Pruissen', 'permalink': 'peter-van-pruissen'}}, {'is_past': True, 'title': 'VP of Products and Marketing', 'person': {'first_name': 'Jeanine', 'last_name': 'LeFlore', 'permalink': 'jeanine-leflore'}}, {'is_past': True, 'title': 'VP North American Sales', 'person': {'first_name': 'Derek', 'last_name': 'Rudd', 'permalink': 'derek-rudd'}}, {'is_past': True, 'title': 'CRO', 'person': {'first_name': 'Geoff', 'last_name': 'Judge', 'permalink': 'geoff-judge'}}, {'is_past': True, 'title': 'Creative / UX Lead', 'person': {'first_name': 'Joel', 'last_name': 'Marsh', 'permalink': 'joel-marsh'}}, {'is_past': True, 'title': 'Advisory Board Member', 'person': {'first_name': 'Jeanine', 'last_name': 'LeFlore', 'permalink': 'jeanine-leflore'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Bryan', 'last_name': 'Bennett', 'permalink': 'bryan-bennett'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Peter', 'last_name': 'Van Pruissen', 'permalink': 'peter-van-pruissen'}}], 'competitions': [{'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}, {'competitor': {'name': 'hi5', 'permalink': 'hi5'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Friendster', 'permalink': 'friendster'}}], 'providerships': [], 'total_money_raised': '$11M', 'funding_rounds': [{'id': 1476, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/01/17/piczo-raises-11-million/', 'source_description': 'Piczo Raises $11 million', 'raised_amount': 11000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'US Venture Partners', 'permalink': 'us-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.marketingvox.com/stardoll-piczo-to-merge-operations-043443/', 'source_description': 'Stardoll, Piczo to Merge Operations', 'acquired_year': None, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'Stardoll', 'permalink': 'stardoll'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '150 California Street', 'address2': 'Suite 1000', 'zip_code': '94111', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793703, 'longitude': -122.398479}], 'milestones': [{'id': 18113, 'description': 'Piczo merges with Stardoll.', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.marketingvox.com/stardoll-piczo-to-merge-operations-043443/', 'source_text': '', 'source_description': 'Stardoll, Piczo to Merge Operations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Piczo', 'permalink': 'piczo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0010/0245/100245v2-max-150x150.png'], [[250, 156], 'assets/images/resized/0010/0245/100245v2-max-250x250.png'], [[450, 281], 'assets/images/resized/0010/0245/100245v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e37'), 'name': 'Cyworld', 'permalink': 'cyworld', 'crunchbase_url': 'http://www.crunchbase.com/company/cyworld', 'homepage_url': 'http://us.cyworld.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'cyworld', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Social Network', 'created_at': 'Fri Jul 20 09:34:30 UTC 2007', 'updated_at': 'Fri Mar 15 21:08:14 UTC 2013', 'overview': '

South Korea’s most popular social networking site, Cyworld, has now brought a version of its site to the US. Founded in 1999, Cyworld was bought in 2003 by SK Telecom, Korea’s primary provider of mobile telecommunications. Since then Cyworld has experienced rapid growth, becoming a social networking phenomenon in South Korea. In fact, Cyworld has claimed more than one third of Korea’s entire population as members, while achieving incredible penetration of Korea’s young adult market: 90% of Koreans in their 20s are members of Cyworld.

\\n\\n

Cyworld - US version - lets users sign up and create their own profile (called a Minihome in Cyworld) and their own avatar (Minime) for free. You can then personalize your avatar, design a Miniroom, meet new people, stay in touch with friends, send messages, upload photos, exchange gifts, and more. Essentially, Cyworld allows users to create their own personalized cyber-lives through which they can live vicariously, express themselves, and connect with friends.

\\n\\n

The company has recently expanded its social networking site to other countries including China, Taiwan, Japan, and now the US. It is sure to face steep competition from US social networking giants MySpace and Facebook, and will face difficulty luring away US users who have been long-entrenched in their familiar social networks. It will be interesting to see whether Cyworld’s great success in Asia can translate to success in the US.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0002/2359/22359v3-max-150x150.jpg'], [[250, 68], 'assets/images/resized/0002/2359/22359v3-max-250x250.jpg'], [[294, 81], 'assets/images/resized/0002/2359/22359v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Cyworld', 'permalink': 'cyworld'}], 'relationships': [{'is_past': True, 'title': 'Board, CEO', 'person': {'first_name': 'Henry', 'last_name': 'Chon', 'permalink': 'henry-chon'}}], 'competitions': [{'competitor': {'name': 'Linden Lab', 'permalink': 'secondlife'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'competitor': {'name': 'Xiaonei', 'permalink': 'xiaonei'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 7140000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessweek.com/magazine/content/05_39/b3952405.htm', 'source_description': 'E-Society: My World Is Cyworld', 'acquired_year': 2003, 'acquired_month': 8, 'acquired_day': 5, 'acquiring_company': {'name': 'SK Telecom', 'permalink': 'sktelecom'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'Lim Kwang B/D, 257', 'address2': 'Migeun-dong, Seodaemun-gu', 'zip_code': '120-020', 'city': 'Seoul', 'state_code': None, 'country_code': 'KOR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 243, 'description': 'muvee and Cyworld Announce Collaboration and New Service', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 18, 'source_url': 'http://www.socialmediaportal.com/PressReleases/2008/07/muvee-and-Cyworld-Announce-Collaboration-and-New-Service.aspx', 'source_text': ' Singapore, Korea, and San Francisco (PRWEB) -- muvee Technologies Pte Ltd, the pioneer and leader in automatic video editing, and Cyworld, South Korea\\'s largest social networking site, today announced a new video editing service for Cyworld members. This new offering, which puts the power of muvee\\'s patented technology in the hands of Cyworld\\'s more than 20 million users, allows consumers to add music and unique styles to their videos and photos and create emotionally engaging muvees to share with their online friends and family. Cyworld users will ultimately have access to hundreds of online editing styles, which they can use with Cyworld credits called dotoris to automatically create muvees and then easily display on their mini Hompy (Home Pages).\\r\\n\\r\\n\"Years before the term \\'Web 2.0\\' was coined in the West, Korea had already been at the forefront of what we now call social media and virtual worlds,\" said Terence Swee, CEO of muvee. \"muvee is proud to be Cyworld\\'s chosen platform provider for a service that can both satisfy the ease of use and interactivity demands of discerning Korean internet consumers, and match the scale of Cyworld\\'s service level requirements. This partnership is a strategic addition to our internet business, which complements global partners we have in the PC and mobile space.\"\\r\\n\\r\\nmuvee\\'s goal is to help people to relive and share their special moments -- the planned, the unexpected, and everything in between. While Cyworld members can already share their personal media in its original form, they now have the opportunity to create something fun and new that will add an exciting twist and change the way they can express themselves.\\r\\n\\r\\nA recent study by the Organization for Economic Co-Operation and Development (OEDC) found that South Korea has the world\\'s highest household broadband penetration. South Korea is also known to have the most advanced mobile cellular network in the world. This has helped the South Korean population to become the most advanced consumers of social networking services both online and on mobile wireless networks.\\r\\n\\r\\nThe muvee making service is available today at www.cyworld.com.\\r\\n\\r\\nAbout muvee\\r\\nmuvee\\'s software and services feature patented technology that lets people create and share professional-quality instant home movies out of unedited video, digital pictures and music. muvee develops consumer products for a range of platforms and devices including PCs, digital cameras, mobile phones and photo kiosks. muvee\\'s global customers include HP, Dell, Nokia, LG, Sony, Olympus, Nikon and Creative Technology. Visit www.muvee.com for more information. ', 'source_description': 'muvee and Cyworld Announce Collaboration and New Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cyworld', 'permalink': 'cyworld'}}, {'id': 2462, 'description': 'Cyworld Shutting Down U.S. Service; So Much For $110 Million Earmark', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://paidcontent.org/article/419-cyworld-shutting-down-u.s.-service-so-much-for-110-million-earmark/', 'source_text': '', 'source_description': 'paidContent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cyworld', 'permalink': 'cyworld'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 143], 'assets/images/resized/0013/6309/136309v2-max-150x150.jpg'], [[250, 239], 'assets/images/resized/0013/6309/136309v2-max-250x250.jpg'], [[450, 430], 'assets/images/resized/0013/6309/136309v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://anonymx.com/category/0DAY/', 'title': '0DAY'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e3b'), 'name': 'Socialtext', 'permalink': 'socialtext', 'crunchbase_url': 'http://www.crunchbase.com/company/socialtext', 'homepage_url': 'http://www.socialtext.com', 'blog_url': 'http://www.socialtext.com/blog', 'blog_feed_url': '', 'twitter_username': 'Socialtext', 'category_code': 'enterprise', 'number_of_employees': 50, 'founded_year': 2002, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'wiki, socialsoftware, socialnetworking, social-networking, social-software, collaboration, enterprise2-0', 'alias_list': '', 'email_address': 'sales@socialtext.com', 'phone_number': '650-323-0800', 'description': 'Enterprise Social Software/Collaboration', 'created_at': 'Fri Jul 20 12:39:45 UTC 2007', 'updated_at': 'Tue Dec 31 13:29:04 UTC 2013', 'overview': '

Established in 2002, Socialtext, a Bedford Funding portfolio company, was the first company to deliver social software to businesses. By unlocking knowledge, expertise, ideas and data, Socialtext eliminates information silos across the enterprise to drive superior business performance. Socialtext’s enterprise social networking products — including microblogging, blogs, wikis, profiles and social spreadsheets — provide simpler ways for employees to share vital information and work together in real-time. Delivered in a variety of hosted cloud services, as well as on-site appliances, enterprise customers are provided with flexible deployment options that meet their security requirements. Built on a flexible, web-oriented architecture, Socialtext integrates with virtually any traditional system of record, such as CRM and ERP, enabling companies to discuss, collaborate, and take action on key business processes. More than 6,500 businesses worldwide have accelerated their business performance with Socialtext, including Getty Images, Symantec, Meredith Corporation, NYU Stern, OSIsoft, and Epitaph Records.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0000/3673/3673v1-max-150x150.png'], [[165, 38], 'assets/images/resized/0000/3673/3673v1-max-250x250.png'], [[165, 38], 'assets/images/resized/0000/3673/3673v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Socialtext Workspaces', 'permalink': 'socialtext'}, {'name': 'Socialtext People', 'permalink': 'socialtext-people'}, {'name': 'Socialtext Dashboard', 'permalink': 'socialtext-dashboard'}, {'name': 'Socialtext Desktop', 'permalink': 'socialtext-desktop'}, {'name': 'Socialcalc', 'permalink': 'socialcalc'}, {'name': 'Socialtext Signals (Microblogging)', 'permalink': 'socialtext-signals-microblogging'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Doug', 'last_name': 'Ring', 'permalink': 'doug-ring'}}, {'is_past': False, 'title': 'VP Engineering', 'person': {'first_name': 'Shampa', 'last_name': 'Banerjee', 'permalink': 'shampa-banerjee'}}, {'is_past': False, 'title': 'SocialCalc Product Lead', 'person': {'first_name': 'Dan', 'last_name': 'Bricklin', 'permalink': 'dan-bricklin'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'Lewis', 'permalink': 'mike-lewis-6'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Timothy', 'last_name': 'Draper', 'permalink': 'timothy-draper'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Eugene', 'last_name': 'Lee', 'permalink': 'eugene-lee'}}, {'is_past': True, 'title': 'Co-founder/VP of Products', 'person': {'first_name': 'Adina', 'last_name': 'Levin', 'permalink': 'adina-levin'}}, {'is_past': True, 'title': 'Co-founder/Chairman/President', 'person': {'first_name': 'Ross', 'last_name': 'Mayfield', 'permalink': 'ross-mayfield'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Britta', 'last_name': 'Meyer', 'permalink': 'britta-meyer'}}, {'is_past': True, 'title': 'General Manager and Chief Customer Officer', 'person': {'first_name': 'Michael', 'last_name': 'Idinopulos', 'permalink': 'michael-idinopolus'}}, {'is_past': True, 'title': 'Co-founder/CTO', 'person': {'first_name': 'Peter', 'last_name': 'Kaminski', 'permalink': 'peter-kaminski'}}, {'is_past': True, 'title': 'VP of Sales', 'person': {'first_name': 'Brian', 'last_name': 'Bailard', 'permalink': 'brian-bailard'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Peter', 'last_name': 'Allen', 'permalink': 'peter-allen'}}, {'is_past': True, 'title': 'VP of Sales', 'person': {'first_name': 'Kris', 'last_name': 'Duggan', 'permalink': 'kris-duggan'}}, {'is_past': True, 'title': 'VP of Business Development', 'person': {'first_name': 'Paul', 'last_name': 'Wescott', 'permalink': 'paul-wescott'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jimmy', 'last_name': 'Wales', 'permalink': 'jimmy-wales-2'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Alan', 'last_name': 'Lepofsky', 'permalink': 'alan-lepofsky'}}, {'is_past': True, 'title': 'Advisory Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Gruber', 'permalink': 'tom-gruber'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Joi', 'last_name': 'Ito', 'permalink': 'joi-ito'}}, {'is_past': True, 'title': 'Board or Directors', 'person': {'first_name': 'Julie', 'last_name': 'Hanna', 'permalink': 'julie-hanna-ferris'}}, {'is_past': True, 'title': 'Observer', 'person': {'first_name': 'Joel', 'last_name': 'Yarmon', 'permalink': 'joel-yarmon'}}, {'is_past': True, 'title': 'Director, Marketing', 'person': {'first_name': 'Sandra', 'last_name': 'Ponce De Leon', 'permalink': 'sandra-ponce-de-leon'}}], 'competitions': [{'competitor': {'name': 'PBworks', 'permalink': 'pbworks'}}, {'competitor': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'competitor': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}, {'competitor': {'name': 'Yammer', 'permalink': 'yammer'}}, {'competitor': {'name': 'Jive Software', 'permalink': 'jive-software'}}, {'competitor': {'name': 'Qontext', 'permalink': 'qontext'}}, {'competitor': {'name': 'Hall', 'permalink': 'hall-com'}}, {'competitor': {'name': 'Optini', 'permalink': 'optini'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'AIIM', 'permalink': 'aiim'}}], 'total_money_raised': '$46.8M', 'funding_rounds': [{'id': 212, 'round_code': 'angel', 'source_url': 'http://www.forbes.com/forbes/2004/0621/062a_print.html', 'source_description': 'Veni, Vidi ...Wiki?', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 213, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/socialtext-raised-31-million-in-series-b-funding/', 'source_description': 'Socialtext Raised $3.1 Million In Series B Funding ', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SAP Ventures', 'permalink': 'sap-ventures'}, 'person': None}]}, {'id': 1025, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/11/04/socialtext-offers-social-software-to-big-companies-raises-cash/', 'source_description': '', 'raised_amount': 9500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SAP Ventures', 'permalink': 'sap-ventures'}, 'person': None}]}, {'id': 5510, 'round_code': 'd', 'source_url': 'http://www.pehub.com/36250/socialtext-raises-fourth-round/', 'source_description': 'Socialtext Raises Fourth Round', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'University of Utah Endowment', 'permalink': 'university-of-utah-endowment'}, 'person': None}]}, {'id': 9137, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'Draper via TC', 'raised_amount': 1700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}]}, {'id': 29673, 'round_code': 'unattributed', 'source_url': 'http://www.marketwatch.com/story/bedford-funding-invests-in-socialtext-2012-05-01', 'source_description': 'Bedford Funding Invests in Socialtext', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': {'name': 'Bedford Funding', 'permalink': 'bedford-funding'}, 'financial_org': None, 'person': None}]}, {'id': 59670, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1454103/000145410310000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 27670000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 7, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '655 High Street', 'address2': None, 'zip_code': '94301', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.442949, 'longitude': -122.1615}], 'milestones': [{'id': 733, 'description': 'Launched Socialtext 3.0', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 30, 'source_url': 'http://www.socialtext.com/blog/2008/09/introducing-socialtext-30.html', 'source_text': None, 'source_description': 'Introducing Socialtext 3.0', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1795, 'description': 'Socialtext Unveils Free Enterprise 2.0 Offering Aimed at Mainstream Use; Social Spreadsheet Enters Public Beta', 'stoned_year': 2009, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://www.socialtext.com/blog/2009/06/socialtext-unveils-free-enterp.html', 'source_text': None, 'source_description': 'Free Enterprise 2.0 Offering, Social Spreadsheet', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1815, 'description': 'Launched Microblogging Appliance and Desktop Download', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': 3, 'source_url': 'http://www.techcrunch.com/2009/03/03/socialtext-adds-twitter-like-signals-and-a-desktop-air-app/', 'source_text': None, 'source_description': 'Socialtext Adds Twitter-like “Signalsâ€\\x9d And a Desktop AIR App', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1816, 'description': 'Socialtext hires CEO Eugene Lee', 'stoned_year': 2007, 'stoned_month': 11, 'stoned_day': 6, 'source_url': 'http://www.venturedeal.com/News/2007/11/6/SocialText-Raises-New-Funding-And-Hires-CEO', 'source_text': None, 'source_description': 'SocialText Raises New Funding And Hires CEO', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1817, 'description': 'Socialtext Releases Signals Micro-blogging Application for the Enterprise', 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 14, 'source_url': 'http://www.socialtext.com/news/pressrelease_2009.03.03.php', 'source_text': None, 'source_description': 'Socialtext Releases Signals Micro-blogging Application for the Enterprise', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Overview of Socialtext enterprise social software platform.

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0011/0307/110307v2-max-150x150.png'], [[250, 157], 'assets/images/resized/0011/0307/110307v2-max-250x250.png'], [[450, 284], 'assets/images/resized/0011/0307/110307v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 94], 'assets/images/resized/0011/0349/110349v2-max-150x150.png'], [[250, 157], 'assets/images/resized/0011/0349/110349v2-max-250x250.png'], [[450, 284], 'assets/images/resized/0011/0349/110349v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e41'), 'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere', 'crunchbase_url': 'http://www.crunchbase.com/company/connectmeanywhere', 'homepage_url': 'http://www.connectmeanywhere.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Sat Jul 21 09:25:55 UTC 2007', 'updated_at': 'Fri May 23 23:50:30 UTC 2008', 'overview': '

Husband and Wife team Ryan and Melinda Gallagher founded ConnectMeAnywhere.com, a VOIP service which launched in September of 2006. CMA provides users with a list of locally accessed VOIP access numbers, enabling calls all over the world to be treated as local calls with VOIP connections.

', 'image': {'available_sizes': [[[150, 19], 'assets/images/resized/0000/3691/3691v1-max-150x150.jpg'], [[250, 32], 'assets/images/resized/0000/3691/3691v1-max-250x250.jpg'], [[348, 45], 'assets/images/resized/0000/3691/3691v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere'}], 'relationships': [{'is_past': None, 'title': 'Founder & Communications Director', 'person': {'first_name': 'Bellinda', 'last_name': 'Gallagher', 'permalink': 'bellinda-gallagher'}}, {'is_past': None, 'title': 'Business Development Director', 'person': {'first_name': 'Andrew', 'last_name': 'Skates', 'permalink': 'andrew-skates'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Ryan', 'last_name': 'Gallagher', 'permalink': 'ryan-gallagher'}}, {'is_past': True, 'title': 'Development and Architecture', 'person': {'first_name': 'Mark', 'last_name': 'Carbonaro', 'permalink': 'mark-carbonaro'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Donegan', 'permalink': 'dan-donegan'}}], 'competitions': [{'competitor': {'name': 'barablu', 'permalink': 'barablu'}}, {'competitor': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Skype', 'permalink': 'skype'}}, {'competitor': {'name': 'Truphone', 'permalink': 'truphone'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '14 Elgin Crescent', 'address2': None, 'zip_code': None, 'city': 'London W11 2HX', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.514935, 'longitude': -0.205349}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'permalink': 'hi5', 'crunchbase_url': 'http://www.crunchbase.com/company/hi5', 'homepage_url': 'http://hi5.com', 'blog_url': 'http://www.hi5networks.com/blog/', 'blog_feed_url': 'http://feeds.feedburner.com/Hi5Blog', 'twitter_username': 'hi5', 'category_code': 'games_video', 'number_of_employees': 100, 'founded_year': 2003, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'hi5, socialnetworking, musicnetwork, youyu', 'alias_list': '', 'email_address': 'info@hi5.com', 'phone_number': '415.404.6094', 'description': '', 'created_at': 'Mon Jul 23 14:18:40 UTC 2007', 'updated_at': 'Tue Mar 12 06:47:55 UTC 2013', 'overview': '

Founded in 2003, hi5 today is one of the largest social entertainment\\nsites in the world, with approximately 50 million monthly unique\\nvisitors who use the site to stay connected to friends, meet new people,\\nshare photos, and play games. Available in over 50 languages, hi5\\ncombines ad-supported social networking features with payment-based\\npremium content to deliver a user experience focused on self-expression\\nand interactivity that appeals to the site’s young demographic (67% of\\nusers are age 18-34). Social games, virtual goods, and other premium\\ncontent on the site is monetized through hi5 Coins, a virtual currency\\nsupporting over 60 payment methods and 30 currencies worldwide. The site\\nalso supports third-party games and other applications through its\\nOpenSocial platform.

', 'image': {'available_sizes': [[[150, 76], 'assets/images/resized/0001/5722/15722v71-max-150x150.jpg'], [[250, 127], 'assets/images/resized/0001/5722/15722v71-max-250x250.jpg'], [[305, 156], 'assets/images/resized/0001/5722/15722v71-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'hi5', 'permalink': 'hi5'}], 'relationships': [{'is_past': False, 'title': 'Founder & Director', 'person': {'first_name': 'Ramu', 'last_name': 'Yalamanchi', 'permalink': 'ramu-yalamanchi'}}, {'is_past': False, 'title': 'President & CTO', 'person': {'first_name': 'Alex', 'last_name': 'St. John', 'permalink': 'alex-st-john'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Jeff', 'last_name': 'Stephens', 'permalink': 'jeff-stephens'}}, {'is_past': False, 'title': 'VP Marketing', 'person': {'first_name': 'Michael', 'last_name': 'Trigg', 'permalink': 'michael-trigg'}}, {'is_past': False, 'title': 'Co-Founder & Director', 'person': {'first_name': 'Akash', 'last_name': 'Garg', 'permalink': 'akash-garg'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Karen', 'last_name': 'Richardson', 'permalink': 'karen-richardson'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bill', 'last_name': 'Gossman', 'permalink': 'bill-gossman'}}, {'is_past': True, 'title': 'VP hi5 Mobile', 'person': {'first_name': 'Noelia', 'last_name': 'Amoedo', 'permalink': 'noelia-amoedo'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Anil', 'last_name': 'Dharni', 'permalink': 'anil-dharni'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Brett', 'last_name': 'Blair', 'permalink': 'brett-blair'}}, {'is_past': True, 'title': 'Director, User Experience and Front End Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Holzer', 'permalink': 'michael-holzer'}}, {'is_past': True, 'title': 'Executive Producer', 'person': {'first_name': 'Andrew', 'last_name': 'Sheppard', 'permalink': 'andrew-sheppard'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Kate', 'last_name': 'Pietrelli', 'permalink': 'kate-pietrelli'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Charles', 'last_name': 'Ying', 'permalink': 'charles-ying'}}, {'is_past': True, 'title': 'Senior Interaction Designer / Design Lead', 'person': {'first_name': 'Michael', 'last_name': 'Owens', 'permalink': 'michael-owens'}}, {'is_past': True, 'title': 'Online Community', 'person': {'first_name': 'Siko', 'last_name': 'Bouterse', 'permalink': 'siko-bouterse'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Nuno', 'last_name': 'Peralta', 'permalink': 'nuno-peralta'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Fabio', 'last_name': 'Serpa', 'permalink': 'fabio-serpa'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Basel', 'last_name': 'Nimer', 'permalink': 'basel-nimer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Anurag (Anu)', 'last_name': 'Nigam', 'permalink': 'anurag-nigam'}}, {'is_past': True, 'title': 'Director, Global Communications', 'person': {'first_name': 'Adriana', 'last_name': 'Gascoigne', 'permalink': 'adriana-gascioigne'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Ram', 'last_name': 'Gudavalli', 'permalink': 'ram-gudavalli'}}, {'is_past': True, 'title': 'Database Architect / DBA Team Manager', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Andrew', 'last_name': 'Davis', 'permalink': 'andrew-davis-2'}}, {'is_past': True, 'title': 'Official Moderator', 'person': {'first_name': 'Marco', 'last_name': 'Pinheiro', 'permalink': 'marco-pinheiro'}}], 'competitions': [{'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'Piczo', 'permalink': 'piczo'}}, {'competitor': {'name': 'Tagged', 'permalink': 'tagged'}}, {'competitor': {'name': 'Badoo', 'permalink': 'badoo'}}, {'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}, {'competitor': {'name': 'Xanga', 'permalink': 'xanga'}}, {'competitor': {'name': 'VK.com', 'permalink': 'vk'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Atomic PR', 'permalink': 'atomic-pr'}}], 'total_money_raised': '$52M', 'funding_rounds': [{'id': 220, 'round_code': 'a', 'source_url': 'http://www.hi5networks.com/prs/0724070.html', 'source_description': 'hi5', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mohr Davidow Ventures', 'permalink': 'mohr-davidow-ventures'}, 'person': None}]}, {'id': 1539, 'round_code': 'debt_round', 'source_url': 'http://biz.yahoo.com/bw/080129/20080129005384.html?.v=1', 'source_description': 'Hercules Technology Growth Capital Press Release', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Hercules Technology Growth Capital', 'permalink': 'hercules-technology-growth'}, 'person': None}]}, {'id': 13690, 'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2010/04/01/social-network-hi5-raises-23-million-in-funding/', 'source_description': 'TechCrunch', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Mohr Davidow Ventures', 'permalink': 'mohr-davidow-ventures'}, 'person': None}]}, {'id': 16939, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/07/13/gaming-social-network-hi5-raises-14-million/', 'source_description': 'Gaming-Focused Social Network hi5 Raises $14 Million', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Crosslink Capital', 'permalink': 'crosslink-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/14/facebooks-leftovers-social-network-tagged-acquires-hi5/', 'source_description': 'Facebook’s Leftovers? Social Network Tagged Acquires hi5', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 14, 'acquiring_company': {'name': 'Tagged', 'permalink': 'tagged'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/article/articledetail.php?articlepostid=13019', 'source_description': 'hi5 Networks Enhances Real-Time User Interaction with Acquisition of PixVerse ', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'PixVerse', 'permalink': 'pixverse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/02/24/hi5-acquires-social-gaming-company-big-six/', 'source_description': 'hi5 Acquires Social Gaming Company Big Six', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 24, 'company': {'name': 'Big Six', 'permalink': 'big-six'}}], 'offices': [{'description': '', 'address1': '55 Second Street', 'address2': 'Suite 400', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.788668, 'longitude': -122.400558}], 'milestones': [{'id': 1607, 'description': 'hi5 Launches Language Translation on OpenSocial v0.8', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 25, 'source_url': '', 'source_text': 'hi5 Networks, one of the world’s largest and fastest-growing social networks, today announced the availability of a language translation tool fully compliant with the recently released OpenSocial v0.8 standard. This translation tool, available immediately, allows users around the globe to enjoy a more seamlessly localized experience – interacting in their preferred language not only on hi5.com but when using third-party applications available through the hi5 Platform as well.', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'hi5', 'permalink': 'hi5'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e45'), 'name': 'Clipperz', 'permalink': 'clipperz', 'crunchbase_url': 'http://www.crunchbase.com/company/clipperz', 'homepage_url': 'http://www.clipperz.com', 'blog_url': 'http://www.clipperz.com/blog', 'blog_feed_url': '', 'twitter_username': 'Clipperz', 'category_code': 'web', 'number_of_employees': 2, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'marco@clipperz.com', 'phone_number': '+393482476970', 'description': '', 'created_at': 'Tue Feb 05 22:28:19 UTC 2008', 'updated_at': 'Tue Apr 02 08:21:50 UTC 2013', 'overview': '

Clipperz solves the “password fatigue” problem and provides an online digital vault for confidential data.

\\n\\n

Clipperz was established on 4 November\\n2005 by Marco Barulli and Giulio Cesare Solaroli. The company’s legal headquarters is in the municipality of Bagnacavallo, northern Italy.

', 'image': {'available_sizes': [[[131, 62], 'assets/images/resized/0000/3703/3703v2-max-150x150.jpg'], [[131, 62], 'assets/images/resized/0000/3703/3703v2-max-250x250.jpg'], [[131, 62], 'assets/images/resized/0000/3703/3703v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Clipperz', 'permalink': 'clipperz'}], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Marco', 'last_name': 'Barulli', 'permalink': 'marco-barulli'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Giulio Cesare', 'last_name': 'Solaroli', 'permalink': 'giulio-cesare-solaroli'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Via Berti 137', 'address2': None, 'zip_code': '48012', 'city': 'Bagnacavallo', 'state_code': None, 'country_code': 'ITA', 'latitude': 44.418166, 'longitude': 11.978686}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'permalink': 'tagged', 'crunchbase_url': 'http://www.crunchbase.com/company/tagged', 'homepage_url': 'http://www.tagged.com', 'blog_url': 'http://about.tagged.com/blogs/', 'blog_feed_url': '', 'twitter_username': 'Tagged', 'category_code': 'social', 'number_of_employees': 162, 'founded_year': 2004, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tagged', 'alias_list': '', 'email_address': ' ', 'phone_number': '415-946-1850', 'description': '', 'created_at': 'Tue Jul 24 01:57:36 UTC 2007', 'updated_at': 'Tue Sep 17 18:06:55 UTC 2013', 'overview': '

Tagged is a social network designed for meeting new people. The company was founded in October 2004 by Greg Tseng and Johann Schleier-Smith. While other social networks focus on existing relationships, Tagged has established the category of social discovery.

\\n\\n

Tagged has over 300 million members in 220 countries. The company’s service is designed to enable anyone to meet and socialize with new people through social games, customized profiles, virtual gifts, advanced browsing features and more.

\\n\\n

Co-founders Greg and Johann met at Harvard and after moving to California to pursue their PhDs at Stanford, they took a leave of absence to focus full-time on Tagged.

\\n\\n

Tagged was originally a teen-only social network and opened up to all ages 13+ in October 2006.The company pivoted to its current social discovery focus in late-2007 and has been profitable since 2008.

', 'image': {'available_sizes': [[[150, 26], 'assets/images/resized/0013/1226/131226v1-max-150x150.jpg'], [[250, 44], 'assets/images/resized/0013/1226/131226v1-max-250x250.jpg'], [[450, 80], 'assets/images/resized/0013/1226/131226v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co - Founder & Chief Executive Officer & Chairman Of The Board', 'person': {'first_name': 'Greg', 'last_name': 'Tseng', 'permalink': 'greg-tseng'}}, {'is_past': False, 'title': 'Chief Customer Officer', 'person': {'first_name': 'Tish', 'last_name': 'Whitcraft', 'permalink': 'tish-whitcraft'}}, {'is_past': False, 'title': 'Co - Founder & Chief Technology Officer & Board Member', 'person': {'first_name': 'Johann', 'last_name': 'Schleier-Smith', 'permalink': 'johann-schleier-smith'}}, {'is_past': False, 'title': 'Vice President of Product', 'person': {'first_name': 'Bjorn', 'last_name': 'Laurin', 'permalink': 'bjorn-laurin'}}, {'is_past': False, 'title': 'SVP, Engineering', 'person': {'first_name': 'Eyal', 'last_name': 'Shavit', 'permalink': 'eyal-shavit'}}, {'is_past': False, 'title': 'SVP, Legal & Head, Corporate Development', 'person': {'first_name': 'Louis', 'last_name': 'Willacy', 'permalink': 'louis-willacy'}}, {'is_past': False, 'title': 'VP, Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Sarner', 'permalink': 'steve-sarner'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jared', 'last_name': 'Kim', 'permalink': 'jared-kim'}}, {'is_past': False, 'title': 'Director of Strategic Development', 'person': {'first_name': 'Peter', 'last_name': 'Berger', 'permalink': 'peter-berger-3'}}, {'is_past': False, 'title': 'Member Of The Board Of Directors', 'person': {'first_name': 'Raj', 'last_name': 'Kapoor', 'permalink': 'raj-kapoor'}}, {'is_past': False, 'title': 'Member Of The Board Of Directors', 'person': {'first_name': 'Allen', 'last_name': 'Morgan', 'permalink': 'allen-morgan'}}, {'is_past': False, 'title': 'Head of Mobile Product', 'person': {'first_name': 'Matthew', 'last_name': 'Wardenaar', 'permalink': 'matthew-wardenaar'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Karen', 'last_name': 'Cassel', 'permalink': 'karen-cassel-2'}}, {'is_past': True, 'title': 'VP & General Manager, Social Games', 'person': {'first_name': 'Andrew', 'last_name': 'Pedersen', 'permalink': 'andrew-pedersen'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'is_past': True, 'title': 'Sr. Unix Admin', 'person': {'first_name': 'Joshua', 'last_name': 'Miller', 'permalink': 'joshua-miller'}}, {'is_past': True, 'title': 'VP of People Operations', 'person': {'first_name': 'James', 'last_name': 'Takazawa', 'permalink': 'james-takazawa'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Prabhdeep', 'last_name': 'Gill', 'permalink': 'prabhdeep-gill'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Vladimir', 'last_name': 'Giverts', 'permalink': 'vladimir-giverts'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Director of Product', 'person': {'first_name': 'Steve', 'last_name': 'Shapiro', 'permalink': 'steve-shapiro'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Shepard', 'permalink': 'chris-shepard'}}, {'is_past': True, 'title': 'Senior Product Designer', 'person': {'first_name': 'Dan', 'last_name': 'Auer', 'permalink': 'dan-auer'}}], 'competitions': [{'competitor': {'name': 'LinkedIn', 'permalink': 'linkedin'}}, {'competitor': {'name': 'hi5', 'permalink': 'hi5'}}, {'competitor': {'name': 'Friendster', 'permalink': 'friendster'}}], 'providerships': [], 'total_money_raised': '$28.7M', 'funding_rounds': [{'id': 221, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2007/07/23/big-money-for-tagged-too/', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 222, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/07/23/big-money-for-tagged-too/', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 4167, 'round_code': 'debt_round', 'source_url': 'http://www.sociableblog.com/2008/12/18/tagged-secures-5-million-in-venture-debt/', 'source_description': 'Tagged Secures $5 Million in Venture Debt', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 12, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Horizon Technology Finance Management LLC', 'permalink': 'horizon-technology-finance'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Leader Ventures', 'permalink': 'leader-ventures'}, 'person': None}]}, {'id': 11646, 'round_code': 'unattributed', 'source_url': 'http://www.techcrunch.com/2010/01/29/tagged-erik-vogeler/', 'source_description': 'Tagged.com Wins $201,975 In Default Judgment Against Spammer', 'raised_amount': 201975, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 29, 'investments': []}, {'id': 32089, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/08/22/social-network-tagged-raises-15m-revenue-grew-35-percent-to-43m-in-2011/', 'source_description': 'Social Network Tagged Raises $15M; Revenue Grew 35 Percent To $43M In 2011', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'Lighthouse Capital Partners', 'permalink': 'lighthouse-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comerica Bank', 'permalink': 'comerica-bank'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/19/tagged-buys-popular-socialinstant-messaging-client-digsby/', 'source_description': 'Tagged Buys Popular Social/Instant Messaging Client Digsby', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 19, 'company': {'name': 'dotSyntax', 'permalink': 'dotsyntax'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/09/tagged-acquires-topicmarks/', 'source_description': 'Tagged Acquires Topicmarks To Improve Friend Suggestions With Natural Language Processing', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 7, 'company': {'name': 'Topicmarks', 'permalink': 'topicmarks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/14/facebooks-leftovers-social-network-tagged-acquires-hi5/', 'source_description': 'Facebook’s Leftovers? Social Network Tagged Acquires hi5', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 14, 'company': {'name': 'hi5', 'permalink': 'hi5'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/21/tagged-wegame/', 'source_description': 'Social Discovery Meets Gaming Discovery: Tagged Buys WeGame', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 21, 'company': {'name': 'WeGame', 'permalink': 'wegame'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/10/16/tagged-urbantag/', 'source_description': 'Social Network Tagged’s Fifth Acquisition: Location-Based Mobile Discovery App Urbantag', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 16, 'company': {'name': 'urbantag', 'permalink': 'urbantag'}}], 'offices': [{'description': 'San Francisco, USA', 'address1': 'P.O. Box 193152', 'address2': '', 'zip_code': '94119-3152', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7753, 'longitude': -122.4186}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 114], 'assets/images/resized/0016/3660/163660v1-max-150x150.jpg'], [[250, 190], 'assets/images/resized/0016/3660/163660v1-max-250x250.jpg'], [[450, 342], 'assets/images/resized/0016/3660/163660v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[93, 150], 'assets/images/resized/0016/3661/163661v1-max-150x150.jpg'], [[155, 250], 'assets/images/resized/0016/3661/163661v1-max-250x250.jpg'], [[279, 450], 'assets/images/resized/0016/3661/163661v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.tagged.com/batu10', 'title': 'Tagged Secures $5 Million in Venture Debt'}, {'external_url': 'http://mashable.com/2011/05/17/tagged-game-studio/', 'title': 'Tagged Opens Its Own Social Game Studio'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e49'), 'name': 'Nintendo', 'permalink': 'nintendo', 'crunchbase_url': 'http://www.crunchbase.com/company/nintendo', 'homepage_url': 'http://nintendo.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'NintendoAmerica', 'category_code': 'games_video', 'number_of_employees': 5080, 'founded_year': 1889, 'founded_month': 9, 'founded_day': 23, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'games, console', 'alias_list': '', 'email_address': 'noalegal@noa.nintendo.com', 'phone_number': '1-800-255-3700 ', 'description': '', 'created_at': 'Sat Dec 22 13:27:00 UTC 2007', 'updated_at': 'Thu Sep 05 12:41:16 UTC 2013', 'overview': '

Nintendo, a technology company widely known for its line of game consoles, was actually founded in 1889 by Fusajiro Yamauchi. It began as a card game company and evolved into one of the largest Japanese companies with a Market Capitalization of over $85 billion.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0000/2869/2869v3-max-150x150.jpg'], [[250, 69], 'assets/images/resized/0000/2869/2869v3-max-250x250.jpg'], [[450, 125], 'assets/images/resized/0000/2869/2869v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Wii', 'permalink': 'wii'}], 'relationships': [{'is_past': False, 'title': 'President', 'person': {'first_name': 'Satoru', 'last_name': 'Iwata', 'permalink': 'satoru-iwata'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'John', 'last_name': 'H. Bauer', 'permalink': 'john-h-bauer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mark', 'last_name': 'Proffit', 'permalink': 'mark-frazier'}}, {'is_past': True, 'title': 'European Brand Manager', 'person': {'first_name': 'Cornelius', 'last_name': 'Rost', 'permalink': 'cornelius-rost'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': 'Training Coordinator / Lead / Developer', 'person': {'first_name': 'Scott', 'last_name': 'Sullivan', 'permalink': 'scott-sullivan'}}, {'is_past': True, 'title': 'Lead Tester', 'person': {'first_name': 'Jesse', 'last_name': 'Hayes', 'permalink': 'jesse-hayes'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'H. Bauer', 'permalink': 'john-h-bauer'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'JPN', 'latitude': 36.204824, 'longitude': 138.252924}], 'milestones': [{'id': 17591, 'description': '3D For Everyone! Get The Nintendo 3DS For $150', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2011/08/29/get-the-nintendo-3ds-150/', 'source_text': '', 'source_description': '3D For Everyone! Get The Nintendo 3DS For $150', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nintendo', 'permalink': 'nintendo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4a'), 'name': 'Indeed', 'permalink': 'indeed', 'crunchbase_url': 'http://www.crunchbase.com/company/indeed', 'homepage_url': 'http://www.indeed.com', 'blog_url': 'http://blog.indeed.com/', 'blog_feed_url': 'http://blog.indeed.com/feed/', 'twitter_username': 'indeed', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Job Search Portal', 'created_at': 'Tue Jul 24 08:10:32 UTC 2007', 'updated_at': 'Fri Aug 30 19:13:39 UTC 2013', 'overview': '

Indeed is the #1 job site worldwide, available in more than 50 countries and 26 languages, and covering 94% of global GDP. With more than 100 million monthly unique visitors, Indeed has double the traffic of the next leading job site. According to a recent study, Indeed is the #1 source of external hire for employers (SilkRoad, 2013).

\\n\\n

Since 2004, Indeed has given job seekers free access to millions of jobs from thousands of company websites and job boards. As the leading pay for performance recruitment advertising network, Indeed drives millions of targeted applicants to jobs in every field and is the most cost-effective source of candidates for thousands of companies.

\\n\\n

Founded by Paul Forster and Rony Kahan, Indeed has over 800 employees with offices in Austin, Dublin, London, San Mateo, New York and Stamford.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0000/3721/3721v5-max-150x150.png'], [[250, 93], 'assets/images/resized/0000/3721/3721v5-max-250x250.png'], [[250, 93], 'assets/images/resized/0000/3721/3721v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Indeed', 'permalink': 'indeed'}], 'relationships': [{'is_past': False, 'title': 'Senior Advisor and Co-founder', 'person': {'first_name': 'Paul', 'last_name': 'Forster', 'permalink': 'paul-forster'}}, {'is_past': False, 'title': 'Co-founder & CEO', 'person': {'first_name': 'Rony', 'last_name': 'Kahan', 'permalink': 'rony-kahan'}}, {'is_past': False, 'title': 'VP of Business Development', 'person': {'first_name': 'Matthew', 'last_name': 'Molinari', 'permalink': 'matthew-molinari'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Doug', 'last_name': 'Gray', 'permalink': 'doug-gray'}}, {'is_past': False, 'title': 'VP of Product', 'person': {'first_name': 'Chris', 'last_name': 'Hyams', 'permalink': 'chris-hyams'}}, {'is_past': False, 'title': 'Director of Employer Product Marketing', 'person': {'first_name': 'Olga', 'last_name': 'Kazakova', 'permalink': 'olga-kazakova'}}, {'is_past': False, 'title': 'SVP, Marketing', 'person': {'first_name': 'Paul', 'last_name': \"D'Arcy\", 'permalink': 'paul-darcy'}}, {'is_past': False, 'title': 'Sr. Director, Demand Generation', 'person': {'first_name': 'James', 'last_name': 'Boye-Doe', 'permalink': 'james-boye-doe'}}, {'is_past': True, 'title': 'Acting CFO', 'person': {'first_name': 'Mike', 'last_name': 'Majors', 'permalink': 'mike-majors'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Chris', 'last_name': 'Lamprecht', 'permalink': 'chris-lamprecht'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Zito', 'permalink': 'brian-zito'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Paolo', 'last_name': 'Maioli', 'permalink': 'paolo-maioli'}}], 'competitions': [{'competitor': {'name': 'Simply Hired', 'permalink': 'simply-hired'}}, {'competitor': {'name': 'Monster', 'permalink': 'monster'}}, {'competitor': {'name': 'Vast', 'permalink': 'vast'}}, {'competitor': {'name': 'Workcircle', 'permalink': 'workcircle'}}, {'competitor': {'name': 'Trovit', 'permalink': 'trovit'}}, {'competitor': {'name': 'Nushio', 'permalink': 'nushio'}}, {'competitor': {'name': 'JobSphere', 'permalink': 'jobsphere'}}, {'competitor': {'name': 'Juju.com', 'permalink': 'juju-com'}}, {'competitor': {'name': 'FINS.com', 'permalink': 'fins-com'}}, {'competitor': {'name': 'Careerjet', 'permalink': 'careerjet'}}, {'competitor': {'name': 'Recruit.net', 'permalink': 'recruit-net'}}, {'competitor': {'name': 'Neekanee', 'permalink': 'neekanee'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'Adzuna', 'permalink': 'adzuna'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 229, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2005/08/08/update-indeed-raised-money/', 'source_description': None, 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Allen & Company', 'permalink': 'allen-and-company'}, 'person': None}, {'company': {'name': 'New York Times', 'permalink': 'newyorktimes'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/25/japans-recruit-co-acquires-indeed-com-to-extend-jobs-reach-from-us-to-asia/', 'source_description': 'Japan’s Recruit Co. Acquires Indeed.com To Extend Jobs Reach From US To Asia', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'Recruit Co., Ltd', 'permalink': 'recruit'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '177 Broad St. 6th Floor', 'address2': '', 'zip_code': '06901', 'city': 'Stamford', 'state_code': 'CT', 'country_code': 'USA', 'latitude': 41.038155, 'longitude': -73.558082}, {'description': 'Headquarters', 'address1': '7501 N. Capital of Texas Hwy', 'address2': 'Building B', 'zip_code': '78731', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 901, 'description': 'Indeed launches Job Search for Canada', 'stoned_year': 2005, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://blog.indeed.com/2005/11/', 'source_text': None, 'source_description': 'Indeed Canada', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 902, 'description': 'Indeed launches Job Search for UK', 'stoned_year': 2007, 'stoned_month': 7, 'stoned_day': 17, 'source_url': 'http://blog.indeed.com/2007/07/17/indeedcouk-launched/', 'source_text': None, 'source_description': 'Indeed.co.uk launched', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 903, 'description': 'Indeed launches Job Search for India', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 1, 'source_url': 'http://blog.indeed.com/2008/09/01/indeedcoin-india-job-search-launched/', 'source_text': None, 'source_description': 'Indeed.co.in (India) job search launched', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 904, 'description': 'Indeed Launches Job Search for France, Germany, and Spain.', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 18, 'source_url': 'http://blog.indeed.com/2008/11/18/bonjour-hallo-hola/', 'source_text': None, 'source_description': 'Bonjour, Hallo, Hola', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4b'), 'name': 'Jaxtr', 'permalink': 'jaxtr', 'crunchbase_url': 'http://www.crunchbase.com/company/jaxtr', 'homepage_url': 'http://www.jaxtr.com', 'blog_url': 'http://jaxtr.blogspot.com', 'blog_feed_url': 'http://jaxtr.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'mobile', 'number_of_employees': 30, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'voip, calls', 'alias_list': '', 'email_address': 'webmaster@jaxtr.com', 'phone_number': '650-327-9300', 'description': 'VOIP phone calls to mobile phones', 'created_at': 'Tue Jul 24 08:33:34 UTC 2007', 'updated_at': 'Fri Nov 25 09:02:45 UTC 2011', 'overview': '

Jaxtr first launched in March 2007 with a widget that enables users to receive calls from their friends through a VOIP connection and keep their personal phone numbers private.

\\n\\n

In the past year, jaxtr has introduced a number of additional services in the attempt to monetize the company’s 10 million users:

\\n\\n

-Jaxtr helps users bypass expensive international phone charges by giving them free local numbers in the countries that they’re calling to and charges a nominal fee for connection and the ability to call from a mobile phone. As a marketing ploy, the company permits free calls to other members.\\n-Jaxtr uses cafe jaxtr, a social network in which people call one another to discuss similar interests, and free global SMS to attract activity on its website and generate advertising revenue.

\\n\\n

The company maintains an advantage over competitors such as Skype by allowing customers to use any phone - mobile or landline - without the need to download software or maintain Internet access, and calling cards by eliminating the need to dial additional numbers and PIN codes.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0000/3724/3724v1-max-150x150.jpg'], [[190, 63], 'assets/images/resized/0000/3724/3724v1-max-250x250.jpg'], [[190, 63], 'assets/images/resized/0000/3724/3724v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Jaxtr', 'permalink': 'jaxtr'}, {'name': 'JaxtrSMS', 'permalink': 'jaxtrsms'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Bahman', 'last_name': 'Koohestani', 'permalink': 'bahman-koohestani'}}, {'is_past': False, 'title': 'Co-Founder & CTO', 'person': {'first_name': 'Phillip', 'last_name': 'Mobin', 'permalink': 'phillip-mobin'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Bill', 'last_name': 'Keating', 'permalink': 'bill-keating'}}, {'is_past': False, 'title': 'Check', 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'is_past': True, 'title': 'Co-Founder, Chief Architect', 'person': {'first_name': 'Eugene', 'last_name': 'Mandel', 'permalink': 'eugene-mandel'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Konstantin', 'last_name': 'Guericke', 'permalink': 'konstantin-guericke'}}, {'is_past': True, 'title': 'Co-Founder & COO', 'person': {'first_name': 'Touraj', 'last_name': 'Parang', 'permalink': 'touraj-parang'}}, {'is_past': True, 'title': 'VP, Product & Analytics', 'person': {'first_name': 'Chung', 'last_name': 'Meng Cheong', 'permalink': 'chung-meng-cheong'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Steve', 'last_name': 'Newcomb', 'permalink': 'steve-newcomb'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Benjamin', 'last_name': 'Boyer', 'permalink': 'benjamin-boyer-2'}}, {'is_past': True, 'title': 'Director, Customer Support, Billing and Fraud', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'is_past': True, 'title': 'Product Manager, Designer, Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Seibert', 'permalink': 'jeff-seibert'}}, {'is_past': True, 'title': 'Senior Customer Service Representative', 'person': {'first_name': 'Jennifer', 'last_name': 'Ringquist', 'permalink': 'jennifer-ringquist'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Taneli', 'last_name': 'Otala', 'permalink': 'taneli-otala'}}], 'competitions': [{'competitor': {'name': 'GrandCentral', 'permalink': 'grandcentral'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Jangl SMS', 'permalink': 'jangl-sms'}}, {'competitor': {'name': 'Snapvine', 'permalink': 'snapvine'}}], 'providerships': [], 'total_money_raised': '$21.5M', 'funding_rounds': [{'id': 241, 'round_code': 'angel', 'source_url': 'http://www.businessweek.com/technology/content/apr2007/tc20070402_747117.htm?chan=search', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 537, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/27/jaxtr-closes-10-million-a-1-million-users/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'August Capital', 'permalink': 'august-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 2738, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/?p=19260', 'source_description': 'Jaxtr Finally Enables Out-of-Network Calling, Raises $10 Million', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 23, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/41663/jaxtr-sells-to-sabse-technologies/', 'source_description': 'Jaxtr Sells to Sabeer Bhatia’s Newest Company: Sabse Technologies', 'acquired_year': 2009, 'acquired_month': 6, 'acquired_day': None, 'acquiring_company': {'name': 'Sabse Technologies', 'permalink': 'sabse-technologies'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '855 Oak Grove Ave.', 'address2': 'Suite 100', 'zip_code': '94025', 'city': 'Menlo Park', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.451026, 'longitude': -122.18676}], 'milestones': [{'id': 646, 'description': 'Jaxtr Launches Version 2.0 with Premium Memberships', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 30, 'source_url': '', 'source_text': 'MENLO PARK, CA – (September 30, 2008) –* Jaxtr, the company that\\r\\n> links your phone to the Web, today launched premium memberships\\r\\n> featuring jaxtr’s best rates for international calls, priority\\r\\n> customer service, personalized contact pages, global online voicemail\\r\\n> with customizable greetings and the ability to forward voicemails via\\r\\n> email.\\r\\n>\\r\\n> “In the three months since launching out-of-network calling, we\\r\\n> learned that our members are very talkative and on average go through\\r\\n> $10 worth of jax calling credits in just nine days, so a\\r\\n> subscription-based offering is a natural next step,â€\\x9d said jaxtr CEO\\r\\n> Konstantin Guericke. “We know from our more than 10 million users that\\r\\n> consumers select international calling providers based on four key\\r\\n> factors: price, convenience, coverage and quality. Premium memberships\\r\\n> deliver on all four factors.â€\\x9d\\r\\n>\\r\\n> The premium membership offering adds a subscription revenue stream to\\r\\n> jaxtr’s existing revenue lines from advertising (café jaxtr) and\\r\\n> transactions (cheap and convenient international calling). Jaxtr is\\r\\n> backed by three of the original Skype investors and has raised $20\\r\\n> million in funding. The company expects to reach breakeven during the\\r\\n> second half of 2009.\\r\\n>\\r\\n> Premium memberships are available at different levels depending on\\r\\n> one’s international calling needs: $2.95 for up to 350 minutes per\\r\\n> month, $7.95 for up to 1,000 minutes per month and $19.95 for up to\\r\\n> 2,500 minutes per month. Premium memberships include all of the\\r\\n> features offered in jaxtr’s basic membership such as:\\r\\n>\\r\\n> · international SMS\\r\\n> · phone widgets for social networking profiles, Web sites and\\r\\n> blogs\\r\\n> · call screening and forwarding\\r\\n> · phone number anonymity, and\\r\\n> · café jaxtr—a social network for people who like to talk on\\r\\n> the phone\\r\\n>\\r\\n> Jaxtr’s basic membership will continue to be free, and new members\\r\\n> receive a trial premium membership when they first join the service.\\r\\n> The monthly program does not require a contract.\\r\\n>\\r\\n> With the release of jaxtr 2.0, jaxtr becomes the most comprehensive\\r\\n> social communications solution for mobile phone users around the\\r\\n> world—whether they are using jaxtr to stay in touch with friends,\\r\\n> conduct business or meet people with shared interests.', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jaxtr', 'permalink': 'jaxtr'}}, {'id': 19447, 'description': 'Jaxtr Launches free mobile texting app JaxtrSMS', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 22, 'source_url': 'http://www.sociableblog.com/2011/11/24/sabeer-bhatia-launches-jaxtrsms/', 'source_text': None, 'source_description': 'Jaxtr Launches JaxtrSMS App, Lets You Send Free SMS Worldwide', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jaxtr', 'permalink': 'jaxtr'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.socialnetworkingwatch.com/2007/07/jaxtr-ceo-konst.html', 'title': 'CEO Konstantin Guericke 07/07'}, {'external_url': 'http://www.sociableblog.com/2011/11/24/sabeer-bhatia-launches-jaxtrsms/', 'title': 'Sabeer Bhatia Launches JaxtrSMS App, Lets You Send Free SMS Worldwide'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4c'), 'name': 'Cerado', 'permalink': 'cerado', 'crunchbase_url': 'http://www.crunchbase.com/company/cerado', 'homepage_url': 'http://www.cerado.com', 'blog_url': 'http://www.socialcustomer.com', 'blog_feed_url': 'http://www.socialcustomer.com/index.rdf', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2002, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': 'info@cerado.com', 'phone_number': '1-650-346-4406', 'description': None, 'created_at': 'Tue Jul 24 12:08:09 UTC 2007', 'updated_at': 'Mon Nov 19 06:56:12 UTC 2012', 'overview': '

Cerado is the provider of the Haystack social networking platform.\\nCerado Ventana connects multiple social networks, web sites, and mobile web services. It is a web-based service that connects people, information and commerce via an interface that is optimized for the iPhone.

\\n\\n

View a chartthat TechCrunch compiled in Summer 2007 that compares this company’s social networking product to others.

', 'image': {'available_sizes': [[[150, 53], 'assets/images/resized/0000/3733/3733v1-max-150x150.png'], [[151, 54], 'assets/images/resized/0000/3733/3733v1-max-250x250.png'], [[151, 54], 'assets/images/resized/0000/3733/3733v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Law Projects Center UN NGO', 'permalink': 'haystack'}, {'name': 'Ventana', 'permalink': 'ventana'}], 'relationships': [{'is_past': False, 'title': '', 'person': {'first_name': 'Leif', 'last_name': 'Chastaine', 'permalink': 'leif-chastaine'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Christopher', 'last_name': 'Carfi', 'permalink': 'christopher-carfi'}}], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Skalfa', 'permalink': 'skalfa'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2225 E. Bayshore Rd.', 'address2': 'Suite 200', 'zip_code': '94303', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.774321, 'longitude': -122.415375}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4e'), 'name': 'ONEsite', 'permalink': 'onesite', 'crunchbase_url': 'http://www.crunchbase.com/company/onesite', 'homepage_url': 'http://www.onesite.com', 'blog_url': 'http://www.onesite.com/go/view/ideas', 'blog_feed_url': '', 'twitter_username': 'onesite', 'category_code': 'other', 'number_of_employees': 50, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-platform, social-networking-software, mobile-platform', 'alias_list': None, 'email_address': 'sales@onesite.com', 'phone_number': '405.753.9300', 'description': 'Social Networking Software Platform', 'created_at': 'Tue Jul 24 12:22:34 UTC 2007', 'updated_at': 'Mon Nov 19 06:55:26 UTC 2012', 'overview': '

ONEsite, a subsidiary of the hosting company Catalog.com, provides a hybrid social networking / CMS platform. The ONEsite Platform includes custom profiles, user generated content (blogs, photos, videos, forums), activity streams, groups, calendars and a points and rewards system.

\\n\\n

ONEsite includes hosted Software as a Service components as well as APIs and Widgets that can be integrated into external systems.

\\n\\n

ONEsite provides in-house professional services for the implementation and integration of its platforms. The company also includes an in-house technical support and moderation group.

\\n\\n

ONEsite was started in 2004. Catalog.com has been providing internet services and technology since 1994.

\\n\\n

View a chart that TechCrunch compiled in Summer 2007 that compares this company’s social networking product to others.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/3742/3742v16-max-150x150.png'], [[157, 65], 'assets/images/resized/0000/3742/3742v16-max-250x250.png'], [[157, 65], 'assets/images/resized/0000/3742/3742v16-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'facelook', 'permalink': 'www-mymimo-tk'}, {'name': 'Single Sign-On', 'permalink': 'single-sign-on'}, {'name': 'Social Software', 'permalink': 'social-software'}, {'name': 'ONEsite LIVE', 'permalink': 'onesite-live'}, {'name': 'Hosting Platform', 'permalink': 'hosting-platform'}, {'name': 'ONEsite CMS', 'permalink': 'onesite-cms'}], 'relationships': [], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Bright Things', 'permalink': 'bright-things'}}, {'competitor': {'name': 'Pluck', 'permalink': 'pluck'}}, {'competitor': {'name': 'KickApps', 'permalink': 'kickapps'}}, {'competitor': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'competitor': {'name': 'AwarenessHub', 'permalink': 'awareness'}}, {'competitor': {'name': 'Powered', 'permalink': 'powered'}}, {'competitor': {'name': 'Mzinga [Prospero Technologies]', 'permalink': 'prosperotechnologies'}}, {'competitor': {'name': 'Jive Software', 'permalink': 'jive-software'}}, {'competitor': {'name': 'Lithium Technologies', 'permalink': 'lithiumtechnologies'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [{'title': 'Public Relations, Social Marketing', 'is_past': False, 'provider': {'name': 'PerkettPR', 'permalink': 'perkettpr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://gigaom.com/2008/02/20/social-platform-shakeout-begins/', 'source_description': 'Social Platform Shakeout Begins', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 20, 'company': {'name': 'Social Platform', 'permalink': 'social-platform'}}], 'offices': [{'description': None, 'address1': '14000 Quail Springs Parkway, Suite 3600', 'address2': None, 'zip_code': '73134', 'city': 'Oklahoma City', 'state_code': 'OK', 'country_code': 'USA', 'latitude': 35.612679, 'longitude': -97.5736}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 71], 'assets/images/resized/0009/0295/90295v2-max-150x150.jpg'], [[250, 118], 'assets/images/resized/0009/0295/90295v2-max-250x250.jpg'], [[450, 213], 'assets/images/resized/0009/0295/90295v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e53'), 'name': 'Wallhogs', 'permalink': 'wallhogs', 'crunchbase_url': 'http://www.crunchbase.com/company/wallhogs', 'homepage_url': 'http://wallhogs.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'wallhogs', 'category_code': 'public_relations', 'number_of_employees': 52, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'prints, photo', 'alias_list': '', 'email_address': '', 'phone_number': '877-900-HOGS(4647)', 'description': '', 'created_at': 'Wed Jul 25 05:41:17 UTC 2007', 'updated_at': 'Tue Apr 09 06:02:00 UTC 2013', 'overview': '

Wallhogs is a digital printing company that lets you make large prints of your favorite photos or digital images. Founded by Mark Seremet, an experienced internet entrepreneur, Wallhogs takes aim at the custom print market by introducing specialty oversize prints. Traditionally, oversize prints have only been available to businesses or clients who want large quantities. Wallhogs, however, is offering prints up to 7 feet tall and 4 feet wide, on vinyl, glossy poster paper or canvas.Prints range in price from $20 to $75 but do not come framed. Users are required to upload images of at least 2048x1536 resolution, otherwise larger prints will appear pixilated.Other companies in the digital print market are CafePress, Zazzle, FatHead and Photoways(Europe). Mark Seremet was formerly the CEO of Spreadshirt, a custom T-shirt printing company.

', 'image': {'available_sizes': [[[146, 38], 'assets/images/resized/0000/3760/3760v1-max-150x150.png'], [[146, 38], 'assets/images/resized/0000/3760/3760v1-max-250x250.png'], [[146, 38], 'assets/images/resized/0000/3760/3760v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Mark', 'last_name': 'Seremet', 'permalink': 'mark-seremet'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Paul', 'last_name': 'Conklin', 'permalink': 'paul-conklin'}}], 'competitions': [{'competitor': {'name': 'Zazzle', 'permalink': 'zazzle'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2217 Longview Dr.', 'address2': '', 'zip_code': '15601', 'city': 'Greensburg', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.30305, 'longitude': -79.462703}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3604/43604v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3604/43604v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3604/43604v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e58'), 'name': 'eBuddy', 'permalink': 'ebuddy', 'crunchbase_url': 'http://www.crunchbase.com/company/ebuddy', 'homepage_url': 'http://www.ebuddy.com', 'blog_url': 'http://blog.ebuddy.com/', 'blog_feed_url': 'http://blog.ebuddy.com/index.php/feed/', 'twitter_username': 'ebuddy', 'category_code': 'messaging', 'number_of_employees': 90, 'founded_year': 2003, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'ebuddy, crunchbase, techcrunch, im, mobile-im, mim, web-based-messenger, www-msn-com-br, aol, open-aim-2-0, windows-live-messenger, yahoo-messenger, myspace-im, googletalk, xms, mobile-messaging', 'alias_list': '', 'email_address': 'feedback@ebuddy.com', 'phone_number': '+31 20 514 1420', 'description': 'Web and mobile messaging', 'created_at': 'Wed Jul 25 11:48:02 UTC 2007', 'updated_at': 'Tue Oct 01 12:55:24 UTC 2013', 'overview': '

eBuddy created the world’s first, independent, web browser-based instant messaging service as e-Messenger in 2003. The company was rebranded in 2006 from e-Messenger to eBuddy. eBuddy currently offers two products: eBuddy Chat and XMS.

\\n\\n

eBuddy Chat enables millions of monthly global users with Facebook Chat, MSN, Google Talk, Yahoo Messenger, ICQ and AOL accounts to chat free of charge in one aggregated interface. eBuddy Chat is currently available on the Web and offers free mobile solutions for iOS, Android, J2ME and mobile Web-enabled devices.

\\n\\n

XMS is a free, real-time messaging app for smartphones. Launched in March 2011, XMS offers unlimited smartphone messaging through one’s Internet connection. XMS is currently available for iOS, Android, BlackBerry, Nokia and Windows Phone 7 devices.

\\n\\n

eBuddy processes over 17 billion messages per month and enables more than 30 million unique monthly users to exchange messages through its services.

\\n\\n

eBuddy is a privately-held company backed by Prime Technology Ventures and Lowland Capital Partners. eBuddy is headquartered in Amsterdam and has local offices in San Francisco and Singapore.

', 'image': {'available_sizes': [[[150, 35], 'assets/images/resized/0000/3781/3781v41-max-150x150.png'], [[250, 59], 'assets/images/resized/0000/3781/3781v41-max-250x250.png'], [[251, 60], 'assets/images/resized/0000/3781/3781v41-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'COO, Co-founder', 'person': {'first_name': 'Onno', 'last_name': 'Bakker', 'permalink': 'onno-bakker'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Paulo', 'last_name': 'Taylor', 'permalink': 'paulo-taylor'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Sytse', 'last_name': 'Zuidema', 'permalink': 'sytse-zuidema'}}, {'is_past': False, 'title': 'CEO, Co-founder', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Rueb', 'permalink': 'jan-joost-rueb'}}, {'is_past': False, 'title': 'Strategic Partnership Director', 'person': {'first_name': 'Jonie', 'last_name': 'Oostveen', 'permalink': 'jonie-oostveen'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}, {'is_past': True, 'title': 'Chief Commercial Officer (CCO)', 'person': {'first_name': 'Rogier', 'last_name': 'van den Heuvel', 'permalink': 'rogier-van-den-heuvel'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Wijnand', 'last_name': 'van de Calseijde', 'permalink': 'wijnand-van-de-calseijde'}}, {'is_past': True, 'title': 'VP Products and Marketing', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'VP Products & Marketing', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Kraal', 'permalink': 'jan-joost-kraal'}}, {'is_past': True, 'title': 'Sales and Channel Development', 'person': {'first_name': 'Marc', 'last_name': 'Duijndam', 'permalink': 'marc-duijndam'}}, {'is_past': True, 'title': 'Director Mobile', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Kraal', 'permalink': 'jan-joost-kraal'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'Sake', 'last_name': 'Bosch', 'permalink': 'sake-bosch'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ruben', 'last_name': 'Heerdink', 'permalink': 'ruben-heerdink'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}], 'competitions': [{'competitor': {'name': 'KoolIM', 'permalink': 'koolim'}}, {'competitor': {'name': 'Heysan', 'permalink': 'heysan'}}, {'competitor': {'name': 'EQO', 'permalink': 'eqo'}}, {'competitor': {'name': 'WhatsApp', 'permalink': 'whatsapp'}}, {'competitor': {'name': 'Viber', 'permalink': 'viber'}}, {'competitor': {'name': 'KakaoTalk', 'permalink': 'kakaotalk'}}, {'competitor': {'name': 'Wechat', 'permalink': 'wechat-2'}}], 'providerships': [{'title': 'Marketing and PR', 'is_past': True, 'provider': {'name': 'Mercury Global Partners', 'permalink': 'mercury-global-partners'}}], 'total_money_raised': '€11.5M', 'funding_rounds': [{'id': 239, 'round_code': 'a', 'source_url': 'http://www.ebuddy.com/press/eBuddy_Lowland_Capital.pdf', 'source_description': 'EBUDDY Secures 5 Million Euro In Series A Funding', 'raised_amount': 5000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'Lowland Capital Partners', 'permalink': 'lowland-capital-partners'}, 'person': None}]}, {'id': 1863, 'round_code': 'b', 'source_url': 'http://www.ebuddy.com/press/eBuddy_PTV_Press_Release_05Feb2008.pdf', 'source_description': 'eBuddy secures €6.5 million Series B funding', 'raised_amount': 6500000, 'raised_currency_code': 'EUR', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Prime Ventures', 'permalink': 'prime-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Global Headquarters', 'address1': 'Keizersgracht 585', 'address2': '', 'zip_code': '1017 DR', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.3640933, 'longitude': 4.8919457}, {'description': 'US Headquarters', 'address1': '555 Post St.', 'address2': '', 'zip_code': '94102', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.787683, 'longitude': -122.410943}, {'description': 'Singapore office', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': 51.500152, 'longitude': -0.126236}], 'milestones': [{'id': 324, 'description': 'eBuddy Processing 1 billion Messages per Month for 2M Unique Mobile Users', 'stoned_year': 2008, 'stoned_month': 4, 'stoned_day': 30, 'source_url': 'http://news.yahoo.com/s/prweb/20080725/bs_prweb/prweb1141594_1', 'source_text': ' eBuddy, the world\\'s leading independent provider of web and mobile messaging (IM), announced today that it has surpassed 5M downloads of its mobile IM client in its first year. The company is now processing over 1 billion messages per month on its mobile platform and counts more than 2 million unique monthly mobile users. eBuddy also announced updated releases and redesiged user interfaces for both of their popular mobile IM clients.\\r\\nADVERTISEMENT\\r\\n\\r\\nSan Francisco, CA (PRWEB) July 25, 2008 -- eBuddy, the world\\'s leading independent provider of web and mobile instant messaging (IM), announced today that it has experienced explosive mobile IM growth, surpassing 5 million downloads of its mobile IM client since its launch in June 2007.\\r\\n\\r\\nJan-Joost Rueb, eBuddy CEO and founder commented, \"We are now processing over 1 billion messages per month on our mobile platform for more than 2 million unique monthly users. The fast pace at which our application is being picked up shows how much people want a high quality, easy-to-use, intuitive IM application like eBuddy.\"\\r\\n\\r\\neBuddy also announced updated releases for both of its mobile clients, the popular J2ME client and the mobile Internet browser version, Lite Messenger. The latest J2ME release features a redesigned and improved user interface and the addition of the eBuddy ID (which already exists on eBuddy\\'s web browser version) and allows the user to create a single, unique ID which can then be used to log-in and access all of their IM accounts simultaneously. The latest Lite Messenger release includes new features, extra networks and specific design functionality for iPhone, including the new 3G version released worldwide on July 11.\\r\\n\\r\\nResearch analysts at Informa estimate the global market for mobile IM will become an $11 billion (€7.4bn) industry by 2011. eBuddy\\'s VP of Mobile, Jan-Joost Kraal adds, \"eBuddy has become one of the most downloaded mobile applications worldwide within a year due to rapid adoption, ramped up channel distribution and the help of partners like GetJar. Mobile Internet usage on a global scale is only going to increase, and with a single user average of 30 log-ins per month, eBuddy is an excellent reason for customers to buy a flat-fee data bundle from their mobile carrier.\"\\r\\n\\r\\nAbout eBuddy\\r\\neBuddy created the world\\'s first, independent, web browser-based instant messaging service in 2003. Its patent-pending technology enables 16M+ monthly global visitors with AIM, GoogleTalk, MSN, MySpace and Yahoo! IM accounts to chat free of charge in one, aggregated interface without having to download or install any application on their computer. Supporting 550+ different mobile devices, eBuddy\\'s mobile IM solution - m.ebuddy.com -- offers both a J2ME and browser-based IM service and allows 2M+ unique monthly user\\'s access on their mobile phone, independent of carrier or device via WAP or mobile Internet browser. eBuddy is a privately held, Amsterdam-based company with additional offices in London and San Francisco, and is backed by Prime Technology Ventures and Lowland Capital Partners. ', 'source_description': 'Hungry mobile IM users consume 5M downloads in first year eBuddy processing 1 billion messages per month for 2M unique mobile users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 17617, 'description': 'Mobile Messaging Platform eBuddy Raising Money At $100 Million Valuation', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 30, 'source_url': 'http://www.businessinsider.com/ebuddy-2011-8', 'source_text': '', 'source_description': 'Mobile Messaging Platform eBuddy Raising Money At $100 Million Valuation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40174, 'description': 'Japanese gaming company GREE acquired a minority stake in eBuddy', 'stoned_year': 2012, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://techcrunch.com/2012/10/15/ebuddy-gree-stake-sale/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40299, 'description': 'eBuddy receives Mashable award for the Best Mobile App.', 'stoned_year': 2009, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://mashable.com/2009/12/16/open-web-awards-2009-50-winners/', 'source_text': None, 'source_description': 'Mashable', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40300, 'description': 'eBuddy receives Mashable award for the Best Mobile User Experience.', 'stoned_year': 2010, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://mashable.com/2011/01/06/mashable-awards-2010-announcing-the-winners/', 'source_text': None, 'source_description': 'Mashable', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40301, 'description': 'eBuddy receives Crunchies award for the Best International Startup.', 'stoned_year': 2008, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://crunchies2008.techcrunch.com/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40302, 'description': 'eBuddy launched XMS.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/03/17/sms-on-steroids-ebuddy-debuts-realtime-cross-platform-messaging-app/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40303, 'description': 'eBuddy achieved over 100 million downloads.', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2010/09/30/ebuddys-mobile-applications-downloaded-more-than-100-million-times/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40304, 'description': 'eBuddy exceeded 250 million user accounts.', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2011/09/21/ebuddy-blows-through-250-million-user-accounts-android-up-300/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 55], 'assets/images/resized/0033/4855/334855v2-max-150x150.jpg'], [[250, 92], 'assets/images/resized/0033/4855/334855v2-max-250x250.jpg'], [[450, 166], 'assets/images/resized/0033/4855/334855v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 79], 'assets/images/resized/0033/4865/334865v2-max-150x150.png'], [[250, 132], 'assets/images/resized/0033/4865/334865v2-max-250x250.png'], [[450, 238], 'assets/images/resized/0033/4865/334865v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.ebuddy.com/2008/08/23/ebuddy-taps-former-google-executive-marc-duijndam/', 'title': 'eBuddy Taps Former Google Executive, Marc Duijndam'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e5a'), 'name': 'Grockit', 'permalink': 'grockit', 'crunchbase_url': 'http://www.crunchbase.com/company/grockit', 'homepage_url': 'http://grockit.com', 'blog_url': 'http://blog.grockit.com', 'blog_feed_url': '', 'twitter_username': 'grockit', 'category_code': 'social', 'number_of_employees': 25, 'founded_year': 2006, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'techcrunch50, tc50, learning, grockit, gmat, mmol, mmo, children, education, testprep, testing, gaming', 'alias_list': '', 'email_address': 'grockit@cutline.com', 'phone_number': '', 'description': 'Online social learning games', 'created_at': 'Thu Jul 26 04:44:29 UTC 2007', 'updated_at': 'Wed Dec 19 10:39:37 UTC 2012', 'overview': '

Grockit is a pioneering online social learning company. Grockit has proven that people learn more, faster through combining social learning mechanics and multi-media learning content to help people teach and learn from others.

\\n\\n

Learnist is Grockit’s broadest learning service, launched in May of 2012. At Learnist, expert members curate the web’s content to create simple explanations on virtually anything using open content and rich multimedia.

\\n\\n

Grockit.com offers Test Prep services for GMAT, IIM CAT, LSAT, GRE, ACT, SAT and AP Calculus and AP History tests. \\nGrockit has built a social learning test prep platform for license and direct-to-consumer products. Florida Virtual Schools, KIPP Schools, Georgetown University and other schools have deployed Grockit services.

', 'image': {'available_sizes': [[[150, 140], 'assets/images/resized/0000/3787/3787v4-max-150x150.png'], [[247, 232], 'assets/images/resized/0000/3787/3787v4-max-250x250.png'], [[247, 232], 'assets/images/resized/0000/3787/3787v4-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Grockit', 'permalink': 'gmat'}, {'name': 'Learnist', 'permalink': 'learnist'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': False, 'title': 'Founder, President, chief product officer, and chairman', 'person': {'first_name': 'Farbood', 'last_name': 'Nivi', 'permalink': 'farbood-nivi'}}, {'is_past': False, 'title': 'VP of Marketing', 'person': {'first_name': 'Aaron', 'last_name': 'Burcell', 'permalink': 'aaron-burcell'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Mitch', 'last_name': 'Lasky', 'permalink': 'mitch-lasky'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Chris', 'last_name': 'Henley', 'permalink': 'chris-henley'}}, {'is_past': False, 'title': 'Director of Customer Success', 'person': {'first_name': 'David', 'last_name': 'Marino', 'permalink': 'david-marino'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeff', 'last_name': 'Fagnan', 'permalink': 'jeff-fagnan'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Michael', 'last_name': 'Buffington', 'permalink': 'michael-buffington'}}, {'is_past': True, 'title': 'Chief Learning Architect', 'person': {'first_name': 'Ari', 'last_name': 'Bader-Natal', 'permalink': 'ari-bader-natal'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Betty', 'last_name': 'Kayton', 'permalink': 'betty-kayton'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Babak', 'last_name': 'Nivi', 'permalink': 'babak-nivi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kunal', 'last_name': 'Anand', 'permalink': 'kunal-anand'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Michael', 'last_name': 'Moe', 'permalink': 'michael-moe'}}, {'is_past': True, 'title': 'Director of Academics', 'person': {'first_name': 'Heather', 'last_name': 'Gilchrist', 'permalink': 'heather-gilchrist'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Brian', 'last_name': 'Buser', 'permalink': 'brian-buser'}}], 'competitions': [{'competitor': {'name': 'PrepMe', 'permalink': 'prepme'}}, {'competitor': {'name': 'Brightstorm', 'permalink': 'brightstorm'}}, {'competitor': {'name': 'Princeton Review', 'permalink': 'princeton-review'}}, {'competitor': {'name': 'Kaplan', 'permalink': 'kaplan'}}, {'competitor': {'name': 'Top Test Prep', 'permalink': 'top-test-prep'}}, {'competitor': {'name': '2U', 'permalink': '2u'}}, {'competitor': {'name': 'Udemy', 'permalink': 'udemy'}}, {'competitor': {'name': 'Cramster', 'permalink': 'cramster'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Brew Media Relations', 'permalink': 'brew-media-relations'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Cutline Communications', 'permalink': 'cutline-communications'}}], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 240, 'round_code': 'a', 'source_url': 'http://venturebeat.com/2007/07/24/grockit-raises-23m-for-online-test-preparation/', 'source_description': 'Grockit raises $2.3M for online test preparation', 'raised_amount': 2300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 1614, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2007/07/24/grockit-raises-cash-prepares-massive-multiplayer-online-learning-product/', 'source_description': 'Grockit Raises Cash, Prepares \"Massive Multiplayer Online Learning\"\\x9d Product.', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Mark', 'last_name': 'Pincus', 'permalink': 'mark-pincus'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rob', 'last_name': 'Lord', 'permalink': 'rob-lord'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Hustvedt', 'permalink': 'marc-hustvedt'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Tom', 'last_name': 'Ryan', 'permalink': 'tom-ryan'}}]}, {'id': 2440, 'round_code': 'b', 'source_url': 'http://venturebeat.com/2008/06/02/stealth-educational-startup-grockit-raises-8m-more/', 'source_description': 'Stealth educational startup Grockit raises $8M more', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 30, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}]}, {'id': 15598, 'round_code': 'c', 'source_url': 'http://techcrunch.com/2010/05/14/grockit-7-million-academy/', 'source_description': 'TechCrunch', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 5, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}]}, {'id': 25987, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/10/17/grockit-7-million-answers/', 'source_description': 'Grockit Gets A $7 Million Venture Infusion And Launches Video Q&A Site Grockit Answers', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'GSV Capital', 'permalink': 'gsv-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'New Schools Venture Fund', 'permalink': 'new-schools-venture-fund'}, 'person': None}]}, {'id': 34414, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/12/18/grockit-lands-20m-from-discovery-to-bring-its-new-pinterest-for-education-to-the-masses/', 'source_description': 'Grockit Lands $20M From Discovery, Benchmark & Others To Bring Its New “Pinterest For Education” To The Masses ', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 19, 'investments': [{'company': {'name': 'Discovery Communications', 'permalink': 'discoverycommunications'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'GSV Capital', 'permalink': 'gsv-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/07/kaplan-acquires-grockit-platform-test-prep-assets.html', 'source_description': 'Kaplan Acquires Grockit Platform And Test Prep Assets', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 31, 'acquiring_company': {'name': 'Kaplan', 'permalink': 'kaplan'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '500 Third Street', 'address2': 'Suite 260', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.775196, 'longitude': -122.419204}], 'milestones': [{'id': 7936, 'description': \"Grockit named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': ' Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Grockit', 'permalink': 'grockit'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

tc50

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e5d'), 'name': 'Adobe Systems', 'permalink': 'adobe-systems', 'crunchbase_url': 'http://www.crunchbase.com/company/adobe-systems', 'homepage_url': 'http://www.adobe.com', 'blog_url': 'http://blogs.adobe.com/', 'blog_feed_url': 'http://blogs.adobe.com/index.xml', 'twitter_username': 'Adobe', 'category_code': 'software', 'number_of_employees': 7173, 'founded_year': 1982, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'adobe, flash, illustrator, creative, photoshop, design, imaging, editing', 'alias_list': '', 'email_address': '', 'phone_number': '408-536-6000', 'description': '', 'created_at': 'Thu Aug 09 01:22:40 UTC 2007', 'updated_at': 'Fri Aug 09 22:20:08 UTC 2013', 'overview': '

Adobe Systems Incorporated is a diversified software company. The Company offers a line of business and mobile software and services used by professionals, designers, knowledge workers, high-end consumers, original equipment manufacturer (OEM) partners, developers and enterprises for creating, managing, delivering and engaging with compelling content and experiences across multiple operating systems, devices and media. Adobe distributes its products through a network of distributors and dealers, value-added resellers (VARs), systems integrators, independent software vendors (ISVs) and OEMs, direct to end users and through its own Website at www.adobe.com. The Company also licenses its technology to hardware manufacturers, software developers and service providers, and it offers integrated software solutions to businesses of all sizes. Adobe has operations in the Americas, Europe, Middle East and Africa (EMEA) and Asia.

\\n\\n

Adobe added Flash to its technology portfolio after acquisition of Macromedia in 2005.

', 'image': {'available_sizes': [[[109, 150], 'assets/images/resized/0001/3687/13687v3-max-150x150.png'], [[181, 250], 'assets/images/resized/0001/3687/13687v3-max-250x250.png'], [[327, 450], 'assets/images/resized/0001/3687/13687v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'photoshop.com', 'permalink': 'photoshop-com'}, {'name': 'Adobe AIR', 'permalink': 'adobe-air'}, {'name': 'Buzzword', 'permalink': 'buzzword'}, {'name': 'Adobe Flash', 'permalink': 'adobe-flash'}], 'relationships': [{'is_past': False, 'title': 'Co-founder, Co-Chairman of the Board', 'person': {'first_name': 'John', 'last_name': 'Warnock', 'permalink': 'john-warnock'}}, {'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Kevin', 'last_name': 'Lynch', 'permalink': 'kevin-lynch'}}, {'is_past': False, 'title': 'Vice President, Products', 'person': {'first_name': 'Jeffrey', 'last_name': 'Veen', 'permalink': 'jeffrey-veen'}}, {'is_past': False, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Joshua', 'last_name': 'G. James', 'permalink': 'joshua-g-james'}}, {'is_past': False, 'title': 'SVP, Media & Advertising Solutions', 'person': {'first_name': 'David', 'last_name': 'Karnstedt', 'permalink': 'david-karnstedt'}}, {'is_past': False, 'title': 'VP, Communications', 'person': {'first_name': 'Christine', 'last_name': 'Castro', 'permalink': 'christine-castro'}}, {'is_past': False, 'title': 'Co-founder, Co-Chairman of the Board', 'person': {'first_name': 'Charles', 'last_name': 'Geschke', 'permalink': 'charles-geschke'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Goldsmith', 'permalink': 'kevin-goldsmith'}}, {'is_past': False, 'title': 'Senior Vice President, Worldwide Field Operations', 'person': {'first_name': 'Matt', 'last_name': 'Thompson', 'permalink': 'matt-thompson'}}, {'is_past': False, 'title': 'Senior Manager, Professional Services', 'person': {'first_name': 'Ben', 'last_name': 'Seymour', 'permalink': 'ben-seymour'}}, {'is_past': False, 'title': 'MTS', 'person': {'first_name': 'Saurabh', 'last_name': 'Kumar', 'permalink': 'saurabh-kumar'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Steven', 'last_name': 'Palmer', 'permalink': 'steven-palmer-3'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Evan', 'last_name': 'Kirchhoff', 'permalink': 'evan-kirchhoff'}}, {'is_past': False, 'title': 'Lead Product Designer – Head of Discovery, Behance', 'person': {'first_name': 'Clément', 'last_name': 'Faydi', 'permalink': 'clment-faydi'}}, {'is_past': False, 'title': 'Senior Vice President, Technology and Corporate Development', 'person': {'first_name': 'Bryan', 'last_name': 'Lamkin', 'permalink': 'bryan-lamkin'}}, {'is_past': False, 'title': 'Director and Member of Audit Committee', 'person': {'first_name': 'Frank', 'last_name': 'Calderoni', 'permalink': 'frank-calderoni'}}, {'is_past': False, 'title': 'Sr Director, Creative Cloud', 'person': {'first_name': 'Bryan', 'last_name': 'Mason', 'permalink': 'bryan-mason'}}, {'is_past': False, 'title': 'Principal Scientist', 'person': {'first_name': 'Walter', 'last_name': 'Chang', 'permalink': 'walter-chang'}}, {'is_past': False, 'title': 'Computer Scientist, Intern', 'person': {'first_name': 'Mohamed', 'last_name': 'El-Zohairy', 'permalink': 'mohamed-el-zohairy'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Vlad', 'last_name': 'Margulis', 'permalink': 'vlad-margulis'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ben', 'last_name': 'Forta', 'permalink': 'ben-forta'}}, {'is_past': False, 'title': 'Principal, Customer Experience', 'person': {'first_name': 'Ben', 'last_name': 'Watson', 'permalink': 'ben-watson'}}, {'is_past': False, 'title': 'Enterprise Mobile Architect', 'person': {'first_name': 'Stacy', 'last_name': 'Young', 'permalink': 'stacy-young'}}, {'is_past': False, 'title': 'Network Engineer', 'person': {'first_name': 'Luke', 'last_name': 'Marrott', 'permalink': 'luke-marrott'}}, {'is_past': False, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Silmore', 'permalink': 'dan-silmore'}}, {'is_past': False, 'title': 'Technical Delivery Manager', 'person': {'first_name': 'Joe', 'last_name': 'Cicchetto', 'permalink': 'joe-cicchetto'}}, {'is_past': False, 'title': 'product management and marketing', 'person': {'first_name': 'Aline', 'last_name': 'Yu', 'permalink': 'aline-yu'}}, {'is_past': False, 'title': 'Principal Scientist - Adobe Research Labs', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Amy', 'last_name': 'Banse', 'permalink': 'amy-banse'}}, {'is_past': False, 'title': 'Director of Software Engineering', 'person': {'first_name': 'David', 'last_name': 'Sliwa', 'permalink': 'david-sliwa'}}, {'is_past': False, 'title': 'Senior Computer Scientist II, Lead', 'person': {'first_name': 'Matthew', 'last_name': 'Albright', 'permalink': 'matthew-albright'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Cheryl', 'last_name': 'Kellond', 'permalink': 'cheryl-kellond-2'}}, {'is_past': False, 'title': 'Senior Innovator', 'person': {'first_name': 'Michael', 'last_name': 'Rubin', 'permalink': 'michael-rubin-2'}}, {'is_past': True, 'title': 'Senior Director, Business Operations, Office of the CEO', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bruce', 'last_name': 'Chizen', 'permalink': 'bruce-chizen'}}, {'is_past': True, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Mark', 'last_name': 'Garrett', 'permalink': 'mark-garrett'}}, {'is_past': True, 'title': 'President / COO', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': True, 'title': 'CFO Day Software', 'person': {'first_name': 'Richard', 'last_name': 'Francis', 'permalink': 'richard-francis-3'}}, {'is_past': True, 'title': 'EVP, Worldwide Products', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Karen', 'last_name': 'Catlin', 'permalink': 'karen-catlin-2'}}, {'is_past': True, 'title': 'Executive VP', 'person': {'first_name': 'Derek', 'last_name': 'Gray', 'permalink': 'derek-gray'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Todd', 'last_name': 'Rowe', 'permalink': 'todd-rowe'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager of Digital Media and Creative Solutions businesses', 'person': {'first_name': 'John', 'last_name': 'Loiacono', 'permalink': 'john-loiacono'}}, {'is_past': True, 'title': 'EVP, Product Divisions', 'person': {'first_name': 'Ross', 'last_name': 'Bott', 'permalink': 'ross-bott'}}, {'is_past': True, 'title': 'SVP,,SVP Intelligent Documents Business Unit', 'person': {'first_name': 'Ivan', 'last_name': 'Koon', 'permalink': 'ivan-koon'}}, {'is_past': True, 'title': 'SVP Business Productivity Business Unit', 'person': {'first_name': 'David', 'last_name': 'Mendels', 'permalink': 'david-mendels'}}, {'is_past': True, 'title': 'SVP and GM, Knowledge Worker Business Unit', 'person': {'first_name': 'Tom', 'last_name': 'Hale', 'permalink': 'tom-hale'}}, {'is_past': True, 'title': 'Vice President and General Manager, Media Solutions', 'person': {'first_name': 'Todd', 'last_name': 'Teresi', 'permalink': 'todd-teresi'}}, {'is_past': True, 'title': 'Vice President of Sales- Digital Marketing: Commercial West,,,Vice President of Sales- Digital Marketing: Conversion & Acquisition Products.', 'person': {'first_name': 'Darren', 'last_name': 'Johnson', 'permalink': 'darren-johnson'}}, {'is_past': True, 'title': 'VP Sales, Americas', 'person': {'first_name': 'Wolfgang', 'last_name': 'Maasberg', 'permalink': 'wolfgang-maasberg'}}, {'is_past': True, 'title': 'VP, Web UX and Engineering Group', 'person': {'first_name': 'Robin', 'last_name': 'Ducot', 'permalink': 'robin-ducot'}}, {'is_past': True, 'title': 'VP Sales Retail, Digital Marketing', 'person': {'first_name': 'Bill', 'last_name': 'Kiriakis', 'permalink': 'bill-kiriakis'}}, {'is_past': True, 'title': 'SVP, Enterprise and Developer BU', 'person': {'first_name': 'David', 'last_name': 'Mendels', 'permalink': 'david-mendels'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'Chris', 'last_name': 'Castro', 'permalink': 'chris-castro'}}, {'is_past': True, 'title': 'VP, Worldwide Services', 'person': {'first_name': 'James', 'last_name': 'Henry', 'permalink': 'james-henry'}}, {'is_past': True, 'title': 'VP Sales West, Omniture Business Unit', 'person': {'first_name': 'Bill', 'last_name': 'Kiriakis', 'permalink': 'bill-kiriakis'}}, {'is_past': True, 'title': 'North American VP of Sales and Operations, Financial Services and Insurance', 'person': {'first_name': 'Thomas', 'last_name': 'Padgett', 'permalink': 'thomas-padgett'}}, {'is_past': True, 'title': 'VP of Marketing and Prod Managment', 'person': {'first_name': 'Stephen', 'last_name': 'Saylor', 'permalink': 'stephen-saylor'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'David', 'last_name': 'Halpin', 'permalink': 'david-halpin'}}, {'is_past': True, 'title': 'Vice President, Product Group', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'VP Core Technologies', 'person': {'first_name': 'Frits', 'last_name': 'Habermann', 'permalink': 'frits-habermann'}}, {'is_past': True, 'title': 'VP Vertical and Solutions Marketing', 'person': {'first_name': 'Eugene', 'last_name': 'Lee', 'permalink': 'eugene-lee'}}, {'is_past': True, 'title': 'Vice President Product', 'person': {'first_name': 'Michele', 'last_name': 'Turner', 'permalink': 'michele-turner'}}, {'is_past': True, 'title': 'VP of Marketing & Business Development', 'person': {'first_name': 'Jeff', 'last_name': 'Whatcott', 'permalink': 'jeff-whatcott'}}, {'is_past': True, 'title': 'Principal Scientist', 'person': {'first_name': 'Gary', 'last_name': 'Grossman', 'permalink': 'gary-grossman'}}, {'is_past': True, 'title': 'President, Worldwide Field Operations', 'person': {'first_name': 'Stephen', 'last_name': 'Elop', 'permalink': 'stephen-elop'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Fitzpatrick', 'permalink': 'michael-fitzpatrick'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Prod Mkt Mgr, Engr Mgr.', 'person': {'first_name': 'Mitch', 'last_name': 'Stein', 'permalink': 'mitch-stein'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'James', 'last_name': 'Alexander', 'permalink': 'james-alexander'}}, {'is_past': True, 'title': 'EIR', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': True, 'title': 'Staff Consultant, Omniture', 'person': {'first_name': 'Pablo', 'last_name': 'Cohan', 'permalink': 'pablo-cohan'}}, {'is_past': True, 'title': 'APAC Education Director', 'person': {'first_name': 'John', 'last_name': 'Treloar', 'permalink': 'john-treloar'}}, {'is_past': True, 'title': 'Senior Computer Scientist', 'person': {'first_name': 'Stacy', 'last_name': 'Young', 'permalink': 'stacy-young'}}, {'is_past': True, 'title': 'Controller WW Sales Operations', 'person': {'first_name': 'Ron', 'last_name': 'Sorisho', 'permalink': 'ron-sorisho-2'}}, {'is_past': True, 'title': 'Experience Designer', 'person': {'first_name': 'Marcos', 'last_name': 'Weskamp', 'permalink': 'marcos-weskamp'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Rodrigo', 'last_name': 'Lopez', 'permalink': 'rodrigo-lopez'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'David', 'last_name': 'Yun', 'permalink': 'david-yun'}}, {'is_past': True, 'title': 'Lead Architect (Mobile and Devices), Computer Scientist', 'person': {'first_name': 'Walter', 'last_name': 'Luh', 'permalink': 'walter-luh'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Ned', 'last_name': 'Hayes', 'permalink': 'ned-hayes'}}, {'is_past': True, 'title': 'Product Specialist - Flex/AIR', 'person': {'first_name': 'Nikhil', 'last_name': 'Wason', 'permalink': 'nikhil-wason'}}, {'is_past': True, 'title': 'Senior Director, Customer Experience Management Product & Strategy', 'person': {'first_name': 'Erik', 'last_name': 'Larson', 'permalink': 'erik-larson'}}, {'is_past': True, 'title': 'Mobile QE Lead', 'person': {'first_name': 'Badi', 'last_name': 'Azad', 'permalink': 'badi-azad'}}, {'is_past': True, 'title': 'General Manager, Emerging Markets', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'Senior Product Manager - Mobile / Pervasive Publishing / Adobe Creative Suite', 'person': {'first_name': 'George', 'last_name': 'Arriola', 'permalink': 'george-arriola'}}, {'is_past': True, 'title': 'Sr. Director & Entrepreneur in Residence, Hosted Services', 'person': {'first_name': 'Keith', 'last_name': 'Kitani', 'permalink': 'keith-kitani'}}, {'is_past': True, 'title': 'National Account Manager', 'person': {'first_name': 'Greg', 'last_name': 'Riley', 'permalink': 'greg-riley'}}, {'is_past': True, 'title': 'Product Marketing Intern', 'person': {'first_name': 'Mehrshad', 'last_name': 'Mansouri', 'permalink': 'mehrshad-mansouri'}}, {'is_past': True, 'title': 'Country Manager - Russia & CIS', 'person': {'first_name': 'Pavel', 'last_name': 'Cherkashin', 'permalink': 'pavel-cherkashin'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Hock', 'permalink': 'chris-hock'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Frank', 'permalink': 'brian-frank'}}, {'is_past': True, 'title': 'Sr Director Dynamic Media', 'person': {'first_name': 'Simon', 'last_name': 'Hayhurst', 'permalink': 'simon-hayhurst'}}, {'is_past': True, 'title': 'Vice President, Product Development', 'person': {'first_name': 'Ed', 'last_name': 'Rowe', 'permalink': 'ed-rowe'}}, {'is_past': True, 'title': 'Group Manager, Alliances', 'person': {'first_name': 'Kevin', 'last_name': 'Henshaw', 'permalink': 'kevin-henshaw'}}, {'is_past': True, 'title': 'Entrepreneur in Residence', 'person': {'first_name': 'John', 'last_name': 'Mracek', 'permalink': 'john-mracek'}}, {'is_past': True, 'title': 'QA Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Acton', 'permalink': 'brian-acton'}}, {'is_past': True, 'title': 'Senior Director Core Technologies', 'person': {'first_name': 'Jerry', 'last_name': 'Barber', 'permalink': 'jerry-barber'}}, {'is_past': True, 'title': 'Software Developer (Contract)', 'person': {'first_name': 'Ayan', 'last_name': 'Ray', 'permalink': 'ayan-ray'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kakul', 'last_name': 'Srivastava', 'permalink': 'kakul-srivastava'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Anand', 'last_name': '\"TM\" Taralika', 'permalink': 'anand-tm-taralika'}}, {'is_past': True, 'title': 'Sr. Member, Technical Staff', 'person': {'first_name': 'Peter', 'last_name': 'deVroede', 'permalink': 'peter-devroede'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Varun', 'last_name': 'Parmar', 'permalink': 'varun-parmar'}}, {'is_past': True, 'title': 'Strategic Partner', 'person': {'first_name': 'Brian', 'last_name': 'Maffitt Brian Maffitt', 'permalink': 'brian-maffitt-brian-maffitt'}}, {'is_past': True, 'title': 'Senior Director and General Manager, Acrobat.com', 'person': {'first_name': 'Erik', 'last_name': 'Larson', 'permalink': 'erik-larson'}}, {'is_past': True, 'title': 'senior management positions', 'person': {'first_name': 'John', 'last_name': 'Brennan', 'permalink': 'john-brennan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Matt', 'last_name': 'Douglas', 'permalink': 'matt-douglas'}}, {'is_past': True, 'title': 'Head of Platform Services', 'person': {'first_name': 'Eric', 'last_name': 'Wittman', 'permalink': 'eric-wittman'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Bill', 'last_name': 'Bradford', 'permalink': 'bill-bradford-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Susan', 'last_name': 'Spencer', 'permalink': 'susan-spencer'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Danielle', 'last_name': 'Deibler', 'permalink': 'danielle-deibler'}}, {'is_past': True, 'title': 'Art Director', 'person': {'first_name': 'Boris', 'last_name': 'Soliz', 'permalink': 'boris-soliz'}}, {'is_past': True, 'title': 'Worldwide Operations Controller', 'person': {'first_name': 'Edward', 'last_name': 'Brennan', 'permalink': 'edward-brennan'}}, {'is_past': True, 'title': 'Sr. Systems Engineer', 'person': {'first_name': 'Brandon', 'last_name': 'Mcintyre', 'permalink': 'brandon-mcintyre'}}, {'is_past': True, 'title': 'Video Systems Architect, Advanced Technology Labs (ATL)', 'person': {'first_name': 'Andrey', 'last_name': 'Yruski', 'permalink': 'andrey-yruski'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Shai', 'last_name': 'Geva', 'permalink': 'shai-geva'}}, {'is_past': True, 'title': 'DRM/Security Architect and Engineering Manager', 'person': {'first_name': 'Sunil', 'last_name': 'Agrawal', 'permalink': 'sunil-agrawal'}}, {'is_past': True, 'title': 'Computer Scientist - Flash Video DRM, Computer Scientist - VoIP Security, Computer Scientist - Acrobat Security', 'person': {'first_name': 'Andrei', 'last_name': 'Sheretov', 'permalink': 'andrei-sheretov'}}, {'is_past': True, 'title': 'Senior Computer Scientist', 'person': {'first_name': 'Chris', 'last_name': 'Bailey', 'permalink': 'chris-bailey'}}, {'is_past': True, 'title': 'Regional Manager, Russia & CIS', 'person': {'first_name': 'Alexander', 'last_name': 'Potapov', 'permalink': 'alexander-potapov'}}, {'is_past': True, 'title': 'Director - Consumer Products', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'CHANNEL & WWFO COMMUNICATIONS (Contract)', 'person': {'first_name': 'Ashlea', 'last_name': 'Owen', 'permalink': 'ashlea-owen'}}, {'is_past': True, 'title': 'Director, Flash Platform Product Marketing', 'person': {'first_name': 'Bryant', 'last_name': 'Macy', 'permalink': 'bryant-macy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Ritesh', 'last_name': 'Banglani', 'permalink': 'ritesh-banglani'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Jeremy', 'last_name': 'Karmel', 'permalink': 'jeremy-karmel'}}, {'is_past': True, 'title': 'Sales and Senior Management and Information Management Software', 'person': {'first_name': 'Rich', 'last_name': 'Kennewick', 'permalink': 'rich-kennewick'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Lauren', 'last_name': 'Nham', 'permalink': 'lauren-nham'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Gunawan', 'last_name': 'Herri', 'permalink': 'gunawan-herri'}}, {'is_past': True, 'title': 'Technical Leadership Positions', 'person': {'first_name': 'Yu-Kai', 'last_name': 'Ng', 'permalink': 'yu-kai-ng'}}, {'is_past': True, 'title': 'Entrepreneur In Residence', 'person': {'first_name': 'Kurt', 'last_name': 'Garbe', 'permalink': 'kurt-garbe'}}, {'is_past': True, 'title': 'SVP, Worldwide Product Development', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Anna', 'last_name': 'Ullrich', 'permalink': 'anna-ullrich'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Robert', 'last_name': 'Tatsumi', 'permalink': 'robert-tatsumi'}}, {'is_past': True, 'title': 'Director of Product Managment', 'person': {'first_name': 'Tapan', 'last_name': 'Bhat', 'permalink': 'tapan-bhat'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sri', 'last_name': 'Chilukuri', 'permalink': 'sri-chilukuri'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': True, 'title': 'Lead Quality Engineer', 'person': {'first_name': 'Dom', 'last_name': 'Sagolla', 'permalink': 'dom-sagolla'}}, {'is_past': True, 'title': 'Sr. Engineering Manager', 'person': {'first_name': 'Carlos', 'last_name': 'M. Icaza', 'permalink': 'carlos-m-icaza'}}, {'is_past': True, 'title': 'Director, Technical Evangelism', 'person': {'first_name': 'Ben', 'last_name': 'Watson', 'permalink': 'ben-watson'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Emerson', 'permalink': 'jon-emerson'}}, {'is_past': True, 'title': 'Senior Computer Scientist / Project Lead', 'person': {'first_name': 'Matthew', 'last_name': 'Kaufman', 'permalink': 'matthew-kaufman'}}, {'is_past': True, 'title': 'Senior Manager, Flash Engineering Team', 'person': {'first_name': 'Gilles', 'last_name': 'Drieu', 'permalink': 'gilles-drieu'}}, {'is_past': True, 'title': 'General Manager, Mobile', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'VAR Channel Manager', 'person': {'first_name': 'Todd', 'last_name': 'Morris', 'permalink': 'todd-morris'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sean', 'last_name': 'Nichols', 'permalink': 'sean-nichols'}}, {'is_past': True, 'title': 'Senior Technology Strategist, Worldwide Evangelist', 'person': {'first_name': 'Jonathan', 'last_name': 'Knowles', 'permalink': 'jonathan-knowles'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Brendan', 'last_name': 'Clavin', 'permalink': 'brendan-clavin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'MTS', 'person': {'first_name': 'Gaurav', 'last_name': 'Vaish', 'permalink': 'gaurav-vaish'}}, {'is_past': True, 'title': 'Business Development Director', 'person': {'first_name': 'Brian', 'last_name': 'Carman', 'permalink': 'brian-carman'}}, {'is_past': True, 'title': 'Business Operations Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Sr Computer Scientist', 'person': {'first_name': 'Satyajit', 'last_name': 'Sahu', 'permalink': 'satyajit-sahu'}}, {'is_past': True, 'title': 'Senior Manager, Corporate Development', 'person': {'first_name': 'Christian', 'last_name': 'DiCarlo', 'permalink': 'christian-dicarlo'}}, {'is_past': True, 'title': 'Senior Product Manager - Mobile Development / Adobe GoLive', 'person': {'first_name': 'George', 'last_name': 'Arriola', 'permalink': 'george-arriola'}}, {'is_past': True, 'title': 'Manager FP&A', 'person': {'first_name': 'Jeff', 'last_name': 'Baeth', 'permalink': 'jeff-baeth'}}, {'is_past': True, 'title': 'Product Manager, Emerging Technologies', 'person': {'first_name': 'Irv', 'last_name': 'Remedios', 'permalink': 'irv-remedios'}}, {'is_past': True, 'title': 'QA Engineer', 'person': {'first_name': 'Konstantin', 'last_name': 'Martynenko', 'permalink': 'konstantin-martynenko'}}, {'is_past': True, 'title': 'Algorithmist', 'person': {'first_name': 'Bill', 'last_name': 'Softky', 'permalink': 'bill-softky'}}, {'is_past': True, 'title': 'Senior User Interface Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'Vice President & General Manager, Digital Imaging and Dynamic Media', 'person': {'first_name': 'Doug', 'last_name': 'Mack', 'permalink': 'doug-mack'}}, {'is_past': True, 'title': 'Global Alliance Manager', 'person': {'first_name': 'Atul', 'last_name': 'Satija', 'permalink': 'atul-satija'}}, {'is_past': True, 'title': 'Director, Corporate Development', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'OEM Sales Business Manager', 'person': {'first_name': 'David', 'last_name': 'Barsocchini', 'permalink': 'david-barsocchini'}}, {'is_past': True, 'title': 'Director of Engineering, Platform Services', 'person': {'first_name': 'Mike', 'last_name': 'Melnicki', 'permalink': 'mike-melnicki'}}, {'is_past': True, 'title': 'VP of Corporate Strategy and Finance', 'person': {'first_name': 'Joe', 'last_name': 'Nemeth', 'permalink': 'joe-nemeth'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Keidel', 'permalink': 'andy-keidel'}}, {'is_past': True, 'title': 'Lead Computer Scientist/Architect', 'person': {'first_name': 'Greg', 'last_name': 'Burch', 'permalink': 'gregory-burch'}}, {'is_past': True, 'title': 'VP, WW Education Vertical Business', 'person': {'first_name': 'Peter', 'last_name': 'Isaacson', 'permalink': 'peter-isaacson'}}, {'is_past': True, 'title': 'Senior Product Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Geoff', 'last_name': 'Greene', 'permalink': 'geoff-greene'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Randy', 'last_name': 'Adams', 'permalink': 'randy-adams'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Eswar', 'last_name': 'Priyadarshan', 'permalink': 'eswar-priyadarshan'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Sumeer', 'last_name': 'Goyal', 'permalink': 'sumeer-goyal'}}, {'is_past': True, 'title': 'Director, Mobile Product Experience', 'person': {'first_name': 'Rhett', 'last_name': 'Woods', 'permalink': 'rhett-woods'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Dave', 'last_name': 'Corboy', 'permalink': 'dave-corboy'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Koblas', 'permalink': 'david-koblas'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Matt', 'last_name': 'Ramme', 'permalink': 'matt-ramme'}}, {'is_past': True, 'title': 'Director, WW Channel & Licensing Operations', 'person': {'first_name': 'Julio', 'last_name': 'Tapia', 'permalink': 'julio-tapia'}}, {'is_past': True, 'title': 'VP Web Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Young', 'permalink': 'andy-young-3'}}, {'is_past': True, 'title': 'Manager Pacific Rim Display Products', 'person': {'first_name': 'John', 'last_name': 'Nogrady', 'permalink': 'john-nogrady'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Alok', 'last_name': 'Goel', 'permalink': 'alok-goel'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Aditya', 'last_name': 'Bansod', 'permalink': 'aditya-bansod'}}, {'is_past': True, 'title': 'Intern Product Manager & Developer', 'person': {'first_name': 'Ayden', 'last_name': 'Ye', 'permalink': 'ayden-ye'}}, {'is_past': True, 'title': 'Director, Customer Experience Management,,,Director, North America Customer Care,,, Director, Enterprise & Developer Support ,,, Director, Solution Services (Pre-Sales),,,, Project Manager/Director Solution Delivery', 'person': {'first_name': 'Carol', 'last_name': 'Richardson', 'permalink': 'carol-richardson'}}, {'is_past': True, 'title': 'GM Worldwide Anti-Piracy', 'person': {'first_name': 'Suresh', 'last_name': 'Balasubramanian', 'permalink': 'suresh-balasubramanian'}}, {'is_past': True, 'title': 'Software Engineer, Acrobat', 'person': {'first_name': 'Amer', 'last_name': 'Deeba', 'permalink': 'amer-deeba'}}, {'is_past': True, 'title': 'Vice President, Global Client Services', 'person': {'first_name': 'Steve', 'last_name': 'Wellen', 'permalink': 'steve-wellen'}}, {'is_past': True, 'title': 'Head of sales in Russia and CIS', 'person': {'first_name': 'Alexander', 'last_name': 'Potapov', 'permalink': 'alexander-potapov'}}, {'is_past': True, 'title': 'Lead Computer Scientist', 'person': {'first_name': 'Todd', 'last_name': 'Zino', 'permalink': 'todd-zino'}}, {'is_past': True, 'title': 'Contractor - Product Manager for Privacy', 'person': {'first_name': 'Lucas', 'last_name': 'Nelson', 'permalink': 'lucas-nelson'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Jon', 'last_name': 'Melamut', 'permalink': 'jon-melamut'}}, {'is_past': True, 'title': 'SVP and GM of Digital Enterprise Solutions Business Unit, Sr. VP of Corp Development', 'person': {'first_name': 'Rob', 'last_name': 'Tarkoff', 'permalink': 'rob-tarkoff'}}, {'is_past': True, 'title': 'Adobe Ventures Associate', 'person': {'first_name': 'Stephen', 'last_name': 'Henkenmeier', 'permalink': 'stephen-henkenmeier'}}, {'is_past': True, 'title': 'Head of Marketing, Adobe Marketing Cloud, EMEA', 'person': {'first_name': 'Neil', 'last_name': 'Morgan', 'permalink': 'neil-morgan'}}, {'is_past': True, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Greg', 'last_name': 'Wrenn', 'permalink': 'greg-wrenn'}}, {'is_past': True, 'title': 'Bilingual Consultant', 'person': {'first_name': 'Jordan', 'last_name': 'Davis', 'permalink': 'jordan-davis-3'}}, {'is_past': True, 'title': 'Senior Software Engineer and Manager', 'person': {'first_name': 'Mark', 'last_name': 'Hagerty', 'permalink': 'mark-hagerty'}}, {'is_past': True, 'title': 'Principal Scientist', 'person': {'first_name': 'Scott', 'last_name': 'Kleper', 'permalink': 'scott-kleper'}}, {'is_past': True, 'title': 'Management Positions', 'person': {'first_name': 'Niall', 'last_name': \"O'Driscoll\", 'permalink': 'niall-o-driscoll'}}], 'competitions': [{'competitor': {'name': 'Apple', 'permalink': 'apple'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Sun Microsystems', 'permalink': 'sun-microsystems'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Metacafe', 'permalink': 'metacafe'}}, {'competitor': {'name': 'Transcensus', 'permalink': 'transcensus'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Conjungo', 'permalink': 'conjungo'}}, {'title': 'IT Hosting', 'is_past': False, 'provider': {'name': 'Silverthorn Networks Incorporated', 'permalink': 'silverthorn-networks-incorporated'}}, {'title': 'Property Tax', 'is_past': False, 'provider': {'name': 'Haws Consulting Group', 'permalink': 'haws-consulting-group'}}, {'title': '', 'is_past': False, 'provider': {'name': 'btrax', 'permalink': 'btrax'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': None, 'source_description': None, 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'company': {'name': '56.com', 'permalink': '56-com'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.techcrunch.com/2008/06/03/veoh-raises-another-30-million-from-intel-capital-adobe-and-gordon-crawford/', 'source_description': 'Veoh Raises Another $30 Million From Intel Capital, Adobe, and Gordon Crawford', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 3, 'company': {'name': 'Veoh', 'permalink': 'veoh'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2008/08/24/demandbase-raises-8-million-for-online-lead-generation-platform/', 'source_description': 'Demandbase Raises $8 Million For Online Lead Generation Platform', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 25, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://venturebeat.com/2007/03/22/scanr-a-cross-device-scanner-company-raises-8m-more/', 'source_description': 'ScanR, a cross-device scanner company, raises $8M more', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 22, 'company': {'name': 'scanR', 'permalink': 'scanr'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/05/12/demandbase-raises-10-million-for-b2b-marketing-software/', 'source_description': 'Demandbase Raises $10 Million For B2B Marketing Software', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 12, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2013/03/27/demandbase-raises-15m-more-from-scale-adobe-and-others-for-b2b-marketing-software/', 'source_description': 'Demandbase Raises $15M More From Scale, Adobe And Others For B2B Marketing Services', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 28, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://marketbrief.com/scrybe-corp-form-d-sec-filng-000001', 'source_description': 'New $1M round raised by Scrybe Corp', 'raised_amount': 1009000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Scrybe', 'permalink': 'scrybe'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 3400000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://en.wikipedia.org/wiki/Macromedia', 'source_description': 'Wikipedia', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Macromedia', 'permalink': 'macromedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/Adobe-buys-Web-word-processor-Buzzword/2100-1014_3-6210746.html', 'source_description': 'Adobe buys web word processor Buzzword', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Virtual Ubiquity', 'permalink': 'virtual-ubiquity'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2006/10/20/adobe-acquires-serious-magic-to-push-flash-video/', 'source_description': 'Adobe acquires Serious Magic to push Flash video', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Serious Magic', 'permalink': 'serious-magic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/05/adobe_buys_rich.html', 'source_description': 'Alarm:Clock', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 3, 'company': {'name': 'Adobe Scene7', 'permalink': 'sence7'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/08/31/adobe-buys-business-catalyst-goodbarry/', 'source_description': 'Adobe Buys Business Catalyst / GoodBarry', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'GoodBarry', 'permalink': 'goodbarry'}}, {'price_amount': 1800000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://paidcontent.org/article/419-adobe-offers-1.8-billion-to-merge-with-audience-analytics-provider-omni/', 'source_description': 'Adobe Buys Omniture For $1.8 Billion', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 23, 'company': {'name': 'Omniture', 'permalink': 'omniture'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Amicima', 'permalink': 'amicima'}}, {'price_amount': 240000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/07/27/adobe-buys-day-software-240-million/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Day Software', 'permalink': 'day-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_OCR_Systems_Inc-261876020', 'source_description': 'Adobe Systems Inc acquires OCR Systems Inc', 'acquired_year': 1992, 'acquired_month': 6, 'acquired_day': 29, 'company': {'name': 'OCR Systems', 'permalink': 'ocr-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Emerald_City_Software-162639020', 'source_description': 'Adobe Systems Inc acquires Emerald City Software', 'acquired_year': 1990, 'acquired_month': 3, 'acquired_day': 19, 'company': {'name': 'Emerald City Software', 'permalink': 'emerald-city-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_BluePoint_Technologies-167911020', 'source_description': 'Adobe Systems Inc acquires BluePoint Technologies Inc', 'acquired_year': 1990, 'acquired_month': 6, 'acquired_day': 20, 'company': {'name': 'BluePoint Technologies', 'permalink': 'bluepoint-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Aldus_Corp-395638020', 'source_description': 'Adobe Systems Inc acquires Aldus Corp', 'acquired_year': 1994, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'Aldus Corp', 'permalink': 'aldus-corp'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/2300-10798_3-10002523.html', 'source_description': 'Adobe Systems Inc acquires Photoshop', 'acquired_year': 1995, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Photoshop', 'permalink': 'photoshop'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Frame_Technology_Corp-475603020', 'source_description': 'Adobe Systems Inc acquires Frame Technology Corp', 'acquired_year': 1995, 'acquired_month': 10, 'acquired_day': 30, 'company': {'name': 'Frame Technology', 'permalink': 'frame-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/ADOBE+SYSTEMS+ACQUIRES+ARES+SOFTWARE-a018302704', 'source_description': 'ADOBE SYSTEMS ACQUIRES ARES SOFTWARE', 'acquired_year': 1996, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'Ares Software', 'permalink': 'ares-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Sandcastle_Inc-672845020', 'source_description': 'Adobe Systems Inc acquires Sandcastle Inc', 'acquired_year': 1997, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': 'Sandcastle', 'permalink': 'sandcastle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_HyWay_Ferranti-693250040', 'source_description': 'Adobe Systems Inc acquires HyWay Ferranti', 'acquired_year': 1997, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'HyWay Ferranti', 'permalink': 'hyway-ferranti'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_DigiDox_Inc-695591020', 'source_description': 'Adobe Systems Inc acquires DigiDox Inc', 'acquired_year': 1997, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'DigiDox', 'permalink': 'digidox'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_GoLive_Systems_Inc-830160020', 'source_description': 'Adobe Systems Inc acquires GoLive Systems Inc', 'acquired_year': 1999, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'GoLive Systems', 'permalink': 'golive-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Fotiva_Inc-1250063020', 'source_description': 'Adobe Systems Inc acquires Fotiva Inc', 'acquired_year': 2001, 'acquired_month': 12, 'acquired_day': 5, 'company': {'name': 'Fotiva', 'permalink': 'fotiva'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Accelio_Corp_from_Adobe_Systems_Canada_Inc-1267643040', 'source_description': 'Adobe Systems Inc acquires Accelio Corp from Adobe Systems Canada Inc', 'acquired_year': 2002, 'acquired_month': 4, 'acquired_day': 15, 'company': {'name': 'Accelio Corporation', 'permalink': 'accelio-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_OKYZ_SA-1648209040', 'source_description': 'Adobe Systems Inc acquires OKYZ SA', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': 7, 'company': {'name': 'OKYZ', 'permalink': 'okyz'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Navisware-1724617020', 'source_description': 'Adobe Systems Inc acquires Navisware', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Navisware', 'permalink': 'navisware'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://designorati.com/articles/t1/graphic-design/793/adobe-acquires-trade-and-technologies-france.php', 'source_description': 'Adobe Acquires Trade and Technologies France', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Trade and Technologies France', 'permalink': 'trade-and-technologies-france'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Pixmantec_ApS-1771752040', 'source_description': 'Adobe Systems Inc acquires Pixmantec ApS', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 26, 'company': {'name': 'Pixmantec', 'permalink': 'pixmantec'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_InterAKT-1790890040', 'source_description': 'Adobe Systems Inc acquires InterAKT', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'InterAKT', 'permalink': 'interakt'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.yawah.com/en/company/news/2008/9/15/adobe-systems-acquires-yawah-aps', 'source_description': 'Adobe Systems acquires YaWah', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 15, 'company': {'name': 'YaWah', 'permalink': 'yawah'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/01/18/adobe-demdex-acquisition/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe beefs up its ad targeting by acquiring Demdex', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Demdex', 'permalink': 'demdex'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/18/adobe-acquires-electronic-signature-startup-echosign/', 'source_description': 'Adobe Acquires Electronic Signature Startup EchoSign', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'EchoSign', 'permalink': 'echosign'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/543838/adobe-acquires-iridas-technology', 'source_description': 'ADOBE ACQUIRES IRIDAS TECHNOLOGY', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'IRIDAS', 'permalink': 'iridas'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/10/03/adobe-acquires-developer-of-html5-mobile-app-framework-phonegap-nitobi/', 'source_description': 'Adobe Acquires Developer Of HTML5 Mobile App Framework PhoneGap Nitobi', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Nitobi Software', 'permalink': 'nitobi-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/10/03/adobe-acquires-cloud-font-site-typekit-as-part-of-larger-creative-cloud-service-offering/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe acquires cloud font site Typekit as part of larger creative cloud service offering', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Typekit', 'permalink': 'typekit'}}, {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2011/11/01/adobe-buys-auditude/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe acquires video ad platform Auditude for $120M (updated)', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 1, 'company': {'name': 'Auditude', 'permalink': 'auditude'}}, {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/11/30/adobe-acquires-efficient-frontier-to-boost-its-digital-marketing-solutions/', 'source_description': 'Adobe Acquires Efficient Frontier To Boost Its Digital Marketing Solutions', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Efficient Frontier', 'permalink': 'efficient-frontier'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2012/12/20/adobe-acquires-behance/', 'source_description': 'Adobe acquires Behance to bring more community into Creative Cloud', 'acquired_year': 2012, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'Behance', 'permalink': 'behance'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/adobe-acqui-hires-thumb-labs-to-make-mobile-apps-for-behance-and-its-new-creative-cloud/', 'source_description': 'Adobe Acqui-hires Thumb Labs To Make Mobile Apps For Behance And Its New Creative Cloud', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'company': {'name': 'Thumb Labs', 'permalink': 'thumb-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/28/adobe-acquires-creative-consultancy-ideacodes-names-co-founders-as-creative-directors-of-creative-cloud/', 'source_description': 'Adobe Acqui-hires Creative Consultancy Ideacodes, Names Co-Founders As Creative Directors Of Creative Cloud', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'company': {'name': 'Ideacodes', 'permalink': 'ideacodes'}}, {'price_amount': 600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/27/adobe-acquires-conversational-marketing-platform-neolane-for-600m-in-cash/', 'source_description': 'Adobe Acquires Conversational Marketing Platform Neolane For $600M In Cash To Bolster Its Marketing Cloud', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'Neolane', 'permalink': 'neolane'}}], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.320052, 'longitude': -121.877636}], 'milestones': [{'id': 6, 'description': 'Adobe announced new content from MTV Networks, Comedy Central and CBS will be added to Adobe Media Player. The Adobe Media Player now features 15,000 pieces of content with more than 400 shows provided from major broadcasters and content publishers.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 8642, 'description': 'Adobe Posts Record Revenue, Up 42 Percent To $990 Million', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2010/09/21/adobe-posts-record-revenue-up-42-percent-to-990-million/', 'source_text': '', 'source_description': 'Adobe Posts Record Revenue, Up 42 Percent To $990 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 9999, 'description': 'Adobe Systems Inc acquires LaserTools-Language Tech from LaserTools Corp', 'stoned_year': 1992, 'stoned_month': 6, 'stoned_day': 1, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_LaserTools_Language_Tech_from_LaserTools_Corp-257051020', 'source_text': '', 'source_description': 'Adobe Systems Inc acquires LaserTools-Language Tech from LaserTools Corp', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 10015, 'description': 'Adobe Systems Inc acquires Yellow Dragon Software-Tech from Yellow Dragon Software Corp', 'stoned_year': 2003, 'stoned_month': 11, 'stoned_day': 10, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Yellow_Dragon_Software_Tech_from_Yellow_Dragon_Software_Corp-1449344040', 'source_text': '', 'source_description': 'Adobe Systems Inc acquires Yellow Dragon Software-Tech from Yellow Dragon Software Corp', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1986, 'pub_month': 8, 'pub_day': 22, 'stock_symbol': 'NASDAQ:ADBE'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

Adobe demoing at FinovateSpring 2011

'}, {'embed_code': ' ', 'description': '

Adobe demoing at FinovateSpring 2013

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3606/43606v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3606/43606v1-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/3606/43606v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.crunchbase.com/financial-organization/adobe-ventures', 'title': 'Adobe Ventures'}, {'external_url': 'http://video.marketwatch.com/market/business/fortune/companies/adobe-systems.htm?cpg=1', 'title': 'Adobe Systems Video and Audio on MarketWatch'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e62'), 'name': 'JumpBox', 'permalink': 'jumpbox', 'crunchbase_url': 'http://www.crunchbase.com/company/jumpbox', 'homepage_url': 'http://www.jumpbox.com', 'blog_url': 'http://blog.jumpbox.com', 'blog_feed_url': 'http://www.jumpbox.com/syndicate.xml', 'twitter_username': 'jumpbox', 'category_code': 'software', 'number_of_employees': 5, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 27, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'serversoftware, virtualization, cloudcomputing, virtualappliances', 'alias_list': '', 'email_address': 'info@jumpbox.com', 'phone_number': '602.492.4218', 'description': 'Open Source as a service', 'created_at': 'Thu Jul 26 11:17:35 UTC 2007', 'updated_at': 'Thu Jul 29 02:51:22 UTC 2010', 'overview': '

JumpBox is a server software management company. It’s focused on easing the deployment and management of various different softwares for collaborative projects. Initially inspired by collaboration in the open source world, JumpBox makes collaborative tools easier to use by making them easier to install on servers.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0000/3820/3820v1-max-150x150.png'], [[200, 42], 'assets/images/resized/0000/3820/3820v1-max-250x250.png'], [[200, 42], 'assets/images/resized/0000/3820/3820v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'JumpBox', 'permalink': 'jumpbox'}, {'name': 'Virtual Movable Type', 'permalink': 'virtual-movable-type'}], 'relationships': [{'is_past': None, 'title': 'CEO', 'person': {'first_name': 'Kimbro', 'last_name': 'Staken', 'permalink': 'kimbro-staken'}}, {'is_past': None, 'title': 'COO', 'person': {'first_name': 'Sean', 'last_name': 'Tierney', 'permalink': 'sean-tierney'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'PO Box 15265', 'address2': '', 'zip_code': '85060', 'city': 'Phoenix', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.429864, 'longitude': -111.944967}], 'milestones': [{'id': 143, 'description': 'JumpBox Releases 12 Updated Production JumpBoxes that Work with Amazon EC2', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://www.jumpbox.com/node/1244', 'source_text': \"Fifteen minutes from now you could be running any of the JumpBoxes that are now available as public beta AMI's on Amazon's EC2 service. As the least technical person in our office, I've known what EC2 is in the abstract sense for awhile now. Let me say it was extremely satisfying to finally fire up a JumpBox on EC2 and see how that service works first hand. I took screenshots of the entire process start to finish (which took just under 15min) in order to share here for anyone else who might be as daunted by EC2 as I was.\\r\\n\\r\\nIt should be noted that EC2 as a web hosting mechanism has some flaws (no persistent disk storage so if you're node dies you can lose data not to mention your app can come back up under another IP address and disappear from its domain- this is not a hosting substitute for critical apps at this point). But this is a very slick way to get a public instance of a JumpBox running quickly for a non-critical application. It's perfect for a scenario where you need to evaluate an application with a distributed team or proof a job for a remote client.\\r\\n\\r\\nHere are the steps that I took to get the MarKamp.org wiki working yesterday:\\r\\n# First you'll need to setup an account on Amazon Webservices if you don't already have one. Go to aws.amazon.com, complete their application process and specify your payment details.\", 'source_description': \"A Beginner's Guide to running a JumpBox on Amazon's EC2 service\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}, {'id': 602, 'description': 'Six Apart and JumpBox Launch Virtual Movable Type', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.sixapart.com/about/press/2008/09/six-apart-and-jumpbox-announce.html', 'source_text': '', 'source_description': 'Six Apart and JumpBox Announce Virtual Movable Type ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}, {'id': 4490, 'description': 'JumpBox unveils \"Open Source as a service\"', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 23, 'source_url': 'http://blog.jumpbox.com/2010/03/23/presenting-open-source-as-a-service/', 'source_text': None, 'source_description': 'JumpBox Blog', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e63'), 'name': 'Phonezoo', 'permalink': 'phonezoo', 'crunchbase_url': 'http://www.crunchbase.com/company/phonezoo', 'homepage_url': 'http://www.phonezoo.com', 'blog_url': 'http://phonezoo.wordpress.com/', 'blog_feed_url': 'http://blog.phonezoo.com/feed/', 'twitter_username': 'phonezoo', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'phonezoo, ringtones, crunchbase, techcrunch', 'alias_list': '', 'email_address': 'info@phonezoo.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 26 11:33:04 UTC 2007', 'updated_at': 'Fri Nov 01 23:27:58 UTC 2013', 'overview': '

Phonezoo is a Silicon Valley based company focused on creating world class mobile products and applications.

\\n\\n

Our newest product offering, Streamzoo, helps you share and discover streams of mobile photos and videos. With mobile phone cameras getting sophisticated, there is an explosion of mobile media around us. Finding & sharing mobile photos and videos is becoming challenging - enter Streamzoo - perfect for sharing moments and experiences with the world or just your friends. Search for streams, see what’s trending now, and stay up to date with your friends’ streams.

\\n\\n

Introduced in 2006, Phonezoo.com has become the leading mobile entertainment website in the US. Its free to the end-users, ad-supported and profitable. Phonezoo is a ringtone service that lets you make your own ringtones, download them to your phone and share them with your friends. The site smartly gets around copyright issues by having users create ringtones using songs that they upload.

\\n\\n

Phonezoo has received an undisclosed amount of angel funding led by Tim Draper.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0000/3823/3823v1-max-150x150.png'], [[210, 44], 'assets/images/resized/0000/3823/3823v1-max-250x250.png'], [[210, 44], 'assets/images/resized/0000/3823/3823v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'PhoneZoo', 'permalink': 'phonezoo'}, {'name': 'Streamzoo', 'permalink': 'streamzoo'}], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Ram', 'last_name': 'Ramkumar', 'permalink': 'ram-ramkumar'}}, {'is_past': False, 'title': 'Founder & VP of Product Management', 'person': {'first_name': 'Manish', 'last_name': 'Vaidya', 'permalink': 'manish-vaidya'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Bipin', 'last_name': 'Parmar', 'permalink': 'bipin-parmar'}}], 'competitions': [{'competitor': {'name': 'Zedge', 'permalink': 'zedge'}}, {'competitor': {'name': 'Myxer', 'permalink': 'myxer'}}, {'competitor': {'name': 'Thumbplay', 'permalink': 'thumbplay'}}, {'competitor': {'name': 'PlayPhone', 'permalink': 'playphone'}}, {'competitor': {'name': 'Bongotones.com', 'permalink': 'bongotones-com'}}], 'providerships': [], 'total_money_raised': '$2.06M', 'funding_rounds': [{'id': 259, 'round_code': 'a', 'source_url': 'http://venturebeat.com/2006/11/14/phonezoo-offers-free-extensive-ringtone-download-service/', 'source_description': 'Phonezoo offers free, extensive ringtone download service', 'raised_amount': 560000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Timothy', 'last_name': 'Draper', 'permalink': 'timothy-draper'}}]}, {'id': 260, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1270 Oakmead Pkwy, Suite 214', 'address2': '', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.386376, 'longitude': -121.991471}], 'milestones': [{'id': 14481, 'description': 'Announced new mobile application - Streamzoo', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 27, 'source_url': 'http://www.prweb.com/releases/2011/03/prweb5200084.htm', 'source_text': None, 'source_description': 'Make Room On Your Phone’s Home Screen, Streamzoo is Here ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Phonezoo', 'permalink': 'phonezoo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e64'), 'name': 'LongJump', 'permalink': 'longjump', 'crunchbase_url': 'http://www.crunchbase.com/company/longjump', 'homepage_url': 'http://longjump.com', 'blog_url': 'http://www.longjumpblog.com/blog/', 'blog_feed_url': 'http://www.longjumpblog.com/blog/feed/', 'twitter_username': 'longjump', 'category_code': 'enterprise', 'number_of_employees': 30, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'application, customapplications, crm, customer-relationship-management, cloud, paas, platform-as-a-service, saas, software-as-a-service', 'alias_list': None, 'email_address': '', 'phone_number': '408.774.9474 x350', 'description': 'Cloud Application Platform', 'created_at': 'Thu Jul 26 13:33:50 UTC 2007', 'updated_at': 'Sat Apr 27 07:08:55 UTC 2013', 'overview': '

LongJump provides easily customizable Web applications for managing and coordinating businesses, teams, and information. LongJump provides Platform as a Service (PaaS) which allows non-programmers to design their own applications.

\\n\\n

Ideally, no programming skills would be needed to make a program such as a shared contact and calendar resource for a small business. Still, users must be technically savvy. LongJump offers a large catalog of pre-made applications which a user may browse and chose from. Chosen applications can be customized to suit the needs of the user or business. Customization is claimed to be as easy as dragging and dropping new fields or extensions into the base application. If this is the case then expect to see many businesses adopt LongJump in the near future.

\\n\\n

Completed applications can be shared amongst LongJump users to facilitate easier application building for others. Of course, sharing your applications is optional, however, if you decided to share, your data will be kept private. Competitors include Dabble DB, Zoho Creator, WyaWorks and Coghead.

', 'image': {'available_sizes': [[[150, 89], 'assets/images/resized/0000/3829/3829v1-max-150x150.png'], [[200, 119], 'assets/images/resized/0000/3829/3829v1-max-250x250.png'], [[200, 119], 'assets/images/resized/0000/3829/3829v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'LongJump', 'permalink': 'longjump'}], 'relationships': [{'is_past': False, 'title': 'Founder, CEO & CTO', 'person': {'first_name': 'Pankaj', 'last_name': 'Malviya', 'permalink': 'pankaj-malviya'}}], 'competitions': [{'competitor': {'name': 'Zoho', 'permalink': 'zoho'}}, {'competitor': {'name': 'Dabble DB', 'permalink': 'dabbledb'}}, {'competitor': {'name': 'Coghead', 'permalink': 'coghead'}}, {'competitor': {'name': 'Rollbase', 'permalink': 'rollbase'}}, {'competitor': {'name': 'Iceberg', 'permalink': 'iceberg'}}, {'competitor': {'name': 'Ragic', 'permalink': 'ragic'}}, {'competitor': {'name': 'Wolf Frameworks', 'permalink': 'wolf-frameworks'}}, {'competitor': {'name': 'Viravis', 'permalink': 'viravis'}}, {'competitor': {'name': 'Eccentex Corporation', 'permalink': 'eccentex-corporation'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/software-ag-acquires-cloud-platform-152000989.html', 'source_description': 'Software AG acquires Cloud Platform vendor LongJump', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1230 Midas Way, Ste 210', 'address2': '', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.384651, 'longitude': -121.992132}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 73], 'assets/images/resized/0010/7879/107879v2-max-150x150.png'], [[250, 122], 'assets/images/resized/0010/7879/107879v2-max-250x250.png'], [[450, 220], 'assets/images/resized/0010/7879/107879v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 122], 'assets/images/resized/0014/0117/140117v2-max-150x150.png'], [[250, 204], 'assets/images/resized/0014/0117/140117v2-max-250x250.png'], [[450, 367], 'assets/images/resized/0014/0117/140117v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e65'), 'name': 'Relationals', 'permalink': 'relationals', 'crunchbase_url': 'http://www.crunchbase.com/company/relationals', 'homepage_url': 'http://relationals.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '408.774.9474', 'description': None, 'created_at': 'Thu Jul 26 14:20:44 UTC 2007', 'updated_at': 'Tue Feb 10 21:27:11 UTC 2009', 'overview': '

Relationals is a CRM and SFA (Sales Force Automation) software set.

', 'image': {'available_sizes': [[[150, 28], 'assets/images/resized/0001/9702/19702v1-max-150x150.png'], [[201, 38], 'assets/images/resized/0001/9702/19702v1-max-250x250.png'], [[201, 38], 'assets/images/resized/0001/9702/19702v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '1230 Midas Way', 'address2': 'Ste 210', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.384651, 'longitude': -121.992132}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e66'), 'name': 'Wishpot', 'permalink': 'wishpot', 'crunchbase_url': 'http://www.crunchbase.com/company/wishpot', 'homepage_url': 'http://www.wishpot.com', 'blog_url': 'http://blogs.wishpot.com', 'blog_feed_url': 'http://blogs.wishpot.com/wishpot/index.rdf', 'twitter_username': 'wishpot', 'category_code': 'ecommerce', 'number_of_employees': 10, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 9, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social, shopping', 'alias_list': '', 'email_address': 'feedback@wishpot.com', 'phone_number': '(888) 763-3169', 'description': 'Social shopping service', 'created_at': 'Thu Jul 26 16:22:41 UTC 2007', 'updated_at': 'Mon Jun 17 16:38:11 UTC 2013', 'overview': '

Wishpot is a social shopping service that lets you collect and and share information about items you find online and in stores. By creating a common space in which users can browse, recommend products, get advice, and find new items they’re interested in, Wishpot seeks to simplify shopping. Wishpot is free, and offers a service nearly identical to the social shopping site Kaboodle. The company allows users to post interesting items in “Wish Lists” that can either be made public or private, where details like product image, price, and other personal notes can be added. New or interesting items can be added to Wishpot from any online source by clicking a browser button that can be downloaded from the company’s website. Interestingly, Wishpot also lets you add items to the site by sending a text message or picture from your mobile phone when shopping in an actual store. The site also boasts a product search across thousands of stores powered by Shopping.com with which you can search products, prices, and reviews. Founded in 2006, the company is backed by angel investors including Adrian Hanauer of Curious Office Partners.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0001/7829/17829v3-max-150x150.png'], [[250, 111], 'assets/images/resized/0001/7829/17829v3-max-250x250.png'], [[316, 141], 'assets/images/resized/0001/7829/17829v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wishpot', 'permalink': 'wishpot'}], 'relationships': [{'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Tom', 'last_name': 'Lianza', 'permalink': 'tom-lianza'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Max', 'last_name': 'Ciccotosto', 'permalink': 'max-ciccotosto'}}, {'is_past': True, 'title': 'VP of Sales & Business Development', 'person': {'first_name': 'Matthew', 'last_name': 'Matsudaira', 'permalink': 'matthew-matsudaira'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Alexis', 'last_name': 'Campailla', 'permalink': 'alexis-campailla'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Steven', 'last_name': 'Ashby', 'permalink': 'steven-ashby'}}], 'competitions': [{'competitor': {'name': 'Deal Comet', 'permalink': 'deal-comet'}}, {'competitor': {'name': 'Savvy Circle', 'permalink': 'savvy-circle'}}], 'providerships': [], 'total_money_raised': '$1.3M', 'funding_rounds': [{'id': 250, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Adrian', 'last_name': 'Hanauer', 'permalink': 'adrian-hanauer'}}]}, {'id': 2140, 'round_code': 'a', 'source_url': '', 'source_description': 'email from company', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 29, 'investments': [{'company': None, 'financial_org': {'name': 'Monster Venture Partners', 'permalink': 'monster-venture-partners'}, 'person': None}]}, {'id': 39302, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'H-Farm Source', 'raised_amount': 300000, 'raised_currency_code': 'EUR', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': {'name': 'H-FARM Ventures', 'permalink': 'h-farm'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.h-farmventures.com/en/news/wishpot_becomes_the_sixth_exit', 'source_description': 'Wishpot becomes the Sixth Exit', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 6, 'acquiring_company': {'name': 'ADOR', 'permalink': 'ador'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.wishlisting.com/2008/08/18/wishlisting-acquired-by-wishpotcom/', 'source_description': 'Wishlisting Acquired by Wishpot.com', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 18, 'company': {'name': 'WishListing', 'permalink': 'wishlisting-com'}}], 'offices': [{'description': 'Headquarters', 'address1': '911 Western Ave.', 'address2': 'Suite 420', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.620716, 'longitude': -122.347533}], 'milestones': [{'id': 35293, 'description': 'Exit: Wishpot has been acquired by Lockerz', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://www.h-farmventures.com/en/news/wishpot_becomes_the_sixth_exit', 'source_text': None, 'source_description': 'Wishpot becomes the Sixth Exit', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wishpot', 'permalink': 'wishpot'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3607/43607v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3607/43607v1-max-250x250.png'], [[450, 283], 'assets/images/resized/0004/3607/43607v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e71'), 'name': 'Forbes', 'permalink': 'forbes', 'crunchbase_url': 'http://www.crunchbase.com/company/forbes', 'homepage_url': 'http://www.forbes.com', 'blog_url': 'http://blogs.forbes.com/people/booze/', 'blog_feed_url': '', 'twitter_username': 'Forbes', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '(212) 366-8900', 'description': '', 'created_at': 'Wed Aug 08 12:12:23 UTC 2007', 'updated_at': 'Fri Nov 15 06:16:55 UTC 2013', 'overview': '

Forbes is a media company that produces both Forbes Magazine, and Forbes.com.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0001/9704/19704v1-max-150x150.png'], [[150, 49], 'assets/images/resized/0001/9704/19704v1-max-250x250.png'], [[150, 49], 'assets/images/resized/0001/9704/19704v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Mike', 'last_name': 'Perlis', 'permalink': 'mike-perlis'}}, {'is_past': False, 'title': 'Associate Editor', 'person': {'first_name': 'Victoria', 'last_name': 'Barret', 'permalink': 'victoria-barret'}}, {'is_past': False, 'title': 'Columnist', 'person': {'first_name': 'Ilya', 'last_name': 'Pozin', 'permalink': 'ilya-pozin'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Micha', 'last_name': 'Kaufman', 'permalink': 'micha-kaufman'}}, {'is_past': False, 'title': 'Blogger, ForbesWoman', 'person': {'first_name': 'Sabrina', 'last_name': 'Parsons', 'permalink': 'sabrina-parsons'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Kelly', 'last_name': 'Reid', 'permalink': 'kelly-reid'}}, {'is_past': False, 'title': 'Managing Editor', 'person': {'first_name': 'Bruce', 'last_name': 'Upbin', 'permalink': 'bruce-upbin'}}, {'is_past': False, 'title': 'Writes a Column', 'person': {'first_name': 'Chris', 'last_name': 'Kreinczes', 'permalink': 'chris-kreinczes'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Erica', 'last_name': 'Swallow', 'permalink': 'erica-swallow'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Dan', 'last_name': 'Munro', 'permalink': 'dan-munro-3'}}, {'is_past': False, 'title': 'Board member', 'person': {'first_name': 'Ted', 'last_name': 'Meisel', 'permalink': 'ted-meisel'}}, {'is_past': False, 'title': 'Your Most Productive Resolution 2013: Embrace Uncertainty(Link)', 'person': {'first_name': 'Janesse', 'last_name': 'Thaw Bruce', 'permalink': 'janesse-thaw-bruce'}}, {'is_past': False, 'title': 'Senior Editor', 'person': {'first_name': 'Zack', 'last_name': 'Greenburg', 'permalink': 'zack-greenburg'}}, {'is_past': False, 'title': 'Reporter', 'person': {'first_name': 'J.J.', 'last_name': 'Colao', 'permalink': 'j-j-colao'}}, {'is_past': True, 'title': 'European Bureau Chief', 'person': {'first_name': 'John', 'last_name': 'E. Marcom, Jr.', 'permalink': 'john-e-marcom-jr'}}, {'is_past': True, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Jim', 'last_name': 'Spanfeller', 'permalink': 'jim-spanfeller'}}, {'is_past': True, 'title': 'Vice President, Audience Monetization', 'person': {'first_name': 'Matt', 'last_name': 'Barash', 'permalink': 'matt-barash'}}, {'is_past': True, 'title': 'Associate Editor', 'person': {'first_name': 'Josh', 'last_name': 'McHugh', 'permalink': 'josh-mchugh'}}, {'is_past': True, 'title': 'leading all West Coast sales', 'person': {'first_name': 'Lauren', 'last_name': 'Wray', 'permalink': 'lauren-wray'}}, {'is_past': True, 'title': 'Product & Creative Director', 'person': {'first_name': 'Jeff', 'last_name': 'Bauer', 'permalink': 'jeff-bauer'}}, {'is_past': True, 'title': 'New York Sales Director', 'person': {'first_name': 'Andrew', 'last_name': 'Gorenstein', 'permalink': 'andrew-gorenstein'}}, {'is_past': True, 'title': 'Brand Manager', 'person': {'first_name': 'Ksenia', 'last_name': 'Ryzhkova', 'permalink': 'ksenia-ryzhkova'}}, {'is_past': True, 'title': 'Anchor Reporter, Forbes Video Online', 'person': {'first_name': 'Evelyn', 'last_name': 'Rusli', 'permalink': 'evelyn-rusli'}}, {'is_past': True, 'title': 'Director , Human Resources', 'person': {'first_name': 'Sharon', 'last_name': 'Jautz', 'permalink': 'sharon-jautz'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Bradford', 'last_name': 'Campeau-Laurion', 'permalink': 'bradford-campeau-laurion'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ralph', 'last_name': 'Sabin', 'permalink': 'ralph-sabin'}}, {'is_past': True, 'title': 'Widely Read Stock Market Weblogs of TraderMike.net', 'person': {'first_name': 'Michael', 'last_name': 'Seneadza', 'permalink': 'michael-seneadza'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/08/07/forbes-buys-social-bookmarking-site-clipmarks/', 'source_description': 'Forbes buys social bookmarking site Clipmarks', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 7, 'company': {'name': 'Clipmarks', 'permalink': 'clipmarks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-forbes-buys-online-photo-distributor-flipgloss/', 'source_description': ' Forbes Buys Online Photo Platform FlipGloss ', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 12, 'company': {'name': 'FlipGloss', 'permalink': 'flipgloss'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-forbes-acquires-true-slant/', 'source_description': 'Forbes Acquires Freelance Journalism Site TrueSlant', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 25, 'company': {'name': 'True/Slant', 'permalink': 'trueslant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.canada.com/edmontonjournal/news/business/story.html?id=511a0931-546f-43c1-a22e-cb1e18e731b8', 'source_description': 'Forbes Inc. has bought Investopedia', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 17, 'company': {'name': 'Investopedia', 'permalink': 'investopedia'}}], 'offices': [{'description': '', 'address1': '60 5th Avenue', 'address2': '', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.736416, 'longitude': -73.993302}], 'milestones': [{'id': 10155, 'description': 'Forbes Names Softbank’s Perlis As President, CEO Of Forbes Media ', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 15, 'source_url': 'http://paidcontent.org/article/419-forbes-names-softbanks-perlis-as-president-ceo-of-forbes-media/', 'source_text': '', 'source_description': 'Forbes Names Softbank’s Perlis As President, CEO Of Forbes Media ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Forbes', 'permalink': 'forbes'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 91], 'assets/images/resized/0004/3611/43611v1-max-150x150.png'], [[250, 152], 'assets/images/resized/0004/3611/43611v1-max-250x250.png'], [[450, 275], 'assets/images/resized/0004/3611/43611v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e73'), 'name': 'Boonex', 'permalink': 'boonex', 'crunchbase_url': 'http://www.crunchbase.com/company/boonex', 'homepage_url': 'http://www.boonex.com', 'blog_url': 'http://boonex.com/notes', 'blog_feed_url': 'http://www.boonex.org/feed/', 'twitter_username': 'boonex', 'category_code': 'software', 'number_of_employees': 16, 'founded_year': 2000, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'community, software, video, chat, unity, im, standalone, hosted, mp3, player, ray, orca, dolphin, shark, barracuda, boonex, dating, free, messanger', 'alias_list': '', 'email_address': 'business@boonex.com', 'phone_number': '', 'description': 'General Info', 'created_at': 'Wed Aug 08 11:15:37 UTC 2007', 'updated_at': 'Fri Mar 22 17:58:07 UTC 2013', 'overview': '

Boonex provides free, open-source, downloadable community-building software for websites. BoonEx mission is to Unite People. BoonEx products are used by over 50,000 community websites worldwide.

\\n\\n

BoonEx Unity is a community of BoonEx customers and 3rd party professionals working on their community sites. Unity provides free platform for business discussion, advertisement, extensions trading, jobs and ideas sharing.

\\n\\n

BoonEx is based in Sydney, Australia.

\\n\\n

The flagship product - Dolphin Smart Community Builder is a feature-packed CMS for dating sites, social networks and niche communities. Dolphin includes flash video player, music player, video chat, groups, events, photo-sharing, statuses, geo-location, matchmaking, advanced search, mailbox, mini-chat and many other features.

\\n\\n

Dolphin is paired with an iPhone application and with an AdobeAIR application for desktops. Dolphin is a free, open-source, downloadable script based on PHP, MySQL, AJAX and XHTML. Dolphin can run both on Linux and Windows servers and supports server clusters.

', 'image': {'available_sizes': [[[150, 30], 'assets/images/resized/0000/4123/4123v5-max-150x150.png'], [[155, 32], 'assets/images/resized/0000/4123/4123v5-max-250x250.png'], [[155, 32], 'assets/images/resized/0000/4123/4123v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'BoonEx Dolphin Smart Community Builder', 'permalink': 'boonex-dolphin-smart-community-builder'}], 'relationships': [{'is_past': False, 'title': 'General Director and Co-Founder', 'person': {'first_name': 'Andrew', 'last_name': 'Boon', 'permalink': 'andrew-boon'}}], 'competitions': [{'competitor': {'name': 'Webligo Developments', 'permalink': 'webligo'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '10 Cedar Grove', 'address2': 'Castle Hill', 'zip_code': '2154', 'city': 'Sydney', 'state_code': None, 'country_code': 'AUS', 'latitude': -33.722577, 'longitude': 150.981801}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 142], 'assets/images/resized/0004/4401/44401v2-max-150x150.jpg'], [[250, 237], 'assets/images/resized/0004/4401/44401v2-max-250x250.jpg'], [[450, 427], 'assets/images/resized/0004/4401/44401v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.onlinepersonalswatch.com/news/2009/05/andrew-boon-director-and-cofounder-of-boonex.html', 'title': 'Director and co-Founder Interview 05/09'}, {'external_url': 'http://trokus.fr/site', 'title': 'Trokus community networking'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e75'), 'name': 'IntenseDebate', 'permalink': 'intensedebate', 'crunchbase_url': 'http://www.crunchbase.com/company/intensedebate', 'homepage_url': 'http://intensedebate.com', 'blog_url': 'http://intensedebate.com/blog/', 'blog_feed_url': 'http://blog.intensedebate.com/feed/', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 4, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'commenting-system, blog, comments, techstars, debate, threaded, vote, reputation, techstars-boulder-2007', 'alias_list': 'Intense Debate', 'email_address': 'support@intensedebate.com', 'phone_number': '', 'description': 'Blog commenting system', 'created_at': 'Wed Aug 08 11:50:36 UTC 2007', 'updated_at': 'Mon Oct 14 17:33:42 UTC 2013', 'overview': '

Intense Debate is a blog commenting system that supports Typepad, Blogger and Wordpress blogs. The system allows blog owners to track and moderate comments from one place with features like threading, comment analytics, user reputation and comment aggregation.

\\n\\n

Intense Debate offers blog readers a powerful networking system to establish reputations, link their profiles, make friends and syndicate their comments. It will create a “mini-blogging platform” that will hold commenters responsible for their comments across various blogs. I’m sure the service will help jumpstart a couple superstar commenter careers.

\\n\\n

The company is currently in private beta mode. It is also an incubating startup for TechStars. Competitors include CoComment, JS-Kit, SezWho and Tangler.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/4126/4126v3-max-150x150.png'], [[150, 51], 'assets/images/resized/0000/4126/4126v3-max-250x250.png'], [[150, 51], 'assets/images/resized/0000/4126/4126v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Tom', 'last_name': 'Keller', 'permalink': 'tom-keller'}}, {'is_past': True, 'title': 'CTO / Co - Founder', 'person': {'first_name': 'Jon', 'last_name': 'Fox', 'permalink': 'jon-fox'}}, {'is_past': True, 'title': 'Co-Founder, User Interface Designer', 'person': {'first_name': 'Isaac', 'last_name': 'Keyet', 'permalink': 'isaac-keyet'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'is_past': True, 'title': 'Director Marketing', 'person': {'first_name': 'Michael', 'last_name': 'Koenig', 'permalink': 'michael-koenig'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Austin', 'last_name': 'Hallock', 'permalink': 'austin-hallock'}}], 'competitions': [{'competitor': {'name': 'SezWho', 'permalink': 'sezwho'}}, {'competitor': {'name': 'Disqus', 'permalink': 'disqus'}}, {'competitor': {'name': 'Echo', 'permalink': 'echo'}}, {'competitor': {'name': 'uberVU', 'permalink': 'ubervu'}}, {'competitor': {'name': 'Livefyre', 'permalink': 'livefyre'}}, {'competitor': {'name': 'Viafoura', 'permalink': 'viafoura'}}, {'competitor': {'name': 'Moot', 'permalink': 'moot'}}], 'providerships': [], 'total_money_raised': '$515k', 'funding_rounds': [{'id': 316, 'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': {'name': 'Techstars', 'permalink': 'techstars'}, 'financial_org': None, 'person': None}]}, {'id': 11664, 'round_code': 'angel', 'source_url': 'http://www.davidgcohen.com/investing/', 'source_description': 'David Cohen', 'raised_amount': 500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Tom', 'last_name': 'Keller', 'permalink': 'tom-keller'}}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/', 'source_description': \"Automattic Has Acquired IntenseDebate's Enhanced Comment System\", 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 23, 'acquiring_company': {'name': 'Automattic', 'permalink': 'automattic'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.010492, 'longitude': -105.276843}], 'milestones': [{'id': 600, 'description': 'Acquired by Automattic for an undisclosed amount', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 23, 'source_url': 'http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/', 'source_text': '', 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IntenseDebate', 'permalink': 'intensedebate'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV Interview: 6/08

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e78'), 'name': 'Rebtel', 'permalink': 'rebtel', 'crunchbase_url': 'http://www.crunchbase.com/company/rebtel', 'homepage_url': 'http://www.rebtel.com', 'blog_url': 'http://blog.rebtel.com', 'blog_feed_url': 'http://feeds.feedburner.com/rebtel/qiRS', 'twitter_username': 'Rebtel', 'category_code': 'mobile', 'number_of_employees': 75, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'voip, mvoip', 'alias_list': None, 'email_address': 'feedback@rebtel.com', 'phone_number': '+46851906100', 'description': 'Talk More With Your Loved Ones', 'created_at': 'Tue Jul 31 06:10:43 UTC 2007', 'updated_at': 'Tue Dec 17 11:09:07 UTC 2013', 'overview': '

As the name suggests, Rebtel was founded with one very specific goal in mind, which was, and still is, to rebel and fundamentally disrupt the telecommunications industry as we know it.

\\n\\n

We provide international calling apps for iPhone, Android, Windows Phone and PC, with a host of innovative products in the pipeline. As more and more companies are realizing the value of open source models, the Rebtel Voice platform has been allowing developers to integrate our tried and tested technology into their products for free!

\\n\\n

Our head office, located in Nacka Strand, offers stunning views of Stockholm and we pride ourselves on offering a wonderful work environment with a multinational workforce.

\\n\\n

Think it sounds like something you want to be a part of? In that case, we’d love to hear from you

', 'image': {'available_sizes': [[[141, 30], 'assets/images/resized/0003/7859/37859v1-max-150x150.png'], [[141, 30], 'assets/images/resized/0003/7859/37859v1-max-250x250.png'], [[141, 30], 'assets/images/resized/0003/7859/37859v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Rebtel 2.0 for iPhone', 'permalink': 'rebtel-2-0-for-iphone'}, {'name': 'Rebtel 2.0 PC', 'permalink': 'rebtel-2-0-pc'}, {'name': 'Rebtel for Mobile or Landline', 'permalink': 'rebtel-for-mobile-or-landline'}, {'name': 'Sendly', 'permalink': 'sendly'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board & Co-Founder', 'person': {'first_name': 'Hjalmar', 'last_name': 'Winbladh', 'permalink': 'hjalmar-winbladh'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Andreas', 'last_name': 'Bernstrom', 'permalink': 'andreas-bernstrom'}}, {'is_past': False, 'title': 'VP of Product', 'person': {'first_name': 'Daniel', 'last_name': 'Forsman', 'permalink': 'daniel-forsman'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Jonas', 'last_name': 'Lindroth', 'permalink': 'jonas-lindroth'}}, {'is_past': False, 'title': 'Head of Marketing', 'person': {'first_name': 'Peter', 'last_name': 'Bäckström', 'permalink': 'peter-bckstrm'}}, {'is_past': False, 'title': 'Head of Finance', 'person': {'first_name': 'Michael', 'last_name': 'Hedman', 'permalink': 'michael-hedman'}}, {'is_past': False, 'title': 'Head of Communication', 'person': {'first_name': 'Anna', 'last_name': 'Ålenius Mathson', 'permalink': 'anna-lenius-mathson'}}, {'is_past': True, 'title': 'Head of Marketing', 'person': {'first_name': 'Patric', 'last_name': 'Blixt', 'permalink': 'patric-blixt'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Jesper', 'last_name': 'von Bahr', 'permalink': 'jesper-von-bahr'}}, {'is_past': True, 'title': 'Head of Product Management', 'person': {'first_name': 'Björn', 'last_name': 'Alberts', 'permalink': 'bjrn-alberts'}}, {'is_past': True, 'title': 'Head of Operations', 'person': {'first_name': 'Jakob', 'last_name': 'Borgstrom', 'permalink': 'jakob-borgstrom'}}, {'is_past': True, 'title': 'Head of Product', 'person': {'first_name': 'Maja', 'last_name': 'Lindstrom', 'permalink': 'maja-lindstrom'}}], 'competitions': [{'competitor': {'name': 'Skype', 'permalink': 'skype'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Verizon Communications, Inc.', 'permalink': 'verizon'}}, {'competitor': {'name': 'Localphone', 'permalink': 'localphone'}}, {'competitor': {'name': 'Vox Call', 'permalink': 'voxcall-com'}}, {'competitor': {'name': 'SpeedyPin', 'permalink': 'speedypin'}}], 'providerships': [], 'total_money_raised': '$20M', 'funding_rounds': [{'id': 264, 'round_code': 'a', 'source_url': 'http://startupsquad.com/2006/09/24/funding-rebtel-gets-20-million/', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Balderton Capital', 'permalink': 'balderton-capital'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': 'Fabrikorvagen 4', 'address2': '', 'zip_code': '131 52', 'city': 'Nacka Strand', 'state_code': None, 'country_code': 'SWE', 'latitude': 59.3167843, 'longitude': 18.1582777}], 'milestones': [{'id': 19112, 'description': 'Rebtel was registered in 2005 by serial entrepreneurs Hjalmar Winbladh and Jonas Lindroth.', 'stoned_year': 2005, 'stoned_month': None, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rebtel', 'permalink': 'rebtel'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Talk More with your Loved Ones

'}], 'screenshots': [{'available_sizes': [[[150, 55], 'assets/images/resized/0037/7646/377646v2-max-150x150.png'], [[250, 92], 'assets/images/resized/0037/7646/377646v2-max-250x250.png'], [[450, 166], 'assets/images/resized/0037/7646/377646v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://techcrunch.com/2012/05/31/rebtel-hits-the-ipad/', 'title': 'Now At 17M+ Users, Rebtel Brings Cheap VoIP Calls, Texts To The iPad'}, {'external_url': 'http://techcrunch.com/2011/06/08/rebtel-ceo-voip-is-just-a-glorified-fixed-line-mobile-is-where-its-at/', 'title': \"Rebtel CEO: VoIP Is Just A Glorified Fixed Line, Mobile Is Where It's At\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e7d'), 'name': 'Buxfer', 'permalink': 'buxfer', 'crunchbase_url': 'http://www.crunchbase.com/company/buxfer', 'homepage_url': 'http://www.buxfer.com', 'blog_url': 'https://blog.buxfer.com', 'blog_feed_url': 'http://www.buxfer.com/blog/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 4, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'money, moneymanagement, socialmoney', 'alias_list': None, 'email_address': 'support@buxfer.com', 'phone_number': '', 'description': '', 'created_at': 'Tue Jul 31 10:23:00 UTC 2007', 'updated_at': 'Thu Nov 19 06:52:55 UTC 2009', 'overview': '

Buxfer is the next-generation personal finance solution, taking money management to the web. Buxfer lets you monitor all your bank and credit card accounts at one single place. Transactions are automatically downloaded every night and categorized. Buxfer’s spending reports let you dig into your past spending, drill down into different categories and analyze spending trends. To plan future spending, you can create budgets, bill reminders and forecast your monthly cashflow. Buxfer integrates with your mobile device, letting you check account balances or add cash expenses while you are on the go.

\\n\\n

Co-founder Ashwin Bharambe got the idea for Buxfer after becoming frustrated with the swarm of IOUs pasted up on his refrigerator while he was at Carnegie Mellon University working towards his PH.D. Without a great way to track what he owed and what others owed him, Ashwin wrote a program to solve his problems that would eventually become social money website, Buxfer.

\\n\\n

Buxfer allows its users to track their personal finances as well as regulate and organize loans and IOUs to friends. It lets you keep totals of what you owe and what is owed to you, as well as divide bills.As an added bonus, users can log on to Buxfer using their Google, Yahoo, Facebook, AIM or Open ID logins to eliminate the account creation hassle. Buxfer also displays your spending habits in the form of a pie chart with slices designated to categories like food, leisure, rent or whatever you want. It has auto tagging which places your bills in the correct category. Buxfer is something of a Quicken for a younger generation, especially after it launched its Facebook application. As of August 2007 Buxfer offers payment integration through Amazon payment’s site.

\\n\\n

Competitors, Wesabe and Billmonk also have payment integration while PayPal is the clear leader in online transactions and transactions made between friends. Buxfer is a Y Combinator company which has grown since its launch to include some impressive data visuals. As of November 2009, Buxfer had tracked $1.66 billion in over 10.33 million transactions.

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3907/3907v1-max-150x150.png'], [[161, 40], 'assets/images/resized/0000/3907/3907v1-max-250x250.png'], [[161, 40], 'assets/images/resized/0000/3907/3907v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Buxfer', 'permalink': 'buxfer'}, {'name': 'Buxfer Facebook Widget', 'permalink': 'buxfer-facebook-widget'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Shashank', 'last_name': 'Pandit', 'permalink': 'shashank-pandit'}}, {'is_past': True, 'title': 'CEO, Founder', 'person': {'first_name': 'Ashwin', 'last_name': 'Bharambe', 'permalink': 'ashwin-bharambe'}}], 'competitions': [{'competitor': {'name': 'BillMonk', 'permalink': 'billmonk'}}, {'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Scred', 'permalink': 'scred'}}, {'competitor': {'name': 'Thrive', 'permalink': 'thrive'}}, {'competitor': {'name': 'Jwaala', 'permalink': 'jwaala'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}, {'competitor': {'name': 'manageME7', 'permalink': 'manageme7'}}, {'competitor': {'name': 'Yodle', 'permalink': 'yodle'}}, {'competitor': {'name': 'Yodlee', 'permalink': 'yodlee'}}], 'providerships': [], 'total_money_raised': '$315k', 'funding_rounds': [{'id': 269, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2007/03/02/billmonk-has-a-half-brother/', 'source_description': 'Billmonk Has A Half Brother', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}, {'id': 1312, 'round_code': 'angel', 'source_url': 'http://venturebeat.com/2008/01/04/buxfer-is-giving-mint-other-personal-finance-sites-a-run-for-their-money/', 'source_description': 'Buxfer is giving Mint, other personal finance sites, a run for their money', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Eric', 'last_name': 'Cooper', 'permalink': 'eric-cooper'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.400465, 'longitude': -122.073003}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e7e'), 'name': 'boo-box', 'permalink': 'boo-box', 'crunchbase_url': 'http://www.crunchbase.com/company/boo-box', 'homepage_url': 'http://boo-box.com', 'blog_url': 'http://boo-box.com/en/blog', 'blog_feed_url': '', 'twitter_username': 'booboxbr', 'category_code': 'advertising', 'number_of_employees': 50, 'founded_year': 2007, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-media, advertising, ad, ad-system, technology, merb, ruby, brazil', 'alias_list': '', 'email_address': 'contact@boo-box.com', 'phone_number': '+55 11 3853-9598', 'description': 'blogs, niche websites & social profiles', 'created_at': 'Wed Nov 07 05:31:13 UTC 2007', 'updated_at': 'Thu Sep 05 18:50:34 UTC 2013', 'overview': '

boo-box is the first ad tech & social media player in Brazil, TechCrunch described them as “the Brazil’s Web 2.0 Ad Network”

\\n\\n

Every month boo-box displays 1 billion ads with product offers and display advertising campaigns for 60 million people in Brazil spread across 430,000 blogs and websites, the company is quickly getting traction among renowned publishers and ad agencies.

\\n\\n

For the publisher, boo-box provides better control over ad inventory, access to premium campaigns, the possibility to explore differentiated formats, and higher profitability. Because boo-box is the only Ad Network that treats publishers as customers (vs. suppliers), it is clearly the preferred solution. The company has received countless positive user feedback, which it leverages as a powerful promotion tool.

\\n\\n

For the advertiser, boo-box is the only provider of scalable and effective advertising in social media that fully integrates with ad agencies’ modus operandi. The value proposition is fairly simple, yet compelling: a large ad-inventory in social media websites that can be purchased adopting standard market pricing and procedures, with control over category, keyword and geolocation targeting and full reporting. Today boo-box’s Social Media Ad System enjoys increasing acceptance, as reflected by positive feedback, a strong sales pipeline and growing revenues.

\\n\\n

Besides the display advertising inventory, the company is able to develop innovative rich media ad formats, behavioral targeting for retargeting campaigns, interest and demographic profiling. Some of those products are already gaining traction, such as a Twitter based advertising solution called boo-box Seeding, first used by Ogilvy Interactive, and became an international award winning advertising case.

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3910/3910v5-max-150x150.png'], [[250, 63], 'assets/images/resized/0000/3910/3910v5-max-250x250.png'], [[450, 113], 'assets/images/resized/0000/3910/3910v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'boo-box Social Media Ad System', 'permalink': 'boo-box'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Pedro', 'last_name': 'Moraes', 'permalink': 'pedro-moraes'}}, {'is_past': False, 'title': 'Chief Innovation Officer', 'person': {'first_name': 'Santiago', 'last_name': 'Siri', 'permalink': 'santiago-siri-3'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Marco', 'last_name': 'Gomes', 'permalink': 'marco-gomes'}}, {'is_past': False, 'title': 'VP of Sales', 'person': {'first_name': 'Sergio', 'last_name': 'Sacchi', 'permalink': 'sergio-sacchi'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Thyago', 'last_name': 'Liberalli', 'permalink': 'thyago-literalli'}}, {'is_past': False, 'title': 'VP of Publishers', 'person': {'first_name': 'Edney', 'last_name': 'Souza', 'permalink': 'edney-souza'}}, {'is_past': False, 'title': 'Ad/Publisher Operations', 'person': {'first_name': 'Denis', 'last_name': 'Rodrigues', 'permalink': 'denis-rodrigues'}}, {'is_past': False, 'title': 'board of directors', 'person': {'first_name': 'Eric', 'last_name': 'Acher', 'permalink': 'eric-acher'}}, {'is_past': False, 'title': 'Director Latinamerica', 'person': {'first_name': 'Sebastian', 'last_name': 'Yoffe', 'permalink': 'sebastian-yoffe'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Pedro Paulo', 'last_name': 'Oliveira de Moraes', 'permalink': 'pedro-paulo-oliveira-de-moraes'}}, {'is_past': True, 'title': 'Comercial Director', 'person': {'first_name': 'Fred', 'last_name': 'Pacheco', 'permalink': 'fred-pacheco'}}, {'is_past': True, 'title': 'IT Coordinator', 'person': {'first_name': 'Felipe', 'last_name': 'Vieira', 'permalink': 'felipe-vieira'}}, {'is_past': True, 'title': 'UX Designer', 'person': {'first_name': 'Thiago', 'last_name': 'Vian', 'permalink': 'thiago-vian'}}, {'is_past': True, 'title': 'Senior Web Developer', 'person': {'first_name': 'Alexandre', 'last_name': 'Ferreira', 'permalink': 'alexandre-ferreira'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$300k', 'funding_rounds': [{'id': 270, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/11/16/intel-capital-invests-77-million-in-18-startups-worldwide/', 'source_description': 'Intel Capital Invests $77 Million in 18 Startups\\xa0Worldwide', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Monashees Capital', 'permalink': 'monashees-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 20122, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Monashees Capital', 'permalink': 'monashees-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'boo-land', 'address1': 'Av. Faria Lima, 2631', 'address2': 'Pinheiros', 'zip_code': '', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.558584, 'longitude': -46.679287}], 'milestones': [{'id': 21769, 'description': 'Series A Investment', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://oglobo.globo.com/economia/intel-capital-amplia-portfolio-de-investimentos-no-brasil-2923209', 'source_text': None, 'source_description': 'Intel Capital amplia portfólio de investimentos no Brasil', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'boo-box', 'permalink': 'boo-box'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

boo-box

'}, {'embed_code': '', 'description': '

boo-box in portuguese

'}], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0010/9685/109685v2-max-150x150.jpg'], [[250, 202], 'assets/images/resized/0010/9685/109685v2-max-250x250.jpg'], [[450, 365], 'assets/images/resized/0010/9685/109685v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 128], 'assets/images/resized/0010/9686/109686v2-max-150x150.jpg'], [[250, 213], 'assets/images/resized/0010/9686/109686v2-max-250x250.jpg'], [[450, 385], 'assets/images/resized/0010/9686/109686v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[133, 150], 'assets/images/resized/0010/9687/109687v2-max-150x150.jpg'], [[222, 250], 'assets/images/resized/0010/9687/109687v2-max-250x250.jpg'], [[400, 450], 'assets/images/resized/0010/9687/109687v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://techcrunch.com/2010/11/16/intel-capital-invests-77-million-in-18-startups-worldwide/', 'title': 'Intel Capital Invests $77 Million in 18 Startups Worldwide'}, {'external_url': 'http://techcrunch.com/2007/01/21/boobox-to-help-bloggers-sell-stuff/', 'title': 'booBox To Help Bloggers Sell Stuff'}], 'partners': [{'partner_name': 'AngelList', 'homepage_url': 'http://boo-box.com', 'link_1_url': 'https://angel.co/boo-box?utm_source=crunchbase&utm_medium=link&utm_content=profile&utm_term=boo-box&utm_campaign=crunchbase', 'link_2_url': None, 'link_3_url': None, 'link_1_name': 'AngelList Page', 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297e85'), 'name': 'TextPayMe', 'permalink': 'textpayme', 'crunchbase_url': 'http://www.crunchbase.com/company/textpayme', 'homepage_url': 'http://www.textpayme.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'media@textpayme.com', 'phone_number': None, 'description': None, 'created_at': 'Wed Aug 01 05:56:53 UTC 2007', 'updated_at': 'Fri Oct 18 05:07:04 UTC 2013', 'overview': '

Founded in 2005, TextPayMe is an SMS payment service that lets you send money to other people using cell phone text messaging. TextPayMe lets you send money to anyone else in the US with an SMS-capable cell phone, and while phone carriers may charge for the actual text message sent/received, sending and receiving money is free while TextPayMe remains in Beta.

\\n\\n

In July 2006, the TextPayMe team started working for Amazon and, as of 2011, the site redirects to an Amazon’s mobile payment website. There was no press release related to this event but it’s assumed the company was acquired.

\\n\\n

Sending and receiving payments through TextPayMe is easy: simply write a text message to SMS@TextPayMe.com with “pay amount phonenumber” in the body (i.e. to send $5 to 123-456-7890, text “pay 5 1234567890”). The service is secure as well, as each payment needs to be confirmed by a user-created PIN. To fund your transactions, TextPayMe lets you add money directly from your bank account and now also lets you link your credit card as well. Currently, the maximum amount that can be sent or received per month is $500.

\\n\\n

TextPayMe’s service is both useful and easy-to-use. However, the company’s future success is directly dependent on how well they can compete with other rivals such as KushCash, Obopay, and the formidable Paypal Mobile.

', 'image': {'available_sizes': [[[150, 121], 'assets/images/resized/0001/9258/19258v5-max-150x150.jpg'], [[250, 201], 'assets/images/resized/0001/9258/19258v5-max-250x250.jpg'], [[389, 314], 'assets/images/resized/0001/9258/19258v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'TextPayMe', 'permalink': 'textpayme'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Gerald', 'last_name': 'Yuen', 'permalink': 'gerald-yuen'}}, {'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Philip', 'last_name': 'Yuen', 'permalink': 'philip-yuen'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'CJ', 'last_name': 'Huang', 'permalink': 'cj-huang'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'PayPal', 'permalink': 'paypal'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'mBlox', 'permalink': 'mblox'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 282, 'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.infosources.org/what_is/Amazon_Payments.html', 'source_description': 'Amazon Payments', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Redmond', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.672229, 'longitude': -122.115633}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://blog.seattlepi.nwsource.com/venture/archives/101538.asp', 'title': 'Inside look at TextPayMe'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e88'), 'name': 'BillMonk', 'permalink': 'billmonk', 'crunchbase_url': 'http://www.crunchbase.com/company/billmonk', 'homepage_url': 'http://www.billmonk.com', 'blog_url': 'http://billmonk.wordpress.com/', 'blog_feed_url': 'http://billmonk.wordpress.com/feed/', 'twitter_username': 'BillmonkFriends', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialmoney, moneymanagement', 'alias_list': '', 'email_address': 'company@billmonk.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Aug 01 07:22:43 UTC 2007', 'updated_at': 'Tue Mar 19 04:27:05 UTC 2013', 'overview': '

Because borrowing money from friends can be “awkward”, BillMonk keeps track of all your friends’ IOUs and debts so you don’t have to remind them that they owe you. BillMonk is a social money management tool that allows a group of friends to keep running tabs on who owes who how much and for what. Users collaborate online deciding how to split past and current bills such as taxi fares or restaurant bills. BillMonk calculates how much you owe (or are owed) and then lets you pay online or by mobile phone through parent company obopay’s payment services. With obopay, BillMonk users can record bills on their account immediately after getting them by sending a text message to BillMonk. This feature will save those of us who loose receipts or forget how much we owe even before the night is over.Mobile (and online) payment integration is the killer app and differentiating feature for BillMonk, as competitor Buxfer lacks any type of payment tools and Wesabe does not have a mobile payment option. Both competitors offer a product more in tune with Quicken that helps you to understand how you spend your money through trend analysis and data visuals.

\\n\\n

BillMonk focuses solely on helping you pay and receive money from friends and settling informal debts. In addition to monetary debts, Billmonk can track things you borrow or loan to friends like a movie or a jacket even. A useful tool, BillMonk also enjoys being one of the first companies to tap the $103 billion market of social money traded each year. BillMonk has a Facebook application in addition to its mobile and browser products.

', 'image': {'available_sizes': [[[124, 55], 'assets/images/resized/0000/3940/3940v1-max-150x150.png'], [[124, 55], 'assets/images/resized/0000/3940/3940v1-max-250x250.png'], [[124, 55], 'assets/images/resized/0000/3940/3940v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'BillMonk', 'permalink': 'billmonk'}], 'relationships': [{'is_past': None, 'title': 'VP Product Development, Consumer Applications', 'person': {'first_name': 'Gaurav', 'last_name': 'Oberoi', 'permalink': 'gaurav-oberoi'}}, {'is_past': None, 'title': 'VP Product Development, Customer Experience', 'person': {'first_name': 'Chuck', 'last_name': 'Groom', 'permalink': 'chuck-groom'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Guarav', 'last_name': 'Oberoi', 'permalink': 'guarav-oberoi'}}], 'competitions': [{'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'Buxfer', 'permalink': 'buxfer'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Scred', 'permalink': 'scred'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}, {'competitor': {'name': 'BillShrink', 'permalink': 'billshrink'}}, {'competitor': {'name': 'SplitMyBill', 'permalink': 'splitmybill'}}, {'competitor': {'name': 'BillPin', 'permalink': 'billpin'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://billmonk.wordpress.com/2007/01/30/billmonk-is-now-an-obopay-company-settle-up-online/', 'source_description': 'BillMonk is now an Obopay company! Settle up online.', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 30, 'acquiring_company': {'name': 'obopay', 'permalink': 'obopay'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.620716, 'longitude': -122.347533}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e8e'), 'name': 'The Walt Disney Company', 'permalink': 'the-walt-disney-company', 'crunchbase_url': 'http://www.crunchbase.com/company/the-walt-disney-company', 'homepage_url': 'http://thewaltdisneycompany.com', 'blog_url': 'http://thewaltdisneycompany.com/blog', 'blog_feed_url': '', 'twitter_username': 'DisneyPost', 'category_code': 'games_video', 'number_of_employees': 25000, 'founded_year': 1923, 'founded_month': 10, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'disney, media, entertainment, movies', 'alias_list': 'Disney', 'email_address': '', 'phone_number': '818-560-1000', 'description': '', 'created_at': 'Thu Aug 02 09:08:05 UTC 2007', 'updated_at': 'Mon Nov 18 17:26:25 UTC 2013', 'overview': '

The Walt Disney Company is a media and entertainment corporation. The corporation is broken up into 5 parts - Studio Entertainment, Parks and Resorts, Consumer Products, Media Networks and interactive Media.

', 'image': {'available_sizes': [[[150, 78], 'assets/images/resized/0001/0929/10929v3-max-150x150.jpg'], [[200, 105], 'assets/images/resized/0001/0929/10929v3-max-250x250.jpg'], [[200, 105], 'assets/images/resized/0001/0929/10929v3-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Robert', 'last_name': 'A. Iger', 'permalink': 'robert-a-iger'}}, {'is_past': False, 'title': 'Chairman, The Walt Disney Studios', 'person': {'first_name': 'Rich', 'last_name': 'Ross', 'permalink': 'rich-ross'}}, {'is_past': False, 'title': 'Chairman, Disney Consumer Products', 'person': {'first_name': 'Andrew', 'last_name': 'P. Mooney', 'permalink': 'andrew-p-mooney'}}, {'is_past': False, 'title': 'Co-Chairman, Disney Media Networks, President, ESPN, Inc. and ABC Sports, Chairman, ESPN Board of Directors', 'person': {'first_name': 'George', 'last_name': 'W. Bodenheimer', 'permalink': 'george-w-bodenheimer'}}, {'is_past': False, 'title': 'Chairman, Walt Disney International', 'person': {'first_name': 'Andy', 'last_name': 'Bird', 'permalink': 'andy-bird'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Human Resources Officer', 'person': {'first_name': 'Jayne', 'last_name': 'Parker', 'permalink': 'jayne-parker'}}, {'is_past': False, 'title': 'Executive Vice President, and Chief Human Resources Officer, The Walt Disney Company', 'person': {'first_name': 'Dennis', 'last_name': 'W Shuler', 'permalink': 'dennis-w-shuler'}}, {'is_past': False, 'title': 'Senior Vice President Innovation', 'person': {'first_name': 'Michael', 'last_name': 'Abrams', 'permalink': 'michael-abrams'}}, {'is_past': False, 'title': 'VP Productions - Disney Interactive', 'person': {'first_name': 'Chris', 'last_name': 'Cunningham', 'permalink': 'chris-cunningham'}}, {'is_past': False, 'title': 'Executive Vice President', 'person': {'first_name': 'Charlie', 'last_name': 'Nooney', 'permalink': 'charlie-nooney'}}, {'is_past': False, 'title': 'Senior Executive Vice President and Chief Financial Officer, The Walt Disney Company', 'person': {'first_name': 'Thomas', 'last_name': 'O. Staggs', 'permalink': 'thomas-o-staggs'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Communications, The Walt Disney Company', 'person': {'first_name': 'Zenia', 'last_name': 'Mucha', 'permalink': 'zenia-mucha'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Strategy, Business Development and Technology Group, The Walt Disney Company', 'person': {'first_name': 'Kevin', 'last_name': 'Mayer', 'permalink': 'kevin-mayer'}}, {'is_past': False, 'title': 'Senior Executive Vice President, General Counsel and Secretary, The Walt Disney Company', 'person': {'first_name': 'Alan', 'last_name': 'Braverman', 'permalink': 'alan-braverman-2'}}, {'is_past': False, 'title': 'Senior Vice President, Security, The Walt Disney Company', 'person': {'first_name': 'Ronald', 'last_name': 'L. Iden', 'permalink': 'ronald-l-iden'}}, {'is_past': False, 'title': 'Executive Vice President Government Relations, The Walt Disney Company', 'person': {'first_name': 'Preston', 'last_name': 'Padden', 'permalink': 'preston-padden'}}, {'is_past': False, 'title': 'President, ABC Owned Television Stations', 'person': {'first_name': 'Walter', 'last_name': 'C. Liss', 'permalink': 'walter-c-liss'}}, {'is_past': False, 'title': 'Co-Chair Disney Media Networks and President, Disney-ABC Television Group', 'person': {'first_name': 'Anne', 'last_name': 'Sweeney', 'permalink': 'anne-sweeney'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rich', 'last_name': 'Hull', 'permalink': 'rich-hull'}}, {'is_past': False, 'title': 'Online Producer', 'person': {'first_name': 'Sean', 'last_name': 'Spector', 'permalink': 'sean-spector'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Susan', 'last_name': 'Arnold', 'permalink': 'susan-arnold'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Judith', 'last_name': 'L. Estrin', 'permalink': 'judith-l-estrin'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Aylwin', 'last_name': 'B. Lewis', 'permalink': 'aylwin-b-lewis'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'W. Matschullat', 'permalink': 'robert-w-matschullat'}}, {'is_past': False, 'title': 'Senior Manager Commercial Marketing, Disneymedia+, UK & Ireland, EMEA', 'person': {'first_name': 'Lucy', 'last_name': 'Burton', 'permalink': 'lucy-burton'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Paula', 'last_name': 'Cutuli', 'permalink': 'paula-cutuli'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Real Estate, Sourcing, Alliances & Treasurer, Executive Vice President, Corporate Finance, Real Estate & Treasurer, Senior Vice President & Treasurer', 'person': {'first_name': 'Christine', 'last_name': 'M. McCarthy', 'permalink': 'christine-m-mccarthy'}}, {'is_past': False, 'title': 'Senior Vice President, Planning and Control, The Walt Disney Company', 'person': {'first_name': 'Brent', 'last_name': 'Woodford', 'permalink': 'brent-woodford'}}, {'is_past': False, 'title': 'Chairman, Walt Disney Parks and Resorts', 'person': {'first_name': 'Jay', 'last_name': 'Rasulo', 'permalink': 'jay-rasulo'}}, {'is_past': False, 'title': 'President, Walt Disney Internet Group', 'person': {'first_name': 'Steve', 'last_name': 'Wadsworth', 'permalink': 'steve-wadsworth'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Sheryl', 'last_name': 'Sandberg', 'permalink': 'sheryl-sandberg'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Andrea', 'last_name': 'Stanford', 'permalink': 'andrea-stanford'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'S. Chen', 'permalink': 'john-s-chen'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Fred', 'last_name': 'H. Langhammer', 'permalink': 'fred-h-langhammer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Monica', 'last_name': 'C. Lozano', 'permalink': 'monica-c-lozano'}}, {'is_past': False, 'title': 'Co-President, Disney Interactive', 'person': {'first_name': 'James', 'last_name': 'Pitaro', 'permalink': 'james-pitaro'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Karim', 'last_name': 'Chehade', 'permalink': 'karim-chehade'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Jack', 'last_name': 'Dorsey', 'permalink': 'jack-dorsey'}}, {'is_past': True, 'title': 'Senior Executive Vice President, Chief Strategic Officer, Senior Advisor to the Ceo, a Member of The Company’s Executive Management Committee', 'person': {'first_name': 'Peter', 'last_name': 'E. Murphy', 'permalink': 'peter-e-murphy'}}, {'is_past': True, 'title': 'Chairman of the company’s Global Theme Park and Resorts Division', 'person': {'first_name': 'Paul', 'last_name': 'Pressler', 'permalink': 'paul-pressler-2'}}, {'is_past': True, 'title': 'Chairman Disney Internet Group', 'person': {'first_name': 'Jake', 'last_name': 'Winebaum', 'permalink': 'jake-winebaum'}}, {'is_past': True, 'title': 'Chairman, The Walt Disney Studios', 'person': {'first_name': 'Richard', 'last_name': 'Cook', 'permalink': 'richard-cook'}}, {'is_past': True, 'title': 'CIO', 'person': {'first_name': 'Tony', 'last_name': 'Scott', 'permalink': 'tony-scott'}}, {'is_past': True, 'title': 'Vice President, Egineering and Chief Scientist', 'person': {'first_name': 'Edmond', 'last_name': 'Mesrobian', 'permalink': 'edmond-mesrobian'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Eisner', 'permalink': 'michael-eisner'}}, {'is_past': True, 'title': 'Executive Vice President for Engineering, Manufacturing, and Program Management', 'person': {'first_name': 'Gilbert', 'last_name': 'F. Decker', 'permalink': 'gilbert-f-decker'}}, {'is_past': True, 'title': 'Vice President, Disney Research', 'person': {'first_name': 'Tom', 'last_name': 'Ngo', 'permalink': 'tom-ngo'}}, {'is_past': True, 'title': 'SVP, Human Resources, Disney Consumer Products', 'person': {'first_name': 'Eva', 'last_name': 'Sage-Gavin', 'permalink': 'eva-sage-gavin'}}, {'is_past': True, 'title': 'President, ABC Entertainment, EVP, ABC Entertainment, Movies and Miniseries, EVP, Development and New Business', 'person': {'first_name': 'Susan', 'last_name': 'Lyne', 'permalink': 'susan-lyne'}}, {'is_past': True, 'title': 'Senior Vice President, Brand Franchise and Customer Relationship Management', 'person': {'first_name': 'Matthew', 'last_name': 'Ryan', 'permalink': 'matthew-ryan'}}, {'is_past': True, 'title': 'VP, Corporate Strategic Planning', 'person': {'first_name': 'Edward', 'last_name': 'Lenk', 'permalink': 'edward-lenk'}}, {'is_past': True, 'title': 'SVP, Corporate Strategic Planning', 'person': {'first_name': 'Eric', 'last_name': 'W. Muhlheim', 'permalink': 'eric-w-muhlheim'}}, {'is_past': True, 'title': 'Senior Vice President & General Manager', 'person': {'first_name': 'Bernard', 'last_name': 'Gershon', 'permalink': 'bernard-gershon'}}, {'is_past': True, 'title': 'VP Operations - Disney Interactive', 'person': {'first_name': 'Chris', 'last_name': 'Cunningham', 'permalink': 'chris-cunningham'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Brian', 'last_name': 'McAndrews', 'permalink': 'brian-mcandrews'}}, {'is_past': True, 'title': 'SVP of Corporate Communications', 'person': {'first_name': 'Jonathan', 'last_name': 'Friedland', 'permalink': 'jonathan-friedland'}}, {'is_past': True, 'title': 'Vice President & General Manager, ABCNews.com', 'person': {'first_name': 'Jonathan', 'last_name': 'Dube', 'permalink': 'jonathan-dube'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Keyvan', 'last_name': 'Peymani', 'permalink': 'keyvan-peymani'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Gideon', 'last_name': 'Yu', 'permalink': 'gideon-yu'}}, {'is_past': True, 'title': 'Director, Enterprise IT', 'person': {'first_name': 'Alejandro', 'last_name': 'Mainetto', 'permalink': 'alejandro-mainetto'}}, {'is_past': True, 'title': 'Entrepreneur in Residence', 'person': {'first_name': 'Roberto', 'last_name': 'Aiello', 'permalink': 'roberto-aiello'}}, {'is_past': True, 'title': 'President, ABC Entertainment', 'person': {'first_name': 'Susan', 'last_name': 'Lyne', 'permalink': 'susan-lyne'}}, {'is_past': True, 'title': 'Multimedia Producer', 'person': {'first_name': 'Matthew', 'last_name': 'Gallagher', 'permalink': 'matthew-gallagher'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Toby', 'last_name': 'Northcote-Smith', 'permalink': 'toby-northcote-smith'}}, {'is_past': True, 'title': 'VP of Strategic Communications, Radio Disney', 'person': {'first_name': 'Jonathan', 'last_name': 'Friedland', 'permalink': 'jonathan-friedland'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Ali', 'last_name': 'Pincus', 'permalink': 'ali-pincus'}}, {'is_past': True, 'title': 'Country Manager France - The Disney Store', 'person': {'first_name': 'Bernard', 'last_name': 'Louvat', 'permalink': 'bernard-louvat'}}, {'is_past': True, 'title': 'National Publicity Associate - Major Motion Pictures', 'person': {'first_name': 'Emily', 'last_name': 'Eldridge', 'permalink': 'emily-eldridge'}}, {'is_past': True, 'title': 'Senior Analyst, Strategic Planning Department', 'person': {'first_name': 'Galyn', 'last_name': 'Bernard', 'permalink': 'galyn-bernard'}}, {'is_past': True, 'title': 'Business Development and Digital Strategy Consultant', 'person': {'first_name': 'Christina', 'last_name': 'DiLaura', 'permalink': 'christina-dilaura'}}, {'is_past': True, 'title': 'Director, Public Relations', 'person': {'first_name': 'Michelle', 'last_name': 'Cox', 'permalink': 'michelle-cox'}}, {'is_past': True, 'title': 'Treasury Analyst', 'person': {'first_name': 'Adriel', 'last_name': 'Lares', 'permalink': 'adriel-lares'}}, {'is_past': True, 'title': 'Senior Analyst Strategic Planning & Development', 'person': {'first_name': 'Michael', 'last_name': 'Dearing', 'permalink': 'michael-dearing'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Daizo', 'last_name': 'Nishitani', 'permalink': 'daizo-nishitani'}}, {'is_past': True, 'title': 'Director, Business Planning and Finance', 'person': {'first_name': 'Jonathan', 'last_name': 'Spira', 'permalink': 'jonathan-spira'}}, {'is_past': True, 'title': 'Market Development Supervisor', 'person': {'first_name': 'Marc', 'last_name': 'Wolfe', 'permalink': 'marc-wolfe'}}, {'is_past': True, 'title': 'Marketing Associate', 'person': {'first_name': 'Rodrigo', 'last_name': 'Santibanez', 'permalink': 'rodrigo-santibanez'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Eugene', 'last_name': 'Youn', 'permalink': 'eugene-youn'}}, {'is_past': True, 'title': 'Trade Marketing Manager - Walt Disney Records', 'person': {'first_name': 'Jeanne', 'last_name': 'Dyer', 'permalink': 'jeanne-dyer'}}, {'is_past': True, 'title': 'Lead Developer (Consulting)', 'person': {'first_name': 'femi', 'last_name': 'fashakin', 'permalink': 'femi-fashakin'}}, {'is_past': True, 'title': 'Manager, Business Development', 'person': {'first_name': 'Carolyn', 'last_name': 'Everson', 'permalink': 'carolyn-everson'}}, {'is_past': True, 'title': 'vice president and treasurer', 'person': {'first_name': 'Michael', 'last_name': 'Montgomery', 'permalink': 'michael-montgomery'}}, {'is_past': True, 'title': 'Executive Director, International Licensing (Saban International / Fox Family Worldwide)', 'person': {'first_name': 'Eric', 'last_name': 'Karp', 'permalink': 'eric-karp'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Alex', 'last_name': 'Hoye', 'permalink': 'alex-hoye'}}, {'is_past': True, 'title': 'Undergraduate Associate / Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Kaminski', 'permalink': 'alex-kaminski'}}, {'is_past': True, 'title': 'President, Walt Disney Television', 'person': {'first_name': 'David', 'last_name': 'Neuman', 'permalink': 'david-neuman'}}, {'is_past': True, 'title': 'Managing Director (Digital)', 'person': {'first_name': 'Samir', 'last_name': 'Bangara', 'permalink': 'samir-bangara'}}, {'is_past': True, 'title': 'Executive Director, Distribution Strategy - Disney/ABC Cable Networks', 'person': {'first_name': 'John', 'last_name': 'Gentry', 'permalink': 'john-gentry-2'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mary', 'last_name': 'Rafferty', 'permalink': 'mary-rafferty'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'Chere', 'last_name': 'Heintzmann', 'permalink': 'chere-heintzmann'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Erick', 'last_name': 'Miller', 'permalink': 'erick-miller'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Christin', 'permalink': 'michael-christin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rachel', 'last_name': 'Glaser', 'permalink': 'rachel-glaser'}}, {'is_past': True, 'title': 'Brand Manager', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Juan', 'last_name': 'Fernandez', 'permalink': 'juan-fernandez-2'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Andrew', 'last_name': 'Shin', 'permalink': 'andrew-shin'}}, {'is_past': True, 'title': 'Strategy, Consumer Products', 'person': {'first_name': 'Lori', 'last_name': 'Goler', 'permalink': 'lori-goler'}}, {'is_past': True, 'title': 'Screenwriter', 'person': {'first_name': 'Richard', 'last_name': 'Janes', 'permalink': 'richard-janes'}}, {'is_past': True, 'title': 'Manager - Technology', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Director, Business Development and Marketing', 'person': {'first_name': 'Mitch', 'last_name': 'Feinman', 'permalink': 'mitch-feinman'}}, {'is_past': True, 'title': 'President E-Commerce, Disney Internet Group', 'person': {'first_name': 'Chuck', 'last_name': 'Davis', 'permalink': 'chuck-davis'}}, {'is_past': True, 'title': 'Sr Project Manager', 'person': {'first_name': 'Keff', 'last_name': 'Ratcliffe', 'permalink': 'keff-ratcliffe'}}, {'is_past': True, 'title': 'Executive Level Positions', 'person': {'first_name': 'Meg', 'last_name': 'Whitman', 'permalink': 'meg-whitman'}}, {'is_past': True, 'title': 'Director, Finance - Disney Publishing Worldwide', 'person': {'first_name': 'Adrienne', 'last_name': 'Vaughan', 'permalink': 'adrienne-vaughan'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'Chris', 'last_name': 'Castro', 'permalink': 'chris-castro'}}, {'is_past': True, 'title': 'Director of Corporate Development and Strategic Planning.', 'person': {'first_name': 'David', 'last_name': 'Maisel', 'permalink': 'david-maisel'}}, {'is_past': True, 'title': 'Senior Analyst, Corporate Strategic Planning', 'person': {'first_name': 'Qasim', 'last_name': 'Saifee', 'permalink': 'qasim-saifee'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director Corporate Controllership', 'person': {'first_name': 'Scott', 'last_name': 'Southron', 'permalink': 'scott-southron'}}, {'is_past': True, 'title': 'Senior Financial & Marketing Analyst', 'person': {'first_name': 'Jennifer', 'last_name': 'Lee', 'permalink': 'jennifer-lee'}}, {'is_past': True, 'title': 'Software Engineer, Walt Disney Feature Animation', 'person': {'first_name': 'Michael', 'last_name': 'Deerkoski', 'permalink': 'michael-deerkoski'}}, {'is_past': True, 'title': 'Strategic Planning Senior Analyst', 'person': {'first_name': 'David', 'last_name': 'Travers', 'permalink': 'david-travers'}}, {'is_past': True, 'title': 'Worldwide Business Development Manager', 'person': {'first_name': 'Roy', 'last_name': 'Malkin', 'permalink': 'roy-malkin'}}, {'is_past': True, 'title': 'Business Planning Analyst Intern', 'person': {'first_name': 'Eric', 'last_name': 'H C Pang', 'permalink': 'eric-h-c-pang'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Scott', 'last_name': 'Walters', 'permalink': 'scott-walters-3'}}, {'is_past': True, 'title': 'Intern & Consultant', 'person': {'first_name': 'Michelle', 'last_name': 'Crames', 'permalink': 'michelle-crames'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Turetzky', 'permalink': 'matt-turetzky'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Andy', 'last_name': 'Kleinman', 'permalink': 'andy-kleinman'}}, {'is_past': True, 'title': 'Finance Manager', 'person': {'first_name': 'Jake', 'last_name': 'Odden', 'permalink': 'jake-odden'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Lisa', 'last_name': 'Bridgett', 'permalink': 'lisa-bridgett'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Steve', 'last_name': 'Tomlin', 'permalink': 'steve-tomlin'}}, {'is_past': True, 'title': 'Corporate Executive', 'person': {'first_name': 'David', 'last_name': 'Billstrom', 'permalink': 'david-billstrom'}}, {'is_past': True, 'title': 'Animator', 'person': {'first_name': 'Irina', 'last_name': 'Golina', 'permalink': 'irina-golina'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Domenico', 'last_name': 'D’Avirro', 'permalink': 'domenico-davirro'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'Aldo', 'last_name': 'Manzini', 'permalink': 'aldo-manzini'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2009/04/30/disney-buys-into-hulu-youtube-should-be-worried/', 'source_description': 'TechCrunch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 30, 'company': {'name': 'hulu', 'permalink': 'hulu'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://online.wsj.com/article/SB118599768804085026.html', 'source_description': \" Disney Buys Kids' Social-Network Site \", 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': None, 'company': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/8301-13577_3-9967176-36.html', 'source_description': 'cnet.com', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 12, 'company': {'name': 'Ideal Bite', 'permalink': 'ideal-bite'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/02/19/disney-acquires-kerpoofs-kid-friendly-creative-suite/', 'source_description': 'Disney Acquires Kerpoof’s Kid-Friendly Creative Suite', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 19, 'company': {'name': 'Kerpoof', 'permalink': 'kerpoof'}}, {'price_amount': 18400000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2009/04/01/disney-online-buys-kaboose-assets-for-184-million/', 'source_description': 'Disney Online Buys Kaboose Assets For $18.4 Million, Barclays Private Equity Limited Acquires Its UK Operations', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Kaboose', 'permalink': 'kaboose'}}, {'price_amount': 4000000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2009/08/31/breaking-disney-to-acquire-marvel-entertainment-for-4-billion/', 'source_description': 'Disney To Acquire Marvel Entertainment For $4 Billion', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'Marvel Entertainment', 'permalink': 'marvel-entertainment'}}, {'price_amount': 7400000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.pixar.com/companyinfo/about_us/overview.htm', 'source_description': 'Pixar About Page', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'Pixar', 'permalink': 'pixar'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/01/tapulous-acquired-by-disney/', 'source_description': 'Breaking: Tapulous Acquired By Disney', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Tapulous', 'permalink': 'tapulous'}}, {'price_amount': 763200000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/27/playdom-acquired-by-disney-for-up-to-763-2-million/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 27, 'company': {'name': 'Playdom', 'permalink': 'playdom'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.highbeam.com/doc/1G1-17110099.html', 'source_description': 'Walt Disney Co. buys Capital Cities ABC', 'acquired_year': 1995, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'Capital Cities ABC', 'permalink': 'capital-cities-abc'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.newbusinessnews.com/story/10240101.html', 'source_description': 'Walt Disney Company Buys Fox Family Worldwide, Inc.', 'acquired_year': 2001, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Fox Family Worldwide', 'permalink': 'fox-family-worldwide'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://eu.techcrunch.com/2011/03/03/disney-acquires-gaming-engine-startup-to-build-html5-games-outside-of-app-stores/', 'source_description': 'Disney acquires gaming engine startup to build HTML5 games outside of App stores', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 3, 'company': {'name': 'Rocket Pack', 'permalink': 'rocket-pack'}}, {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/disney-spends-40-million-to-reach-hipster-parents-2011-11', 'source_description': 'Disney Buys Babble For ~$40 Million To Reach Hipster Parents', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 14, 'company': {'name': 'Babble', 'permalink': 'babble'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1998, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Infoseek Inc.', 'permalink': 'infoseek-inc'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1996, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Jumbo Pictures', 'permalink': 'jumbo-pictures'}}], 'offices': [{'description': None, 'address1': '500 S. Buena Vista St.', 'address2': '', 'zip_code': '91521', 'city': 'Burbank', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.156802, 'longitude': -118.324987}], 'milestones': [{'id': 6970, 'description': 'Disney About To Acquire Playdom', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 22, 'source_url': 'http://techcrunch.com/2010/07/22/disney-acquire-playdom/', 'source_text': '', 'source_description': 'Disney About To Acquire Playdom', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'The Walt Disney Company', 'permalink': 'the-walt-disney-company'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1969, 'pub_month': 6, 'pub_day': 9, 'stock_symbol': 'NYSE:DIS'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 92], 'assets/images/resized/0004/3617/43617v1-max-150x150.png'], [[250, 154], 'assets/images/resized/0004/3617/43617v1-max-250x250.png'], [[450, 277], 'assets/images/resized/0004/3617/43617v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://jobs.disney.corp.go.com/', 'title': 'Corporate Jobs at The Walt Disney Company'}, {'external_url': 'http://careers.disneyparks.jobs/', 'title': 'Hospitality Jobs'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e91'), 'name': 'WebbAlert', 'permalink': 'webbalert', 'crunchbase_url': 'http://www.crunchbase.com/company/webbalert', 'homepage_url': 'http://www.webbalert.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2009, 'deadpooled_month': 1, 'deadpooled_day': 25, 'deadpooled_url': 'http://www.techcrunch.com/2009/01/26/webbalert-is-no-more/', 'tag_list': 'webbalert, blog, video, vlog, technology, gaming, news, bebospy-com', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Aug 03 04:51:02 UTC 2007', 'updated_at': 'Mon Jan 26 13:46:51 UTC 2009', 'overview': '

WebbAlert is a daily (Monday - Thursday) video news show hosted by X-Play’s Morgan Webb. Launched in August of 2007, the site’s focus is on major breaking technology and gaming news of the day. Like Rocketboom, each show is no more than 5 minutes long, for easy consumption.

\\n\\n

This is mostly a one-woman show. Webb writes, creates and produces the content, even doing her own camera work. She works out of her at-home studio. Her husband Rob Reid (founder of Listen.com, exec at Rhapsody) is co-founder and handles the business side of things.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/3976/3976v1-max-150x150.png'], [[200, 89], 'assets/images/resized/0000/3976/3976v1-max-250x250.png'], [[200, 89], 'assets/images/resized/0000/3976/3976v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'WebbAlert', 'permalink': 'webbalert'}], 'relationships': [{'is_past': None, 'title': 'Co-Founder, Host & Producer', 'person': {'first_name': 'Morgan', 'last_name': 'Webb', 'permalink': 'morgan-webb'}}, {'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Rob', 'last_name': 'Reid', 'permalink': 'rob-reid'}}], 'competitions': [{'competitor': {'name': 'WallStrip', 'permalink': 'wallstrip'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Los Angeles', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.052187, 'longitude': -118.243425}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e92'), 'name': 'Rocketboom', 'permalink': 'rocketboom', 'crunchbase_url': 'http://www.crunchbase.com/company/rocketboom', 'homepage_url': 'http://rocketboom.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Rocketboom', 'category_code': 'news', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'hi@rocketboom.com', 'phone_number': '', 'description': '', 'created_at': 'Fri Aug 03 05:28:02 UTC 2007', 'updated_at': 'Thu Apr 04 03:29:13 UTC 2013', 'overview': '

Rocketboom is one of the most popular video blogs on the web today. Every Monday through Friday in the morning, Rocketboom releases a new episode. The low-cost operation, which requires only a video camera, a Mac pro, three lights and a map with very little additional overhead or costs. Topics of Rocketboom videos typically cover top news stories of the day, international arts and business, technology news, and a quirky section of internet culture and weblog drama. Rocketboom uses RSS feeds to provide the segments on-demand and easily available to viewers. Sticking to their low cost high output plan, Rocketboom spends $0 on promotion, relying solely on word-of-mouth. Rocketboom is based in New York, New York.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0000/3979/3979v1-max-150x150.jpg'], [[250, 63], 'assets/images/resized/0000/3979/3979v1-max-250x250.jpg'], [[327, 83], 'assets/images/resized/0000/3979/3979v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Rocketboom', 'permalink': 'rocketboom'}], 'relationships': [{'is_past': False, 'title': 'Creator, Producer', 'person': {'first_name': 'Andrew', 'last_name': 'Baron', 'permalink': 'andrew-baron'}}, {'is_past': True, 'title': 'Host', 'person': {'first_name': 'Amanda', 'last_name': 'Congdon', 'permalink': 'amanda-congdon'}}, {'is_past': True, 'title': 'Internet Scientist', 'person': {'first_name': 'Jamie', 'last_name': 'Wilkinson', 'permalink': 'jamie-wilkinson'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Joshua', 'last_name': 'Kinberg', 'permalink': 'joshua-kinberg'}}, {'is_past': True, 'title': 'Host', 'person': {'first_name': 'Joanne', 'last_name': 'Colan', 'permalink': 'joanne-colan'}}, {'is_past': True, 'title': 'Director of Research & Development', 'person': {'first_name': 'Greg', 'last_name': 'Leuch', 'permalink': 'greg-leuch'}}], 'competitions': [{'competitor': {'name': 'WallStrip', 'permalink': 'wallstrip'}}], 'providerships': [], 'total_money_raised': '$1.5M', 'funding_rounds': [{'id': 20943, 'round_code': 'seed', 'source_url': 'http://dembot.com/post/2735076710/rocketboom-update', 'source_description': 'Rocketboom', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Andrew', 'last_name': 'Baron', 'permalink': 'andrew-baron'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'PO Box 804', 'address2': 'Planetarium Station', 'zip_code': '10024', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.797364, 'longitude': -73.97785}], 'milestones': [{'id': 13753, 'description': 'Sold Know Your Meme.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 22, 'source_url': 'http://www.techmeme.com/110328/p41#a110328p41', 'source_text': None, 'source_description': 'Know Your Meme Acquired By Cheezburger in Seven-Figure Deal', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rocketboom', 'permalink': 'rocketboom'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://dembot.com/post/66244565/rocketboom-and-lisa-nova-join-forces', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e93'), 'name': 'WallStrip', 'permalink': 'wallstrip', 'crunchbase_url': 'http://www.crunchbase.com/company/wallstrip', 'homepage_url': 'http://wallstrip.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'videoblog, financialnews', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Aug 03 05:34:16 UTC 2007', 'updated_at': 'Mon Aug 24 21:02:26 UTC 2009', 'overview': '

A financial news video blog hosted by perky actress Lindsay Campbell, Wallstrip went strong for 8 months or so before being acquired by media giant CBS. Taking a non-traditional approach to the news, Campbell tells stories and inserts humor whenever possible. In ways similar ways to John Stewart’s Daily Show, Wallstrip appeals to an audience of knowledgeable viewers who would like to be entertained. Competitors include other video blogs such as RocketBoom, WebbAlert and TeXtra.

', 'image': {'available_sizes': [[[150, 42], 'assets/images/resized/0000/3982/3982v1-max-150x150.png'], [[200, 57], 'assets/images/resized/0000/3982/3982v1-max-250x250.png'], [[200, 57], 'assets/images/resized/0000/3982/3982v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wallstrip', 'permalink': 'wallstrip'}], 'relationships': [{'is_past': False, 'title': 'Creator', 'person': {'first_name': 'Howard', 'last_name': 'Lindzon', 'permalink': 'howard-lindzon'}}, {'is_past': None, 'title': 'Producer', 'person': {'first_name': 'Jeff', 'last_name': 'Marks', 'permalink': 'jeff-marks'}}, {'is_past': False, 'title': 'Investor, Board Member', 'person': {'first_name': 'Roger', 'last_name': 'Ehrenberg', 'permalink': 'roger-ehrenberg'}}, {'is_past': False, 'title': 'Producer', 'person': {'first_name': 'Adam', 'last_name': 'Elend', 'permalink': 'adam-elend'}}, {'is_past': None, 'title': 'Host', 'person': {'first_name': 'Lindsay', 'last_name': 'Campbell', 'permalink': 'lindsay-campbell'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Michael', 'last_name': 'Seneadza', 'permalink': 'michael-seneadza'}}, {'is_past': True, 'title': 'Producer, Shooter, Editor', 'person': {'first_name': 'Jon', 'last_name': 'Labes', 'permalink': 'jon-labes'}}], 'competitions': [{'competitor': {'name': 'WebbAlert', 'permalink': 'webbalert'}}, {'competitor': {'name': 'Rocketboom', 'permalink': 'rocketboom'}}], 'providerships': [], 'total_money_raised': '$600k', 'funding_rounds': [{'id': 296, 'round_code': 'angel', 'source_url': 'http://newteevee.com/2007/05/21/cbs-does-indeed-scoop-up-wallstrip/', 'source_description': '', 'raised_amount': 600000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Fred', 'last_name': 'Wilson', 'permalink': 'fred-wilson'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Brad', 'last_name': 'Feld', 'permalink': 'brad-feld'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Roger', 'last_name': 'Ehrenberg', 'permalink': 'roger-ehrenberg'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Stewart', 'permalink': 'jeff-stewart'}}]}], 'investments': [], 'acquisition': {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/05/13/cbs-acquires-wallstrip-for-5-million/', 'source_description': 'CBS Acquires WallStrip for $5 million', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 1, 'acquiring_company': {'name': 'CBS', 'permalink': 'cbs'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e95'), 'name': 'IAC', 'permalink': 'iac', 'crunchbase_url': 'http://www.crunchbase.com/company/iac', 'homepage_url': 'http://www.iac.com', 'blog_url': 'http://iac.com/about/blog/', 'blog_feed_url': '', 'twitter_username': 'iac', 'category_code': 'news', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'conglomerate, ask, match-com', 'alias_list': '', 'email_address': 'info@iac.com', 'phone_number': '', 'description': 'media conglomerate', 'created_at': 'Fri Aug 03 06:08:44 UTC 2007', 'updated_at': 'Mon Aug 05 17:09:10 UTC 2013', 'overview': '

IAC is a media conglomerate with a wide range of online assets. In November 2007, announced they would be separating IAC into 5 public companies. IAC will consist of: Ask.com, Bloglines, CitySearch, Evite, Excite, InsiderPages, iWon, My Fun Cards, My Way, Popular Screensaver, Smiley Central, Match.com, chemistry.com, ServiceMagic, Shoebuy.com, BustedTees, CollegeHumor, Garage Games, Gifts.com, Green.com, Instant Action, Very Short List, Vimeo, 23/6. IAC is also an investor in Active.com, Brightcove, FiLife, Medem, Merchant Circle, OpenTable, Points.com and SHOP channel.

\\n\\n

The 5 spun off companies were Home Shopping Network, Ticketmaster, Interval International, LendingTree and expedia.com.

\\n\\n

IAC’s notable acquisitions included:

\\n\\n', 'image': {'available_sizes': [[[150, 65], 'assets/images/resized/0000/4000/4000v1-max-150x150.png'], [[150, 65], 'assets/images/resized/0000/4000/4000v1-max-250x250.png'], [[150, 65], 'assets/images/resized/0000/4000/4000v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'gifts.com', 'permalink': 'gifts-com'}], 'relationships': [{'is_past': False, 'title': 'CEO HomeAdvisor.com', 'person': {'first_name': 'Chirs', 'last_name': 'Terill', 'permalink': 'chirs-terill'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Joey', 'last_name': 'Levin', 'permalink': 'joey-levin'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jeff', 'last_name': 'Kip', 'permalink': 'jeff-kip'}}, {'is_past': False, 'title': 'Chairman & Senior Executive', 'person': {'first_name': 'Barry', 'last_name': 'Diller', 'permalink': 'barry-diller'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Daniel', 'last_name': 'Fossner', 'permalink': 'daniel-fossner'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Sam', 'last_name': 'Yagan', 'permalink': 'sam-yagan'}}, {'is_past': False, 'title': 'Chief Strategy Officer, IAC Search', 'person': {'first_name': 'Mark', 'last_name': 'Stein', 'permalink': 'mark-stein'}}, {'is_past': False, 'title': 'Chief Information Officer', 'person': {'first_name': 'Vincent', 'last_name': 'Luciani', 'permalink': 'vincent-luciani'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Greg', 'last_name': 'Blatt', 'permalink': 'greg-blatt'}}, {'is_past': False, 'title': 'Group VP, Head of Mobile', 'person': {'first_name': 'Dinesh', 'last_name': 'Moorjani', 'permalink': 'dinesh-moorjani'}}, {'is_past': False, 'title': 'Senior Vice President, Business Development', 'person': {'first_name': 'Andrew', 'last_name': 'Moers', 'permalink': 'andrew-moers'}}, {'is_past': False, 'title': 'Senior Vice President, Investor Relations and Treasurer', 'person': {'first_name': 'Nick', 'last_name': 'Stoumpas', 'permalink': 'nick-stoumpas'}}, {'is_past': False, 'title': 'Senior Vice President and Controller', 'person': {'first_name': 'Michael', 'last_name': 'Schwerdtman', 'permalink': 'michael-schwerdtman'}}, {'is_past': False, 'title': 'SVP & General Counsel', 'person': {'first_name': 'Gregg', 'last_name': 'winiarski', 'permalink': 'gregg-winiarski'}}, {'is_past': False, 'title': 'Vice President, Sales', 'person': {'first_name': 'Shannon', 'last_name': 'Rock', 'permalink': 'shannon-rock'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Rosenblatt', 'permalink': 'david-rosenblatt'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Stephanie J.', 'last_name': 'Neill', 'permalink': 'stephannie-neill'}}, {'is_past': False, 'title': 'Advertising Sales Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Haugen', 'permalink': 'matthew-haugen'}}, {'is_past': False, 'title': 'Senior Vice President and Deputy General Counsel', 'person': {'first_name': 'Joanne', 'last_name': 'Hawkins', 'permalink': 'joane-hawkins'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Administrative Officer', 'person': {'first_name': 'Jason', 'last_name': 'Stewart', 'permalink': 'jason-stewart-3'}}, {'is_past': False, 'title': 'Business Intelligence Director', 'person': {'first_name': 'Mandy', 'last_name': 'Ginsberg', 'permalink': 'mandy-ginsberg'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Doug', 'last_name': 'Leeds', 'permalink': 'doug-leeds'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Andy', 'last_name': 'Smith', 'permalink': 'andy-smith-4'}}, {'is_past': False, 'title': 'President, Match North America', 'person': {'first_name': 'Amarnath', 'last_name': 'Thombre', 'permalink': 'amarnath-thombre'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ricky', 'last_name': 'Van Veen', 'permalink': 'ricky-van-veen'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Chelsea', 'last_name': 'Clinton', 'permalink': 'chelsea-clinton'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Donald', 'last_name': 'Keough', 'permalink': 'donald-keough'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Arthur', 'last_name': 'Martinez', 'permalink': 'arthur-martinez-2'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Richard', 'last_name': 'Zannio', 'permalink': 'richard-zannio'}}, {'is_past': False, 'title': 'Operating Business', 'person': {'first_name': 'Eric', 'last_name': 'Esterlis', 'permalink': 'eric-esterlis'}}, {'is_past': False, 'title': 'Business Management', 'person': {'first_name': 'Chris', 'last_name': 'Terrill', 'permalink': 'chris-terrill'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Richard', 'last_name': 'F. Zannino', 'permalink': 'richard-f-zannino'}}, {'is_past': False, 'title': 'Director, Business Development', 'person': {'first_name': 'Jamal', 'last_name': 'Hamou', 'permalink': 'jamal-hamou'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Alan', 'last_name': 'Spoon', 'permalink': 'alan-spoon'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Michael', 'last_name': 'Eisner', 'permalink': 'michael-eisner'}}, {'is_past': False, 'title': 'Managing Director of Mergers & Acquisitions', 'person': {'first_name': 'Rich', 'last_name': 'Nelson', 'permalink': 'rich-nelson'}}, {'is_past': False, 'title': 'Asociate', 'person': {'first_name': 'Tina', 'last_name': 'Brown', 'permalink': 'tina-brown-2'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Paul', 'last_name': 'Greenberg', 'permalink': 'paul-greenberg'}}, {'is_past': False, 'title': 'Business Intelligence Director', 'person': {'first_name': 'Ben', 'last_name': 'Silverman', 'permalink': 'ben-silverman'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Mike', 'last_name': 'Sorabella', 'permalink': 'mike-sorabella'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Kerry', 'last_name': 'Trainor', 'permalink': 'kerry-trainor'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Edgar', 'last_name': 'Bronfman, Jr', 'permalink': 'edgar-bronfman-jr'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Alexander', 'last_name': 'Von Furstenberg', 'permalink': 'alexander-von-furstenberg'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Bryan', 'last_name': 'Lourd', 'permalink': 'bryan-leough'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Sonali', 'last_name': 'De Rycker', 'permalink': 'sonali-de-rycker'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Victor', 'last_name': 'Kaufman', 'permalink': 'victor-kaufman'}}, {'is_past': False, 'title': 'Corporate Development', 'person': {'first_name': 'Bryan', 'last_name': 'Ciambella', 'permalink': 'bryan-ciambella'}}, {'is_past': False, 'title': 'Business Management', 'person': {'first_name': 'Michele', 'last_name': 'Turner', 'permalink': 'michele-turner'}}, {'is_past': True, 'title': 'Chairman / CEO', 'person': {'first_name': 'Barry', 'last_name': 'Diller', 'permalink': 'barry-diller'}}, {'is_past': True, 'title': 'CEO, IAC Media and Advertising', 'person': {'first_name': 'Peter', 'last_name': 'Horan', 'permalink': 'peter-horan'}}, {'is_past': True, 'title': 'CEO Entertainment Publications', 'person': {'first_name': 'Alan', 'last_name': 'Bittker', 'permalink': 'alan-bittker'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jason', 'last_name': 'Rapp', 'permalink': 'jason-rapp'}}, {'is_past': True, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Dara', 'last_name': 'Khosrowshahi', 'permalink': 'dara-khosrowshahi'}}, {'is_past': True, 'title': 'EVP & CFO', 'person': {'first_name': 'Thomas', 'last_name': 'McInerney', 'permalink': 'thomas-mcinerney'}}, {'is_past': True, 'title': 'Chief Business Officer', 'person': {'first_name': 'Julius', 'last_name': 'Genachowski', 'permalink': 'julius-genachowski'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Scott', 'last_name': 'Mitchell', 'permalink': 'scott-mitchell'}}, {'is_past': True, 'title': 'SVP, Product & Marketing', 'person': {'first_name': 'Tim', 'last_name': 'Allen', 'permalink': 'tim-allen'}}, {'is_past': True, 'title': 'VP, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Primiani', 'permalink': 'michael-primiani'}}, {'is_past': True, 'title': 'Senior Vice President, Mergers and Acquisitions', 'person': {'first_name': 'Jason', 'last_name': 'Rapp', 'permalink': 'jason-rapp'}}, {'is_past': True, 'title': 'VP, Finance & Systems', 'person': {'first_name': 'Dan', 'last_name': 'Rowley', 'permalink': 'dan-rowley'}}, {'is_past': True, 'title': 'SVP of IT and Ops', 'person': {'first_name': 'Dayne', 'last_name': 'Sampson', 'permalink': 'dayne-sampson'}}, {'is_past': True, 'title': 'Senior Vice President, Corporate and Interactive Development', 'person': {'first_name': 'Dan', 'last_name': 'Marriott', 'permalink': 'dan-marriott'}}, {'is_past': True, 'title': 'VP M&A', 'person': {'first_name': 'Kara', 'last_name': 'Nortman', 'permalink': 'kara-nortman'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Justin', 'last_name': 'Squezello', 'permalink': 'justin-squezello'}}, {'is_past': True, 'title': 'Assistant to the SVP of Strategy and M&A', 'person': {'first_name': 'Dan', 'last_name': 'Martin', 'permalink': 'dan-martin-2'}}, {'is_past': True, 'title': 'Senior Vice President, M&A and Strategy', 'person': {'first_name': 'Shana', 'last_name': 'Fisher', 'permalink': 'shana-fisher'}}, {'is_past': True, 'title': 'Sr. Director of Sales, Western Region', 'person': {'first_name': 'Jim', 'last_name': 'Benton', 'permalink': 'jim-benton'}}, {'is_past': True, 'title': 'Director, Programming & Development Groups', 'person': {'first_name': 'Jonathan', 'last_name': 'Marcus', 'permalink': 'jonathan-marcus'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Annelise', 'last_name': 'Pruitt', 'permalink': 'annelise-pruitt'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Megu', 'last_name': 'Kobayashi', 'permalink': 'megu-kobayashi'}}, {'is_past': True, 'title': 'Director, Programming Group', 'person': {'first_name': 'Jonathan', 'last_name': 'Marcus', 'permalink': 'jonathan-marcus'}}, {'is_past': True, 'title': 'Software Engineering Manager', 'person': {'first_name': 'Benjamin', 'last_name': 'Trent', 'permalink': 'benjamin-trent'}}, {'is_past': True, 'title': 'Executive Vice President and General Counsel', 'person': {'first_name': 'Greg', 'last_name': 'Blatt', 'permalink': 'greg-blatt'}}, {'is_past': True, 'title': 'COO, Pronto Division', 'person': {'first_name': 'Matt', 'last_name': 'Feierstein', 'permalink': 'matt-feierstein'}}, {'is_past': True, 'title': 'Director of Sales & Operations', 'person': {'first_name': 'Ivonne', 'last_name': 'Marie Orillac', 'permalink': 'ivonne-marie-orillac'}}, {'is_past': True, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Elaine', 'last_name': 'Zhou', 'permalink': 'elaine-zhou'}}, {'is_past': True, 'title': 'Engineering Manager | Citysearch, Technology Implementation Manager | Citysearch, Operations Manager | Citysearch', 'person': {'first_name': 'Gregory', 'last_name': 'Boudewijn', 'permalink': 'gregory-boudewijn'}}, {'is_past': True, 'title': 'Director Central & Eastern Europe', 'person': {'first_name': 'Dimo', 'last_name': 'Velev', 'permalink': 'dimo-velev'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Michael', 'last_name': 'Calleia', 'permalink': 'michael-calleia'}}, {'is_past': True, 'title': 'Member', 'person': {'first_name': 'JEANNE', 'last_name': 'D. LEFEVRE', 'permalink': 'jeanne-d-lefevre'}}, {'is_past': True, 'title': 'VP, Business Development - TheDailyBeast.com', 'person': {'first_name': 'Brian', 'last_name': 'Dick', 'permalink': 'brian-dick'}}, {'is_past': True, 'title': 'Strategic Account Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Goldman', 'permalink': 'aaron-goldman'}}, {'is_past': True, 'title': 'Vice President, Programming', 'person': {'first_name': 'Mo', 'last_name': 'Koyfman', 'permalink': 'mo-koyfman'}}, {'is_past': True, 'title': 'Sr. Director, Strategy and M&A', 'person': {'first_name': 'Kai', 'last_name': 'Bond', 'permalink': 'kai-bond'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'David', 'last_name': 'Wolfe', 'permalink': 'david-wolfe'}}, {'is_past': True, 'title': 'Manager/Associate Director', 'person': {'first_name': 'Brian', 'last_name': 'Doxtator', 'permalink': 'brian-doxtator'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Alexis', 'last_name': 'Ferraro', 'permalink': 'alexis-ferraro'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'John', 'last_name': 'C. Malone', 'permalink': 'john-c-malone'}}, {'is_past': True, 'title': 'Deputy General Counsel and other senior executive roles', 'person': {'first_name': 'Deirdre', 'last_name': 'Stanley', 'permalink': 'deirdre-stanley'}}, {'is_past': True, 'title': 'Senior Vice President, Sales and Account Management', 'person': {'first_name': 'Jeff', 'last_name': 'Shioya', 'permalink': 'jeff-shioya'}}, {'is_past': True, 'title': 'VP & Assoc. General Counsel', 'person': {'first_name': 'Adam', 'last_name': 'Agensky', 'permalink': 'adam-agensky'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kevin', 'last_name': 'McFall', 'permalink': 'kevin-mcfall'}}, {'is_past': True, 'title': 'Designer & Illustrator', 'person': {'first_name': 'Hilli', 'last_name': 'Kushnir', 'permalink': 'hilli-kushnir'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2006/10/29/brightcove-launches-its-network-for-small-video-publishers/', 'source_description': '', 'raised_amount': 16200000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Brightcove', 'permalink': 'brightcove'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://publications.mediapost.com/index.cfm?fuseaction=Articles.showArticle&art_aid=46849', 'source_description': None, 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'CollegeHumor', 'permalink': 'collegehumor'}}}, {'funding_round': {'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'InstantAction', 'permalink': 'garagegames'}}}, {'funding_round': {'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'MerchantCircle', 'permalink': 'merchantcircle'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.paidcontent.org/entry/419-iac-buying-major-chunk-in-healthcentral-carlyle-sequoia-polaris-also-in/', 'source_description': 'IAC Buying Major Chunk In HealthCentral; Carlyle, Sequoia & Polaris Also Investing; Total $50M', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'HealthCentral', 'permalink': 'healthcentral'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2012/02/aereo-raises-20-5m-series-financing.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Aereo Raises $20.5M in Series A Financing', 'raised_amount': 20500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 2, 'funded_day': 14, 'company': {'name': 'Aereo', 'permalink': 'aereo'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.paidcontent.org/entry/brightcove-raises-another-595-million-in-thrd-round-nytco-among-new-investo/', 'source_description': 'Brightcove Raises Another $59.5 Million In Third Round; NYTCO Among New Investors', 'raised_amount': 59500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Brightcove', 'permalink': 'brightcove'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'Match', 'permalink': 'match'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.iac.com/index/news/press/IAC/press_release_detail.htm?id=7822', 'source_description': 'IAC Acquires Controlling Interest in Connected Ventures, LLC, Parent of Leading Comedy Site CollegeHumor.com', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Connected Ventures', 'permalink': 'connectedventures'}}, {'price_amount': 1850000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Ask.com', 'permalink': 'ask-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iac.com/index/overview/overview_history.html', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Ticketmaster', 'permalink': 'ticketmaster'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.paidcontent.org/entry/419-iac-acquires-girlsensecom-parent-starnet/', 'source_description': 'IAC Acquires GirlSense.com Parent StarNet; Targeting Tweens', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'StarNet Interactive', 'permalink': 'starnet-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://web2.commongate.com/tag/interactivecorp', 'source_description': 'CollegeHumor.com Sells Out - for at least $20 Million', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'CollegeHumor', 'permalink': 'collegehumor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=109&STORY=/www/story/07-22-2004/0002216555&EDATE=', 'source_description': 'http://www.facebook.com/CBSNewYork#!/pages/Dumpster-newark-nj-908-313-9888/177688148917858', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'HomeAdvisor', 'permalink': 'homeadvisor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/04/29/iac-buys-urbanspoon-based-on-good-recommendations/', 'source_description': 'IAC Buys UrbanSpoon Based On Good Recommendations', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 29, 'company': {'name': 'Urbanspoon', 'permalink': 'urbanspoon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2006, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'llike.com', 'permalink': 'llike-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thedatingassociation.org/match_acquires_companies.html', 'source_description': 'Match.com Acquires Leading Online Dating and Relationship Companies in France and China', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Edodo Interactive', 'permalink': 'edodo-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thedatingassociation.org/match_acquires_companies.html', 'source_description': 'Match.com Acquires Leading Online Dating and Relationship Companies in France and China', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'NetClub', 'permalink': 'netclub'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ticketnews.com/IAC-Buys-Into-Front-Line-Management51527', 'source_description': 'IAC/InterActiveCorp. Buys into Front Line Management', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 17, 'company': {'name': 'Frontline Management', 'permalink': 'frontline-management'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Emma Entertainment', 'permalink': 'emma-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/InterActiveCorp+Completes+Acquisition+of+Hotels.Com.-a0103980391', 'source_description': 'InterActiveCorp Completes Acquisition of Hotels.Com', 'acquired_year': 2003, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Hotels.com', 'permalink': 'hotels-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2003_August_8/ai_106445213/', 'source_description': 'IAC Completes Acquisition of Expedia, Inc', 'acquired_year': 2003, 'acquired_month': 8, 'acquired_day': 8, 'company': {'name': 'Expedia', 'permalink': 'expedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://iac.mediaroom.com/index.php?s=43&item=138', 'source_description': 'IAC Completes Acquisition of LendingTree', 'acquired_year': 2003, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'LendingTree', 'permalink': 'lendingtree'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.hospitalitynet.org/news//4017128.html', 'source_description': 'IAC/InterActiveCorp to Acquire Hotwire', 'acquired_year': 2003, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'Hotwire', 'permalink': 'hotwire'}}, {'price_amount': 210000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://goliath.ecnext.com/coms2/gi_0199-3979814/IAC-Acquires-TripAdvisor-Inc-Leading.html', 'source_description': 'IAC Acquires TripAdvisor, Inc. ', 'acquired_year': 2004, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'TripAdvisor', 'permalink': 'tripadvisor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.allbusiness.com/retail-trade/miscellaneous-retail/4436344-1.html', 'source_description': 'IAC completes acquisition of Cornerstone Brands', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Cornerstone Brands', 'permalink': 'cornerstone-brands'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.internetretailer.com/2006/01/31/iac-interactive-to-acquire-shoebuy-com', 'source_description': 'AC/InterActive to acquire ShoeBuy.com', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Shoebuy', 'permalink': 'shoebuy'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/08/26/iac-is-buying-about-com-from-nyt-for-300m-deal-coming-either-tonight-or-tomorrow-source/', 'source_description': 'Confirmed: IAC Has Bought About.com From The New York Times For $300M In Cash', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 27, 'company': {'name': 'About.com', 'permalink': 'about-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/07/iac-acquires-tutor-com-to-add-an-education-string-to-its-consumer-web-portfolio/', 'source_description': 'IAC Acquires Tutor.com To Add An Education String To Its Consumer Web Portfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'Tutor', 'permalink': 'tutor'}}], 'offices': [{'description': 'HQ', 'address1': '555 West 18th Street', 'address2': '', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.745172, 'longitude': -74.007646}], 'milestones': [], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1993, 'pub_month': 3, 'pub_day': 4, 'stock_symbol': 'NASDAQ:IACI'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3619/43619v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3619/43619v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3619/43619v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e9c'), 'name': 'Techstars', 'permalink': 'techstars', 'crunchbase_url': 'http://www.crunchbase.com/company/techstars', 'homepage_url': 'http://techstars.com', 'blog_url': 'http://techstars.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/TechstarsBlog', 'twitter_username': 'techstars', 'category_code': 'finance', 'number_of_employees': 30, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'seed-fund, techstars, accelerator, techstars-nyc-winter-2011, techstars-boston-2011, techstars-boulder-2011, techstars-seattle-2011, techstars-nyc-summer-2011, techstars-cloud-2012, techstars-boston-2012, techstars-nyc-2012', 'alias_list': '', 'email_address': 'david@techstars.com', 'phone_number': '', 'description': 'Seed fund + accelerator', 'created_at': 'Sat Aug 04 06:45:20 UTC 2007', 'updated_at': 'Wed Nov 06 18:33:23 UTC 2013', 'overview': '

Techstars is the #1 startup accelerator in the world. We’re very selective. Although thousands of companies apply each year, we only invest our money and time in about ten companies per program location. We have selection rates lower than the Ivy League, so you have to be among the best of the best to earn investment.

', 'image': {'available_sizes': [[[150, 99], 'assets/images/resized/0000/4033/4033v6-max-150x150.png'], [[250, 165], 'assets/images/resized/0000/4033/4033v6-max-250x250.png'], [[450, 297], 'assets/images/resized/0000/4033/4033v6-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-Founder & General Partner', 'person': {'first_name': 'Sam', 'last_name': 'Yagan', 'permalink': 'sam-yagan'}}, {'is_past': False, 'title': 'Co - Founder TechStars NYC', 'person': {'first_name': 'David', 'last_name': 'Tisch', 'permalink': 'david-tisch'}}, {'is_past': False, 'title': 'Founder, Blue Mountain', 'person': {'first_name': 'Jared', 'last_name': 'Polis', 'permalink': 'jared-polis'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Brad', 'last_name': 'Feld', 'permalink': 'brad-feld'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Simeon', 'last_name': 'Simeonov', 'permalink': 'simeon-simeonov'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Micah', 'last_name': 'Baldwin', 'permalink': 'micah-baldwin'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Wayne', 'last_name': 'Chang', 'permalink': 'wayne-chang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Joshua', 'last_name': 'Stylman', 'permalink': 'joshua-stylman'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Nicole', 'last_name': 'Glaros', 'permalink': 'nicole-glaros'}}, {'is_past': False, 'title': 'Mentor NYC', 'person': {'first_name': 'Bob', 'last_name': 'Pasker', 'permalink': 'bob-pasker'}}, {'is_past': False, 'title': 'Director, Finance', 'person': {'first_name': 'Tony', 'last_name': 'Shouse', 'permalink': 'tony-shouse'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Raj', 'last_name': 'Ramanandi', 'permalink': 'raj-ramanandi'}}, {'is_past': False, 'title': 'mentor', 'person': {'first_name': 'Will', 'last_name': 'Herman', 'permalink': 'will-herman'}}, {'is_past': False, 'title': 'Managing Director, TechStars Chicago', 'person': {'first_name': 'Troy', 'last_name': 'Henikoff', 'permalink': 'troy-henikoff'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Rebecca', 'last_name': 'Lovell', 'permalink': 'rebecca-lovell'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Suaad', 'last_name': 'Sait', 'permalink': 'suaad-sait'}}, {'is_past': False, 'title': 'Program Lead, TechStars Boston', 'person': {'first_name': 'Rohit', 'last_name': 'Gupta', 'permalink': 'rohit-gupta-9'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Josh', 'last_name': 'Kerr', 'permalink': 'josh-kerr'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Naveen', 'last_name': 'Gupta', 'permalink': 'naveen-gupta-2'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Adam', 'last_name': 'Singolda', 'permalink': 'adam-singolda'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Shayne', 'last_name': 'Higdon', 'permalink': 'shayne-higdon'}}, {'is_past': False, 'title': 'Nike+ Accelerator Mentor', 'person': {'first_name': 'Andrew', 'last_name': 'Mager', 'permalink': 'andrew-mager'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Geva', 'last_name': 'Perry', 'permalink': 'geva-perry'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Vikram', 'last_name': 'Dendi', 'permalink': 'vikram-dendi'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Tom', 'last_name': 'Egan', 'permalink': 'tom-egan'}}, {'is_past': False, 'title': 'Participating Company Summer 2013', 'person': {'first_name': 'Stan', 'last_name': 'Bokov', 'permalink': 'stan-bokov'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Dave', 'last_name': 'Malcolm', 'permalink': 'dave-malcolm'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Robert', 'last_name': 'Pease', 'permalink': 'robert-pease'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Dan', 'last_name': 'Ratner', 'permalink': 'dan-ratner'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Chris', 'last_name': 'Moody', 'permalink': 'chris-moody'}}, {'is_past': False, 'title': 'President, ZOLL data systems', 'person': {'first_name': 'David', 'last_name': 'Brown', 'permalink': 'david-brown'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Jeff', 'last_name': 'Bennett', 'permalink': 'jeff-bennett'}}, {'is_past': False, 'title': 'Business Development Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Galligan', 'permalink': 'matt-galligan'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Bill', 'last_name': 'Boebel', 'permalink': 'bill-boebel'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': False, 'title': 'Managing Director, Boston', 'person': {'first_name': 'Katie', 'last_name': 'Rae', 'permalink': 'katie-rae'}}, {'is_past': False, 'title': 'Executive Director, TechStars Seattle', 'person': {'first_name': 'Andy', 'last_name': 'Sack', 'permalink': 'andy-sack'}}, {'is_past': False, 'title': 'Network Catalyst', 'person': {'first_name': 'Ari', 'last_name': 'Newman', 'permalink': 'ari-newman'}}, {'is_past': False, 'title': 'Software Developer', 'person': {'first_name': 'Dan', 'last_name': 'Andrews', 'permalink': 'daniel-andrews'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Eugene', 'last_name': 'Chung', 'permalink': 'eugene-chung'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Jon', 'last_name': 'Bradford', 'permalink': 'jon-bradford'}}, {'is_past': False, 'title': 'Mentor for Boston Program', 'person': {'first_name': 'Claire', 'last_name': 'Wadlington', 'permalink': 'claire-wadlington'}}, {'is_past': False, 'title': 'Investor, TechStars Boston', 'person': {'first_name': 'Shereen', 'last_name': 'Shermak', 'permalink': 'shereen-shermak'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Kristin', 'last_name': 'McDonnell', 'permalink': 'kristin-mcdonnell'}}, {'is_past': False, 'title': 'Associate', 'person': {'first_name': 'Zach', 'last_name': 'Noorani', 'permalink': 'zachary-j-noorani'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Justin', 'last_name': 'Sigal', 'permalink': 'justin-sigal'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Joel', 'last_name': 'Spolsky', 'permalink': 'joel-spolsky'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Brandon', 'last_name': 'Marker', 'permalink': 'brandon-marker'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Chris', 'last_name': 'Hollindale', 'permalink': 'chris-hollindale-2'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Reed', 'last_name': 'Sturtevant', 'permalink': 'reed-sturtevant'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Frederick', 'last_name': '\"Suizo\" Mendler', 'permalink': 'frederick-suizo-mendler'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Mark', 'last_name': 'Tortorella', 'permalink': 'mark-tortorella'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'John', 'last_name': 'Ives', 'permalink': 'john-ives'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Joel', 'last_name': 'Espelien', 'permalink': 'joel-espelien'}}, {'is_past': False, 'title': 'Managing Director of Techstars Cloud', 'person': {'first_name': 'Jason', 'last_name': 'Seats', 'permalink': 'jason-seats'}}, {'is_past': False, 'title': 'Managing Director, NYC', 'person': {'first_name': 'Alex', 'last_name': 'Iskold', 'permalink': 'alex-iskold'}}, {'is_past': False, 'title': 'Mentoring', 'person': {'first_name': 'Cyril', 'last_name': 'Ebersweiler', 'permalink': 'cyril-ebersweiler'}}, {'is_past': True, 'title': 'Participant Founder', 'person': {'first_name': 'Jeremy', 'last_name': 'Fisher', 'permalink': 'jeremy-fisher'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Jeff', 'last_name': 'Widman', 'permalink': 'jeff-widman'}}, {'is_past': True, 'title': 'Summer Intern', 'person': {'first_name': 'Cory', 'last_name': 'Levy', 'permalink': 'cory-levy'}}, {'is_past': True, 'title': 'Director, NYC', 'person': {'first_name': 'Adam', 'last_name': 'Rothenberg', 'permalink': 'adam-rothenberg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lexi', 'last_name': 'Lewtan', 'permalink': 'lexi-lewtan'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Max', 'last_name': 'Bennett', 'permalink': 'max-bennett'}}, {'is_past': True, 'title': 'Hacker in Residence (HackStar)', 'person': {'first_name': 'Myles', 'last_name': 'Recny', 'permalink': 'myles-recny'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'San', 'last_name': 'Kim', 'permalink': 'san-kim'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Eric', 'last_name': 'Olden', 'permalink': 'eric-olden'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Shaun', 'last_name': 'Johnson', 'permalink': 'shaun-johnson'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Bob', 'last_name': 'Frankston', 'permalink': 'bob-frankston'}}, {'is_past': True, 'title': 'Managing Director - NYC', 'person': {'first_name': 'David', 'last_name': 'Tisch', 'permalink': 'david-tisch'}}, {'is_past': True, 'title': 'Community Director', 'person': {'first_name': 'Andrew', 'last_name': 'Hyde', 'permalink': 'andrew-hyde'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Dave', 'last_name': 'Morin', 'permalink': 'dave-morin'}}, {'is_past': True, 'title': 'VC', 'person': {'first_name': 'Miguel', 'last_name': 'Galvez', 'permalink': 'miguel-galvez'}}, {'is_past': True, 'title': 'Boston 2009 Company', 'person': {'first_name': 'Ajay', 'last_name': 'Kulkarni', 'permalink': 'ajay-kulkarni'}}, {'is_past': True, 'title': 'Hackstar', 'person': {'first_name': 'Andrew', 'last_name': 'Nalband', 'permalink': 'andrew-nalband'}}, {'is_past': True, 'title': 'Summer Intern', 'person': {'first_name': 'Catalin', 'last_name': 'Dumitru', 'permalink': 'catalin-dumitru'}}, {'is_past': True, 'title': 'NYC 2012 Participant', 'person': {'first_name': 'Adam', 'last_name': 'Saint', 'permalink': 'adam-saint'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Steve', 'last_name': 'Sachs', 'permalink': 'steve-sachs'}}, {'is_past': True, 'title': 'Advisor & Investor', 'person': {'first_name': 'Tim', 'last_name': \"O'Shea\", 'permalink': 'tim-oshea'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Geoffrey', 'last_name': 'Weg', 'permalink': 'geoffrey-weg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jenny', 'last_name': 'Lam', 'permalink': 'jenny-lam'}}], 'competitions': [{'competitor': {'name': 'Seedcamp', 'permalink': 'seedcamp'}}, {'competitor': {'name': 'Y Combinator', 'permalink': 'y-combinator'}}, {'competitor': {'name': 'Bootup Labs', 'permalink': 'bootup-labs'}}, {'competitor': {'name': 'NextStart', 'permalink': 'nextstart'}}, {'competitor': {'name': 'i/o Ventures', 'permalink': 'ventures'}}], 'providerships': [], 'total_money_raised': '$34M', 'funding_rounds': [{'id': 21407, 'round_code': 'unattributed', 'source_url': 'http://www.masshightech.com/stories/2011/02/07/daily50-TechStars-incubator-raises-2M-for-four-years.html', 'source_description': 'TechStars incubator raises $2M for four years', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 2, 'funded_day': 10, 'investments': []}, {'id': 22167, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/03/29/startup-incubator-techstars-raises-8-million/', 'source_description': 'Startup Incubator TechStars Raises $8 Million', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 29, 'investments': []}, {'id': 25521, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/09/21/startup-incubator-techstars-raises-24m-increases-funding-for-each-company-by-100k/', 'source_description': 'Startup Incubator TechStars Raises $24M, Increases Funding For Each Company By $100K', 'raised_amount': 24000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 21, 'investments': [{'company': None, 'financial_org': {'name': 'Foundry Group', 'permalink': 'foundry-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IA Ventures', 'permalink': 'ia-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Avalon Ventures', 'permalink': 'avalon-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mercury Fund', 'permalink': 'dfj-mercury'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SVB Financial Group', 'permalink': 'svb-financial-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'RRE Ventures', 'permalink': 'rre-ventures'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'madKast', 'permalink': 'madkast'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Brightkite', 'permalink': 'brightkite'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'KB Labs', 'permalink': 'kblabs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Filtrbox', 'permalink': 'filtrbox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Localcents, Inc. (Villij.com)', 'permalink': 'villij'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Search to Phone', 'permalink': 'searchtophone'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'J Squared Media', 'permalink': 'jsquaredmedia'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2007/04/18/techstars-makes-selections-start-up-summer-camp-for-10-teams/', 'source_description': 'TechCrunch post on TechStars', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Socialthing', 'permalink': 'socialthing'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/', 'source_description': 'TechStars', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'EventVue', 'permalink': 'eventvue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'IntenseDebate', 'permalink': 'intensedebate'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Foodzie', 'permalink': 'foodzie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Devver', 'permalink': 'devver'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'UsingMiles', 'permalink': 'usingmiles'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'DailyBurn', 'permalink': 'dailyburn'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Occipital', 'permalink': 'occipital'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Next Big Sound', 'permalink': 'next-big-sound'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 350000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Everlater', 'permalink': 'everlater'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Vanilla Forums', 'permalink': 'vanilla-forums'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Graphicly', 'permalink': 'graphicly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Rezora', 'permalink': 'rezora'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'ReTel Technologies', 'permalink': 'retel-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'TimZon', 'permalink': 'timzon'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Mailana', 'permalink': 'mailana'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Spry', 'permalink': 'spry'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 11, 'company': {'name': 'TempMine', 'permalink': 'tempmine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 11, 'company': {'name': 'LangoLab', 'permalink': 'langolab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'AmpIdea', 'permalink': 'ampidea'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'HaveMyShift', 'permalink': 'havemyshift'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'AccelGolf', 'permalink': 'accelgolf'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'SocialSci', 'permalink': 'socialsci'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Loudcaster', 'permalink': 'loudcaster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Mogotest', 'permalink': 'mogotest'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Marginize', 'permalink': 'marginize'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars 2010 Review Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ADstruc', 'permalink': 'adstruc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'StatsMix', 'permalink': 'statsmix'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Highlighter', 'permalink': 'highlighter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'Techcrunch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'RewardsForce', 'permalink': 'rewardsforce'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Thinkfuse', 'permalink': 'thinkfuse'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ToVieFor', 'permalink': 'toviefor'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Nestio', 'permalink': 'nestio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ShuttleCloud', 'permalink': 'shuttlecloud'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ThinkNear', 'permalink': 'thinknear'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'Observer', 'raised_amount': 418000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Red Rover', 'permalink': 'red-rover'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'ScriptPad', 'permalink': 'scriptpad'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/?y=2009', 'source_description': 'TechStars', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Sensobi', 'permalink': 'sensobi'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 16000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Deal Co-op', 'permalink': 'deal-co-op'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/articles/2011/03/28/techstars_new_galaxy_of_start_ups/', 'source_description': \"TechStars' new galaxy of start-ups\", 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'The Tap Lab', 'permalink': 'the-tap-lab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Promoboxx', 'permalink': 'promoboxx'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Kinvey', 'permalink': 'kinvey'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/whos-in-the-bunker/', 'source_description': \"Who's in the bunker in 2011?\", 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'SocialEngine', 'permalink': 'socialengine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Wantworthy', 'permalink': 'wantworthy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/whos-in-the-bunker/', 'source_description': \"Who's in the bunker?\", 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'FullContact', 'permalink': 'fullcontact'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/09/13/simple-energy-raises-900000-in-seed-funding/', 'source_description': 'Simple Energy Raises $900,000 In Seed Funding', 'raised_amount': 900000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'Simple Energy', 'permalink': 'simple-energy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Ambassador', 'permalink': 'ambassador'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/09/22/piictu-launches-grabs-seed-funding-to-grow-its-game-ified-photo-sharing-app/', 'source_description': 'TechCrunch', 'raised_amount': 730000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 22, 'company': {'name': 'Piictu', 'permalink': 'piictu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/the-31-best-new-founders-in-nyc-2011-7', 'source_description': 'The 31 Best New Tech Founders In NYC', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Urtak', 'permalink': 'urtak'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/techstars-summer-2011-2011-7', 'source_description': 'TechStars', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 7, 'funded_day': 11, 'company': {'name': 'Spontaneously', 'permalink': 'spontaneously'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/techstars-summer-2011-2011-7', 'source_description': 'TechStars', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'ChatID', 'permalink': 'chatid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://nyconvergence.com/2011/07/techstars-nyc-announces-new-startups-debuting-this-summer.html', 'source_description': 'Techstars NYC Announces New Startups Debuting This Summer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Dispatch', 'permalink': 'dispatch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'mobintent', 'permalink': 'mobintent'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.geekwire.com/2011/meet-lucky-percent-peek-stealthy-startups-techstars-seattle', 'source_description': 'Meet the lucky two percent: A peek at the startups that just entered TechStars Seattle', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Vizify', 'permalink': 'vizify'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'TechStars', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'EverTrue', 'permalink': 'evertrue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 13000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Lumatic', 'permalink': 'lumatic'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/09/15/kapost-raises-1-1-million-to-help-publishers-manage-an-army-of-contributors/', 'source_description': 'Kapost Raises $1.1 Million To Help Publishers Manage An Army Of Contributors', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 9, 'funded_day': 15, 'company': {'name': 'Kapost', 'permalink': 'kapost'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2011/09/19/social-loyalty-and-rewards-platform-crowdtwist-raises-6m-from-softbank-and-others/', 'source_description': 'Social Loyalty And Rewards Platform CrowdTwist Raises $6M From SoftBank And Others', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'CrowdTwist', 'permalink': 'crowdtwist'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2011/09/19/inspired-by-minority-report-immersive-labs-raises-810k-for-digital-display-recognition/', 'source_description': 'Inspired By \"Minority Report,\" Immersive Labs Raises $810K For Digital Display Recognition', 'raised_amount': 810000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'IMRSV', 'permalink': 'immersive-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techstars.com', 'source_description': 'TechStars ', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 16, 'company': {'name': 'Senexx', 'permalink': 'senexx'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Zagster', 'permalink': 'zagster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Keen IO', 'permalink': 'keen'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Meal Ticket', 'permalink': 'meal-ticket'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Smallknot', 'permalink': 'smallknot'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Pickie', 'permalink': 'pickie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Bench', 'permalink': 'bench'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Canary Calendar', 'permalink': 'laveem'}}}, {'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 12, 'funded_day': 6, 'company': {'name': 'Libboo', 'permalink': 'libboo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Classtivity', 'permalink': 'classtivity'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.org/', 'source_description': 'TechStars', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 2, 'company': {'name': 'TutorialTab', 'permalink': 'tutorialtab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential ', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'EveryMove', 'permalink': 'everymove'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'TempoDB', 'permalink': 'tempo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://ordr.me/obhk5A', 'source_description': 'TechStars Launches Second Class with Tons of Local Content ', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 7, 'company': {'name': 'Ordr.in', 'permalink': 'ordr-in'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Precog', 'permalink': 'precog'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2012/03/12/techstars-ny-announces-its-latest-class-of-startups-featuring-6-female-founders/', 'source_description': 'TechStars NY announces its latest class of startups', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 14, 'company': {'name': 'Karma Mobility', 'permalink': 'karma-2'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/01/24/timehop-a-time-machine-for-your-social-media-updates-gets-1-1-from-foursquare-founders-and-others/', 'source_description': 'Timehop, A Time Machine For Your Social Media Updates, Gets $1.1M From Foursquare Founders And Others', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Timehop', 'permalink': 'timehop'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/27/coursekit-1-million-seed', 'source_description': 'Penn Students Leave School to Launch CourseKit With $1 Million Seed Round', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 27, 'company': {'name': 'Lore', 'permalink': 'lore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/congratulations-to-the-techstars-nyc-2011-companies/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Lore', 'permalink': 'lore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'IMRSV', 'permalink': 'immersive-labs'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/04/20/sendgrid-raises-5-million-sends-a-bajillion-e-mails/#ixzz0lhCvoYyB', 'source_description': 'SendGrid Raises $5 Million, Sends A Bajillion E-mails ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 20, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/01/17/bessemer-leads-21m-round-in-cloud-based-email-delivery-and-management-service-sendgrid/', 'source_description': 'Bessemer Leads $21M Round In Cloud-Based Email Delivery And Management Service SendGrid', 'raised_amount': 21600000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 17, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/05/16/hipster-raises-1m-from-google-ventures-lightbank-and-500-startups/', 'source_description': 'Local Q&A Site Hipster Raises $1M From Google Ventures, Lightbank, 500 Startups And More', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 16, 'company': {'name': 'Hipster', 'permalink': 'hipster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/give-a-warm-welcome-to-the-techstars-boulder-2012-class/', 'source_description': 'Give a warm welcome to the TechStars Boulder 2012 Class!', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'SalesLoft', 'permalink': 'salesloft'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Application Experts', 'permalink': 'application-experts'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcocktail.com/techstars-boulder-startups-tech-cocktail-2008-08#.T-nC7r9SmTg', 'source_description': 'TechStars Demo Day and Tech Cocktail Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'BuyPlayWin', 'permalink': 'buyplaywin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/stats', 'source_description': 'TechStars Stats Page', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': \"People's Software Company\", 'permalink': 'peoples-software-company'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2008/08/20/ten-startups-debut-at-techstars-demo-day/', 'source_description': 'Ten Startups Debut At TechStars Demo Day', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'The Highway Girl', 'permalink': 'the-highway-girl'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Baydin', 'permalink': 'baydin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'VerbalizeIt', 'permalink': 'verbalizeit'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Localytics', 'permalink': 'localytics'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'oneforty', 'permalink': 'oneforty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Monkey Analytics', 'permalink': 'monkey-analytics'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Sparkcloud', 'permalink': 'sparkcloud'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'InvitedHome', 'permalink': 'invitedhome'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'RentMonitor', 'permalink': 'rentmonitor'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'RoundPegg', 'permalink': 'roundpegg'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Spot Influence', 'permalink': 'spot-influence'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Kapost', 'permalink': 'kapost'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'RentMatch', 'permalink': 'rentmatch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'The Shared Web', 'permalink': 'the-shared-web'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'World Blender', 'permalink': 'world-blender'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'GoMiles', 'permalink': 'gomiles'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://observer.com/2011/01/techstars-ny-announces-inaugural-class/', 'source_description': 'Techstars NY Announces Inaugural Class', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'CrowdTwist', 'permalink': 'crowdtwist'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/the-11-promising-techstar-startups-that-beat-out-600-other-applicants-2011-4?op=1', 'source_description': 'The 11 Techstars NYC Startups You Need To Know About Read more: http://www.businessinsider.com/the-11-promising-techstar-startups-that-beat-out-600-other-applicants-2011-4?op=1#ixzz1zkdJRsBu', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Shelby.tv', 'permalink': 'shelby-tv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/give-a-warm-welcome-to-the-techstars-boulder-2012-class/', 'source_description': 'Give a warm welcome to the TechStars Boulder 2012 Class!', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'ReplySend', 'permalink': 'replysend'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': '27 Perry', 'permalink': '27-perry'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Captimo', 'permalink': 'captimo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2012/08/techstars_boston_announces_sta.html', 'source_description': 'TechStars Boston announces startups accepted into its fall 2012 class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'BetterFit Technologies', 'permalink': 'betterfit-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Zeppelin', 'permalink': 'zeppelin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Bizible', 'permalink': 'bizible'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boston-fall-2012/', 'source_description': 'TechStars Demo Day: Boston Fall 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'CartCrunch', 'permalink': 'cartcrunch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2012/08/techstars_boston_announces_sta.html', 'source_description': 'TechStars Boston announces startups accepted into its fall 2012 class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'BookingMarkets (Dashbell)', 'permalink': 'bookingmarkets-dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'StarStreet', 'permalink': 'starstreet'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'Investors Flock To Boston To See TechStars’ 12 Cool New Startups (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Ginger.io', 'permalink': 'ginger-io'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'Investors Flock To Boston To See TechStars’ 12 Cool New Startups (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'GrabCAD', 'permalink': 'grabcad'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Help Scout', 'permalink': 'brightwurks'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://articles.boston.com/2011-03-28/business/29360529_1_start-ups-products-mechanical-engineers/2', 'source_description': \"TechStars' new galaxy of start-ups\", 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Memrise', 'permalink': 'memrise'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Spill Inc', 'permalink': 'spillnow'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://techcrunch.com/2013/02/13/leanplum-raises-825k-angel-round-for-its-mobile-ab-testing-and-optimization-tool/', 'source_description': 'Leanplum Raises $825K Angel Round For Its Mobile A/B Testing And Optimization Tool', 'raised_amount': 825000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 13, 'company': {'name': 'Leanplum', 'permalink': 'leanplum'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.businessinsider.com/meet-11-startups-that-beat-out-1700-others-for-spots-in-new-yorks-hottest-accelerator-program-techstars-2013-4?nr_email_referer=1&utm_source=Triggermail&utm_medium=email&utm_term=SAI%20Select&utm_campaign=SAI%20Select%202013', 'source_description': 'Techstars NY Selection Spring 2013', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Placemeter', 'permalink': 'placemeter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/04/29/techstars-boston-alum-placester-raises-2-5-million-for-its-professional-website-builder-for-realtors/', 'source_description': 'TechStars Boston Alum Placester Raises $2.5 Million For Its Professional Website Builder For Realtors', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 29, 'company': {'name': 'Placester', 'permalink': 'placester'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Drifty', 'permalink': 'drifty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/stats/', 'source_description': 'TechStars Stats', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'ParLevel Systems', 'permalink': 'parlevel-systems'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/05/09/plated-funding-meal-delivery-social-recipe-pages/', 'source_description': 'Backed With $1.4 Million, Plated Adds A Social Spin To Its Ready-To-Cook Meal Delivery Service', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'Plated', 'permalink': 'plated'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/postmaster-simple-shipping-for-e-commerce-businesses/', 'source_description': 'Techstars Blog', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 15, 'company': {'name': 'Postmaster', 'permalink': 'postmaster-io'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Creative Brain Studios', 'permalink': 'creative-brain-studios'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Flextrip', 'permalink': 'flextrip'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Rapt Media', 'permalink': 'rapt-media'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'GoSpotCheck', 'permalink': 'gospotcheck'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'InboxFever', 'permalink': 'inboxfever'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Mocavo', 'permalink': 'mocavo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Simple Energy', 'permalink': 'simple-energy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'TruantToday', 'permalink': 'truanttoday'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Remitly', 'permalink': 'remitly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Bluebox Now!', 'permalink': 'bluebox-now'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'FlexMinder', 'permalink': 'flexminder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'GoChime', 'permalink': 'gochime'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'GroupTalent', 'permalink': 'grouptalent'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'LikeBright', 'permalink': 'likebright'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Romotive', 'permalink': 'romotive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Smore', 'permalink': 'smore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Blog', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Fancred', 'permalink': 'fancred'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Piictu', 'permalink': 'piictu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'SideTour', 'permalink': 'sidetour'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Appsembler', 'permalink': 'appsembler'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Epic Playground', 'permalink': 'epic-playground'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Cloudability', 'permalink': 'cloudability'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Cloudsnap', 'permalink': 'cloudsnap'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Conductrics', 'permalink': 'conductrics'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.ideafundpartners.com/content/2.22.12+distil+%7C+idea+fund+partners/21992', 'source_description': 'Distil Receives $400K Investment from CIT GAP Funds', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/01/24/techstars-grad-distil-it-lands-1-8m-to-help-your-business-put-a-stop-to-bots-web-scraping-content-theft/', 'source_description': 'TechStars Grad Distil.It Lands $1.8M To Help Your Business Put A Stop To Bots, Web Scraping & Content Theft', 'raised_amount': 1800000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Vidmaker', 'permalink': 'vidmaker'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Emergent One', 'permalink': 'emergent-one'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Ziptask', 'permalink': 'ziptask'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Flomio', 'permalink': 'flomio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/27/nfc-still-has-legs-flomio-closes-on-half-a-million-in-seed-funding-for-nfc-based-products-services/', 'source_description': 'NFC Still Has Legs: Flomio Closes On Half A Million In Seed Funding For NFC-Based Products & Services', 'raised_amount': 525000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 27, 'company': {'name': 'Flomio', 'permalink': 'flomio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Psykosoft', 'permalink': 'psykosoft'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Murfie', 'permalink': 'murfie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Pact Fitness', 'permalink': 'pact'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'docTrackr', 'permalink': 'doctrackr'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Ubersense', 'permalink': 'ubersense'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Testive', 'permalink': 'testive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Libboo', 'permalink': 'libboo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Mortar Data', 'permalink': 'mortar-data'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'BISON', 'permalink': 'bison'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Simply Good Technologies', 'permalink': 'simply-good-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1550357/000155035712000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 754466, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Bondsy', 'permalink': 'bondsy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Condition One', 'permalink': 'condition-one'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Lua Technologies', 'permalink': 'lua-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Marquee', 'permalink': 'marquee'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Moveline', 'permalink': 'moveline'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1546180/000154618012000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 626984, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Poptip', 'permalink': 'poptip'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Rewind Me', 'permalink': 'rewind-me'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Wander', 'permalink': 'wander'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Birdbox', 'permalink': 'birdbox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'DealAngel', 'permalink': 'dealangel'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'DigitalOcean', 'permalink': 'digitalocean'}}}, {'funding_round': {'round_code': 'convertible', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Revolv', 'permalink': 'revolv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'PivotDesk', 'permalink': 'pivotdesk'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'RollSale', 'permalink': 'rollsale'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'ROXIMITY', 'permalink': 'roximity'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Ubooly', 'permalink': 'ubooly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Apptentive', 'permalink': 'apptentive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Glider', 'permalink': 'glider'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Leanplum', 'permalink': 'leanplum'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1556610/000155661012000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Linksy', 'permalink': 'linksy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Maptia', 'permalink': 'maptia'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'MobileDevHQ', 'permalink': 'mobiledevhq'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Nveloped', 'permalink': 'nveloped'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1556741/000155674112000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Sandglaz', 'permalink': 'sandglaz'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Tred', 'permalink': 'tred'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Careport Health', 'permalink': 'careport-health'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Fashion Project', 'permalink': 'fashion-project'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Fetchnotes', 'permalink': 'fetchnotes'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'ImpulseSave', 'permalink': 'impulsesave'}}}, {'funding_round': {'round_code': 'partial', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1589304/000158930413000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 1208000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'NBD Nanotechnologies Inc', 'permalink': 'nbd-nanotechnologies-inc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Ovuline', 'permalink': 'ovuline'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Rise Robotics', 'permalink': 'urban-hero-sports'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 26, 'company': {'name': 'CheckiO', 'permalink': 'checkio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Wymsee', 'permalink': 'wymsee'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Strategic Blue', 'permalink': 'strategic-blue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Conspire', 'permalink': 'conspire'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'DataRobot', 'permalink': 'datarobot'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'Storytime Studios', 'permalink': 'storytime-studios'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Threat Stack', 'permalink': 'threat-stack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'ZeroVM', 'permalink': 'zerovm'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Jebbit', 'permalink': 'jebbit'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'CONSTRVCT', 'permalink': 'constrvct'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'coUrbanize', 'permalink': 'courbanize'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Freight Farms', 'permalink': 'freight-farms'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'LinkCycle', 'permalink': 'linkcycle'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Neurala', 'permalink': 'neurala'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Outline', 'permalink': 'outline'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1571995/000119248213000043/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 14, 'company': {'name': 'PillPack', 'permalink': 'pillpack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'qunb', 'permalink': 'qunb'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Rallyware', 'permalink': 'rallyware'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/09/05/adyapper-raises-1-2-million-to-analyze-ad-viewability-for-digital-campaigns/', 'source_description': 'AdYapper Raises $1.2 Million To Analyze Ad Viewability For Digital Campaigns', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 5, 'company': {'name': 'AdYapper', 'permalink': 'adyapper-com'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 800000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 6, 'company': {'name': 'Dash Labs, Inc.', 'permalink': 'dash-labs-inc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'FaithStreet', 'permalink': 'faithstreet'}}}, {'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'Jukely', 'permalink': 'jukely'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Klooff', 'permalink': 'klooff'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Plated', 'permalink': 'plated'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'TriggerMail', 'permalink': 'triggermail'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Lean Startup Machine', 'permalink': 'the-lean-startup-machine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'weeSpring', 'permalink': 'weespring'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Hull', 'permalink': 'hull'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Augur', 'permalink': 'augur'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Kato', 'permalink': 'kato'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 11800, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Elihuu', 'permalink': 'elihuu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Brandfolder', 'permalink': 'brandfolder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Prediculous', 'permalink': 'prediculous'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'GoodApril', 'permalink': 'goodapril'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'SnowShoe Stamp', 'permalink': 'snowshoe'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Shopventory', 'permalink': 'shopventory'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'AdsNative', 'permalink': 'adsnative'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://upstart.bizjournals.com/companies/hatched/2013/04/25/techstars-chicago-reveals-class-of-10.html?page=all', 'source_description': 'Stock investor network make TechStars Chicago Top 10', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'TradingView', 'permalink': 'tradingview'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Nexercise', 'permalink': 'nexercise'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'SimpleRelevance', 'permalink': 'simplerelevance'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Sqord', 'permalink': 'sqord'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'SocialCrunch', 'permalink': 'socialcrunch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Project Fixup', 'permalink': 'project-fixup'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Pathful', 'permalink': 'pathful'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'CaptureProof', 'permalink': 'captureproof'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'feedPack', 'permalink': 'feedpack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'IpTvBeat', 'permalink': 'iptvbeat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Modabound', 'permalink': 'modabound'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Moni Technologies', 'permalink': 'moni-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'OP3Nvoice', 'permalink': 'op3nvoice'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'PayMins', 'permalink': 'paymins'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Peerby', 'permalink': 'peerby'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'PlayCanvas', 'permalink': 'playcanvas'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'QuanTemplate', 'permalink': 'quantemplate'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'VetCloud', 'permalink': 'vetcloud'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.geekwire.com/2011/blog-commenting-system-highlighter-raises-300000/', 'source_description': 'Much more than a blog commenting system, Highlighter raises $300,000', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Highlighter', 'permalink': 'highlighter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/12/10/apptentive/', 'source_description': 'Apptentive Scores $1.2M From Founder’s Co-Op, Google Ventures, To Help Mobile App Publishers Solicit Better Feedback', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 11, 'company': {'name': 'Apptentive', 'permalink': 'apptentive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/mobile-payments-startup-beamit-raises-2-4m-from-founders-co-op-jeff-bezos-others/', 'source_description': 'Mobile Payments Startup Beamit Raises $2.4M From Founder’s Co-op, Jeff Bezos, Eric Schmidt & Others', 'raised_amount': 1650000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 11, 'company': {'name': 'Remitly', 'permalink': 'remitly'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2012/05/09/everymove-series-a/', 'source_description': 'EveryMove Nabs $2.6M From Blue Cross, BuddyTV Co-founder To Help You Reduce Health Costs', 'raised_amount': 2600000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'EveryMove', 'permalink': 'everymove'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.freshnews.com/news/754304/flexminder-announces-1-4m-series-aa-financing', 'source_description': 'FlexMinder Announces $1.4M in Series AA Financing', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 30, 'company': {'name': 'FlexMinder', 'permalink': 'flexminder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.geekwire.com/2011/giant-thinkwell-scores-cash-partners-sir-mixalot-facebook-game', 'source_description': \"Posse on Facebook? Sir Mix-A-Lot debuts social media game with Seattle's Giant Thinkwell\", 'raised_amount': 600000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 15, 'company': {'name': 'Haiku Deck', 'permalink': 'haiku-deck'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': '', 'source_description': 'Founders Co-op Source', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': None, 'company': {'name': 'MobileDevHQ', 'permalink': 'mobiledevhq'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2010/01/14/oneforty-rolls-out-premium-twitter-app-marketplace-raises-1-9-million/', 'source_description': 'Oneforty Rolls Out Premium Twitter App Marketplace; Raises $1.9 Million', 'raised_amount': 1980000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 11, 'company': {'name': 'oneforty', 'permalink': 'oneforty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 225000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'The Shared Web', 'permalink': 'the-shared-web'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://finance.yahoo.com/news/facebook-advocate-platform-crowdly-announces-110000669.html', 'source_description': 'Crowdly Raises $1.2M In Seed Funding', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 23, 'company': {'name': 'Crowdly', 'permalink': 'crowdly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': ' TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 10000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 3, 'company': {'name': 'Crowdly', 'permalink': 'crowdly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Synack', 'permalink': 'synack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 712500, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'Dashbell', 'permalink': 'dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 15, 'company': {'name': 'Dashbell', 'permalink': 'dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/07/fast-growing-cloud-hosting-service-digital-ocean-raises-3-2m-seed-round-led-by-ia-ventures/', 'source_description': 'Fast-Growing Cloud Hosting Service Digital Ocean Raises $3.2M Seed Round Led By IA Ventures To Build Out Its Infrastructure', 'raised_amount': 3205800, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 15, 'company': {'name': 'DigitalOcean', 'permalink': 'digitalocean'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 218000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 6, 'company': {'name': 'Given Goods', 'permalink': 'given-goods'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Codementor', 'permalink': 'codementor'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Designlab', 'permalink': 'designlab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ResolutionTube', 'permalink': 'resolutiontube'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'flck.me', 'permalink': 'flck-me'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Rep', 'permalink': 'rep'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'The Vetted Net', 'permalink': 'the-vetted-net'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Inside Social', 'permalink': 'inside-social'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 10, 'company': {'name': 'Pansieve', 'permalink': 'pansieve'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'Thenextweb.com', 'raised_amount': 418000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'WebCurfew', 'permalink': 'webcurfew'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.bizjournals.com/austin/blog/morning_call/2013/08/techstars-picks-10-teams-for-first.html', 'source_description': 'TechStars taps 10 teams for first Austin class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'ProtoExchange', 'permalink': 'protoexchange'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 9, 'funded_day': None, 'company': {'name': 'Databox', 'permalink': 'databox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2013/09/11/5-startups-to-watch-from-kaplans-techstars-powered-ed-tech-accelerator-demo-day/', 'source_description': 'GigaOm', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 13, 'company': {'name': 'Flinja', 'permalink': 'flinja'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'Techstars', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'Perfect', 'permalink': 'perfect'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'EUR', 'funded_year': 2013, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'VetCloud', 'permalink': 'vetcloud'}}}, {'funding_round': {'round_code': 'partial', 'source_url': 'http://www.digitaljournal.com/pr/1538183?utm_source=buffer&utm_campaign=Buffer&utm_content=buffer478e2&utm_medium=twitter', 'source_description': 'Shopventory Raises $1.0M and Releases New Cloud-Based Platform Read more: http://www.digitaljournal.com/pr/1538183?utm_source=buffer&utm_campaign=Buffer&utm_content=buffer478e2&utm_medium=twitter#ixzz2jSncVpGX', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 11, 'company': {'name': 'Shopventory', 'permalink': 'shopventory'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Threat Stack', 'permalink': 'threat-stack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 150000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Codeship', 'permalink': 'codeship'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://betabeat.com/2012/06/techstars-nyc/#slide5', 'source_description': 'TechStars NYC: Where Are They Now?', 'raised_amount': 225000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Shelby.tv', 'permalink': 'shelby-tv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Memoir', 'permalink': 'memoir'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Shippable', 'permalink': 'shippable'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Embrace', 'permalink': 'embrace'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Filament Labs', 'permalink': 'filament-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Fosbury', 'permalink': 'fosbury'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'MarketVibe', 'permalink': 'marketvibe'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Testlio', 'permalink': 'testlio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ube', 'permalink': 'ube'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Atlas', 'permalink': 'atlas'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.010492, 'longitude': -105.276843}], 'milestones': [{'id': 10416, 'description': 'has appointed former Microsoft employee and early-stage startup investor Katie Rae as director of its two-year-old Boston program', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 30, 'source_url': 'http://www.masshightech.com/stories/2010/11/29/daily15-Rae-named-director-of-TechStars-Boston.html', 'source_text': None, 'source_description': 'Rae named director of TechStars Boston', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}, {'id': 11959, 'description': 'TechStars Boston, and the MassChallenge Startup Competition and Accelerator have been chosen as two of the initial programs to partner with the brand new Startup America Partnership, the White House-backed effort to promote innovation entrepreneurship ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 31, 'source_url': 'http://www.masshightech.com/stories/2011/01/31/daily1-MassChallenge-TechStars-join-with-Obamas-Startup-America-Partnership.html', 'source_text': None, 'source_description': \"MassChallenge, TechStars join with Obama's Startup America Partnership\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}, {'id': 23576, 'description': 'Appointed Clare Tischer as social media manager.', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 17, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[70, 150], 'assets/images/resized/0019/1811/191811v1-max-150x150.png'], [[117, 250], 'assets/images/resized/0019/1811/191811v1-max-250x250.png'], [[210, 450], 'assets/images/resized/0019/1811/191811v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2007', 'title': 'Boulder Summer 2007 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2008', 'title': 'Boulder Summer 2008 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2009', 'title': 'Boston Summer 2009 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2009', 'title': 'Boulder Summer 2009 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2010', 'title': 'Boston Spring 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2010', 'title': 'Boulder Summer 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2010', 'title': 'Seattle Fall 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-winter-2011', 'title': 'NYC Winter 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2011', 'title': 'Boston Spring 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2011', 'title': 'Boulder Summer 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2011', 'title': 'Seattle Fall 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-summer-2011', 'title': 'NYC Summer 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-cloud-2012', 'title': 'Cloud 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-winter-2012', 'title': 'Boston Winter 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-2012', 'title': 'NYC Spring 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2012', 'title': 'Boulder Summer 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2012', 'title': 'Seattle Fall 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-fall-2012', 'title': 'Boston Fall 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-cloud-2013', 'title': 'Cloud Winter 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-spring-2013', 'title': 'Boston Spring 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-2013', 'title': 'NYC Spring 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2013', 'title': 'Boulder Summer 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-chicago-2013', 'title': 'Chicago Summer 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-london-2013', 'title': 'London Fall 2013 Class on CrunchBase'}, {'external_url': 'http://crunchbase.com/tag/techstars-seattle-2013', 'title': 'Seattle Fall 2013 Class on CrunchBase'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e9e'), 'name': 'Nirvanix', 'permalink': 'nirvanix', 'crunchbase_url': 'http://www.crunchbase.com/company/nirvanix', 'homepage_url': 'http://www.nirvanix.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Nirvanix', 'category_code': 'enterprise', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2013, 'deadpooled_month': 10, 'deadpooled_day': 15, 'deadpooled_url': 'http://techcrunch.com/2013/09/27/its-official-the-nirvanix-cloud-storage-service-is-shutting-down/', 'tag_list': 'hybrid-cloud, private-cloud, cloud-storage, public-cloud, nas, global-namespace, file-system, object-store, utility-pricing, soap, rest, enterprise-cloud', 'alias_list': '', 'email_address': 'info@nirvanix.com', 'phone_number': '(619) 764-5650', 'description': 'Enterprise Cloud Storage Company', 'created_at': 'Wed Aug 08 02:09:58 UTC 2007', 'updated_at': 'Mon Sep 30 17:29:41 UTC 2013', 'overview': '

Nirvanix is the leading provider of enterprise-class cloud storage services. The company offers cloud storage solutions designed specifically for customers with expectations of extreme security, reliability and redundancy levels. Enterprise requirements are such that you can’t have any scheduled or unscheduled downtime. That’s why Nirvanix Cloud Storage solutions are specifically built from the ground up to meet or exceed those enterprise requirements for the largest media & entertainment companies, financial institutions and technology bellwethers companies who would be losing millions of dollars for every hour of downtime.

\\n\\n

Nirvanix is the only company that offers variable deployment options under its CloudComplete portfolio public, hybrid and private cloud solutions to precisely meet your business needs. Enterprise cloud storage gets you off the storage system and tape silo never-ending buy, maintain and upgrade spending-cycle and enables you to immediately start taking advantage of usage-based pricing and the elastic flexibility of the cloud.

', 'image': {'available_sizes': [[[150, 26], 'assets/images/resized/0000/4093/4093v3-max-150x150.png'], [[250, 44], 'assets/images/resized/0000/4093/4093v3-max-250x250.png'], [[261, 46], 'assets/images/resized/0000/4093/4093v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Hybrid Cloud Storage', 'permalink': 'hybrid-cloud'}, {'name': 'Public Cloud Storage', 'permalink': 'public-cloud-storage'}, {'name': 'Private Cloud Storage', 'permalink': 'private-cloud-storage'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Debra', 'last_name': 'Chrapaty', 'permalink': 'debra-chrapaty'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Major', 'last_name': 'Horton', 'permalink': 'major-horton'}}, {'is_past': False, 'title': 'Vice President, Worldwide Sales and Marketing', 'person': {'first_name': 'Tina', 'last_name': 'Gravel', 'permalink': 'tina-gravel'}}, {'is_past': False, 'title': 'Senior Vice President Product and Strategy', 'person': {'first_name': 'Dru', 'last_name': 'Borden', 'permalink': 'dru-borden'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Charles', 'last_name': 'Curran', 'permalink': 'charles-curran'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Titus', 'permalink': 'david-titus'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Dave', 'last_name': 'Barr', 'permalink': 'dave-barr'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dave', 'last_name': 'Ryan', 'permalink': 'dave-ryan'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Ryan', 'permalink': 'david-ryan'}}, {'is_past': False, 'title': 'VP - Engineering and Operations / VP - Operations', 'person': {'first_name': 'Randall', 'last_name': 'Hollis', 'permalink': 'randall-hollis'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Scott', 'last_name': 'Genereux', 'permalink': 'scott-genereux'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Jim', 'last_name': 'Zierick', 'permalink': 'jim-zierick'}}, {'is_past': True, 'title': 'CEO and Founder', 'person': {'first_name': 'Patrick', 'last_name': 'Harr', 'permalink': 'patrick-harr'}}, {'is_past': True, 'title': 'CTO and VP of Engineering', 'person': {'first_name': 'Patrick', 'last_name': 'Ritto', 'permalink': 'patrick-ritto'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Jonathan', 'last_name': 'Buckley', 'permalink': 'jonathan-buckley'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Zivanic', 'permalink': 'steve-zivanic'}}, {'is_past': True, 'title': 'Co-Founder & Senior Vice President of Strategy & Business Development', 'person': {'first_name': 'Geoff', 'last_name': 'Tudor', 'permalink': 'geoff-tudor'}}, {'is_past': True, 'title': 'VP, IT and Data Center Operations', 'person': {'first_name': 'Michael', 'last_name': 'Landesman', 'permalink': 'michael-landesman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'V. Wall', 'permalink': 'michael-v-wall'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Joe', 'last_name': 'Lyons', 'permalink': 'joe-lyons'}}, {'is_past': True, 'title': 'Director of Consulting', 'person': {'first_name': 'Stephen', 'last_name': 'Foskett', 'permalink': 'stephen-foskett'}}, {'is_past': True, 'title': 'Senior Director, Marketing', 'person': {'first_name': 'Adrian', 'last_name': 'J Herrera', 'permalink': 'adrian-j-herrera'}}], 'competitions': [{'competitor': {'name': 'EMC', 'permalink': 'emc'}}, {'competitor': {'name': 'NetApp', 'permalink': 'netapp'}}, {'competitor': {'name': 'Rackspace', 'permalink': 'rackspace'}}], 'providerships': [], 'total_money_raised': '$70M', 'funding_rounds': [{'id': 315, 'round_code': 'a', 'source_url': 'http://nirvanix.com/bw121907.aspx', 'source_description': '', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'European Founders Fund', 'permalink': 'european-founders-fund'}, 'person': None}]}, {'id': 5567, 'round_code': 'b', 'source_url': 'http://www.xconomy.com/san-diego/2009/04/10/intel-backed-nirvanix-gets-5-million/', 'source_description': 'Nirvanix Raises $5 Million', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 12135, 'round_code': 'unattributed', 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2007/2007-09-18.aspx', 'source_description': 'Nirvanix secures $12 million in venture capital', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 18, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}]}, {'id': 19982, 'round_code': 'b', 'source_url': 'http://www.techcrunchit.com/2010/11/10/cloud-storage-company-nirvanix-raises-10-million-appoints-new-ceo/', 'source_description': 'Cloud Storage Company Nirvanix Raises $10 Million, Appoints New CEO', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 10, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 29715, 'round_code': 'c', 'source_url': 'http://techcrunch.com/2012/05/03/khosla-leads-25m-round-in-enterprise-cloud-storage-company-nirvanix/', 'source_description': 'Khosla Leads $25M Round In Enterprise Cloud Storage Company Nirvanix', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'Khosla Ventures', 'permalink': 'khosla-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '4445 Eastgate Mall', 'address2': 'Ste. 405', 'zip_code': '92121', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 32.877656, 'longitude': -117.210595}], 'milestones': [{'id': 15472, 'description': 'Nirvanix Appoints Steve Zivanic as Vice President of Marketing', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 13, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-01-13.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15473, 'description': 'Nirvanix Appoints Erik Hardy as Senior Vice President of Worldwide ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 25, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-01-25.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15474, 'description': 'Nirvanix Offers Cloud Storage Customers in Japan Option to Move Data to Other Continents Free-of-Charge', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-03-17.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15475, 'description': 'Test Drive the Cloud at NAB with Nirvanix', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 30, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-03-30.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15476, 'description': 'Nirvanix Accelerates the Shift to the Cloud with Riverbed Storage Acceleration Solution', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 5, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-05.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15477, 'description': 'Nirvanix Announces New Webcast: Stop Your Backup Pain with Cloud Storage', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 6, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-06.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15478, 'description': 'Nirvanix and Symantec Announce Webcast Showcasing \"One Click to the Cloud\"', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 7, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-07.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15479, 'description': 'Front Porch Digital Reaches for the Nirvanix Cloud', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 10, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-10.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15480, 'description': 'Nirvanix Offers Stranded Iron Mountain Customers a Lifeline for Their Data', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 10, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-10b.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15482, 'description': 'Nirvanix Appoints Karen Sigman as Vice President, OEM and Alliances', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 2, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-02.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15483, 'description': 'Nirvanix Appoints Tracey Halama as Vice President of Worldwide Channels', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 25, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-25.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15728, 'description': 'Facebook, Twitter & Blog Content to be Archived to the Cloud with One Click', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 4, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-04.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15936, 'description': 'Nirvanix Appoints Paul Froutan as CTO ', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-06-27.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[125, 150], 'assets/images/resized/0013/7887/137887v2-max-150x150.jpg'], [[209, 250], 'assets/images/resized/0013/7887/137887v2-max-250x250.jpg'], [[376, 450], 'assets/images/resized/0013/7887/137887v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[102, 150], 'assets/images/resized/0013/7888/137888v2-max-150x150.jpg'], [[170, 250], 'assets/images/resized/0013/7888/137888v2-max-250x250.jpg'], [[306, 450], 'assets/images/resized/0013/7888/137888v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 32], 'assets/images/resized/0013/7897/137897v2-max-150x150.jpg'], [[250, 53], 'assets/images/resized/0013/7897/137897v2-max-250x250.jpg'], [[450, 96], 'assets/images/resized/0013/7897/137897v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.dcig.com/2011/05/why-nirvanix-is-poised-to-become-the-next-vmw.html', 'title': 'Why Nirvanix is Poised to Become the Next VMware'}, {'external_url': 'http://siliconangle.com/blog/2011/04/26/parting-of-the-clouds/', 'title': 'Parting of the Clouds'}, {'external_url': 'http://www.itdependsblog.com/2011/04/24/why-nirvanix-has-an-edge/', 'title': 'Why Nirvanix Has an Edge'}, {'external_url': 'http://searchstorage.techtarget.com/magazineContent/Some-clarity-for-enterprise-cloud-storage', 'title': 'Some Clarity for Enterprise Cloud Storage '}, {'external_url': 'http://neovise.com/getting-it-right-with-enterprise-cloud-storage', 'title': 'Getting it Right with Enterprise Cloud Storage'}, {'external_url': 'http://www.nirvanix.com/downloads/analyst-reports/Coughlin-Collaborative-Workflows-Benefit-from-Cloud-Storage-March2011.pdf', 'title': 'Collaborative Workflows Benefit from Cloud Storage'}, {'external_url': 'http://www.voicesofit.com/blogs/blog1.php/2011/02/14/nirvanix-cloud-storage-for-the-enterpris', 'title': 'Cloud Storage for the Enterprise (For Real)'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ea7'), 'name': 'Mokitown', 'permalink': 'mokitown', 'crunchbase_url': 'http://www.crunchbase.com/company/mokitown', 'homepage_url': 'http://www.mokitown.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2011, 'founded_month': 11, 'founded_day': 26, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mokitown, virtualworld, crunchbase', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue Aug 07 05:47:56 UTC 2007', 'updated_at': 'Tue Mar 19 01:07:12 UTC 2013', 'overview': '

Mokitown is a virtual world for kids owned by Daimler Chrysler. Kids can explore the world, invite friends for meetings, chat with other users and learn about road safety by playing with a flying robot named Benedikt.

\\n\\n

Daimler Chrysler created the Mokitown world as a safety initiative to teach kids about traffic safety. The site targets kids aged 8-12 years and teaches them on a variety of safety topics all through playing games and interacting with the Mokitown world. The games allow kids “to train for difficult situations without exposing them to real risk”.

\\n\\n

Kids score points by playing games and can use the points to buy items like mobile phones. Mobile phones allow kids to chat with other MobileKids.

\\n\\n

Competitors include Webkinz, Zwinktopia, Barbie Girls and Neopets.

', 'image': {'available_sizes': [[[150, 33], 'assets/images/resized/0000/4060/4060v1-max-150x150.png'], [[200, 44], 'assets/images/resized/0000/4060/4060v1-max-250x250.png'], [[200, 44], 'assets/images/resized/0000/4060/4060v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Mokitown', 'permalink': 'mokitown'}], 'relationships': [], 'competitions': [{'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 76], 'assets/images/resized/0011/7914/117914v2-max-150x150.jpg'], [[240, 123], 'assets/images/resized/0011/7914/117914v2-max-250x250.jpg'], [[240, 123], 'assets/images/resized/0011/7914/117914v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eaa'), 'name': 'Neopets', 'permalink': 'neopets', 'crunchbase_url': 'http://www.crunchbase.com/company/neopets', 'homepage_url': 'http://www.neopets.com', 'blog_url': 'http://www.neopoints.in', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'neopets, virtualworld, crunchbase', 'alias_list': None, 'email_address': 'support@neopoints.in', 'phone_number': '', 'description': '', 'created_at': 'Tue Aug 07 07:32:03 UTC 2007', 'updated_at': 'Sun Oct 09 21:53:20 UTC 2011', 'overview': '

Neopets is a virtual world for kids or anyone young at heart. The world is based around characters users create called pets. Users must keep their pets healthy, fed and in good spirits.

\\n\\n

With your pet, you can explore the Neopets world, engage in solo quests or play solo games for rewards, complete missions with other players and meet other characters. Neopets has plenty of places to visit including the Battledome, the undersea city of Maraqua, the Lost Desert or the Virtupets Space Station.

\\n\\n

When users complete missions or quests they receive items like Dark Reflectorbs or Neopets money called Neopoints. Pets can visit the Neopian Bazaar or the Neopian Plaza to trade, buy and sell items. Users can also invest in the Neopian stock market.

\\n\\n

Neopets is free to play but they also have a subscription version called Neopets Premium that has better features and benefits. Competitors include Zwinktopia, Webkinz, Mokitown and Club Penguin.

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/4072/4072v1-max-150x150.png'], [[200, 63], 'assets/images/resized/0000/4072/4072v1-max-250x250.png'], [[200, 63], 'assets/images/resized/0000/4072/4072v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Neopets', 'permalink': 'neopets'}], 'relationships': [{'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Adam', 'last_name': 'Powell', 'permalink': 'adam-powell'}}, {'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Donna', 'last_name': 'Powell', 'permalink': 'donna-williams'}}, {'is_past': True, 'title': 'Founder/Chairman/CEO', 'person': {'first_name': 'Doug', 'last_name': 'Dohring', 'permalink': 'doug-dohring'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Matthew', 'last_name': 'White', 'permalink': 'matthew-white'}}, {'is_past': True, 'title': 'Board Advisor / Shareholder', 'person': {'first_name': 'Farshad', 'last_name': 'Fardad', 'permalink': 'farshad-fardad'}}], 'competitions': [{'competitor': {'name': 'Barbie Girls', 'permalink': 'barbiegirls'}}, {'competitor': {'name': 'Webkinz', 'permalink': 'webkinz'}}, {'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'competitor': {'name': 'EcoBuddiesâ„¢ Interactive', 'permalink': 'ecobuddies-interactive'}}, {'competitor': {'name': 'Toontown', 'permalink': 'toontown'}}, {'competitor': {'name': 'Webkinz', 'permalink': 'webkinz'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 160000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.boston.com/business/technology/articles/2005/06/21/viacoms_mtv_buys_neopets_for_160m', 'source_description': \"Viacom's MTV buys Neopets for $160m\", 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 20, 'acquiring_company': {'name': 'MTV Networks', 'permalink': 'mtv-networks'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ead'), 'name': 'KnockaTV', 'permalink': 'knockatv', 'crunchbase_url': 'http://www.crunchbase.com/company/knockatv', 'homepage_url': 'http://knockatv.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 2, 'deadpooled_day': 28, 'deadpooled_url': 'http://www.techcrunch.com/2008/02/13/knockatv-may-heading-to-the-deadpool/', 'tag_list': 'tv, video, usergeneratedcontent, ugc', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Aug 07 09:17:30 UTC 2007', 'updated_at': 'Sat Oct 12 09:02:09 UTC 2013', 'overview': '

“The People Have Taken Over”, KnockaTV’s slogan, suggests the new and stealthy video company offers a community based video service, possibly a mix between social media site Digg and a conventional video streaming application. So far the details are few. KnockaTV is a project manned by the inventors of one of the first instant messenger clients, ICQ. It claims it will be a “hyper-interactive” as well as social center for video, with user generated content. Currently, KnockaTV is looking for producers to fill its site with original content. Once full of content, KnockaTV will allow its users will be able to decided what gets played and when.Companies such as Joost and YouTube offer messaging capabilities to their users who are watching the same content (YouTube’s Streams is in the “testtube” phase). KnockaTV will almost certainly have chat features given the founders’ previous experience with IM. Though an interesting concept, video interactivity has not yet been proven popular. It is arguably very contrary to the way consumers want to watch videos, as TV viewing has always been very passive. KnockaTV will offer one more way in which users may be enticed to change their behavior.

', 'image': {'available_sizes': [[[150, 21], 'assets/images/resized/0000/4078/4078v1-max-150x150.png'], [[200, 29], 'assets/images/resized/0000/4078/4078v1-max-250x250.png'], [[200, 29], 'assets/images/resized/0000/4078/4078v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'KnockaTV', 'permalink': 'knockatv'}], 'relationships': [{'is_past': None, 'title': 'Product Manager', 'person': {'first_name': 'Yotam', 'last_name': 'Eshel', 'permalink': 'yotam-eshel'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Shailesh', 'last_name': 'Shilwant', 'permalink': 'shailesh-shilwant'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$4.5M', 'funding_rounds': [{'id': 312, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/06/icq-founders-start-knockatv/#comments', 'source_description': 'TechCrunch', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Evergreen Venture Partners', 'permalink': 'evergreen-venture-partners'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Sefi', 'last_name': 'Visiger', 'permalink': 'sefi-visiger'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Yair', 'last_name': 'Goldfinger', 'permalink': 'yair-goldfinger'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Arik', 'last_name': 'Vardi', 'permalink': 'arik-vardi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Eilon', 'last_name': 'Tirosh', 'permalink': 'eilon-tirosh'}}]}, {'id': 12732, 'round_code': 'unattributed', 'source_url': 'http://www.vccafe.com/2007/06/19/knockatv-raises-1m/', 'source_description': 'KnockaTV Raises $1M', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 11, 'investments': [{'company': None, 'financial_org': {'name': 'Evergreen Venture Partners', 'permalink': 'evergreen-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'ISR', 'latitude': 31.046051, 'longitude': 34.851612}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eb7'), 'name': 'Revver', 'permalink': 'revver', 'crunchbase_url': 'http://www.crunchbase.com/company/revver', 'homepage_url': 'http://revver.com', 'blog_url': 'http://blog.revver.com', 'blog_feed_url': 'http://blog.revver.com/?feed=rss2', 'twitter_username': 'Revver', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 15, 'deadpooled_year': 2011, 'deadpooled_month': 3, 'deadpooled_day': 26, 'deadpooled_url': 'http://willvideoforfood.com/2011/03/26/is-revver-dead-first-ad-sharing-website-is-mia/', 'tag_list': 'video, youtube, usergeneratedvideo, revenue, revenue-share, ugc, ugv, usergeneratedcontent', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'User Generated Video Site', 'created_at': 'Fri Aug 10 06:24:06 UTC 2007', 'updated_at': 'Mon May 20 10:04:56 UTC 2013', 'overview': '

The first user generated video site to offer revenue share, Revver is a video sharing site. Revver was founded in 2004 before user generated video had even begun to take off. For months into its infancy Revver looked to be a viable alternative if not legitimate challenger to YouTube. Its 50/50 revenue share model landed some high profile content like Ask a Ninja, LonelyGirl15 and the Diet Coke and Mentos guys. Users were immediately enticed by the chance not only to be a web celebrity but to make some cash while they were at it.

\\n\\n

According to Compete.com, Revver page views are still growing, however, they hit appr. 1 million monthly while YouTube achieves close to 250 million. Competitors in the user generated video area include Veoh, YouTube, Sony owned Crackle, DailyMotion, Metacafe, iFilm and others. Ian Clarke, original Revver Co-founder, now runs social news site Thoof.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/4207/4207v1-max-150x150.png'], [[200, 53], 'assets/images/resized/0000/4207/4207v1-max-250x250.png'], [[200, 53], 'assets/images/resized/0000/4207/4207v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Revver', 'permalink': 'revver'}], 'relationships': [{'is_past': False, 'title': 'Founder/CEO', 'person': {'first_name': 'Steven', 'last_name': 'Starr', 'permalink': 'steven-starr'}}, {'is_past': None, 'title': 'CEO', 'person': {'first_name': 'Kevin', 'last_name': 'Wells', 'permalink': 'kevin-wells'}}, {'is_past': False, 'title': 'VP, Software Engineering', 'person': {'first_name': 'Asi', 'last_name': 'Behar', 'permalink': 'asi-behar'}}, {'is_past': False, 'title': 'SVP Business Development', 'person': {'first_name': 'Brian', 'last_name': 'McCarthy', 'permalink': 'brian-mccarthy'}}, {'is_past': None, 'title': 'Senior Director Architecture', 'person': {'first_name': 'Tommi', 'last_name': 'Virtanen', 'permalink': 'tommi-virtanen'}}, {'is_past': True, 'title': 'Co-Founder & Chief Scientist', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Oliver', 'last_name': 'Luckett', 'permalink': 'oliver-luckett'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Rob', 'last_name': 'Maigret', 'permalink': 'rob-maigret'}}, {'is_past': True, 'title': 'VP, Marketing & Content', 'person': {'first_name': 'Angela', 'last_name': 'Wilson Gyetvan', 'permalink': 'angela-wilson-gyetvan'}}, {'is_past': True, 'title': 'Sr UX Architect', 'person': {'first_name': 'Jason', 'last_name': 'Carlin', 'permalink': 'jason-carlin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Andres', 'last_name': 'Buritica', 'permalink': 'andres-buritica'}}, {'is_past': True, 'title': 'Director of Community', 'person': {'first_name': 'Micki', 'last_name': 'Krimmel', 'permalink': 'micki-krimmel'}}], 'competitions': [{'competitor': {'name': 'Veoh', 'permalink': 'veoh'}}, {'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'Dailymotion', 'permalink': 'dailymotion'}}, {'competitor': {'name': 'Next New Networks', 'permalink': 'next-new-networks'}}, {'competitor': {'name': 'Pandora.TV', 'permalink': 'pandora-tv'}}, {'competitor': {'name': 'Stagevu', 'permalink': 'stagevu'}}, {'competitor': {'name': 'VReel Media', 'permalink': 'vreel'}}], 'providerships': [], 'total_money_raised': '$12.7M', 'funding_rounds': [{'id': 326, 'round_code': 'a', 'source_url': 'http://www.siliconbeat.com/entries/2006/04/10/revver_revs_up_with_another_round_of_funding.html', 'source_description': None, 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 327, 'round_code': 'b', 'source_url': 'http://www.siliconbeat.com/entries/2006/04/10/revver_revs_up_with_another_round_of_funding.html', 'source_description': None, 'raised_amount': 8700000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'William Randolph', 'last_name': 'Hearst III', 'permalink': 'william-randolph-hearst-iii'}}]}], 'investments': [], 'acquisition': {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newteevee.com/2008/02/14/liveuniverse-buys-revver-for-more-than-a-song/', 'source_description': 'LiveUniverse Buys Revver for More than a Song (about $5M)', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 14, 'acquiring_company': {'name': 'LiveUniverse', 'permalink': 'liveuniverse'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Los Angeles', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.052187, 'longitude': -118.243425}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}, {'embed_code': 'http://www.youtube.com/watch?v=95ZEGOJnNag', 'description': '

No Start Up Fees, Definitely A Hot Concept for the New Home Business

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eb9'), 'name': 'Metacafe', 'permalink': 'metacafe', 'crunchbase_url': 'http://www.crunchbase.com/company/metacafe', 'homepage_url': 'http://metacafe.com', 'blog_url': 'http://blog.metacafe.com/', 'blog_feed_url': '', 'twitter_username': 'MetacafeToday', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2003, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'online-video, video-entertainment, online-entertainment, digital-entertainment, movies, video-games, sports, music, tv', 'alias_list': '', 'email_address': 'communications@metacafe.com', 'phone_number': '415-882-7069', 'description': 'Online Video Entertainment', 'created_at': 'Fri Aug 10 09:03:48 UTC 2007', 'updated_at': 'Wed Jul 03 20:58:44 UTC 2013', 'overview': '

Metacafe is a web site that specializes in short-form video entertainment in the categories of movies, video games, sports, music and TV.

\\n\\n

The company is headquartered in San Francisco, California, with offices in New York, Los Angeles, London and Tel Aviv. Metacafe is privately held and its investors include Accel Partners, Benchmark Capital, DAG Ventures and Highland Capital Partners.

\\n\\n

In its early years, Metacafe was similar to other video viewing websites such as YouTube or Dailymotion, but has since transformed itself into a short-form video entertainment site with several differences. The site now showcases more curated, exclusive and original premium entertainment-related video content than any other entertainment destination on the web.

\\n\\n

The company’s partners include marquee content providers such as major movie studios, video game publishers, broadcast and cable TV networks, music labels and sports leagues.

\\n\\n

The site is advertising supported, working closely with brands in the entertainment, consumer electronics, telecommunications, consumer packaged goods, food & beverage, and automotive sectors.

', 'image': {'available_sizes': [[[150, 43], 'assets/images/resized/0000/4213/4213v1-max-150x150.png'], [[215, 62], 'assets/images/resized/0000/4213/4213v1-max-250x250.png'], [[215, 62], 'assets/images/resized/0000/4213/4213v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Tom', 'last_name': 'Goodrich', 'permalink': 'tom-goodrich'}}, {'is_past': False, 'title': 'Music Editor', 'person': {'first_name': 'Andrew', 'last_name': 'Greenstein', 'permalink': 'andrew-greenstein'}}, {'is_past': False, 'title': 'Video Games editor', 'person': {'first_name': 'Doug', 'last_name': 'Perry', 'permalink': 'doug-perry'}}, {'is_past': False, 'title': 'Sports editor', 'person': {'first_name': 'CJ', 'last_name': 'Hillyer', 'permalink': 'cj-hillyer'}}, {'is_past': False, 'title': 'Board of directors', 'person': {'first_name': 'Richard', 'last_name': 'de Silva', 'permalink': 'richard-de-silva'}}, {'is_past': False, 'title': 'Movies editor', 'person': {'first_name': 'Lulu', 'last_name': 'Richter', 'permalink': 'lulu-richter'}}, {'is_past': False, 'title': 'Video Games editor', 'person': {'first_name': 'Scott', 'last_name': 'Pierce', 'permalink': 'scott-pierce'}}, {'is_past': False, 'title': 'TV editor', 'person': {'first_name': 'Elena', 'last_name': 'Ontiveros', 'permalink': 'elena-ontiveros'}}, {'is_past': True, 'title': 'Founder and Board Member', 'person': {'first_name': 'Eyal', 'last_name': 'Hertzog', 'permalink': 'eyal-hertzog'}}, {'is_past': True, 'title': 'Founder, President and CCO', 'person': {'first_name': 'Eyal', 'last_name': 'Hertzog', 'permalink': 'eyal-hertzog'}}, {'is_past': True, 'title': 'CEO, Co-founder', 'person': {'first_name': 'Arik', 'last_name': 'Czerniak', 'permalink': 'arik-czerniak'}}, {'is_past': True, 'title': 'Chief Architect & Senior Team Leader', 'person': {'first_name': 'Rubi', 'last_name': 'Dagan', 'permalink': 'rubi-dagan-2'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Eran', 'last_name': 'Pilovsky', 'permalink': 'eran-pilovsky'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'Strambi', 'permalink': 'michael-strambi'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Erick', 'last_name': 'Hachenburg', 'permalink': 'eric-hachenburg'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Derek', 'last_name': 'Rudd', 'permalink': 'derek-rudd'}}, {'is_past': True, 'title': 'VP Products Israel', 'person': {'first_name': 'Ziv', 'last_name': 'Kabaretti', 'permalink': 'ziv-kabaretti'}}, {'is_past': True, 'title': 'Vice President, Content & Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Poggi', 'permalink': 'mark-poggi'}}, {'is_past': True, 'title': 'VP Product', 'person': {'first_name': 'Ziv', 'last_name': 'Kabaretti', 'permalink': 'ziv-kabaretti'}}, {'is_past': True, 'title': 'SVP of Strategic Sales and Partnerships', 'person': {'first_name': 'Jack', 'last_name': 'Rotherham', 'permalink': 'jack-rotherham'}}, {'is_past': True, 'title': 'General Manager, Metacafe Israel', 'person': {'first_name': 'Ido', 'last_name': 'Safruti', 'permalink': 'ido-safruti'}}, {'is_past': True, 'title': 'Vice President, Programming and Content', 'person': {'first_name': 'Steven', 'last_name': 'Horn', 'permalink': 'steven-horn'}}, {'is_past': True, 'title': 'Vice President, Marketing Communications & Publisher/Sales Development', 'person': {'first_name': 'Michelle', 'last_name': 'Cox', 'permalink': 'michelle-cox'}}, {'is_past': True, 'title': 'Head of International Media Sales', 'person': {'first_name': 'Sagi', 'last_name': 'Gordon', 'permalink': 'sagi-gordon'}}, {'is_past': True, 'title': 'Consulting', 'person': {'first_name': 'Dima', 'last_name': 'Kuchin', 'permalink': 'dima-kuchin'}}, {'is_past': True, 'title': 'Business Development Associate', 'person': {'first_name': 'Andrew', 'last_name': 'Greenstein', 'permalink': 'andrew-greenstein'}}, {'is_past': True, 'title': 'Senior Programmer', 'person': {'first_name': 'Tal', 'last_name': 'Yaniv', 'permalink': 'tal-yaniv'}}, {'is_past': True, 'title': 'VP Sales', 'person': {'first_name': 'Brent', 'last_name': 'Fraser', 'permalink': 'brent-fraser'}}, {'is_past': True, 'title': 'Sr. Dir. User Experience', 'person': {'first_name': 'Uri', 'last_name': 'Ar', 'permalink': 'uri-ar'}}, {'is_past': True, 'title': 'Head of international sales', 'person': {'first_name': 'Gil', 'last_name': 'Shoham', 'permalink': 'gil-shoham'}}, {'is_past': True, 'title': 'Senior Director Products and Content Operations', 'person': {'first_name': 'Dudu', 'last_name': 'Noy', 'permalink': 'dudu-noy'}}, {'is_past': True, 'title': 'Senior Marketing Director', 'person': {'first_name': 'Iri', 'last_name': 'Amirav', 'permalink': 'iri-amirav'}}], 'competitions': [{'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'Break.com', 'permalink': 'break-com'}}], 'providerships': [], 'total_money_raised': '$50M', 'funding_rounds': [{'id': 330, 'round_code': 'b', 'source_url': 'http://www.benchmark.com/news/israel/2006/07_03_2006.php', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 386, 'round_code': 'c', 'source_url': 'http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070821005247&newsLang=en', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}]}, {'id': 16103, 'round_code': 'debt_round', 'source_url': 'http://venturebeat.com/2010/06/04/metacafe-lands-5-million-for-new-movie-site/', 'source_description': 'Metacafe lands $5 million for curated movie site', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '128 King Street', 'address2': '3rd Floor', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.437328, 'longitude': -122.159928}], 'milestones': [{'id': 24055, 'description': 'Ailing Metacafe acquired by a Hollywood agency specializing in YouTube stars', 'stoned_year': 2012, 'stoned_month': 6, 'stoned_day': 14, 'source_url': 'http://venturebeat.com/2012/06/14/metacafe-acquired/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_text': '', 'source_description': 'Ailing Metacafe acquired by a Hollywood agency specializing in YouTube stars', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Metacafe', 'permalink': 'metacafe'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
Rio, a Speedo, and Dwayne Johnson\\'s Leather Thong. Watch more top selected videos about: Fast Five (2011 film), Elsa Pataky
', 'description': '

Metacafe Unfiltered with Matt Zaller

'}, {'embed_code': '
Aaron Eckhart\\'s Chintastic Chinterview. Watch more top selected videos about: Entertainment, Aliens
', 'description': '

Metacafe Unfiltered with Alex Blagg

'}, {'embed_code': '
Trending Topics with Matt Zaller - Episode 4 - For more amazing video clips, click here
', 'description': '

Metacafe’s Trending Topics

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3670/43670v6-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3670/43670v6-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/3670/43670v6-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 130], 'assets/images/resized/0013/1715/131715v2-max-150x150.jpg'], [[250, 218], 'assets/images/resized/0013/1715/131715v2-max-250x250.jpg'], [[450, 392], 'assets/images/resized/0013/1715/131715v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eba'), 'name': 'MindTouch', 'permalink': 'mindtouch', 'crunchbase_url': 'http://www.crunchbase.com/company/mindtouch', 'homepage_url': 'http://www.mindtouch.com', 'blog_url': 'http://www.mindtouch.com/blog/', 'blog_feed_url': 'http://feeds.feedburner.com/Mindtouch', 'twitter_username': 'MindTouch', 'category_code': 'enterprise', 'number_of_employees': 0, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'strategic-content, technical-documentation, enterprise-content-management-system, wiki, collaboration, mindtouch, intranet, mashup, situational-applications, portal, wcms, ecm', 'alias_list': None, 'email_address': 'sales@mindtouch.com', 'phone_number': '619-795-8459', 'description': '', 'created_at': 'Sat Aug 11 07:03:41 UTC 2007', 'updated_at': 'Sat Jun 09 10:14:43 UTC 2012', 'overview': '

MindTouch wants to make product help exceptional.

\\n\\n

We’ve all had exceptional product help experiences that make us want to buy more products from a vendor. Unfortunately we’ve all also had experiences that leave us shaking our head, deciding to never again do business with a vendor. MindTouch cares about making our customers exceptional at product help, in part by creating vibrant communities around their products. We deliver on this promise with our social knowledge base product and build-to-suit product help communities for some of the world’s largest companies and a lot of world’s smaller companies.

\\n\\n

MindTouch makes the world’s most respected social knowledge base. We power purpose-built help 2.0 communities that connect companies like Autodesk, Intuit, PayPal, RightScale and ExactTarget, with their customers. Millions use our software every day.

\\n\\n

Key Benefits

\\n\\n
    \\n
  1. Lower your customer support costs.
  2. \\n
  3. Juice your search engine ranking (SEO).
  4. \\n
  5. Create more engaged and loyal customers.
  6. \\n
  7. Increase your lead generation.
  8. \\n
  9. Sell and market better with personalization.
  10. \\n
', 'image': {'available_sizes': [[[150, 33], 'assets/images/resized/0000/4228/4228v1-max-150x150.png'], [[200, 45], 'assets/images/resized/0000/4228/4228v1-max-250x250.png'], [[200, 45], 'assets/images/resized/0000/4228/4228v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MindTouch Platform v10', 'permalink': 'deki-wiki'}, {'name': 'MindTouch TCS', 'permalink': 'mindtouch-2010'}, {'name': 'MindTouch Core', 'permalink': 'mindtouch-core'}], 'relationships': [{'is_past': False, 'title': 'Founder and CTO', 'person': {'first_name': 'Steve', 'last_name': 'Bjorg', 'permalink': 'steve-bjorg'}}, {'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Aaron', 'last_name': 'Fulkerson', 'permalink': 'aaron-fulkerson'}}, {'is_past': False, 'title': 'Software Architect', 'person': {'first_name': 'Arne', 'last_name': 'Claassen', 'permalink': 'arne-claassen'}}, {'is_past': False, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Corey', 'last_name': 'Ganser', 'permalink': 'corey-ganser'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Ken', 'last_name': 'Liu', 'permalink': 'ken-liu'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Kelly', 'last_name': 'Abbott', 'permalink': 'kelly-abbott'}}, {'is_past': True, 'title': 'SVP of Engineering', 'person': {'first_name': 'Sam', 'last_name': 'Estrin', 'permalink': 'sam-estirn'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Roy', 'last_name': 'Kim', 'permalink': 'roy-kim'}}, {'is_past': True, 'title': 'eVP of Sales', 'person': {'first_name': 'Mark', 'last_name': 'Fidelman', 'permalink': 'mark-fidelman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Diliberto', 'permalink': 'mike-diliberto'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Rion', 'last_name': 'Morgenstern', 'permalink': 'rion-morgenstern'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Mike', 'last_name': 'Puterbaugh', 'permalink': 'mike-puterbaugh'}}], 'competitions': [{'competitor': {'name': 'BrightSide Software', 'permalink': 'brightside-software'}}, {'competitor': {'name': 'Liferay', 'permalink': 'liferay'}}, {'competitor': {'name': 'OpenText', 'permalink': 'opentext'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '401 West A Street', 'address2': 'Suite 250', 'zip_code': '92101', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 32.720656, 'longitude': -117.167831}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Creating open source software that enterprise loves

'}], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0014/5761/145761v1-max-150x150.jpg'], [[250, 203], 'assets/images/resized/0014/5761/145761v1-max-250x250.jpg'], [[450, 365], 'assets/images/resized/0014/5761/145761v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ebb'), 'name': 'ChaCha', 'permalink': 'chacha', 'crunchbase_url': 'http://www.crunchbase.com/company/chacha', 'homepage_url': 'http://www.chacha.com', 'blog_url': 'http://blog.chacha.com/', 'blog_feed_url': 'http://feeds.feedburner.com/chacha_mobile_marketing', 'twitter_username': 'chacha', 'category_code': 'advertising', 'number_of_employees': 70, 'founded_year': 2005, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'qa, q--a, answers, questions, mobile-search, search, human-powered-search, mobile-search-mobile-answers, question-and-answers-service', 'alias_list': '', 'email_address': 'partners@chacha.com', 'phone_number': '800.820.0827', 'description': 'Mobile and Online Answers Service', 'created_at': 'Sat Aug 11 10:47:50 UTC 2007', 'updated_at': 'Thu Jan 02 19:04:26 UTC 2014', 'overview': '

ChaCha is the leading, free real-time answers service that has emerged as the #1 way for advertisers and marketers to reach and engage with the audience of their choice anytime, anywhere. Through its unique “ask-a-smart-friend” platform, ChaCha has answered over two billion questions since launch from more than 32 million unique users per month, and is ranked among comScore’s top 100 websites.

\\n\\n

ChaCha delivers human-powered answers via (chacha.com), SMS text (242-242), iPhone app, Android app, and voice (1-800-2-ChaCha). Working with major brands such as Paramount, NBC Universal Digital, AT&T, Palm, Johnson & Johnson, P&G, Coca-Cola, McDonald’s, and presidential political campaigns, ChaCha.com is one of the fastest growing mobile and online publishers according to Nielsen and Quantcast.

\\n\\n

ChaCha was co-founded by proven innovator and entrepreneur Scott Jones and is funded by VantagePoint Venture Partners, Rho Ventures, Bezos Expeditions; Morton Meyerson, former President and Vice Chairman of EDS as well as Chairman and CEO of Perot Systems; Rod Canion, founding CEO of Compaq Computer; the Simon family; and Jack Gill, Silicon Valley venture capitalist.

', 'image': {'available_sizes': [[[150, 89], 'assets/images/resized/0010/6139/106139v1-max-150x150.jpg'], [[240, 143], 'assets/images/resized/0010/6139/106139v1-max-250x250.jpg'], [[240, 143], 'assets/images/resized/0010/6139/106139v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'ChaCha Question & Answer Service', 'permalink': 'chacha-mobile-search'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder, CEO, Chairman', 'person': {'first_name': 'Scott', 'last_name': 'Jones', 'permalink': 'scott-jones'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Douglas', 'last_name': 'Gilmore', 'permalink': 'douglas-gilmore'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Richard', 'last_name': 'Harroch', 'permalink': 'richard-harroch'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Jim', 'last_name': 'Moloshok', 'permalink': 'jim-moloshok'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Mark', 'last_name': 'Leschly', 'permalink': 'mark-leschly'}}, {'is_past': True, 'title': 'President & Co-Founder', 'person': {'first_name': 'Brad', 'last_name': 'Bostic', 'permalink': 'brad-bostic'}}, {'is_past': True, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Michael', 'last_name': 'Zammuto', 'permalink': 'michael-zammuto'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Shawn', 'last_name': 'Schwegman', 'permalink': 'shawn-schwegman'}}, {'is_past': True, 'title': 'VP / Director, Business Development', 'person': {'first_name': 'David', 'last_name': 'Gilby', 'permalink': 'david-gilby'}}, {'is_past': True, 'title': 'VP Client Care', 'person': {'first_name': 'Cat', 'last_name': 'Enagonio', 'permalink': 'cat-enagonio'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jack', 'last_name': 'Gill', 'permalink': 'jack-gill'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ian', 'last_name': 'Trumpower', 'permalink': 'ian-trumpower'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Morton', 'last_name': 'Meyerson', 'permalink': 'morton-meyerson'}}, {'is_past': True, 'title': 'Special Projects', 'person': {'first_name': 'Steve', 'last_name': 'Kremer', 'permalink': 'steve-kremer'}}, {'is_past': True, 'title': 'Director, Sales', 'person': {'first_name': 'Brian', 'last_name': 'Liebler', 'permalink': 'brian-liebler'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Rod', 'last_name': 'Canion', 'permalink': 'rod-canion'}}, {'is_past': True, 'title': 'Sr. Marketing & Communications Manager', 'person': {'first_name': 'Sara', 'last_name': 'Camden', 'permalink': 'sara-camden'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Greg', 'last_name': 'Seifert', 'permalink': 'greg-seifert'}}, {'is_past': True, 'title': 'VP, Engineering & Operations', 'person': {'first_name': 'Blake', 'last_name': 'Matheny', 'permalink': 'blake-matheny'}}], 'competitions': [{'competitor': {'name': 'Mahalo', 'permalink': 'mahalo'}}, {'competitor': {'name': 'Powerset', 'permalink': 'powerset'}}, {'competitor': {'name': 'kgb', 'permalink': 'kgb'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Swingly', 'permalink': 'swingly'}}, {'competitor': {'name': 'Quora', 'permalink': 'quora'}}, {'competitor': {'name': 'Ask.com', 'permalink': 'ask-com'}}, {'competitor': {'name': 'Siri', 'permalink': 'siri'}}, {'competitor': {'name': 'Aardvark', 'permalink': 'aardvark'}}, {'competitor': {'name': 'AnswerBag', 'permalink': 'answerbag'}}, {'competitor': {'name': 'Formspring', 'permalink': 'formspring'}}, {'competitor': {'name': '4INFO', 'permalink': '4info'}}], 'providerships': [{'title': 'Branding / Experience Design', 'is_past': True, 'provider': {'name': 'Kristian Andersen + Associates', 'permalink': 'kristian-andersen-associates'}}, {'title': '', 'is_past': True, 'provider': {'name': 'MESA Global', 'permalink': 'mesa-global'}}], 'total_money_raised': '$89M', 'funding_rounds': [{'id': 335, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Members', 'last_name': 'of Simon Mall Family', 'permalink': 'members-of-simon-mall-family'}}]}, {'id': 959, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/419-business-insider-raises-3-million-in-fourth-round/', 'source_description': '', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Morton', 'last_name': 'Meyerson', 'permalink': 'morton-meyerson'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Bezos', 'permalink': 'jeff-bezos'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Jones', 'permalink': 'scott-jones'}}]}, {'id': 4856, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2009/01/26/wow-chacha-is-raising-another-30-million/', 'source_description': 'Wow. ChaCha Is Raising Another $30 Million (Update: They Already Did', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 1, 'investments': []}, {'id': 7688, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 16000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 1, 'investments': []}, {'id': 10599, 'round_code': 'e', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1383202/000138320209000006/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 23, 'investments': []}, {'id': 19117, 'round_code': 'f', 'source_url': 'http://techcrunch.com/2010/10/13/chacha-raises-20-million-in-series-f-funding/', 'source_description': 'Text Answers Service ChaCha Nabs $20 Million In Series F', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'VantagePoint Capital Partners', 'permalink': 'vantagepoint-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rho Capital Partners', 'permalink': 'rho-capital-ventures'}, 'person': None}]}, {'id': 21037, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/01/19/qualcomm-invests-3-million-in-qa-service-chacha/', 'source_description': 'Qualcomm Invests $3 Million In Q&A Service ChaCha', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}]}, {'id': 35102, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/01/28/with-2b-questions-answered-qa-vet-chacha-gets-another-14m-to-be-the-quora-for-the-common-man-video/', 'source_description': 'With 2B Questions Answered, Q&A Vet ChaCha Gets Another $14M To Be The Quora For The Common Man [Video]', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'VantagePoint Capital Partners', 'permalink': 'vantagepoint-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rho Capital Partners', 'permalink': 'rho-capital-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '14550 Clay Terrace Blvd.', 'address2': 'Suite 130', 'zip_code': '46032', 'city': 'Carmel', 'state_code': 'IN', 'country_code': 'USA', 'latitude': 39.998641, 'longitude': -86.130347}, {'description': 'West Coast Office', 'address1': '156 2nd St', 'address2': '', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 7270, 'description': \"ChaCha named in Lead411's Hottest Companies in the Midwest list\", 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 21, 'source_url': 'http://www.lead411.com/midwest-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST COMPANIES IN THE MIDWEST\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 9855, 'description': 'ChaCha Hits Record Traffic and Q&A Volume', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://partners.chacha.com/2010/11/08/chacha-hits-record-traffic/?cmpid=marktcprfast', 'source_text': None, 'source_description': 'ChaCha Hits Record Traffic and Q&A Volume', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11368, 'description': 'ChaCha Garners Industry Star Honor at 2010 Mobile Excellence Awards', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 16, 'source_url': 'http://partners.chacha.com/2010/12/16/chacha-garners-industry-star-honor-at-2010-mobile-excellence-awards/', 'source_text': None, 'source_description': 'Mobile Excellence Awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11369, 'description': 'ChaCha.com Traffic Jumps 116 Percent in 2010', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 11, 'source_url': 'http://www.chacha.com/topic/chacha/news/chacha-com-traffic-jumped-116-percent-in-2010-says-comscore', 'source_text': None, 'source_description': 'comScore', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11370, 'description': 'ChaCha Answers 1 Billionth Question', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 6, 'source_url': 'http://www.chacha.com/topic/chacha/news/1-billion-qs-answered', 'source_text': None, 'source_description': 'ChaCha.com', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

ChaCha - Fast, Free Answers From a Smart Friend

'}], 'screenshots': [{'available_sizes': [[[150, 109], 'assets/images/resized/0010/6476/106476v2-max-150x150.png'], [[250, 182], 'assets/images/resized/0010/6476/106476v2-max-250x250.png'], [[450, 328], 'assets/images/resized/0010/6476/106476v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 137], 'assets/images/resized/0019/7766/197766v1-max-150x150.png'], [[250, 228], 'assets/images/resized/0019/7766/197766v1-max-250x250.png'], [[450, 411], 'assets/images/resized/0019/7766/197766v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://searchengineland.com/chacha-tortoise-of-social-search-keeps-plugging-away-52809', 'title': 'ChaCha Keeps Plugging Away - SearchEngineLand - 10/12/10'}, {'external_url': 'http://partners.chacha.com/2010/11/08/chacha-hits-record-traffic/?cmpid=markwebprcrunch', 'title': 'ChaCha Hits Record Traffic and Q&A Volume'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/chacha-com-traffic-jumped-116-percent-in-2010-says-comscore', 'title': 'ChaCha.com Traffic Jumps 116 Percent in 2010'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/entertainment-relationships-and-coupons-top-chacha-user-interests-in-2010', 'title': 'Entertainment, Relationships and Coupons Top ChaCha User Interests in 2010'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/1-billion-qs-answered', 'title': 'ChaCha Answers 1 Billionth Question!'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/does-chacha-offer-free-mobile-sports-alerts', 'title': 'Does ChaCha Offer Free Mobile Sports Alerts?'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/is-chacha-setting-records-just-to-break-them', 'title': 'Is ChaCha Setting Records Just to Break Them?'}, {'external_url': 'http://thenextweb.com/insider/2013/01/28/chacha-lands-14-million-from-vantagepoint-capital-and-rho-ventures-to-invest-in-new-products/', 'title': 'ChaCha nabs $14m from VantagePoint Capital and Rho Ventures for its online and mobile expansion'}, {'external_url': 'http://www.ibj.com/chacha-secures-14m-investment-to-expand-services/PARAMS/article/39222', 'title': 'ChaCha secures $14M investment to expand services'}, {'external_url': 'http://techcrunch.com/2013/01/28/with-2b-questions-answered-qa-vet-chacha-gets-another-14m-to-be-the-quora-for-the-common-man-video/', 'title': 'With 2B Questions Answered, Q&A Vet ChaCha Gets Another $14M To Be The Quora For The Common Man [Video]'}, {'external_url': 'http://venturebeat.com/2013/01/28/you-got-questions-cha-chas-got-14m-and-answers/', 'title': \"You got questions? ChaCha's got $14M and answers\"}, {'external_url': 'http://www.socaltech.com/chacha_aims_at_los_angeles_office_with_new_funding/s-0047434.html', 'title': 'ChaCha Aims At Los Angeles Office With New Funding'}, {'external_url': 'http://pandodaily.com/2013/01/28/chacha-the-other-q-a-site-raises-14-million-how-it-can-have-a-shot-against-the-big-boys/', 'title': 'ChaCha, the other Q & A site, raises $14 million. How it can have a shot against the big boys'}, {'external_url': 'http://go.bloomberg.com/tech-deals/2013-01-28-can-a-qa-site-be-a-real-business-chacha-thinks-it-has-the-answer/', 'title': 'Can a Q&A Site Be a Real Business? $14M Will Help ChaCha Find Out'}, {'external_url': 'http://www.insideindianabusiness.com/newsitem.asp?ID=57665', 'title': \"'Tremendous Growth' Leads to Big Investment\"}, {'external_url': 'http://finance.fortune.cnn.com/2013/01/28/venture-capital-deals-279/', 'title': 'Venture capital deals'}, {'external_url': 'http://allthingsd.com/20130128/chacha-still-grinding-away-at-this-online-qa-thing-raises-another-14m/', 'title': 'ChaCha, Still Grinding Away at This Online Q&A Thing, Raises Another $14M'}, {'external_url': 'http://www.indystar.com/article/20130128/BUSINESS/301280334/ChaCha-attracts-14-million-new-funding', 'title': 'ChaCha attracts $14 million in new funding'}, {'external_url': 'http://searchengineland.com/with-14-million-more-qa-site-chacha-soldiers-on-146554', 'title': 'With $14 Million More Q&A Site ChaCha Soldiers On'}, {'external_url': 'http://www.pehub.com/183219/chacha-ceo-we-are-masters-pivot/', 'title': 'ChaCha CEO: We Are Masters of the Pivot'}, {'external_url': 'http://vator.tv/news/2013-01-28-chacha-raises-14m-from-vantagepoint-and-rho-ventures', 'title': 'ChaCha raises $14M from VantagePoint and Rho Ventures Read more at http://vator.tv/news/2013-01-28-chacha-raises-14m-from-vantagepoint-and-rho-ventures#YS5kzWvwoc2rHUY4.99 '}, {'external_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130128e91saxh04&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130128e91saxh04%26from%3dalert%26pid%3d32', 'title': 'ChaCha Cashed Up by Insiders for Real-Time Q&A '}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec0'), 'name': 'Sportingo', 'permalink': 'sportingo', 'crunchbase_url': 'http://www.crunchbase.com/company/sportingo', 'homepage_url': 'http://www.sportingo.com', 'blog_url': 'http://sportingoblog.blogspot.com/', 'blog_feed_url': 'http://sportingoblog.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'sports, news', 'alias_list': '', 'email_address': 'info@sportingo.com', 'phone_number': '', 'description': 'Sports News and Entertainment', 'created_at': 'Mon Aug 13 22:38:36 UTC 2007', 'updated_at': 'Tue Jul 07 17:33:27 UTC 2009', 'overview': '

Sportingo is a sports news company that provides a global platform for sports fans to write, talk and consume sport media online. The Company offers two main features: a platform on which users can write and rate each others’ articles and an interactive centralized sports media guide.

', 'image': {'available_sizes': [[[133, 61], 'assets/images/resized/0000/4282/4282v2-max-150x150.png'], [[133, 61], 'assets/images/resized/0000/4282/4282v2-max-250x250.png'], [[133, 61], 'assets/images/resized/0000/4282/4282v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Sportingo', 'permalink': 'sportingo'}, {'name': \"What's Online\", 'permalink': 'what-s-online'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': \"Ze'ev\", 'last_name': 'Rozov', 'permalink': 'zeev-rozov'}}, {'is_past': False, 'title': 'Marketing Manager', 'person': {'first_name': 'Tal', 'last_name': 'Rozow', 'permalink': 'tal-rozow'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$3.2M', 'funding_rounds': [{'id': 972, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 3200000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Ingenious Media', 'permalink': 'ingenious-media'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.crunchbase.com/admin/db_requests/909/download_attachment?email_attachment_id=148', 'source_description': 'TIXDAQ STARTS TO BUZZ ABOUT SPORTS AND ACQUIRES SPORTINGO NETWORK', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 5, 'acquiring_company': {'name': 'tixdaq', 'permalink': 'tixdaq'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': '46733', 'city': None, 'state_code': None, 'country_code': 'ISR', 'latitude': 17.08881, 'longitude': -96.76492}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec1'), 'name': 'Akamai Technologies', 'permalink': 'akamai-technologies', 'crunchbase_url': 'http://www.crunchbase.com/company/akamai-technologies', 'homepage_url': 'http://www.akamai.com', 'blog_url': 'https://blogs.akamai.com', 'blog_feed_url': '', 'twitter_username': 'Akamai', 'category_code': 'enterprise', 'number_of_employees': 1000, 'founded_year': 1998, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'broadcast, acceleration, content-distribution, cdn, adn, intelligent-platform, web-traffic, iaas', 'alias_list': '', 'email_address': '', 'phone_number': '(877) 4-AKAMAI', 'description': '', 'created_at': 'Tue Aug 14 09:32:11 UTC 2007', 'updated_at': 'Mon Dec 02 13:12:08 UTC 2013', 'overview': '

Akamai is a leading web services provider based in Cambridge, Massachusetts. It is the primary player in content delivery expediting space. It was started in 1998 to use advanced computing techniques to deliver a streamlined web experience to the end user. Its first customer was Yahoo.

\\n\\n

Since 1998 Akamai has retained content delivery as its core business, but has also branched out with two tiers of professional Internet consulting services along with related digital media and site delivery solutions. These businesses target firms seeking to deliver a rich user experience quickly and consistently.

', 'image': {'available_sizes': [[[105, 45], 'assets/images/resized/0000/4285/4285v1-max-150x150.png'], [[105, 45], 'assets/images/resized/0000/4285/4285v1-max-250x250.png'], [[105, 45], 'assets/images/resized/0000/4285/4285v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Vice Chairman', 'person': {'first_name': 'Arthur', 'last_name': 'Bilger', 'permalink': 'arthur-bilger'}}, {'is_past': False, 'title': 'Co-Founder and Chief Scientist', 'person': {'first_name': 'Tom', 'last_name': 'Leighton', 'permalink': 'tom-leighton'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Marketing Officer', 'person': {'first_name': 'Brad', 'last_name': 'Rinklin', 'permalink': 'brad-rinklin'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Information Officer', 'person': {'first_name': 'Kumud', 'last_name': 'Kalia', 'permalink': 'kumud-kalia'}}, {'is_past': False, 'title': 'Vice President of Networks & Chief Network Architect', 'person': {'first_name': 'Noam', 'last_name': 'Freedman', 'permalink': 'noam-freedman'}}, {'is_past': False, 'title': 'Executive Vice President & Chief Financial Officer', 'person': {'first_name': 'Jim', 'last_name': 'Benson', 'permalink': 'jim-benson'}}, {'is_past': False, 'title': 'Senior Vice President and Chief Development Officer', 'person': {'first_name': 'Robert', 'last_name': 'Wood', 'permalink': 'robert-wood'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager of the Media Division', 'person': {'first_name': 'Bill', 'last_name': 'Wheaton', 'permalink': 'bill-wheaton'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, Emerging Products Division', 'person': {'first_name': 'Willie', 'last_name': 'Tejada', 'permalink': 'willie-tejada'}}, {'is_past': False, 'title': 'Vice President, Global Services & Support', 'person': {'first_name': 'Adam', 'last_name': 'Karon', 'permalink': 'adam-karon'}}, {'is_past': False, 'title': 'Executive Vice President, Platform Division', 'person': {'first_name': 'Robert', 'last_name': 'Blumofe', 'permalink': 'robert-blumofe'}}, {'is_past': False, 'title': 'SVP and GM Web Experience Business Unit', 'person': {'first_name': 'Mike', 'last_name': 'Afergan', 'permalink': 'mike-afergan'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Michael', 'last_name': 'Weider', 'permalink': 'michael-weider'}}, {'is_past': False, 'title': 'VP of Enginering, Cloud Platforms', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': False, 'title': 'Executive Vice President, General Counsel, and Corporate Secretary', 'person': {'first_name': 'Melanie', 'last_name': 'Haratunian', 'permalink': 'melanie-haratunian'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Stanley', 'permalink': 'mike-stanley'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Pamela', 'last_name': 'J. Craig', 'permalink': 'pamela-j-craig'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Martin', 'last_name': 'Hannigan', 'permalink': 'martin-hannigan'}}, {'is_past': False, 'title': 'President, Worldwide Operations', 'person': {'first_name': 'Robert', 'last_name': 'Hughes', 'permalink': 'robert-hughes'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager', 'person': {'first_name': 'Jim', 'last_name': 'Ebzery', 'permalink': 'jim-ebzery'}}, {'is_past': False, 'title': 'Vice President & General Manager, Carrier Products Division', 'person': {'first_name': 'Mick', 'last_name': 'Scully', 'permalink': 'mick-scully'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, Security Division', 'person': {'first_name': 'Ronni', 'last_name': 'Zehavi', 'permalink': 'ronni-zehavi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jill', 'last_name': 'Greenthal', 'permalink': 'jill-greenthal'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Frederic', 'last_name': 'V. Salerno', 'permalink': 'frederic-v-salerno'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Martin', 'last_name': 'Coyne II', 'permalink': 'martin-coyne-ii'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Petronaci', 'permalink': 'michael-petronaci'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Ference', 'permalink': 'matt-ference'}}, {'is_past': False, 'title': 'Sr Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Foley', 'permalink': 'rob-foley'}}, {'is_past': False, 'title': 'Senior TPM', 'person': {'first_name': 'Yair', 'last_name': 'Greenbaum', 'permalink': 'yair-greenbaum'}}, {'is_past': False, 'title': 'President of Products and Development', 'person': {'first_name': 'Rick', 'last_name': 'McConnell', 'permalink': 'rick-mcconnell'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'James', 'last_name': 'Gemmell', 'permalink': 'james-gemmell'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, EMEA', 'person': {'first_name': 'Mark', 'last_name': 'Vargo', 'permalink': 'mark-vargo'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Monte', 'last_name': 'E. Ford', 'permalink': 'monte-e-ford'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Geoffrey', 'last_name': 'Moore', 'permalink': 'geoffrey-moore-2'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Naomi', 'last_name': 'O. Seligman', 'permalink': 'naomi-o-seligman'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mark', 'last_name': 'Laing', 'permalink': 'mark-laing'}}, {'is_past': True, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Seelig', 'permalink': 'jonathan-seelig'}}, {'is_past': True, 'title': 'Chr & CEO', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Paul', 'last_name': 'Sagan', 'permalink': 'paul-sagan'}}, {'is_past': True, 'title': 'Executive, including CEO, President & COO', 'person': {'first_name': 'Paul', 'last_name': 'Sagan', 'permalink': 'paul-sagan'}}, {'is_past': True, 'title': 'CTO of EMEA', 'person': {'first_name': 'David', 'last_name': 'Drai', 'permalink': 'david-drai'}}, {'is_past': True, 'title': 'Chief Technologist, Media & CDN Engineering', 'person': {'first_name': 'Kevin', 'last_name': 'Freund', 'permalink': 'kevin-freund'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'J.D.', 'last_name': 'Sherman', 'permalink': 'j-d-sherman'}}, {'is_past': True, 'title': 'VP of Product Strategy', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': True, 'title': 'Vice President of Finance', 'person': {'first_name': 'Julie', 'last_name': 'M.B . Bradely', 'permalink': 'julie-m-b-bradely'}}, {'is_past': True, 'title': 'Vice President & General Manager, International', 'person': {'first_name': 'Carlos', 'last_name': 'Ramón', 'permalink': 'carlos-ramn'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jay', 'last_name': 'Parikh', 'permalink': 'jay-parikh'}}, {'is_past': True, 'title': 'VP of Sales, Service and Marketing', 'person': {'first_name': 'Robert', 'last_name': 'Hughes', 'permalink': 'robert-hughes'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Chris', 'last_name': 'Schoettle', 'permalink': 'chris-schoettle'}}, {'is_past': True, 'title': 'Director, Sales International', 'person': {'first_name': 'Robert', 'last_name': 'Gribnau', 'permalink': 'robert-gribnau'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Witold', 'last_name': 'Stankiewicz', 'permalink': 'witold-stankiewicz'}}, {'is_past': True, 'title': 'Leadership (Multiple) - Solutions, Sales, Services', 'person': {'first_name': 'Mridul', 'last_name': 'Agarwal', 'permalink': 'mridul-agarwal'}}, {'is_past': True, 'title': 'Corporate Investor', 'person': {'first_name': 'Navin', 'last_name': 'Chaddha', 'permalink': 'navin-chaddha'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Brain', 'last_name': 'Carroll', 'permalink': 'brain-carroll'}}, {'is_past': True, 'title': 'Senior Architect', 'person': {'first_name': 'Bradley', 'last_name': 'C. Kuszmaul', 'permalink': 'bradley-c-kuszmaul'}}, {'is_past': True, 'title': 'Customer Transitions', 'person': {'first_name': 'Rich', 'last_name': 'Day', 'permalink': 'rich-day'}}, {'is_past': True, 'title': 'Marketing Services Manager', 'person': {'first_name': 'Todd', 'last_name': 'Scholl', 'permalink': 'todd-scholl-2'}}, {'is_past': True, 'title': 'Senior Product Architect', 'person': {'first_name': 'Luu', 'last_name': 'Tran', 'permalink': 'luu-tran'}}, {'is_past': True, 'title': 'Technical Support Engineer', 'person': {'first_name': 'Samuel', 'last_name': 'Alba', 'permalink': 'samuel-alba'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Shyam', 'last_name': 'Desirazu', 'permalink': 'shyam-desirazu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nidhi', 'last_name': 'Shah', 'permalink': 'nidhi-shah'}}, {'is_past': True, 'title': 'Manager, Channel Sales, Eastern Region', 'person': {'first_name': 'Matthew', 'last_name': 'McSweeney', 'permalink': 'matthew-mcsweeney'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Joe', 'last_name': 'Waltman', 'permalink': 'joe-waltman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Todd', 'last_name': 'Dagres', 'permalink': 'todd-dagres'}}, {'is_past': True, 'title': 'Sr. Director Business Development, Broadband', 'person': {'first_name': 'Syd', 'last_name': 'Birenbaum', 'permalink': 'syd-birenbaum'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Michael', 'last_name': 'A. Ruffolo', 'permalink': 'michael-a-ruffolo'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'David', 'last_name': 'Barrett', 'permalink': 'david-barrett'}}, {'is_past': True, 'title': 'Head, P2P Initiatives', 'person': {'first_name': 'Travis', 'last_name': 'Kalanick', 'permalink': 'travis-kalanick'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Kenny', 'permalink': 'david-kenny'}}, {'is_past': True, 'title': 'General Manager, Business Development', 'person': {'first_name': 'John', 'last_name': 'Shumway', 'permalink': 'john-shumway'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Steven', 'last_name': 'Wolfe Pereira', 'permalink': 'steven-wolfe-pereira'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Curtis', 'last_name': 'Chambers', 'permalink': 'curtis-chambers'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Will', 'last_name': 'Koffel', 'permalink': 'will-koffel'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Clarissa', 'last_name': 'Riggins', 'permalink': 'clarissa-riggins'}}, {'is_past': True, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Youssef', 'last_name': 'Ben-Youssef', 'permalink': 'youssef-ben-youssef'}}, {'is_past': True, 'title': 'Director, Communications', 'person': {'first_name': 'Tammy', 'last_name': 'H. Nam', 'permalink': 'tammy-h-nam'}}, {'is_past': True, 'title': 'Independent Director, Board of Directors', 'person': {'first_name': 'C.', 'last_name': 'Kim Goodwin', 'permalink': 'c-kim-goodwin'}}, {'is_past': True, 'title': 'Product Line Director', 'person': {'first_name': 'Somu', 'last_name': 'Vadali', 'permalink': 'somu-vadali'}}, {'is_past': True, 'title': 'Sr. Media Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Arnold', 'permalink': 'andrew-arnold'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Bill', 'last_name': 'Halter', 'permalink': 'bill-halter'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Terry', 'last_name': 'McGuire', 'permalink': 'terry-mcguire'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'David', 'last_name': 'Rush', 'permalink': 'david-rush'}}, {'is_past': True, 'title': '(Nine Systems)', 'person': {'first_name': 'John', 'last_name': 'Ayers', 'permalink': 'john-ayers'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Terrance', 'last_name': 'G. McGuire', 'permalink': 'terrance-g-mcguire'}}], 'competitions': [{'competitor': {'name': 'CDNetworks', 'permalink': 'cdnetworks'}}, {'competitor': {'name': 'EdgeCast Networks', 'permalink': 'edgecast'}}, {'competitor': {'name': 'Limelight Networks', 'permalink': 'limelightnetworks'}}, {'competitor': {'name': 'BitTorrent', 'permalink': 'bittorrent'}}, {'competitor': {'name': 'BitGravity', 'permalink': 'bitgravity'}}, {'competitor': {'name': 'Velocix', 'permalink': 'velocix'}}, {'competitor': {'name': 'Cotendo', 'permalink': 'cotendo'}}, {'competitor': {'name': 'Internap', 'permalink': 'internap'}}, {'competitor': {'name': 'Fastly', 'permalink': 'fastly'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Swimfish ', 'permalink': 'swimfish'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2007/04/12/payday-for-red-swoosh-15-million-from-akamai/', 'source_description': 'Payday for Red Swoosh 15 million from Akamai/', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Red Swoosh', 'permalink': 'red-swoosh'}}, {'price_amount': 95000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/10/21/akamai-bets-95-million-on-better-ad-targetting-buys-acerno/', 'source_description': 'TechCrunch', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 21, 'company': {'name': 'acerno', 'permalink': 'acerno'}}, {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.networkworld.com/news/2005/0315akamai.html', 'source_description': 'Akamai Acquires Speedera Networks', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Speedera Networks', 'permalink': 'speedera-networks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-akamai-acquires-mobile-content-platform-velocitude/', 'source_description': 'Akamai Acquires Mobile Content Platform Velocitude', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 10, 'company': {'name': 'Velocitude', 'permalink': 'velocitude'}}, {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.akamai.com/html/about/press/releases/2007/press_020507.html', 'source_description': 'Akamai Press Release', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Netli', 'permalink': 'netli'}}, {'price_amount': 268000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/12/22/done-deal-akamai-buys-rival-cotendo-for-268-million/', 'source_description': 'Done Deal – Akamai Buys Rival Cotendo For $268 Million', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 27, 'company': {'name': 'Cotendo', 'permalink': 'cotendo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/02/08/akamai-acquires-website-performance-company-blaze-software/', 'source_description': 'Akamai Acquires Website Performance Company Blaze Software', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 8, 'company': {'name': 'Blaze.io', 'permalink': 'blaze-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/699925/akamai-acquires-fastsoft', 'source_description': 'Akamai Acquires FastSoft', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 13, 'company': {'name': 'FastSoft', 'permalink': 'fastsoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2012/11/12/daily13-Akamai-acquires-content-delivery-network-biz-Verivue-.html', 'source_description': 'Akamai acquires content delivery network biz Verivue ', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Verivue', 'permalink': 'verivue'}}, {'price_amount': 370000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/12/02/akamai-buys-ddos-prevention-specialist-prolexic-for-370m-to-ramp-up-security-offerings/', 'source_description': 'Akamai Buys DDoS Prevention Specialist Prolexic For $370M To Ramp Up Security Offerings For Enterprises', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'company': {'name': 'Prolexic Technologies', 'permalink': 'prolexic'}}], 'offices': [{'description': None, 'address1': '8 Cambridge Center', 'address2': None, 'zip_code': '02142', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.364059, 'longitude': -71.08907}], 'milestones': [{'id': 4971, 'description': 'Akamai Reports All Time Single Day Peak of 3.45 Terabits Per Second', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 9, 'source_url': 'http://www.beet.tv/2010/04/akamai-reports-all-time-single-day-peak-of-345-terabits-per-second-on-april-9.html', 'source_text': None, 'source_description': 'Akamai Reports All Time Single Day Peak of 3.45 Terabits Per Second on April 9', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Akamai Technologies', 'permalink': 'akamai-technologies'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1999, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'NASDAQ:AKAM'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

Akamai Technologies demoing at FinovateFall 2012

'}, {'embed_code': '', 'description': '

Akamai Technologies demoing at FinovateEurope 2013

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3671/43671v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3671/43671v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3671/43671v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Akamai_Technologies', 'title': 'Wikipedia page'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec3'), 'name': 'Splashup', 'permalink': 'splashup', 'crunchbase_url': 'http://www.crunchbase.com/company/splashup', 'homepage_url': 'http://splashup.com', 'blog_url': 'http://www.splashup.com/blog', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Thu Aug 16 11:11:46 UTC 2007', 'updated_at': 'Mon Apr 01 11:25:03 UTC 2013', 'overview': '

Splashup, formerly known as fauxto, is an online image editing service that provides some advanced tools and is unique for its incorporation of image editing layer effects. The site is still in beta, and so does not offer full editing capabilities yet.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0001/1664/11664v1-max-150x150.png'], [[242, 89], 'assets/images/resized/0001/1664/11664v1-max-250x250.png'], [[242, 89], 'assets/images/resized/0001/1664/11664v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Splashup', 'permalink': 'splashup'}], 'relationships': [{'is_past': None, 'title': 'Board', 'person': {'first_name': 'Dave', 'last_name': 'Brushinski', 'permalink': 'dave-brushinski'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$10k', 'funding_rounds': [{'id': 374, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 10000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "# NOTE: Even though the exercise asks for 1000 companies, results have been limited to 100 companies for memory purposes\n", + "\n", + "results11 = list(collection.find({\"founded_month\": {\"$gt\": 6}}).limit(100))\n", + "\n", + "print(len(results11))\n", + "\n", + "print(results11)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 12. All the companies that have been 'deadpooled' after the third year." + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "926\n" + ] + } + ], + "source": [ + "results12 = list(collection.find({\"deadpooled_year\": {\"$gt\": 3}}))\n", + "\n", + "print(len(results12))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 13. All the companies founded before 2000 that have and acquisition amount of more than 10.000.000" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "23\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'name': 'Amazon', 'permalink': 'amazon', 'crunchbase_url': 'http://www.crunchbase.com/company/amazon', 'homepage_url': 'http://amazon.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'amazon', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 1994, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'virtualstorage, onlineshopping, virtualserver, crowdsource, grocery', 'alias_list': '', 'email_address': '', 'phone_number': '(206) 266-1000', 'description': '', 'created_at': 'Tue Jul 31 06:46:49 UTC 2007', 'updated_at': 'Wed Oct 30 17:13:43 UTC 2013', 'overview': '

Amazon.com, Inc. (AMZN), is a leading global Internet company and one of the most trafficked Internet retail destinations worldwide.

\\n\\n

Amazon is one of the first companies to sell products deep into the long tail by housing them in numerous warehouses and distributing products from many partner companies. Amazon directly sells or acts as a platform for the sale of a broad range of products. These include books, music, videos, consumer electronics, clothing and household products. The majority of Amazon’s sales are products sold by Amazon, though many are from third-party sellers.

\\n\\n

Amazon was founded in 1994 and is headquartered in Seattle, Washington. It has direct international operations in the United States, Canada, France, Germany, Japan, and the United Kingdom.

\\n\\n

Since 2004, Amazon has begun to rapidly expand its web services arsenal. Products such as Amazon EC2 (Elastic Compute Cloud) and Amazon S3 (Simple Storage System), Amazon Route 53 have been large successes.

\\n\\n

Some of Amazon’s recent acquisitions include Shopbop (2006), Abebooks (2008), Zappos (2009), LOVEFiLM (2011).

\\n\\n

As of Q1 2011, Amazon has approximately 137 million active customers worldwide. It was also reported that there are 2 million merchants selling on Amazon equaling a third of the total listings. North America currently represents 55.4% of sales with the other 44.6% in the International market.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/3898/3898v1-max-150x150.jpg'], [[200, 89], 'assets/images/resized/0000/3898/3898v1-max-250x250.jpg'], [[200, 89], 'assets/images/resized/0000/3898/3898v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Amazon EC2', 'permalink': 'amazon-ec2'}, {'name': 'Amazon S3', 'permalink': 'amazon-s3'}, {'name': 'Amazon Mechanical Turk', 'permalink': 'mechanical-turk'}, {'name': 'Amazon Fresh', 'permalink': 'amazon-fresh'}, {'name': 'Amazon Kindle', 'permalink': 'amazon-kindle'}, {'name': 'Amazon Video on Demand', 'permalink': 'amazon-video-on-demand'}, {'name': 'Amazon Unbox', 'permalink': 'amazon-unbox'}, {'name': 'Amazon EBS', 'permalink': 'amazon-ebs'}, {'name': 'Amazon BookSurge', 'permalink': 'booksurge'}, {'name': 'Amazon Web Services', 'permalink': 'amazon-web-services'}, {'name': 'Amazon Kindle 2', 'permalink': 'kindle'}, {'name': 'Amazon Elastic MapReduce', 'permalink': 'amazon-elastic-mapreduce'}, {'name': 'Amazon Kindle DX', 'permalink': 'amazon-kindle-dx'}, {'name': 'Kindle for iPhone', 'permalink': 'kindle-for-iphone'}, {'name': 'Amazon Studios', 'permalink': 'amazon-studios'}, {'name': 'A2Z Development', 'permalink': 'a2z-development'}, {'name': 'A9.com', 'permalink': 'a9-com'}, {'name': 'Alexa Internet', 'permalink': 'alexa-internet'}, {'name': 'Audible.com', 'permalink': 'audible-com'}, {'name': 'IMDb', 'permalink': 'imdb'}, {'name': 'Lovefilm', 'permalink': 'lovefilm'}, {'name': 'Woot', 'permalink': 'woot'}, {'name': 'Quidsi', 'permalink': 'quidsi'}, {'name': 'Touchco', 'permalink': 'touchco'}, {'name': 'SnapTell', 'permalink': 'snaptell'}, {'name': 'Lexcycle', 'permalink': 'lexcycle'}, {'name': 'CustomFlix', 'permalink': 'customflix'}, {'name': 'Tastemakers', 'permalink': 'tastemakers'}, {'name': 'Shopbop', 'permalink': 'shopbop'}, {'name': 'Fabric.com', 'permalink': 'fabric-com'}, {'name': 'Without A Box', 'permalink': 'without-a-box'}, {'name': 'Mobipocket.com', 'permalink': 'mobipocket-com'}, {'name': 'BookSurge', 'permalink': 'booksurge-2'}, {'name': 'CDNOW', 'permalink': 'cdnow'}, {'name': 'Accept.com', 'permalink': 'accept-com'}, {'name': 'Alexa', 'permalink': 'alexa'}, {'name': 'Exchange.com', 'permalink': 'exchange-com'}, {'name': 'Bookpages', 'permalink': 'bookpages'}, {'name': 'Amazon Route 53', 'permalink': 'amazon-route-53'}, {'name': 'Kindle Fire', 'permalink': 'kindle-fire'}, {'name': 'Kindle Touch', 'permalink': 'kindle-touch'}], 'relationships': [{'is_past': False, 'title': 'Founder, President, CEO, & Chairman', 'person': {'first_name': 'Jeff', 'last_name': 'Bezos', 'permalink': 'jeff-bezos'}}, {'is_past': False, 'title': 'VP & CTO', 'person': {'first_name': 'Werner', 'last_name': 'Vogels', 'permalink': 'werner-vogels'}}, {'is_past': False, 'title': 'Senior Vice President and Chief Financial Officer', 'person': {'first_name': 'Thomas', 'last_name': 'Szkutak', 'permalink': 'thomas-szkutak'}}, {'is_past': False, 'title': 'Vice President, General Counsel and Secretary', 'person': {'first_name': 'David', 'last_name': 'A. Zapolsky', 'permalink': 'david-a-zapolsky'}}, {'is_past': False, 'title': 'Vice President, General Manager of the Amazon Marketplace', 'person': {'first_name': 'Peter', 'last_name': 'Faricy', 'permalink': 'peter-faricy'}}, {'is_past': False, 'title': 'Vice President, Global Payments Products', 'person': {'first_name': 'Maxwell', 'last_name': 'Bardon', 'permalink': 'maxwell-bardon'}}, {'is_past': False, 'title': 'VP, Digital Music', 'person': {'first_name': 'Steve', 'last_name': 'Boom', 'permalink': 'stevee-boom'}}, {'is_past': False, 'title': 'SVP, Consumer Business / Various Positions', 'person': {'first_name': 'Jeffrey', 'last_name': 'Wilke', 'permalink': 'jeffrey-wilke'}}, {'is_past': False, 'title': 'SVP, Seller Services', 'person': {'first_name': 'Sebastian', 'last_name': 'Gunningham', 'permalink': 'sebastian-gunningham'}}, {'is_past': False, 'title': 'VP, Website Application Platform', 'person': {'first_name': 'Colin', 'last_name': 'Bodell', 'permalink': 'colin-bodell'}}, {'is_past': False, 'title': 'SVP, Ecommerce Platform', 'person': {'first_name': 'H. Brian', 'last_name': 'Valentine', 'permalink': 'h-brian-valentine'}}, {'is_past': False, 'title': 'SVP, Worldwide Digital Media', 'person': {'first_name': 'Steven', 'last_name': 'Kessel', 'permalink': 'steven-kessel'}}, {'is_past': False, 'title': 'Senior Vice President, Business Development', 'person': {'first_name': 'Jeffrey', 'last_name': 'Blackburn', 'permalink': 'jeffrey-blackburn'}}, {'is_past': False, 'title': 'SVP, Web Services', 'person': {'first_name': 'Andrew', 'last_name': 'Jassy', 'permalink': 'andrew-jassy'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Tom', 'last_name': 'Alberg', 'permalink': 'tom-alberg'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bing', 'last_name': 'Gordon', 'permalink': 'bing-gordon'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Thomas O.', 'last_name': 'Ryder', 'permalink': 'thomas-o-ryder'}}, {'is_past': False, 'title': 'VP, Digital Music & Video', 'person': {'first_name': 'Bill', 'last_name': 'Carr', 'permalink': 'bill-carr'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Senior Manager, Traffic', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': False, 'title': 'Senior Technical Program Manager', 'person': {'first_name': 'Gareth', 'last_name': 'Jones', 'permalink': 'gareth-jones'}}, {'is_past': False, 'title': 'System Engineer', 'person': {'first_name': 'Manan', 'last_name': 'Kapadia', 'permalink': 'manan-kapadia'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Shaman', 'last_name': \"D'Souza\", 'permalink': 'shaman-dsouza'}}, {'is_past': False, 'title': 'Senior Product Manager, Search & Discovery', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': False, 'title': 'Software Engineer II', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': False, 'title': 'Product Manager - New Service Incubation', 'person': {'first_name': 'Sumit', 'last_name': 'Chugh', 'permalink': 'sumit-chugh'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Kadir', 'last_name': 'Rathnavelu', 'permalink': 'kadir-rathnavelu'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Marcos', 'last_name': 'Moralez', 'permalink': 'marcos-moralez'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yoonie', 'last_name': 'Kim', 'permalink': 'yoonie-kim'}}, {'is_past': False, 'title': 'Customer Experience Strategy', 'person': {'first_name': 'Tac', 'last_name': 'Anderson', 'permalink': 'tac-anderson'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Papa', 'permalink': 'joseph-papa'}}, {'is_past': False, 'title': 'Director, Business Development', 'person': {'first_name': 'Young', 'last_name': 'Lee', 'permalink': 'young-lee'}}, {'is_past': False, 'title': 'Head of Worldwide Brand and Mass Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Donkin', 'permalink': 'andy-donkin'}}, {'is_past': False, 'title': 'Head of Display Advertising', 'person': {'first_name': 'Tom', 'last_name': 'Wilson', 'permalink': 'tom-wilson'}}, {'is_past': False, 'title': 'Sr. Product Manager, Amazon Global Payments', 'person': {'first_name': 'Andy', 'last_name': 'Kleitsch', 'permalink': 'andy-kleitsch'}}, {'is_past': False, 'title': 'AWS Business Development', 'person': {'first_name': 'Pieter', 'last_name': 'Kemps', 'permalink': 'pieter-kemps'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jeremy', 'last_name': 'Przasnyski', 'permalink': 'jeremy-przasnyski'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mikhail', 'last_name': 'Levkovsky', 'permalink': 'mikhail-levkovsky'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jamie', 'last_name': 'S. Gorelick', 'permalink': 'jamie-s-gorelick'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Avinash', 'last_name': 'Cavale', 'permalink': 'avinash-cavale'}}, {'is_past': False, 'title': 'Technical Program Manager', 'person': {'first_name': 'Kieran Seán', 'last_name': 'Fitzpatrick', 'permalink': 'kieran-sen-fitzpatrick'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Paik', 'permalink': 'dan-paik'}}, {'is_past': False, 'title': 'SVP, International Consumer Business', 'person': {'first_name': 'Diego', 'last_name': 'Piacentini', 'permalink': 'diego-piacentini'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'John Seely', 'last_name': 'Brown', 'permalink': 'john-seely-brown'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Myrtle S.', 'last_name': 'Potter', 'permalink': 'myrtle-s-potter'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Patricia Q.', 'last_name': 'Stonesifer', 'permalink': 'patricia-q-stonesifer'}}, {'is_past': False, 'title': 'VP, Wordwide Controller & Principal Accounting Officer', 'person': {'first_name': 'Shelley', 'last_name': 'Reynolds', 'permalink': 'shelley-reynolds'}}, {'is_past': False, 'title': 'General Manager, Amazon Product Ads', 'person': {'first_name': 'Joe', 'last_name': 'Walowski', 'permalink': 'joe-walowski'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Anuvrat', 'last_name': 'Singh', 'permalink': 'anuvrat-singh'}}, {'is_past': False, 'title': 'Managing Director, Amazon.co.uk', 'person': {'first_name': 'Christopher', 'last_name': 'North', 'permalink': 'christopher-north'}}, {'is_past': False, 'title': 'Development Manager', 'person': {'first_name': 'Anuj', 'last_name': 'Mathur', 'permalink': 'anuj-mathur-2'}}, {'is_past': False, 'title': 'Software Development Engineer II', 'person': {'first_name': 'Desmond', 'last_name': 'Zhou', 'permalink': 'desmond-zhou'}}, {'is_past': False, 'title': 'Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Stover', 'permalink': 'michael-stover'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'pankaj', 'last_name': 'kumar', 'permalink': 'pankaj-kumar-3'}}, {'is_past': False, 'title': 'Senior Product Manager--Core Transaction Processing, GPS', 'person': {'first_name': 'Leah', 'last_name': 'Farmer', 'permalink': 'leah-farmer'}}, {'is_past': False, 'title': 'Senior Product Manager Intern', 'person': {'first_name': 'Brian', 'last_name': 'Radmin', 'permalink': 'brian-radmin'}}, {'is_past': False, 'title': 'VP, Digital Store Platform', 'person': {'first_name': 'Colin', 'last_name': 'Bodell', 'permalink': 'colin-bodell'}}, {'is_past': False, 'title': 'Director, Kindle', 'person': {'first_name': 'Tim', 'last_name': 'Twerdahl', 'permalink': 'tim-twerdahl'}}, {'is_past': False, 'title': 'Director Software Development', 'person': {'first_name': 'Bob', 'last_name': 'Tekiela', 'permalink': 'bob-tekiela'}}, {'is_past': False, 'title': 'SDEII - Search & Discovery', 'person': {'first_name': 'Marcello', 'last_name': 'Oliva', 'permalink': 'marcello-oliva'}}, {'is_past': False, 'title': 'Head of Engineering, New AWS Service', 'person': {'first_name': 'Kevin', 'last_name': 'Gillett', 'permalink': 'kevin-gillett'}}, {'is_past': False, 'title': 'Advertising Sales Director', 'person': {'first_name': 'Jamie', 'last_name': 'Lomas', 'permalink': 'jamie-lomas'}}, {'is_past': False, 'title': 'Director, Mobile Advertising', 'person': {'first_name': 'Matt', 'last_name': 'Carr', 'permalink': 'matt-carr'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Brandon', 'last_name': 'Watson', 'permalink': 'brandon-watson'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Henson', 'permalink': 'jonathan-henson'}}, {'is_past': False, 'title': 'Director Compute Engineering', 'person': {'first_name': 'Chris', 'last_name': 'Pettey', 'permalink': 'chris-pettey-2'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Alain', 'last_name': 'Monie', 'permalink': 'alain-monie'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jonathan', 'last_name': 'Rubinstein', 'permalink': 'jonathan-rubinstein'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Charles', 'last_name': 'Groom', 'permalink': 'charles-groom'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Supriyo', 'last_name': 'Roy', 'permalink': 'supriyo-roy'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Paik', 'permalink': 'dan-paik'}}, {'is_past': True, 'title': 'Co - Founder / CEO (Incubator Inc.)', 'person': {'first_name': 'Thorne', 'last_name': 'Sparkman', 'permalink': 'thorne-sparkman'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Warren', 'last_name': 'C. Jenson', 'permalink': 'warren-c-jenson'}}, {'is_past': True, 'title': 'VP-Finance (CFO), Digital Media & Books', 'person': {'first_name': 'Craig', 'last_name': 'Calle', 'permalink': 'craig-calle'}}, {'is_past': True, 'title': 'VP/CFO - NA Retail', 'person': {'first_name': 'David', 'last_name': 'Stephenson', 'permalink': 'david-stephenson'}}, {'is_past': True, 'title': 'CCO - Alexa Internet', 'person': {'first_name': 'Ronna', 'last_name': 'Tanenbaum', 'permalink': 'ronna-tanenbaum'}}, {'is_past': True, 'title': 'CFO, International', 'person': {'first_name': 'Jason', 'last_name': 'Child', 'permalink': 'jason-child'}}, {'is_past': True, 'title': 'SVP and CAO', 'person': {'first_name': 'Mark', 'last_name': 'Peek', 'permalink': 'mark-peek'}}, {'is_past': True, 'title': 'SVP and CIO', 'person': {'first_name': 'Richard', 'last_name': 'Dalzell', 'permalink': 'richard-dalzell'}}, {'is_past': True, 'title': 'VP / MD - UK & French Businesses', 'person': {'first_name': 'Robin', 'last_name': 'Terrell', 'permalink': 'robin-terrell'}}, {'is_past': True, 'title': 'VP, Digital Video', 'person': {'first_name': 'Anthony', 'last_name': 'Bay', 'permalink': 'anthony-bay'}}, {'is_past': True, 'title': 'Global VP Customer Service', 'person': {'first_name': 'Bill', 'last_name': 'Price', 'permalink': 'bill-price-4'}}, {'is_past': True, 'title': 'VP, WorldWide Traffic', 'person': {'first_name': 'Satbir', 'last_name': 'Khanuja', 'permalink': 'satbir-khanuja'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Daniel', 'last_name': 'Shader', 'permalink': 'daniel-shader'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Rakesh', 'last_name': 'Mathur', 'permalink': 'rakesh-mathur'}}, {'is_past': True, 'title': 'Vice President (GM) of Merchant and Developer Payments offerings', 'person': {'first_name': 'Kumar', 'last_name': 'Srinivasan', 'permalink': 'kumar-srinivasan-2'}}, {'is_past': True, 'title': 'VP Supply Chain, Digital,,,VP Toys & Baby', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': True, 'title': 'SVP, Worldwide Services and Sales', 'person': {'first_name': 'Mark', 'last_name': 'Britto', 'permalink': 'mark-britto'}}, {'is_past': True, 'title': 'VP, Media - UK', 'person': {'first_name': 'Christopher', 'last_name': 'North', 'permalink': 'christopher-north'}}, {'is_past': True, 'title': 'VP, Finance', 'person': {'first_name': 'Shelley', 'last_name': 'Reynolds', 'permalink': 'shelley-reynolds'}}, {'is_past': True, 'title': 'VP, Digital Media', 'person': {'first_name': 'Steven', 'last_name': 'Kessel', 'permalink': 'steven-kessel'}}, {'is_past': True, 'title': 'Vice President, Europe', 'person': {'first_name': 'Thomas', 'last_name': 'Lot', 'permalink': 'thomas-lot'}}, {'is_past': True, 'title': 'Vice President of Strategic Communications, Content and Entertainment Initiatives', 'person': {'first_name': 'Kathy', 'last_name': 'Savitt', 'permalink': 'kathy-savitt'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Danny', 'last_name': 'Shader', 'permalink': 'danny-shader'}}, {'is_past': True, 'title': 'VP, Alexa Research', 'person': {'first_name': 'Matthew', 'last_name': 'Work', 'permalink': 'matthew-work'}}, {'is_past': True, 'title': 'SVP Europe', 'person': {'first_name': 'Simon', 'last_name': 'Murdoch', 'permalink': 'simon-murdoch'}}, {'is_past': True, 'title': 'Vice President of Worldwide Business and Corporate Development', 'person': {'first_name': 'Owen', 'last_name': 'Van Natta', 'permalink': 'owen-van-natta'}}, {'is_past': True, 'title': 'VP, Technology', 'person': {'first_name': 'Neil', 'last_name': 'Roseman', 'permalink': 'neil-roseman'}}, {'is_past': True, 'title': 'SVP, General Counsel, Secretary', 'person': {'first_name': 'L. Michelle', 'last_name': 'Wilson', 'permalink': 'l-michelle-wilson'}}, {'is_past': True, 'title': 'SVP, Worldwide Operations', 'person': {'first_name': 'Marc', 'last_name': 'Onetto', 'permalink': 'marc-onetto'}}, {'is_past': True, 'title': 'SVP, North America Retail', 'person': {'first_name': 'Jeffrey', 'last_name': 'Wilke', 'permalink': 'jeffrey-wilke'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Avichal', 'last_name': 'Garg', 'permalink': 'avichal-garg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Kveton', 'permalink': 'scott-kveton'}}, {'is_past': True, 'title': 'General Manager - Worldwide Retail', 'person': {'first_name': 'Keith', 'last_name': 'Schorsch', 'permalink': 'keith-schorsch'}}, {'is_past': True, 'title': 'Business Director for Amazon Web Services', 'person': {'first_name': 'Martin', 'last_name': 'Buhr', 'permalink': 'martin-buhr'}}, {'is_past': True, 'title': 'Founding Member / Software Development Engineer / Mgr', 'person': {'first_name': 'Christopher', 'last_name': 'Brown', 'permalink': 'christopher-brown'}}, {'is_past': True, 'title': 'Web Development Engineer', 'person': {'first_name': 'Allyn', 'last_name': 'Alford', 'permalink': 'allyn-alford'}}, {'is_past': True, 'title': 'Manager, Social Applications', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Ian', 'last_name': 'Sefferman', 'permalink': 'ian-sefferman'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development', 'person': {'first_name': 'Young', 'last_name': 'Lee', 'permalink': 'young-lee'}}, {'is_past': True, 'title': 'Technical Lead', 'person': {'first_name': 'Kushal', 'last_name': 'Chakrabarti', 'permalink': 'kushal-chakrabarti'}}, {'is_past': True, 'title': 'Software Development Engineer Intern', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'SDE', 'person': {'first_name': 'Leo', 'last_name': 'Shklovskii', 'permalink': 'leo-shklovskii'}}, {'is_past': True, 'title': 'Sr. Product Manger, Mechanical Turk', 'person': {'first_name': 'Natala', 'last_name': 'Menezes', 'permalink': 'natala-menezes'}}, {'is_past': True, 'title': 'General Manager, Web Store', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Community And Cross Merchandising', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Baris', 'last_name': 'Cetinok', 'permalink': 'baris-cetinok'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Varun', 'last_name': 'Aggarwal', 'permalink': 'varun-aggarwal'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Alan', 'last_name': 'McConnell', 'permalink': 'alan-mcconnell'}}, {'is_past': True, 'title': 'Senior Manager, Gifting', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': True, 'title': 'Marketing Specialist', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andrew', 'last_name': 'Crawford', 'permalink': 'andrew-crawford'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Rajeev', 'last_name': 'Dujari', 'permalink': 'rajeev-dujari'}}, {'is_past': True, 'title': 'Senior Technical Architect', 'person': {'first_name': 'Christian', 'last_name': 'Ricci', 'permalink': 'christian-ricci'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Mehmet Ali', 'last_name': 'Elicin', 'permalink': 'mehmet-ali-elicin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Junius', 'last_name': 'Gunaratne', 'permalink': 'junius-gunaratne'}}, {'is_past': True, 'title': 'Senior Manager, Senior Product and Alliance Manager, Product Manager, Business Intelligence Analyst', 'person': {'first_name': 'Mike', 'last_name': 'Sha', 'permalink': 'mike-sha'}}, {'is_past': True, 'title': 'Finance Business Analyst', 'person': {'first_name': 'Michael Jurgen', 'last_name': 'Garbade', 'permalink': 'michael-jurgen-garbade'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Paulson', 'permalink': 'michael-paulson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Can', 'last_name': 'Comertoglu', 'permalink': 'can-comertoglu'}}, {'is_past': True, 'title': 'Dir. Engineering', 'person': {'first_name': 'Sky', 'last_name': 'Kruse', 'permalink': 'sky-kruse'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Sundeep', 'last_name': 'Katasani', 'permalink': 'sundeep-katasani'}}, {'is_past': True, 'title': 'SDE Intern', 'person': {'first_name': 'Thien', 'last_name': 'Nguyen', 'permalink': 'thien-nguyen'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development for Kindle Periodicals', 'person': {'first_name': 'Gary', 'last_name': 'Clarke', 'permalink': 'gary-clarke'}}, {'is_past': True, 'title': 'Director- General Manager', 'person': {'first_name': 'Jason', 'last_name': 'Goldberger', 'permalink': 'jason-goldberger'}}, {'is_past': True, 'title': 'General Manager, Customer Services', 'person': {'first_name': 'Emmanuel', 'last_name': 'Seigner', 'permalink': 'emmanuel-seigner'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Werner', 'last_name': 'Koepf', 'permalink': 'werner-koepf'}}, {'is_past': True, 'title': 'Director, Retail Media', 'person': {'first_name': 'Bill', 'last_name': 'Carr', 'permalink': 'bill-carr'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': True, 'title': 'Center Store Grocery & Beverage Buyer', 'person': {'first_name': 'Dini', 'last_name': 'Rao', 'permalink': 'dini-rao'}}, {'is_past': True, 'title': 'Head of Business Development - Digital Media / Senior Manager - Vendor Management', 'person': {'first_name': 'Genevieve', 'last_name': 'Kunst', 'permalink': 'genevieve-kunst'}}, {'is_past': True, 'title': 'Senior Manager - Software and Video Games', 'person': {'first_name': 'Ben', 'last_name': 'Slutter', 'permalink': 'ben-slutter'}}, {'is_past': True, 'title': 'PR Manager', 'person': {'first_name': 'Stephanie', 'last_name': 'Robinett', 'permalink': 'stephanie-robinett'}}, {'is_past': True, 'title': 'Product Manager - Launch Team, Amazon Intstant Video', 'person': {'first_name': 'Nadim', 'last_name': 'Hossain', 'permalink': 'nadim-hossain'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Victoria', 'last_name': 'Treyger', 'permalink': 'victoria-treyger-2'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Scott', 'last_name': 'Ruthfield', 'permalink': 'scott-ruthfield'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Sukhinder', 'last_name': 'Singh Cassidy', 'permalink': 'sukhinder-singh-cassidy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sujayath', 'last_name': 'Ali', 'permalink': 'sujayath-ali'}}, {'is_past': True, 'title': 'Fulfillment Optimization SDE', 'person': {'first_name': 'Apoorva', 'last_name': 'Mehta', 'permalink': 'apoorva-mehta'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Devesh', 'last_name': 'Khare', 'permalink': 'devesh-khare'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Product Manager, MBA Program', 'person': {'first_name': 'Ben', 'last_name': 'Zhuk', 'permalink': 'ben-zhuk'}}, {'is_past': True, 'title': 'Senior Manager, Home & Kitchen div.', 'person': {'first_name': 'Naofumi', 'last_name': 'Iwai', 'permalink': 'naofumi-iwai'}}, {'is_past': True, 'title': 'General Manager - Computers/Office/Software', 'person': {'first_name': 'Matt', 'last_name': 'Lynch', 'permalink': 'matt-lynch'}}, {'is_past': True, 'title': 'Sr. Manager, Product Management', 'person': {'first_name': 'Alexander', 'last_name': 'Castro', 'permalink': 'alexander-castro'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Battles', 'permalink': 'matt-battles'}}, {'is_past': True, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'James', 'last_name': 'A. Pearson', 'permalink': 'james-a-pearson'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Satish', 'last_name': 'Ramaswamy', 'permalink': 'satish-ramaswamy'}}, {'is_past': True, 'title': 'Senior Software Engineer, Personalization Team', 'person': {'first_name': 'Saurabh', 'last_name': 'Nangia', 'permalink': 'saurabh-nangia'}}, {'is_past': True, 'title': 'Worldwide Corporate Development', 'person': {'first_name': 'Rajeev', 'last_name': 'Dham', 'permalink': 'rajeev-dham'}}, {'is_past': True, 'title': 'Sr. Manager, Operations Finance', 'person': {'first_name': 'Mak', 'last_name': 'Azadi', 'permalink': 'mak-azadi'}}, {'is_past': True, 'title': 'Director Market Development', 'person': {'first_name': 'Ilan', 'last_name': 'Sehayek', 'permalink': 'ilan-sehayek'}}, {'is_past': True, 'title': 'Software Design Engineer - Amazon Web Services', 'person': {'first_name': 'Eli', 'last_name': 'Aleyner', 'permalink': 'eli-aleyner'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Ashish', 'last_name': 'Gupta', 'permalink': 'ashish-gupta'}}, {'is_past': True, 'title': 'Director, Ordering', 'person': {'first_name': 'Vijay', 'last_name': 'Ravindran', 'permalink': 'vijay-ravindran'}}, {'is_past': True, 'title': 'Director, Amazon Services UK', 'person': {'first_name': 'Matt', 'last_name': 'Henderson', 'permalink': 'matt-henderson'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Keith', 'last_name': 'Schorsch', 'permalink': 'keith-schorsch-2'}}, {'is_past': True, 'title': 'MD - UK', 'person': {'first_name': 'Brian', 'last_name': 'McBride', 'permalink': 'brian-mcbride'}}, {'is_past': True, 'title': 'Executive', 'person': {'first_name': 'Parthesh', 'last_name': 'Shastri', 'permalink': 'parthesh-shastri'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Guarav', 'last_name': 'Oberoi', 'permalink': 'guarav-oberoi'}}, {'is_past': True, 'title': 'Critical Teams Supporting the Kindle Content Store', 'person': {'first_name': 'Sriram', 'last_name': 'Panchanathan', 'permalink': 'sriram-panchanathan'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Senior Software Development Engineer', 'person': {'first_name': 'Piragash', 'last_name': 'Velummylum', 'permalink': 'piragash-velummylum'}}, {'is_past': True, 'title': 'Head, eCommerce, UX & Cloud Scaling', 'person': {'first_name': 'Hong', 'last_name': 'Bui', 'permalink': 'hong-bui'}}, {'is_past': True, 'title': 'Product Lead', 'person': {'first_name': 'Ekta', 'last_name': 'Mittal', 'permalink': 'ekta-mittal'}}, {'is_past': True, 'title': \"Member of Amazon's Developer Advisory Council\", 'person': {'first_name': 'Gervase', 'last_name': 'Clifton-Bligh', 'permalink': 'gervase-clifton-bligh'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': True, 'title': 'Director Product Development', 'person': {'first_name': 'Dave', 'last_name': 'Schappell', 'permalink': 'dave-schappell'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Barnaby', 'last_name': 'Dorfman', 'permalink': 'barnaby-dorfman'}}, {'is_past': True, 'title': 'Financial Systems Manager', 'person': {'first_name': 'Phil', 'last_name': 'Sabin', 'permalink': 'phil-sabin'}}, {'is_past': True, 'title': 'Master of Disaster', 'person': {'first_name': 'Jesse', 'last_name': 'Robbins', 'permalink': 'jesse-robbins'}}, {'is_past': True, 'title': 'fddd', 'person': {'first_name': 'Katie', 'last_name': 'Geminder', 'permalink': 'katie-geminder'}}, {'is_past': True, 'title': 'Director, Media Technologies', 'person': {'first_name': 'H.B.', 'last_name': 'Siegel', 'permalink': 'h-b-siegel'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Vikas', 'last_name': 'Gupta', 'permalink': 'vikas-gupta'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Joe', 'last_name': 'Goldberg', 'permalink': 'joe-goldberg'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Itamar', 'last_name': 'Lesuisse', 'permalink': 'itamar-lesuisse'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'Operations Director', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Keela', 'last_name': 'Robison', 'permalink': 'keela-robison'}}, {'is_past': True, 'title': 'General Manager, Consumer Payments', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Tech Alliances', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Auctions', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Baris', 'last_name': 'Cetinok', 'permalink': 'baris-cetinok'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Buster', 'last_name': 'Benson', 'permalink': 'buster-benson'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Phil', 'last_name': 'Askey', 'permalink': 'phil-askey'}}, {'is_past': True, 'title': 'Senior Principal', 'person': {'first_name': 'Navin', 'last_name': 'Budhiraja', 'permalink': 'navin-budhiraja'}}, {'is_past': True, 'title': 'Sr. Manager, User Experience & Design', 'person': {'first_name': 'Michael', 'last_name': 'Brown', 'permalink': 'michael-brown-3'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Florian', 'last_name': 'Laplantif', 'permalink': 'florian-laplantif'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Gil', 'last_name': 'Sheinfeld', 'permalink': 'gil-sheinfeld'}}, {'is_past': True, 'title': 'Director of Technology', 'person': {'first_name': 'Anand', 'last_name': 'Rajaraman', 'permalink': 'anand-rajaraman'}}, {'is_past': True, 'title': 'Product', 'person': {'first_name': 'Nathan', 'last_name': 'Lasche', 'permalink': 'nathan-lasche'}}, {'is_past': True, 'title': 'Manager, Consumer Behavior Research', 'person': {'first_name': 'David', 'last_name': 'Selinger', 'permalink': 'david-selinger'}}, {'is_past': True, 'title': 'Finance - Special Projects', 'person': {'first_name': 'Anand', 'last_name': 'Rajaratnam', 'permalink': 'anand-rajaratnam'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Vivek', 'last_name': 'Ravisankar', 'permalink': 'vivek-ravisankar'}}, {'is_past': True, 'title': 'Sr Dev Mgr, Amazon Mobile', 'person': {'first_name': 'Jason', 'last_name': 'McMahon', 'permalink': 'jason-mcmahon'}}, {'is_past': True, 'title': 'Manager III, Software Dev. / Mobile Software Product Manager', 'person': {'first_name': 'Leo', 'last_name': 'Chen', 'permalink': 'leo-chen'}}, {'is_past': True, 'title': 'Software Development Engineer Intern', 'person': {'first_name': 'Peter', 'last_name': 'Hamilton', 'permalink': 'peter-hamilton-2'}}, {'is_past': True, 'title': 'Senior Manager, eCommerce Marketplace PaaS', 'person': {'first_name': 'Steve', 'last_name': 'Grigory', 'permalink': 'steve-grigory'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Jim', 'last_name': 'Kingsbury', 'permalink': 'jim-kingsbury'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Balaji', 'last_name': 'Ravindran', 'permalink': 'balaji-ravindran-2'}}, {'is_past': True, 'title': 'Software development engineer', 'person': {'first_name': 'Rajesh', 'last_name': 'shanmugam', 'permalink': 'rajesh-shanmugam'}}, {'is_past': True, 'title': 'Online Advertising Manager', 'person': {'first_name': 'Chieu', 'last_name': 'Cao', 'permalink': 'chieu-cao'}}, {'is_past': True, 'title': 'Product Development & Operations', 'person': {'first_name': 'Jeffrey', 'last_name': 'Blackburn', 'permalink': 'jeffrey-blackburn'}}, {'is_past': True, 'title': 'Director, Fulfillment by Amazon', 'person': {'first_name': 'Joe', 'last_name': 'Walowski', 'permalink': 'joe-walowski'}}, {'is_past': True, 'title': 'Principal, Product Management', 'person': {'first_name': 'Ray', 'last_name': 'Bradford', 'permalink': 'ray-bradford'}}, {'is_past': True, 'title': 'Sr. Financial Analyst / Product Manager', 'person': {'first_name': 'Adam', 'last_name': 'Medros', 'permalink': 'adam-medros'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': True, 'title': 'Project Manager, Customer Service', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Laura', 'last_name': 'Lindhe', 'permalink': 'laura-lindhe'}}, {'is_past': True, 'title': 'Director, Demand Generation', 'person': {'first_name': 'Sam', 'last_name': 'Wheeler', 'permalink': 'sam-wheeler-3'}}, {'is_past': True, 'title': 'operations and then services manager', 'person': {'first_name': 'Fern', 'last_name': 'O’Sullivan', 'permalink': 'fern-osullivan'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Doug', 'last_name': 'Pepper', 'permalink': 'doug-pepper'}}, {'is_past': True, 'title': 'Various Roles in the Finance Departments', 'person': {'first_name': 'Lance', 'last_name': 'A. Soliday', 'permalink': 'lance-a-soliday'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Mike', 'last_name': 'Wann', 'permalink': 'mike-wann'}}, {'is_past': True, 'title': 'Director Corporate Development', 'person': {'first_name': 'Rikki', 'last_name': 'Tahta', 'permalink': 'rikki-tahta'}}, {'is_past': True, 'title': 'Test Engineering', 'person': {'first_name': 'Jayashri', 'last_name': 'Padmanabhan', 'permalink': 'jayashri-padmanabhan'}}, {'is_past': True, 'title': 'Senior Engineer/Manager', 'person': {'first_name': 'Geoffrey', 'last_name': 'Grauer', 'permalink': 'geoffrey-grauer'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Osterloh', 'permalink': 'rick-osterloh'}}, {'is_past': True, 'title': 'Website Experimentation Intern', 'person': {'first_name': 'Rick', 'last_name': 'Fulton', 'permalink': 'rick-fulton'}}, {'is_past': True, 'title': 'WW Business Development, Kindle Development Kit', 'person': {'first_name': 'Andrea', 'last_name': 'Moro', 'permalink': 'andrea-moro'}}, {'is_past': True, 'title': 'Boards of Director', 'person': {'first_name': 'Myrtle S.', 'last_name': 'Potter', 'permalink': 'myrtle-s-potter'}}, {'is_past': True, 'title': 'Director, Search & Navigation', 'person': {'first_name': 'Bill', 'last_name': 'Stasior', 'permalink': 'bill-stasior'}}, {'is_past': True, 'title': 'Senior Product Manager (Kindle)', 'person': {'first_name': 'Julie', 'last_name': 'Sandler', 'permalink': 'julie-sandler'}}, {'is_past': True, 'title': 'Software Engineer III', 'person': {'first_name': 'Ryan', 'last_name': 'Rawson', 'permalink': 'ryan-rawson'}}, {'is_past': True, 'title': 'Software Engineering Intern, Detail Page Performance Team Amazon.com', 'person': {'first_name': 'Saurabh', 'last_name': 'Nangia', 'permalink': 'saurabh-nangia'}}, {'is_past': True, 'title': 'Senior Manager, Product Management – Global Payments Product Group', 'person': {'first_name': 'William', 'last_name': '(Bill) Pittman', 'permalink': 'william-bill-pittman'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Prabuddha', 'last_name': 'Biswas', 'permalink': 'prabuddha-biswas'}}, {'is_past': True, 'title': 'Director, Amazon Search Traffic', 'person': {'first_name': 'Gary', 'last_name': 'Cowan', 'permalink': 'gary-cowan'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Mukund', 'last_name': 'Ramaratnam', 'permalink': 'mukund-ramaratnam'}}, {'is_past': True, 'title': 'Director of Amazon Newsstand, Director of Kindle Store, Director of Product Management - Kindle Content and Services', 'person': {'first_name': 'Sean', 'last_name': 'Gorman', 'permalink': 'sean-gorman'}}, {'is_past': True, 'title': 'Finance Director', 'person': {'first_name': 'Ryan', 'last_name': 'Regan', 'permalink': 'ryan-regan'}}, {'is_past': True, 'title': 'Sr. Product Manager, Photos', 'person': {'first_name': 'C.Y.', 'last_name': 'Lee', 'permalink': 'c-y-lee'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Venky', 'last_name': 'Harinarayan', 'permalink': 'venky-harinarayan'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Florian', 'last_name': 'Brody', 'permalink': 'florian-brody'}}, {'is_past': True, 'title': 'Senior Software Engineer, Senior Program Manager', 'person': {'first_name': 'Ward W.', 'last_name': 'Vuillemot', 'permalink': 'ward-w-vuillemot'}}, {'is_past': True, 'title': 'General Manager - Health and Personal Care', 'person': {'first_name': 'Spencer', 'last_name': 'Millerberg', 'permalink': 'spencer-millerberg'}}, {'is_past': True, 'title': 'Software Development Manager, Photos', 'person': {'first_name': 'Piragash', 'last_name': 'Velummylum', 'permalink': 'piragash-velummylum'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Jordan', 'last_name': 'Timmermann', 'permalink': 'jordan-timmermann'}}, {'is_past': True, 'title': 'Engineering Lead', 'person': {'first_name': 'Jon', 'last_name': 'Jenkins', 'permalink': 'jon-jenkins'}}, {'is_past': True, 'title': 'Managing Teams', 'person': {'first_name': 'Ken', 'last_name': 'MacKenzie', 'permalink': 'ken-mackenzie'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Doug', 'last_name': 'Schulze', 'permalink': 'doug-schulze'}}], 'competitions': [{'competitor': {'name': 'eMusic', 'permalink': 'emusic'}}, {'competitor': {'name': 'PowerReviews', 'permalink': 'powerreviews'}}, {'competitor': {'name': 'Bazaarvoice', 'permalink': 'bazaarvoice'}}, {'competitor': {'name': 'Vudu', 'permalink': 'vudu'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'Infibeam', 'permalink': 'infibeam'}}, {'competitor': {'name': 'Elastra', 'permalink': 'elastra'}}, {'competitor': {'name': 'Netflix', 'permalink': 'netflix'}}, {'competitor': {'name': 'MyFab', 'permalink': 'myfab'}}, {'competitor': {'name': 'MUBI', 'permalink': 'mubi'}}, {'competitor': {'name': 'GoGrid', 'permalink': 'gogrid'}}, {'competitor': {'name': 'Ziippi', 'permalink': 'ziippi'}}, {'competitor': {'name': 'Alice.com', 'permalink': 'alice-com'}}, {'competitor': {'name': 'Pronto', 'permalink': 'pronto-com'}}, {'competitor': {'name': 'Rakuten', 'permalink': 'rakuten'}}, {'competitor': {'name': 'Equallo', 'permalink': 'equallo'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Simple IT', 'permalink': 'simple-it'}}], 'total_money_raised': '$8M', 'funding_rounds': [{'id': 24535, 'round_code': 'a', 'source_url': 'http://money.cnn.com/magazines/fortune/fortune_archive/1998/10/26/250008/index.htm', 'source_description': \"Inside the Silicon Valley Money Machine KLEINER PERKINS FUNDED AOL, AMAZON, SUN, AND NETSCAPE. HERE'S HOW TECH'S MOST POWERFUL FINANCIERS WORK, PLUS THE SECRETS THEY DON'T WANT YOU TO KNOW.\", 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 1995, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/?p=23', 'source_description': 'Profile: Del.icio.us', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'company': {'name': 'delicious', 'permalink': 'delicious'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.wikia.com/wiki/About_Wikia', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'Wikia', 'permalink': 'wikia'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/05/amiestreetcom-closes-series-a-financing-led-by-amazoncom/', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Amie Street', 'permalink': 'amiestreet'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/02/25/amazon-invests-in-shelfari/', 'source_description': 'TechCrunch', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.techcrunch.com/2007/12/11/amazon-invests-in-bill-me-later/', 'source_description': 'TechCrunch article', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 12, 'funded_day': None, 'company': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://brainspl.at/articles/2008/07/14/engine-yard-takes-15mill-series-b-round-from-nea-amazon-and-benchmark', 'source_description': 'Engine Yard takes $15mill Series B Round from NEA, Amazon and Benchmark', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 13, 'company': {'name': 'Engine Yard', 'permalink': 'engineyard'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.elastra.com/about/2008/08/05/elastra-closes-12-million-in-series-b-financing/', 'source_description': 'ELASTRA Closes $12 Million In Series B Financing', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Elastra', 'permalink': 'elastra'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.paidcontent.org/entry/419-amazon-invests-in-online-ad-optimization-firm-yieldex/', 'source_description': 'Amazon Invests In Online Ad Optimization Firm Yieldex', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 18, 'company': {'name': 'Yieldex', 'permalink': 'yieldex'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.paidcontent.org/entry/419-amazon-takes-equity-stake-in-diy-shopping-site-the-talk-market/', 'source_description': 'Paid Content', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 12, 'company': {'name': 'The Talk Market', 'permalink': 'the-talk-market'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.paidcontent.org/entry/419-booktour-raises-350000-in-seed-capital-from-amazon/', 'source_description': 'BookTour Raises $350,000 From Amazon', 'raised_amount': 350000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 17, 'company': {'name': 'BookTour', 'permalink': 'booktour'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2009/04/22/foodista-raises-550000-from-amazon-and-other-angels/', 'source_description': 'TechCrunch', 'raised_amount': 550000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 16, 'company': {'name': 'Foodista', 'permalink': 'foodista'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2009/06/17/animoto-is-already-cash-flow-positive-but-raises-another-round-to-go-to-11/', 'source_description': 'Animoto Is Already Cash-Flow Positive, Raises Another Round To Go To 11', 'raised_amount': 4400000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 18, 'company': {'name': 'Animoto', 'permalink': 'animoto'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.engineyard.com/about/press/09-10-08-engine-yard-closes-19-million-series-c-financing-round', 'source_description': 'Engine Yard Website', 'raised_amount': 19000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 7, 'company': {'name': 'Engine Yard', 'permalink': 'engineyard'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.cirtas.com/news/cirtas-completes-10-million-series', 'source_description': 'Cirtas Completes $10 Million Series A', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 9, 'funded_day': 20, 'company': {'name': 'Cirtas Systems', 'permalink': 'cirtas'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2010/12/02/livingsocial-confirms-175-million-amazon-investment/', 'source_description': 'LivingSocial Confirms $175 Million Amazon Investment', 'raised_amount': 183000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 2, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunchit.com/2011/01/18/cloud-archiving-startup-sonian-raises-9-million-from-amazon-webroot-and-others/', 'source_description': 'Cloud Archiving Startup Sonian Raises $9 Million From Amazon, Webroot And Others', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'Sonian', 'permalink': 'sonian'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/06/29/animoto-in-it-to-win-it-takes-25-million-in-third-venture-round/', 'source_description': 'Animoto In It To Win It, Takes $25 Million In Third Venture Round', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 29, 'company': {'name': 'Animoto', 'permalink': 'animoto'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2011/12/07/forget-an-ipo-for-now-livingsocial-raises-another-176-million/', 'source_description': 'TechCrunch', 'raised_amount': 176000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 18, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2011/09/songza-com-closes-financing.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Songza.com Closes Financing Round', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'Songza', 'permalink': 'songza'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2011/07/paraccel-receives-additional-investment-amazon-com.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'ParAccel Receives Additional Investment from Amazon.com', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 7, 'company': {'name': 'ParAccel', 'permalink': 'paraccel'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/04/04/livingsocial-files-to-authorize-up-to-565m-in-series-e-funding/', 'source_description': 'LivingSocial Files To Authorize Up To $565M In Series E [Update: And Raises $400M]', 'raised_amount': 400000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 4, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/08/09/videolicious-2-25m/', 'source_description': 'Videolicious Raises $2.25 Million From Washington Post Company, Amazon.com, And The Knight Foundation', 'raised_amount': 2250000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 9, 'company': {'name': 'Videolicious', 'permalink': 'videolicious'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/30/videolicious-2-funding/', 'source_description': 'Videolicious Relaunches Its App For Mobile Video Editing, Raises $1.4 Million From Amazon And Others', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 30, 'company': {'name': 'Videolicious', 'permalink': 'videolicious'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/09/10/songza-raises-4-7-million-funding-round-to-develop-advertising-you-may-actually-enjoy/', 'source_description': 'Songza Raises $4.7 Million Funding Round To Develop Advertising You May Actually Enjoy', 'raised_amount': 4700000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Songza', 'permalink': 'songza'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 1, 'company': {'name': 'dpreview', 'permalink': 'dpreview'}}, {'price_amount': 250000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/1999/05/24/newscolumn4.html', 'source_description': 'Amazon spends $250M for Alexa Internet', 'acquired_year': 1999, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Alexa', 'permalink': 'alexa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/06/25/amazon-gets-some-new-threads-acquires-fabriccom/', 'source_description': 'Amazon Gets Some New Threads, Acquires Fabric.com', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Fabric.com', 'permalink': 'fabric-com'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/01/31/amazon-strengthens-its-digital-hand-with-300-million-purchase-of-audible/', 'source_description': 'Amazon Strengthens Its Digital Hand With $300 Million Purchase of Audible', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Audible', 'permalink': 'audible'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/01/amazon-to-acquire-abebooks/', 'source_description': 'Amazon To Acquire AbeBooks, And With It A Stake In LibraryThing', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'AbeBooks', 'permalink': 'abebooks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1998, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'IMDB', 'permalink': 'imdb'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/10/21/amazon-snaps-up-video-game-provider-reflexive/', 'source_description': 'Amazon Snaps Up Video Game Provider Reflexive', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Reflexive Entertainment', 'permalink': 'reflexive-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/25/amazon-aquires-shelfari-moves-to-corner-social-book-space/', 'source_description': 'Amazon Acquires Shelfari: Moves To Corner Book-Centric Social Networks', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 25, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/163917/amazon_acquires_lexcycle.html', 'source_description': 'Amazon Acquires Lexcycle', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Lexcycle', 'permalink': 'lexcycle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/06/16/image-recognition-startup-snaptell-acquired-by-amazon-subsidiary-a9com/', 'source_description': 'Image Recognition Startup SnapTell Acquired by Amazon Subsidiary A9.com', 'acquired_year': 2009, 'acquired_month': 6, 'acquired_day': 16, 'company': {'name': 'SnapTell', 'permalink': 'snaptell'}}, {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://techcrunch.com/2009/07/22/amazon-buys-zappos/', 'source_description': 'TechCrunch: Amazon Buys Zappos', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'Zappos', 'permalink': 'zappos'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/25/amazon-aquires-shelfari-moves-to-corner-social-book-space/', 'source_description': 'Amazon Acquires Shelfari: Moves To Corner Book-Centric Social Networks', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 24, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.encyclopedia.com/doc/1P1-139775740.html', 'source_description': 'Amazon.com Buys Brilliance Audio', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 23, 'company': {'name': 'Brilliance Audio', 'permalink': 'brilliance-audio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.emii.com/article.aspx?ArticleID=1854808', 'source_description': 'Amazon Unit Buys Without A Box', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Without A Box', 'permalink': 'without-a-box'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.dmwmedia.com/news/2008/10/22/amazon-buys-casual-games-distributor-reflexive-entertainment', 'source_description': 'Amazon Buys Casual Games Distributor Reflexive Entertainment', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Reflexive Entertainment', 'permalink': 'reflexive-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nytimes.com/2010/02/04/technology/04amazon.html', 'source_description': 'Amazon Said to Buy Touch Start-Up', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 3, 'company': {'name': 'Touchco', 'permalink': 'touchco'}}, {'price_amount': 110000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/06/30/woot-amazon/', 'source_description': 'Woot’s Deal Of The Day: Woot! — Amazon Buys It. Price? $110 Million', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'Woot', 'permalink': 'woot'}}, {'price_amount': 545000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/11/08/confirmed-amazon-spends-545-million-on-diapers-com-parent-quidsi', 'source_description': 'Confirmed: Amazon Spends $545 Million On Diapers.com Parent Quidsi', 'acquired_year': 2010, 'acquired_month': 11, 'acquired_day': 8, 'company': {'name': 'Quidsi', 'permalink': 'quidsi'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.co.uk/cgi/news/release?id=22936', 'source_description': 'LEADING INTERNET BOOKSELLER AMAZON.COM ACQUIRES U.K.-BASED INTERNET BOOKSTORE BOOKPAGES LTD.', 'acquired_year': 1998, 'acquired_month': 10, 'acquired_day': 15, 'company': {'name': 'Bookpages', 'permalink': 'bookpages'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://community.seattletimes.nwsource.com/archive/?date=19990611&slug=2965963', 'source_description': \"Amazon's Accept.Com Deal Cost About $101.7 Million\", 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 11, 'company': {'name': 'Accept.Com', 'permalink': 'accept-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://multivu.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/04-26-1999/0000918988&EDATE=', 'source_description': 'Amazon.Com Acquires Exchange.Com', 'acquired_year': 1999, 'acquired_month': 4, 'acquired_day': 26, 'company': {'name': 'Exchange.Com', 'permalink': 'exchange-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Funding Report', 'acquired_year': 2003, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'CDNOW', 'permalink': 'cdnow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.internetnews.com/ec-news/article.php/3494946/Amazon-Buys-On-Demand-Player-BookSurge.htm', 'source_description': 'Amazon Buys On Demand Player BookSurge', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 4, 'company': {'name': 'BookSurge', 'permalink': 'booksurge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.drmwatch.com/drmtech/article.php/3499386', 'source_description': 'Amazon.com Acquires Mobipocket', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Mobipocket.com', 'permalink': 'mobipocket-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.hackingnetflix.com/2005/07/breaking_news_a.html', 'source_description': 'Amazon Acquires CustomFlix', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 8, 'company': {'name': 'CustomFlix', 'permalink': 'customflix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://wistechnology.com/articles/2730/', 'source_description': 'Amazon acquires Madison-based Shopbop', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 27, 'company': {'name': 'Shopbop', 'permalink': 'shopbop'}}, {'price_amount': 2500000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://eu.techcrunch.com/2011/01/20/amazon-acquires-lovefilm-the-netflix-of-europe/', 'source_description': 'Amazon acquires LoveFilm, the Netflix of Europe', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 15, 'company': {'name': 'LOVEFiLM', 'permalink': 'lovefilm'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/04/amazon-acquires-uk-based-online-book-retailer-the-book-depository-for-international-expansion/', 'source_description': 'Amazon Acquires UK-Based Online Book Retailer The Book Depository For International Expansion', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': 'The Book Depository', 'permalink': 'the-book-depository'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-amazon-buys-lovefilms-iptv-app-designer-pushbutton/', 'source_description': 'Amazon Buys Lovefilm’s IPTV App Designer Pushbutton', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Pushbutton', 'permalink': 'pushbutton'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/12/28/amazon-quorus-acquisition/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Amazon acquires the talented team at shopping startup Quorus', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 28, 'company': {'name': 'Quorus', 'permalink': 'quorus'}}, {'price_amount': 775000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2012/03/19/amazon-buys-kiva-systems/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Amazon buys Kiva Systems for $775M — prepare for even smarter warehouses', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 19, 'company': {'name': 'Kiva Systems', 'permalink': 'kiva-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/08/amazon-acquires-amie-street-but-not-in-a-good-way/', 'source_description': 'Amazon Acquires Amie Street, But Not In A Good Way', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'Amie Street', 'permalink': 'amiestreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.geekwire.com/2012/exclusive-amazoncom-buys-teachstreet', 'source_description': 'GeekWire', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'TeachStreet', 'permalink': 'teachstreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.engadget.com/2012/07/02/amazon-reportedly-acquires-upnext-for-3d-maps/', 'source_description': 'Amazon reportedly acquires UpNext, 3D map wars begin in earnest', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'UpNext', 'permalink': 'upnext'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/24/amazon-gets-into-voice-recognition-buys-ivona-software-to-compete-against-apples-siri/', 'source_description': 'Amazon Gets Into Voice Recognition, Buys Ivona Software To Compete Against Apple’s Siri', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'IVONA Text-To-Speech', 'permalink': 'ivona-text-to-speech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/28/amazon-acquires-social-reading-site-goodreads/', 'source_description': 'Amazon Acquires Social Reading Site Goodreads, Which Gives The Company A Social Advantage Over Apple', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 28, 'company': {'name': 'Goodreads', 'permalink': 'goodreads'}}, {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.wsj.com/digits/2013/03/29/amazon-moves-toward-kindle-social-network-with-goodreads/', 'source_description': 'Amazon Moves Toward Kindle Social Network with Goodreads', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 29, 'company': {'name': 'Goodreads', 'permalink': 'goodreads'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/05/13/amazon-acquires-samsung-color-display-unit-liquavista/', 'source_description': 'Amazon acquires Samsung color display unit Liquavista', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Liquavista', 'permalink': 'liquavista'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mercurynews.com/business/ci_23233051/amazon-buys-screen-tech-from-samsung-introduces-its?source=rss&cid=dlvr.it', 'source_description': 'Amazon buys screen tech from Samsung, introduces its own currency', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Screentech', 'permalink': 'screentech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ecommercebytes.com/cab/abn/y10/m10/i07/s06', 'source_description': 'Amazon Acquires European Fashion Site BuyVIP.com', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'BuyVIP', 'permalink': 'buyvip'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.infosources.org/what_is/Amazon_Payments.html', 'source_description': 'Amazon Payments', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/16/amazon-reportedly-buys-mobile-payments-startup-gopago-working-on-an-ambitious-new-project/', 'source_description': 'Amazon Reportedly Buys Mobile Payments Startup Gopago, Working On An ‘Ambitious’ New Project', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'GoPago', 'permalink': 'gopago'}}], 'offices': [{'description': None, 'address1': '1200 12th Ave', 'address2': 'S # 1200', 'zip_code': '98144', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.5923, 'longitude': -122.317295}], 'milestones': [{'id': 6931, 'description': 'How Many Kindle Books Has Amazon Sold? About 22 Million This Year', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 20, 'source_url': 'http://www.businessinsider.com/sorry-amazon-kindle-e-books-outselling-hardcovers-isnt-that-impressive-2010-7', 'source_text': '', 'source_description': 'How Many Kindle Books Has Amazon Sold? About 22 Million This Year', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 10081, 'description': \"Online retailer Amazon.com Inc. said on Tuesday it had increased its investment in Joyo.com, a leading online shopping platform in China, the U.S.-company's fastest growing market.\", 'stoned_year': 2007, 'stoned_month': 6, 'stoned_day': 5, 'source_url': 'http://uk.reuters.com/article/idUKPEK15159920070605', 'source_text': '', 'source_description': 'Amazon ups investment in China online shopping site', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 11641, 'description': 'Amazon Throws LivingSocial A Big Bone With $10 Discount', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2011/01/19/amazon-livingsocial-10-discount/', 'source_text': '', 'source_description': 'Amazon Throws LivingSocial A Big Bone With $10 Discount', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 16794, 'description': 'Amazon’s Market Cap Passes $100 Billion', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/07/27/amazons-market-cap-passes-100-billion/', 'source_text': '', 'source_description': 'Amazon’s Market Cap Passes $100 Billion', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 19877, 'description': 'Amazon Invests In Turkish E-Commerce Startup Ciceksepeti', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/12/20/amazon-invests-in-turkish-e-commerce-startup-ciceksepeti/', 'source_text': '', 'source_description': 'Amazon Invests In Turkish E-Commerce Startup Ciceksepeti', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 19957, 'description': 'Amazon To Invest $270 Million In New Distribution Centers In Virginia, Tennessee', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 22, 'source_url': 'http://techcrunch.com/2011/12/22/amazon-to-invest-270-million-in-new-distribution-centers-in-virginia-tennessee/', 'source_text': '', 'source_description': 'Amazon To Invest $270 Million In New Distribution Centers In Virginia, Tennessee', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 23815, 'description': 'Amazon Publishing Acquires Avalon Books', 'stoned_year': 2012, 'stoned_month': 6, 'stoned_day': 4, 'source_url': 'http://www.freshnews.com/news/659917/amazon-publishing-acquires-avalon-books', 'source_text': '', 'source_description': 'Amazon Publishing Acquires Avalon Books', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 41866, 'description': 'Amazon Launches ‘AmazonSmile’ Charity Donation Program', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2013/10/30/amazonsmile-automatic-charity-donation/', 'source_text': '', 'source_description': 'Amazon Wants To Do Good With Its Goods, Launches ‘AmazonSmile’ Charity Donation Program', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}], 'ipo': {'valuation_amount': 100000000000, 'valuation_currency_code': 'USD', 'pub_year': 1997, 'pub_month': 5, 'pub_day': None, 'stock_symbol': 'NASDAQ:AMZN'}, 'video_embeds': [{'embed_code': ' Amazon Mobile iPhone App Review - AppVee.com\\r\\n', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3612/43612v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3612/43612v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3612/43612v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'permalink': 'nielsen', 'crunchbase_url': 'http://www.crunchbase.com/company/nielsen', 'homepage_url': 'http://nielsen.com', 'blog_url': 'http://blog.nielsen.com/nielsenwire', 'blog_feed_url': '', 'twitter_username': 'nielsenwire', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1922, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'ContactCommunications@nielsen.com', 'phone_number': ' 800.864.1224', 'description': '', 'created_at': 'Wed Aug 22 10:57:37 UTC 2007', 'updated_at': 'Tue Nov 26 03:11:23 UTC 2013', 'overview': '

Nielsen is a leading global provider of information and insights into what consumers watch and buy.

\\n\\n

Nielsen is a information and measurement company with leading market positions in marketing and consumer information, television and other media measurement, online intelligence, mobile measurement, trade shows and related properties. Nielsen has a presence in approximately 100 countries, with headquarters in New York, USA and Diemen, the Netherlands.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0001/9309/19309v2-max-150x150.png'], [[157, 72], 'assets/images/resized/0001/9309/19309v2-max-250x250.png'], [[157, 72], 'assets/images/resized/0001/9309/19309v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board - Supervisory Board', 'person': {'first_name': 'James', 'last_name': 'M. Kilts', 'permalink': 'james-m-kilts'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Research Officer', 'person': {'first_name': 'Paul', 'last_name': 'Donato', 'permalink': 'paul-donato'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Mark', 'last_name': 'Leiter', 'permalink': 'mark-leiter'}}, {'is_past': False, 'title': 'Chief Legal Officer', 'person': {'first_name': 'James', 'last_name': 'Cuminale', 'permalink': 'james-cuminale'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Brian', 'last_name': 'West', 'permalink': 'brian-west'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'David', 'last_name': 'Calhoun', 'permalink': 'david-calhoun'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Mary', 'last_name': 'Liz Finn', 'permalink': 'mary-liz-finn'}}, {'is_past': False, 'title': 'SVP, Investor Relations', 'person': {'first_name': 'Kate', 'last_name': 'Vanek', 'permalink': 'kate-vanek'}}, {'is_past': False, 'title': 'Executive Vice President, Global Business Development', 'person': {'first_name': 'Itzhak', 'last_name': 'Fisher', 'permalink': 'itzhak-fisher'}}, {'is_past': False, 'title': 'Vice Chair', 'person': {'first_name': 'Susan', 'last_name': 'Whiting', 'permalink': 'susan-whiting'}}, {'is_past': False, 'title': 'Region Vice President, Consumer Retail Division', 'person': {'first_name': 'JoAnn', 'last_name': 'Piedmont', 'permalink': 'joann-piedmont'}}, {'is_past': False, 'title': 'Communications Analyst', 'person': {'first_name': 'Matthew', 'last_name': 'Hurst', 'permalink': 'matthew-hurst'}}, {'is_past': False, 'title': 'leadership', 'person': {'first_name': 'Lane', 'last_name': 'Cochrane', 'permalink': 'lane-cochrane'}}, {'is_past': False, 'title': 'Vice Chair', 'person': {'first_name': 'Rick', 'last_name': 'Kash', 'permalink': 'rick-kash'}}, {'is_past': False, 'title': 'President, Global Client Service', 'person': {'first_name': 'Mitch', 'last_name': 'Barns', 'permalink': 'mitch-barns'}}, {'is_past': False, 'title': 'Chief Provocateur', 'person': {'first_name': 'Dr.', 'last_name': 'A. K. Pradeep', 'permalink': 'dr-a-k-pradeep-3'}}, {'is_past': False, 'title': 'President, Consumer Products', 'person': {'first_name': 'Susan', 'last_name': 'Dunn', 'permalink': 'susan-dunn-2'}}, {'is_past': False, 'title': 'President, India', 'person': {'first_name': 'Piyush', 'last_name': 'Mathurs', 'permalink': 'piyush-mathurs'}}, {'is_past': False, 'title': 'President, Southeast Asia, North Asia and Pacific', 'person': {'first_name': 'Cheong-Tai', 'last_name': 'Leung', 'permalink': 'cheong-tai-leung'}}, {'is_past': False, 'title': 'Managing Director, Sub-Sahara and South Africa', 'person': {'first_name': 'Dwight', 'last_name': 'Watson', 'permalink': 'dwight-watson'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Gale', 'last_name': 'Bowman', 'permalink': 'gale-bowman'}}, {'is_past': False, 'title': 'Tech Manager', 'person': {'first_name': 'Federico', 'last_name': 'Bucchi', 'permalink': 'federico-bucchi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'Pozen', 'permalink': 'robert-pozen'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Mitchell', 'last_name': 'Habib', 'permalink': 'mitchell-habib'}}, {'is_past': False, 'title': 'President, Global Product Leadership', 'person': {'first_name': 'Steve', 'last_name': 'Hasker', 'permalink': 'steve-hasker'}}, {'is_past': False, 'title': 'President, Strategic Initiatives', 'person': {'first_name': 'John', 'last_name': 'Burbank', 'permalink': 'john-burbank'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lewis', 'permalink': 'john-lewis-4'}}, {'is_past': False, 'title': 'President, Europe', 'person': {'first_name': 'Christophe', 'last_name': 'Cambournac', 'permalink': 'christophe-cambournac'}}, {'is_past': False, 'title': 'President, Greater China', 'person': {'first_name': 'Yan', 'last_name': 'Xuan', 'permalink': 'yan-xuan'}}, {'is_past': False, 'title': 'Managing Director, Middle East, North Africa, Pakistan', 'person': {'first_name': 'Nick', 'last_name': 'Papagregoriou', 'permalink': 'nick-papagregoriou'}}, {'is_past': True, 'title': 'CEO, Digital', 'person': {'first_name': 'Jonathan', 'last_name': 'Carson', 'permalink': 'jonathan-carson'}}, {'is_past': True, 'title': 'CEO, NielsenConnect', 'person': {'first_name': 'Jon', 'last_name': 'Mandel', 'permalink': 'jon-mandel'}}, {'is_past': True, 'title': 'SVP and Chief Human Resources Officer, ACNielsen', 'person': {'first_name': 'Jim', 'last_name': 'Cravens', 'permalink': 'jim-cravens'}}, {'is_past': True, 'title': 'CFO / SVP, Nielsen Media Emerging Businesses', 'person': {'first_name': 'Jane', 'last_name': 'Rode', 'permalink': 'jane-rode'}}, {'is_past': True, 'title': 'VP, Research, Local People Meter team', 'person': {'first_name': 'Jane', 'last_name': 'Collins', 'permalink': 'jane-collins'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Mary', 'last_name': 'Liz Finn', 'permalink': 'mary-liz-finn'}}, {'is_past': True, 'title': 'Executive Vice President, Product Leadership', 'person': {'first_name': 'Ari', 'last_name': 'Paparo', 'permalink': 'ari-paparo'}}, {'is_past': True, 'title': 'Vice President, Business Director', 'person': {'first_name': 'Robert', 'last_name': 'Kovalesky', 'permalink': 'robert-kovalesky'}}, {'is_past': True, 'title': 'VP, Sales & Client Services (BuzzMetrics & NetRatings)', 'person': {'first_name': 'Jay', 'last_name': 'Rampuria', 'permalink': 'jay-rampuria'}}, {'is_past': True, 'title': 'Senior Vice President for Investor Relations', 'person': {'first_name': 'Liz', 'last_name': 'Zale', 'permalink': 'liz-zale'}}, {'is_past': True, 'title': 'Associate Marketing Director', 'person': {'first_name': 'Nicole', 'last_name': 'Alexander', 'permalink': 'nicole-alexander'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'John', 'last_name': 'Tantum', 'permalink': 'john-tantum'}}, {'is_past': True, 'title': 'Vice President & Practice Head', 'person': {'first_name': 'Richard', 'last_name': 'Sussman', 'permalink': 'richard-sussman'}}, {'is_past': True, 'title': 'Application Developer, Student', 'person': {'first_name': 'Amir', 'last_name': 'Sharif', 'permalink': 'amir-sharif'}}, {'is_past': True, 'title': 'VP Consumer Insights, Product Management, VP, Production and Operations, Nielsen/Telephia', 'person': {'first_name': 'Linda', 'last_name': 'Shaffer', 'permalink': 'linda-shaffer'}}, {'is_past': True, 'title': 'Client Service Team', 'person': {'first_name': 'Maureen', 'last_name': 'Calabrese', 'permalink': 'maureen-calabrese'}}, {'is_past': True, 'title': 'Publishing Director', 'person': {'first_name': 'Phil', 'last_name': 'Ripperger', 'permalink': 'phil-ripperger'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Gary', 'last_name': 'Cohen', 'permalink': 'gary-cohen'}}, {'is_past': True, 'title': 'Corporate Strategy and New Business Development', 'person': {'first_name': 'Sid', 'last_name': 'Gorham', 'permalink': 'sid-gorham'}}, {'is_past': True, 'title': 'Vice President, Group Client Director', 'person': {'first_name': 'Patrick', 'last_name': 'Venker', 'permalink': 'patrick-venker'}}, {'is_past': True, 'title': 'Emerging Leaders Intern', 'person': {'first_name': 'Todd', 'last_name': 'Goldberg', 'permalink': 'todd-goldberg'}}, {'is_past': True, 'title': 'Sales and Marketing Positions', 'person': {'first_name': 'John', 'last_name': 'Jarrell', 'permalink': 'john-jarrell'}}], 'competitions': [], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Meteor PR', 'permalink': 'meteor-pr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2013, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'eDealya', 'permalink': 'edealya'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 327000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://login.vnuemedia.com/hr/login/login_subscribe.jsp?id=0oqDem1gYIfIclz9i2%2Ffqj5NxCp2AC5DPbVnyT2da8GyV2mXjasabE128n69OrmcAh52%2FGE3pSG%2F%0AEKRYD9vh9EhrJrxukmUzh532fSMTZXL42gwPB80UWVtF1NwJ5UZSM%2BCkLU1mpYBoHFgiH%2Fi0f6Ax%0A9yMIVxt47t%2BHamhEQ0nkOEK24L', 'source_description': 'Nielsen buys rest of NetRatings', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'NetRatings', 'permalink': 'netratings'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'Buzzmetrics', 'permalink': 'buzzmetrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2007/06/29/nielsen-buys-telephia-for-mobile-phone-traffic-measurement-service/', 'source_description': 'Nielsen buys Telephia, for mobile phone traffic measurement service', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 29, 'company': {'name': 'Telephia', 'permalink': 'telephia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-nielsen-buys-online-audience-measurement-firm-koreanclick/', 'source_description': 'Nielsen Buys Online Audience Measurement Firm Koreanclick', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Koreanclick', 'permalink': 'koreanclick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/04/nielsen-acquires-online-video-analytics-company-glanceguide/', 'source_description': 'Nielsen Acquires Online Video Analytics Company GlanceGuide', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 4, 'company': {'name': 'GlanceGuide', 'permalink': 'glanceguide'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/09/nielsen-acquires-marketing-analytics-inc/', 'source_description': 'Nielsen Acquires Marketing Analytics, Inc.', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 10, 'company': {'name': 'Marketing Analytics', 'permalink': 'marketing-analytics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/02/nielsen-acquires-vizu/', 'source_description': 'Nielsen Acquires Vizu To Measure Online Ad Effectiveness', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'Vizu Corporation', 'permalink': 'vizu'}}, {'price_amount': 1300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/baltimore/news/2013/09/30/nielsen-closes-13b-acquistion-arbiton.html?ana=twt', 'source_description': 'Nielsen closes $1.3B acquisition of Columbia-based Arbitron', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Arbitron', 'permalink': 'arbitron'}}, {'price_amount': 117000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://phys.org/news/2013-11-nielsen-harris-interactive-117m.html', 'source_description': 'Nielsen buying Harris Interactive for about $117M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 25, 'company': {'name': 'Harris Interactive', 'permalink': 'harris-interactive'}}], 'offices': [{'description': '', 'address1': '85 Broad Street', 'address2': '', 'zip_code': '10004', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.731118, 'longitude': -73.991933}], 'milestones': [], 'ipo': {'valuation_amount': 1600000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 1, 'pub_day': 26, 'stock_symbol': 'NYSE:NLSN'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'permalink': 'opentable', 'crunchbase_url': 'http://www.crunchbase.com/company/opentable', 'homepage_url': 'http://opentable.com', 'blog_url': 'http://blog.opentable.com', 'blog_feed_url': '', 'twitter_username': 'OpenTable', 'category_code': 'web', 'number_of_employees': 550, 'founded_year': 1998, 'founded_month': 7, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '415-344-4200', 'description': 'Online Restaurant Reservation Provider', 'created_at': 'Fri Aug 24 13:10:03 UTC 2007', 'updated_at': 'Tue Dec 17 03:42:20 UTC 2013', 'overview': '

OpenTable provides a restaurant management system for restaurateurs called the ERB (Electronic Reservation Book). In addition, the company operates OpenTable.com, a website for making restaurant reservations online. The website initially launched in the San Francisco area in 1999. Since then OpenTable has grown to have a customer base of over 30,000 restaurants in the U.S., Canada, Germany, Japan, Mexico and the UK. More than 530 million diners have been seated via OpenTable.

', 'image': {'available_sizes': [[[150, 24], 'assets/images/resized/0000/0022/22v1-max-150x150.png'], [[210, 34], 'assets/images/resized/0000/0022/22v1-max-250x250.png'], [[210, 34], 'assets/images/resized/0000/0022/22v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Joseph', 'last_name': 'Essas', 'permalink': 'joseph-essas'}}, {'is_past': False, 'title': 'SVP, Sales', 'person': {'first_name': 'Michael', 'last_name': 'Dodson', 'permalink': 'michael-dodson'}}, {'is_past': False, 'title': 'SVP, Business Development', 'person': {'first_name': 'Douglas', 'last_name': 'Boake', 'permalink': 'douglas-boake'}}, {'is_past': False, 'title': 'SVP, Operations', 'person': {'first_name': 'Joel', 'last_name': 'Brown', 'permalink': 'joel-brown'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bill', 'last_name': 'Gurley', 'permalink': 'bill-gurley'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Roberts', 'permalink': 'matt-roberts'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Ferreira', 'permalink': 'scott-ferreira-2'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Thomas', 'last_name': 'Layton', 'permalink': 'thomas-layton'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Skip', 'last_name': 'Battle', 'permalink': 'skip-battle'}}, {'is_past': False, 'title': 'Senior Director, Corporate Communications', 'person': {'first_name': 'Tiffany', 'last_name': 'Fox', 'permalink': 'tiffany-fox'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Paul', 'last_name': 'Pressler', 'permalink': 'paul-pressler-2'}}, {'is_past': True, 'title': 'CTO / Founder', 'person': {'first_name': 'Eric', 'last_name': 'Moe', 'permalink': 'eric-moe'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Chuck', 'last_name': 'Templeton', 'permalink': 'chuck-templeton'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jeffrey', 'last_name': 'Jordan', 'permalink': 'jeffrey-jordan'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Sid', 'last_name': 'Gorham', 'permalink': 'sid-gorham'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Senior Vice President and Managing Director of Europe', 'person': {'first_name': 'David', 'last_name': 'Pritchard', 'permalink': 'david-pritchard'}}, {'is_past': True, 'title': 'SVP, Engineering', 'person': {'first_name': 'Charlie', 'last_name': 'McCullough', 'permalink': 'charlie-mccullough'}}, {'is_past': True, 'title': 'Senior Director of Corporate Communications', 'person': {'first_name': 'Shannon', 'last_name': 'Stubo', 'permalink': 'shannon-stubo'}}, {'is_past': True, 'title': 'Internship', 'person': {'first_name': 'Mike', 'last_name': 'Sousa', 'permalink': 'mike-souza'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'John', 'last_name': 'Dulay', 'permalink': 'john-dulay'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Michael', 'last_name': 'Berman', 'permalink': 'michael-berman-2'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Michelle', 'last_name': 'Peluso', 'permalink': 'michelle-peluso'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Christopher', 'last_name': 'Stanley', 'permalink': 'christopher-stanley'}}], 'competitions': [{'competitor': {'name': 'SaveTable', 'permalink': 'savetable'}}, {'competitor': {'name': 'Livebookings', 'permalink': 'livebookings'}}, {'competitor': {'name': 'Matradee.com', 'permalink': 'matradee-com'}}, {'competitor': {'name': 'Restalo', 'permalink': 'restalo-es'}}], 'providerships': [], 'total_money_raised': '$48M', 'funding_rounds': [{'id': 494, 'round_code': 'a', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=13', 'source_description': '', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture Frogs', 'permalink': 'venture-frogs'}, 'person': None}]}, {'id': 495, 'round_code': 'b', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=13', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Impact Venture Partners', 'permalink': 'impact-venture-partners'}, 'person': None}, {'company': {'name': 'American Express', 'permalink': 'americanexpress'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Zagat', 'permalink': 'zagat'}, 'financial_org': None, 'person': None}]}, {'id': 496, 'round_code': 'c', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=77', 'source_description': '', 'raised_amount': 36000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comdisco Ventures', 'permalink': 'comdisco-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Impact Venture Partners', 'permalink': 'impact-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Upstart Capital', 'permalink': 'upstart-capital'}, 'person': None}, {'company': {'name': 'France Telecom', 'permalink': 'france-telecom'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 3000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investors.opentable.com/releasedetail.cfm?ReleaseID=409236', 'source_description': 'OpenTable to Acquire GuestBridge', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 15, 'company': {'name': 'GuestBridge', 'permalink': 'guestbridge'}}, {'price_amount': 55000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/opentable-begins-world-conquest-2010-9', 'source_description': 'Why OpenTable Is The World-Conquering Internet Stock You Need To Care About', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'toptable', 'permalink': 'toptable'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020120803e883qqdoo&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020120803e883qqdoo%26from%3dalert%26pid%3d32', 'source_description': 'OpenTable Acquires Gift Card Start-Up Treatful for $4M', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 3, 'company': {'name': 'Treatful', 'permalink': 'treatful'}}, {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/01/29/opentable-buys-foodspotting-to-get-more-social-around-its-booking-service/', 'source_description': 'Opentable Eats Up Foodspotting For $10M To Get More Social Around Its Booking Service', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'company': {'name': 'Foodspotting', 'permalink': 'foodspotting'}}, {'price_amount': 11000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.nextbigwhat.com/opentable-acquires-justchalo-for-11-million-297/', 'source_description': 'OpenTable Acquires US/Mumbai Based JustChalo for $11 Million', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'JustChalo', 'permalink': 'justchalo'}}, {'price_amount': 11500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nooga.com/164678', 'source_description': ' OpenTable buys Chattanooga business Quickcue for $11.5 million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Quickcue', 'permalink': 'quickcue'}}], 'offices': [{'description': '', 'address1': 'One Montgomery', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.785647, 'longitude': -122.405265}], 'milestones': [{'id': 8047, 'description': 'OpenTable recognized as one of the Hottest San Francisco Companies by Lead411 ', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST COMPANIES IN SAN FRANCISCO\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'OpenTable', 'permalink': 'opentable'}}, {'id': 26263, 'description': 'You’ve Been Served: OpenTable Reaches 15 Million Review Milestone', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2012/09/05/youve-been-served-opentable-reaches-15-million-review-milestone/', 'source_text': '', 'source_description': 'You’ve Been Served: OpenTable Reaches 15 Million Review Milestone', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'OpenTable', 'permalink': 'opentable'}}], 'ipo': {'valuation_amount': 1050000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 21, 'stock_symbol': 'NASDAQ:OPEN'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'permalink': 'shutterfly', 'crunchbase_url': 'http://www.crunchbase.com/company/shutterfly', 'homepage_url': 'http://www.shutterfly.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'shutterfly', 'category_code': 'ecommerce', 'number_of_employees': 611, 'founded_year': 1999, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '650-610-5200', 'description': '', 'created_at': 'Tue Jan 08 09:22:24 UTC 2008', 'updated_at': 'Mon Sep 16 20:35:12 UTC 2013', 'overview': '

Shutterfly, Inc. is the leading manufacturer and digital retailer of high-quality personalized products and services offered through a family of lifestyle brands.

\\n\\n

Founded in 1999, the Shutterfly, Inc. family of brands includes Shutterfly, where your photos come to life in photo books, cards and gifts; Tiny Prints, premium cards and stationery for all life’s occasions; Wedding Paper Divas, wedding invitations and stationery for every step of the planning process; and Treat, personalized greeting cards that really stand out. For more information about Shutterfly, Inc. (NASDAQ:SFLY), visit www.shutterflyinc.com.

', 'image': {'available_sizes': [[[141, 48], 'assets/images/resized/0000/2266/2266v8-max-150x150.png'], [[141, 48], 'assets/images/resized/0000/2266/2266v8-max-250x250.png'], [[141, 48], 'assets/images/resized/0000/2266/2266v8-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Senior Vice President and Chief Marketing Officer', 'person': {'first_name': 'John', 'last_name': 'Boris', 'permalink': 'john-boris'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Jeffrey', 'last_name': 'Housenbold', 'permalink': 'jeffrey-housenbold'}}, {'is_past': False, 'title': 'Senior Vice President, Human Resources', 'person': {'first_name': 'Peter', 'last_name': 'Navin', 'permalink': 'peter-navin'}}, {'is_past': False, 'title': 'Senior Vice President, Operations', 'person': {'first_name': 'Dwayne', 'last_name': 'Black', 'permalink': 'dwayne-black'}}, {'is_past': False, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Dan', 'last_name': 'McCormick', 'permalink': 'dan-mccormick'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Brian', 'last_name': 'Regan', 'permalink': 'brian-regan'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Eric', 'last_name': 'Keller', 'permalink': 'eric-keller'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Brian', 'last_name': 'Swette', 'permalink': 'brian-swette-2'}}, {'is_past': False, 'title': 'Marketing', 'person': {'first_name': 'Kyle', 'last_name': 'Tibbitts', 'permalink': 'kyle-tibbitts'}}, {'is_past': False, 'title': 'Head of Mobile Strategy & Product Management', 'person': {'first_name': 'Deepak', 'last_name': 'Thomas', 'permalink': 'deepak-thomas'}}, {'is_past': False, 'title': 'Director, Network Engineering and Information Security', 'person': {'first_name': 'Vladimir', 'last_name': 'Berkovsky', 'permalink': 'vladmir-berkovsky'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Stephen', 'last_name': 'Killeen', 'permalink': 'stephen-killeen'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Phillip', 'last_name': 'Marineau', 'permalink': 'phillip-marineau'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Nancy', 'last_name': 'Schoendorf', 'permalink': 'nancy-schoendorf'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white-3'}}, {'is_past': False, 'title': 'Director, Business Development - Tiny Prints', 'person': {'first_name': 'Sylvia', 'last_name': 'Yam', 'permalink': 'sylvia-yam'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Stephen', 'last_name': 'Recht', 'permalink': 'stephen-recht'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Andy', 'last_name': 'Young', 'permalink': 'andy-young-3'}}, {'is_past': True, 'title': 'Senior Vice President and Chief Technology Officer', 'person': {'first_name': 'Neil', 'last_name': 'Day', 'permalink': 'neil-day'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Mark', 'last_name': 'Rubash', 'permalink': 'mark-rubash'}}, {'is_past': True, 'title': 'VP of Strategic Sales', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Herendeen', 'permalink': 'julie-herendeen'}}, {'is_past': True, 'title': 'VP Mobile and Social Media', 'person': {'first_name': 'John', 'last_name': 'Poisson', 'permalink': 'john-poisson'}}, {'is_past': True, 'title': 'Senior Vice President, Corporate Developement', 'person': {'first_name': 'Doug', 'last_name': 'Galen', 'permalink': 'doug-galen'}}, {'is_past': True, 'title': 'Senior Vice President & Chief Marketing Officerr', 'person': {'first_name': 'Peter', 'last_name': 'Elarde', 'permalink': 'peter-elarde'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Tom', 'last_name': 'Markworth', 'permalink': 'tom-markworth'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Lavon', 'last_name': 'Woods', 'permalink': 'lavon-woods'}}, {'is_past': True, 'title': 'Sr. Product Manager/Sr. Product Marketing Manager', 'person': {'first_name': 'Tom', 'last_name': 'Markworth', 'permalink': 'tom-markworth'}}, {'is_past': True, 'title': 'Senior Director of Marketing', 'person': {'first_name': 'Sam', 'last_name': 'Faillace', 'permalink': 'sam-faillace'}}, {'is_past': True, 'title': 'Director Marketing / Stragetic Partnerships', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'New Business Strategy', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'Director of Internet Marketing', 'person': {'first_name': 'Katelyn', 'last_name': 'Watson', 'permalink': 'katelyn-watson'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Ian', 'last_name': 'Jeffrey', 'permalink': 'ian-jeffrey'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Ashley', 'last_name': 'Carroll', 'permalink': 'ashley-carroll'}}, {'is_past': True, 'title': 'VP Finance and Investor Relations', 'person': {'first_name': 'John', 'last_name': 'Kaelle', 'permalink': 'john-kaelle'}}, {'is_past': True, 'title': 'Sr. Manager, Sponsorships & Online Advertising/Promotions', 'person': {'first_name': 'Linda', 'last_name': 'Chou', 'permalink': 'linda-chou'}}, {'is_past': True, 'title': 'Business Unit Manager/Product Strategy Manager of WeddingPaperDivas.com', 'person': {'first_name': 'Shae', 'last_name': 'Ayse Cetinel', 'permalink': 'shae-ayse-cetinel'}}, {'is_past': True, 'title': 'VP, Customer Experience', 'person': {'first_name': 'Mak', 'last_name': 'Azadi', 'permalink': 'mak-azadi'}}, {'is_past': True, 'title': 'Director, Data Services', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}], 'competitions': [{'competitor': {'name': 'LiveJournal', 'permalink': 'livejournal'}}, {'competitor': {'name': 'Zooomr', 'permalink': 'zooomr'}}, {'competitor': {'name': 'Snapfish', 'permalink': 'snapfish'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'PrintSmart', 'permalink': 'printsmart'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': 'JMP Securities', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'Nexo', 'permalink': 'nexo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/06/shutterfly_buys.html', 'source_description': \"Shutterfly Buys Custom Children's Book Publisher Make It About Me!\", 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'About Me!', 'permalink': 'about-me'}}, {'price_amount': 2600000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1125920/000112592009000029/sfly8-k_tinypictures.htm', 'source_description': 'SEC filing', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 11, 'company': {'name': 'Tiny Pictures', 'permalink': 'tiny-pictures'}}, {'price_amount': 333000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/03/21/shutterfly-acquires-online-stationery-company-tiny-prints-for-309m-plus-earnout/', 'source_description': 'Shutterfly Acquires Online Stationery Company Tiny Prints For $333M In Cash And Stock', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 21, 'company': {'name': 'Tiny Prints', 'permalink': 'tiny-prints'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/17/shutterfly-acquires-penguin-digital-makers-of-mobile-photo-print-shop-app-mopho/', 'source_description': 'Shutterfly Acquires Penguin Digital, Makers Of Mobile Photo Print Shop App “MoPho”', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 17, 'company': {'name': 'Penguin Digital', 'permalink': 'penguin-digital'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/03/source-shutterfly-to-acquire-slick-photo-sharing-and-storage-startup-thislife/', 'source_description': 'Source: Shutterfly To Acquire Slick Photo Sharing And Storage Startup ThisLife', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'ThisLife', 'permalink': 'thislife'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'piqlet', 'permalink': 'piqlet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ir.shutterfly.com/releasedetail.cfm?releaseid=201659', 'source_description': 'Shutterfly Acquires Memory Matrix', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'Memory Matrix', 'permalink': 'memory-matrix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130430005541/en/Shutterfly-Acquires-MyPublisher', 'source_description': 'Shutterfly Inc. Acquires MyPublisher', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 30, 'company': {'name': 'MyPublisher', 'permalink': 'mypublisher'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/01/shutterfly-acquired-r-and-r-images/', 'source_description': 'Shutterfly Has Acquired Photo Printing Company R And R Images', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'R and R Images', 'permalink': 'r-and-r-images'}}], 'offices': [{'description': '', 'address1': '2800 Bridge Parkway', 'address2': '', 'zip_code': '94065', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 20317, 'description': 'Shutterfly Announces Departure of CFO Mark Rubash', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 12, 'source_url': 'http://www.freshnews.com/news/597832/shutterfly-announces-departure-cfo-mark-rubash', 'source_text': '', 'source_description': 'Shutterfly Announces Departure of CFO Mark Rubash', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Shutterfly', 'permalink': 'shutterfly'}}], 'ipo': {'valuation_amount': 350000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'SFLY'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.shutterfly.com/photo-books', 'title': 'Photo Books'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/christmas-cards', 'title': 'Christmas Cards'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/invitations', 'title': 'Invitations'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/holiday-cards', 'title': 'Holiday Cards'}, {'external_url': 'http://www.shutterfly.com/photo-gifts/custom-iphone-cases', 'title': 'iPhone Cases'}, {'external_url': 'http://www.shutterfly.com/photo-gifts/wall-art', 'title': 'Wall Art'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529823b'), 'name': 'Salesforce', 'permalink': 'salesforce', 'crunchbase_url': 'http://www.crunchbase.com/company/salesforce', 'homepage_url': 'http://www.salesforce.com', 'blog_url': 'http://blogs.salesforce.com', 'blog_feed_url': 'http://blogs.salesforce.com/blogs/atom.xml', 'twitter_username': 'salesforce', 'category_code': 'enterprise', 'number_of_employees': 3500, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'cloud, enterprise, oracle', 'alias_list': '', 'email_address': 'info@salesforce.com', 'phone_number': '415-901-7000', 'description': 'Enterprise Cloud Computing', 'created_at': 'Mon Feb 11 21:21:16 UTC 2008', 'updated_at': 'Wed Dec 18 01:46:25 UTC 2013', 'overview': '

Salesforce is an enterprise cloud computing company that provides business software on a subscription basis. The company is best known for its on-demand Customer Relationship Management (CRM) solutions.

\\n\\n

Salesforce was founded in 1999 by former Oracle executive Marc Benioff, and went public in June 2004. Salesforce has been a pioneer in developing enterprise platforms through its innovative AppExchange directory of on-demand applications, and its Force.com “Platform as a Service” (PaaS) API for extending Salesforce.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/1691/11691v12-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0001/1691/11691v12-max-250x250.jpg'], [[250, 250], 'assets/images/resized/0001/1691/11691v12-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Sales Cloud', 'permalink': 'salesforce-com'}, {'name': 'Salesforce AppExchange', 'permalink': 'salesforce-appexchange'}, {'name': 'Force.com', 'permalink': 'force-com'}, {'name': 'Service Cloud', 'permalink': 'service-cloud'}, {'name': 'Salesforce Chatter', 'permalink': 'salesforce-chatter'}, {'name': 'Salesforce Marketing Cloud', 'permalink': 'salesforce-marketing-cloud'}, {'name': 'Salesforce1', 'permalink': 'salesforce1'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Craig', 'last_name': 'Conway', 'permalink': 'craig-conway'}}, {'is_past': False, 'title': 'Vice Chairman', 'person': {'first_name': 'Frank', 'last_name': 'van Veenendaal', 'permalink': 'frank-van-veenendaal'}}, {'is_past': False, 'title': 'Founder, Chairman & CEO', 'person': {'first_name': 'Marc', 'last_name': 'Benioff', 'permalink': 'marc-benioff'}}, {'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'JP', 'last_name': 'Rangasawami', 'permalink': 'jp-rangasawami'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Gavin', 'last_name': 'Uhma', 'permalink': 'gavin-uhma'}}, {'is_past': False, 'title': 'Chief Adoption Officer', 'person': {'first_name': 'Polly', 'last_name': 'Sumner', 'permalink': 'polly-sumner'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'JP', 'last_name': 'Rangaswami', 'permalink': 'jp-rangaswami'}}, {'is_past': False, 'title': 'CFO & EVP', 'person': {'first_name': 'Graham', 'last_name': 'Smith', 'permalink': 'graham-smith'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Andrew', 'last_name': 'Baer', 'permalink': 'andrew-baer'}}, {'is_past': False, 'title': 'SVP Alliances & Strategy', 'person': {'first_name': 'Ryan', 'last_name': 'Aytay', 'permalink': 'ryan-aytay'}}, {'is_past': False, 'title': 'Former Senior Vice President and Treasure', 'person': {'first_name': 'Larry', 'last_name': 'Tomlinson', 'permalink': 'larry-tomlinson'}}, {'is_past': False, 'title': 'VP Premier Success Plans', 'person': {'first_name': 'Randy', 'last_name': 'Wootton', 'permalink': 'randy-wootton'}}, {'is_past': False, 'title': 'VP Salesforce', 'person': {'first_name': 'Jevon', 'last_name': 'MacDonald', 'permalink': 'jevon-macdonald'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Legal Officer', 'person': {'first_name': 'Burke', 'last_name': 'Norton', 'permalink': 'burke-norton'}}, {'is_past': False, 'title': 'Vice President of Engineering', 'person': {'first_name': 'Raj', 'last_name': 'Vemulapalli', 'permalink': 'raj-vemulapalli'}}, {'is_past': False, 'title': 'VP, Partner Development & Investments', 'person': {'first_name': 'Sherrick', 'last_name': 'Murdoff', 'permalink': 'sherrick-murdoff'}}, {'is_past': False, 'title': 'VP and GM | Desk.com', 'person': {'first_name': 'Alex', 'last_name': 'Bard', 'permalink': 'alex-bard'}}, {'is_past': False, 'title': 'Senior Vice President, Enterprise Commercial Sales, Americas', 'person': {'first_name': 'Jeff', 'last_name': 'Lautenbach', 'permalink': 'jeff-lautenbach'}}, {'is_past': False, 'title': 'Senior VP AppExchange', 'person': {'first_name': 'Steve', 'last_name': 'Fisher', 'permalink': 'steve-fisher'}}, {'is_past': False, 'title': 'Co-Founder, EVP Technology', 'person': {'first_name': 'Parker', 'last_name': 'Harris', 'permalink': 'parker-harris'}}, {'is_past': False, 'title': 'EVP, Law, Policy, and Corporate Strategy', 'person': {'first_name': 'Kenneth', 'last_name': 'I. Juster', 'permalink': 'kenneth-i-juster'}}, {'is_past': False, 'title': 'Senior Director, Products', 'person': {'first_name': 'Steve', 'last_name': 'Chazin', 'permalink': 'steve-chazin'}}, {'is_past': False, 'title': 'VP, Open Cloud Standards', 'person': {'first_name': 'Kevin', 'last_name': 'Marks', 'permalink': 'kevin-marks'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Talieh', 'last_name': 'Rohani', 'permalink': 'talieh-rohani'}}, {'is_past': False, 'title': 'Sr. Director, Finance & Strategy', 'person': {'first_name': 'Naeem', 'last_name': 'Ishaq', 'permalink': 'naeem-ishaq'}}, {'is_past': False, 'title': 'President, Sales and Customer Success', 'person': {'first_name': 'Maria', 'last_name': 'Martinez', 'permalink': 'maria-martinez'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Sanford', 'last_name': 'R. Robertson', 'permalink': 'sanford-r-robertson'}}, {'is_past': False, 'title': 'LMTS, Quality Engineering', 'person': {'first_name': 'Dave', 'last_name': 'Kim', 'permalink': 'dave-kim'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Madhubabu', 'last_name': 'Sandara', 'permalink': 'madhubabu-sandara'}}, {'is_past': False, 'title': 'Director, Product - Work.com', 'person': {'first_name': 'Joe', 'last_name': 'Ryan', 'permalink': 'joe-ryan'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Alan', 'last_name': 'Hassenfeld', 'permalink': 'alan-hassenfeld'}}, {'is_past': False, 'title': 'Chairmen', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': False, 'title': 'Sr. Cloud Technologist', 'person': {'first_name': 'Randy', 'last_name': 'Goh', 'permalink': 'randy-goh'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'Daniel', 'last_name': 'Debow', 'permalink': 'daniel-debow'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Himanshu', 'last_name': '(Heman) Pagey', 'permalink': 'himanshu-heman-pagey'}}, {'is_past': False, 'title': 'Chief Customer Officer and President of International Operations', 'person': {'first_name': 'Jim', 'last_name': 'Steele', 'permalink': 'jim-steele'}}, {'is_past': False, 'title': 'Sr. Unix Systems Administrator', 'person': {'first_name': 'Claude', 'last_name': 'Johnson', 'permalink': 'claude-johnson'}}, {'is_past': False, 'title': 'EVP of emerging markets', 'person': {'first_name': 'Vivek', 'last_name': 'Kundra', 'permalink': 'vivek-kundra'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': False, 'title': 'President, Global Enterprise', 'person': {'first_name': 'Blair', 'last_name': 'Crump', 'permalink': 'blair-crump'}}, {'is_past': False, 'title': 'Foundation Board Member', 'person': {'first_name': 'Rebeca', 'last_name': 'Enonchong', 'permalink': 'rebeca-enonchong'}}, {'is_past': False, 'title': 'Senior Member of Technical Staff', 'person': {'first_name': 'Kirk', 'last_name': 'MacPhee', 'permalink': 'kirk-macphee'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Ben', 'last_name': 'Yoskovitz', 'permalink': 'ben-yoskovitz'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Craig', 'last_name': 'Ramsey', 'permalink': 'craig-ramsey'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Hilarie', 'last_name': 'Koplow-McAdams', 'permalink': 'hilarie-koplow-mcadams'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Stratton', 'last_name': 'Sclavos', 'permalink': 'stratton-sclavos-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Shirley', 'last_name': 'Young', 'permalink': 'shirley-young'}}, {'is_past': False, 'title': 'Sr. Dir Product Management, API & Data Platform - data.com', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Scott', 'last_name': 'Sandell', 'permalink': 'scott-sandell'}}, {'is_past': True, 'title': 'CEO, GM of Jigsaw division', 'person': {'first_name': 'Kevin', 'last_name': 'Akeroyd', 'permalink': 'kevin-akeroyd'}}, {'is_past': True, 'title': 'CTO, CRM', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Kraig', 'last_name': 'Swensrud', 'permalink': 'kraig-swensrud'}}, {'is_past': True, 'title': 'President & Chief Strategy Officer', 'person': {'first_name': 'Steve', 'last_name': 'Cakebread', 'permalink': 'steve-cakebread'}}, {'is_past': True, 'title': 'VP HR for both EMEA and International', 'person': {'first_name': 'Jane', 'last_name': 'Pointet', 'permalink': 'jane-pointet'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Brian', 'last_name': 'Zotter', 'permalink': 'brian-zotter'}}, {'is_past': True, 'title': 'SVP EMEA', 'person': {'first_name': 'Fergus', 'last_name': 'Gloster', 'permalink': 'fergus-gloster'}}, {'is_past': True, 'title': 'Area Vice President, Mid Atlantic & Public Sector', 'person': {'first_name': 'Barton', 'last_name': 'Phillips', 'permalink': 'barton-phillips'}}, {'is_past': True, 'title': 'Senior Vice President, Finance & Strategy', 'person': {'first_name': 'Sarah', 'last_name': 'Friar', 'permalink': 'sarah-friar'}}, {'is_past': True, 'title': 'GM & Vice President, Salesforce.com, Mobile', 'person': {'first_name': 'Charles', 'last_name': 'Dietrich', 'permalink': 'charles-dietrich'}}, {'is_past': True, 'title': 'Senior Vice-President and General Manager, AppExchange and Developer Relations', 'person': {'first_name': 'Rene', 'last_name': 'Bonvanie', 'permalink': 'rene-bonvanie'}}, {'is_past': True, 'title': 'Executive Vice President of Enterprise Sales', 'person': {'first_name': 'Dave', 'last_name': 'Orrico', 'permalink': 'dave-orrico'}}, {'is_past': True, 'title': 'Senior Vice President of Technology', 'person': {'first_name': 'Peter', 'last_name': 'Gassner', 'permalink': 'peter-gassner'}}, {'is_past': True, 'title': 'SVP, Global Enterprise & Public Sector Sales', 'person': {'first_name': 'Judi', 'last_name': 'Feeley', 'permalink': 'judi-feeley'}}, {'is_past': True, 'title': 'Vice President, Alliances', 'person': {'first_name': 'Rob', 'last_name': 'Brewster', 'permalink': 'rob-brewster'}}, {'is_past': True, 'title': 'VP, Product Alliances & Strategy, Salesforce Marketing Cloud', 'person': {'first_name': 'Ed', 'last_name': 'Sullivan', 'permalink': 'ed-sullivan'}}, {'is_past': True, 'title': 'EVP, Platform', 'person': {'first_name': 'Byron', 'last_name': 'Sebastian', 'permalink': 'byron-sebastian'}}, {'is_past': True, 'title': 'VP of Call Center Technology', 'person': {'first_name': 'Jim', 'last_name': 'Dvorkin', 'permalink': 'jim-dvorkin'}}, {'is_past': True, 'title': 'Regional Vice President Sales', 'person': {'first_name': 'Mike', 'last_name': 'Gaffney', 'permalink': 'mike-gaffney'}}, {'is_past': True, 'title': 'VP Product Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Begg', 'permalink': 'rob-begg'}}, {'is_past': True, 'title': 'Regional Vice President', 'person': {'first_name': 'Kevin', 'last_name': 'Dew', 'permalink': 'kevin-dew'}}, {'is_past': True, 'title': 'SVP/GM, Service Cloud', 'person': {'first_name': 'Dave', 'last_name': 'Kellogg', 'permalink': 'dave-kellogg'}}, {'is_past': True, 'title': 'VP, Product Management', 'person': {'first_name': 'Laura', 'last_name': 'Fay', 'permalink': 'laura-fay'}}, {'is_past': True, 'title': 'VP Systems Architecture', 'person': {'first_name': 'Max', 'last_name': 'Rayner', 'permalink': 'max-rayner'}}, {'is_past': True, 'title': 'Sr. VP Development', 'person': {'first_name': 'Todd', 'last_name': 'McKinnon', 'permalink': 'todd-mckinnon'}}, {'is_past': True, 'title': 'VP, Platform and Developer Marketing', 'person': {'first_name': 'Adam', 'last_name': 'Gross', 'permalink': 'adam-gross'}}, {'is_past': True, 'title': 'EVP for Enterprise Sales', 'person': {'first_name': 'Garry', 'last_name': 'Hanna', 'permalink': 'garry-hanna'}}, {'is_past': True, 'title': 'Vice President of Financial Planning', 'person': {'first_name': 'Bob', 'last_name': 'Feller', 'permalink': 'bob-feller'}}, {'is_past': True, 'title': 'EVP, Marketing, Applications, and Education', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': True, 'title': 'President, Platform, Alliances, and Services', 'person': {'first_name': 'Polly', 'last_name': 'Sumner', 'permalink': 'polly-sumner'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Casey', 'last_name': 'Ho', 'permalink': 'casey-ho'}}, {'is_past': True, 'title': 'EVP Enterprise Sales Americas', 'person': {'first_name': 'Doug', 'last_name': 'Dennerline', 'permalink': 'doug-dennerline'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kingsley', 'last_name': 'Joseph', 'permalink': 'kingsley-joseph'}}, {'is_past': True, 'title': 'VP, Customers for Life', 'person': {'first_name': 'Maria', 'last_name': 'Martinez', 'permalink': 'maria-martinez'}}, {'is_past': True, 'title': 'Senior VP of Development', 'person': {'first_name': 'Todd', 'last_name': 'McKinnon', 'permalink': 'todd-mckinnon'}}, {'is_past': True, 'title': 'Senior Technical Recruiter', 'person': {'first_name': 'Joe', 'last_name': 'Cheung', 'permalink': 'joseph-cheung'}}, {'is_past': True, 'title': 'Product Strategy & Investor Relations', 'person': {'first_name': 'Dominic', 'last_name': 'Paschel', 'permalink': 'dominic-paschel-2'}}, {'is_past': True, 'title': 'Senior Director Marketing', 'person': {'first_name': 'Joerg', 'last_name': 'Rathenberg', 'permalink': 'joerg-rathenberg'}}, {'is_past': True, 'title': 'Sr Dir. Chatter Development', 'person': {'first_name': 'Jari', 'last_name': 'Koister', 'permalink': 'jari-koister'}}, {'is_past': True, 'title': 'FP&A', 'person': {'first_name': 'John', 'last_name': 'McGuire', 'permalink': 'john-mcguire'}}, {'is_past': True, 'title': 'Senior Director, Mergers & Acquisitions', 'person': {'first_name': 'Ron', 'last_name': 'Pragides', 'permalink': 'ron-pragides'}}, {'is_past': True, 'title': 'Director, Quality Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Davis', 'permalink': 'mark-davis-9'}}, {'is_past': True, 'title': 'Principal Architect', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': True, 'title': 'Director, User Experience', 'person': {'first_name': 'Catherine', 'last_name': 'Courage', 'permalink': 'catherine-courage'}}, {'is_past': True, 'title': 'Director, Product Management, Service Cloud', 'person': {'first_name': 'Marco', 'last_name': 'Casalaina', 'permalink': 'marco-casalaina'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Paul', 'last_name': 'Hsiao', 'permalink': 'paul-hsiao'}}, {'is_past': True, 'title': 'Sr. Business Analyst eServices Portal', 'person': {'first_name': 'Marcus', 'last_name': 'James', 'permalink': 'marcus-james'}}, {'is_past': True, 'title': 'Senior Member Technical Staff', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'Director, Product Marketing', 'person': {'first_name': 'Ken', 'last_name': 'Osborn', 'permalink': 'ken-osborn'}}, {'is_past': True, 'title': 'Senior Director Professional Services South EMEA', 'person': {'first_name': 'Pascal', 'last_name': 'Gaude', 'permalink': 'pascal-gaude'}}, {'is_past': True, 'title': 'Lead Member of Technical Staff', 'person': {'first_name': 'John', 'last_name': 'Agan', 'permalink': 'john-agan'}}, {'is_past': True, 'title': 'Sr. Director, Marketing Programs', 'person': {'first_name': 'Kimberley', 'last_name': 'Kasper', 'permalink': 'kimberley-kasper'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Jim', 'last_name': 'Yu', 'permalink': 'jim-yu'}}, {'is_past': True, 'title': 'Director, Product Marketing & Management', 'person': {'first_name': 'Nadim', 'last_name': 'Hossain', 'permalink': 'nadim-hossain'}}, {'is_past': True, 'title': 'Manager, Inside Sales - West', 'person': {'first_name': 'Ivonne', 'last_name': 'Marie Orillac', 'permalink': 'ivonne-marie-orillac'}}, {'is_past': True, 'title': 'Sr. Director of Community', 'person': {'first_name': 'Garth', 'last_name': 'Moulton', 'permalink': 'garth-moulton'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dominic', 'last_name': 'Dinardo', 'permalink': 'dominic-dinardo'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Eric', 'last_name': 'Chan', 'permalink': 'eric-chan-3'}}, {'is_past': True, 'title': 'Director of Product Management, iOS', 'person': {'first_name': 'Tedd', 'last_name': 'Fox', 'permalink': 'tedd-fox'}}, {'is_past': True, 'title': 'Senior Development Director', 'person': {'first_name': 'Matt', 'last_name': 'Ho', 'permalink': 'matt-ho'}}, {'is_past': True, 'title': 'Corporate Services', 'person': {'first_name': 'Dan', 'last_name': 'McLennan', 'permalink': 'dan-mclennan'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Scott', 'last_name': 'Perket', 'permalink': 'scott-perket'}}, {'is_past': True, 'title': 'Strategic Account Executive Data.com, Account Executive - General Business', 'person': {'first_name': 'Dennis', 'last_name': 'Bricker', 'permalink': 'dennis-bricker'}}, {'is_past': True, 'title': 'VP Product', 'person': {'first_name': 'Maksim', 'last_name': 'Ovsyannikov', 'permalink': 'maksim-ovsyannikov'}}, {'is_past': True, 'title': 'Technical Leader', 'person': {'first_name': 'Ryan', 'last_name': 'Marples', 'permalink': 'ryan-marples'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sion', 'last_name': 'Lewis', 'permalink': 'sion-lewis'}}, {'is_past': True, 'title': 'Technical Consultant', 'person': {'first_name': 'Venkat', 'last_name': 'Gattamaneni', 'permalink': 'venkat-gattamaneni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Srini', 'last_name': 'Vishnubatta', 'permalink': 'srini-vishnubatta'}}, {'is_past': True, 'title': 'President, Global Corporate Sales and North American Operations', 'person': {'first_name': 'Frank', 'last_name': 'van Veenendaal', 'permalink': 'frank-van-veenendaal'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lew', 'last_name': 'Tucker', 'permalink': 'lew-tucker'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Somrat', 'last_name': 'Niyogi', 'permalink': 'somrat-nyogi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Luedi', 'permalink': 'ariel-luedi'}}, {'is_past': True, 'title': 'Sales & Business Development', 'person': {'first_name': 'Frederic', 'last_name': 'Kerrest', 'permalink': 'frederic-kerrest'}}, {'is_past': True, 'title': 'Director of Social Media', 'person': {'first_name': 'Marcus', 'last_name': 'Nelson', 'permalink': 'marcus-nelson'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'George', 'last_name': 'Mathew', 'permalink': 'george-mathew'}}, {'is_past': True, 'title': 'Director, AppExchange Product Line Management', 'person': {'first_name': 'Clara', 'last_name': 'Shih', 'permalink': 'clara-shih'}}, {'is_past': True, 'title': 'Sr. Dir Technology Partnerships', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': True, 'title': 'Regional Manager Southern Europe', 'person': {'first_name': 'Drew', 'last_name': 'Bartkiewicz', 'permalink': 'drew-bartkiewicz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Janson', 'permalink': 'mike-janson'}}, {'is_past': True, 'title': 'Corporate Sales Representative', 'person': {'first_name': 'Jeremy', 'last_name': 'Poteck', 'permalink': 'jeremy-poteck'}}, {'is_past': True, 'title': 'Lead Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Kador', 'permalink': 'dan-kador'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Theodore', 'last_name': 'Summe', 'permalink': 'theodore-summe'}}, {'is_past': True, 'title': 'Managing Principal', 'person': {'first_name': 'Suren', 'last_name': 'Hiraman', 'permalink': 'suren-hiraman'}}, {'is_past': True, 'title': 'Sr. Director, Product Marketing', 'person': {'first_name': 'Andrew', 'last_name': 'Savitz', 'permalink': 'andrew-savitz'}}, {'is_past': True, 'title': 'Board Of Directors', 'person': {'first_name': 'Allen', 'last_name': 'Miner', 'permalink': 'allen-miner'}}, {'is_past': True, 'title': 'Enterprise Business Representative', 'person': {'first_name': 'Daniel', 'last_name': 'Gibson', 'permalink': 'daniel-gibson'}}, {'is_past': True, 'title': 'Sr. Account Executive', 'person': {'first_name': 'Dan', 'last_name': 'Wardle', 'permalink': 'dan-wardle'}}, {'is_past': True, 'title': 'Regional Vice President North East', 'person': {'first_name': 'Michael', 'last_name': 'Shea', 'permalink': 'michael-shea'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Beckerman', 'permalink': 'jason-beckerman'}}, {'is_past': True, 'title': 'SVP Strat Partnerships', 'person': {'first_name': 'Crid', 'last_name': 'Yu', 'permalink': 'crid-yu'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Rahul', 'last_name': 'Malik', 'permalink': 'rahul-malik-2'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Brad', 'last_name': 'Mattick', 'permalink': 'brad-mattick'}}, {'is_past': True, 'title': 'Aadvisor', 'person': {'first_name': 'Geoffrey', 'last_name': 'Moore', 'permalink': 'geoffrey-moore-2'}}, {'is_past': True, 'title': 'Corporate FP&A', 'person': {'first_name': 'Saravanan', 'last_name': 'Chettiar', 'permalink': 'saravanan-chettiar'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Frank', 'last_name': 'Defesche', 'permalink': 'frank-defesche'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Mitch', 'last_name': 'Wallace', 'permalink': 'mitch-wallace'}}, {'is_past': True, 'title': 'Software engineer', 'person': {'first_name': 'Tommy', 'last_name': 'Hui', 'permalink': 'tommy-hui'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Adrian', 'last_name': 'Kunzle', 'permalink': 'adrian-kunzle'}}, {'is_past': True, 'title': 'Principle Member, Technical Staff', 'person': {'first_name': 'Chien', 'last_name': 'Liang Chou', 'permalink': 'chien-liang-chou'}}, {'is_past': True, 'title': 'Corporate Services Sales', 'person': {'first_name': 'Dan', 'last_name': 'McLennan', 'permalink': 'dan-mclennan'}}, {'is_past': True, 'title': 'Senior Director, Delivery Excellence', 'person': {'first_name': 'Erin', 'last_name': 'Craig', 'permalink': 'erin-craig'}}, {'is_past': True, 'title': 'Area Vice President - Service Cloud EMEA', 'person': {'first_name': 'Matt', 'last_name': 'Tuson', 'permalink': 'matt-tuson'}}, {'is_past': True, 'title': 'Operations', 'person': {'first_name': 'David', 'last_name': 'Hamdani', 'permalink': 'david-hamdani'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Phill', 'last_name': 'Robinson', 'permalink': 'phill-robinson'}}, {'is_past': True, 'title': 'Senior Director, Software Engineering', 'person': {'first_name': 'Ron', 'last_name': 'Pragides', 'permalink': 'ron-pragides'}}, {'is_past': True, 'title': 'Director, Marketing', 'person': {'first_name': 'Jon', 'last_name': 'McGinley', 'permalink': 'jon-mcginley'}}], 'competitions': [{'competitor': {'name': 'Senokian', 'permalink': 'senokian'}}, {'competitor': {'name': 'BEA Systems', 'permalink': 'bea-systems'}}, {'competitor': {'name': 'SAP', 'permalink': 'sap'}}, {'competitor': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'UserVoice', 'permalink': 'uservoice'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'RightNow Technologies', 'permalink': 'rightnow-technologies'}}, {'competitor': {'name': 'INES CRM', 'permalink': 'ines-crm'}}, {'competitor': {'name': 'Sugar CRM', 'permalink': 'sugar-crm'}}, {'competitor': {'name': 'Helpshift, Inc.', 'permalink': 'helpshift-inc'}}, {'competitor': {'name': 'Cybozu, Inc.', 'permalink': 'cybozu-inc'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Baker & McKenzie', 'permalink': 'baker-mckenzie'}}], 'total_money_raised': '$99.9M', 'funding_rounds': [{'id': 2041, 'round_code': 'seed', 'source_url': 'http://www.redherring.com/Home/5202', 'source_description': 'Red Herring', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Larry', 'last_name': 'Ellison', 'permalink': 'larry-ellison'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Halsey', 'last_name': 'Minor', 'permalink': 'halsey-minor'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Magdalena', 'last_name': 'Yesil', 'permalink': 'magdalena-yesil'}}]}, {'id': 2042, 'round_code': 'a', 'source_url': 'http://www.redherring.com/Home/5202', 'source_description': 'Red Herring', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 12, 'funded_day': 2, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'William', 'last_name': 'Hambrecht', 'permalink': 'william-hambrecht'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Patrick', 'last_name': 'McGovern', 'permalink': 'patrick-mcgovern'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'John', 'last_name': 'Friedenrich', 'permalink': 'john-friedenrich'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Igor', 'last_name': 'Sill', 'permalink': 'igor-sill'}}]}, {'id': 40005, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1108524/000120919113031755/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 78916337, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 12, 'investments': []}, {'id': 58534, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Sunbridge Partners', 'permalink': 'sunbridge-partners'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://www.foxbusiness.com/story/markets/industries/technology/sequoia-capital-invests-appirio-accelerate-adoption-demand/', 'source_description': 'Sequoia Capital Invests in Appirio to Accelerate the Adoption of On-Demand ', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 13, 'company': {'name': 'Appirio', 'permalink': 'appirio'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.practicefusion.com/pages/pr/080509_release.html', 'source_description': 'Practice Fusion Announces Investment from Salesforce.com and Cloud Computing Initiative', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Practice Fusion', 'permalink': 'practice-fusion'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2010/04/13/saas-field-service-software-servicemax-raises-10-million-from-salesforce-and-others/', 'source_description': 'SaaS Field Service Software ServiceMax Raises $8 Million From Salesforce And Others ', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 15, 'company': {'name': 'ServiceMax', 'permalink': 'servicemax'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/12/08/docusign-funding/', 'source_description': 'E-Signature Company DocuSign Lands $27 Million, Expands Management Team', 'raised_amount': 27000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'DocuSign', 'permalink': 'docusign'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/02/01/social-application-developer-seesmic-raises-4-million-from-softbank-and-salesforce-com/', 'source_description': 'Social Application Developer Seesmic Raises $4M From SoftBank And Salesforce', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'Seesmic', 'permalink': 'seesmic'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/03/08/hubspot-takes-32-million-investment-from-sequoia-google-ventures-and-salesforce/', 'source_description': '', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 8, 'company': {'name': 'HubSpot', 'permalink': 'hubspot'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2011/01/04/assistly-scores-3-million-more-for-fast-growing-saas-customer-service-product/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 4, 'company': {'name': 'Desk', 'permalink': 'assistly'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/06/08/saas-field-service-software-servicemax-raises-14m-from-mayfield-salesforce-and-others/', 'source_description': 'SaaS Field Service Software ServiceMax Raises $14M From Mayfield, Salesforce And Others', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 8, 'company': {'name': 'ServiceMax', 'permalink': 'servicemax'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1461356/000146135610000002/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 5019998, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 6, 'company': {'name': 'Practice Fusion', 'permalink': 'practice-fusion'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2011/08/24/mobile-enterprise-apps-developer-taptera-raises-2-million-from-salesforce-angels/', 'source_description': 'Mobile Enterprise Apps Developer Taptera Raises $2 Million From Salesforce, Angels', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 24, 'company': {'name': 'Taptera', 'permalink': 'taptera'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2011/08/kenandy-closes-10-5m-series-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Kenandy Closes $10.5M Series A Funding', 'raised_amount': 10500000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 29, 'company': {'name': 'Kenandy', 'permalink': 'kenandy'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2011/09/800app-closes-series-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': '800App Closes Series B Round of Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 9, 'funded_day': 21, 'company': {'name': '800APP', 'permalink': '800app'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/10/11/cloud-storage-platform-box-net-raises-81m-from-salesforce-sap-at-600m-plus-valuation/', 'source_description': 'Cloud Storage Platform Box.net Raises $81M From Salesforce, SAP At $600M-Plus Valuation', 'raised_amount': 81000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 28, 'company': {'name': 'Box', 'permalink': 'box'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/10/11/checkmarx-raises-funding-from-salesforce-com-ofer-hi-tech/', 'source_description': 'Checkmarx Raises Funding From Salesforce.com, Ofer Hi-Tech', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 10, 'company': {'name': 'Checkmarx', 'permalink': 'checkmarx'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://gigaom.com/2011/11/06/urban-airship-raises-15-1m-for-mobile-engagement-platform/', 'source_description': 'GigaOm', 'raised_amount': 15100000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 7, 'company': {'name': 'Urban Airship', 'permalink': 'urban-airship'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/01/05/andreessen-horowitz-salesforce-put-1-4m-in-real-time-messaging-infrastructure-startup-flotype/', 'source_description': 'Andreessen Horowitz, Salesforce Put $1.4M In Real-Time Messaging Infrastructure Startup Flotype', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 5, 'company': {'name': 'Flotype', 'permalink': 'flotype'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/25/ark-seed-round/', 'source_description': 'Ark Raised $4.2 Million Seed Round Instead Of Series A To \"Keep Complete Control\" Of Its People Search Engine ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 25, 'company': {'name': 'Ark', 'permalink': 'ark'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.bizjournals.com/boston/blog/startups/2012/05/insightsquared-raises-45m-salesforce.html', 'source_description': 'Fast-growing InsightSquared raises $4.5M to expand its BI for small biz', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'InsightSquared', 'permalink': 'insightsquared'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.benzinga.com/pressreleases/12/06/b2683010/hoopla-closes-2-8-million-series-a-financing-adds-more-than-25-new-cust', 'source_description': 'Hoopla Closes $2.8 Million Series A Financing, Adds More Than 25 New Customers', 'raised_amount': 2800000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 6, 'funded_day': 20, 'company': {'name': 'Hoopla Software', 'permalink': 'hoopla-software'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/24/chute-seed-round/', 'source_description': 'YC-Backed Chute Nabs $2.7M From Salesforce & More To Become The Twilio For Media Content', 'raised_amount': 2700000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 24, 'company': {'name': 'Chute', 'permalink': 'chute'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2012/09/bigmachines-raises-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'BigMachines Raises Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2012, 'funded_month': 9, 'funded_day': 18, 'company': {'name': 'BigMachines', 'permalink': 'bigmachines'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/10/29/resumator-raises-2-1m-series-b-round-led-by-birchmere-rincon-partners-salesforce/', 'source_description': 'Hiring Platform The Resumator Raises $2.1M Series B Round Led By Birchmere Ventures, Rincon Ventures Partners & Salesforce', 'raised_amount': 2100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 30, 'company': {'name': 'The Resumator', 'permalink': 'the-resumator'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2013/01/14/janrain-raises-33m-from-salesforce-and-others-for-social-log-in-management-platform/', 'source_description': 'Janrain Raises $33M From Salesforce, And Others For Social Log-In Management Platform', 'raised_amount': 33000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Janrain', 'permalink': 'janrain'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/12/11/zenpayroll-launches-cloud-based-payroll-service-with-6-1m-in-seed-funding-from-the-ceos-at-yammer-box-yelp-and-dropbox/', 'source_description': 'ZenPayroll Launches Cloud-Based Payroll Service With $6.1M In Seed Funding From CEOs At Yammer, Box, Yelp And Dropbox', 'raised_amount': 6100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 12, 'company': {'name': 'ZenPayroll', 'permalink': 'zenpayroll'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/08/28/enterprise-app-testing-platform-sauce-labs-raises-3m-from-salesforce-and-triage-ventures/', 'source_description': 'Enterprise App Testing Platform Sauce Labs Raises $3M From Salesforce And Triage Ventures', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 27, 'company': {'name': 'Sauce Labs', 'permalink': 'sauce-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/03/06/discoverly-seed-funding/', 'source_description': 'Discoverly Nabs $750K From Salesforce, Bessemer, And Others For Stealthy Social Enterprise App', 'raised_amount': 750000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 6, 'company': {'name': 'Discoverly', 'permalink': 'discoverly'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://www.mulesoft.com/raises-37-million-connect-new-enterprise', 'source_description': 'MuleSoft Raises $37 Million to Connect the New Enterprise', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 3, 'company': {'name': 'MuleSoft', 'permalink': 'mulesource'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.reuters.com/article/2013/06/10/us-kenandy-funding-venture-idUSBRE95905U20130610?feedType=RSS&feedName=technologyNews', 'source_description': 'Manman founder raises $33 million for latest software company', 'raised_amount': 33000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 10, 'company': {'name': 'Kenandy', 'permalink': 'kenandy'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/05/04/salesforce-joins-datahugs-4m-series-a-while-valley-vcs-love-its-who-knows-who-platform/', 'source_description': 'Salesforce Joins Datahug’s $4M Series-A, While Valley VCs Love Its ‘Who Knows Who’ Platform', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'Datahug', 'permalink': 'datahug'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/30/grid-an-app-that-helps-you-organize-ideas-and-projects-announces-a-seed-round-from-jerry-yang-phil-libin-others/', 'source_description': 'Grid, An App That Helps You Organize Ideas And Projects, Announces A Seed Round From Jerry Yang, Phil Libin, Others', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 30, 'company': {'name': 'Binary Thumb', 'permalink': 'binary-thumb'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130717e97haongz&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130717e97haongz%26from%3dalert%26pid%3d32', 'source_description': \"Apportable Raises $2.4M Led by Google Ventures to 'Translate' Apps from IOS to Android \", 'raised_amount': 2400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Apportable', 'permalink': 'apportable'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/27/heap-raises-2m-for-their-capture-everything-analytics-tool/', 'source_description': 'Heap Raises $2M For Their “Capture Everything” Analytics Tool', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 27, 'company': {'name': 'Heap', 'permalink': 'heap'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/09/09/leveleleven-raises-2m-for-sales-motivation-app-from-salesforce-com-a-former-nba-star-and-an-nfl-offensive-tackle/', 'source_description': 'LevelEleven Raises $2M For Sales Motivation App From Salesforce.com, A Former NBA Star And An NFL Offensive Tackle', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'LevelEleven', 'permalink': 'leveleleven'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/09/18/apptus-raises-37m-for-platform-that-automates-the-quote-to-cash-process/', 'source_description': 'Apttus Raises $37M For Platform That Automates The “Quote To Cash” Process', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 17, 'company': {'name': 'Apttus', 'permalink': 'apttus'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.prnewswire.com/news-releases/social-selling-platform-introhive-announces-expansion-of-latest-funding-round-226118731.html', 'source_description': 'Salesforce.com Invests In Introhive, A Startup Filled With Former Radian6 And Blackberry Employees ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 2, 'company': {'name': 'Introhive', 'permalink': 'introhive'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/10/04/mongodb-raises-150m-for-nosql-database-technology-with-salesforce-joining-as-investor/', 'source_description': 'MongoDB Raises $150M For NoSQL Database Technology With Salesforce Joining As Investor', 'raised_amount': 150000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 4, 'company': {'name': 'MongoDB, Inc.', 'permalink': 'mongodb-inc'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://news.nocamels.com/2013/11/12/cyber-security-company-checkmarx-raises-8m/', 'source_description': 'Cyber Security Company Checkmarx Raises $8M', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 12, 'company': {'name': 'Checkmarx', 'permalink': 'checkmarx'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/12/retrofit-raises-additional-5m-financing.html', 'source_description': ' \\tRetrofit Raises Additional $5M in Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 20, 'company': {'name': 'Retrofit', 'permalink': 'retrofit'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 31500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 4, 'company': {'name': 'InStranet', 'permalink': 'instranet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.cloudave.com/link/breaking-salesforce-com-buys-groupswim', 'source_description': 'Breaking: Salesforce.com Buys GroupSwim ', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 11, 'company': {'name': 'GroupSwim', 'permalink': 'groupswim'}}, {'price_amount': 142000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/04/21/salesforce-buys-jigsaw-for-142m-in-cash-plus-earn-out/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Jigsaw', 'permalink': 'jigsaw'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techvibes.com/blog/sitemasher-sold-and-winding-down-but-to-whom', 'source_description': 'Sitemasher sold and winding down... but to whom?', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Sitemasher', 'permalink': 'sitemasher'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/24/salesforce-buys-enterprise-chat-startup-activa-live/', 'source_description': 'Salesforce Buys Enterprise Chat Startup Activa Live', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 24, 'company': {'name': 'Activa Live', 'permalink': 'activa-live'}}, {'price_amount': 250000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/12/08/breaking-salesforce-buys-heroku-for-212-million-in-cash/', 'source_description': 'Salesforce.com Buys Heroku For $212 Million In Cash', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 8, 'company': {'name': 'Heroku', 'permalink': 'heroku'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/21/salesforce-buys-email-contact-manager-etacts/', 'source_description': 'Salesforce Buys Email Contact Manager Etacts', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 21, 'company': {'name': 'Etacts', 'permalink': 'etacts'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.tmcnet.com/call-center-crm/call_center_crm/salesforcecom-acquires-sendia.asp', 'source_description': 'Salesforce.com Acquires Sendia', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Sendia', 'permalink': 'sendia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/salesforce_com_buys_kieden/s-0005032.html', 'source_description': 'Salesforce.com Buys Kieden', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 22, 'company': {'name': 'Kieden', 'permalink': 'kieden'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://startupmeme.com/salesforce-buys-koral-launches-content-exchange/', 'source_description': 'Salesforce Buys Koral, Launches Content Exchange', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 10, 'company': {'name': 'Koral Technologies', 'permalink': 'koral-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/SalesForce_com_Inc_acquires_Informavores_Ltd-2154324040', 'source_description': 'SalesForce.com Inc acquires Informavores Ltd', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'Informavores', 'permalink': 'informavores'}}, {'price_amount': 31000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/01/06/salesforce-buys-web-conferencing-platform-dimdim-for-31-million-in-cash/', 'source_description': 'Salesforce Buys Web Conferencing Platform DimDim For $31 Million In Cash', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 6, 'company': {'name': 'Dimdim', 'permalink': 'dimdim'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.manymoon.com/2011/02/01/manymoon-acquired-by-salesforce-com/', 'source_description': 'Manymoon Acquired by Salesforce.com ', 'acquired_year': 2011, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Manymoon', 'permalink': 'manymoon'}}, {'price_amount': 326000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/03/30/salesforce-buys-social-media-monitoring-company-radian6-for-326-million/', 'source_description': 'Salesforce Buys Social Media Monitoring Company Radian6 For $326 Million', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 30, 'company': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/09/21/salesforce-buys-social-customer-service-saas-startup-assistly-for-50m-in-cash/', 'source_description': 'Salesforce Buys Customer Service SaaS Assistly For $50M To Reach Small Businesses', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 21, 'company': {'name': 'Desk', 'permalink': 'assistly'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/11/14/salesforce-acquires-social-and-mobile-cloud-computing-consultancy-model-metrics/', 'source_description': 'Salesforce Acquires Social And Mobile Cloud Computing Consultancy Model Metrics', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 14, 'company': {'name': 'Model Metrics', 'permalink': 'model-metrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/15/salesforce-acquires-social-performance-platform-rypple-will-launch-human-capital-management-unit-successforce/', 'source_description': 'Salesforce Buys Social Performance Platform Rypple; Will Launch ‘Human Capital Management’ Unit Successforce', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Rypple', 'permalink': 'rypple'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/01/the-team-from-yc-backed-stypi-heads-to-salesforce-to-work-on-enterprise-collaboration/', 'source_description': 'Salesforce Acquires YC-Backed Collaborative Text Editor Stypi', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 1, 'company': {'name': 'Stypi', 'permalink': 'stypi'}}, {'price_amount': 689000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2012/06/04/salesforce-buys-buddy-media-689m/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Salesforce buys Buddy Media for $689M to become a marketing powerhouse', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Salesforce Buddy Media', 'permalink': 'buddymedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/18/choicepass-acquired-by-salesforce/', 'source_description': 'Enterprise Perks Management Startup ChoicePass Acquired By Salesforce, Will Shut Down June 30', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 18, 'company': {'name': 'ChoicePass', 'permalink': 'choicepass'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/25/salesforce-acquires-techstars-and-techcrunch-disrupt-alum-thinkfuse/', 'source_description': 'Salesforce Acquires TechStars And TechCrunch Disrupt Alum Thinkfuse', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Thinkfuse', 'permalink': 'thinkfuse'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/07/09/salesforce-com-reported-to-buy-goinstant-for-70-million/', 'source_description': 'Salesforce.com Reported To Buy GoInstant For $70 Million', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'GoInstant', 'permalink': 'goinstant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130207e927rgi5n&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130207e927rgi5n%26from%3dalert%26pid%3d32', 'source_description': 'Salesforce Acquires EntropySoft to Find Scattered Digital Documents', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'company': {'name': 'EntropySoft', 'permalink': 'entropysoft'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.daniellemorrill.com/2013/05/seattle-based-clipboard-acquired-by-salesforce-will-shut-down-june-30th/', 'source_description': 'Seattle-based Clipboard Acquired by Salesforce, Will Shut Down June 30th', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 9, 'company': {'name': 'Clipboard', 'permalink': 'clipboard'}}, {'price_amount': 2500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/04/with-exacttarget-acquisition-salesforce-com-has-spent-close-to-3-5-billion-to-get-into-the-chief-marketing-officers-suite/', 'source_description': 'With ExactTarget Acquisition, Salesforce.com Has Spent Close To $3.5 Billion To Get Into The Chief Marketing Officer’s Suite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'ExactTarget', 'permalink': 'exacttarget'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/07/after-picking-up-exacttarget-salesforce-buys-enterprise-business-intelligence-and-analytics-startup-edgespring/', 'source_description': 'After Picking Up ExactTarget, Salesforce Buys Enterprise Business Intelligence And Analytics Startup EdgeSpring', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'EdgeSpring', 'permalink': 'edgespring'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/11/prior-knowledge-goes-from-techcrunch-disrupt-finalist-to-salesforce-com-skunk-works-project/', 'source_description': 'Prior Knowledge Goes From TechCrunch Disrupt Finalist To Salesforce.com Skunkworks Project', 'acquired_year': 2012, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Prior Knowledge', 'permalink': 'prior-knowledge'}}, {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'Salesforce Japan', 'permalink': 'salesforce-japan'}}], 'offices': [{'description': 'HQ', 'address1': 'The Landmark @ One Market Street', 'address2': 'Suite 300', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 28, 'description': 'Salesforce releases new force.com toolkit for Google APIs.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 23, 'source_url': '', 'source_text': 'alesforce.com Delivers New Force.com Toolkit for Google Data APIs, Giving Developers New Capabilities to Harness the Power of Cloud Computing for Application Development\\r\\n \\r\\nForce.com Toolkit for Google Data APIs enables developers to bring together the Force.com platform and Google\\'s open APIs\\r\\n \\r\\nWill accelerate the creation of new multi-cloud-based applications\\r\\n \\r\\n SAN FRANCISCO, June 23 /PRNewswire-FirstCall/ -- Salesforce.com \\r\\n(NYSE: CRM), the market and technology leader in Software-as-a-Service (SaaS) and Platform-as-a-Service (PaaS) today expanded its global strategic alliance with Google, making it easier for developers to harness the power of cloud computing for Web and business application development and deployment. The new Force.com Toolkit for Google Data APIs provides a set of tools and services to empower developers to take advantage of Google Data APIs(TM), a common set of standard APIs for interacting with data in Google(TM) services, within their applications and projects on Force.com. Freely available at http://developer.force.com/ and http://code.google.com/p/apex-google-data/, the new toolkit will help developers bring together data and content in Google Apps(TM) with the database, logic and workflow capabilities in Force.com. The Force.com Platform-as-a-Service and Google\\'s open APIs are creating new opportunities for partners and developers to build powerful new business applications delivered completely via the cloud.\\r\\n (Logo: http://www.newscom.com/cgi-bin/prnh/20050216/SFW105LOGO )\\r\\n \"Google and salesforce.com share a common vision for making the cloud accessible to all developers,\" said Vic Gundotra, vice president, engineering, Google. \"Our work with salesforce.com will help make cloud computing increasingly accessible and powerful for developers, resulting in better Web applications and experiences.\"\\r\\n \"Bringing together the Google and salesforce.com platforms will enable the creation of powerful new applications delivered completely in the cloud,\" said Marc Benioff, chairman and CEO, salesforce.com. \"Developers now can take advantage of the virtually unlimited power and infrastructure of multiple cloud computing architectures from Google and salesforce.com to build the next-generation of business applications.\"\\r\\n \\r\\n Force.com Platform and Google\\'s Open APIs - Enabling Developer Success\\r\\n\\r\\n Salesforce.com and Google\\'s alliance gives developers a multi-cloud computing platform for building and running applications. The Force.com Platform-as-a-Service, encompassing a complete feature set for the creation of business applications, and Google\\'s open APIs and technologies, together will enable the creation of powerful new innovative applications delivered on the Web.\\r\\n Additionally, the Force.com Toolkit for Google Data APIs creates new opportunities for developers and ISVs to extend the widely adopted Salesforce for Google Apps. The toolkit gives developers and partners the ability to create business applications that extend Salesforce for Google Apps as well as build entirely new applications to help customers run their entire business in the cloud. The toolkit will accelerate the creation of applications like sales quote generation and business forecasting that can be deployed by customers with just a few clicks via the AppExchange. Already, 6 of the top 10 applications on salesforce.com\\'s AppExchange marketplace are Google-related partners, demonstrating the growing customer demand for third-party applications that leverage multiple cloud platforms.\\r\\n CODA, one of Europe\\'s leading financial applications providers, has built a Web application prototype that takes data from Google Spreadsheets and brings it directly into their Order-to-Cash module of CODA 2go, a financials application built on Force.com. The initial prototype can be used to perform a cost allocation over extracted transaction details from CODA 2go. Users can apportion new values by editing the cells used by formulas in the spreadsheet; the results are then posted in the form of a journal back into CODA 2go from within the Google Spreadsheet user interface via a Visualforce-powered Google Gadget(TM).\\r\\n \"Following the launch of the Salesforce for Google Apps, we have prototyped a CODA 2go-specific Google Apps integration,\" said Jeremy Roche, CEO of CODA, a leading European financials application provider. \"Our experience of producing finance software over decades is that accountants love manipulating transactions in spreadsheets. Now in just a few weekends, we have produced an on-demand solution that uses Google Spreadsheets and Force.com.\"\\r\\n \\r\\n New Force.com Toolkit for Google Data APIs\\r\\n Freely available at http://developer.force.com/ and at http://code.google.com/p/apex-google-data/, the new Force.com Toolkit for Google Data APIs will help developers create new Web and business applications that leverage the capabilities of Google Data APIs, including read and write access to data and content in Google Apps, with their Force.com projects and offerings. With the toolkit, developers have access to the Google Data APIs directly within Force.com\\'s Apex code, allowing the easy creation of new user experiences and Web applications that connect directly to Force.com\\'s database, integration, Apex programming language, and Visualforce user interface capabilities. Developers can also publish applications built with the Force.com Toolkit for Google Data APIs in the Google section on the AppExchange marketplace and the Google Solutions Marketplace, making them immediately available to customer and developer communities.\\r\\n \\r\\n About salesforce.com\\r\\n Salesforce.com is the market and technology leader in Software-as-a-Service (SaaS) and Platform-as-a-Service (PaaS). The company\\'s portfolio of SaaS applications, including its award-winning CRM application, available at http://www.salesforce.com/products/, has revolutionized the ways that customers manage and share business information over the Internet. The company\\'s Force.com PaaS enables customers, developers and partners to build powerful on-demand applications that deliver the benefits of multi-tenancy across the enterprise. Applications built on the Force.com platform, available at http://www.force.com, can be easily shared, exchanged and installed with a few simple clicks via salesforce.com\\'s AppExchange marketplace available at http://www.salesforce.com/appexchange.\\r\\n As of April 30, 2008, salesforce.com manages customer information for approximately 43,600 customers including ABN AMRO, Dow Jones Newswires, Japan Post, Kaiser Permanente, KONE, Sprint Nextel, and SunTrust Banks. Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase salesforce.com applications should make their purchase decisions based upon features that are currently available. Salesforce.com has headquarters in San Francisco, with offices in Europe and Asia, and trades on the New York Stock Exchange under the ticker symbol \"CRM\". For more information please visit http://www.salesforce.com, or call 1-800-NO-SOFTWARE.\\r\\n \\r\\n Copyright (c) 2008 salesforce.com, inc. All rights reserved. Salesforce and the \"no software\" logo are registered trademarks of salesforce.com, inc., and salesforce.com owns other registered and unregistered trademarks. Other names used herein may be trademarks of their respective owners.\\r\\n \\r\\n Google Apps, Google Data API, and Google Gadget are trademarks of Google Inc. ', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 4291, 'description': 'Salesforce.com Announces Closing of $575 Million Offering of 0.75% Convertible Senior Notes Due 2015', 'stoned_year': 2010, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://www.salesforce.com/company/news-press/press-releases/2010/01/100119.jsp', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 6375, 'description': 'Salesforce Chatterizes 10,000 Of Its Customers First Week After Public Launch', 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2010/06/29/salesforce-chatterizes-10000-of-its-customers-first-week-after-public-launch/', 'source_text': '', 'source_description': 'Salesforce Chatterizes 10,000 Of Its Customers First Week After Public Launch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 9628, 'description': 'Salesforce Shells Out $170 Million To Acquire Japanese Subsidiary From VC Firm', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2010/10/27/salesforce-shells-out-170-million-to-acquire-japanese-subsidiary-from-vc-firm/', 'source_text': '', 'source_description': 'Salesforce Shells Out $170 Million To Acquire Japanese Subsidiary From VC Firm', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 11297, 'description': 'Salesforce.com has completed its acquisition of Dimdim for approximately $31 million in cash, net of cash acquired. ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 6, 'source_url': 'https://www.salesforce.com/company/news-press/press-releases/2011/01/110106.jsp', 'source_text': None, 'source_description': 'Salesforce.com acquires Dimdim', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 11917, 'description': 'Salesforce Buys Superbowl Ads To Promote Its New \"Facebook For Businesses\".\\r\\n\\r\\n', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://www.businessinsider.com/salesforce-buys-superbowl-ads-to-promote-its-new-facebook-for-businesses-2011-1', 'source_text': '', 'source_description': 'Salesforce Buys Superbowl Ads To Promote Its New \"Facebook For Businesses\".', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 14524, 'description': 'Salesforce Closes $326M Acquisition Of Social Media Monitoring Company Radian6', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 2, 'source_url': 'http://techcrunch.com/2011/05/02/salesforce-closes-326m-acquisition-of-social-media-monitoring-company-radian6/', 'source_text': '', 'source_description': 'Salesforce Closes $326M Acquisition Of Social Media Monitoring Company Radian6', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 17358, 'description': 'Salesforce Posts Record Quarterly Revenue Of $546M; Raises Guidance', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 18, 'source_url': 'http://techcrunch.com/2011/08/18/salesforce-posts-record-quarterly-revenue-of-546m-raises-guidance/', 'source_text': '', 'source_description': 'Salesforce Posts Record Quarterly Revenue Of $546M; Raises Guidance', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 23675, 'description': 'An $800M Buddy Media Acquisition Would Be Worth 8X Its Current Revenue', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2012/05/29/salesforce-acquires-buddy-media/', 'source_text': '', 'source_description': 'An $800M Buddy Media Acquisition Would Be Worth 8X Its Current Revenue', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 25656, 'description': 'Salesforce completes $689M Buddy Media buy, debuts Communities social network', 'stoned_year': 2012, 'stoned_month': 8, 'stoned_day': 14, 'source_url': 'http://venturebeat.com/2012/08/14/salesforce-buddy-media/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals%29', 'source_text': '', 'source_description': 'Salesforce completes $689M Buddy Media buy, debuts Communities social network', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 26530, 'description': \"Salesforce.com Foundation Announces $10 Million in Grants for San Francisco's District 10 in Celebration of the 10th Annual Dreamforce\", 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.freshnews.com/news/700776/salesforce-com-foundation-announces-10-million-grants-san-francisco-s-district-10-celeb', 'source_text': '', 'source_description': \"Salesforce.com Foundation Announces $10 Million in Grants for San Francisco's District 10 in Celebration of the 10th Annual Dreamforce\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 36664, 'description': 'Salesforce.com Takes $300M Loan For ExactTarget Acquisition, Cash Resources Getting Tight', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 16, 'source_url': 'http://techcrunch.com/2013/07/15/salesforce-com-takes-300m-loan-for-exacttarget-acquisition-cash-resources-getting-tight/', 'source_text': '', 'source_description': 'Salesforce.com Takes $300M Loan For ExactTarget Acquisition, Cash Resources Getting Tight', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}], 'ipo': {'valuation_amount': 110000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 7, 'pub_day': 2, 'stock_symbol': 'NYSE:CRM'}, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 72], 'assets/images/resized/0014/6496/146496v1-max-150x150.png'], [[250, 121], 'assets/images/resized/0014/6496/146496v1-max-250x250.png'], [[450, 218], 'assets/images/resized/0014/6496/146496v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 118], 'assets/images/resized/0019/7977/197977v1-max-150x150.png'], [[250, 196], 'assets/images/resized/0019/7977/197977v1-max-250x250.png'], [[450, 354], 'assets/images/resized/0019/7977/197977v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.youtube.com/user/salesforce', 'title': 'YouTube'}, {'external_url': 'http://mashpedia.com/Salesforce', 'title': 'Salesforce at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'permalink': 'quinstreet', 'crunchbase_url': 'http://www.crunchbase.com/company/quinstreet', 'homepage_url': 'http://www.quinstreet.com', 'blog_url': 'http://blog.quinstreet.com/', 'blog_feed_url': '', 'twitter_username': 'quinstreet', 'category_code': 'advertising', 'number_of_employees': 500, 'founded_year': 1999, 'founded_month': 4, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '650.578.7700', 'description': 'Performance Marketing', 'created_at': 'Tue Mar 11 20:00:10 UTC 2008', 'updated_at': 'Tue Aug 07 21:58:51 UTC 2012', 'overview': '

QuinStreet uses the internet to connect companies with potential customers.

\\n\\n

The online performance marketing company helps businesses target their would-be customer audiences by using its proprietary technologies and media reach to generate sales leads. As a sign of confidence in its quality, QuinStreet has adopted a pay-for-performance model of pricing. Founded in 1999, QuinStreet is headquartered in Foster City, CA, with satellite offices worldwide and 500 employees.

', 'image': {'available_sizes': [[[149, 44], 'assets/images/resized/0003/1488/31488v1-max-150x150.jpg'], [[149, 44], 'assets/images/resized/0003/1488/31488v1-max-250x250.jpg'], [[149, 44], 'assets/images/resized/0003/1488/31488v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Doug', 'last_name': 'Valenti', 'permalink': 'doug-valenti'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Greg', 'last_name': 'Paulson', 'permalink': 'greg-paulson'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': False, 'title': 'Director of Professional Services', 'person': {'first_name': 'Vishi', 'last_name': 'Iyer', 'permalink': 'vishi-iyer'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Greg', 'last_name': 'Sands', 'permalink': 'greg-sands'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jim', 'last_name': 'Simons', 'permalink': 'jim-simons'}}, {'is_past': True, 'title': 'Vice President and General Manager for Direct', 'person': {'first_name': 'Mihir', 'last_name': 'Shah', 'permalink': 'mihir-shah'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Jon', 'last_name': 'Kelly', 'permalink': 'jon-kelly'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Patrick', 'last_name': 'Quigley', 'permalink': 'patrick-quigley'}}, {'is_past': True, 'title': 'VP, Web Media / VP, B2B Category', 'person': {'first_name': 'Joshua', 'last_name': 'Crossman', 'permalink': 'joshua-crossman'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Gregory', 'last_name': 'Smirin', 'permalink': 'greg-smirin'}}, {'is_past': True, 'title': 'SVP & General Counsel', 'person': {'first_name': 'Daniel', 'last_name': 'Caul', 'permalink': 'daniel-caul'}}, {'is_past': True, 'title': 'Sales and Business Development Manager', 'person': {'first_name': 'Binny', 'last_name': 'Mathews', 'permalink': 'binny-mathews'}}, {'is_past': True, 'title': 'Senior Managing Editor', 'person': {'first_name': 'Josh', 'last_name': 'Anish', 'permalink': 'josh-anish'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Stachowiak', 'permalink': 'mike-stachowiak'}}, {'is_past': True, 'title': 'Sr. Director, Worldwide Engineering', 'person': {'first_name': 'Sastry', 'last_name': 'Nanduri', 'permalink': 'sastry-nanduri'}}, {'is_past': True, 'title': 'Senior Director, New Business Initiatives, Senior Director, Education Vertical', 'person': {'first_name': 'Karen', 'last_name': 'Cassel', 'permalink': 'karen-cassel-2'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Cappy', 'last_name': 'Pratt', 'permalink': 'cappy-pratt'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Yip', 'permalink': 'chris-yip'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Karthik', 'last_name': 'Manimaran', 'permalink': 'karthik-manimaran'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Mat', 'last_name': 'Peyron', 'permalink': 'mat-peyron'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Glenn', 'last_name': 'Solomon', 'permalink': 'glenn-solomon'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Markus A.', 'last_name': 'Nordvik', 'permalink': 'markus-a-nordvik'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Rushabh', 'last_name': 'Doshi', 'permalink': 'rushabh-doshi'}}, {'is_past': True, 'title': 'Web Application Developer Intern', 'person': {'first_name': 'Steven', 'last_name': 'Ramkumar', 'permalink': 'steven-ramkumar'}}, {'is_past': True, 'title': 'Senior Director - Publications', 'person': {'first_name': 'Eli', 'last_name': 'Curetti', 'permalink': 'elie-curetti'}}, {'is_past': True, 'title': 'Senior Director of Vertical Marketing', 'person': {'first_name': 'Patrick', 'last_name': 'Cross', 'permalink': 'patrick-cross'}}, {'is_past': True, 'title': 'VP Client Strategy and Development', 'person': {'first_name': 'Mike', 'last_name': 'Rogers', 'permalink': 'mike-rogers-2'}}, {'is_past': True, 'title': 'Sr. Web Producer', 'person': {'first_name': 'Jay', 'last_name': 'Onda', 'permalink': 'jay-onda'}}], 'competitions': [{'competitor': {'name': 'Vantage Media', 'permalink': 'vantage-media'}}, {'competitor': {'name': 'Contractor Marketing Pros.com', 'permalink': 'contractormarketingpros-com'}}, {'competitor': {'name': 'AdKiwi', 'permalink': 'adkiwi'}}], 'providerships': [], 'total_money_raised': '$4k', 'funding_rounds': [{'id': 6684, 'round_code': 'b', 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2000/12/04/daily20.html', 'source_description': 'QuinStreet dives home $40M', 'raised_amount': 4000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 12, 'funded_day': 10, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Capital Report Index', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Cyberspace Communcation', 'permalink': 'cyberspace-communcation'}}, {'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1083712/000101968709004323/webmedia_8k-ex9901.htm', 'source_description': '', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Internet.com', 'permalink': 'internet-com'}}, {'price_amount': 49700000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-quinstreet-buys-carinsurance.com-for-49.7-million/', 'source_description': 'QuinStreet Buys CarInsurance.com For $49.7 Million', 'acquired_year': 2010, 'acquired_month': 11, 'acquired_day': 8, 'company': {'name': 'CarInsurance.com', 'permalink': 'carinsurance-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/stories/2010/07/26/daily97.html', 'source_description': 'QuinStreet buys insurance.com website', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 29, 'company': {'name': 'Insurance.com', 'permalink': 'insurance-com'}}, {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Pooxi', 'permalink': 'pooxi'}}], 'offices': [{'description': '', 'address1': '950 Tower Lane', 'address2': '6th Floor', 'zip_code': '94404', 'city': 'Foster City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.5600585, 'longitude': -122.270249}], 'milestones': [{'id': 1908, 'description': 'QuinStreet buys Internet.com business for $18M', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 9, 'source_url': 'http://paidcontent.org/article/419-meckler-selling-internet.com-business-to-quinstreet-for-18m-exiting-tec/', 'source_text': '', 'source_description': 'Meckler Selling Internet.com Business to QuinStreet For $18M; Exiting Tech Trade', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2088, 'description': 'QuinStreet Publicly Boasts About Its Earnings', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 18, 'source_url': 'http://blogs.wsj.com/venturecapital/2009/08/18/quinstreet-boasts-publicly-about-its-earnings/', 'source_text': None, 'source_description': 'Wall Street Journal', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2104, 'description': 'In Tough Times, QuinStreet Expands Internship Program', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 31, 'source_url': 'http://www.prweb.com/releases/2009/08/prweb2806914.htm', 'source_text': None, 'source_description': 'PR Web', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2105, 'description': 'QuinStreet Provides Pro-Bono Services to the Galena Fest in Reno, Nevada', 'stoned_year': 2009, 'stoned_month': 9, 'stoned_day': 8, 'source_url': 'http://www.prweb.com/releases/2009/09/prweb2836224.htm', 'source_text': None, 'source_description': 'PR Web', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2106, 'description': 'QuinStreet to hit $300M in revenue', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 25, 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2009/08/24/story7.html', 'source_text': None, 'source_description': 'San Francisco Business Times', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2236, 'description': 'QuinStreet Buys Insure.com Domain & Media Assets For $16 Million', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 9, 'source_url': 'http://paidcontent.org/article/419-quinstreet-buys-insure.com-domain-media-assets-for-16-million/', 'source_text': '', 'source_description': 'QuinStreet Buys Insure.com Domain & Media Assets For $16 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2710, 'description': 'QuinStreet Files for IPO', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1117297/000095012309064388/f53797orsv1.htm', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 10097, 'description': 'QuinStreet hires Adam Cherubini, formerly of InsWeb', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': None, 'source_url': 'http://www.linkedin.com/profile/view?id=16030299', 'source_text': None, 'source_description': 'LinkedIn', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}], 'ipo': {'valuation_amount': 140000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 1, 'pub_day': 11, 'stock_symbol': 'NASDAQ:QNST'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/5840/45840v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/5840/45840v1-max-250x250.png'], [[450, 280], 'assets/images/resized/0004/5840/45840v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.prweb.com/releases/2009/05/prweb2456914.htm', 'title': 'QuinStreet, Inc. Celebrates Ten Years as Online Media and Marketing Leader'}, {'external_url': 'http://www.prweb.com/releases/2009/05/prweb2370544.htm', 'title': 'QuinStreet Sponsors Top Family Team in March of Dimes Fundraiser'}, {'external_url': 'http://blogs.wsj.com/venturecapital/2009/08/18/quinstreet-boasts-publicly-about-its-earnings/?mod=rss_WSJBlog', 'title': 'Wall Street Journal QuinStreet Results'}, {'external_url': 'http://en.wikipedia.org/wiki/Quinstreet', 'title': 'QuinStreet on Wikipedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'name': 'Rackspace', 'permalink': 'rackspace', 'crunchbase_url': 'http://www.crunchbase.com/company/rackspace', 'homepage_url': 'http://www.rackspace.com', 'blog_url': 'http://www.rackspace.com/blog/index.php', 'blog_feed_url': 'http://www.rackspace.com/blog/?feed=rss2', 'twitter_username': 'Rackspace', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1998, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'cloud, cloud-management-systems, iaas', 'alias_list': None, 'email_address': 'sales@rackspace.com', 'phone_number': '800-961-2888', 'description': '', 'created_at': 'Thu Mar 13 16:48:27 UTC 2008', 'updated_at': 'Mon Jun 03 03:26:39 UTC 2013', 'overview': '

Rackspace® (NYSE: RAX) is the open cloud company and founder of OpenStack, the standard open-source operating system for cloud computing. Headquartered in San Antonio, Rackspace delivers its renowned Fanatical Support® to more than 200,000 business customers, from data centers on four continents. Rackspace is a leading provider of hybrid clouds, which enable businesses to run their workloads where they run most effectively — whether on the public cloud, a private cloud, dedicated servers, or a combination of these platforms. Rackspace has been recognized by Bloomberg BusinessWeek as a Top 100 Performing Technology Company, and is featured on Fortune’s list of 100 Best Companies to Work For. For more information, visit www.rackspace.com.

', 'image': {'available_sizes': [[[150, 54], 'assets/images/resized/0001/7859/17859v6-max-150x150.jpg'], [[250, 90], 'assets/images/resized/0001/7859/17859v6-max-250x250.jpg'], [[300, 109], 'assets/images/resized/0001/7859/17859v6-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & Former CEO', 'person': {'first_name': 'Richard', 'last_name': 'Yoo', 'permalink': 'richard-yoo'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Pat', 'last_name': 'Condon', 'permalink': 'pat-condon'}}, {'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Graham', 'last_name': 'Weston', 'permalink': 'graham-weston'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Mark', 'last_name': 'Roenigk', 'permalink': 'mark-roenigk'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Karl', 'last_name': 'Pichler', 'permalink': 'karl-pichler'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lanham', 'last_name': 'Napier', 'permalink': 'lanham-napier'}}, {'is_past': False, 'title': 'Vice President - Product Marketing', 'person': {'first_name': 'Rajeev', 'last_name': 'Shrivastava', 'permalink': 'rajeev-shrivastava'}}, {'is_past': False, 'title': 'VP, Operations and Customer Care', 'person': {'first_name': 'Troy', 'last_name': 'Toman', 'permalink': 'troy-toman'}}, {'is_past': False, 'title': 'VP, Product and Marketing', 'person': {'first_name': 'Klee', 'last_name': 'Kleber', 'permalink': 'klee-kleber'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'John', 'last_name': 'Engates', 'permalink': 'john-engates'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Lew', 'last_name': 'Moorman', 'permalink': 'lew-moorman'}}, {'is_past': False, 'title': 'Director, Marketing', 'person': {'first_name': 'Tiffaney', 'last_name': 'Fox Quintana', 'permalink': 'tiffaney-fox-quintana'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ben', 'last_name': 'Arent', 'permalink': 'ben-arent'}}, {'is_past': False, 'title': 'Sr. Director Product', 'person': {'first_name': 'Chris', 'last_name': 'Lalonde', 'permalink': 'chris-lalonde'}}, {'is_past': False, 'title': 'VP, IT', 'person': {'first_name': 'Kiprian', 'last_name': 'Miles', 'permalink': 'kiprian-miles'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Alan', 'last_name': 'Schoenbaum', 'permalink': 'alan-schoenbaum'}}, {'is_past': False, 'title': 'Racker', 'person': {'first_name': 'Jonathan', 'last_name': 'Siegel', 'permalink': 'jonathan-siegel'}}, {'is_past': False, 'title': 'Operations Manager', 'person': {'first_name': 'Teri', 'last_name': 'Wilson', 'permalink': 'teri-wilson'}}, {'is_past': False, 'title': 'Lead Financial Analyst', 'person': {'first_name': 'Ivan', 'last_name': 'Lenev', 'permalink': 'ivan-lenev'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Dirk', 'last_name': 'Elmendorf', 'permalink': 'dirk-elmendorf'}}, {'is_past': True, 'title': 'Senior VP, CFO & Treasurer', 'person': {'first_name': 'Major', 'last_name': 'Horton', 'permalink': 'major-horton'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Bruce', 'last_name': 'Knooihuizen', 'permalink': 'bruce-knooihuizen'}}, {'is_past': True, 'title': 'Vice President of Worldwide Partner Sales', 'person': {'first_name': 'Christopher', 'last_name': 'Rajiah', 'permalink': 'christopher-rajiah'}}, {'is_past': True, 'title': 'Vice President, Fanatical Support', 'person': {'first_name': 'Frederick', 'last_name': '\"Suizo\" Mendler', 'permalink': 'frederick-suizo-mendler'}}, {'is_past': True, 'title': 'VP, Infrastructure & Operations', 'person': {'first_name': 'Michael', 'last_name': 'Landesman', 'permalink': 'michael-landesman'}}, {'is_past': True, 'title': 'SVP / Managing Director', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'VP, Strategy / Corp Dev', 'person': {'first_name': 'Bill', 'last_name': 'Boebel', 'permalink': 'bill-boebel'}}, {'is_past': True, 'title': 'VP, Support', 'person': {'first_name': 'Frederick', 'last_name': 'Mendler', 'permalink': 'frederick-mendler'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Douglas', 'last_name': 'Leone', 'permalink': 'douglas-leone'}}, {'is_past': True, 'title': 'Nepholologist', 'person': {'first_name': 'Harper', 'last_name': 'Reed', 'permalink': 'harper-reed'}}, {'is_past': True, 'title': 'Software Developer II', 'person': {'first_name': 'William', 'last_name': 'Wolf', 'permalink': 'william-wolf-2'}}, {'is_past': True, 'title': 'Director of Fanatical Support', 'person': {'first_name': 'Luke', 'last_name': 'Owen', 'permalink': 'luke-owen'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Dominic', 'last_name': 'Monkhouse', 'permalink': 'dominic-monkhouse'}}, {'is_past': True, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Blake', 'last_name': 'Robinson', 'permalink': 'blake-robinson'}}, {'is_past': True, 'title': 'Director of Operational Excellence - Cloud', 'person': {'first_name': 'Luke', 'last_name': 'Owen', 'permalink': 'luke-owen'}}, {'is_past': True, 'title': 'Linux Software Developer', 'person': {'first_name': 'BJ', 'last_name': 'Dierkes', 'permalink': 'bj-dierkes'}}], 'competitions': [{'competitor': {'name': 'PEER 1 Hosting', 'permalink': 'peer-1'}}, {'competitor': {'name': 'UnitedLayer', 'permalink': 'unitedlayer'}}, {'competitor': {'name': 'ServePath', 'permalink': 'servepath'}}, {'competitor': {'name': 'Verizon Communications, Inc.', 'permalink': 'verizon'}}, {'competitor': {'name': 'Engine Yard', 'permalink': 'engineyard'}}, {'competitor': {'name': 'INetU Managed Hosting', 'permalink': 'inetu-managed-hosting'}}, {'competitor': {'name': 'SoftLayer', 'permalink': 'softlayer'}}, {'competitor': {'name': 'ServInt', 'permalink': 'servint'}}, {'competitor': {'name': 'McKremie.com', 'permalink': 'mckremie'}}, {'competitor': {'name': 'FireHost', 'permalink': 'firehost'}}, {'competitor': {'name': 'Internap', 'permalink': 'internap'}}, {'competitor': {'name': 'Nexcess', 'permalink': 'nexcess'}}, {'competitor': {'name': 'Linode', 'permalink': 'linode'}}, {'competitor': {'name': 'Amazon Web Services', 'permalink': 'amazon-web-services'}}, {'competitor': {'name': 'Airlock', 'permalink': 'airlock'}}, {'competitor': {'name': 'EdgeWebHosting', 'permalink': 'edgewebhosting'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Brinkwire ', 'permalink': 'brinkwire'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/03/rackspace_inves.html', 'source_description': 'Rackspace Invests in Spin-off Mosso', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 3, 'funded_day': 21, 'company': {'name': 'Mosso', 'permalink': 'mosso'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.austinstartup.com/2010/04/austin-based-rackspace-funded-%E2%80%9Criptano%E2%80%9D-launches/', 'source_description': 'Austin Based, Rackspace funded \"Riptano\" launches', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 23, 'company': {'name': 'DataStax', 'permalink': 'datastax'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://gigaom.com/2013/05/14/cloudant-snares-12m-from-rackspace-and-others-to-build-awareness-for-its-cloudy-database/', 'source_description': 'Cloudant snares $12M from Rackspace and others to build awareness for its cloudy database', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'Cloudant', 'permalink': 'cloudant'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2008/10/our_own_jungled.html', 'source_description': 'Our Own Jungledisk Bought By Rackspace', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 23, 'company': {'name': 'Jungle Disk', 'permalink': 'jungledisk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2010/12/rackspace_buys.html', 'source_description': \"RackSpace Buys Cloud Hosting Management's CloudKick\", 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Cloudkick', 'permalink': 'cloudkick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.rackspace.com/blog/?p=1971', 'source_description': 'Rackspace Acquires Anso Labs; Furthers Commitment to OpenStack ', 'acquired_year': 2011, 'acquired_month': 2, 'acquired_day': 9, 'company': {'name': 'Anso Labs', 'permalink': 'anso-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.slicehost.com/articles/2008/10/22/big-news-today', 'source_description': 'Big news - Rackspace and Slicehost', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Slicehost', 'permalink': 'slicehost'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/rackspace-acquires-sharepoint911-to-provide-industry-leading-sharepoint-expertise-2012-02-16', 'source_description': 'Rackspace Acquires SharePoint911 to Provide Industry Leading SharePoint Expertise', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 16, 'company': {'name': 'SharePoint911', 'permalink': 'sharepoint911'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/28/rackspace-acquires-y-combinator-startup-mailgun-an-api-that-abstracts-creating-email-inboxes-for-apps-and-web-sites/', 'source_description': 'Rackspace Acquires Mailgun, A Y Combinator Startup That Gives App Developers An API For Creating And Managing Online Mailboxes', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 28, 'company': {'name': 'Mailgun', 'permalink': 'mailgun'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/rackspace-acquires-objectrocket-to-help-customers-scale-mongodb-in-the-cloud-2013-02-27-10159275', 'source_description': 'Rackspace Acquires ObjectRocket to Help Customers Scale MongoDB in the Cloud', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 27, 'company': {'name': 'ObjectRocket', 'permalink': 'objectrocket'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/28/rackspace-acquires-exceptional-to-add-app-error-tracking-tools-for-developers/', 'source_description': 'Rackspace Acquires Exceptional To Add App Error Tracking Tools For Developers', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 28, 'company': {'name': 'Exceptional Software', 'permalink': 'exceptional-2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.geektime.com/2013/11/03/israeli-zerovm-acquired-by-rackspace/', 'source_description': 'Israeli ZeroVM acquired by RackSpace', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 3, 'company': {'name': 'ZeroVM', 'permalink': 'zerovm'}}], 'offices': [{'description': 'HQ', 'address1': '5000 Walzem Road', 'address2': 'Suite 100', 'zip_code': '78218', 'city': 'San Antonio', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 29.527664, 'longitude': -98.562993}, {'description': 'London Office', 'address1': 'Millington Road', 'address2': '', 'zip_code': 'UB3 4AZ', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': 'San Francisco Office', 'address1': '620 Folsom St.', 'address2': '#100', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 17986, 'description': 'Added Susan J. Michael as Director of User Experience Design', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 11, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rackspace', 'permalink': 'rackspace'}}], 'ipo': {'valuation_amount': 5440000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'RAX'}, 'video_embeds': [{'embed_code': '', 'description': ''}, {'embed_code': '', 'description': '

Claremont Creek Ventures

'}, {'embed_code': '', 'description': '

Focus video

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/6190/46190v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/6190/46190v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/6190/46190v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 92], 'assets/images/resized/0007/1350/71350v2-max-150x150.png'], [[250, 153], 'assets/images/resized/0007/1350/71350v2-max-250x250.png'], [[450, 276], 'assets/images/resized/0007/1350/71350v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'name': 'BMC Software', 'permalink': 'bmc-software', 'crunchbase_url': 'http://www.crunchbase.com/company/bmc-software', 'homepage_url': 'http://www.bmc.com', 'blog_url': 'http://www.bmc.com/devops', 'blog_feed_url': '', 'twitter_username': 'bmcsoftware', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1980, 'founded_month': 9, 'founded_day': 19, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@bmc.com', 'phone_number': '800-841-2031', 'description': '', 'created_at': 'Tue Mar 18 14:04:07 UTC 2008', 'updated_at': 'Mon Oct 21 18:08:28 UTC 2013', 'overview': '

Business Runs on IT. IT Runs on BMC Software.\\nBusiness runs better when IT runs at its best. That’s why more than 20,000 IT organizations — from the Global 100 to the smallest businesses — in over 120 countries rely on BMC Software (NASDAQ: BMC) to manage their business services and applications across distributed, mainframe, virtual and cloud environments. With the leading Business Service Management platform, Cloud Management, and the industry’s broadest choice of IT management solutions, BMC helps customers cut costs, reduce risk and achieve business objectives.

', 'image': {'available_sizes': [[[135, 66], 'assets/images/resized/0001/5901/15901v1-max-150x150.png'], [[135, 66], 'assets/images/resized/0001/5901/15901v1-max-250x250.png'], [[135, 66], 'assets/images/resized/0001/5901/15901v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Member of Board of Directors', 'person': {'first_name': 'Mark', 'last_name': 'Hawkins', 'permalink': 'mark-hawkins'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Koustubha', 'last_name': 'Deshpande', 'permalink': 'koustubha-deshpande'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vinny', 'last_name': 'Smith', 'permalink': 'vinny-smith'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Larry', 'last_name': 'Warnock', 'permalink': 'larry-warnock'}}, {'is_past': True, 'title': 'CTO / Technical Executive', 'person': {'first_name': 'David', 'last_name': 'Dew', 'permalink': 'david-dew'}}, {'is_past': True, 'title': 'Vice President and Business Unit CFO', 'person': {'first_name': 'Tony', 'last_name': 'Ritz', 'permalink': 'tony-ritz'}}, {'is_past': True, 'title': 'Chief Architect, Open Source Strategy', 'person': {'first_name': 'whurley', 'last_name': '(william hurley)', 'permalink': 'whurley-william-hurley'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Tom', 'last_name': 'Bishop', 'permalink': 'tom-bishop-2'}}, {'is_past': True, 'title': 'Corporate Controller and Chief Accounting Officer', 'person': {'first_name': 'Kevin', 'last_name': 'Klausmeyer', 'permalink': 'kevin-klausmeyer'}}, {'is_past': True, 'title': 'SVP and CTO', 'person': {'first_name': 'Kirill', 'last_name': 'Tatarinov', 'permalink': 'kirill-tatarinov'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'George', 'last_name': 'W. Harrington', 'permalink': 'george-w-harrington'}}, {'is_past': True, 'title': 'Senior Vice President, R&D and Strategy and Corporate Development', 'person': {'first_name': 'Dan', 'last_name': 'Barnea', 'permalink': 'dan-barnea'}}, {'is_past': True, 'title': 'VP, Sales - Worldwide Specialization & Inside Sales', 'person': {'first_name': 'Tim', 'last_name': 'Koubek', 'permalink': 'tim-koubek'}}, {'is_past': True, 'title': 'VP of ENG', 'person': {'first_name': 'Ted', 'last_name': 'Trimble', 'permalink': 'ted-trimble'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Jim', 'last_name': 'Darragh', 'permalink': 'jim-darragh'}}, {'is_past': True, 'title': 'Vice President, Worldwide Marketing', 'person': {'first_name': 'Vick', 'last_name': 'Viren Vaishnavi', 'permalink': 'vick-viren-vaishnavi'}}, {'is_past': True, 'title': 'Vice President, Worldwide Marketing, Vice President, Enterprise Solutions Marketing', 'person': {'first_name': 'David', 'last_name': 'Greene', 'permalink': 'david-greene-2'}}, {'is_past': True, 'title': 'VP Sales & Services', 'person': {'first_name': 'Alex', 'last_name': 'Shootman', 'permalink': 'alex-shootman'}}, {'is_past': True, 'title': 'AVP', 'person': {'first_name': 'Carlos', 'last_name': 'Delatorre', 'permalink': 'carlos-delatorre'}}, {'is_past': True, 'title': 'VP (various)', 'person': {'first_name': 'Steve', 'last_name': 'Lesem', 'permalink': 'steve-lesem'}}, {'is_past': True, 'title': 'VP, Northern Europe & France', 'person': {'first_name': 'Per', 'last_name': 'Ottosson', 'permalink': 'per-ottosson'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Ron', 'last_name': 'Shoshani', 'permalink': 'ron-shoshani'}}, {'is_past': True, 'title': 'Product Development Manager', 'person': {'first_name': 'Avi', 'last_name': 'Uziel', 'permalink': 'avi-uziel'}}, {'is_past': True, 'title': 'Revenue Recognition Accounting Manager', 'person': {'first_name': 'Cassandra', 'last_name': 'Ho', 'permalink': 'cassandra-ho'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Donald', 'last_name': 'Becker ( Storage, Network & Compliance)', 'permalink': 'donald-becker-storage-network-compliance'}}, {'is_past': True, 'title': 'Senior Technical Support Analyst', 'person': {'first_name': 'Jennifer', 'last_name': 'Nelson ( Database Server & Tools )', 'permalink': 'jennifer-nelson-database-server-tools'}}, {'is_past': True, 'title': 'Phurnace Transition', 'person': {'first_name': 'Patti', 'last_name': 'Soch', 'permalink': 'patti-soch'}}, {'is_past': True, 'title': 'Director, Business Development & Strategy', 'person': {'first_name': 'Raj', 'last_name': 'Sabhlok', 'permalink': 'raj-sabhlok'}}, {'is_past': True, 'title': 'Vice President - North America East', 'person': {'first_name': 'Scott', 'last_name': 'Davis', 'permalink': 'scott-davis-4'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Doug', 'last_name': 'Merritt', 'permalink': 'doug-merritt'}}, {'is_past': True, 'title': 'vice president and general manager', 'person': {'first_name': 'Gene', 'last_name': 'Austin', 'permalink': 'gene-austin'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Brett', 'last_name': 'Shirk', 'permalink': 'brett-shirk'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Daniel', 'last_name': 'Nelson', 'permalink': 'daniel-nelson-4'}}, {'is_past': True, 'title': 'Senior SQA Engineer', 'person': {'first_name': 'Pete', 'last_name': 'Pickerill', 'permalink': 'pete-pickerill'}}, {'is_past': True, 'title': 'Director of Marketing Communications', 'person': {'first_name': 'Ching', 'last_name': 'Wu', 'permalink': 'ching-wu'}}, {'is_past': True, 'title': 'Director, R&D', 'person': {'first_name': 'Frank', 'last_name': 'Careccia', 'permalink': 'frank-careccia'}}, {'is_past': True, 'title': 'Sr. Program Executive - Proactive Operations and Application Operations', 'person': {'first_name': 'David', 'last_name': 'Langlais', 'permalink': 'david-langlais'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'James', 'last_name': 'Legg', 'permalink': 'james-legg'}}, {'is_past': True, 'title': 'Managing Director Benelux', 'person': {'first_name': 'Kees', 'last_name': 'van Bekkum', 'permalink': 'kees-van-bekkum'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Jay', 'last_name': 'Gardner', 'permalink': 'jay-gardner-2'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Nany', 'last_name': 'Harris', 'permalink': 'nany-harris'}}, {'is_past': True, 'title': 'Senior Legal Counsel', 'person': {'first_name': 'Jeremy', 'last_name': 'Aber', 'permalink': 'jeremy-aber'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Bruce', 'last_name': 'Talley', 'permalink': 'bruce-talley'}}, {'is_past': True, 'title': 'VP/GM, IT Service Management', 'person': {'first_name': 'Rohit', 'last_name': 'Gupta', 'permalink': 'rohit-gupta-10'}}, {'is_past': True, 'title': 'Engineering and Managerial', 'person': {'first_name': 'Kip', 'last_name': 'McClanahan', 'permalink': 'kip-mcclanahan'}}, {'is_past': True, 'title': 'Senior Product Developer', 'person': {'first_name': 'Vishal', 'last_name': 'Rao', 'permalink': 'vishal-rao'}}, {'is_past': True, 'title': 'Director Infrastructure Management EMEA', 'person': {'first_name': 'Tim', 'last_name': 'Waterton', 'permalink': 'tim-waterton'}}, {'is_past': True, 'title': 'Engineering', 'person': {'first_name': 'Bob', 'last_name': 'Kruger', 'permalink': 'bob-kruger'}}, {'is_past': True, 'title': 'Product Author/Lead Software Developer', 'person': {'first_name': 'Gregory', 'last_name': 'Grounds ( Database Server & Tools )', 'permalink': 'gregory-grounds-database-server-tools'}}, {'is_past': True, 'title': 'Director of R&D', 'person': {'first_name': 'Walt', 'last_name': 'Giroir', 'permalink': 'walt-giroir'}}, {'is_past': True, 'title': 'Sr. Account Manager', 'person': {'first_name': 'Chris', 'last_name': 'Gillan', 'permalink': 'chris-gillan'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Steve', 'last_name': 'Rowland', 'permalink': 'steve-rowland'}}, {'is_past': True, 'title': 'Regional Channel Manager', 'person': {'first_name': 'Dawn', 'last_name': 'Marie Ruszel', 'permalink': 'dawn-marie-ruszel'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Randy', 'last_name': 'Streu', 'permalink': 'randy-streu'}}, {'is_past': True, 'title': 'VP Corporate Strategy', 'person': {'first_name': 'Yosef', 'last_name': 'Fried', 'permalink': 'yosef-fried'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Vaughn', 'last_name': 'Balter', 'permalink': 'vaughn-balter'}}, {'is_past': True, 'title': 'Lead SQA Engineer', 'person': {'first_name': 'Pete', 'last_name': 'Pickerill', 'permalink': 'pete-pickerill'}}, {'is_past': True, 'title': 'Director of R&D', 'person': {'first_name': 'Rob', 'last_name': 'Reiner', 'permalink': 'rob-reiner'}}, {'is_past': True, 'title': 'Sr. Analyst Relations Manager', 'person': {'first_name': 'Jim', 'last_name': 'Azevedo', 'permalink': 'jim-azevedo'}}, {'is_past': True, 'title': 'Director, Sales Specialists', 'person': {'first_name': 'Matthew', 'last_name': 'McSweeney', 'permalink': 'matthew-mcsweeney'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Sudhir', 'last_name': 'Kulkarni', 'permalink': 'sudhir-kulkarni'}}, {'is_past': True, 'title': 'Product Line Executive, Configuration Automation', 'person': {'first_name': 'Bryant', 'last_name': 'Macy', 'permalink': 'bryant-macy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'May', 'permalink': 'paul-may-3'}}, {'is_past': True, 'title': 'Regional Sales Manager - Global Channels & OEMs', 'person': {'first_name': 'DaWane', 'last_name': 'Wanek', 'permalink': 'dawane-wanek'}}, {'is_past': True, 'title': 'Snr. Manager, Product Marketing', 'person': {'first_name': 'Amanda', 'last_name': 'Jobbins', 'permalink': 'amanda-jobbins'}}, {'is_past': True, 'title': 'Senior Regional Manager', 'person': {'first_name': 'Dmitry', 'last_name': 'Shkliarevsky', 'permalink': 'dmitry-shkliarevsky'}}, {'is_past': True, 'title': 'Product Development Manager', 'person': {'first_name': 'Guy', 'last_name': 'Shavitt', 'permalink': 'guy-shavitt'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Andrea', 'last_name': 'Parks', 'permalink': 'andrea-parks'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sion', 'last_name': 'Lewis', 'permalink': 'sion-lewis'}}], 'competitions': [{'competitor': {'name': 'Nastel Technologies', 'permalink': 'nastel'}}, {'competitor': {'name': 'OpTier', 'permalink': 'optier'}}, {'competitor': {'name': 'dynaTrace software', 'permalink': 'dynatrace-software'}}, {'competitor': {'name': 'Correlsense', 'permalink': 'correlsense'}}, {'competitor': {'name': 'Wily Technology', 'permalink': 'wily-technology'}}, {'competitor': {'name': 'Compuware', 'permalink': 'compuware'}}, {'competitor': {'name': 'Tivoli', 'permalink': 'tivoli'}}, {'competitor': {'name': 'OpTier', 'permalink': 'optier'}}, {'competitor': {'name': 'dynaTrace software', 'permalink': 'dynatrace-software'}}, {'competitor': {'name': 'Correlsense', 'permalink': 'correlsense'}}, {'competitor': {'name': 'AppDynamics', 'permalink': 'appdynamics'}}, {'competitor': {'name': 'Wily Technology', 'permalink': 'wily-technology'}}, {'competitor': {'name': 'Tivoli', 'permalink': 'tivoli'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.bladelogic.com/news-events/press-releases/03-17-08.php', 'source_description': 'BMC SOFTWARE TO PURCHASE BLADELOGIC', 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 17, 'company': {'name': 'BladeLogic', 'permalink': 'bladelogic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.barrons.com/techtraderdaily/2008/06/17/bmc-software-acquires-itm-software/', 'source_description': 'BMC Software Acquires ITM Software', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'ITM Software', 'permalink': 'itm-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.networkcomputing.com/showArticle.jhtml?articleID=199703133', 'source_description': 'BMC Acquires ProactiveNet, Gains Analytics', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'ProactiveNet', 'permalink': 'proactivenet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/193711/bmc-software-acquires-mqsoftware', 'source_description': 'BMC Software Acquires MQSoftware', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 10, 'company': {'name': 'MQSoftware', 'permalink': 'mqsoftware'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.austinstartup.com/2010/01/phurnace-acquired-by-bmc-software/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+AustinStartup+%28AustinStartup+%28New%29%29&utm_content=Google+Reader', 'source_description': 'Austin Startup', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'Phurnace Software', 'permalink': 'phurnace-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bmc.com/news/press-releases/2010/NeptunySoftwareBusiness.html', 'source_description': 'BMC Software Extends Leadership in Virtualization and Cloud Management with Acquisition of Neptuny’s Software Business', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'Neptuny', 'permalink': 'neptuny'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/422571/bmc-software-acquires-gridapp-systems-inc-', 'source_description': 'BMC Software Acquires GridApp Systems, Inc.', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'GridApp Systems', 'permalink': 'gridapp-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/486673/bmc-software-acquires-coradiant-inc-', 'source_description': 'BMC SOFTWARE ACQUIRES CORADIANT INC.', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'Coradiant', 'permalink': 'coradiant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2011/07/07/bmc-software-acquires-aeroprise-to-enhance-its-mobile-know-how/', 'source_description': 'BMC Software Acquires Aeroprise To Enhance Its Mobile Know-How', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 7, 'company': {'name': 'Aeroprise', 'permalink': 'aeroprise'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/bmc-software-acquires-streamstep-2011-10-05', 'source_description': 'BMC Software Acquires StreamStep', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'StreamStep', 'permalink': 'streamstep'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/603652/bmc-software-enters-into-definitive-agreement-acquire-numara-software', 'source_description': 'BMC Software Enters Into Definitive Agreement to Acquire Numara Software', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 30, 'company': {'name': 'Numara Software', 'permalink': 'numara-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/08/bmc-doubles-down-on-devops-acquires-varalogix/', 'source_description': 'BMC Doubles Down On DevOps, Acquires VaraLogix', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'VaraLogix', 'permalink': 'varalogix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://yourstory.in/2013/08/vivek-paul-founded-kinetic-glue-gets-acquired-by-houston-based-software-conglomerate-bmc-softwares/', 'source_description': 'Vivek paul founded Kinetic Glue gets acquired by Houston based software conglomerate BMC Softwares', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'KineticGlue', 'permalink': 'kineticglue'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bmc.com/news/press-releases/2009/BMC-Software-to-Acquire-Tideway.html', 'source_description': 'BMC Software to Acquire Tideway', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 19, 'company': {'name': 'Tideway', 'permalink': 'tideway'}}], 'offices': [{'description': '', 'address1': '2101 City West Blvd', 'address2': '', 'zip_code': '77042', 'city': 'Houston', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 29.7805488, 'longitude': -95.3457921}], 'milestones': [{'id': 12987, 'description': 'BMC Software Selects Ingram Micro as First Authorized US Distribution Partner', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 2, 'source_url': 'http://it.tmcnet.com/news/2011/03/02/5349850.htm', 'source_text': '', 'source_description': 'BMC Software Selects Ingram Micro as First Authorized US Distribution Partner', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'BMC Software', 'permalink': 'bmc-software'}}], 'ipo': {'valuation_amount': 6000000000, 'valuation_currency_code': 'USD', 'pub_year': 1988, 'pub_month': 8, 'pub_day': 12, 'stock_symbol': 'NASDAQ:BMC'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 105], 'assets/images/resized/0012/4745/124745v1-max-150x150.jpg'], [[250, 176], 'assets/images/resized/0012/4745/124745v1-max-250x250.jpg'], [[450, 316], 'assets/images/resized/0012/4745/124745v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'permalink': 'infoblox', 'crunchbase_url': 'http://www.crunchbase.com/company/infoblox', 'homepage_url': 'http://www.infoblox.com', 'blog_url': 'http://www.infoblox.com/community/blogs', 'blog_feed_url': 'http://www.infoblox.com/community/blog/625/rss.xml', 'twitter_username': 'infoblox', 'category_code': 'public_relations', 'number_of_employees': 500, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@infoblox.com', 'phone_number': '408-986-4000', 'description': '', 'created_at': 'Wed Mar 26 17:44:57 UTC 2008', 'updated_at': 'Fri Dec 06 23:36:35 UTC 2013', 'overview': '

Infoblox is the leading developer of network identity appliances that provide a scalable, secure way for enterprises to manage the critical network identity protocols—including DNS, DHCP, RADIUS and LDAP—that link business applications to the network infrastructure. Infoblox products increase network control while lowering TCO by delivering services that are more secure and scalable, easier to manage, and more reliable than “build-your-own”\\x9d server-software solutions. The Infoblox distributed appliance approach also provides a secure, integrated platform for centralizing the management of identity data and services across the network. With sales and marketing presence in more than 30 countries, Infoblox has over 500 customers from a wide range of industries, many of them Fortune 500 companies.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0009/5962/95962v3-max-150x150.png'], [[180, 59], 'assets/images/resized/0009/5962/95962v3-max-250x250.png'], [[180, 59], 'assets/images/resized/0009/5962/95962v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President and CEO', 'person': {'first_name': 'Robert', 'last_name': 'Thomas', 'permalink': 'robert-thomas'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Thomas', 'last_name': 'S. Roberts', 'permalink': 'thomas-s-roberts'}}, {'is_past': False, 'title': 'CTO & Founder', 'person': {'first_name': 'Stuart', 'last_name': 'Bailey', 'permalink': 'stuart-bailey'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Goguen', 'permalink': 'michael-goguen'}}, {'is_past': False, 'title': 'Network Automation Sales Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Rupert', 'permalink': 'eric-rupert'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Remo', 'last_name': 'Canessa', 'permalink': 'remo-canessa'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Frank', 'last_name': 'Marshall', 'permalink': 'frank-marshall'}}, {'is_past': True, 'title': 'Co-founder & CEO', 'person': {'first_name': 'Nicolas', 'last_name': 'Draca', 'permalink': 'nicolas-draca'}}, {'is_past': True, 'title': 'Vice President- Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Himelstein', 'permalink': 'mark-himelstein'}}, {'is_past': True, 'title': 'VP, Product Mgmt, Product Mktg, Tech Mktg', 'person': {'first_name': 'Brett', 'last_name': 'Eldridge', 'permalink': 'brett-eldridge'}}, {'is_past': True, 'title': 'Vice President of Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Garrison', 'permalink': 'steve-garrison'}}, {'is_past': True, 'title': 'Senior Director of Product Marketing', 'person': {'first_name': 'Yama', 'last_name': 'Habibzai', 'permalink': 'yama-habibzai'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Fred', 'last_name': 'Wang', 'permalink': 'fred-wang'}}, {'is_past': True, 'title': 'Vice President Europe, Middle East and Africa, Regional Director Northern, Southern Europe and Middle East', 'person': {'first_name': 'Dirk', 'last_name': 'Marichal', 'permalink': 'dirk-marichal-2'}}, {'is_past': True, 'title': 'MD, EMEA Channel Sales', 'person': {'first_name': 'Tariq', 'last_name': 'Ahmed', 'permalink': 'tariq-ahmed'}}], 'competitions': [{'competitor': {'name': 'BlueCat Networks', 'permalink': 'bluecat-networks'}}], 'providerships': [], 'total_money_raised': '$30M', 'funding_rounds': [{'id': 17408, 'round_code': 'e', 'source_url': 'http://www.infoblox.com/news/release.cfm?ID=39', 'source_description': 'Infoblox Secures $30 Million To Continue Rapid Growth', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lehman Brothers Venture Partners', 'permalink': 'lehman-brothers-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Open Prairie Ventures', 'permalink': 'open-prairie-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Chess Ventures', 'permalink': 'chess-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Duchossois Technology Partners', 'permalink': 'duchossois-technology-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eweek.com/c/a/IT-Management/Infloblox-Acquires-NetCordia-in-Key-IT-Management-Deal-572846/', 'source_description': 'Infoblox Acquires Netcordia in Key IT Management Deal ', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 4, 'company': {'name': 'Netcordia', 'permalink': 'netcordia'}}], 'offices': [{'description': 'HQ', 'address1': '3111 Coronado Drive', 'address2': '', 'zip_code': '95054', 'city': 'Santa Clara', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 26518, 'description': 'Infoblox bloxHub end user community launches new corporate blog!', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.infoblox.com/community/blog/networking-today-vs-long-time-ago', 'source_text': None, 'source_description': 'Networking Today compared to \"A Long, long, time ago.....In...\"', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infoblox', 'permalink': 'infoblox'}}, {'id': 26565, 'description': 'Infoblox Goes Public!', 'stoned_year': 2012, 'stoned_month': 4, 'stoned_day': 20, 'source_url': 'http://www.infoblox.com/en/news/press-releases/2012/infoblox-announces-pricing-of-initial-public-offering.html', 'source_text': None, 'source_description': 'Infoblox Announces Pricing of Initial Public Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infoblox', 'permalink': 'infoblox'}}], 'ipo': {'valuation_amount': 824000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 4, 'pub_day': 20, 'stock_symbol': 'NYSE:BLOX'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 104], 'assets/images/resized/0011/6842/116842v1-max-150x150.jpg'], [[250, 174], 'assets/images/resized/0011/6842/116842v1-max-250x250.jpg'], [[450, 314], 'assets/images/resized/0011/6842/116842v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 90], 'assets/images/resized/0021/1711/211711v2-max-150x150.jpg'], [[250, 151], 'assets/images/resized/0021/1711/211711v2-max-250x250.jpg'], [[450, 272], 'assets/images/resized/0021/1711/211711v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 52], 'assets/images/resized/0021/1712/211712v2-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0021/1712/211712v2-max-250x250.jpg'], [[450, 156], 'assets/images/resized/0021/1712/211712v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'name': 'Tencent', 'permalink': 'tencent', 'crunchbase_url': 'http://www.crunchbase.com/company/tencent', 'homepage_url': 'http://www.tencent.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1998, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'web', 'alias_list': None, 'email_address': '', 'phone_number': '0755-86013388', 'description': '', 'created_at': 'Thu Mar 27 18:10:15 UTC 2008', 'updated_at': 'Tue Dec 17 02:54:08 UTC 2013', 'overview': '

Tencent is one of China’s largest and most used Internet service portal.

\\n\\n

Since its establishment over the last decade, Tencent has maintained steady growth under its user-oriented operating strategies. It is Tencent’s mission to enhance the quality of human life through Internet services. Presently, Tencent is providing value-added Internet, mobile and telecom services and online advertising under the strategic goal of providing users with “”“”one-stop online lifestyle services”“”“. Tencent’s leading Internet platforms in China – QQ (QQ Instant Messenger), WeChat, QQ.com, QQ Games, Qzone, 3g.QQ.com, SoSo, PaiPai and Tenpay – have brought together China’s largest Internet community, to meet the various needs of Internet users including communication, information, entertainment, e-commerce and others.

\\n\\n

Looking forward, Tencent remains committed to enhancing its development and innovation capabilities while strengthening its nationwide branding for its long term development. More than 60% of Tencent employees are R&D staff. Tencent has obtained patents relating to the technologies in various areas: instant messaging, e-commerce, online payment services, search engine, information security, gaming, and many more. In 2007, Tencent invested more than RMB100 million in setting up the Tencent Research Institute, China’s first Internet research institute, with campuses in Beijing, Shanghai, and Shenzhen. The institute focuses on the self-development of core Internet technologies, in pursuing its development and innovation for the industry.

\\n\\n

In September 2013, Tencent’s market valuation rose to US$101 billion, larger than the total of the market value of Netease, Sina, Sohu, 360, Youku, Dangdan, Snda, Giant Network, Renren and Ctrip combined.

\\n\\n

Tencent was founded in November, 1998. In April, 2000, the IDG and PCCW injected a total of 2.2 million dollars. Tencent was listed in Hong Kong On June 16, 2004.\\nAs of November 21, 2013, QQ has reached an accumulated 2 billion active users and wechat has accumulated 650 million monthly active users. Besides, the numbers of active users for QQ mail, Qzone, Tencent Weibo and QQ news were 274 milion, 626 million, 220 million and 150 million, respectively.\\nTencent faces competition from Baidu, Alibaba and Netease.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0001/6448/16448v3-max-150x150.jpg'], [[218, 56], 'assets/images/resized/0001/6448/16448v3-max-250x250.jpg'], [[218, 56], 'assets/images/resized/0001/6448/16448v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'QQ', 'permalink': 'qq'}, {'name': 'PaiPai', 'permalink': 'paipai'}, {'name': 'SoSo', 'permalink': 'soso'}, {'name': 'TM', 'permalink': 'tm'}, {'name': 'QZone', 'permalink': 'qzone'}, {'name': 'Tenpay', 'permalink': 'tenpay'}, {'name': 'WeChat', 'permalink': 'wechat'}], 'relationships': [{'is_past': False, 'title': 'Core Founder & Advisor Emeritus', 'person': {'first_name': 'Zeng', 'last_name': 'Liqing', 'permalink': 'zeng-liqing'}}, {'is_past': False, 'title': 'CEO of Tencent E-Commerce Holding Company, Senior Executive Vice President', 'person': {'first_name': 'Wu', 'last_name': 'Xiaoguang', 'permalink': 'wu-xiaoguang'}}, {'is_past': False, 'title': 'Founder,chief information officer', 'person': {'first_name': 'Xu', 'last_name': 'Chen Ye', 'permalink': 'xu-chen-ye'}}, {'is_past': False, 'title': 'Core Founders&Executive Director,&Chairman&CEO', 'person': {'first_name': 'Pony', 'last_name': 'Ma', 'permalink': 'pony-ma'}}, {'is_past': False, 'title': 'Core Founder, Advisor Emeritus & Founder and Honorary Chairman of Tencent Charity Fund', 'person': {'first_name': 'Yidan', 'last_name': 'Chen', 'permalink': 'yidan-chen'}}, {'is_past': False, 'title': 'Founder, Chief Technology Officer', 'person': {'first_name': 'Zhidong', 'last_name': 'Zhang', 'permalink': 'zhidong-zhang'}}, {'is_past': False, 'title': 'Chief Financial Officer, Group Senior Vice President', 'person': {'first_name': 'Luo', 'last_name': 'Shuo Han', 'permalink': 'luo-shuo-han'}}, {'is_past': False, 'title': 'Chief Strategy Officer, Senior Executive Vice President', 'person': {'first_name': 'James', 'last_name': 'Mitchell', 'permalink': 'james-mitchell'}}, {'is_past': False, 'title': 'Chief Operating Officer of the Interactive Entertainment Business Group President, Mobile Internet Business Group President', 'person': {'first_name': 'Yuxin', 'last_name': 'Ren', 'permalink': 'yuxin-ren'}}, {'is_past': False, 'title': 'Chief Financial Officer ,Senior Vice President', 'person': {'first_name': 'John', 'last_name': 'Lo', 'permalink': 'john-lo'}}, {'is_past': False, 'title': 'Founder, Chief Information Officer', 'person': {'first_name': 'Chenye', 'last_name': 'Xu', 'permalink': 'chenye-xu'}}, {'is_past': False, 'title': 'President of Social Network Group, Senior Executive Vice President', 'person': {'first_name': 'Dowson', 'last_name': 'Tong', 'permalink': 'dowson-tong'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Guo', 'last_name': 'Kaitian', 'permalink': 'guo-kaitian'}}, {'is_past': False, 'title': 'Group Senior Executive Vice President', 'person': {'first_name': 'Liu', 'last_name': 'Chengmin', 'permalink': 'liu-chengmin'}}, {'is_past': False, 'title': 'President of Technology and Engineering Group, Senior Executive Vice President', 'person': {'first_name': 'Lu', 'last_name': 'Shan', 'permalink': 'lu-shan'}}, {'is_past': False, 'title': 'President of Online Media Group, Senior Executive Vice President', 'person': {'first_name': 'Lau', 'last_name': 'Seng Yee', 'permalink': 'lau-seng-yee'}}, {'is_past': False, 'title': 'Senior Executive Vice President', 'person': {'first_name': 'David', 'last_name': 'Wallerstein', 'permalink': 'david-wallerstein'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Martin', 'last_name': 'Lau', 'permalink': 'martin-lau'}}, {'is_past': False, 'title': 'HRD', 'person': {'first_name': 'Daniel', 'last_name': 'Ma', 'permalink': 'daniel-ma'}}, {'is_past': False, 'title': 'Joint Chief Technology Officer', 'person': {'first_name': 'Mr.', 'last_name': 'Xiong', 'permalink': 'mr-xiong'}}, {'is_past': False, 'title': 'Group Senior Executive Vice President', 'person': {'first_name': 'Network', 'last_name': 'Greatly', 'permalink': 'network-greatly'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Xi', 'last_name': 'dan', 'permalink': 'xi-dan'}}, {'is_past': False, 'title': 'Co-CTO', 'person': {'first_name': 'Jeff', 'last_name': 'Xiong', 'permalink': 'jeff-xiong'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Liu-Zhi', 'last_name': 'ping', 'permalink': 'liu-zhi-ping'}}, {'is_past': False, 'title': 'Social Networking, Business Group President, Group Senior Executive Vice President', 'person': {'first_name': 'Tangdao', 'last_name': 'sheng', 'permalink': 'tangdao-sheng'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Zhang', 'last_name': 'Xiaolong', 'permalink': 'zhang-xiaolong'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Patrick', 'last_name': 'Tsang', 'permalink': 'patrick-tsang'}}, {'is_past': True, 'title': 'Senior Director in Investment', 'person': {'first_name': 'Zhenyuan', 'last_name': 'Chen', 'permalink': 'zhenyuan-chen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Ken', 'last_name': 'Zhang', 'permalink': 'ken-zhang'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Rui', 'last_name': 'Zuo', 'permalink': 'rui-zuo'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Ella', 'last_name': 'Zhang', 'permalink': 'ella-zhang'}}, {'is_past': True, 'title': 'Associate Director, Strategy and Data Analysis', 'person': {'first_name': 'Joshua', 'last_name': 'Wu', 'permalink': 'joshua-wu'}}], 'competitions': [{'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'Youku', 'permalink': 'youku'}}], 'providerships': [], 'total_money_raised': '$220k', 'funding_rounds': [{'id': 58111, 'round_code': 'unattributed', 'source_url': '', 'source_description': '', 'raised_amount': 220000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'IDG', 'permalink': 'idg'}, 'person': None}, {'company': {'name': 'PCCW', 'permalink': 'pccw'}, 'financial_org': None, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.virtualworldsnews.com/2008/01/outspark-raises.html', 'source_description': 'Outspark Raises $11M in Round Led by Tencent', 'raised_amount': 11000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Outspark', 'permalink': 'outspark'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.reuters.com/article/pressRelease/idUS107371+09-Sep-2009+BW20090909', 'source_description': 'Reuters', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 9, 'company': {'name': 'Riot Games', 'permalink': 'riot-games'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2011/10/18/andreessen-horowitz-crunchfund-tencent-back-intelligent-social-address-book-everyme/', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Origami Labs', 'permalink': 'origami-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2011/11/01/waddle-funding/', 'source_description': 'Waddle Lands Funding, Launches Updates', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Waddle', 'permalink': 'waddle'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/25/ark-seed-round/', 'source_description': 'Ark Raised $4.2 Million Seed Round Instead Of Series A To \"Keep Complete Control\" Of Its People Search Engine ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 25, 'company': {'name': 'Ark', 'permalink': 'ark'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2012/12/19/kamcord-7-videos-per-second/', 'source_description': 'http://techcrunch.com/2012/12/19/mobile-game-recording-yc-alum-kamcord-raises-1-5-million-from-andreessen-horowitz-google-ventures-and-others/', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 19, 'company': {'name': 'Kamcord', 'permalink': 'kamcord'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://sgentrepreneurs.com/2012/12/25/kakao-kakaotalk/', 'source_description': 'Kakao and KakaoTalk profile', 'raised_amount': 62900000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 16, 'company': {'name': 'Kakao', 'permalink': 'kakao'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/04/09/plain-vanilla-scores-2-4m-series-a-to-turn-its-multiplayer-quiz-games-into-something-more/', 'source_description': 'Plain Vanilla Scores $2.4M Series A To Turn Its Multiplayer Quiz Games Into Something More', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 9, 'company': {'name': 'Plain Vanilla', 'permalink': 'plain-vanilla'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/25/healthcare-crowdfunding-platform-watsi-grabs-1-1m-from-tencent-paul-graham-vinod-khosla-ron-conway-and-more/', 'source_description': 'Healthcare Crowdfunding Platform Watsi Grabs $1.2M From Tencent, Paul Graham, Vinod Khosla, Ron Conway And More', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 25, 'company': {'name': 'Watsi', 'permalink': 'watsi'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/22/kamcord-nabs-another-1m-in-seed-funding-to-help-build-a-community-around-mobile-game-recordings/', 'source_description': 'Kamcord Nabs Another $1M In Seed Funding To Help Build A Community Around Mobile Game Recordings', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 22, 'company': {'name': 'Kamcord', 'permalink': 'kamcord'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://thenextweb.com/asia/2013/09/16/chinas-baidu-under-pressure-as-third-and-fourth-placed-search-rivals-team-up-in-448m-merger/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+TheNextWeb+%28The+Next+Web+All+Stories%29', 'source_description': ' China’s Baidu under pressure as third- and fourth-placed search rivals team up in $448m merger ', 'raised_amount': 448000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Sogou', 'permalink': 'sogou'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/10/04/icloud-alternative-loom-raises-1-4-million-seed-round/', 'source_description': 'iCloud Alternative Loom Raises $1.4 Million Seed Round', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 4, 'company': {'name': 'Loom', 'permalink': 'loom'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/12/26/quizup-22m-sequoia-botha/', 'source_description': 'Plain Vanilla Games, Maker Of Ultra-Hot Trivia App QuizUp, Raises Another $22 Million From Sequoia', 'raised_amount': 22000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 26, 'company': {'name': 'Plain Vanilla', 'permalink': 'plain-vanilla'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://technode.com/2014/01/02/chinese-taxi-app-didi-secured-100-million-dollar-in-series-c/?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'Chinese Taxi App Didi Secured $100 million in Series C Funding', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2014, 'funded_month': 1, 'funded_day': 2, 'company': {'name': 'Didi Dache', 'permalink': 'didi-dache'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://technode.com/2014/01/02/chinese-taxi-app-didi-secured-100-million-dollar-in-series-c/?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'Chinese Taxi App Didi Secured $100 million in Series C Funding', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': None, 'funded_day': None, 'company': {'name': 'Didi Dache', 'permalink': 'didi-dache'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pacificepoch.com/newsstories?id=1624194_0_5_0_M', 'source_description': 'Tencent Buys Out Shenzhen Domain Networks', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Shenzhen Domain Networks', 'permalink': 'shenzhen-domain-networks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-tencent-buys-google-backed-online-community-company-comsenz/', 'source_description': 'Tencent Buys Google-Backed Online Community Company Comsenz', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 23, 'company': {'name': 'Comsenz', 'permalink': 'comsenz'}}], 'offices': [{'description': '', 'address1': 'Tencent Building, Kejizhongyi Avenue', 'address2': 'Hi-techPark,Nanshan District', 'zip_code': '518057', 'city': 'Shenzhen', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 7786, 'description': 'Annual revenue (2009) hit US$ 1.8 billion with profit over US$ 760 million', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://www.tencent.com/en-us/content/at/2010/attachments/20100317.pdf', 'source_text': None, 'source_description': 'Tencent Announces 2009 Annual Results', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 8033, 'description': 'Tencent Makes Thailand Investment With Sanook.com', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': 30, 'source_url': 'http://www.businessinsider.com/tencent-invests-sanook-2010-8', 'source_text': '', 'source_description': 'Tencent Makes Thailand Investment With Sanook.com', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 10302, 'description': 'Tencent invested in MIH India Global Internet, owner of ibibo.com.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': 'http://convergence.in/blog/2008/06/18/tencent-invests-in-mih-internet-ibibo-dwaar-onefamily-com/', 'source_text': None, 'source_description': 'Tencent Invests in MIH Internet', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 10303, 'description': 'Tencent invested in Vinagame in Vietnam', 'stoned_year': 2006, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://www.vng.com.vn/en/tin-tuc-vng/chi-tiet.vng-in-the-news.here-come-the-viet-gamers.229.html', 'source_text': None, 'source_description': 'Here come the Viet gamers', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 12231, 'description': \"HERE THEY COME: China's Facebook Buys US Gaming Startup For $400 Million\", 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 5, 'source_url': 'http://www.businessinsider.com/here-they-come-chinas-facebook-buys-us-gaming-startup-for-400-million-2011-2', 'source_text': '', 'source_description': \"HERE THEY COME: China's Facebook Buys US Gaming Startup For $400 Million\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 17114, 'description': 'Tencent Reports $1 Billion In Revenues In Q2 But Falls Short Of Analyst Expectations', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 10, 'source_url': 'http://techcrunch.com/2011/08/10/tencent-reports-1-billion-in-revenues-in-q2-but-falls-short-of-analyst-expectations/', 'source_text': '', 'source_description': 'Tencent Reports $1 Billion In Revenues In Q2 But Falls Short Of Analyst Expectations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}], 'ipo': {'valuation_amount': 11000000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'HK:0700'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://mashpedia.com/Tencent', 'title': 'Tencent at Mashpedia'}, {'external_url': 'http://ceoworld.biz/2013/09/17/chinese-tencent-is-now-worth-almost-twice-as-much-as-baidu-close-to-facebook', 'title': 'Chinese Tencent Is Now Worth Almost TWICE As Much As Baidu: Close To Facebook'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.tencent.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675298760'), 'name': 'Baidu', 'permalink': 'baidu', 'crunchbase_url': 'http://www.crunchbase.com/company/baidu', 'homepage_url': 'http://www.baidu.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'baidu_', 'category_code': 'search', 'number_of_employees': 6000, 'founded_year': 1999, 'founded_month': 10, 'founded_day': 11, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'search', 'alias_list': '', 'email_address': 'ir@baidu.com', 'phone_number': '86 10 8262 1188', 'description': '', 'created_at': 'Mon Apr 07 23:06:27 UTC 2008', 'updated_at': 'Mon Jan 06 10:56:31 UTC 2014', 'overview': '

It is the largest Chinese website and Chinese search engine in the world.

\\n\\n

From its very start, Baidu’s mission is to help people obtain information and find what they need in the easiest and quickest way. For 10 years, Baidu sticks to the ideology of providing simple yet reliable services and keeps satisfying the needs of mass online audience and providing a full range of products based on search engine, including functional online search, Tieba community search, industry-based vertical search, Mp3 search, portal channels and IM etc, covering all the search needs in the Chinese Internet world. According to statistics, it has already captured a 80 % market share for search requests.

\\n\\n

Currently, Baidu has become one of the most valuable brands. Britain’s newspaper Financial Times included Baidu in its “”Top ten Chinese global brands survey”” and thus Baidu became the youngest and the only one Internet company in this list. The brand also got such titles as “”the most respectable enterprise in Asia”“, “”the world’s most innovative company”“, “”the star of Chinese Internet”” etc.

\\n\\n

In January 2000, Baidu was established in Zhongguancun, Beijing. With over 17000 employees, Baidu offers products including Baidu Webpage, Baidu Video, Baidu Map, hao123.com, BaiduPedia, Baidu Input, Baidu Toolbar and TTPlayer. Iqiyi and Sky Software also belong to Baidu.

\\n\\n

On August 5, 2005, Baidu was listed on Nasdaq, recording the highest increase in stock prices on the first day of trading since November,1999. Baidu became the first Chinese company to be included in the NASDAQ-100 index. On November 21, 2012, Baidu raised $1.5 Billion in Bonds Issue.

\\n\\n

Baidu competes with Tencent, Google and Qihu 360.

', 'image': {'available_sizes': [[[150, 71], 'assets/images/resized/0001/6966/16966v4-max-150x150.png'], [[250, 119], 'assets/images/resized/0001/6966/16966v4-max-250x250.png'], [[270, 129], 'assets/images/resized/0001/6966/16966v4-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Baidu Space', 'permalink': 'baidu-space'}], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Eric', 'last_name': 'Xu', 'permalink': 'eric-xu'}}, {'is_past': False, 'title': 'Chief Architect, Mobile Cloud Computing', 'person': {'first_name': 'Zhenyu', 'last_name': 'Hou', 'permalink': 'zhenyu-hou'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Jennifer', 'last_name': 'Li', 'permalink': 'jennifer-li'}}, {'is_past': False, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Robin', 'last_name': 'Li', 'permalink': 'robin-li'}}, {'is_past': False, 'title': 'Vice President of HR', 'person': {'first_name': 'Lee', 'last_name': 'Liu', 'permalink': 'lee-liu'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': False, 'title': 'VP Sales', 'person': {'first_name': 'Zhan', 'last_name': 'Wang', 'permalink': 'zhan-wang'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Zhu', 'permalink': 'david-zhu'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Mengqiu', 'last_name': 'Wang', 'permalink': 'mengqiu-wang'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Victor', 'last_name': 'Liang', 'permalink': 'victor-liang'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'James', 'last_name': 'Ding', 'permalink': 'james-ding'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Nobuyuki', 'last_name': 'Idei', 'permalink': 'nobuyuki-idei'}}, {'is_past': False, 'title': 'Executive Director and General Manager, Mobile Cloud Computing Business Division', 'person': {'first_name': 'Mingyuan', 'last_name': 'Li', 'permalink': 'mingyuan-li'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Kemas', 'last_name': 'Antonius', 'permalink': 'kemas-antonius'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Dejian', 'last_name': 'Liu', 'permalink': 'dejian-liu'}}, {'is_past': False, 'title': 'VP Commercial Operations', 'person': {'first_name': 'Hailong', 'last_name': 'Xiang', 'permalink': 'hailong-xiang'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Guang', 'last_name': 'Zhu', 'permalink': 'guang-zhu'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Greg', 'last_name': 'Penner', 'permalink': 'greg-penner'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'William', 'last_name': 'Decker', 'permalink': 'william-decker'}}, {'is_past': False, 'title': 'Head of International Business', 'person': {'first_name': 'Jonathan', 'last_name': 'Dillon', 'permalink': 'jonathan-dillon'}}, {'is_past': False, 'title': 'Chairperson, IT Committee', 'person': {'first_name': 'Jinmao', 'last_name': 'Zhang', 'permalink': 'jinmao-zhang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Chao', 'permalink': 'bobby-chao'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Yiyan', 'last_name': 'Li', 'permalink': 'yiyan-li'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Ye', 'last_name': 'Peng', 'permalink': 'ye-peng'}}, {'is_past': True, 'title': 'Product Marketing Specialist', 'person': {'first_name': 'Forrest', 'last_name': 'Lu', 'permalink': 'forrest-lu'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Liu', 'last_name': 'Jiong', 'permalink': 'liu-jiong'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Chen', 'last_name': 'Zhenyu', 'permalink': 'chen-zhenyu'}}, {'is_past': True, 'title': 'product designer', 'person': {'first_name': 'yixin', 'last_name': 'hu', 'permalink': 'yixin-hu'}}, {'is_past': True, 'title': 'Product Director', 'person': {'first_name': 'Chuan', 'last_name': 'Zhang', 'permalink': 'chuan-zhang'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Xiaoshuan', 'last_name': 'Li', 'permalink': 'xiaoshuan-li'}}, {'is_past': True, 'title': 'Senior Front-end Engineer', 'person': {'first_name': 'Jinpu', 'last_name': 'Hu', 'permalink': 'jinpu-hu'}}, {'is_past': True, 'title': 'Co-Lead Investor; Director', 'person': {'first_name': 'Scott', 'last_name': 'Walchek', 'permalink': 'scott-walchek'}}, {'is_past': True, 'title': 'Senior Investment Manager', 'person': {'first_name': 'Terry', 'last_name': 'Zhu', 'permalink': 'terry-zhu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lu', 'last_name': 'Lin', 'permalink': 'lu-lin'}}], 'competitions': [{'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'competitor': {'name': 'Sina', 'permalink': 'sina'}}, {'competitor': {'name': 'Sohu.com', 'permalink': 'sohu'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'TradeKey', 'permalink': 'tradekey'}}], 'providerships': [], 'total_money_raised': '$161M', 'funding_rounds': [{'id': 1979, 'round_code': 'c', 'source_url': 'http://www.marketwatch.com/News/Story/Story.aspx?guid={BDC943CA-1936-4F19-9FDE-1DDC4D648178}', 'source_description': 'MarketWatch', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 6, 'funded_day': 18, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': {'name': 'Google', 'permalink': 'google'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Bridger Management', 'permalink': 'bridger-management'}, 'person': None}, {'company': None, 'financial_org': {'name': 'China Equity', 'permalink': 'china-equity'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture TDF', 'permalink': 'venture-tdf'}, 'person': None}, {'company': None, 'financial_org': {'name': 'China Value', 'permalink': 'china-value'}, 'person': None}]}, {'id': 12454, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/02/26/providence-baidu-qiyi/', 'source_description': \"Hulu Investor Injects $50 Million Into Baidu's Online Video Venture, Qiyi\", 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'Providence Equity Partners', 'permalink': 'providence-equity-partners'}, 'person': None}]}, {'id': 58109, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 9, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Integrity Partners', 'permalink': 'integrity-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Peninsula Capital', 'permalink': 'peninsula-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IDG', 'permalink': 'idg'}, 'person': None}]}, {'id': 58110, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 2, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Integrity Partners', 'permalink': 'integrity-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Peninsula Capital Fund', 'permalink': 'peninsula-capital-fund'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.paidcontent.org/entry/419-baidu-invests-15-million-in-chinese-iptv-operator-uitv/', 'source_description': 'paidcontent.org', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 28, 'company': {'name': 'UiTV', 'permalink': 'uitv'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.chinawebradar.com/926/baidu-invested-in-a-video-ads-service-provider.html', 'source_description': 'Baidu Invested A Video Ads Service Provider', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 29, 'company': {'name': 'AdsIt', 'permalink': 'adsit'}}}, {'funding_round': {'round_code': 'a', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'Ku6', 'permalink': 'ku6'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/03/08/baidu-leads-50-million-funding-round-for-chinese-real-estate-marketplace-anjuke/', 'source_description': 'Baidu Leads $50 Million Funding Round For Chinese Real Estate Marketplace Anjuke', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 8, 'company': {'name': 'Anjuke', 'permalink': 'anjuke-com'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/06/24/baidu-makes-306-million-strategic-investment-in-chinese-travel-search-engine-qunar/', 'source_description': 'Baidu Makes $306 Million Strategic Investment In Chinese Travel Search Engine Qunar', 'raised_amount': 306000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 24, 'company': {'name': 'Qunar.com', 'permalink': 'qunar-com'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/04/14/baidu-hillhouse-ggv-reportedly-invest-57m-in-qunar-as-the-chinese-travel-site-weathers-a-boycott/', 'source_description': 'Baidu, Hillhouse & GGV Reportedly Invest $57M In Qunar As The Chinese Travel Site Weathers A Boycott', 'raised_amount': 57000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 14, 'company': {'name': 'Qunar.com', 'permalink': 'qunar-com'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/Baidu+Acquires+Hao123-a0122413568', 'source_description': 'Baidu Acquires Hao123', 'acquired_year': 2004, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'Hao123.com', 'permalink': 'hao123-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.tradingmarkets.com/.site/news/Stock%20News/2687423/', 'source_description': 'DayHand Denies Being Acquired by Baidu', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'DayHand Network Technology', 'permalink': 'dayhand-network-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/baidu-acquires-pps-370-million-video/?utm_source=twitter.com/eskimon&utm_medium=twitter', 'source_description': 'Baidu Acquires PPS for $370 Million, Claims It’s Now China’s Biggest Video Platform', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 7, 'company': {'name': 'PPS', 'permalink': 'pps'}}, {'price_amount': 1900000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/15/baidu-agrees-to-buy-chinese-android-app-distributor-91-wireless-for-1-9b/', 'source_description': 'Baidu Agrees To Buy Chinese Android App Distributor 91 Wireless For $1.9B', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'company': {'name': '91 Wireless', 'permalink': '91-wireless'}}, {'price_amount': 36000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.venturedata.org/?i482385_Baidu-to-spend-$30-million-acquisition-of-mobile-security-company-TrustGo', 'source_description': 'Baidu to spend $ 36 million acquisition of mobile security company TrustGo', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'TrustGo', 'permalink': 'trustgo'}}, {'price_amount': 1850000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.reuters.com/article/2013/08/14/us-baidu-91wireless-idUSBRE97D0AR20130814', 'source_description': \"Baidu says agrees to buy Netdragon's 91 Wireless for $1.85 billion\", 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 14, 'company': {'name': 'NetDragon', 'permalink': 'netdragon-websoft'}}, {'price_amount': 31300000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://technode.com/2013/12/27/baidu-to-acquire-online-publisher-pw-literature-for-rmb-192-million/', 'source_description': 'Baidu to Acquire Online Publisher PW Literature for RMB191.5 million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 27, 'company': {'name': 'Beijing Huanxiang Zongheng Chinese Literature', 'permalink': 'beijing-huanxiang-zongheng-chinese-literature'}}], 'offices': [{'description': None, 'address1': 'No. 58 North-West 4th Ring Road', 'address2': 'Ideal International Plaza, 12 Floor', 'zip_code': '100080', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3434, 'description': 'Banners Broker Make Money With Advertisers and Advertising\\r\\n\\r\\nBanners Broker make money from advertising and advertiser.\\r\\n\\r\\nFits you advertise your banners ads, increase your branding and sales, and earn money by selling advertising inventory.\\r\\n\\r\\nBanners ', 'stoned_year': 2006, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://news.bbc.co.uk/1/hi/business/5108778.stm', 'source_text': None, 'source_description': 'Google offloads Baidu investment ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 16301, 'description': 'Baidu Realigns Four Main Business Functions', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://www.prnewswire.com/news-releases/baidu-announces-realignment-of-four-main-business-functions-125201209.html', 'source_text': '', 'source_description': 'Baidu Announces Realignment of Four Main Business Functions', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 33751, 'description': 'Baidu Confirms $370M Purchase Of PPS, Underscoring Online Video’s Importance For Internet Companies Around The World', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2013/05/07/baidu-confirms-370m-purchase-of-pps-underscoring-online-videos-importance-for-internet-companies-around-the-world/', 'source_text': '', 'source_description': 'Baidu Confirms $370M Purchase Of PPS, Underscoring Online Video’s Importance For Internet Companies Around The World', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 38712, 'description': 'Baidu to Buy 59% of Renren’s Group-buying Service Nuomi for $160 million', 'stoned_year': 2013, 'stoned_month': 8, 'stoned_day': 23, 'source_url': 'http://technode.com/2013/08/23/baidu-to-buy-59-percentof-renrens-group-buying-service-nuomi-for-160-million/?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'Baidu to Buy 59% of Renren’s Group-buying Service Nuomi for $160 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}], 'ipo': {'valuation_amount': 4000000000, 'valuation_currency_code': 'USD', 'pub_year': 2005, 'pub_month': 8, 'pub_day': 5, 'stock_symbol': 'NASDAQ:BIDU'}, 'video_embeds': [{'embed_code': '', 'description': '

Baidu vs. Google

'}, {'embed_code': '\\r\\n', 'description': '

Baidu profile via Wallstrip

'}], 'screenshots': [{'available_sizes': [[[150, 74], 'assets/images/resized/0022/2694/222694v1-max-150x150.png'], [[250, 124], 'assets/images/resized/0022/2694/222694v1-max-250x250.png'], [[450, 223], 'assets/images/resized/0022/2694/222694v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/Baidu', 'title': 'Baidu at Mashpedia'}, {'external_url': 'http://ceoworld.biz/ceo/2013/09/16/baidu-launches-hdmi-tv-plugin-a-google-chromecast-like-device', 'title': 'Baidu Launches HDMI TV Plugin: A Google Chromecast-Like Device'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.baidu.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'permalink': 'geeknet', 'crunchbase_url': 'http://www.crunchbase.com/company/geeknet', 'homepage_url': 'http://www.geek.net', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'geeknet_inc', 'category_code': 'advertising', 'number_of_employees': 127, 'founded_year': 1993, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'pr@geek.net', 'phone_number': '1-877-433-5638', 'description': '', 'created_at': 'Sun Apr 13 20:53:45 UTC 2008', 'updated_at': 'Thu Jul 26 11:52:23 UTC 2012', 'overview': '

Geeknet is the online network for the global geek community.

\\n\\n

Their sites include SourceForge, Slashdot, ThinkGeek, Ohloh and freshmeat. Geeknet serves an audience of more than 40 million users each month and provide the tech-obsessed with content, culture, connections, commerce, and all the things that geeks crave.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0007/2407/72407v1-max-150x150.jpg'], [[250, 52], 'assets/images/resized/0007/2407/72407v1-max-250x250.jpg'], [[250, 52], 'assets/images/resized/0007/2407/72407v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Slashdot', 'permalink': 'slashdot'}, {'name': 'ThinkGeek', 'permalink': 'thinkgeek'}, {'name': 'SourceForge', 'permalink': 'sourceforge'}, {'name': 'Freshmeat', 'permalink': 'freshmeat'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board of Directors/ Interim President and Chief Executive Officer', 'person': {'first_name': 'Kenneth', 'last_name': 'G. Langone', 'permalink': 'kenneth-g-langone'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Patricia', 'last_name': 'Morris', 'permalink': 'patricia-morris'}}, {'is_past': False, 'title': 'Senior Vice President, Sales', 'person': {'first_name': 'Dave', 'last_name': 'Colford', 'permalink': 'dave-colford'}}, {'is_past': False, 'title': 'President, General Manager, ThinkGeek.com', 'person': {'first_name': 'Caroline', 'last_name': 'Offutt', 'permalink': 'caroline-offutt'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Wright', 'permalink': 'david-wright-4'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Scott', 'last_name': 'Kauffman', 'permalink': 'scott-kauffman'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Crompton', 'last_name': 'Karen', 'permalink': 'crompton-karen'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Michael', 'last_name': 'Rudolph', 'permalink': 'michael-rudolph'}}, {'is_past': True, 'title': 'Vice President, International Commercial Director', 'person': {'first_name': 'David', 'last_name': 'Wightman', 'permalink': 'david-wightman'}}, {'is_past': True, 'title': 'Vice President, Corporate Controller', 'person': {'first_name': 'Jeffrey', 'last_name': 'Chalmers', 'permalink': 'jeffrey-chalmers'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Tony', 'last_name': 'Guntharp', 'permalink': 'tony-guntharp'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Scott', 'last_name': 'Collison', 'permalink': 'scott-collison'}}, {'is_past': True, 'title': 'General Manager of Development, Ad Operations Director at Sourceforge', 'person': {'first_name': 'Patrick', 'last_name': 'Schoonveld', 'permalink': 'patrick-schoonveld'}}, {'is_past': True, 'title': 'Director of Network Operations', 'person': {'first_name': 'Zac', 'last_name': 'Sprackett', 'permalink': 'zac-sprackett'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Fairfax', 'state_code': 'VA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Dexter', 'state_code': 'MI', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3048, 'description': 'SourceForge, Inc. Changes its Name to Geeknet, Inc.', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 4, 'source_url': 'http://geek.net/press/sourceforge-inc-changes-its-name-to-geeknet-inc/', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Geeknet', 'permalink': 'geeknet'}}], 'ipo': {'valuation_amount': 134000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 11, 'pub_day': 2, 'stock_symbol': 'GKNT'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 119], 'assets/images/resized/0007/2421/72421v2-max-150x150.png'], [[250, 199], 'assets/images/resized/0007/2421/72421v2-max-250x250.png'], [[450, 358], 'assets/images/resized/0007/2421/72421v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989a0'), 'name': 'Opsware', 'permalink': 'opsware', 'crunchbase_url': 'http://www.crunchbase.com/company/opsware', 'homepage_url': 'http://www.opsware.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'opsware', 'category_code': 'enterprise', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': 'Loudcloud', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue May 06 00:27:28 UTC 2008', 'updated_at': 'Thu Jul 25 13:44:10 UTC 2013', 'overview': '

Opsware, Inc. is a software company based in Sunnyvale, California which offers products for server and network device provisioning, configuration and management targeted toward enterprise customers. Opsware also has offices in New York City, Seattle, Washington and Cary, North Carolina.

\\n\\n

The company that was formerly known as Loudcloud was founded on September 9, 1999 (i.e., 9/9/99) as a managed services provider. After selling the operations side of the business to EDS in the summer of 2002, Loudcloud became Opsware and went to market as a technology company, offering the software that had been developed internally to support customer systems via automated server life-cycle management. In December 2003, Opsware acquired asset management systems provider Tangram Enterprise Solutions, and in December 2004 acquired network device configuration management vendor Rendition Networks. In July 2006 Opsware acquired CreekPath to fill out its Data Center Automation (DCA) product offering, by allowing provisioning of storage components as well. Lastly, in March 2007 Opsware acquired Seattle-based iConclude and their run-book automation software, which allowed Opsware to tightly integrate datacenter management duties end-to-end.

\\n\\n

In July 2007, HP announced that it had agreed to acquire Opsware for $1.6 billion in cash ($14.25 per share), 16x revenues. It is HP’s third largest acquisition behind Compaq and Mercury.

', 'image': {'available_sizes': [[[150, 53], 'assets/images/resized/0001/8894/18894v1-max-150x150.jpg'], [[165, 59], 'assets/images/resized/0001/8894/18894v1-max-250x250.jpg'], [[165, 59], 'assets/images/resized/0001/8894/18894v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Co-Founder, CTO', 'person': {'first_name': 'Tim', 'last_name': 'Howes', 'permalink': 'tim-howes'}}, {'is_past': True, 'title': 'Co-Founder, CEO', 'person': {'first_name': 'Ben', 'last_name': 'Horowitz', 'permalink': 'ben-horowitz'}}, {'is_past': True, 'title': 'Co-Founder, Chairman', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Chief Tactician', 'person': {'first_name': 'In', 'last_name': 'Sik Rhee', 'permalink': 'in-sik-rhee'}}, {'is_past': True, 'title': 'VP of Product Management', 'person': {'first_name': 'Ari', 'last_name': 'Newman', 'permalink': 'ari-newman'}}, {'is_past': True, 'title': 'SVP & GM, Server Automation Products', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'EVP Business Development', 'person': {'first_name': 'John', 'last_name': \"O'Farrell\", 'permalink': 'john-ofarrell'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'EVP', 'person': {'first_name': 'John', 'last_name': \"O'Farrell\", 'permalink': 'john-ofarrell'}}, {'is_past': True, 'title': 'Director of Enterprise Sales', 'person': {'first_name': 'Todd', 'last_name': 'Feinroth', 'permalink': 'todd-feinroth'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Jordan', 'last_name': 'Breslow', 'permalink': 'jordan-breslow'}}, {'is_past': True, 'title': 'Business Development/Sales', 'person': {'first_name': 'Keith', 'last_name': 'Kryszczun', 'permalink': 'keith-kryszczun'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Andy', 'last_name': 'Denmark', 'permalink': 'andy-denmark'}}, {'is_past': True, 'title': 'Vice President, Asia-Pacific', 'person': {'first_name': 'Stephen', 'last_name': 'Tsuchiyama', 'permalink': 'stephen-tsuchiyama'}}, {'is_past': True, 'title': 'Consulting Engineer', 'person': {'first_name': 'Gagan', 'last_name': 'Palrecha', 'permalink': 'gagan-palrecha'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Mike', 'last_name': 'Volpi', 'permalink': 'mike-volpi'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Wadler', 'permalink': 'aaron-wadler'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Vishria', 'permalink': 'eric-vishria'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Schwartz', 'permalink': 'mike-schwartz-2'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Carl', 'last_name': 'Rydbeck', 'permalink': 'carl-rydbeck'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$186M', 'funding_rounds': [{'id': 2295, 'round_code': 'b', 'source_url': 'http://www.redherring.com/Home/8886', 'source_description': 'Red Herring', 'raised_amount': 120000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 6, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Amerindo Investment Advisors', 'permalink': 'amerindo-investment-advisors'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Aurora Funds', 'permalink': 'the-aurora-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 14061, 'round_code': 'a', 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_description': 'The Case for the Fat Startup', 'raised_amount': 21000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 14062, 'round_code': 'debt_round', 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_description': 'The Case for the Fat Startup', 'raised_amount': 45000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Morgan Stanley', 'permalink': 'morgan-stanley'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 1600000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/07/23/opsware-sells-to-hp-for-16-billion-in-happy-ending/', 'source_description': 'VentureBeat', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 23, 'acquiring_company': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, 'acquisitions': [{'price_amount': 53000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://venturebeat.com/2007/03/07/opsware-data-center-company-buys-iconclude-for-53m/', 'source_description': 'Opsware, data center company, buys iConclude for $53M', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 7, 'company': {'name': 'iConclude', 'permalink': 'iconclude'}}], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 4819, 'description': 'LoudCloud/ Opsware goes public March 2001: Loudcloud goes public on Nasdaq, raises $160 million and is valued in the public markets at approximately $480 million. ', 'stoned_year': 2001, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_text': '', 'source_description': 'The Case for the Fat Startup', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Opsware', 'permalink': 'opsware'}}], 'ipo': {'valuation_amount': 450000000, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 9, 'stock_symbol': 'NASDAQ:LDCL'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989f2'), 'name': 'Telenav', 'permalink': 'telenav', 'crunchbase_url': 'http://www.crunchbase.com/company/telenav', 'homepage_url': 'http://www.telenav.com', 'blog_url': 'http://blog.telenav.com/', 'blog_feed_url': 'http://feeds.feedburner.com/telenav/navigating-life', 'twitter_username': 'telenav', 'category_code': 'mobile', 'number_of_employees': 1000, 'founded_year': 1999, 'founded_month': 9, 'founded_day': 9, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, wireless, location-based-services, lbs, gps, gps-navigation, in-car-navigation, local-search, maps, mobile-advertising, mobile-commerce, location-tracking, workflow-automation, asset-tracking, mobile-resource-management, mobile-workforce-managemen', 'alias_list': '', 'email_address': 'media@telenav.com', 'phone_number': ' 408-245-3800', 'description': 'Mobile location-based services (LBS)', 'created_at': 'Wed May 07 23:57:24 UTC 2008', 'updated_at': 'Fri Jul 12 13:16:23 UTC 2013', 'overview': '

Telenav is a provider of consumer location-based services (LBS), enterprise LBS and automotive LBS. Telenav’s solutions provide consumers, wireless service providers, enterprises and automakers with location-specific, real-time, personalized services such as GPS navigation, local search, mobile advertising, mobile commerce, location tracking and workflow automation. Telenav’s technology is available across more than 1,200 types of mobile phones, all major mobile phone operating systems and a broad range of wireless network protocols.

\\n\\n

Telenav’s partners are wireless carriers, automobile manufacturers and original equipment manufacturers (OEMs), app developers, advertisers and agencies, as well as enterprises large and small. We are already nearly everywhere: AT&T, Bell Mobility, Boost Mobile, China Mobile, Ford, NII Holdings, QNX Software Systems, Rogers, Sony, Sprint Nextel, Telcel, T-Mobile UK, T-Mobile US, U.S. Cellular, Verizon Wireless and Vivo Brazil.

\\n\\n

Quick facts:

\\n\\n
    \\n
  1. More than 30 million people worldwide already connect with our services from mobile phones, tablets, computers, cars, and developer applications.
  2. \\n
  3. Mobile OS support of over 1,300 phones
  4. \\n
  5. Team of 1000+ employees worldwide with offices in North America, China, Brazil and the UK.
  6. \\n
\\n\\n

TeleNav products accounted for 55 percent of the revenue generated by top mobile applications distributed by carriers (Nielsen Mobile, Q1 2010).

', 'image': {'available_sizes': [[[150, 42], 'assets/images/resized/0006/6385/66385v3-max-150x150.png'], [[250, 70], 'assets/images/resized/0006/6385/66385v3-max-250x250.png'], [[450, 127], 'assets/images/resized/0006/6385/66385v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'TeleNav GPS Navigator', 'permalink': 'telenav-gps-navigator'}, {'name': 'AT&T Navigator', 'permalink': 'at-t-navigator'}, {'name': 'Sprint Navigation', 'permalink': 'sprint-navigation'}, {'name': 'Rogers Navigator', 'permalink': 'rogers-navigator'}, {'name': 'GPS Navigator from Bell', 'permalink': 'gps-navigator-from-bell'}, {'name': 'Vivo Co-Piloto', 'permalink': 'vivo-co-piloto'}, {'name': 'TeleNav Shotgun', 'permalink': 'telenav-shotgun'}, {'name': 'TeleNav Track', 'permalink': 'telenav-track'}, {'name': 'TeleNav Track Basic', 'permalink': 'telenav-track-basic'}, {'name': 'TeleNav Track Enhanced', 'permalink': 'telenav-track-enhanced'}, {'name': 'TeleNav Track LITE', 'permalink': 'telenav-track-lite'}, {'name': 'TeleNav Asset Tracker', 'permalink': 'telenav-asset-tracker'}, {'name': 'TeleNav Vehicle Manager', 'permalink': 'telenav-vehicle-manager'}, {'name': 'TeleNav Track Plus', 'permalink': 'telenav-track-plus'}, {'name': 'TeleNav Track Premium', 'permalink': 'telenav-track-premium'}, {'name': 'TeleNav Vehicle Tracker', 'permalink': 'telenav-vehicle-tracker'}, {'name': 'Whereboutz', 'permalink': 'whereboutz'}, {'name': 'Sipity', 'permalink': 'sipity'}, {'name': 'OnMyWay', 'permalink': 'onmyway'}], 'relationships': [{'is_past': False, 'title': 'VP of R&D and C-Founder', 'person': {'first_name': 'Y.C.', 'last_name': 'Chao', 'permalink': 'y-c-chao'}}, {'is_past': False, 'title': 'CTO and Co-Founder', 'person': {'first_name': 'Bob', 'last_name': 'Rennard', 'permalink': 'bob-rennard'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'Strambi', 'permalink': 'michael-strambi'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Doug', 'last_name': 'Miller', 'permalink': 'doug-miller-2'}}, {'is_past': False, 'title': 'Sr. VP of Engineering', 'person': {'first_name': 'Marc', 'last_name': 'Aronson', 'permalink': 'marc-aronson'}}, {'is_past': False, 'title': 'VP of Business Development and Carrier Sales', 'person': {'first_name': 'Hassan', 'last_name': 'Wahla', 'permalink': 'hassan-wahla'}}, {'is_past': False, 'title': 'Sr. VP of Engineering', 'person': {'first_name': 'HP', 'last_name': 'Jin', 'permalink': 'hp-jin'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Loren', 'last_name': 'Hillberg', 'permalink': 'loren-hillberg'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Shawn', 'last_name': 'Carolan', 'permalink': 'shawn-carolan'}}, {'is_past': False, 'title': 'Software Engineering', 'person': {'first_name': 'John', 'last_name': 'Hinnegan', 'permalink': 'john-hinnegan'}}, {'is_past': False, 'title': 'Head of Product, Consumer Business', 'person': {'first_name': 'Mark', 'last_name': 'Watkins', 'permalink': 'mark-watkins'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Soo', 'last_name': 'Boon Koh', 'permalink': 'soo-boon-koh'}}, {'is_past': False, 'title': 'VP of Products and Marketing and Co-Founder', 'person': {'first_name': 'Sal', 'last_name': 'Dhanani', 'permalink': 'sal-dhanani'}}, {'is_past': False, 'title': 'GM of Scout Advertising', 'person': {'first_name': 'Eli', 'last_name': 'Portnoy', 'permalink': 'eli-portnoy'}}, {'is_past': False, 'title': 'Associate Director', 'person': {'first_name': 'David', 'last_name': 'Tannenbaum', 'permalink': 'david-tannenbaum-2'}}, {'is_past': False, 'title': 'Head of OSM', 'person': {'first_name': 'Steve', 'last_name': 'Coast', 'permalink': 'steve-coast'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Stewart', 'last_name': 'Gollmer', 'permalink': 'stewart-gollmer'}}, {'is_past': True, 'title': 'Finance & Corporate Development Consultant', 'person': {'first_name': 'George', 'last_name': 'Ng', 'permalink': 'george-ng'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mark', 'last_name': 'Leslie', 'permalink': 'mark-leslie'}}, {'is_past': True, 'title': 'Group Manager - Studio', 'person': {'first_name': 'John', 'last_name': 'Tumminaro', 'permalink': 'john-tumminaro'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Srujan', 'last_name': 'Akula', 'permalink': 'srujan-akula'}}, {'is_past': True, 'title': 'Director Mobile Advertising', 'person': {'first_name': 'Dan', 'last_name': 'Bailey', 'permalink': 'dan-bailey'}}], 'competitions': [{'competitor': {'name': 'Garmin', 'permalink': 'garmin'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Navigon', 'permalink': 'navigon'}}, {'competitor': {'name': 'Nokia', 'permalink': 'nokia'}}, {'competitor': {'name': 'TeleCommunication Systems', 'permalink': 'telecommunication-systems'}}, {'competitor': {'name': 'Telmap', 'permalink': 'telmap'}}, {'competitor': {'name': 'TomTom International', 'permalink': 'tomtom-international'}}, {'competitor': {'name': 'Xora, Inc.', 'permalink': 'xora'}}, {'competitor': {'name': 'Waze', 'permalink': 'waze'}}], 'providerships': [{'title': 'Investor Relations', 'is_past': False, 'provider': {'name': 'The Blueshirt Group', 'permalink': 'the-blueshirt-group'}}], 'total_money_raised': '$33.6M', 'funding_rounds': [{'id': 16379, 'round_code': 'e', 'source_url': 'http://www.telenav.com/about/pr/pr-20060301-tnt.html', 'source_description': 'TeleNav Secures $30 Million in Private Funding', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Menlo Ventures', 'permalink': 'menlo-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lehman Brothers Venture Partners', 'permalink': 'lehman-brothers-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sycamore Ventures', 'permalink': 'sycamore-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'iGlobe Partners', 'permalink': 'iglobe-partners'}, 'person': None}]}, {'id': 42425, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1474439/000147443912000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 3558780, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 17, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'RewardMe', 'permalink': 'rewardme'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/03/retailigence-raises-6-3m-series-funding.html', 'source_description': 'Retailigence Raises $6.3M in Series B Funding', 'raised_amount': 6300000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 5, 'company': {'name': 'Retailigence', 'permalink': 'retailigence'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20110902.html', 'source_description': 'TeleNav Completes Acquisition of goby', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Goby', 'permalink': 'goby'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/telenav-launches-scout-advertising-acquires-120000388.html', 'source_description': 'Telenav Launches Scout Advertising; Acquires ThinkNear, a Hyper-Local Mobile Advertising Company', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 16, 'company': {'name': 'ThinkNear', 'permalink': 'thinknear'}}], 'offices': [{'description': 'TeleNav US - Headquarters', 'address1': '1130 Kifer Road', 'address2': '', 'zip_code': '94086', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Seattle Office', 'address1': '4020 Lake Washington Blvd. NE', 'address2': 'Suite 208', 'zip_code': '98033', 'city': 'Kirkland', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav China', 'address1': '10F DongFangWeiJing Building', 'address2': '333 XianXia Road', 'zip_code': '200002', 'city': 'Changning, Shanghai', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Beijing Lab', 'address1': 'Tsinghua Science Park, Building 8-C, Floor 11', 'address2': '1 Zhong Guan Cun Road', 'zip_code': '100084', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Brazil', 'address1': 'TeleNav do Brasil Serviços de localização ltda.', 'address2': 'Av. Paulista, 2300 - Andar Pilotis', 'zip_code': '', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Europe', 'address1': 'Mackmurdo House,79 Springfield Road', 'address2': '', 'zip_code': 'CM2 6JG', 'city': 'Chelmsford, Essex', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 6140, 'description': 'TeleNav launches first mobile GPS navigation with Nextel', 'stoned_year': 2003, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.encyclopedia.com/doc/1G1-96287952.html', 'source_text': None, 'source_description': \"Televigation Launches North America's First GPS Navigation Service for Wireless Phones\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6141, 'description': 'Nextel/Sprint Launches TeleNav Track', 'stoned_year': 2004, 'stoned_month': None, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6142, 'description': 'TeleNav Launches with China Mobile (originally with Shanghai Mobile)', 'stoned_year': 2004, 'stoned_month': 5, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6143, 'description': 'TeleNav launches GPS navigation with Sprint', 'stoned_year': 2005, 'stoned_month': 9, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20050926-tnt.html', 'source_text': None, 'source_description': 'Sprint Extends Customer Choice and Flexibility with TeleNav GPS Navigator Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6144, 'description': 'TeleNav Secures Final Round of Funding', 'stoned_year': 2006, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20060301-tnt.html', 'source_text': None, 'source_description': 'TeleNav Secures $30 Million in Private Funding', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6145, 'description': 'TeleNav Hires New CFO', 'stoned_year': 2006, 'stoned_month': 5, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20060522-tnt.html', 'source_text': None, 'source_description': 'TeleNav Names Douglas Miller as CFO to Spearhead Company’s Rapid Financial Growth', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6146, 'description': 'TeleNav launches GPS navigation with AT&T (then Cingular)', 'stoned_year': 2006, 'stoned_month': 10, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20061025-tnt.html', 'source_text': None, 'source_description': 'Cingular Provides “Directionâ€\\x9d to Business Customers with TeleNav GPS Navigator', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6147, 'description': 'TeleNav launches GPS navigation with Alltel', 'stoned_year': 2006, 'stoned_month': 12, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20061207-tnt.html', 'source_text': None, 'source_description': 'Alltel Wireless Guides Customers Through Holiday Travel with Launch of TeleNav GPS Navigator', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6148, 'description': 'TeleNav launches GPS navigation with Rogers Wireless', 'stoned_year': 2007, 'stoned_month': 2, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070212b-tnt.html', 'source_text': None, 'source_description': 'TeleNav GPS Navigator Launches in Canada with Rogers Wireless', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6149, 'description': 'TeleNav launches GPS navigation with T-Mobile US (initially on BlackBerry 8800)', 'stoned_year': 2007, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.mobiletechreview.com/phones/BlackBerry_8800.htm', 'source_text': None, 'source_description': 'BlackBerry 8800 phone review', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6150, 'description': 'TeleNav launches TeleNav Track with AT&T', 'stoned_year': 2007, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070322-tnt.html', 'source_text': None, 'source_description': 'AT&T Helps Wireless Business Customers Keep Track with New GPS-Enabled, Location-Based Services Solution', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6151, 'description': 'TeleNav launches GPS navigation with Bell', 'stoned_year': 2007, 'stoned_month': 6, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070702-tnt.html', 'source_text': None, 'source_description': 'Bell Selects TeleNav to Power Mobile GPS Navigation Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6152, 'description': 'TeleNav launches GPS navigation with NII (Nextel Mexico and Nextel Brazil)', 'stoned_year': 2007, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20071115.html', 'source_text': None, 'source_description': 'TeleNav Expands Availability of Cell Phone GPS Systems in Latin America', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6153, 'description': 'TeleNav launches GPS navigation with T-Mobile UK', 'stoned_year': 2008, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20080122.html', 'source_text': None, 'source_description': 'T-Mobile UK Launches Mobile Phone GPS Navigation with TeleNav', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6154, 'description': 'TeleNav launches GPS navigation with largest carrier in Brazil (Vivo Brazil)', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20080917.html', 'source_text': None, 'source_description': 'TeleNav Partners with Largest Wireless Carrier in Latin America to Offer Mobile Phone GPS Navigation to Millions', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6155, 'description': 'TeleNav enters in-car navigation industry with Ford', 'stoned_year': 2009, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20090108.html', 'source_text': None, 'source_description': 'Ford Motor Company Selects TeleNav to Power In-Car GPS Navigation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6156, 'description': 'TeleNav files for IPO', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20091102-tnt.html', 'source_text': None, 'source_description': 'TeleNav Files for Initial Public Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6157, 'description': 'TeleNav and Ford partner again for latest in-car navigation system', 'stoned_year': 2010, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100106.html', 'source_text': None, 'source_description': 'Ford Motor Company and TeleNav to Launch Connected In-Vehicle GPS Navigation System', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6158, 'description': 'TeleNav launches TeleNav Track with Verizon Wireless', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100427.html', 'source_text': None, 'source_description': 'TeleNav Business Mobility Products Now Available For Verizon Wireless Enterprise Customers', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6159, 'description': 'TeleNav Announces Pricing of Initial Public Offering of Common Stock', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100513.html', 'source_text': None, 'source_description': 'TeleNav Announces Pricing of Initial Public Offering of Common Stock', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6708, 'description': 'U.S. Cellular Selects TeleNav as a GPS Navigation Partner', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20100709.html', 'source_text': None, 'source_description': 'U.S. Cellular Selects TeleNav as a GPS Navigation Partner', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 8322, 'description': 'TeleNav Debuts Navigation-Based Ads', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 14, 'source_url': 'http://www.mediapost.com/publications/?fa=Articles.showArticle&art_aid=135748', 'source_text': None, 'source_description': 'TeleNav Debuts Navigation-Based Ads - Media Post', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21135, 'description': 'Telenav added Dariusz Paczuski as VP of Marketing', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 30, 'source_url': 'http://www.telenav.com/about/pr/pr-20100730.html', 'source_text': None, 'source_description': 'Telenav Expands its leadership team', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21138, 'description': 'Company introduces Telenav Connect and Telenav Share, APIs for mobile and web developers with interest in navigation and location sharing services ', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 1, 'source_url': 'http://www.telenav.com/about/pr/pr-20101101.html', 'source_text': None, 'source_description': 'Company introduces Telenav Connect and Telenav Share, APIs for mobile and web developers with interest in navigation and location sharing services ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21139, 'description': 'Ford selects Telenav as global navigation partner for MyFord Touch-equipped vehicles ', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20101209.html', 'source_text': None, 'source_description': 'Ford Selects TeleNav as Global Navigation Partner for MyFord Touch-equipped Vehicles ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21140, 'description': 'Survey finds 1/3 of Americans willing to give up sex more than their mobile phones ', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 3, 'source_url': 'http://www.telenav.com/about/pr/pr-20110803.html', 'source_text': None, 'source_description': 'Survey Finds One-Third of Americans More Willing to Give Up Sex Than Their Mobile Phones ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21141, 'description': 'Delphi selects Telenav to power connected navigation systems for vehicles worldwide ', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://www.telenav.com/about/pr/pr-20111027a.html', 'source_text': None, 'source_description': 'Delphi Selects TeleNav to Power Connected Navigation System for Vehicles Worldwide ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21142, 'description': 'Telenav reports first quarter 2012 financial results ', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://www.telenav.com/about/pr/pr-20111027.html', 'source_text': None, 'source_description': 'TeleNav Reports First Quarter Fiscal 2012 Financial Results ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21143, 'description': 'Telenav announces new version of Auto Platform – connecting navigation, search to the phone, cloud and automobile ', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://www.telenav.com/about/pr/pr-20111108.html', 'source_text': None, 'source_description': 'New Version of the TeleNav Auto Platform Connects Navigation & Search to the Phone, the Cloud & the Car ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21144, 'description': 'Telenav announces world’s first HTML5 Browser-based, voice, turn-by-turn GPS Navigation Service ', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 14, 'source_url': 'http://www.telenav.com/about/pr/pr-20111214.html', 'source_text': None, 'source_description': 'TeleNav Announces World’s First HTML5 Browser-Based, Voice-Guided, Turn-by-Turn GPS Navigation Service ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21145, 'description': 'Telenav announces partnership with Ford – Scout, personal navigator to integrate with SYNC AppLink ', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20120109a.html', 'source_text': None, 'source_description': 'New Version of the TeleNav Auto Platform Connects Navigation & Search to the Phone, the Cloud & the Car ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21146, 'description': 'Telenav unveils Scout™ in App Store for iPhones at CES', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20120109.html', 'source_text': None, 'source_description': 'Telenav® Unveils Scout™, the First Daily Personal Navigator for Smartphones, Computers, and Cars ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21147, 'description': 'Telenav reports second quarter fiscal 2012 financial results ', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://www.telenav.com/about/pr/pr-20120126.html', 'source_text': None, 'source_description': 'Telenav Reports Second Quarter Fiscal 2012 Financial Results ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}], 'ipo': {'valuation_amount': 337000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 5, 'pub_day': 13, 'stock_symbol': 'TNAV'}, 'video_embeds': [{'embed_code': '', 'description': '

TeleNav Launches with U.S. Cellular

'}, {'embed_code': '', 'description': '

HOW TO: Set Up TeleNav GPS Navigator To Ask Your Preferred Routing Style Each Trip

'}, {'embed_code': '', 'description': '

Pepcom NYC: TeleNav’s James Grace Demos MyFord Touch Navigation

'}, {'embed_code': '', 'description': '

TeleNav Tips & Tricks: How to Use Pedestrian Mode (in New York City!)

'}, {'embed_code': '', 'description': '

How To: Set Up Commute Alerts on Sprint Navigation version 2.8 Premium

'}, {'embed_code': '', 'description': '

Demo: How to Find Gas By Price

'}, {'embed_code': '', 'description': '

Demo: Sharing an Address Using Sprint Navigation

'}, {'embed_code': '', 'description': '

TeleNav @ HTC EVO Launch Day: The USA Trivia Challenge!

'}, {'embed_code': '', 'description': '

HOW TO: Set Up Shake-To-Go On AT&T Navigator v1.5i on the iPhone

'}, {'embed_code': '', 'description': '

Demo: Sprint Navigation on the HTC EVO 4G

'}, {'embed_code': '', 'description': '

The 2011 Ford Fiesta Launch Event & In-Car Demo!

'}], 'screenshots': [{'available_sizes': [[[150, 72], 'assets/images/resized/0006/6386/66386v1-max-150x150.jpg'], [[250, 120], 'assets/images/resized/0006/6386/66386v1-max-250x250.jpg'], [[450, 217], 'assets/images/resized/0006/6386/66386v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'permalink': 'mixi', 'crunchbase_url': 'http://www.crunchbase.com/company/mixi', 'homepage_url': 'http://mixi.co.jp/en/overview', 'blog_url': 'http://alpha.mixi.co.jp/blog/', 'blog_feed_url': 'http://alpha.mixi.co.jp/blog/?feed=atom', 'twitter_username': '', 'category_code': 'mobile', 'number_of_employees': 257, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 3, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-network, japan, japanese, tokyo, invitation-only, blogging-platform, mobile-social-network', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Mon Jul 07 17:21:26 UTC 2008', 'updated_at': 'Wed Oct 02 06:55:49 UTC 2013', 'overview': '

Mixi, Inc. is a Tokyo-based web company established in 1999, initially as an online job service.

\\n\\n

Mixi is now known for its social network service of the same name, which is by far the biggest one in Japan. The site boasts over 19 million members and gets over 14 billion page views monthly (July 2008). The mobile version is more popular than the PC site.

\\n\\n

Mixi is only available in Japanese and officially restricted to adults. The service requires an invitation from a member and a Japanese cell phone’s email address for identity confirmation.

\\n\\n

Mixi offers typical SNS features such as a “my profile”\\x9d page, a messaging system, photo and video hosting, a blog/diary function, music sharing, a news section, discussion communities/forums etc. External applications are not accepted.

\\n\\n

Mixi went IPO at the Tokyo Stock Exchange in September 2006 is profitable since that time.

', 'image': {'available_sizes': [[[150, 61], 'assets/images/resized/0002/1527/21527v6-max-150x150.jpg'], [[160, 66], 'assets/images/resized/0002/1527/21527v6-max-250x250.jpg'], [[160, 66], 'assets/images/resized/0002/1527/21527v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Mixi', 'permalink': 'mixi'}, {'name': 'DeployGate', 'permalink': 'deploygate'}, {'name': 'Plannah', 'permalink': 'plannah'}], 'relationships': [{'is_past': False, 'title': 'President', 'person': {'first_name': 'Kenji', 'last_name': 'Kasahara', 'permalink': 'kenji-kasahara'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Yusuhiro', 'last_name': 'Ogino', 'permalink': 'yusuhiro-ogino'}}, {'is_past': False, 'title': 'Outside Director', 'person': {'first_name': 'Tatsuya', 'last_name': 'Aoyagi', 'permalink': 'tatsuya-aoyagi'}}, {'is_past': False, 'title': 'Outside Corporate Auditor', 'person': {'first_name': 'Takayuki', 'last_name': 'Sato', 'permalink': 'takayuki-sato'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jun', 'last_name': 'Sumida', 'permalink': 'jun-sumida'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Akinori', 'last_name': 'Harada', 'permalink': 'akinori-harada'}}, {'is_past': False, 'title': 'Outside Director', 'person': {'first_name': 'Ichiya', 'last_name': 'Nakamura', 'permalink': 'ichiya-nakamura'}}, {'is_past': False, 'title': 'Corporate Auditor', 'person': {'first_name': 'Takako', 'last_name': 'Kato', 'permalink': 'takako-kato'}}, {'is_past': False, 'title': 'Outside Corporate Auditor', 'person': {'first_name': 'Hiroyuki', 'last_name': 'Wakamatsu', 'permalink': 'hiroyuki-wakamatsu'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Batara', 'last_name': 'Eto', 'permalink': 'batara-eto'}}, {'is_past': True, 'title': 'Executive Officer', 'person': {'first_name': 'Takuya', 'last_name': 'Miyata', 'permalink': 'takuya-miyata'}}, {'is_past': True, 'title': 'Service Director', 'person': {'first_name': 'Miku', 'last_name': 'Hirano', 'permalink': 'miku-hirano'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Hajime', 'last_name': 'Hotta', 'permalink': 'hajime-hotta'}}, {'is_past': True, 'title': 'UI designer', 'person': {'first_name': 'nariaki', 'last_name': 'satoh', 'permalink': 'nariaki-satoh'}}], 'competitions': [{'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 10.9, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.startup-dating.com/2013/10/mixi-youbride-acquisition', 'source_description': 'Japan’s Mixi acquires Line’s match-making subsidiary for $10.9M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'YouBride', 'permalink': 'youbride'}}], 'offices': [{'description': 'Headquarter', 'address1': 'Sumitomo Realty & Development Harajuku Building', 'address2': '2-34-17 Jingumae, Shibuya-ku,', 'zip_code': '150-0001', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 374, 'description': 'Mixi Starts Testing MicroBlogging Service.', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 5, 'source_url': 'http://asiajin.com/blog/2008/08/04/mixi-testing-their-twitter/', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mixi', 'permalink': 'mixi'}}], 'ipo': {'valuation_amount': 970000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 14, 'stock_symbol': 'JP:2121'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.tokyotronic.com/2007/11/review-japans-uber-social-network-mixi.html', 'title': 'Explanation of Mixi and its functions (English)'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'permalink': 'qliktech', 'crunchbase_url': 'http://www.crunchbase.com/company/qliktech', 'homepage_url': 'http://www.qlikview.com', 'blog_url': 'http://community.qlikview.com/blogs/theqlikviewblog/default.aspx', 'blog_feed_url': 'http://feeds.feedburner.com/TheQlikviewBlog', 'twitter_username': 'qlikview', 'category_code': 'software', 'number_of_employees': 600, 'founded_year': 1993, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'bi, business-intelligence, software, analytics, dashboards, reporting', 'alias_list': None, 'email_address': 'infous@qlikview.com', 'phone_number': '+1 (888)-828-9768', 'description': 'User-Driven Business Discovery', 'created_at': 'Fri Jul 18 18:26:10 UTC 2008', 'updated_at': 'Wed Apr 24 02:39:55 UTC 2013', 'overview': '

QlikTech’s business intelligence software platform, QlikView, combines analytics and search functionality with the ease-of-use found in office productivity software tools for a broad set of business users.

\\n\\n

QlikView allows business users to navigate data with the fluid, associative nature of human thought. QlikView is powered by an in-memory associative search technology which has utilized rapid advances in computing power to yield improvement in flexibility and performance. This technology platform enables users to consolidate large, disparate data sets and discover relationships within data in real time. QlikView also visualizes this data in a simple interface that enables users to interactively explore and analyze information.

\\n\\n

QlikTech has over 22,000 in customers in over 110 countries, from middle market to large enterprises such as BP, Campbell Soup Company, Colonial Life, The Dannon Company, Inc., Heidelberger Druckmaschinen AG, ING, Kraft Foods, Lifetime Brands, National Health Service (NHS), Qualcomm, Symantec and Volvo Car UK Limited.

\\n\\n

QlikTech has a diversified distribution model that consists of a direct sales force and a partner network of resellers, OEMs and systems integrators. Its network of over 1,100 channel partners worldwide help generate demand for QlikView. QlikTech offers free product downloads to individuals and a 30-day money back guarantee upon purchase.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0002/2358/22358v2-max-150x150.png'], [[250, 49], 'assets/images/resized/0002/2358/22358v2-max-250x250.png'], [[450, 88], 'assets/images/resized/0002/2358/22358v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'QlikView', 'permalink': 'qlikview'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lars', 'last_name': 'Björk', 'permalink': 'lars-bjrk'}}, {'is_past': False, 'title': 'Chief Product Strategy Office', 'person': {'first_name': 'Jonas', 'last_name': 'Nachmanson', 'permalink': 'jonas-nachmanson'}}, {'is_past': False, 'title': 'CTO & SVP Products', 'person': {'first_name': 'Anthony', 'last_name': 'Deighton', 'permalink': 'anthony-deighton'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Steve', 'last_name': 'Frechette', 'permalink': 'steve-frechette'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Les', 'last_name': 'Bonney', 'permalink': 'les-bonney'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Bruce', 'last_name': 'Golden', 'permalink': 'bruce-golden'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Mans', 'last_name': 'Hultman', 'permalink': 'mns-hultman'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Lara', 'last_name': 'Shackelford', 'permalink': 'lara-shackelford'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Douglas', 'last_name': 'Laird', 'permalink': 'douglas-laird'}}, {'is_past': True, 'title': 'Senior PreSales Consultant', 'person': {'first_name': 'Andrea', 'last_name': 'Cassini', 'permalink': 'andrea-cassini'}}, {'is_past': True, 'title': 'Led Organization in Hyper Growth', 'person': {'first_name': 'Jason', 'last_name': 'Bissell', 'permalink': 'jason-bissell'}}, {'is_past': True, 'title': 'leadership positions', 'person': {'first_name': 'David', 'last_name': 'Mountain', 'permalink': 'dave-mountain'}}], 'competitions': [{'competitor': {'name': 'SAP', 'permalink': 'sap'}}, {'competitor': {'name': 'Tableau Software', 'permalink': 'tableau-software'}}, {'competitor': {'name': 'Cognos', 'permalink': 'cognos'}}, {'competitor': {'name': 'Spotfire', 'permalink': 'spotfire'}}, {'competitor': {'name': 'Jolicharts', 'permalink': 'jolicharts'}}, {'competitor': {'name': 'Salient Management Company', 'permalink': 'salient-management-company'}}, {'competitor': {'name': 'Cyfe', 'permalink': 'cyfe'}}], 'providerships': [], 'total_money_raised': '$12.5M', 'funding_rounds': [{'id': 33316, 'round_code': 'unattributed', 'source_url': 'http://www.businesswire.com/news/home/20041206005593/en/QlikTech-Secures-12.5-Million-Venture-Capital-Funding', 'source_description': 'Business Wire', 'raised_amount': 12500000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 12, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Jerusalem Venture Partners', 'permalink': 'jerusalem-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2012/06/11/daily29-Expressor-Software-acquired-by-QlikTech.html', 'source_description': 'Expressor Software acquired by QlikTech', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 13, 'company': {'name': 'expressor software', 'permalink': 'expressor-software'}}], 'offices': [{'description': 'World Headquarters', 'address1': '150 Radnor Chester Road', 'address2': '', 'zip_code': '19087', 'city': 'Radnor', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.037578, 'longitude': -75.366299}, {'description': 'R&D Center', 'address1': 'Science Park Ideon', 'address2': 'Beta 6, Schéelevägen 17', 'zip_code': '223 70', 'city': 'Lund', 'state_code': None, 'country_code': 'SWE', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3129, 'description': 'QlikTech CEO Lars Bjork Named Ernst & Young Entrepreneur Of The Year', 'stoned_year': 2009, 'stoned_month': 6, 'stoned_day': None, 'source_url': 'http://www.qlikview.com/Contents.aspx?id=10614', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QlikTech', 'permalink': 'qliktech'}}, {'id': 4659, 'description': 'QlikTech files S-1 under parent company Qlik Technologies', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 1, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1305294/000095012310031429/b80142sv1.htm', 'source_text': None, 'source_description': 'SEC Filing', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QlikTech', 'permalink': 'qliktech'}}], 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 16, 'stock_symbol': 'QLIK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299576'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299900'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'permalink': 'solarwinds', 'crunchbase_url': 'http://www.crunchbase.com/company/solarwinds', 'homepage_url': 'http://www.solarwinds.com', 'blog_url': 'http://whiteboard.solarwinds.com/', 'blog_feed_url': '', 'twitter_username': 'sw_headgeek', 'category_code': 'software', 'number_of_employees': 354, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'ideas@solarwinds.com', 'phone_number': '512-682-9300', 'description': 'Network Management Software', 'created_at': 'Fri Dec 12 18:41:08 UTC 2008', 'updated_at': 'Tue Oct 08 03:35:33 UTC 2013', 'overview': '

SolarWinds develops software for managing networks, small or large.

\\n\\n

SolarWinds products are used by more than one million network engineers to manage IT environments ranging from ten to tens of thousands of network devices. Comprised of fault and performance management products, configuration and compliance products, and tools for engineers, the SolarWinds product family is trusted by organizations around the globe.

\\n\\n

SolarWinds was founded in 1999. and has headquarters in Austin, Texas, with sales and product development offices around the world.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0005/1556/51556v1-max-150x150.png'], [[206, 69], 'assets/images/resized/0005/1556/51556v1-max-250x250.png'], [[206, 69], 'assets/images/resized/0005/1556/51556v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President, CEO, and Chairman', 'person': {'first_name': 'Michael', 'last_name': 'Bennett', 'permalink': 'michael-bennett'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Kevin', 'last_name': 'B. Thompson', 'permalink': 'kevin-b-thompson'}}, {'is_past': False, 'title': 'Senior Vice President, Finance', 'person': {'first_name': 'J.', 'last_name': 'Barton Kalsu', 'permalink': 'j-barton-kalsu'}}, {'is_past': False, 'title': 'Vice President for Technology and “Head Geekâ€\\x9d', 'person': {'first_name': 'Josh', 'last_name': 'Stephens', 'permalink': 'josh-stephens'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'J. Berry', 'permalink': 'michael-j-berry'}}, {'is_past': False, 'title': 'Senior Product Marketing Manager', 'person': {'first_name': 'Russ', 'last_name': 'Somers', 'permalink': 'russ-somers'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Ellen', 'last_name': 'Siminoff', 'permalink': 'ellen-siminoff'}}, {'is_past': True, 'title': 'Chief Product Strategy', 'person': {'first_name': 'Kenny', 'last_name': 'Van Zant', 'permalink': 'kenny-van-zant'}}, {'is_past': True, 'title': 'VP Worldwide Business and Corporate Development', 'person': {'first_name': 'Karen', 'last_name': 'White', 'permalink': 'karen-white'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Salo', 'permalink': 'andy-salo'}}, {'is_past': True, 'title': 'Sr. Director, Web Products & Strategies', 'person': {'first_name': 'Greg', 'last_name': 'Gunwall', 'permalink': 'greg-gunwall'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jeff', 'last_name': 'Horing', 'permalink': 'jeff-horing'}}, {'is_past': True, 'title': 'Sr. Product Marketing Manager', 'person': {'first_name': 'Kris', 'last_name': 'McGlone', 'permalink': 'kris-mcglone'}}, {'is_past': True, 'title': 'Sr. Director, WW Channels; Sr. Director, Sales', 'person': {'first_name': 'RJ', 'last_name': 'Brideau', 'permalink': 'rj-brideau'}}, {'is_past': True, 'title': 'Community Manager', 'person': {'first_name': 'Dawn', 'last_name': 'Lacallade', 'permalink': 'dawn-lacallade'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Lloyd', 'last_name': 'G. Waterhouse', 'permalink': 'lloyd-g-waterhouse'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations (US, EU)', 'is_past': False, 'provider': {'name': 'The Hoffman Agency', 'permalink': 'the-hoffman-agency'}}], 'total_money_raised': '$218M', 'funding_rounds': [{'id': 11818, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1428669/000142866910000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 2, 'funded_day': 5, 'investments': []}, {'id': 12857, 'round_code': 'b', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Austin Ventures', 'permalink': 'austin-ventures'}, 'person': None}]}, {'id': 18668, 'round_code': 'unattributed', 'source_url': 'http://www.solarwinds.com/fr/pdfs/CorporateFactSheet.pdf', 'source_description': 'December 2005 - Investment from Bain Capital Ventures and Insight Venture Partners', 'raised_amount': 200000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Insight Venture Partners', 'permalink': 'insight-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bain Capital Ventures', 'permalink': 'bain-capital-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 42000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://deals.venturebeat.com/2010/01/27/solarwinds-dishes-out-42m-for-tek-tool-storage-and-virtualization-products/', 'source_description': 'SolarWinds dishes out $42M for Tek-Tools storage and virtualization products', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 27, 'company': {'name': 'Tek-Tools Software', 'permalink': 'tek-tools-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.msigeek.com/6648/solarwinds-acquires-hyper9-sets-sights-on-application-performance-management-space', 'source_description': 'SolarWinds Acquires Hyper9, Sets Sights on Application Performance Management Space', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 20, 'company': {'name': 'Hyper9', 'permalink': 'hyper9'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2011/06/23/solarwinds-buys-network-security-company-trigeo-for-35-million-in-cash/', 'source_description': 'SolarWinds Buys Network Security Company TriGeo For $35 Million In Cash', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'TriGeo Network Security', 'permalink': 'trigeo-network-security'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/589557/solarwinds-acquires-dameware-development-', 'source_description': 'SolarWinds Acquires DameWare Development ', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'DameWare Development', 'permalink': 'dameware-development'}}, {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130521e95lssb3w&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130521e95lssb3w%26from%3dalert%26pid%3d32', 'source_description': ' SolarWinds to Buy N-Able Technologies for $120M ', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'company': {'name': 'N-able Technologies', 'permalink': 'n-able-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.dnsstuff.com/company/about-us', 'source_description': 'About DNSstuff.com', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'DNSStuff.com', 'permalink': 'dnsstuff-com'}}, {'price_amount': 103000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.charlotteobserver.com/2013/10/07/4372370/solarwinds-buys-confio-software.html#.UlN9JxBEl4o', 'source_description': ' SolarWinds buys Confio Software for $103M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'Confio Software', 'permalink': 'confio-software'}}], 'offices': [{'description': 'HQ', 'address1': '3711 South MoPac Expressway', 'address2': 'Building Two', 'zip_code': '78746', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.245535, 'longitude': -97.805621}], 'milestones': [{'id': 6332, 'description': \"SolarWinds named in Lead411's Hottest Texas Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 22, 'source_url': 'http://www.lead411.com/texas-companies.html', 'source_text': None, 'source_description': ' Lead411 launches \"Hottest Texas Companies\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'SolarWinds', 'permalink': 'solarwinds'}}], 'ipo': {'valuation_amount': 803000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 20, 'stock_symbol': 'SWI'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 126], 'assets/images/resized/0007/9817/79817v1-max-150x150.jpg'], [[250, 210], 'assets/images/resized/0007/9817/79817v1-max-250x250.jpg'], [[450, 379], 'assets/images/resized/0007/9817/79817v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'permalink': 'demandtec', 'crunchbase_url': 'http://www.crunchbase.com/company/demandtec', 'homepage_url': 'http://www.demandtec.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': 350, 'founded_year': 1999, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'merchandising and trade optimization', 'created_at': 'Sun Jan 18 07:18:49 UTC 2009', 'updated_at': 'Fri Dec 16 01:22:53 UTC 2011', 'overview': '

DemandTec (NASDAQ:DMAN) connects more than 340 retailers and consumer products companies, providing common tools to transact, interact, and collaborate on core merchandising and marketing activities. DemandTec’s services enable customers to achieve their sales volume, revenue, shopper loyalty, and profitability objectives. DemandTec customers have collaborated on nearly four million trade deals. DemandTec software and analytical services utilize a science-based platform to model and understand consumer behavior. DemandTec customers include leading retailers and consumer products companies such as Ahold USA, Best Buy, ConAgra Foods, Delhaize America, General Mills, H-E-B Grocery Co., The Home Depot, Hormel Foods, Monoprix, PETCO, Safeway, Sara Lee, Target, Walmart, and WH Smith.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0003/4137/34137v1-max-150x150.jpg'], [[168, 45], 'assets/images/resized/0003/4137/34137v1-max-250x250.jpg'], [[168, 45], 'assets/images/resized/0003/4137/34137v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Dan', 'last_name': 'Fishback', 'permalink': 'dan-fishback'}}, {'is_past': False, 'title': 'EVP & CFO', 'person': {'first_name': 'Mark', 'last_name': 'Culhane', 'permalink': 'mark-culhane'}}, {'is_past': False, 'title': 'EVP & Chief Customer Officer', 'person': {'first_name': 'Bill', 'last_name': 'Phelps', 'permalink': 'bill-phelps'}}, {'is_past': False, 'title': 'Senior Architect', 'person': {'first_name': 'Louis', 'last_name': 'Roehrs', 'permalink': 'louis-roehrs'}}, {'is_past': False, 'title': 'Sr. Director of Science, Consumer Products', 'person': {'first_name': 'Siddharth', 'last_name': 'Patil', 'permalink': 'siddharth-patil'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Michael', 'last_name': 'Neal', 'permalink': 'michael-neal-2'}}, {'is_past': True, 'title': 'Chief Science Officer', 'person': {'first_name': 'Krishna', 'last_name': 'Venkatraman', 'permalink': 'krishna-venkatraman'}}, {'is_past': True, 'title': 'Interim CMO', 'person': {'first_name': 'Gerard', 'last_name': 'Cunningham', 'permalink': 'gerard-cunningham-2'}}, {'is_past': True, 'title': 'SVP Product Management & Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Frandsen', 'permalink': 'mike-frandsen'}}, {'is_past': True, 'title': 'SVP Worldwide Sales', 'person': {'first_name': 'John', 'last_name': 'Crouch', 'permalink': 'john-crouch'}}, {'is_past': True, 'title': 'Sr. Director, Integration Services', 'person': {'first_name': 'John', 'last_name': 'Liska', 'permalink': 'john-liska'}}, {'is_past': True, 'title': 'Senior VP of Products', 'person': {'first_name': 'Jim', 'last_name': 'Dai', 'permalink': 'jim-dai'}}, {'is_past': True, 'title': \"Board Director, Prior To IBM's $500 million acquisition\", 'person': {'first_name': 'Chuck', 'last_name': 'Robel', 'permalink': 'chuck-robel'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Perry', 'last_name': 'Ha', 'permalink': 'perry-ha'}}, {'is_past': True, 'title': 'Release Manager', 'person': {'first_name': 'Anupama', 'last_name': 'Ramesh', 'permalink': 'anupama-ramesh'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Han', 'last_name': 'Kim', 'permalink': 'han-kim'}}, {'is_past': True, 'title': 'SVP of Products', 'person': {'first_name': 'Joel', 'last_name': 'Weingarten', 'permalink': 'joel-weingarten-2'}}], 'competitions': [{'competitor': {'name': 'Baynote', 'permalink': 'baynote'}}], 'providerships': [], 'total_money_raised': '$6M', 'funding_rounds': [{'id': 4636, 'round_code': 'debt_round', 'source_url': 'http://venturebeat.com/2007/08/09/demandtec-consumer-demand-management-software-co-prices-ipo/', 'source_description': 'DemandTec, consumer demand management software co., prices IPO', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Altos Ventures', 'permalink': 'altos-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Black River Asset Management', 'permalink': 'black-river'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crosspoint Venture Partners', 'permalink': 'crosspoint-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 440000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/08/ibm-buys-retail-forecasting-and-merchandising-software-company-demandtec-for-440m/', 'source_description': 'IBM Buys Retail Forecasting And Merchandising Software Company DemandTec For $440M', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 8, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}, 'acquisitions': [{'price_amount': 13450000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.demandtec.com/company/news/press/2009/news_rel_022509_C3acquire.php', 'source_description': 'DemandTec Completes Acquisition of Connect3 Systems', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 25, 'company': {'name': 'Connect3 Systems', 'permalink': 'connect3-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/demandtec-acquires-assets-of-applied-intelligence-solutions-llc-112797564.html', 'source_description': 'DemandTec Acquires Assets of Applied Intelligence Solutions, LLC', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 3, 'company': {'name': 'Applied Intelligence Solutions', 'permalink': 'applied-intelligence-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/464079/demandtec-acquire-m-factor', 'source_description': 'DemandTec to Acquire M-Factor', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 9, 'company': {'name': 'M-Factor', 'permalink': 'm-factor'}}], 'offices': [{'description': 'Corporate Headquarters', 'address1': '1 Circle Star Way, Suite 200', 'address2': '', 'zip_code': '94070', 'city': 'San Carlos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.498842, 'longitude': -122.239815}, {'description': 'United Kingdom', 'address1': '1 Northumberland Ave', 'address2': '', 'zip_code': 'WC2N 5BW', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.5069206, 'longitude': -0.1249337}], 'milestones': [], 'ipo': {'valuation_amount': 245000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 2, 'pub_day': 14, 'stock_symbol': 'NASDAQ:DMAN'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerstone-ondemand', 'homepage_url': 'http://www.cornerstoneondemand.com', 'blog_url': 'http://www.cornerstoneondemand.com/blog', 'blog_feed_url': 'http://www.cornerstoneondemand.com/blog', 'twitter_username': 'cornerstoneinc', 'category_code': 'software', 'number_of_employees': 881, 'founded_year': 1999, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'talent-management, enterprise, learning-management, performance-management, onboarding, internal-recruiting, learning-content, critical-roles, employee-collaboration, succession', 'alias_list': '', 'email_address': 'info@cornerstoneondemand.com', 'phone_number': '1 (888) 365-2763', 'description': 'integrated talent management software', 'created_at': 'Sun Mar 15 14:45:14 UTC 2009', 'updated_at': 'Tue Nov 05 09:46:58 UTC 2013', 'overview': '

Cornerstone OnDemand is a leading global provider of a comprehensive learning and talent management solution delivered as Software-as-a-Service (SaaS). The company enables organizations to meet the challenges they face in empowering their people and maximizing the productivity of their human capital. Cornerstone currently empowers nearly 13 million users across 190 countries and in 41 languages.

\\n\\n

The company’s integrated software offering consists of four cloud solutions, including the Cornerstone Recruiting Cloud, the Cornerstone Performance Cloud, the Cornerstone Learning Cloud and the Cornerstone Extended Enterprise Cloud. Our clients use our solution to develop employees throughout their careers, engage all employees effectively, improve business execution, cultivate future leaders, and integrate with their external networks of customers, vendors and distributors.

\\n\\n

The company has more than 1,500 clients, including multi-national corporations, large domestic enterprises, mid-market companies, state and local public sector organizations, higher education institutions and non-profit entities. Clients include BJC HealthCare, Flextronics, Kelly Services, Pearson, Starwood Hotels & Resorts Worldwide, Teach for America and Virgin Media Limited, among many others. Cornerstone supports multiple client deployments of more than 150,000 users, including one client with more than 700,000 users.

\\n\\n

Cornerstone is headquartered in Santa Monica, California, with offices in Auckland, Hong Kong, London, Mumbai, Munich, Madrid, Paris, Rome, Sydney and Tel Aviv.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0012/4709/124709v7-max-150x150.png'], [[250, 61], 'assets/images/resized/0012/4709/124709v7-max-250x250.png'], [[450, 110], 'assets/images/resized/0012/4709/124709v7-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Mark', 'last_name': 'Goldin', 'permalink': 'mark-goldin'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Perry', 'last_name': 'Wallack', 'permalink': 'perry-wallack'}}, {'is_past': False, 'title': 'VP, Corporate Development & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': False, 'title': 'EVP Strategic Accounts', 'person': {'first_name': 'Steven', 'last_name': 'Seymour', 'permalink': 'steven-seymour'}}, {'is_past': False, 'title': 'SVP of Client Success', 'person': {'first_name': 'Kirsten', 'last_name': 'Maas Helvey', 'permalink': 'kirsten-maas-helvey'}}, {'is_past': False, 'title': 'SVP and GM of Europe, Middle East and Africa (EMEA)', 'person': {'first_name': 'Vince', 'last_name': 'Belliveau', 'permalink': 'vince-belliveau'}}, {'is_past': False, 'title': 'SVP Sales', 'person': {'first_name': 'Dave', 'last_name': 'Carter', 'permalink': 'dave-carter'}}, {'is_past': False, 'title': 'VP Alliances & Strategy', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': False, 'title': 'GM, Asia-Pacific', 'person': {'first_name': 'Frank', 'last_name': 'Ricciardi', 'permalink': 'frank-ricciardi'}}, {'is_past': False, 'title': 'Services Executive Consultant', 'person': {'first_name': 'Jose', 'last_name': 'daVeiga', 'permalink': 'jose-daveiga'}}, {'is_past': False, 'title': 'National Director – Higher Education', 'person': {'first_name': 'Kurt', 'last_name': 'Ackman', 'permalink': 'kurt-ackman'}}, {'is_past': True, 'title': 'Vice President, Channel Management', 'person': {'first_name': 'Sean', 'last_name': 'Jacobsohn', 'permalink': 'sean-jacobsohn-2'}}, {'is_past': True, 'title': 'SVP, Consulting Services', 'person': {'first_name': 'Kristen', 'last_name': 'Mass Helvey', 'permalink': 'kristen-mass-helvey'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Ed', 'last_name': 'Garber', 'permalink': 'ed-garber'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Norquist Roy', 'permalink': 'julie-norquist-roy'}}, {'is_past': True, 'title': 'Director of Core architecture', 'person': {'first_name': 'Sridhar', 'last_name': 'Sambangi', 'permalink': 'sridhar-sambangi'}}, {'is_past': True, 'title': 'Senior Director, Strategy and Research', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Matt', 'last_name': 'Shields', 'permalink': 'matt-shields-2'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Jessica', 'last_name': 'Levaton', 'permalink': 'jessica-levaton'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Neil', 'last_name': 'Sadaranganey', 'permalink': 'neil-sadaranganey'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'S.Steven', 'last_name': 'Singh', 'permalink': 's-steven-singh'}}], 'competitions': [{'competitor': {'name': 'SuccessFactors', 'permalink': 'successfactors'}}, {'competitor': {'name': 'Halogen Software', 'permalink': 'halogen-software'}}, {'competitor': {'name': 'WorkSimple', 'permalink': 'worksimple'}}, {'competitor': {'name': 'SilkRoad Technology', 'permalink': 'silkroad-technology'}}, {'competitor': {'name': 'Taleo', 'permalink': 'taleo'}}, {'competitor': {'name': 'Softscape', 'permalink': 'softscape'}}], 'providerships': [], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 5331, 'round_code': 'e', 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_raises____7m/s-0020463.html', 'source_description': 'Cornerstone OnDemand Raises $12.7M', 'raised_amount': 12700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}]}, {'id': 11881, 'round_code': 'd', 'source_url': 'http://www.cornerstoneondemand.com/2007-09-17-cornerstone-ondemand-raises-32-million', 'source_description': 'On-Demand Leader Redefines the Talent Management Landscape', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '1601 Cloverfield Blvd.', 'address2': 'Suite 620 South', 'zip_code': '90404', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.028182, 'longitude': -118.472577}], 'milestones': [{'id': 7141, 'description': 'Announced hire of new CTO, Mark Goldin.', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://www.cornerstoneondemand.com/mark-goldin-joins-cornerstone-ondemand-chief-technology-officer', 'source_text': None, 'source_description': 'Mark Goldin Joins Cornerstone OnDemand as Chief Technology Officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}, {'id': 35043, 'description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 11, 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_looks_to_raises____m_in_debt/s-0049751.html', 'source_text': '', 'source_description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}], 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'name': 'Western Digital', 'permalink': 'western-digital', 'crunchbase_url': 'http://www.crunchbase.com/company/western-digital', 'homepage_url': 'http://www.wdc.com/en', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'WesternDigital', 'category_code': 'hardware', 'number_of_employees': None, 'founded_year': 1970, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '949-672-7000', 'description': 'Magnetic Storage', 'created_at': 'Tue May 05 05:31:22 UTC 2009', 'updated_at': 'Tue Sep 10 04:01:45 UTC 2013', 'overview': '

Western Digital Corporation engages in the design, development, manufacture, and sale of hard drives worldwide. It offers hard drives, including 3.5-inch, 2.5-inch, 1.8-inch, and 1.0-inch form factor drives under the Western Digital, WD, the WD logo, WD Caviar, WD Raptor, WD VelociRaptor, WD Scorpio, WD Elements, My Passport, My Book, My DVR Expander, and GreenPower brand names. The company’s hard drives are used in desktop computers; notebook computers; external storage devices; enterprise applications, such as servers, workstations, network attached storage, and storage area networks; and consumer electronics products, which comprise personal/digital video recorders and satellite and cable set-top boxes. Western Digital Corporation sells its products to original equipment manufacturers and original design manufacturers for inclusion in computer systems or subsystems, distributors, resellers, and retailers. The company was founded in 1970 and is headquartered in Lake Forest, California.

', 'image': {'available_sizes': [[[121, 33], 'assets/images/resized/0006/3937/63937v1-max-150x150.png'], [[121, 33], 'assets/images/resized/0006/3937/63937v1-max-250x250.png'], [[121, 33], 'assets/images/resized/0006/3937/63937v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'chairman of the board of directors', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': False, 'title': 'Chairman of the Board, Former President', 'person': {'first_name': 'Thomas', 'last_name': 'E. Pardum', 'permalink': 'thomas-e-pardum'}}, {'is_past': False, 'title': 'Former Chief Executive Officer', 'person': {'first_name': 'Kathleen', 'last_name': 'A. Cote', 'permalink': 'kathleen-a-cote'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Stephen', 'last_name': 'D. Milligan', 'permalink': 'stephen-d-milligan'}}, {'is_past': False, 'title': 'Vice President, Software Engineering, Branded Products', 'person': {'first_name': 'Gary', 'last_name': 'Hooper', 'permalink': 'gary-hooper'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Wolfgang', 'last_name': 'U. Nickl', 'permalink': 'wolfgang-u-nickl'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Henry', 'last_name': 'DeNero', 'permalink': 'henry-denero'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Michel', 'last_name': 'D. Lambert', 'permalink': 'michel-d-lambert'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Matthew', 'last_name': 'E. Massengill', 'permalink': 'matthew-e-massengill'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Masahiro', 'last_name': 'yamamura', 'permalink': 'masahiro-yamamura'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Peter', 'last_name': 'Behrendt', 'permalink': 'peter-behrendt'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Wiiliam', 'last_name': 'L. Kimsey', 'permalink': 'wiiliam-l-kimsey'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Len', 'last_name': 'J. Lauer', 'permalink': 'len-j-lauer'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Roger', 'last_name': 'H. Moore', 'permalink': 'roger-h-moore'}}, {'is_past': False, 'title': 'VP Business Development', 'person': {'first_name': 'Russ', 'last_name': 'Krapf', 'permalink': 'russ-krapf'}}, {'is_past': False, 'title': 'Engineering Management Positions', 'person': {'first_name': 'Nariman', 'last_name': 'Yousefi', 'permalink': 'nariman-yousefi'}}, {'is_past': True, 'title': 'chairman', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': True, 'title': 'CO-COO', 'person': {'first_name': 'Russell', 'last_name': 'Stern', 'permalink': 'russell-stern'}}, {'is_past': True, 'title': 'Senior Director OEM Sales', 'person': {'first_name': 'Michael', 'last_name': 'Ofstedahl', 'permalink': 'michael-ofstedahl-2'}}, {'is_past': True, 'title': 'Sr. Director, Materials', 'person': {'first_name': 'John', 'last_name': 'Warwick', 'permalink': 'john-warwick'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'John', 'last_name': 'Creelman', 'permalink': 'john-creelman'}}, {'is_past': True, 'title': 'manufacturing finance and financial planning positions', 'person': {'first_name': 'Michael', 'last_name': 'J.Rockenbach', 'permalink': 'michael-j-rockenbach-2'}}, {'is_past': True, 'title': 'Creative / Freelance', 'person': {'first_name': 'Vinit', 'last_name': 'Patil', 'permalink': 'vinit-patil'}}], 'competitions': [{'competitor': {'name': 'Clickfree', 'permalink': 'clickfree'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/02/skyera-closes-51-6m-financing.html', 'source_description': 'Skyera Closes $51.6M in Second Financing Round', 'raised_amount': 51600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 21, 'company': {'name': 'Skyera', 'permalink': 'skyera'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130807e987r1u1u&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130807e987r1u1u%26from%3dalert%26pid%3d32', 'source_description': 'Flash Storage Co. Tegile Nabs $35M ', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 7, 'company': {'name': 'Tegile Systems', 'permalink': 'tegile-systems'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2013/11/19/hightail-funding-series-e/', 'source_description': 'Hightail, The File-Sharing Service Formerly Called YouSendIt, Lands $34 Million In New Funding', 'raised_amount': 34000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 19, 'company': {'name': 'Hightail', 'permalink': 'hightail'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 685000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/virident_acquired_for_68_m_by_western_digital/s-0051251.html', 'source_description': 'Virident Acquired For $685M By Western Digital', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Virident Systems', 'permalink': 'virident-systems'}}], 'offices': [{'description': 'HQ', 'address1': '20511 Lake Forest Drive', 'address2': '', 'zip_code': '92630', 'city': 'Lake Forest', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 6497, 'description': \"WD® COMPLETES ACQUISITION OF HOYA'S MAGNETIC MEDIA OPERATIONS.\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 30, 'source_url': 'http://wdc.com/en/company/releases/PressRelease.asp?release=4904fd42-ee9c-4e62-b910-96febaf3da0e', 'source_text': '', 'source_description': \"WD® COMPLETES ACQUISITION OF HOYA'S MAGNETIC MEDIA OPERATIONS\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Western Digital', 'permalink': 'western-digital'}}, {'id': 6553, 'description': 'Fab plant bought by data-storing company.', 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.azcentral.com/community/northvalley/articles/2010/06/02/20100602microchip-plant-purchased.html', 'source_text': '', 'source_description': 'Fab plant bought by data-storing company', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Western Digital', 'permalink': 'western-digital'}}], 'ipo': {'valuation_amount': 9430000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:WDC'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 133], 'assets/images/resized/0006/4866/64866v1-max-150x150.jpg'], [[250, 223], 'assets/images/resized/0006/4866/64866v1-max-250x250.jpg'], [[450, 401], 'assets/images/resized/0006/4866/64866v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.facebook.com/WesternDigital', 'title': 'Facebook Page'}], 'partners': []}, {'_id': ObjectId('52cdef7f4bab8bd67529bf8d'), 'name': 'Real Goods Solar', 'permalink': 'real-goods-solar', 'crunchbase_url': 'http://www.crunchbase.com/company/real-goods-solar', 'homepage_url': 'http://www.realgoodssolar.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'realgoodssolar', 'category_code': 'cleantech', 'number_of_employees': None, 'founded_year': 1978, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'solar, solar-california, solar-colorado, solar-system-installation, sold-first-solar-panel, marin-solar, bay-area-solar-systems, solar-systems, high-quality', 'alias_list': '', 'email_address': 'solar@realgoods.com', 'phone_number': '18885072561', 'description': 'Solar Power Retailer', 'created_at': 'Mon Jun 15 20:34:36 UTC 2009', 'updated_at': 'Mon Aug 12 03:35:39 UTC 2013', 'overview': '

Real Goods Solar designs, sells and installs solar power for consumers.

', 'image': {'available_sizes': [[[150, 71], 'assets/images/resized/0004/8665/48665v5-max-150x150.jpg'], [[250, 118], 'assets/images/resized/0004/8665/48665v5-max-250x250.jpg'], [[450, 213], 'assets/images/resized/0004/8665/48665v5-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder and President', 'person': {'first_name': 'John', 'last_name': 'Schaeffer', 'permalink': 'john-schaeffer'}}, {'is_past': False, 'title': 'Vice President of Sales', 'person': {'first_name': 'Kent', 'last_name': 'Halliburton', 'permalink': 'kent-halliburton'}}, {'is_past': False, 'title': 'Executive Vice President of Operations', 'person': {'first_name': 'Scott', 'last_name': 'Carlson', 'permalink': 'scott-carlson-2'}}, {'is_past': False, 'title': 'Vice President, Marketing & Business Development', 'person': {'first_name': 'Joel', 'last_name': 'Kauffman', 'permalink': 'joel-kauffman'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Erik', 'last_name': 'Zech', 'permalink': 'erik-zech'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/press-release/real-goods-solar-to-acquire-mercury-solar-systems-a-premier-solar-solutions-provider-20130809-00253', 'source_description': 'Real Goods Solar to Acquire Mercury Solar Systems, a Premier Solar Solutions Provider', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Mercury solar systems', 'permalink': 'mercury-solar-systems'}}], 'offices': [{'description': 'Real Goods Solar', 'address1': '13771 South Highway 101', 'address2': '', 'zip_code': '', 'city': 'Hopland', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 38.872562, 'longitude': -123.044572}, {'description': 'Real Goods/Marin Solar', 'address1': '1163 East Francisco Blvd.', 'address2': '', 'zip_code': '94901', 'city': 'San Rafael', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.9569059, 'longitude': -122.5016533}, {'description': 'Real Goods/Carlson Solar', 'address1': '41690 Corporate Center Drive', 'address2': '', 'zip_code': '92562', 'city': 'Murrieta', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 33.5279274, 'longitude': -117.1793502}, {'description': 'Real Goods Solar', 'address1': '833 So. Boulder Rd', 'address2': '', 'zip_code': '80027', 'city': 'Louisville', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 39.988236, 'longitude': -105.157455}, {'description': 'Real Goods', 'address1': '1115 Thompson Ave 31', 'address2': '', 'zip_code': '95062', 'city': 'Santa Cruz', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 36.967958, 'longitude': -121.971606}], 'milestones': [], 'ipo': {'valuation_amount': 55000000, 'valuation_currency_code': 'USD', 'pub_year': 2008, 'pub_month': 5, 'pub_day': 8, 'stock_symbol': 'RSOL'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 100], 'assets/images/resized/0004/8664/48664v1-max-150x150.png'], [[250, 167], 'assets/images/resized/0004/8664/48664v1-max-250x250.png'], [[450, 301], 'assets/images/resized/0004/8664/48664v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 124], 'assets/images/resized/0009/3705/93705v2-max-150x150.jpg'], [[250, 207], 'assets/images/resized/0009/3705/93705v2-max-250x250.jpg'], [[450, 374], 'assets/images/resized/0009/3705/93705v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results13 = list(collection.find({\"$and\":\n", + " [{\"founded_year\": {\"$lt\": 2000}}, {\"ipo.valuation_amount\": {\"$gt\": 10000000}}]}))\n", + "\n", + "print(len(results13))\n", + "print(results13)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 14. All the companies that have been acquired after 2015, order by the acquisition amount, and retrieve only their `name` and `acquisiton` field." + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "180\n", + "[{'_id': ObjectId('52cdef7d4bab8bd675298b89'), 'name': 'LSI', 'acquisition': {'price_amount': 6600000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://dealbook.nytimes.com/2013/12/16/avago-to-buy-lsi-for-6-6-billion/?_r=0', 'source_description': 'Avago to Buy LSI for $6.6 Billion', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b183'), 'name': 'Sourcefire', 'acquisition': {'price_amount': 2700000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/23/cisco-acquires-cybersecurity-company-sourcefire-for-2-7b/', 'source_description': 'Cisco Acquires Cybersecurity Company Sourcefire For $2.7B', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 23, 'acquiring_company': {'name': 'Cisco', 'permalink': 'cisco'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299f6b'), 'name': 'ExactTarget', 'acquisition': {'price_amount': 2500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/04/with-exacttarget-acquisition-salesforce-com-has-spent-close-to-3-5-billion-to-get-into-the-chief-marketing-officers-suite/', 'source_description': 'With ExactTarget Acquisition, Salesforce.com Has Spent Close To $3.5 Billion To Get Into The Chief Marketing Officer’s Suite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 4, 'acquiring_company': {'name': 'Salesforce', 'permalink': 'salesforce'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae17'), 'name': 'Applied Systems', 'acquisition': {'price_amount': 1800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.insurancenetworking.com/news/Applied-systems-acquired-by-hellman-and-friedman-33455-1.html', 'source_description': 'Applied Systems to be Acquired by Hellman & Friedman', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 26, 'acquiring_company': {'name': 'Hellman & Friedman', 'permalink': 'hellman-friedman'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e3a'), 'name': 'Digital Insight', 'acquisition': {'price_amount': 1650000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/12/02/ncr-acquisition-idUSL4N0JH40M20131202', 'source_description': 'CORRECTED-NCR to buy mobile banking technology firm for $1.65 bln', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'NCR', 'permalink': 'ncr'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298619'), 'name': 'Responsys', 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://online.wsj.com/news/articles/SB10001424052702303773704579270080523815684', 'source_description': 'Oracle to Buy Responsys for $1.5 Billion', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 20, 'acquiring_company': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c280'), 'name': 'Pearl Therapeutics', 'acquisition': {'price_amount': 1150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/06/10/us-astrazeneca-pearl-idUSBRE95904U20130610?feedType=RSS&feedName=businessNews', 'source_description': 'AstraZeneca buys U.S. lung drug firm Pearl for up to $1.15 billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 10, 'acquiring_company': {'name': 'AstraZeneca', 'permalink': 'astrazeneca'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298051'), 'name': 'Tumblr', 'acquisition': {'price_amount': 1100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/20/its-official-yahoo-is-buying-tumblr-for-1-1b-promises-to-keep-it-independent/', 'source_description': 'It’s Official: Yahoo Is Buying Tumblr For $1.1B, Vows To Keep It Independent', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c04d'), 'name': 'Aragon Pharmaceuticals', 'acquisition': {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.firstwordpharma.com/node/1109025?tsid=28®ion_id=6', 'source_description': 'Johnson & Johnson boosts cancer drug pipeline with $1-billion deal to buy Aragon Pharmaceuticals ', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 17, 'acquiring_company': {'name': 'Johnson & Johnson', 'permalink': 'johnson-johnson'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529804c'), 'name': 'The Climate Corporation', 'acquisition': {'price_amount': 930000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/10/02/monsanto-acquires-weather-big-data-company-climate-corporation-for-930m/', 'source_description': 'Monsanto Acquires Weather Big Data Company Climate Corporation For $930M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'acquiring_company': {'name': 'Monsanto', 'permalink': 'monsanto'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995f0'), 'name': 'Axis', 'acquisition': {'price_amount': 865000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techinasia.com/malaysia-xl-axiata-buys-indonesia-axis/', 'source_description': 'Malaysia’s Axiata boosts Indonesia business with $865 million acquisition of AXIS', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'acquiring_company': {'name': 'Axiata', 'permalink': 'axiata'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529997a'), 'name': 'Axis', 'acquisition': {'price_amount': 865000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techinasia.com/malaysia-xl-axiata-buys-indonesia-axis/', 'source_description': 'Malaysia’s Axiata boosts Indonesia business with $865 million acquisition of AXIS', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'acquiring_company': {'name': 'Axiata', 'permalink': 'axiata'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ea'), 'name': 'Trusteer', 'acquisition': {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/15/ibm-buys-israelus-cybersecurity-specialist-trusteer-for-few-hundred-million-dollars/', 'source_description': 'IBM Buys Israel/US Cybersecurity Specialist Trusteer For Between $800M-$1B', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 15, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a951'), 'name': 'Virident Systems', 'acquisition': {'price_amount': 685000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/virident_acquired_for_68_m_by_western_digital/s-0051251.html', 'source_description': 'Virident Acquired For $685M By Western Digital', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'acquiring_company': {'name': 'Western Digital', 'permalink': 'western-digital'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299721'), 'name': 'Unilever', 'acquisition': {'price_amount': 575000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.njbiz.com/article/20131003/NJBIZ01/131009926/Pinnacle-closes-$575M-Wish-Bone-acquisition-from-Unilever&nocache=1?utm_content=buffera79f6&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pinnacle closes $575M Wish-Bone acquisition from Unilever', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'acquiring_company': {'name': 'Pinnacle Foods', 'permalink': 'pinnacle-foods'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299aab'), 'name': 'Unilever', 'acquisition': {'price_amount': 575000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.njbiz.com/article/20131003/NJBIZ01/131009926/Pinnacle-closes-$575M-Wish-Bone-acquisition-from-Unilever&nocache=1?utm_content=buffera79f6&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pinnacle closes $575M Wish-Bone acquisition from Unilever', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'acquiring_company': {'name': 'Pinnacle Foods', 'permalink': 'pinnacle-foods'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752997c3'), 'name': 'GE Healthcare', 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.socaltech.com/carefusion_acquires_ge_healthcare_division_for____m/s-0052439.html', 'source_description': 'CareFusion Acquires GE Healthcare Division For $500M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 18, 'acquiring_company': {'name': 'Carefusion', 'permalink': 'carefusion'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299b4d'), 'name': 'GE Healthcare', 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.socaltech.com/carefusion_acquires_ge_healthcare_division_for____m/s-0052439.html', 'source_description': 'CareFusion Acquires GE Healthcare Division For $500M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 18, 'acquiring_company': {'name': 'Carefusion', 'permalink': 'carefusion'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a482'), 'name': 'AAPT', 'acquisition': {'price_amount': 450000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://delimiter.com.au/2013/12/09/final-closure-tpg-buys-aapt-450m/', 'source_description': 'TPG buys AAPT for $450m', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'TPG Internet', 'permalink': 'tpg-internet'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529967a'), 'name': 'PPTV', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/report-suning-buy-pptv-400-million/', 'source_description': 'Report: Suning to buy PPTV for around $400 million', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'acquiring_company': {'name': 'Suning', 'permalink': 'suning'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a04'), 'name': 'PPTV', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/report-suning-buy-pptv-400-million/', 'source_description': 'Report: Suning to buy PPTV for around $400 million', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'acquiring_company': {'name': 'Suning', 'permalink': 'suning'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b4'), 'name': 'OptiMedica', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/news/2013/07/15/abbott-to-pay-up-to-400m-to-buy.html?ana=RSS&s=article_search&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+bizj_sanjose+%28Silicon+Valley+%2F+San+Jose+Business+Journal%29', 'source_description': 'Abbott to pay up to $400M to buy OptiMedica', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'acquiring_company': {'name': 'Abbott Labs', 'permalink': 'abbott'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b895'), 'name': 'Novaled', 'acquisition': {'price_amount': 347000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/08/09/samsung-to-acquire-german-oled-biz-novaled-for-347m/', 'source_description': 'Samsung to acquire German OLED biz Novaled for $347M', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'acquiring_company': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'acquisition': {'price_amount': 345000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/11/25/apple-buys-israeli-3d-sensor-outfit-primesense-for-a-reported-350m/', 'source_description': ' Apple buys Israeli 3D sensor outfit PrimeSense for a reported $350M ', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'acquisition': {'price_amount': 316000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pulse2.com/2013/05/18/accenture-buying-acquity-group-for-316-million-86190/', 'source_description': 'Accenture Plc (ACN) Acquires E-Commerce Company Acquity Group For $316 Million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 19, 'acquiring_company': {'name': 'Accenture', 'permalink': 'accenture'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bc72'), 'name': 'Topsy Labs', 'acquisition': {'price_amount': 200000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/02/apple-buys-topsy-for-a-reported-200m-could-use-social-signals-to-bolster-app-store-relevance/', 'source_description': 'Apple Buys Topsy For Price Reportedly North Of $200M, Could Use Social Signals To Bolster Siri, App Store Relevance', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752988c7'), 'name': 'Gracenote', 'acquisition': {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-12-23/tribune-to-buy-sony-s-gracenote-music-data-unit-for-170-million.html', 'source_description': ' Sony to Sell Gracenote Business to Tribune for $170 Million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 23, 'acquiring_company': {'name': 'Tribune Company', 'permalink': 'tribunecompany'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'acquisition': {'price_amount': 168000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/22/orange-acquired-dailymotion-for-168-million-by-buying-out-the-remaining-51-stake/', 'source_description': 'Orange Acquired Dailymotion For $168 Million By Buying Out Remaining 51% Stake [Update: Orange Confirms]', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 22, 'acquiring_company': {'name': 'Orange', 'permalink': 'orange'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'acquisition': {'price_amount': 155000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://canadianvcpe.com/2013/05/10/layer-7-to-be-acquired-by-ca-technologies-for-155-million/', 'source_description': 'Layer 7 to be acquired by CA Technologies for $155 million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'CA Technologies', 'permalink': 'ca'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529816c'), 'name': 'Goodreads', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.wsj.com/digits/2013/03/29/amazon-moves-toward-kindle-social-network-with-goodreads/', 'source_description': 'Amazon Moves Toward Kindle Social Network with Goodreads', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 29, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299606'), 'name': 'Voxeo', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://thenextweb.com/insider/2013/07/10/aspect-acquires-customer-service-software-company-voxeo-in-150-million-deal/?awesm=tnw.to_j0gKB&uid=a419a325421a175f131b543fab4ccbf9e603cd46&utm_source=Twitter&utm_medium=Spreadus&utm_campaign=social%20media', 'source_description': 'Aspect acquires customer service software company Voxeo in $150m deal', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'acquiring_company': {'name': 'Aspect Software', 'permalink': 'aspect-software'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299990'), 'name': 'Voxeo', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://thenextweb.com/insider/2013/07/10/aspect-acquires-customer-service-software-company-voxeo-in-150-million-deal/?awesm=tnw.to_j0gKB&uid=a419a325421a175f131b543fab4ccbf9e603cd46&utm_source=Twitter&utm_medium=Spreadus&utm_campaign=social%20media', 'source_description': 'Aspect acquires customer service software company Voxeo in $150m deal', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'acquiring_company': {'name': 'Aspect Software', 'permalink': 'aspect-software'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299730'), 'name': 'iWeb Technologies', 'acquisition': {'price_amount': 145000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thewhir.com/web-hosting-news/internap-acquires-montreal-web-hosting-provider-iweb', 'source_description': 'Internap Acquires Montreal Web Hosting Provider iWeb for $145M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 30, 'acquiring_company': {'name': 'Internap', 'permalink': 'internap'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299aba'), 'name': 'iWeb Technologies', 'acquisition': {'price_amount': 145000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thewhir.com/web-hosting-news/internap-acquires-montreal-web-hosting-provider-iweb', 'source_description': 'Internap Acquires Montreal Web Hosting Provider iWeb for $145M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 30, 'acquiring_company': {'name': 'Internap', 'permalink': 'internap'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ab55'), 'name': 'Vocalocity', 'acquisition': {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/atlanta/blog/atlantech/2013/10/vonage-picks-up-atlantas-vocalocity.html?ana=twt', 'source_description': \"Vonage picks up Atlanta's Vocalocity for $130M \", 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 10, 'acquiring_company': {'name': 'Vonage', 'permalink': 'vonage'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e55'), 'name': 'Channel Intelligence', 'acquisition': {'price_amount': 125000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/02/06/google-acquires-channel-intelligence-to-boost-product-recommendations-and-e-commer-with-users/', 'source_description': 'Google Acquires Channel Intelligence For $125M To Boost Product Referrals And E-Commerce With Users', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/31/mobile-banking-startup-mfoundry-sold-to-fis-for-120m/', 'source_description': 'Mobile Banking And Payment Startup mFoundry Sold To FIS For $120M On $165M Valuation', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'FIS', 'permalink': 'fis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/01/02/imation-buys-nexsan-for-120m-to-beef-up-its-enterprise-storage-business/', 'source_description': 'Imation Buys Nexsan For $120M To Beef Up Its SME Enterprise Storage Business', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 2, 'acquiring_company': {'name': 'Imation', 'permalink': 'imation'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b779'), 'name': 'N-able Technologies', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130521e95lssb3w&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130521e95lssb3w%26from%3dalert%26pid%3d32', 'source_description': ' SolarWinds to Buy N-Able Technologies for $120M ', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'acquiring_company': {'name': 'SolarWinds', 'permalink': 'solarwinds'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298dbf'), 'name': 'CyberCoders', 'acquisition': {'price_amount': 105000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.socaltech.com/onassignment_buys_cybercoders_for____m/s-0052607.html', 'source_description': 'OnAssignment Buys CyberCoders For $105M', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'On Assignment', 'permalink': 'on-assignment'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba81'), 'name': 'Arieso', 'acquisition': {'price_amount': 85000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/03/08/jdsu-buys-arieso-for-85m-in-cash-to-boost-its-mobile-network-business/', 'source_description': 'JDSU Buys Arieso For $85M In Cash To Boost Its Mobile Network Business', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 8, 'acquiring_company': {'name': 'JDS Uniphase Corporation', 'permalink': 'jds-uniphase-corporation'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a536'), 'name': 'Webedia', 'acquisition': {'price_amount': 70000000, 'price_currency_code': 'EUR', 'term_code': None, 'source_url': 'http://www.clipperton.net/transactions/webedia/', 'source_description': 'Webedia, one of the leading digital media groups in France, is acquired by Fimalac Group in a €70m+ transaction.', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 12, 'acquiring_company': {'name': 'Fimalac Group', 'permalink': 'fimalac-group'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a768'), 'name': 'Rhythm NewMedia', 'acquisition': {'price_amount': 65000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mediapost.com/publications/article/214672/blinkx-acquires-mobile-video-ad-platform-rhythm-ne.html', 'source_description': 'Blinkx Acquires Mobile Video Ad Platform Rhythm NewMedia', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'blinkx', 'permalink': 'blinkx'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bf89'), 'name': 'Estech', 'acquisition': {'price_amount': 60000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131219e9cjrgzyb&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131219e9cjrgzyb%26from%3dalert%26pid%3d32', 'source_description': ' AtriCure to Acquire VC-Backed Endoscopic Technologies in Up To $60M Deal ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'AtriCure', 'permalink': 'atricure'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a382'), 'name': 'Ascribe', 'acquisition': {'price_amount': 57500000, 'price_currency_code': 'GBP', 'term_code': 'cash_and_stock', 'source_url': 'http://www.insidermedia.com/insider/south-east/98476-', 'source_description': 'Ascribe acquired in £57.5m deal', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 13, 'acquiring_company': {'name': 'EMIS', 'permalink': 'emis'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c440'), 'name': 'Qumas', 'acquisition': {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siliconrepublic.com/business/item/35116-qumas-acquired-by-accelrys', 'source_description': 'Accelrys acquires Qumas in US$50m deal', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'Accelrys', 'permalink': 'accelrys'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297fe7'), 'name': 'Xobni', 'acquisition': {'price_amount': 48000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/news/2013/07/08/yahoos-xobni-deal-priced-at-48-million.html?ana=RSS&s=article_search&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+bizj_sanjose+%28Silicon+Valley+%2F+San+Jose+Business+Journal%29', 'source_description': \"Marissa Mayer's final price tag for Xobni: $48M, plus promises of stock awards\", 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299172'), 'name': 'Saffron Digital', 'acquisition': {'price_amount': 47000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/najafi-companies-owned-cinram-acquires-video-platform-firm-saffron-digital-222393711.html', 'source_description': ' Najafi Companies Owned Cinram Acquires Video Platform Firm Saffron Digital\\t', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'Cinram International', 'permalink': 'cinram-international'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad53'), 'name': 'Alverix', 'acquisition': {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://ir.safeguard.com/investor-relations/press-releases/press-release-details/2014/Safeguard-Scientifics-Partner-Company-Alverix-Acquired-by-BD/default.aspx', 'source_description': 'Safeguard Scientifics Partner Company Alverix Acquired by BD', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'Becton Dickinson', 'permalink': 'becton-dickinson'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298ee5'), 'name': 'Xerox', 'acquisition': {'price_amount': 32500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.webpronews.com/3d-systems-buys-a-chunk-of-xerox-for-32-5-million-2013-12', 'source_description': ' 3D Systems Buys A Chunk Of Xerox For $32.5 Million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 18, 'acquiring_company': {'name': '3D Systems', 'permalink': '3d-systems'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://allthingsd.com/20131216/viggle-tries-to-bulk-up-its-social-tv-business-by-buying-wetpaint/?mod=atdtweet', 'source_description': ' Viggle Tries to Bulk Up Its Social TV Business by Buying Wetpaint', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Viggle', 'permalink': 'viggle'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130708/equifax-buys-identity-protection-startup-trustedid-for-about-30-million/?mod=atdtweet', 'source_description': 'Equifax Buys Identity Protection Startup TrustedID for About $30 Million', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'Equifax', 'permalink': 'equifax'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e15'), 'name': 'Boxee', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/03/streaming-entertainment-startup-boxee-acquired-by-samsung-for-around-30m/', 'source_description': 'Streaming Entertainment Startup Boxee Acquired By Samsung For Around $30M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 3, 'acquiring_company': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b354'), 'name': 'CircuLite', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.njbiz.com/article/20131202/NJBIZ01/131209988/HeartWare-International-acquires-CircuLite-Inc-for-$30M?utm_content=buffer1b1b1&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'HeartWare International acquires CircuLite Inc. for $30M', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'HeartWare International', 'permalink': 'heartware-international'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c679'), 'name': 'Bump Technologies', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iphoneincanada.ca/news/google-discontinue-bump-flock-jan-2014/', 'source_description': ' Google to Discontinue Sharing App Bump and Flock on Jan. 31, 2014 ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 31, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba35'), 'name': 'Tell Me More', 'acquisition': {'price_amount': 28000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.tellmemore.com/Press-Releases/Rosetta-Stone-to-Acquire-Leading-International-Lan.aspx', 'source_description': 'Rosetta Stone to Acquire Leading International Language Company Tell Me More, Bolstering Position in Global B2B Market', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 11, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a1e9'), 'name': 'Inmarsat', 'acquisition': {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.bizjournals.com/houston/morning_call/2013/08/rignet-nabs-25m-acquisition.html', 'source_description': 'RigNet nabs $25M acquisition', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 2, 'acquiring_company': {'name': 'RigNet', 'permalink': 'rignet'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b2'), 'name': 'Sendmail', 'acquisition': {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131001e9a1uwekg&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131001e9a1uwekg%26from%3dalert%26pid%3d32', 'source_description': ' Proofpoint Acquires Sendmail for $23M in Cash ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'Proofpoint', 'permalink': 'proofpoint'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c5'), 'name': 'Luminus Devices', 'acquisition': {'price_amount': 22000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ledsmagazine.com/news/10/6/10', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 13, 'acquiring_company': {'name': 'Lightera', 'permalink': 'lightera'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529adad'), 'name': 'NextBus', 'acquisition': {'price_amount': 20600000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130127/nextbus-acquired-by-cubic-for-20-6m/', 'source_description': ' NextBus Acquired by Cubic for $20.6M', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 27, 'acquiring_company': {'name': 'Cubic Transportation Systems', 'permalink': 'cubic-transportation-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529aa84'), 'name': 'Sensory Networks', 'acquisition': {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/30/intel-to-buy-security-company-sensory-networks-for-20m/', 'source_description': 'Intel To Buy Security Company Sensory Networks For $20M', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'acquiring_company': {'name': 'Intel', 'permalink': 'intel'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298543'), 'name': 'SignalDemand', 'acquisition': {'price_amount': 13500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131218e9cipfjwq&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131218e9cipfjwq%26from%3dalert%26pid%3d32', 'source_description': ' Real-Time Data Company SignalDemand Acquired for $13.5M ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 18, 'acquiring_company': {'name': 'PROS Holdings', 'permalink': 'pros-holdings'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298763'), 'name': 'Vivity Labs', 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techvibes.com/blog/vivity-labs-acquired-by-rosetta-stone-2013-12-19', 'source_description': \"Vancouver's Vivity Labs Acquired by Rosetta Stone for $12 Million in Cash\", 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a8'), 'name': 'Better Place', 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://cleantechnica.com/2013/07/12/better-place-sold-to-sunrise-group-for-12-million/?utm_source=RSG+RSS&utm_medium=twitter&utm_campaign=Feed%3A+IM-cleantechnica+%28CleanTechnica%29', 'source_description': 'Better Place Sold To Sunrise Group For $12 Million', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 12, 'acquiring_company': {'name': 'Sunrise Group', 'permalink': 'sunrise-group'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298789'), 'name': 'MediaWhiz', 'acquisition': {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.globes.co.il/serveen/globes/docview.asp?did=1000812717&fid=1725', 'source_description': 'Matomy acquires US digital media agency MediaWhiz for $10m', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': None, 'acquiring_company': {'name': 'Matomy Media Group', 'permalink': 'matomy-media-group'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752989d3'), 'name': 'FuGen Solutions', 'acquisition': {'price_amount': 7500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.vccircle.com/news/others/2013/05/14/cloud-firm-8kmiles-buys-fugen-75m-looking-more-acquisitions-2013', 'source_description': 'Cloud firm 8KMiles buys FuGen for $7.5M; looking for more acquisitions in 2013', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': '8KMiles Software Services', 'permalink': '8kmiles-software-services'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529add9'), 'name': 'Advanced Mobile Solutions', 'acquisition': {'price_amount': 2500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businesswire.com/news/home/20130930006623/en/Autobytel-Acquires-Advanced-Mobile-Provide-Leading-Mobile', 'source_description': ' Autobytel Acquires Advanced Mobile to Provide Leading Mobile Capabilities to Automotive Manufacturers and Dealerships ', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'acquiring_company': {'name': 'Autobytel.com', 'permalink': 'autobytel-com-inc'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b4fe'), 'name': 'Republic Project', 'acquisition': {'price_amount': 1400000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/10/07/dg-acquires-republic-project/', 'source_description': 'DG Acquires Republic Project, A Google Ventures-Backed Ad Startup, For $1.4M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 7, 'acquiring_company': {'name': 'DG', 'permalink': 'dg'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a229'), 'name': 'Citizenside', 'acquisition': {'price_amount': 30000, 'price_currency_code': 'EUR', 'term_code': 'cash', 'source_url': 'http://www.citizenside.com/en/photos/spot-news/2013-07-11/81347/newzulu-com-acquires-citizenside-com.html#f=0/748313', 'source_description': 'Newzulu.com acquires Citizenside.com', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Newzulu, Inc.', 'permalink': 'newzulu-inc'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dbf'), 'name': 'blogTV', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/13/younow-buys-blogtv/', 'source_description': 'Live Social Video Network YouNow Acquires Streaming Service BlogTV', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 13, 'acquiring_company': {'name': 'YouNow', 'permalink': 'younow'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297ddd'), 'name': 'Mashery', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130417/intel-acquires-api-manager-mashery/', 'source_description': 'Intel Acquires API Manager Mashery', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 17, 'acquiring_company': {'name': 'Intel', 'permalink': 'intel'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e06'), 'name': 'adBrite', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/20/sitescout-acquires-ip-developed-by-defunct-ad-exchange-adbrite/', 'source_description': 'SiteScout Acquires IP Developed By Defunct Ad Exchange adBrite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 20, 'acquiring_company': {'name': 'Site Scout', 'permalink': 'site-scout'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e5a'), 'name': 'Grockit', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/07/kaplan-acquires-grockit-platform-test-prep-assets.html', 'source_description': 'Kaplan Acquires Grockit Platform And Test Prep Assets', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 31, 'acquiring_company': {'name': 'Kaplan', 'permalink': 'kaplan'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e5e'), 'name': 'Zenfolio', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://corporate.art.com/media/media_releases_20130107.html', 'source_description': 'Art.com Inc. Acquires Zenfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'Art.com', 'permalink': 'art-com'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e64'), 'name': 'LongJump', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/software-ag-acquires-cloud-platform-152000989.html', 'source_description': 'Software AG acquires Cloud Platform vendor LongJump', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f00'), 'name': 'Docstoc', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/04/when-good-things-happen-to-good-people/', 'source_description': 'Intuit Agrees To Acquire Small Business Document Startup Docstoc', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 4, 'acquiring_company': {'name': 'Intuit', 'permalink': 'intuit'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f3d'), 'name': 'LocaModa', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwired.com/press-release/monster-media-acquires-locamoda-plans-to-bring-social-media-and-dooh-closer-together-1815896.htm', 'source_description': 'LocaModa Acquired', 'acquired_year': 2013, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'monster media', 'permalink': 'monster-media'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f64'), 'name': 'Tutor', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/07/iac-acquires-tutor-com-to-add-an-education-string-to-its-consumer-web-portfolio/', 'source_description': 'IAC Acquires Tutor.com To Add An Education String To Its Consumer Web Portfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'IAC', 'permalink': 'iac'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/821099/telligent-acquires-zimbra-vmware', 'source_description': 'Telligent Acquires Zimbra from VMware', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'acquiring_company': {'name': 'Telligent Systems', 'permalink': 'telligentsystems'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298046'), 'name': 'AdReady', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131001e9a1q9mhi&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131001e9a1q9mhi%26from%3dalert%26pid%3d32', 'source_description': 'CPXi Acquires AdReady ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'CPXi', 'permalink': 'cpxi'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529805e'), 'name': 'JackBe', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130823e98nq2m0z&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130823e98nq2m0z%26from%3dalert%26pid%3d32', 'source_description': 'Software AG Acquires JackBe to Visualize Data ', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 22, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298067'), 'name': 'Rollbase', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://corporateblog.progress.com/2013/06/deep-pacific-introducing-platform-connected-apps/', 'source_description': 'Going Deep with Pacific – Introducing Our New Platform for Connected Apps', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 10, 'acquiring_company': {'name': 'Progress Software', 'permalink': 'progress-software'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529806b'), 'name': 'Marakana', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/13/twitter-buys-open-source-training-company-markana-to-power-new-twitter-university-for-engineers/', 'source_description': 'Twitter Buys Open Source Training Company Markana To Power New “Twitter University” For Engineers', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Twitter', 'permalink': 'twitter'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752980f7'), 'name': 'Mogreet', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/20/mobile-payment-startup-payvia-buys-mogreet-to-add-messaging-based-marketing-to-its-payment-platform/', 'source_description': 'Mobile Payment Startup Payvia Buys Mogreet To Add Messaging-Based Marketing To Its Payment Platform', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'payvia', 'permalink': 'payvia'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529812b'), 'name': 'MyPublisher', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130430005541/en/Shutterfly-Acquires-MyPublisher', 'source_description': 'Shutterfly Inc. Acquires MyPublisher', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 30, 'acquiring_company': {'name': 'Shutterfly', 'permalink': 'shutterfly'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298156'), 'name': 'Shipwire', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/28/ingram-micro-buys-shipwire-the-cloud-logistics-and-supply-chain-management-platform/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Ingram Micro Buys Shipwire, The Cloud Logistics And Supply Chain Management Platform', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 29, 'acquiring_company': {'name': 'Ingram Micro', 'permalink': 'ingram-micro'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752981c7'), 'name': 'Outspark', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://en.gamigo.com/corporate/2013/02/gamigo-acquires-the-north-american-license-for-fiesta-online-from-us-publisher-outspark/', 'source_description': 'gamigo acquires the North American license for Fiesta Online from US publisher Outspark', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 8, 'acquiring_company': {'name': 'gamigo', 'permalink': 'gamigo'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752981c9'), 'name': 'Livemocha', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/779341/rosetta-stone-acquires-online-language-company-livemocha', 'source_description': 'ROSETTA STONE ACQUIRES ONLINE LANGUAGE COMPANY LIVEMOCHA', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 2, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529839c'), 'name': 'Camlink', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 25, 'acquiring_company': {'name': 'Kinoflix', 'permalink': 'kinoflix'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529850d'), 'name': 'Rondee', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/12/yahoos-acquisition-spree-continues-with-conference-calling-startup-rondee/', 'source_description': 'Yahoo’s Shopping Spree Continues With Conference Calling Startup Rondee', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 13, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298538'), 'name': 'Star Analytics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/755307/ibm-acquire-star-analytics-inc-', 'source_description': 'IBM to Acquire Star Analytics, Inc.', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298548'), 'name': 'GasBuddy', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/767738/opis-acquires-gasbuddy', 'source_description': 'OPIS Acquires GasBuddy', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 1, 'acquiring_company': {'name': 'Oil Price Information Service (OPIS)', 'permalink': 'oil-price-information-service-opis'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298566'), 'name': 'Snipshot', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 1, 'acquiring_company': {'name': 'Ark', 'permalink': 'ark'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298643'), 'name': 'WebCollage', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://wiki.answers.com/page/press/18416524', 'source_description': 'Answers Acquires SaaS Platform Webcollage to Expand Product Offerings to Brands and Retailers', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'acquiring_company': {'name': 'Answers Corporation', 'permalink': 'answers'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298654'), 'name': 'Trendrr', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/28/twitter-continues-to-beef-up-its-social-tv-efforts-with-trendrr-acquisition/', 'source_description': 'With Trendrr Acquisition, Twitter Continues To Beef Up Its Social TV Efforts', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 28, 'acquiring_company': {'name': 'Twitter', 'permalink': 'twitter'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298662'), 'name': 'Weplay', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/21/teamsnap-online-sports-management-platform-acquires-weplay-for-an-undisclosed-amount/', 'source_description': 'TeamSnap Online Sports Management Platform Acquires Weplay For An Undisclosed Amount', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'acquiring_company': {'name': 'TeamSnap', 'permalink': 'teamsnap'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298936'), 'name': 'Virgin Media', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130205007048/en/Liberty-Global-Acquire-Virgin-Media', 'source_description': 'Liberty Global to Acquire Virgin Media', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 5, 'acquiring_company': {'name': 'Liberty Global', 'permalink': 'liberty-global'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a3b'), 'name': 'CitizenHawk', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.btobonline.com/article/20130911/MANAGEMENT07/309119997/wolters-kluwer-corporate-legal-services-buys-citizenhawk', 'source_description': 'btobonline.com', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 11, 'acquiring_company': {'name': 'Wolters Kluwer Corporate Legal Services', 'permalink': 'wolters-kluwer-corporate-legal-services'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a5f'), 'name': 'Infinia', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131121e9blpb28p&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131121e9blpb28p%26from%3dalert%26pid%3d32', 'source_description': 'Qnergy Acquires Infinia Assets ', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 21, 'acquiring_company': {'name': 'Qnergy', 'permalink': 'qnergy'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a62'), 'name': 'Newsweek', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/03/ibt-media-buys-newsweek/', 'source_description': 'IBT Media Buys Newsweek From IAC', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 5, 'acquiring_company': {'name': 'IBT Media', 'permalink': 'ibt-media-inc'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a80'), 'name': 'Wavemaker Software', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.cnbc.com/id/100699359?utm_content=buffer74a57&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pramati Acquires WaveMaker Assets from VMware', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 2, 'acquiring_company': {'name': 'Pramati Technologies', 'permalink': 'pramati-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298c0a'), 'name': 'Handmark', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/article/sprint-nextel-buys-handmark-and-its-subsidiary-onelouder-apps---quick-facts-20130520-00621', 'source_description': 'Sprint Nextel Buys Handmark And Its Subsidiary OneLouder Apps - Quick Facts', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'Sprint Nextel', 'permalink': 'sprint-nextel'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298d41'), 'name': 'Sense Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2014/01/06/yp-acquires-sense-networks/', 'source_description': 'In Its First Acquisition, YP Buys Mobile Ad Company Sense Networks', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 6, 'acquiring_company': {'name': 'YP', 'permalink': 'yp-2'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/02/techmedia-network-buys-bestofmedia-group-and-steps-up-content-commerce-integration/', 'source_description': 'TechMedia Network Buys Bestofmedia Group And Steps Up Content-Commerce Integration', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'TechMedia Network', 'permalink': 'techmedianetwork'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299076'), 'name': 'National Transcript Center', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/hobsons-acquires-national-transcript-center-from-pearson-215089041.html', 'source_description': 'Hobsons Acquires National Transcript Center from Pearson', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Hobsons', 'permalink': 'hobsons'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299189'), 'name': 'Digital Sandbox', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/haystax-technology-acquires-digital-sandbox-inc-203218531.html', 'source_description': 'Haystax Technology Acquires Digital Sandbox, Inc.', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 16, 'acquiring_company': {'name': 'Haystax Technology', 'permalink': 'haystax-technology'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752991f3'), 'name': 'Epocrates', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130107005767/en/athenahealth-Acquire-Mobile-Health-Leader-Epocrates', 'source_description': 'athenahealth to Acquire Mobile Health Leader Epocrates', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'athenahealth', 'permalink': 'athenahealth'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995b5'), 'name': 'CyOptics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130411/chip-maker-avago-to-buy-cyoptics-for-400-million/', 'source_description': 'Chip Maker Avago to Buy CyOptics for $400 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995ff'), 'name': 'travelmob', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/07/17/homeaway-buys-singapore-startup-travelmob-to-enter-asia-pacific/', 'source_description': 'HomeAway Buys Singapore Startup Travelmob To Enter Asia-Pacific', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 17, 'acquiring_company': {'name': 'HomeAway', 'permalink': 'homeaway'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752996ad'), 'name': 'Jumptap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/08/13/millennial-acquires-jumptap/', 'source_description': ' Main Event Page news Millennial Media To Acquire Mobile Ad Company Jumptap In ‘Predominantly’ Stock-Based Deal', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Millennial Media', 'permalink': 'millennial-media'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752996e6'), 'name': 'TradeCard', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.gtnexus.com/gt-nexus-and-tradecard-complete-merger-commence-operations-as-gt-nexus/', 'source_description': 'GT Nexus and TradeCard Complete Merger; Commence Operations as GT Nexus', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': None, 'acquiring_company': {'name': 'GT Nexus', 'permalink': 'gt-nexus'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299782'), 'name': 'Intela', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/09/xl-marketing-the-direct-marketing-company-co-founded-by-john-sculley-buys-uk-rival-intela/', 'source_description': 'XL Marketing, The Direct Marketing Company Co-Founded By John Sculley, Buys UK Rival Intela', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'XL Marketing', 'permalink': 'xl-marketing'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299884'), 'name': 'AUPEO!', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.aupeo.com/downloads/press/AUPEO_Panasonic_Purchase.pdf', 'source_description': 'Panasonic Acquires Audio Streaming Platform Provider Aupeo GmbH', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Panasonic', 'permalink': 'panasonic'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529989b'), 'name': 'TeleTech', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/827212/webmetro-announces-agreement-be-acquired-teletech', 'source_description': 'WebMetro Announces Agreement to be Acquired by TeleTech', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 30, 'acquiring_company': {'name': 'WebMetro', 'permalink': 'webmetro'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529993f'), 'name': 'CyOptics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130411/chip-maker-avago-to-buy-cyoptics-for-400-million/', 'source_description': 'Chip Maker Avago to Buy CyOptics for $400 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299989'), 'name': 'travelmob', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/07/17/homeaway-buys-singapore-startup-travelmob-to-enter-asia-pacific/', 'source_description': 'HomeAway Buys Singapore Startup Travelmob To Enter Asia-Pacific', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 17, 'acquiring_company': {'name': 'HomeAway', 'permalink': 'homeaway'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a37'), 'name': 'Jumptap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/08/13/millennial-acquires-jumptap/', 'source_description': ' Main Event Page news Millennial Media To Acquire Mobile Ad Company Jumptap In ‘Predominantly’ Stock-Based Deal', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Millennial Media', 'permalink': 'millennial-media'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a70'), 'name': 'TradeCard', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.gtnexus.com/gt-nexus-and-tradecard-complete-merger-commence-operations-as-gt-nexus/', 'source_description': 'GT Nexus and TradeCard Complete Merger; Commence Operations as GT Nexus', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': None, 'acquiring_company': {'name': 'GT Nexus', 'permalink': 'gt-nexus'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299b0c'), 'name': 'Intela', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/09/xl-marketing-the-direct-marketing-company-co-founded-by-john-sculley-buys-uk-rival-intela/', 'source_description': 'XL Marketing, The Direct Marketing Company Co-Founded By John Sculley, Buys UK Rival Intela', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'XL Marketing', 'permalink': 'xl-marketing'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c0e'), 'name': 'AUPEO!', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.aupeo.com/downloads/press/AUPEO_Panasonic_Purchase.pdf', 'source_description': 'Panasonic Acquires Audio Streaming Platform Provider Aupeo GmbH', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Panasonic', 'permalink': 'panasonic'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c25'), 'name': 'TeleTech', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/827212/webmetro-announces-agreement-be-acquired-teletech', 'source_description': 'WebMetro Announces Agreement to be Acquired by TeleTech', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 30, 'acquiring_company': {'name': 'WebMetro', 'permalink': 'webmetro'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c26'), 'name': 'nCircle Network Security', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/771440/tripwire-inc-acquires-ncircle', 'source_description': 'Tripwire, Inc. Acquires nCircle', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 11, 'acquiring_company': {'name': 'Tripwire', 'permalink': 'tripwire'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299cc8'), 'name': 'AfterNic', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/19/godaddy-buys-afternic-to-beef-up-its-domain-registry-marketplace/', 'source_description': 'GoDaddy Buys Afternic To Beef Up Its Domain Registry Marketplace', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 19, 'acquiring_company': {'name': 'GoDaddy', 'permalink': 'godaddy'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299d9d'), 'name': 'Twittertise', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/797118/italk-inc-signs-letter-intent-acquire-telecommunications-company-itg-inc-', 'source_description': 'ITALK INC. SIGNS LETTER OF INTENT TO ACQUIRE TELECOMMUNICATIONS COMPANY ITG INC.', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'iTalk', 'permalink': 'italk'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299dbe'), 'name': 'Wiggio', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/08/flush-with-80m-desire2learn-buys-anti-sharepoint-for-students-platform-wiggio-its-2nd-acquisition-in-2-months/', 'source_description': 'Flush With $80M, Desire2Learn Buys ‘Anti-Sharepoint For Students’ Platform Wiggio, Its 2nd Acquisition In 2 Months', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 8, 'acquiring_company': {'name': 'Desire2Learn', 'permalink': 'desire2learn'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299e12'), 'name': 'Current Communications Group', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/smart-grid-ma-watch-current-acquired-by-ormazabal', 'source_description': 'Smart Grid M&A Watch: Current Acquired by Ormazabal', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 7, 'acquiring_company': {'name': 'Ormazabal', 'permalink': 'ormazabal'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a053'), 'name': 'CarZen', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Company Source', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 13, 'acquiring_company': {'name': 'Liberty Mutual Insurance Company', 'permalink': 'liberty-mutual-insurance-company'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b8'), 'name': 'Games2Win', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nextbigwhat.com/games2win-acquires-backyard-game-factorry-297/', 'source_description': 'Games2win Acquires Delhi Based Game Studio Backyard Game FactorRy', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'acquiring_company': {'name': 'Backyard Game FactorRy', 'permalink': 'backyard-game-factorry'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a3'), 'name': 'Nullsoft', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2014/01/01/aol-sells-winamp-and-shoutcast-music-services-to-online-radio-aggregator-radionomy/', 'source_description': 'AOL Sells Winamp And Shoutcast Music Services To Online Radio Aggregator Radionomy', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': None, 'acquiring_company': {'name': 'Radionomy', 'permalink': 'radionomy'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a33a'), 'name': 'Geomagic', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/3d-systems-acquire-geomagic-141500289.html', 'source_description': '3D Systems to Acquire Geomagic', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 3, 'acquiring_company': {'name': '3D Systems', 'permalink': '3d-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a369'), 'name': 'Ptch', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20131203/yahoo-snags-dreamworks-incubated-mobile-video-app-ptch/?mod=atdtweet', 'source_description': 'Yahoo Snags DreamWorks-Incubated Mobile Video App Ptch', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a390'), 'name': 'Imagine Communications', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.fiercecable.com/press-releases/harris-broadcast-acquire-imagine-communications', 'source_description': 'Harris Broadcast to Acquire Imagine Communications', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 4, 'acquiring_company': {'name': 'Harris Broadcast', 'permalink': 'harris-broadcast'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a4b2'), 'name': 'HyperWeek', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://theknowledgetour.com/acquisition-en', 'source_description': 'Knowledge Plaza announcement', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 1, 'acquiring_company': {'name': 'Knowledge Plaza', 'permalink': 'knowledge-plaza'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ad'), 'name': 'hybris', 'acquisition': {'price_amount': None, 'price_currency_code': 'EUR', 'term_code': None, 'source_url': 'http://www.computing.co.uk/ctg/news/2273233/sap-to-acquire-swiss-ecommerce-firm-hybris-in-gbp650m-deal?utm_source=Twitter&utm_medium=Social&utm_campaign=Twitterfeed&utm_content=Computing_News', 'source_description': 'SAP to acquire Swiss e-commerce firm Hybris in £650m deal ', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 6, 'acquiring_company': {'name': 'SAP', 'permalink': 'sap'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a6e7'), 'name': 'WhosCall', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/korean-web-giant-naver-acquires-taiwanese-startup-gogolook/', 'source_description': 'Korean web giant Naver acquires makers of Whoscall', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'NHN Corp. (Naver)', 'permalink': 'naver'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a720'), 'name': 'Quantivo', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/aggregate-knowledge-acquires-quantivo-accelerate-130500235.html', 'source_description': 'Aggregate Knowledge Acquires Quantivo to Accelerate Platform Innovation', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'acquiring_company': {'name': 'Aggregate Knowledge', 'permalink': 'aggregateknowledge'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a741'), 'name': 'Arc90', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/24/sfx-buys-readability-developer-arc90-fame-house-and-tunezy-to-boost-its-electronic-and-live-dance-music-business/', 'source_description': 'SFX Buys Readability Developer Arc90, Fame House and Tunezy To Give Its Electronic Dance Music Business A Digital Content Spin', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 24, 'acquiring_company': {'name': 'SFX Entertainment', 'permalink': 'sfx-entertainment'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a84f'), 'name': 'Oberon Media', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iwin.com/corp/press/iwininc-announces-the-acquisition-of-the-assets-of-oberon-media.html', 'source_description': 'iWin Inc announces the acquisition of the assets of Oberon-Media (June 1, 2013)', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 1, 'acquiring_company': {'name': 'iWin', 'permalink': 'iwin'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a944'), 'name': 'DailyLit', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/13/plympton-acquires-dailylit/', 'source_description': 'Plympton Acquires DailyLit In A Serialized Fiction Team-Up, Susan Danziger And Albert Wenger Become Investors', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 13, 'acquiring_company': {'name': 'Plympton', 'permalink': 'plympton'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529aaaf'), 'name': 'Socialbomb', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/refinery29-acquires-socialbomb-2013-5', 'source_description': 'Fashion Media Company Refinery29 Acquires Fellow First Round Capital Startup, Socialbomb', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'acquiring_company': {'name': 'Refinery29', 'permalink': 'refinery29'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ab44'), 'name': 'ParAccel', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/25/actian-buys-amazon-funded-paraccel-as-april-buying-spree-continues/', 'source_description': 'Actian Buys Amazon-Funded ParAccel As April Buying Spree Continues', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 26, 'acquiring_company': {'name': 'Actian', 'permalink': 'actian'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0c'), 'name': 'VML', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-10-14/wpp-is-said-to-purchase-digital-ad-agency-in-chinese-expansion.html', 'source_description': 'WPP Purchases Digital-Advertising Agency in Chinese Expansion', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 15, 'acquiring_company': {'name': 'WPP', 'permalink': 'wpp'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7f'), 'name': 'HYFN', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/lin-media-acquires-majority-ownership-203000313.html', 'source_description': 'Yahoo! Finance', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 3, 'acquiring_company': {'name': 'LIN Media (TVL)', 'permalink': 'lin-media-tvl'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9e'), 'name': 'Neuralitic Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/23/guavus-buys-mobile-analytics-and-data-intelligence-company-neuralitic-systems/', 'source_description': 'Guavus Buys Mobile Analytics And Data Intelligence Company Neuralitic Systems', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 23, 'acquiring_company': {'name': 'Guavus', 'permalink': 'guavus'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae57'), 'name': 'Echopass Corporation', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.genesyslab.com/news-and-events/press-releases/genesys-to-acquire-echopass.aspx', 'source_description': 'Genesys To Acquire Echopass', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 8, 'acquiring_company': {'name': 'Genesys', 'permalink': 'genesys'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6e'), 'name': 'TRAFFIQ', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://globenewswire.com/news-release/2013/11/12/589158/10057462/en/Talus-Holdings-Acquires-Digital-Media-Company-TRAFFIQ.html', 'source_description': 'Talus Holdings Acquires Digital Media Company, TRAFFIQ', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 12, 'acquiring_company': {'name': 'Talus Holdings', 'permalink': 'talus-holdings-deleted'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af0d'), 'name': 'VirtuOz', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/10/in-our-inbox-a-memo-that-says-nuance-has-bought-virtuoz-to-ramp-up-its-enterprise-services/', 'source_description': 'Confirmed: Nuance Has Bought Virtual Assistant Specialist VirtuOz To Ramp Up Its Enterprise Services', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 10, 'acquiring_company': {'name': 'Nuance Communications', 'permalink': 'nuance'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af1f'), 'name': 'Shutl', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/ebay-acquires-uk-startup-shutl-to-change-the-ecommerce-game-with-one-hour-delivery/', 'source_description': 'eBay Acquires UK Startup Shutl To Change The Ecommerce Game With One Hour Delivery', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 22, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af3c'), 'name': 'Socialize', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/192001/sharethis-buys-socialize-inks-23m-series-c/', 'source_description': 'ShareThis Buys Socialize, Inks $23M Series C', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 20, 'acquiring_company': {'name': 'ShareThis', 'permalink': 'sharethis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af67'), 'name': 'Cadence Design Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techweekeurope.co.uk/news/arm-acquires-cadence-display-tech-126324?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'ARM Acquires Cadence Display Tech For Mobile Multimedia', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'ARM', 'permalink': 'arm'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529afe1'), 'name': 'TopCoder', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/17/appirio-buys-topcoder-to-add-more-crowdsourcing-and-500k-developers-and-designers-to-its-cloudspokes-network/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29&utm_content=crowdfund', 'source_description': 'Appirio Buys TopCoder To Add More Crowdsourcing, And 500K Developers And Designers, To Its CloudSpokes Network', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 17, 'acquiring_company': {'name': 'Appirio', 'permalink': 'appirio'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529afe6'), 'name': 'Strangeloop Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.radware.com/newsevents/pressrelease.aspx?id=1630971', 'source_description': 'Radware Acquires Strangeloop Networks, Leader in Web-Performance Optimization (WPO) Solutions for e-commerce and Enterprise Applications', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': None, 'acquiring_company': {'name': 'Radware', 'permalink': 'radware'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e6'), 'name': 'Enclarity', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/842676/lexisnexis-acquires-enclarity', 'source_description': 'LexisNexis® Acquires Enclarity', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 11, 'acquiring_company': {'name': 'LexisNexis', 'permalink': 'lexisnexis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b1f0'), 'name': 'Mendeley', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/08/confirmed-elsevier-has-bought-mendeley-for-69m-100m-to-expand-open-social-education-data-efforts/', 'source_description': 'Elsevier Has Bought Mendeley For $69M-$100M To Expand Its Open, Social Education Data Efforts', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Elsevier', 'permalink': 'elsevier'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b283'), 'name': 'Pixmac', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/05/pond5-acquires-pixmac/', 'source_description': 'Media Marketplace Pond5 Acquires Stock Photo Startup Pixmac To Expand Its International Presence', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 5, 'acquiring_company': {'name': 'Pond5', 'permalink': 'pond5'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b325'), 'name': 'Legacy Locker', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/11/20/passwordbox-acquires-digital-afterlife-service-legacy-locker/', 'source_description': 'PasswordBox Acquires Digital Afterlife Service Legacy Locker', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 20, 'acquiring_company': {'name': 'PasswordBox', 'permalink': 'passwordbox'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b651'), 'name': 'CheapCheapCheap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 18, 'acquiring_company': {'name': 'Undisclosed Strategic Corporate Investor', 'permalink': 'undisclosed-strategic-corporate-investor'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a8'), 'name': 'EnergyHub', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/alarm-com-announces-acquisition-energyhub-140000929.html', 'source_description': 'Alarm.com Announces Its Acquisition of EnergyHub', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'Alarm.com', 'permalink': 'alarm-com'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b74d'), 'name': 'Solera Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/blue-coat-buys-solera-networks-to-beef-up-in-big-data-security/', 'source_description': 'Blue Coat Buys Intel-Backed Solera Networks To Beef Up In Big Data, Encrypted Data Security', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'acquiring_company': {'name': 'Blue Coat Systems', 'permalink': 'blue-coat-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b80c'), 'name': 'Instapaper', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/25/betaworks-instapaper/', 'source_description': 'Digg Owner Betaworks Buys Instapaper To Go Big On Social Reading And Discovery', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'betaworks', 'permalink': 'betaworks'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c0'), 'name': 'Infochimps', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.xconomy.com/texas/2013/08/07/infochimps-ceo-cscs-purchase-plays-up-strengths-of-big-data/', 'source_description': 'Infochimps CEO: CSC’s Purchase Plays Up Strengths of Big Data, Cloud', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 7, 'acquiring_company': {'name': 'CSC', 'permalink': 'csc'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba51'), 'name': 'Wefollow', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/07/identity-platform-about-me-buys-wefollow-to-boost-interest-search/', 'source_description': 'Identity Platform about.me Buys Wefollow To Boost “Interest” Search', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 8, 'acquiring_company': {'name': 'about.me', 'permalink': 'aboutme'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba60'), 'name': 'Fotomoto', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.fotomoto.com/home/team', 'source_description': 'Meet the Team', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': None, 'acquiring_company': {'name': 'Bay Photo', 'permalink': 'bay-photo'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bbbe'), 'name': 'gdgt', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/02/13/aol-buys-gdgt-gives-you-a-chance-to-delete-your-account-if-this-freaks-you-out/', 'source_description': 'AOL buys GDGT to beef up engineering and design — gives you a chance to delete your account ', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 13, 'acquiring_company': {'name': 'AOL', 'permalink': 'aol'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bce0'), 'name': 'Zipcar', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/01/02/avis-buys-zipcar/', 'source_description': 'Car rental biz Avis to acquire Zipcar for $500M cash', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 2, 'acquiring_company': {'name': 'Avis', 'permalink': 'avis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bd2b'), 'name': 'Hara', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.verisae.com/verisae-acquires-hara-expands-its-energy-and-sustainability-software-platform/', 'source_description': 'Verisae Acquires Hara, Expands its Energy and Sustainability Software Platform', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 8, 'acquiring_company': {'name': 'Verisae', 'permalink': 'verisae'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bd67'), 'name': 'Urbancode', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/787778/ibm-acquires-urbancode-help-businesses-rapidly-deliver-mobile-cloud-big-data-and-social', 'source_description': 'IBM ACQUIRES URBANCODE TO HELP BUSINESSES RAPIDLY DELIVER MOBILE, CLOUD, BIG DATA AND SOCIAL SOFTWARE', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 22, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bd99'), 'name': 'Blip', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/21/blip-maker-studios/', 'source_description': 'Maker Studios In Deal To Buy Blip As It Works To Reach More Screens', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 21, 'acquiring_company': {'name': 'Maker Studios', 'permalink': 'maker-studios'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bfac'), 'name': 'Bolsa de Mulher', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/batanga-media-announces-the-acquisition-of-leading-brazilian-womens-lifestyle-publisher-bolsa-de-mulher-191990361.html', 'source_description': \"Batanga Media Announces the Acquisition of Leading Brazilian Women's Lifestyle Publisher Bolsa De Mulher\", 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 20, 'acquiring_company': {'name': 'Batanga Media', 'permalink': 'batanga'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c0d0'), 'name': 'UTOPY', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/01/29/ca-genesys-idUSnBw5KGqSBa+136+BSW20130129', 'source_description': 'Genesys Agrees to Acquire UTOPY in a Deal that Transforms Customer Service with Actionable Customer Interaction Analytics', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'acquiring_company': {'name': 'Genesys', 'permalink': 'genesys'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c141'), 'name': 'Makani Power', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/google-x-acquires-makani-power-and-its-airborne-wind-turbines/', 'source_description': 'Google X Acquires Makani Power And Its Airborne Wind Turbines', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'acquiring_company': {'name': 'Google[x]', 'permalink': 'google-x'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ca'), 'name': 'Enpirion', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://evertiq.com/news/24375', 'source_description': 'Altera acquires Enpirion', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': 'Altera', 'permalink': 'altera'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ce'), 'name': 'Whitevector', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.m-brain.com/news/m-brain-has-acquired-social-media-monitoring-company-whitevector-oy/', 'source_description': 'M-Brain acquires Whitevector', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': None, 'acquiring_company': {'name': 'M-Brain', 'permalink': 'm-brain'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c285'), 'name': 'Aveksa', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/emc-acquires-aveksa-inc-leading-provider-of-business-driven-identity-and-access-management-solutions-2013-07-08', 'source_description': 'Aveksa Joins RSA Security Division to Help Transform Authentication and Identity Management Across Enterprise, Mobile and Cloud Environments', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'EMC', 'permalink': 'emc'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b2'), 'name': 'Antenna Software', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131011e9abo2pao&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131011e9abo2pao%26from%3dalert%26pid%3d32', 'source_description': 'Pegasystems Acquires Mobile-App Tools Maker Antenna Software, a Dot-Com Survivor ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 11, 'acquiring_company': {'name': 'Pegasystems', 'permalink': 'pegasystems'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://streambase.typepad.com/streambase_stream_process/2013/06/mark-palmer-our-ceo-announces-the-acquisition-of-streambase-systems-by-tibco-software-.html', 'source_description': 'Mark Palmer, our CEO, announces the acquisition of StreamBase Systems by TIBCO Software', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 11, 'acquiring_company': {'name': 'TIBCO Software', 'permalink': 'tibco-software-inc'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f1'), 'name': 'SoftLayer', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-06-04/ibm-to-acquire-cloud-computing-provider-softlayer-technologies.html', 'source_description': ' IBM to Buy Cloud-Computing Firm SoftLayer for $2 Billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ee'), 'name': 'Liquavista', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/05/13/amazon-acquires-samsung-color-display-unit-liquavista/', 'source_description': 'Amazon acquires Samsung color display unit Liquavista', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c572'), 'name': 'Acme Packet', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/184807/oracle-acquire-acme-packet/', 'source_description': 'Oracle to Acquire Acme Packet', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 4, 'acquiring_company': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ae'), 'name': 'Aspera', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/19/ibm-buys-aspera-a-file-transfer-company-that-counts-apple-and-netflix-as-customers/', 'source_description': 'IBM Buys Aspera, A File Transfer Company That Counts Apple And Netflix As Customers', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}]\n" + ] + } + ], + "source": [ + "# NOTE: There are no companies with acquisition.acquired year later than 2015. For practice purposes\n", + "# I've searched companies acquired after 2013\n", + "\n", + "results14 = list(collection.find({\"acquisition.acquired_year\": \n", + " {\"$gt\": 2012}}, {\"name\": 1, \"acquisition\": 1}).sort(\"acquisition.price_amount\",-1))\n", + "\n", + "print(len(results14))\n", + "print(results14)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 15. Order the companies by their `founded year`, retrieving only their `name` and `founded year`." + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297e8f'), 'name': 'Alstrasoft', 'founded_year': 1800}, {'_id': ObjectId('52cdef7e4bab8bd67529b1bc'), 'name': 'US Army', 'founded_year': 1800}, {'_id': ObjectId('52cdef7d4bab8bd675298b5a'), 'name': 'SmallWorlds', 'founded_year': 1800}, {'_id': ObjectId('52cdef7f4bab8bd67529c453'), 'name': 'DuPont', 'founded_year': 1802}, {'_id': ObjectId('52cdef7e4bab8bd67529ac9a'), 'name': 'Bachmann Industries', 'founded_year': 1833}, {'_id': ObjectId('52cdef7d4bab8bd675299360'), 'name': 'McKesson', 'founded_year': 1833}, {'_id': ObjectId('52cdef7d4bab8bd675298d67'), 'name': 'Bertelsmann', 'founded_year': 1835}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e2'), 'name': 'Accuity', 'founded_year': 1836}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e1'), 'name': 'CENTRA', 'founded_year': 1839}, {'_id': ObjectId('52cdef7d4bab8bd6752996fb'), 'name': 'VideoSurf', 'founded_year': 1840}, {'_id': ObjectId('52cdef7c4bab8bd675298140'), 'name': 'WeGame', 'founded_year': 1840}, {'_id': ObjectId('52cdef7d4bab8bd675299a85'), 'name': 'VideoSurf', 'founded_year': 1840}, {'_id': ObjectId('52cdef7d4bab8bd675298a13'), 'name': 'The Economist Group', 'founded_year': 1843}, {'_id': ObjectId('52cdef7e4bab8bd67529b235'), 'name': 'Pearson', 'founded_year': 1844}, {'_id': ObjectId('52cdef7c4bab8bd6752987e2'), 'name': 'Associated Press', 'founded_year': 1846}, {'_id': ObjectId('52cdef7e4bab8bd67529b1c7'), 'name': 'Beloit College', 'founded_year': 1846}, {'_id': ObjectId('52cdef7f4bab8bd67529c2bd'), 'name': 'Stiefel', 'founded_year': 1847}, {'_id': ObjectId('52cdef7d4bab8bd67529941a'), 'name': 'Siemens', 'founded_year': 1847}, {'_id': ObjectId('52cdef7e4bab8bd67529a789'), 'name': 'Pfizer', 'founded_year': 1848}, {'_id': ObjectId('52cdef7d4bab8bd67529a001'), 'name': 'Corning', 'founded_year': 1851}, {'_id': ObjectId('52cdef7c4bab8bd675298316'), 'name': 'Nykredit Realkredit', 'founded_year': 1851}, {'_id': ObjectId('52cdef7e4bab8bd67529b39e'), 'name': 'Leucadia National', 'founded_year': 1854}, {'_id': ObjectId('52cdef7d4bab8bd675298e54'), 'name': 'Louis Vuitton', 'founded_year': 1854}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e2'), 'name': 'The McClatchy Company', 'founded_year': 1857}, {'_id': ObjectId('52cdef7d4bab8bd6752990cf'), 'name': 'University of Washington', 'founded_year': 1861}, {'_id': ObjectId('52cdef7f4bab8bd67529c274'), 'name': 'Athenix', 'founded_year': 1863}, {'_id': ObjectId('52cdef7c4bab8bd675297fc2'), 'name': 'Nokia', 'founded_year': 1865}, {'_id': ObjectId('52cdef7f4bab8bd67529c57a'), 'name': 'Cornell University', 'founded_year': 1865}, {'_id': ObjectId('52cdef7e4bab8bd67529b93b'), 'name': 'Millage, Inc', 'founded_year': 1867}, {'_id': ObjectId('52cdef7f4bab8bd67529c0f5'), 'name': 'Scotts Miracle-Gro', 'founded_year': 1868}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d8'), 'name': 'La Nacion', 'founded_year': 1870}, {'_id': ObjectId('52cdef7d4bab8bd67529a162'), 'name': 'Chevron', 'founded_year': 1879}, {'_id': ObjectId('52cdef7e4bab8bd67529a9e4'), 'name': 'SingTel', 'founded_year': 1879}, {'_id': ObjectId('52cdef7f4bab8bd67529c22d'), 'name': 'Elsevier', 'founded_year': 1880}, {'_id': ObjectId('52cdef7f4bab8bd67529c429'), 'name': 'University of Southern California', 'founded_year': 1880}, {'_id': ObjectId('52cdef7c4bab8bd67529834c'), 'name': 'Los Angeles Times Media Group', 'founded_year': 1881}, {'_id': ObjectId('52cdef7d4bab8bd675299471'), 'name': 'Financial Models Co', 'founded_year': 1883}, {'_id': ObjectId('52cdef7d4bab8bd67529a023'), 'name': 'Telenor', 'founded_year': 1885}, {'_id': ObjectId('52cdef7e4bab8bd67529a930'), 'name': 'Bristol-Myers Squibb', 'founded_year': 1887}, {'_id': ObjectId('52cdef7d4bab8bd67529a0fb'), 'name': 'McGraw-Hill Companies', 'founded_year': 1888}, {'_id': ObjectId('52cdef7c4bab8bd6752983cb'), 'name': 'National Geographic', 'founded_year': 1888}, {'_id': ObjectId('52cdef7d4bab8bd675298a61'), 'name': 'Financial Times', 'founded_year': 1888}, {'_id': ObjectId('52cdef7c4bab8bd675297e49'), 'name': 'Nintendo', 'founded_year': 1889}, {'_id': ObjectId('52cdef7e4bab8bd67529ab76'), 'name': 'Wall Street Journal', 'founded_year': 1889}, {'_id': ObjectId('52cdef7d4bab8bd675298e22'), 'name': 'Harris', 'founded_year': 1890}, {'_id': ObjectId('52cdef7c4bab8bd67529848f'), 'name': 'Teliasonera', 'founded_year': 1890}, {'_id': ObjectId('52cdef7c4bab8bd67529821c'), 'name': 'General Electric', 'founded_year': 1890}, {'_id': ObjectId('52cdef7d4bab8bd675299f99'), 'name': 'Cision', 'founded_year': 1892}, {'_id': ObjectId('52cdef7d4bab8bd675298e2f'), 'name': 'Waste Management', 'founded_year': 1894}, {'_id': ObjectId('52cdef7c4bab8bd67529856a'), 'name': 'IBM', 'founded_year': 1896}, {'_id': ObjectId('52cdef7e4bab8bd67529a937'), 'name': 'Becton Dickinson', 'founded_year': 1897}, {'_id': ObjectId('52cdef7e4bab8bd67529b369'), 'name': 'Knorr-Bremse AG', 'founded_year': 1897}, {'_id': ObjectId('52cdef7d4bab8bd675299696'), 'name': 'Thomas Publishing', 'founded_year': 1898}, {'_id': ObjectId('52cdef7d4bab8bd675298924'), 'name': 'Cox Enterprises', 'founded_year': 1898}, {'_id': ObjectId('52cdef7d4bab8bd675299a20'), 'name': 'Thomas Publishing', 'founded_year': 1898}, {'_id': ObjectId('52cdef7c4bab8bd6752985cc'), 'name': 'Alcatel-Lucent', 'founded_year': 1898}, {'_id': ObjectId('52cdef7c4bab8bd6752985ae'), 'name': 'NEC', 'founded_year': 1899}, {'_id': ObjectId('52cdef7d4bab8bd6752990d2'), 'name': 'Deloitte', 'founded_year': 1900}, {'_id': ObjectId('52cdef7f4bab8bd67529c465'), 'name': 'Osram Sylvania', 'founded_year': 1901}, {'_id': ObjectId('52cdef7d4bab8bd67529a066'), 'name': 'Solutia', 'founded_year': 1901}, {'_id': ObjectId('52cdef7d4bab8bd675298b6f'), 'name': 'Dentsu', 'founded_year': 1901}, {'_id': ObjectId('52cdef7e4bab8bd67529b3fd'), 'name': '3M', 'founded_year': 1902}, {'_id': ObjectId('52cdef7e4bab8bd67529a455'), 'name': 'Interpublic Group', 'founded_year': 1902}, {'_id': ObjectId('52cdef7c4bab8bd6752987bc'), 'name': 'Meredith Corporation', 'founded_year': 1902}, {'_id': ObjectId('52cdef7d4bab8bd675299d31'), 'name': 'Ford', 'founded_year': 1903}, {'_id': ObjectId('52cdef7e4bab8bd67529bc6c'), 'name': 'Gottschalks', 'founded_year': 1904}, {'_id': ObjectId('52cdef7d4bab8bd675298ee5'), 'name': 'Xerox', 'founded_year': 1906}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fa'), 'name': 'SmeadSoft', 'founded_year': 1906}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ec'), 'name': 'Shell', 'founded_year': 1907}, {'_id': ObjectId('52cdef7f4bab8bd67529c419'), 'name': 'PA SportsTicker', 'founded_year': 1909}, {'_id': ObjectId('52cdef7e4bab8bd67529bb72'), 'name': 'Acme Scale Systems', 'founded_year': 1909}, {'_id': ObjectId('52cdef7e4bab8bd67529a83d'), 'name': 'Hallmark', 'founded_year': 1910}, {'_id': ObjectId('52cdef7f4bab8bd67529bf11'), 'name': 'Fluor Corporation', 'founded_year': 1912}, {'_id': ObjectId('52cdef7c4bab8bd6752982fe'), 'name': 'Paramount Pictures', 'founded_year': 1912}, {'_id': ObjectId('52cdef7d4bab8bd675298fc0'), 'name': 'Nortel Networks', 'founded_year': 1914}, {'_id': ObjectId('52cdef7d4bab8bd675299156'), 'name': 'Safeway', 'founded_year': 1915}, {'_id': ObjectId('52cdef7e4bab8bd67529b787'), 'name': 'Naspers', 'founded_year': 1915}, {'_id': ObjectId('52cdef7e4bab8bd67529a922'), 'name': 'Technicolor', 'founded_year': 1915}, {'_id': ObjectId('52cdef7d4bab8bd675298b27'), 'name': 'Panasonic', 'founded_year': 1918}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b3'), 'name': 'Sumitomo Corporation', 'founded_year': 1919}, {'_id': ObjectId('52cdef7d4bab8bd67529912a'), 'name': 'GCHQ', 'founded_year': 1919}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b6'), 'name': 'DuBois', 'founded_year': 1920}, {'_id': ObjectId('52cdef7e4bab8bd67529b3f2'), 'name': 'Adidas', 'founded_year': 1920}, {'_id': ObjectId('52cdef7d4bab8bd675299c7c'), 'name': 'NFL', 'founded_year': 1920}, {'_id': ObjectId('52cdef7d4bab8bd675299bc3'), 'name': 'MItsubishi Electric', 'founded_year': 1921}, {'_id': ObjectId('52cdef7f4bab8bd67529c00c'), 'name': 'Enersis', 'founded_year': 1921}, {'_id': ObjectId('52cdef7f4bab8bd67529beb1'), 'name': \"See's Candies\", 'founded_year': 1921}, {'_id': ObjectId('52cdef7d4bab8bd675299839'), 'name': 'MItsubishi Electric', 'founded_year': 1921}, {'_id': ObjectId('52cdef7e4bab8bd67529afd6'), 'name': 'USAA', 'founded_year': 1922}, {'_id': ObjectId('52cdef7c4bab8bd675298374'), 'name': 'BBC', 'founded_year': 1922}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'founded_year': 1922}, {'_id': ObjectId('52cdef7d4bab8bd67529903e'), 'name': 'Raytheon', 'founded_year': 1922}, {'_id': ObjectId('52cdef7e4bab8bd67529b9a3'), 'name': 'EFJohnson Technologies', 'founded_year': 1923}, {'_id': ObjectId('52cdef7e4bab8bd67529b85e'), 'name': 'ACNielsen', 'founded_year': 1923}, {'_id': ObjectId('52cdef7c4bab8bd675297e8e'), 'name': 'The Walt Disney Company', 'founded_year': 1923}, {'_id': ObjectId('52cdef7e4bab8bd67529bbf5'), 'name': 'Sanistal', 'founded_year': 1923}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d6'), 'name': 'Telefonica', 'founded_year': 1924}, {'_id': ObjectId('52cdef7e4bab8bd67529b476'), 'name': 'Random House', 'founded_year': 1925}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a0'), 'name': 'Publicis Groupe', 'founded_year': 1926}, {'_id': ObjectId('52cdef7e4bab8bd67529b375'), 'name': 'Schlumberger', 'founded_year': 1926}]\n" + ] + } + ], + "source": [ + "# NOTE: Results hae been limited to 100 for memory purposes\n", + "\n", + "results15 = list(collection.find({\"founded_year\": {\"$ne\": None}}, \n", + " {\"name\": 1, \"founded_year\": 1}).sort(\"founded_year\", 1).limit(100))\n", + "\n", + "print(results15)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 16. All the companies that have been founded on the first seven days of the month, including the seventh. Sort them by their `aquisition price` descendently. Limit the search to 10 documents." + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd6752989a1'), 'name': 'Netscape', 'permalink': 'netscape', 'crunchbase_url': 'http://www.crunchbase.com/company/netscape', 'homepage_url': 'http://netscape.aol.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1994, 'founded_month': 4, 'founded_day': 4, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue May 06 00:27:28 UTC 2008', 'updated_at': 'Thu Nov 14 00:57:06 UTC 2013', 'overview': '

Netscape Communications Corporation offers development, marketing, sale, and support of enterprise software solutions. Its products include e-commerce infrastructure and e-commerce applications targeted primarily at corporate intranets and extranets, and Internet. The company was formerly known as Mosaic Communications Corporation and changed the name to Netscape Communications Corporation in November, 1994. Netscape Communications Corporation was founded in 1994 and is based in Mountain View, California. Netscape Communications Corporation operates as a subsidiary of AOL Inc.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0002/7667/27667v1-max-150x150.png'], [[200, 54], 'assets/images/resized/0002/7667/27667v1-max-250x250.png'], [[200, 54], 'assets/images/resized/0002/7667/27667v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'Dr.', 'last_name': 'Taher Elgamal', 'permalink': 'dr-taher-elgamal'}}, {'is_past': False, 'title': 'Senior VP Sales and Service', 'person': {'first_name': 'Todd', 'last_name': 'Rulon-Miller', 'permalink': 'todd-rulon-miller'}}, {'is_past': False, 'title': 'Vice President and General Manager', 'person': {'first_name': 'Keng', 'last_name': 'Lim', 'permalink': 'keng-lim'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Andy', 'last_name': 'Han', 'permalink': 'andy-han'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': False, 'title': 'Director of Enterprise Applications', 'person': {'first_name': 'Vishi', 'last_name': 'Iyer', 'permalink': 'vishi-iyer'}}, {'is_past': False, 'title': 'Principal Engineer,', 'person': {'first_name': 'Chris', 'last_name': 'Waterson', 'permalink': 'chris-waterson'}}, {'is_past': True, 'title': 'Co - Founder', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Vidur', 'last_name': 'Apparap', 'permalink': 'vidur-apparap'}}, {'is_past': True, 'title': 'CTO, Server Product Division', 'person': {'first_name': 'Tim', 'last_name': 'Howes', 'permalink': 'tim-howes'}}, {'is_past': True, 'title': 'Vice President of Strategic Planning', 'person': {'first_name': 'John', 'last_name': 'Bruggeman', 'permalink': 'john-bruggeman'}}, {'is_past': True, 'title': 'Senior VP of Integrated Applications', 'person': {'first_name': 'Jim', 'last_name': 'Sha', 'permalink': 'jim-sha'}}, {'is_past': True, 'title': 'General Manger & VP EMEA', 'person': {'first_name': 'Didier', 'last_name': 'Bench', 'permalink': 'didier-bench'}}, {'is_past': True, 'title': 'VP, Channel and Developer Relations', 'person': {'first_name': 'Daniel', 'last_name': 'Shader', 'permalink': 'daniel-shader'}}, {'is_past': True, 'title': 'Sr. Vice President', 'person': {'first_name': 'Rick', 'last_name': 'Schell', 'permalink': 'rick-schell'}}, {'is_past': True, 'title': 'Senior Vice President, Engineering', 'person': {'first_name': 'Debby', 'last_name': 'Meredith', 'permalink': 'debby-meredith'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'David', 'last_name': 'Weiden', 'permalink': 'david-weiden'}}, {'is_past': True, 'title': 'SVP & GM Browser Products Division', 'person': {'first_name': 'Bob', 'last_name': 'Lisbonne', 'permalink': 'bob-lisbonne'}}, {'is_past': True, 'title': 'VP & GM Directory and Security', 'person': {'first_name': 'Claire', 'last_name': 'Hough', 'permalink': 'claire-hough'}}, {'is_past': True, 'title': 'VP, Online Content Programming', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP of Human Resources', 'person': {'first_name': 'Margie', 'last_name': 'Mader-Clark', 'permalink': 'margie-mader-clark'}}, {'is_past': True, 'title': 'VP Worldwide Sales and Marketing (Actra Joint Venture)', 'person': {'first_name': 'Ray', 'last_name': 'Rike', 'permalink': 'ray-rike'}}, {'is_past': True, 'title': 'Various VP Level Engineering Positions', 'person': {'first_name': 'Ira', 'last_name': 'Sharfglass', 'permalink': 'ira-sharfglass'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Ben', 'last_name': 'Horowitz', 'permalink': 'ben-horowitz'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Ammiel', 'last_name': 'Kamon', 'permalink': 'ammiel-kamon'}}, {'is_past': True, 'title': 'Vice President, Enterprise Hosted Services', 'person': {'first_name': 'Joel', 'last_name': 'Pulliam', 'permalink': 'joel-pulliam'}}, {'is_past': True, 'title': 'SVP/GM Application Products Division', 'person': {'first_name': 'Steve', 'last_name': 'Savignano', 'permalink': 'steve-savignano'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Mike', 'last_name': 'McCue', 'permalink': 'mike-mccue'}}, {'is_past': True, 'title': 'VP, Business Operations', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Rich', 'last_name': 'Skrenta', 'permalink': 'rich-skrenta'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': True, 'title': 'Principal UI Designer', 'person': {'first_name': 'Jim', 'last_name': 'Lane', 'permalink': 'jim-lane'}}, {'is_past': True, 'title': 'DMOZ Business Development', 'person': {'first_name': 'Jeremy', 'last_name': 'Wenokur', 'permalink': 'jeremy-wenokur'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'European Sales Director', 'person': {'first_name': 'Chris', 'last_name': 'Zaharias', 'permalink': 'chris-zaharias'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Micki', 'last_name': 'Seibel', 'permalink': 'micki-seibel'}}, {'is_past': True, 'title': 'Managing Director UK, Ireland & South Africa', 'person': {'first_name': 'Stephen', 'last_name': 'Voller', 'permalink': 'stephen-voller'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jim', 'last_name': 'Bankoff', 'permalink': 'jim-bankoff'}}, {'is_past': True, 'title': 'Manager & Architect', 'person': {'first_name': 'In', 'last_name': 'Sik Rhee', 'permalink': 'in-sik-rhee'}}, {'is_past': True, 'title': 'Northeast Practice Manager', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Abrams', 'permalink': 'jonathan-abrams'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'Interaction Designer', 'person': {'first_name': 'Irene', 'last_name': 'Au', 'permalink': 'irene-au'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tim', 'last_name': 'Roberts', 'permalink': 'tim-roberts'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Lloyd', 'last_name': 'Tabb', 'permalink': 'lloyd-tabb'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Mike', 'last_name': 'Lenz', 'permalink': 'mike-lenz'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Chris', 'last_name': 'Tolles', 'permalink': 'chris-tolles'}}, {'is_past': True, 'title': 'Corporate Counsel', 'person': {'first_name': 'David', 'last_name': 'Mandelbrot', 'permalink': 'david-mandelbrot'}}, {'is_past': True, 'title': 'Practice Head Professional Services, Western US', 'person': {'first_name': 'Jim', 'last_name': 'Schinella', 'permalink': 'jim-schinella'}}, {'is_past': True, 'title': 'Sr. HR Manager/Dir Americas Sales and Professional Services', 'person': {'first_name': 'David', 'last_name': 'Barber', 'permalink': 'david-barber'}}, {'is_past': True, 'title': 'Engineering Manager, Proxy Server', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': True, 'title': 'Sr. Software Engineer / Software Development Manager', 'person': {'first_name': 'Troy', 'last_name': 'Chevalier', 'permalink': 'troy-chevalier'}}, {'is_past': True, 'title': 'Technical Assistant to Marc Andreessen', 'person': {'first_name': 'Jim', 'last_name': 'Ambach', 'permalink': 'jim-ambach'}}, {'is_past': True, 'title': 'Website Dev Manager', 'person': {'first_name': 'Bala', 'last_name': 'Guthy', 'permalink': 'bala-guthy'}}, {'is_past': True, 'title': 'Director, Professional Services', 'person': {'first_name': 'Noreen', 'last_name': 'Henry', 'permalink': 'noreen-henry'}}, {'is_past': True, 'title': 'Senior Director, Business Programming - Netcenter', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'Software Commando', 'person': {'first_name': 'Michael', 'last_name': 'Judge', 'permalink': 'michael-judge'}}, {'is_past': True, 'title': 'Director of Business Development and OEM Sales', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'Dir. Strategic Marketing', 'person': {'first_name': 'Gregory', 'last_name': 'Miller', 'permalink': 'gregory-miller-2'}}, {'is_past': True, 'title': 'Strategic Sales', 'person': {'first_name': 'Brian', 'last_name': 'Curry', 'permalink': 'brian-curry'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Siegel', 'permalink': 'mark-siegel'}}, {'is_past': True, 'title': 'VP, Sales', 'person': {'first_name': 'Karen', 'last_name': 'Richardson', 'permalink': 'karen-richardson'}}, {'is_past': True, 'title': 'Senior Sales Engineer', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Sr Engineering Manager', 'person': {'first_name': 'Dan', 'last_name': 'Kuokka', 'permalink': 'dan-kuokka'}}, {'is_past': True, 'title': 'Sr. Principal Consultant / Regional Practice Manager', 'person': {'first_name': 'Andy', 'last_name': 'Spillane', 'permalink': 'andy-spillane'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Dave', 'last_name': 'Keefer', 'permalink': 'dave-keefer'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Josh', 'last_name': 'Becker', 'permalink': 'josh-becker'}}, {'is_past': True, 'title': 'Marketing, Communications and Web Strategy', 'person': {'first_name': 'Bruce', 'last_name': 'Carlisle', 'permalink': 'bruce-carlisle'}}, {'is_past': True, 'title': 'Senior and Executive Management', 'person': {'first_name': 'Ajay', 'last_name': 'Jain', 'permalink': 'ajay-jain'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brandon', 'last_name': 'Berger', 'permalink': 'brandon-berger'}}, {'is_past': True, 'title': 'Director Product Marketing', 'person': {'first_name': 'Andres', 'last_name': 'Espineira', 'permalink': 'andres-espineira'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Raghu', 'last_name': 'Raghuram', 'permalink': 'raghu-raghuram'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Brent', 'last_name': 'Harrison', 'permalink': 'brent-harrison'}}, {'is_past': True, 'title': 'Product Manager, Web Browser / Gecko', 'person': {'first_name': 'Angus', 'last_name': 'Davis', 'permalink': 'angus-davis'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Todd', 'last_name': 'Pringle', 'permalink': 'todd-pringle'}}, {'is_past': True, 'title': 'Director of Browser Development', 'person': {'first_name': 'Jim', 'last_name': 'Everingham', 'permalink': 'jim-everingham'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ken', 'last_name': 'Rutsky', 'permalink': 'ken-rutsky'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Richard', 'last_name': 'Shusterman', 'permalink': 'richard-shusterman'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Javier', 'last_name': 'Soltero', 'permalink': 'javier-soltero'}}, {'is_past': True, 'title': 'Regional Director', 'person': {'first_name': 'Kirsten', 'last_name': 'Ward', 'permalink': 'kirsten-ward'}}, {'is_past': True, 'title': 'Sales Manager, France', 'person': {'first_name': 'Matthieu', 'last_name': 'Chouard', 'permalink': 'matthieu-chouard'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Ethel', 'last_name': 'Chen', 'permalink': 'ethel-chen'}}, {'is_past': True, 'title': 'Evangelism', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Michael', 'last_name': 'Sharma', 'permalink': 'michael-sharma'}}, {'is_past': True, 'title': 'Product Management Intern', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'Director, Application Architecture & Design, Netcenter Division', 'person': {'first_name': 'Mark', 'last_name': 'Stern', 'permalink': 'mark-stern'}}, {'is_past': True, 'title': 'Sr. Director, Products', 'person': {'first_name': 'Julie', 'last_name': 'Herendeen', 'permalink': 'julie-herendeen'}}, {'is_past': True, 'title': 'Sr. Director', 'person': {'first_name': 'David', 'last_name': 'Pann', 'permalink': 'david-pann'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Javier', 'last_name': 'Soltero', 'permalink': 'javier-soltero'}}, {'is_past': True, 'title': 'Director PM', 'person': {'first_name': 'Eckart', 'last_name': 'Walther', 'permalink': 'eckart-walther'}}, {'is_past': True, 'title': 'Senior Editor', 'person': {'first_name': 'Lee', 'last_name': 'Sherman', 'permalink': 'lee-sherman'}}, {'is_past': True, 'title': 'Mgr / Sr Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Rubinstein', 'permalink': 'steve-rubinstein'}}, {'is_past': True, 'title': 'Director Product Marketing / Biz Dev', 'person': {'first_name': 'Atri', 'last_name': 'Chatterjee', 'permalink': 'atri-chatterjee'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Ellen', 'last_name': 'Perelman', 'permalink': 'ellen-perelman'}}, {'is_past': True, 'title': 'Director, Product Management & Marketing', 'person': {'first_name': 'Albert', 'last_name': 'Gouyet', 'permalink': 'albert-gouyet'}}, {'is_past': True, 'title': 'Director of Engineering/Browser', 'person': {'first_name': 'James', 'last_name': 'Everingham', 'permalink': 'james-everingham'}}, {'is_past': True, 'title': 'Various Marketing Positions', 'person': {'first_name': 'Susan', 'last_name': 'Chenoweth', 'permalink': 'susan-chenoweth'}}, {'is_past': True, 'title': 'Director North American Field Marketing', 'person': {'first_name': 'Susan', 'last_name': 'Scarth', 'permalink': 'susan-scarth'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Jason', 'last_name': 'Han', 'permalink': 'jason-han'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Marge', 'last_name': 'Breya', 'permalink': 'marge-breya'}}, {'is_past': True, 'title': 'Dir, Dev Tools R&D', 'person': {'first_name': 'Jeffrey', 'last_name': 'L. Barca-Hall', 'permalink': 'jeffrey-l-barca-hall'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Gary', 'last_name': 'Nakamura', 'permalink': 'gary-nakamura'}}, {'is_past': True, 'title': 'Director of Product Management, Netscape Navigator', 'person': {'first_name': 'Alex', 'last_name': 'Edelstein', 'permalink': 'alex-edelstein'}}, {'is_past': True, 'title': 'Technical Manager', 'person': {'first_name': 'Vishy', 'last_name': 'Ramachandran', 'permalink': 'vishy-ramachandran'}}, {'is_past': True, 'title': 'Director, Netscape / America Online', 'person': {'first_name': 'Yuan', 'last_name': 'Huntington Weigel', 'permalink': 'yuan-huntington-weigel'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Suzanne', 'last_name': 'Usiskin', 'permalink': 'suzanne-usiskin'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Autumn', 'last_name': 'Looijen', 'permalink': 'autumn-looijen-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'John', 'last_name': 'Occhipinti', 'permalink': 'john-occhipinti'}}, {'is_past': True, 'title': 'Sr. Product Manager: Directory and Security', 'person': {'first_name': 'Stephen', 'last_name': 'Shoaff', 'permalink': 'stephen-shoaff'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'JF', 'last_name': 'Sullivan', 'permalink': 'jf-sullivan'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Alan', 'last_name': 'Gunshor', 'permalink': 'alan-gunshor'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Liz', 'last_name': 'Westover', 'permalink': 'liz-westover'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Jorge', 'last_name': 'Martin', 'permalink': 'jorge-martin'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'H. Corr', 'permalink': 'jonathan-h-corr'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Miller', 'permalink': 'david-miller-2'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Cowley', 'permalink': 'brian-cowley-2'}}, {'is_past': True, 'title': 'Manager, Engineering Teams', 'person': {'first_name': 'David', 'last_name': 'Kandasamy', 'permalink': 'david-kandasamy'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 20468, 'round_code': 'c', 'source_url': 'http://www.hearst.com/press-room/pr-19950407a.php', 'source_description': 'NETSCAPE COMMUNICATIONS ANNOUNCES INVESTMENT BY PUBLISHING AND TECHNOLOGY COMPANIES', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1995, 'funded_month': 4, 'funded_day': None, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 4200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1023-218360.html', 'source_description': 'AOL buys Netscape for $4.2 billion', 'acquired_year': 1998, 'acquired_month': 11, 'acquired_day': 28, 'acquiring_company': {'name': 'AOL', 'permalink': 'aol'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '466 Ellis Street', 'address2': '', 'zip_code': '94043', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.4001507, 'longitude': -122.0521992}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297efe'), 'name': 'Zappos', 'permalink': 'zappos', 'crunchbase_url': 'http://www.crunchbase.com/company/zappos', 'homepage_url': 'http://www.zappos.com', 'blog_url': 'http://www.blogs.zappos.com/blogs', 'blog_feed_url': 'http://feeds.feedburner.com/ZapposBlogs', 'twitter_username': 'zappos', 'category_code': 'web', 'number_of_employees': 1500, 'founded_year': 1999, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'cs@zappos.com', 'phone_number': '1-800-927-7671', 'description': 'Online footwear retailer', 'created_at': 'Thu Aug 23 06:00:47 UTC 2007', 'updated_at': 'Thu May 16 14:31:19 UTC 2013', 'overview': '

Zappos is an online retailer specializing in shoes. In addition to shoes they sell handbags, clothing, eyewear, watches and accessories.

\\n\\n

The company is currently based in Henderson, NV, with a warehouse in Shepherdsville, KY. In addition, Zappos has a small number of brick-and-mortar outlet stores.

\\n\\n

The name Zappos is derived from the Spanish word zapatos, meaning shoes.

', 'image': {'available_sizes': [[[144, 54], 'assets/images/resized/0001/2482/12482v1-max-150x150.png'], [[144, 54], 'assets/images/resized/0001/2482/12482v1-max-250x250.png'], [[144, 54], 'assets/images/resized/0001/2482/12482v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Zappos', 'permalink': 'zappos'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tony', 'last_name': 'Hsieh', 'permalink': 'tony-hsieh'}}, {'is_past': False, 'title': 'VP Merchandising', 'person': {'first_name': 'Steven', 'last_name': 'Hill', 'permalink': 'steven-hill'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Fred', 'last_name': 'Mossler', 'permalink': 'fred-mossler'}}, {'is_past': False, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Millie', 'last_name': 'Chou', 'permalink': 'millie-chou'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Adam', 'last_name': 'Audette', 'permalink': 'adam-audette'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Nick', 'last_name': 'French', 'permalink': 'nick-french'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Lauzon', 'permalink': 'matt-lauzon-2'}}, {'is_past': False, 'title': 'Culture Architect', 'person': {'first_name': 'Robert', 'last_name': 'Richman', 'permalink': 'robert-richman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Zach', 'last_name': 'Ware', 'permalink': 'zach-ware'}}, {'is_past': False, 'title': 'VP Fulfillment Operations', 'person': {'first_name': 'Craig', 'last_name': 'Adkins', 'permalink': 'craig-adkins'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Steven', 'last_name': 'Gasser', 'permalink': 'steven-gasser'}}, {'is_past': False, 'title': 'Web Security Expert', 'person': {'first_name': 'Faily', 'last_name': 'Monster', 'permalink': 'faily-monster'}}, {'is_past': False, 'title': 'Business Development & Analysis', 'person': {'first_name': 'Kyle', 'last_name': 'Kelly', 'permalink': 'kyle-kelly'}}, {'is_past': False, 'title': 'Software Developer and API Advocate', 'person': {'first_name': 'Jimmy', 'last_name': 'Jacobson', 'permalink': 'jimmy-jacobson'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Will', 'last_name': 'Young', 'permalink': 'will-young'}}, {'is_past': True, 'title': 'Chairman & COO', 'person': {'first_name': 'Alfred', 'last_name': 'Lin', 'permalink': 'alfred-lin'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director of User Experience', 'person': {'first_name': 'Brian', 'last_name': 'Kalma', 'permalink': 'brian-kalma'}}, {'is_past': True, 'title': 'Senior Merchandiser', 'person': {'first_name': 'Jon', 'last_name': 'Fahrner', 'permalink': 'jon-fahrner'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Jason', 'last_name': 'Hurt', 'permalink': 'jason-hurt'}}, {'is_past': True, 'title': 'head of online marketing', 'person': {'first_name': 'Jim', 'last_name': 'Kingsbury', 'permalink': 'jim-kingsbury'}}, {'is_past': True, 'title': 'Senior Financial Analyst', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Senior Finance Manager - Real Estate + Facilities', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Community Architect', 'person': {'first_name': 'Thomas', 'last_name': 'Knoll', 'permalink': 'thomas-knoll'}}, {'is_past': True, 'title': 'Web Producer', 'person': {'first_name': 'Gerard', 'last_name': 'Ramos', 'permalink': 'gerard-ramos'}}, {'is_past': True, 'title': 'Senior Front-End Developer', 'person': {'first_name': 'Dylan', 'last_name': 'Bathurst', 'permalink': 'dylan-bathurst'}}, {'is_past': True, 'title': 'Senior Front-end Developer', 'person': {'first_name': 'Jen', 'last_name': 'Wilhelm', 'permalink': 'jen-wilhelm'}}, {'is_past': True, 'title': 'Executive Consultant - HR', 'person': {'first_name': 'Michele', 'last_name': 'Murgel', 'permalink': 'michele-murgel'}}, {'is_past': True, 'title': 'Senior Manager - Financial Planning & Analysis', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Director - Operations Finance', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}], 'competitions': [{'competitor': {'name': 'Spartoo', 'permalink': 'spartoo'}}], 'providerships': [], 'total_money_raised': '$62.8M', 'funding_rounds': [{'id': 450, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 451, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 6, 'funded_day': 1, 'investments': []}, {'id': 452, 'round_code': 'c', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Tony', 'last_name': 'Hsieh', 'permalink': 'tony-hsieh'}}]}, {'id': 453, 'round_code': 'b', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Venture Frogs', 'permalink': 'venture-frogs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}]}, {'id': 7641, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'ZVest', 'permalink': 'zvest'}, 'person': None}]}, {'id': 7642, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 13000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 7643, 'round_code': 'a', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 150000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Erik', 'last_name': 'Moore', 'permalink': 'erik-moore'}}]}, {'id': 18448, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Hadi', 'last_name': 'Partovi', 'permalink': 'hadi-partovi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ali', 'last_name': 'Partovi', 'permalink': 'ali-partovi'}}]}], 'investments': [], 'acquisition': {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://techcrunch.com/2009/07/22/amazon-buys-zappos/', 'source_description': 'TechCrunch: Amazon Buys Zappos', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 22, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Henderson', 'state_code': 'NV', 'country_code': 'USA', 'latitude': 36.032976, 'longitude': -115.064859}, {'description': 'Warehouse', 'address1': '376 Zappos.com Blvd.', 'address2': '', 'zip_code': '40165', 'city': 'Shepherdsville', 'state_code': 'KY', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 864, 'description': 'My baby cousin just trneud 1 and I hope he starts walking x_x when we try to teach him\\ufeff he just starts to get on the floor and crawl .. He hasnt laying on his belly much either ..', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://www.facebook.com/profile.php?id=100003406050193', 'source_text': '', 'source_description': 'ggBpMcdWdpgcOUnBHO', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zappos', 'permalink': 'zappos'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

CEO Tony Hsieh presentation at Web 2.0 Summit, November 2008

'}, {'embed_code': '', 'description': '

Zappos on Nightline

'}, {'embed_code': '', 'description': '

Zappos on Oprah!

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://blog.mixergy.com/customers-service-zappos/', 'title': \"Secrets of Zappos's Customer Service (interview)\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f0c'), 'name': 'Alibaba', 'permalink': 'alibaba', 'crunchbase_url': 'http://www.crunchbase.com/company/alibaba', 'homepage_url': 'http://www.alibaba.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'AlibabaTalk', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 6, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'ecommerce', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Aug 22 08:31:53 UTC 2007', 'updated_at': 'Tue Dec 17 02:54:59 UTC 2013', 'overview': '

Alibaba Group is China’s leading e-commerce company, operating the world’s largest online marketplaces for both international and domestic China trade, as well as China’s most popular online payment system, AliPay.

\\n\\n

Alibaba Group is a family of Internet-based businesses with a mission to make it easy for anyone to buy or sell anywhere in the world. Since its inception, it has developed leading businesses in consumer e-commerce, online payment, business-to-business marketplaces and cloud computing and has expanded into new areas such as mobile apps, mobile operating system and Internet TV. The company is focused on fostering the development of an open, collaborative and prosperous e-commerce ecosystem that benefits consumers, merchants and the economy as a whole.

\\n\\n

Alibaba assists millions of buyers and suppliers all over the world to do business online by three trading markets of its own. Three online trading markets include: an International Trading Market which intensively serves for global import and export business, a Chinese Trading Market which gathers domestic business and a Japanese Trading Market which promotes Japanese export and domestic sales by an associative company’s operation.

\\n\\n

Alibaba Group has 12 major businesses and affiliated entities, including alibaba.com, Taobao.com, Tmall, Alipay, koubei.com, Aliyun, etao.com, net.cn, Juhuasuan.com, CNZZ and Onetouch.

\\n\\n

In 1999, Alibaba Group is officially established by its 18 founders, led by Jack Ma. In February, 2004, Alibaba received $82 million from Softbank Corp. and other VC. In August, 2005, Yahoo and Alibaba formed strategic partnership and Alibaba made a net profit of 250 million dollars. On November 6, 2007, Alibaba.com got successfully listed on the Hong Kong Stock Exchange.

\\n\\n

As of December 31, 2006, with approximately 3,500 employees, Alibaba is the first e-commerce company to reach 8 million online retailors from more than 220 countries and regions. The Group provides more than 8.1 million entries of business information per day, making it one of the largest-scale and most active B2B markets and business communities.\\nMajor rivals are Amazon and Baidu.

', 'image': {'available_sizes': [[[150, 32], 'assets/images/resized/0000/4465/4465v3-max-150x150.png'], [[210, 46], 'assets/images/resized/0000/4465/4465v3-max-250x250.png'], [[210, 46], 'assets/images/resized/0000/4465/4465v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Alibaba.com', 'permalink': 'alibaba-com'}, {'name': 'Aliyun', 'permalink': 'aliyun'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jonathan', 'last_name': 'Lu', 'permalink': 'jonathan-lu'}}, {'is_past': False, 'title': 'SVP & Co - Founder', 'person': {'first_name': 'Eddie', 'last_name': 'Wu', 'permalink': 'eddie-wu'}}, {'is_past': False, 'title': 'CEO, Alibaba Small & Micro Financial Services Group (under formation)', 'person': {'first_name': 'Lucy', 'last_name': 'Peng', 'permalink': 'lucy-peng'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Jack', 'last_name': 'Ma', 'permalink': 'jack-ma'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Maggie', 'last_name': 'Wu', 'permalink': 'maggie-wu'}}, {'is_past': False, 'title': 'SVP & Deputy Chief Technology Office', 'person': {'first_name': 'Leo', 'last_name': 'Jiang', 'permalink': 'leo-jiang'}}, {'is_past': False, 'title': 'Chief Marketing Officer,', 'person': {'first_name': 'Tiger', 'last_name': 'Wang', 'permalink': 'tiger-wang'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Zeng', 'last_name': 'Ming', 'permalink': 'zeng-ming'}}, {'is_past': False, 'title': 'Chief People Officer & SVP', 'person': {'first_name': 'Trudy', 'last_name': 'Dai', 'permalink': 'trudy-dai'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Sophie', 'last_name': 'Wu', 'permalink': 'sophie-wu'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'Daniel', 'last_name': 'Zhang', 'permalink': 'daniel-zhang'}}, {'is_past': False, 'title': 'Executive Vice Chairman', 'person': {'first_name': 'Joe', 'last_name': 'Tsai', 'permalink': 'joe-tsai'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Wang', 'last_name': 'Jian', 'permalink': 'wang-jian'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Zhang', 'last_name': 'Yu', 'permalink': 'zhang-yu'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Yun', 'last_name': 'Ma', 'permalink': 'yun-ma'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jacqueline', 'last_name': 'Reses', 'permalink': 'jacqueline-reses'}}, {'is_past': False, 'title': 'Chief Risk Officer & Group Secretary', 'person': {'first_name': 'Polo', 'last_name': 'Shao', 'permalink': 'polo-shao'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Ye', 'last_name': 'Peng', 'permalink': 'ye-peng'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Jeff', 'last_name': 'Zhang', 'permalink': 'jeff-zhang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Thomas', 'last_name': 'Ng', 'permalink': 'thomas-ng'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jack', 'last_name': 'Ma', 'permalink': 'jack-ma'}}, {'is_past': True, 'title': 'Senior Director of Engineering', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'Business Manager', 'person': {'first_name': 'Amy', 'last_name': 'Qin', 'permalink': 'amy-qin'}}, {'is_past': True, 'title': 'Product Manager and Team Leader', 'person': {'first_name': 'Ken', 'last_name': 'Zhang', 'permalink': 'ken-zhang'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Ge Xu', 'permalink': 'michael-ge-xu'}}, {'is_past': True, 'title': 'Risk Specialist', 'person': {'first_name': 'Tao', 'last_name': 'Wei', 'permalink': 'tao-wei'}}], 'competitions': [{'competitor': {'name': 'MFG.com', 'permalink': 'mfg'}}, {'competitor': {'name': 'Baidu', 'permalink': 'baidu'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'Made-in-China.com', 'permalink': 'made-in-china-com'}}, {'competitor': {'name': 'Mango B2B Ltd.', 'permalink': 'mango-b2b-limited'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 58112, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 10, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Fidelity Asia Ventures', 'permalink': 'fidelity-asia-ventures'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/04/29/sina-weibo/', 'source_description': 'Sina Weibo, China’s Equivalent of Facebook and Twitter, Gets $586M Investment From Alibaba', 'raised_amount': 586000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 29, 'company': {'name': 'Sina Weibo', 'permalink': 'sina-weibo'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.businessinsider.com/this-scandal-plagued-ex-yahoo-ceo-just-raised-75-million-and-theres-an-epic-backstory-behind-it-2013-8', 'source_description': \"This Scandal-Plagued Ex-Yahoo CEO Just Raised $75 Million, And There's An Epic Backstory Behind It\", 'raised_amount': 75000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 19, 'company': {'name': 'ShopRunner', 'permalink': 'shoprunner'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2013/10/03/quixey-series-c/', 'source_description': 'Quixey Raises $50M From Alibaba & Others To Build The Search Engine For The Mobile Era', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 3, 'company': {'name': 'Quixey', 'permalink': 'quixey'}}}], 'acquisition': {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://docs.yahoo.com/docs/pr/release1256.html', 'source_description': 'YAHOO! AND ALIBABA.COM FORM STRATEGIC PARTNERSHIP IN CHINA ', 'acquired_year': 2005, 'acquired_month': 8, 'acquired_day': 11, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/347880/alibabacom-acquires-vendio-continues-advance-global-e-commerce-platform', 'source_description': 'Alibaba.com Acquires Vendio, Continues to Advance Global E-Commerce Platform', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 24, 'company': {'name': 'Vendio', 'permalink': 'vendio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/24/alibaba-group-acquires-kanbox-a-personal-cloud-storage-service/', 'source_description': 'Alibaba Group Acquires Kanbox, A Personal Cloud Storage Service', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'company': {'name': 'Kanbox', 'permalink': 'kanbox'}}], 'offices': [{'description': '', 'address1': '6/F Chuangye Mansion, East Software Park', 'address2': 'No.99 Huaxing Road', 'zip_code': '310099', 'city': 'Hangzhou', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 1514, 'description': 'Alibaba gains exclusive rights to the Yahoo brand in China.', 'stoned_year': 2005, 'stoned_month': 8, 'stoned_day': 11, 'source_url': 'http://www.chinadaily.com.cn/english/doc/2005-08/11/content_468252.htm', 'source_text': '', 'source_description': 'Yahoo buys US$1 billion stake in Alibaba', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 12709, 'description': 'Alibaba.com CEO And COO Out Because Of Vendor Fraud', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2011/02/21/alibaba/', 'source_text': '', 'source_description': 'Alibaba.com CEO And COO Out Because Of Vendor Fraud', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 21597, 'description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://invest-iq.net/2011/10/silver-lake-and-dst-global-invest-in-chinas-alibaba-group/', 'source_text': None, 'source_description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 21598, 'description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://invest-iq.net/2011/10/silver-lake-and-dst-global-invest-in-chinas-alibaba-group/', 'source_text': None, 'source_description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 33823, 'description': 'Alibaba spends $300M to buy one third of Chinese mapping company\\r\\n', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 10, 'source_url': 'http://venturebeat.com/2013/05/10/alibaba-autonavi/', 'source_text': '', 'source_description': 'Alibaba spends $300M to buy one third of Chinese mapping company', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 35287, 'description': 'Freshfields, W&C secure $8 bln financing for Alibaba', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 17, 'source_url': 'http://asia.legalbusinessonline.com/news/breaking-news/freshfields-wandc-secure-8-bln-financing-for-alibaba/111119', 'source_text': '', 'source_description': 'Freshfields, W&C secure $8 bln financing for Alibaba', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 40852, 'description': 'Alibaba invests $193 million to buy Chinese asset manager Tianhong', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 9, 'source_url': 'http://www.reuters.com/article/2013/10/09/us-alibaba-funds-idUSBRE9980G620131009?feedType=RSS&feedName=technologyNews', 'source_text': '', 'source_description': 'Alibaba invests $193 million to buy Chinese asset manager Tianhong', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 41478, 'description': 'Alibaba Reportedly Acquiring Social Shopping Service Mogujie for $200 million ', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 22, 'source_url': 'http://technode.com/2013/10/22/alibaba-reportedly-acquiring-social-shopping-service-mogujie-for-200-million-dollars/?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'Alibaba Reportedly Acquiring Social Shopping Service Mogujie for $200 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 11, 'pub_day': 6, 'stock_symbol': 'HKSE:1688.HK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.alibaba.com/showroom/category.html', 'title': 'hot products'}, {'external_url': 'http://www.alibaba.com/countrysearch/CN/China.html', 'title': 'China suppliers'}, {'external_url': 'http://www.alibaba.com/wholesalers/wholesaler.html', 'title': 'Wholesalers '}, {'external_url': 'http://www.alibaba.com/manufacturers/manufacturer.html', 'title': 'Manufacturers'}, {'external_url': 'http://www.tradeford.com/directory/b2b/alibaba.com_d1.html', 'title': 'Alibaba.com Review'}, {'external_url': 'http://ceoworld.biz/ceo/2013/09/18/alibaba-mobile-apps-to-be-pre-installed-on-smartphones-sold-through-china-telecom', 'title': 'Alibaba Mobile Apps To Be Pre-Installed On Smartphones Sold Through China Telecom '}, {'external_url': 'http://www.made-in-china.com/', 'title': 'alibaba partner'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.alibaba.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297d90'), 'name': 'Postini', 'permalink': 'postini', 'crunchbase_url': 'http://www.crunchbase.com/company/postini', 'homepage_url': 'http://postini.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 6, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '888.584.3150', 'description': None, 'created_at': 'Fri Jun 08 12:19:51 UTC 2007', 'updated_at': 'Sat Aug 13 18:02:34 UTC 2011', 'overview': '

Postini focuses on two main issues: security and compliance. Postini states that it handles more than 1 billion messages everyday and protects more than 35,000 businesses worldwide.

\\n\\n

Postini offers solutions that protect your company from malicious internet attacks. The Postini Communications Suite eliminates unwanted content from email, instant messaging, and the web. Postini aims to increase business productivity. It will also automatically encrypt senstive messages between you and business partners.

\\n\\n

Postini currently holds two patents in the area of security and compliance. It was acquired by Google in 2007 and now operates as a subsidiary.

', 'image': {'available_sizes': [[[150, 61], 'assets/images/resized/0000/3697/3697v1-max-150x150.png'], [[183, 75], 'assets/images/resized/0000/3697/3697v1-max-250x250.png'], [[183, 75], 'assets/images/resized/0000/3697/3697v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Postini Solutions', 'permalink': 'postini-solutions'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Scott', 'last_name': 'Petry', 'permalink': 'scott-petry'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Don', 'last_name': 'Beck', 'permalink': 'don-beck'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Harrison', 'last_name': 'B. Miller', 'permalink': 'harrison-b-miller'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Kahan', 'permalink': 'steve-kahan'}}, {'is_past': True, 'title': 'SVP Sales and Marketing', 'person': {'first_name': 'Mike', 'last_name': 'Purcell', 'permalink': 'mike-purcell'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Quentin', 'last_name': 'Gallivan', 'permalink': 'quentin-gallivan'}}, {'is_past': True, 'title': 'Sr. EMEA Operations & Tech Support Manager', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'VP Client Services', 'person': {'first_name': 'Mark', 'last_name': 'Fishwick', 'permalink': 'mark-fishwick'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Raman', 'last_name': 'Khanna', 'permalink': 'raman-khanna'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Ryan', 'last_name': 'McIntyre', 'permalink': 'ryan-mcintyre'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': 'Johnston', 'permalink': 'john-johnston'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Roger', 'last_name': 'S. Siboni', 'permalink': 'roger-s-siboni'}}, {'is_past': True, 'title': 'Channel Sales', 'person': {'first_name': 'Al', 'last_name': 'Powell', 'permalink': 'al-powell'}}], 'competitions': [{'competitor': {'name': 'RescueTime', 'permalink': 'rescuetime'}}, {'competitor': {'name': 'MailBlocks', 'permalink': 'mailblocks'}}, {'competitor': {'name': 'Suzerein Solutions', 'permalink': 'suzerein-solutions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 625000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'source_description': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 9, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '959 Skyway Road, Suite 200', 'address2': None, 'zip_code': '94070', 'city': 'San Carlos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.506885, 'longitude': -122.247573}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529831c'), 'name': 'Danger', 'permalink': 'danger', 'crunchbase_url': 'http://www.crunchbase.com/company/danger', 'homepage_url': 'http://www.danger.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'mobile', 'number_of_employees': 0, 'founded_year': 1999, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 5, 'deadpooled_day': 31, 'deadpooled_url': 'http://techcrunch.com/2011/02/28/t-mobile-sidekick-dead-cancelled-may-31st/', 'tag_list': '', 'alias_list': '', 'email_address': 'info@danger.com', 'phone_number': '', 'description': 'Software Platform for Sidekick', 'created_at': 'Sun Feb 17 19:39:59 UTC 2008', 'updated_at': 'Sat Mar 03 06:14:00 UTC 2012', 'overview': '

Danger provided the software platform and hardware behind T-Mobile’s Sidekick phone. In its prime, the youth-friendly, messaging-focused phone handled over 4,000 messages and 400 pageviews per user per month, according to figures quoted on Danger’s website as of February 2008.

\\n\\n

Microsoft acquired Danger in 2008, and the company made headlines in 2009 when an issue with its servers caused users to lose all data not stored locally.

\\n\\n

On May 31, 2011, T-Mobile and Microsoft discontinued the cloud data service to all Danger-powered Sidekick devices.

', 'image': {'available_sizes': [[[150, 25], 'assets/images/resized/0001/2611/12611v1-max-150x150.png'], [[150, 25], 'assets/images/resized/0001/2611/12611v1-max-250x250.png'], [[150, 25], 'assets/images/resized/0001/2611/12611v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Sidekick', 'permalink': 'sidekick'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jacques', 'last_name': 'Vincent', 'permalink': 'jacques-vincent'}}, {'is_past': None, 'title': 'SVP of Advanced Products (Founder)', 'person': {'first_name': 'Matt', 'last_name': 'Hershenson', 'permalink': 'matt-hershenson'}}, {'is_past': None, 'title': 'CTO (Founder)', 'person': {'first_name': 'Joe', 'last_name': 'Britt', 'permalink': 'joe-britt'}}, {'is_past': None, 'title': 'CFO', 'person': {'first_name': 'Nancy', 'last_name': 'J. Hilker', 'permalink': 'nancy-j-hilker'}}, {'is_past': None, 'title': 'SVP of Engineering', 'person': {'first_name': 'Les', 'last_name': 'Hamilton', 'permalink': 'les-hamilton'}}, {'is_past': None, 'title': 'SVP of Worldwide Sales and Alliances', 'person': {'first_name': 'James', 'last_name': 'Isaacs', 'permalink': 'james-isaacs'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Joanna', 'last_name': 'Rees', 'permalink': 'joanna-rees'}}, {'is_past': True, 'title': 'Chairman & CEO', 'person': {'first_name': 'Henry', 'last_name': 'R. Nothhaft', 'permalink': 'henry-r-nothhaft'}}, {'is_past': True, 'title': 'Chairman and CEO', 'person': {'first_name': 'Hank', 'last_name': 'Nothhaft', 'permalink': 'hank-nothhaft'}}, {'is_past': True, 'title': 'SVP and CFO', 'person': {'first_name': 'Nancy', 'last_name': 'J. Hilker', 'permalink': 'nancy-j-hilker'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Thierry', 'last_name': 'Chassaing', 'permalink': 'thierry-chassaing'}}, {'is_past': True, 'title': 'VP, Service Operations', 'person': {'first_name': 'Jonathan', 'last_name': 'Heiliger', 'permalink': 'jonathan-heiliger'}}, {'is_past': True, 'title': 'SVP of Service Operations', 'person': {'first_name': 'Donn', 'last_name': 'Dobkin', 'permalink': 'donn-dobkin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andy', 'last_name': 'Rubin', 'permalink': 'andy-rubin'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Conrad', 'permalink': 'tony-conrad'}}, {'is_past': True, 'title': 'Vice President & General Counsel', 'person': {'first_name': 'Scott', 'last_name': 'Darling', 'permalink': 'scott-darling'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Sr. Director, Service Engineering', 'person': {'first_name': 'Scott', 'last_name': 'Kister', 'permalink': 'scott-kister'}}, {'is_past': True, 'title': 'Director Business Development', 'person': {'first_name': 'Tom', 'last_name': 'Purcell', 'permalink': 'tom-purcell'}}], 'competitions': [{'competitor': {'name': 'Google', 'permalink': 'google'}}], 'providerships': [], 'total_money_raised': '$118M', 'funding_rounds': [{'id': 1553, 'round_code': 'b', 'source_url': 'http://www.danger.com/press/pr.php?cat=2001&id=20011015', 'source_description': 'Danger, Inc. Announces $36 Million in Series B Financing', 'raised_amount': 36000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Orange Ventures', 'permalink': 'orange-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'InOvate Communications Group', 'permalink': 'inovate-communications-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Diamondhead Ventures', 'permalink': 'diamondhead-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'T-Venture', 'permalink': 't-venture'}, 'person': None}]}, {'id': 1554, 'round_code': 'd', 'source_url': 'http://www.danger.com/press/pr.php?cat=2003&id=20030203', 'source_description': 'Danger, Inc. Announces $35 Million in Series D Financing', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture Strategy Partners', 'permalink': 'venture-strategy-partners'}, 'person': None}]}, {'id': 1555, 'round_code': 'd', 'source_url': 'http://www.danger.com/press/pr.php?cat=2004&id=20040723a', 'source_description': 'Danger, Inc. Announces $37 Million Financing Round', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Institutional Venture Partners', 'permalink': 'institutional-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Adams Street Partners', 'permalink': 'adams-street-partners'}, 'person': None}]}, {'id': 13499, 'round_code': 'e', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 10300000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 21, 'investments': [{'company': None, 'financial_org': {'name': 'T-Venture', 'permalink': 't-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/02/11/meanwhile-microsoft-buys-danger/', 'source_description': 'Meanwhile, Microsoft Buys Danger For $500 Million', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 11, 'acquiring_company': {'name': 'Microsoft', 'permalink': 'microsoft'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '3101 Park Blvd', 'address2': '', 'zip_code': '94306', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.425168, 'longitude': -122.136248}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'permalink': 'clearwell-systems', 'crunchbase_url': 'http://www.crunchbase.com/company/clearwell-systems', 'homepage_url': 'http://www.clearwellsystems.com', 'blog_url': 'http://www.clearwellsystems.com/e-discovery-blog/', 'blog_feed_url': 'http://feeds.feedburner.com/e-discovery-blog', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': 210, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 6, 'deadpooled_year': 2011, 'deadpooled_month': 5, 'deadpooled_day': 19, 'deadpooled_url': 'http://tinyurl.ws/2a', 'tag_list': 'e-discovery, ediscovery, electronic-discovery, legal-discovery', 'alias_list': '', 'email_address': 'info@clearwellsystems.com', 'phone_number': '650-526-0600', 'description': 'Computer Software', 'created_at': 'Wed Mar 26 00:54:26 UTC 2008', 'updated_at': 'Mon Oct 17 00:38:16 UTC 2011', 'overview': '

Clearwell delivers the industry’s leading enterprise-class e-discovery management platform that enables corporations to simultaneously manage all of their legal, regulatory and investigative matters with a single application. With Clearwell, attorneys, litigation support professionals, and forensics teams accelerate early case assessments, lower processing costs, reduce review workload, and ensure the defensibility of the e-discovery process.

\\n\\n

Clearwell is backed by Sequoia Capital, Redpoint Ventures and DAG Ventures.

', 'image': {'available_sizes': [[[150, 44], 'assets/images/resized/0001/6364/16364v1-max-150x150.jpg'], [[250, 73], 'assets/images/resized/0001/6364/16364v1-max-250x250.jpg'], [[450, 132], 'assets/images/resized/0001/6364/16364v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-Founder, CTO, Board Member', 'person': {'first_name': 'Venkat', 'last_name': 'Rangan', 'permalink': 'venkat-rangan-2'}}, {'is_past': True, 'title': 'CEO, Board Member', 'person': {'first_name': 'Aaref', 'last_name': 'Hilaly', 'permalink': 'aaref-hilaly'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Goetz', 'permalink': 'jim-goetz'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Will', 'last_name': 'Uppington', 'permalink': 'will-uppington'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Dyal', 'permalink': 'tom-dyal'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Teddy', 'last_name': 'Cha', 'permalink': 'teddy-cha'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$29M', 'funding_rounds': [{'id': 2443, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/08/22/clearwell-email-analyics-company-raises-17m/', 'source_description': 'Clearwell, email analytics company, raises $17M.', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 14024, 'round_code': 'b', 'source_url': 'http://www.clearwellsystems.com/ediscovery-news/pr_04_04_06.php', 'source_description': 'Email Intelligence Pioneer Clearwell Systems Announces $12 Million in Funding', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 410000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.marketwire.com/press-release/symantec-completes-acquisition-of-clearwell-systems-nasdaq-symc-1536339.htm', 'source_description': 'Symantec Completes Acquisition of Clearwell Systems', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Symantec', 'permalink': 'symantec'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '441 Logue Ave.', 'address2': '', 'zip_code': '94043', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.398022, 'longitude': -122.049143}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0007/7292/77292v1-max-150x150.jpg'], [[250, 201], 'assets/images/resized/0007/7292/77292v1-max-250x250.jpg'], [[450, 363], 'assets/images/resized/0007/7292/77292v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 137], 'assets/images/resized/0009/5579/95579v2-max-150x150.jpg'], [[250, 228], 'assets/images/resized/0009/5579/95579v2-max-250x250.jpg'], [[450, 411], 'assets/images/resized/0009/5579/95579v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.clearwellsystems.com/news/pr_02_02_09.php', 'title': '“CLEARWELL MOBILEâ€\\x9d SOLVES CROSS-BORDER E-DISCOVERY CHALLENGES'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'permalink': 'primesense', 'crunchbase_url': 'http://www.crunchbase.com/company/primesense', 'homepage_url': 'http://primesense.com', 'blog_url': 'http://www.primesense.com/news/our-blog/', 'blog_feed_url': '', 'twitter_username': 'GoPrimeSense', 'category_code': 'hardware', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 5, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'motion-capture, interact, input-device, game-interface, camera, digital, world, sensor, 3d', 'alias_list': '', 'email_address': 'contact@primesense.com', 'phone_number': '+972.3.769.2222', 'description': '3D device manufacturer', 'created_at': 'Tue May 06 20:00:37 UTC 2008', 'updated_at': 'Mon Nov 18 20:57:28 UTC 2013', 'overview': '

Prime Sense’s concept is a device, which allows a computer to perceive the world in 3D and derive an understanding of the world based on sight, just the way humans do.

\\n\\n

On March 31, 2010, PrimeSense confirmed that it was the technology behind Microsoft’s much-touted “Project Natal”.

\\n\\n

The device includes a sensor, which sees a user (including their complete surroundings), and a digital component, or “brain” which learns and understands user movement within those surroundings.

\\n\\n

Prime Sense’s interactive device can see, track and react to user movements outside the computer, all without change of environment or wearable equipment for the end user. The closed device is plug and play and platform independent.

\\n\\n

The company envisages the following uses: \\n-Interact with video games by using body movement and gestures. \\n-Interact with digital devices using menus on a screen as opposed to mouse and keyboard\\n-Improved video communication with for example virtual backgrounds and virtual drawing boards.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/8047/18047v4-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0001/8047/18047v4-max-250x250.jpg'], [[450, 450], 'assets/images/resized/0001/8047/18047v4-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co - Founder & Chief Technology Officer', 'person': {'first_name': 'Alexander', 'last_name': 'Shpunt', 'permalink': 'alexander-shpunt'}}, {'is_past': False, 'title': 'President & Founder & Member Of The Board Of Directors', 'person': {'first_name': 'Aviad', 'last_name': 'Maizels', 'permalink': 'aviad-maizels'}}, {'is_past': False, 'title': 'President and Founder, Board of Director', 'person': {'first_name': 'Aviad', 'last_name': 'Maizels', 'permalink': 'aviad-maizels'}}, {'is_past': False, 'title': 'Chief Science Officer', 'person': {'first_name': 'Zafir', 'last_name': 'Mor', 'permalink': 'zafir-mor'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Asher', 'last_name': 'Avital', 'permalink': 'asher-avital'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Tzach', 'last_name': 'Hadas', 'permalink': 'tzach-hadas'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Avi', 'last_name': 'Shadmi', 'permalink': 'avi-shadmi'}}, {'is_past': False, 'title': 'Chief Executive Officer & Board Of Directors', 'person': {'first_name': 'Inon', 'last_name': 'Beracha', 'permalink': 'inon-beracha'}}, {'is_past': False, 'title': 'EVP, Sales & Marketing', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': False, 'title': 'VP Business Development and Marketing', 'person': {'first_name': 'Adi', 'last_name': 'Berenson', 'permalink': 'adi-berenson'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'David', 'last_name': 'Dahan', 'permalink': 'david-dahan'}}, {'is_past': False, 'title': 'VP, Human Resources', 'person': {'first_name': 'Maya', 'last_name': 'Pops Green', 'permalink': 'maya-pops-green'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Paul', 'last_name': 'Mercadante', 'permalink': 'paul-mercadante'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Jonathan', 'last_name': 'Saacks', 'permalink': 'jonathan-saacks'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Yossi', 'last_name': 'Sela', 'permalink': 'yossi-sela'}}, {'is_past': False, 'title': 'Software Manager', 'person': {'first_name': 'Ilan', 'last_name': 'Atias', 'permalink': 'ilan-atias'}}, {'is_past': False, 'title': 'GM Americas', 'person': {'first_name': 'Ohad', 'last_name': 'Shvueli', 'permalink': 'ohad-shvueli'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Dr.', 'last_name': 'Orna Berry', 'permalink': 'dr-orna-berry'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Izhar', 'last_name': 'Shay', 'permalink': 'izhar-shay'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Gadi', 'last_name': 'Talmon', 'permalink': 'gadi-talmon'}}, {'is_past': True, 'title': 'VP of Sales & Marketing', 'person': {'first_name': 'Suneil', 'last_name': 'Mishra', 'permalink': 'suneil-mishra'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Iris', 'last_name': 'Finkelstein-Sagi', 'permalink': 'iris-finkelstein-sagi'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$29.4M', 'funding_rounds': [{'id': 2185, 'round_code': 'b', 'source_url': 'http://www.vccafe.com/2008/05/05/gaming-chips-primesense-closes-20m-in-round-b/', 'source_description': 'Gaming Chips: PrimeSense Closes $20M in Round B', 'raised_amount': 20400000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Canaan Partners', 'permalink': 'canaan-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Gemini Israel ventures', 'permalink': 'gemini-israel-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Genesis Partners', 'permalink': 'genesis-partners'}, 'person': None}]}, {'id': 15821, 'round_code': 'a', 'source_url': 'http://www.gemini.co.il/?p=News&CategoryID=166&ArticleID=209', 'source_description': 'Prime Sense Raises $9M A Round from Gemini Israel Funds and Genesis Partners', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 8, 'investments': [{'company': None, 'financial_org': {'name': 'Gemini Israel ventures', 'permalink': 'gemini-israel-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Genesis Partners', 'permalink': 'genesis-partners'}, 'person': None}]}, {'id': 20907, 'round_code': 'unattributed', 'source_url': 'http://www.businesswire.com/news/home/20110112006039/en/Silver-Lake-Sumeru-Announces-Investment-PrimeSense-Leading', 'source_description': 'Silver Lake Sumeru Announces Investment in PrimeSense, Leading Israeli Technology Provider ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 12, 'investments': [{'company': None, 'financial_org': {'name': 'Silver Lake Partners', 'permalink': 'silver-lake-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 345000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/11/25/apple-buys-israeli-3d-sensor-outfit-primesense-for-a-reported-350m/', 'source_description': ' Apple buys Israeli 3D sensor outfit PrimeSense for a reported $350M ', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '30 Habarzel St.', 'address2': '3rd floor', 'zip_code': '69710', 'city': 'Tel-Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 106], 'assets/images/resized/0011/7034/117034v1-max-150x150.jpg'], [[250, 176], 'assets/images/resized/0011/7034/117034v1-max-250x250.jpg'], [[450, 318], 'assets/images/resized/0011/7034/117034v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298207'), 'name': 'Amobee', 'permalink': 'amobee', 'crunchbase_url': 'http://www.crunchbase.com/company/amobee', 'homepage_url': 'http://www.amobee.com', 'blog_url': 'http://www.amobee.com/blog', 'blog_feed_url': '', 'twitter_username': 'amobee', 'category_code': 'advertising', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 5, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobileadvertising, contextual', 'alias_list': '', 'email_address': 'socialmedia@amobee.com', 'phone_number': '+1 (650) 802 8871', 'description': 'Mobile Advertising Service ', 'created_at': 'Sat Jan 26 07:53:52 UTC 2008', 'updated_at': 'Wed Jul 31 07:38:01 UTC 2013', 'overview': '

Amobee, the company defining mobile advertising, offers comprehensive, end-to-end mobile advertising solutions and services for advertisers, publishers and operators. Headquartered in Redwood City, California, with offices in Europe, Asia, Latin America and the US, Amobee enables its large customers to run targeted, leading edge mobile ad campaigns on a global scale with unparalleled ROI. [a•mo•bee] has financial backing from some of the biggest names in venture capital: Sequoia Capital, Accel Partners, and Globespan Capital, as well as strategic investments from Motorola, Cisco and leading operators, Vodafone and Telefonica. To learn more, please visit www.amobee.com. Amobee has been acquired by SingTel for US$321mm in March 2012.

', 'image': {'available_sizes': [[[150, 58], 'assets/images/resized/0000/3304/3304v7-max-150x150.png'], [[191, 75], 'assets/images/resized/0000/3304/3304v7-max-250x250.png'], [[191, 75], 'assets/images/resized/0000/3304/3304v7-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Amobee', 'permalink': 'amobee'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Saul', 'last_name': 'Rurka', 'permalink': 'saul-rurka'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Mark', 'last_name': 'Strecker', 'permalink': 'mark-strecker'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Steve', 'last_name': 'Hoffman', 'permalink': 'steve-hoffman-2'}}, {'is_past': False, 'title': 'VP Publisher Solutions', 'person': {'first_name': 'Nandi', 'last_name': 'Gurprasad', 'permalink': 'nandi-gurprasad'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Ben', 'last_name': 'Tatton-Brown', 'permalink': 'ben-tatton-brown'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Harry', 'last_name': 'Dewhirst', 'permalink': 'harry-dewhirst'}}, {'is_past': False, 'title': 'Cheif Executive Officer', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Kartik', 'last_name': 'Ram', 'permalink': 'kartik-ram'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Gil', 'last_name': 'Sheinfeld', 'permalink': 'gil-sheinfeld'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Bruce', 'last_name': 'Golden', 'permalink': 'bruce-golden'}}, {'is_past': True, 'title': 'Chairman of the board', 'person': {'first_name': 'Haim', 'last_name': 'Sadger', 'permalink': 'haim-sadger'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Gil', 'last_name': 'Shulman', 'permalink': 'gil-shulman'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Zohar', 'last_name': 'Levkovitz', 'permalink': 'zohar-levkovitz'}}, {'is_past': True, 'title': 'President & Co-CEO', 'person': {'first_name': 'Gary', 'last_name': 'Schofield', 'permalink': 'gary-schofield'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Amit', 'last_name': 'On', 'permalink': 'amit-on'}}, {'is_past': True, 'title': 'CMO and General Manager, EMEA', 'person': {'first_name': 'Patrick', 'last_name': 'Parodi', 'permalink': 'patrick-parodi'}}, {'is_past': True, 'title': 'SVP & GM', 'person': {'first_name': 'Roger', 'last_name': 'Wood', 'permalink': 'roger-wood'}}, {'is_past': True, 'title': 'VP Strategic Alliances', 'person': {'first_name': 'Ziv', 'last_name': 'Eliraz', 'permalink': 'ziv-eliraz'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Nitzan', 'last_name': 'Yaniv', 'permalink': 'nitzan-yaniv'}}, {'is_past': True, 'title': 'Sr Director, Business Development', 'person': {'first_name': 'Ted', 'last_name': 'Rupp', 'permalink': 'ted-rupp'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Saurav', 'last_name': 'Chopra', 'permalink': 'saurav-chopra'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development', 'person': {'first_name': 'Noah', 'last_name': 'Klausman', 'permalink': 'noah-klausman-2'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': True, 'title': 'Head of PR', 'person': {'first_name': 'Paul', 'last_name': 'Naphtali', 'permalink': 'paul-naphtali'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Andy', 'last_name': 'Goldfarb', 'permalink': 'andy-goldfarb'}}], 'competitions': [{'competitor': {'name': 'Mobixell Networks', 'permalink': 'mobixell'}}], 'providerships': [], 'total_money_raised': '$60M', 'funding_rounds': [{'id': 1428, 'round_code': 'a', 'source_url': 'http://www.moconews.net/entry/amobee-closes-2nd-round-15-20-million-rumored/', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 1429, 'round_code': 'b', 'source_url': 'http://www.moconews.net/entry/amobee-closes-2nd-round-15-20-million-rumored/', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 3112, 'round_code': 'c', 'source_url': 'http://www.alleyinsider.com/2008/8/mobile-firm-amobee-raises-22-million-for-ad-supported-cellphone-service', 'source_description': 'Mobile Firm Amobee Raises $22 Million For Ad-Supported Cellphone Service', 'raised_amount': 22000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 6, 'investments': [{'company': {'name': 'Cisco', 'permalink': 'cisco'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Motorola Solutions', 'permalink': 'motorola-solutions'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vodafone', 'permalink': 'vodafone'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 11062, 'round_code': 'unattributed', 'source_url': 'http://isra-cell.com/2009/amdocs-invests-in-amobee/', 'source_description': 'amdocs invests in amobee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 12, 'investments': [{'company': {'name': 'Amdocs', 'permalink': 'amdocs'}, 'financial_org': None, 'person': None}]}, {'id': 12269, 'round_code': 'b', 'source_url': 'http://paidcontent.org/2007/11/28/419-mobile-advertiser-amobee-sells-minority-stake-to-vodafone/', 'source_description': 'Vodafone, Telefonica Take Stakes In Mobile Ad Firm Amobee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'Vodafone Ventures', 'permalink': 'vodafone-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 44255, 'round_code': 'd', 'source_url': '', 'source_description': 'Telefonica Ventures Source', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 321000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/03/05/more-mobile-ad-consolidation-carrier-singtel-buys-amobee-for-321-million/', 'source_description': 'More Mobile Ad Consolidation: Carrier SingTel Buys Amobee For $321 Million', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 5, 'acquiring_company': {'name': 'SingTel', 'permalink': 'singtel'}}, 'acquisitions': [{'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://businesswire.mercurynews.com/portal/site/mercurynews/?ndmViewId=news_view&newsId=20100113005509&newsLang=en', 'source_description': 'Amobee Acquires RingRing Media – Consolidates Mobile Advertising Market', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 13, 'company': {'name': 'Ringring Media', 'permalink': 'ringring-media'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/08/singtels-amobee-buys-adjitsu-to-take-mobile-ads-into-the-third-dimension/', 'source_description': 'Singtel’s Amobee Buys AdJitsu To Take Mobile Ads Into The Third Dimension', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 8, 'company': {'name': 'AdJitsu', 'permalink': 'adjitsu'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/05/singtels-amobee-buys-las-gradient-x-to-bulk-up-its-mobile-adtech-with-real-time-bidding/', 'source_description': 'SingTel’s Amobee Buys LA’s Gradient X To Bulk Up Its Mobile AdTech With Real-Time Bidding', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'Gradient X', 'permalink': 'gradient-x'}}], 'offices': [{'description': '', 'address1': '100 Marine Parkway', 'address2': 'Ste 575', 'zip_code': '94065', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.52845, 'longitude': -122.263721}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 87], 'assets/images/resized/0014/6264/146264v2-max-150x150.jpg'], [[250, 145], 'assets/images/resized/0014/6264/146264v2-max-250x250.jpg'], [[450, 262], 'assets/images/resized/0014/6264/146264v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'permalink': 'bluelithium', 'crunchbase_url': 'http://www.crunchbase.com/company/bluelithium', 'homepage_url': 'http://www.bluelithium.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'advertising', 'number_of_employees': 135, 'founded_year': 2004, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'advertising, yahoo, behavioraltargeting', 'alias_list': None, 'email_address': 'info@bluelithium.com', 'phone_number': '', 'description': None, 'created_at': 'Thu Aug 23 06:28:54 UTC 2007', 'updated_at': 'Tue Jul 02 02:58:10 UTC 2013', 'overview': '

BlueLithium is an advertising network focused on serving ads based on behavioral targeting of its users. As of September 2007, BlueLithium is the fifth largest ad network in the United States and the second largest in the United Kingdom, with 145 million unique visitors per month.

\\n\\n

BlueLithium was acquired by Yahoo! in September 2007 for approximately $300 million in cash.

\\n\\n

Other companies in the display advertising space include DoubleClick, Specificmedia, Quigo, ValueClick, Advertising.com, Tribal Fusion, and aQuantive.

', 'image': {'available_sizes': [[[150, 48], 'assets/images/resized/0000/4519/4519v1-max-150x150.png'], [[200, 64], 'assets/images/resized/0000/4519/4519v1-max-250x250.png'], [[200, 64], 'assets/images/resized/0000/4519/4519v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'AdPath', 'permalink': 'adpath'}, {'name': 'Selective Inventory Partnership', 'permalink': 'selective-inventory-partnership'}], 'relationships': [{'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'David', 'last_name': 'Mariani', 'permalink': 'david-mariani'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Eugene', 'last_name': 'Kislyi', 'permalink': 'eugene-kislyi'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Dakota', 'last_name': 'Sullivan', 'permalink': 'dakota-sullivan'}}, {'is_past': True, 'title': 'Co-Founder/ GM of New Business', 'person': {'first_name': 'Krishna', 'last_name': 'Subramanian', 'permalink': 'krishna-subramanian'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Gurbaksh', 'last_name': 'Chahal', 'permalink': 'gurbaksh-chahal'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'William', 'last_name': 'Lonergan', 'permalink': 'william-lonergan'}}, {'is_past': True, 'title': 'SVP & GM, Ad Network', 'person': {'first_name': 'Dave', 'last_name': 'Zinman', 'permalink': 'dave-zinman'}}, {'is_past': True, 'title': 'erating', 'person': {'first_name': 'Scott', 'last_name': 'Kauffman', 'permalink': 'scott-kauffman'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Tim', 'last_name': 'Mahlman', 'permalink': 'tim-mahlman'}}, {'is_past': True, 'title': 'Vice President, Media', 'person': {'first_name': 'Kamal', 'last_name': 'Kaur', 'permalink': 'kamal-kaur'}}, {'is_past': True, 'title': 'Sr. Strategic Accounts', 'person': {'first_name': 'Taz', 'last_name': 'Patel', 'permalink': 'taz-patel'}}, {'is_past': True, 'title': 'rector, Blu', 'person': {'first_name': 'Tim', 'last_name': 'Brown', 'permalink': 'tim-brown'}}, {'is_past': True, 'title': 'General Manager, Performance Netw', 'person': {'first_name': 'Jay', 'last_name': 'Webster', 'permalink': 'jay-webster'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Rich', 'last_name': 'LeFurgy', 'permalink': 'rich-lefurgy-2'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}], 'competitions': [{'competitor': {'name': 'Phorm', 'permalink': 'phorm'}}, {'competitor': {'name': 'Undertone', 'permalink': 'undertone'}}, {'competitor': {'name': 'ballislife', 'permalink': 'ballislife'}}], 'providerships': [], 'total_money_raised': '$11.5M', 'funding_rounds': [{'id': 458, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 11500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': '3i Group', 'permalink': '3i-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://zpwjnbkofczw.com/', 'source_description': 'Yahoo Acquires Ad Network BlueLithium', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '3055 Olin Avenue, Suite 2200', 'address2': '', 'zip_code': '95128', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.32052, 'longitude': -121.948399}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results16 = list(collection.find({\"founded_day\": {\"$lt\": 8}}).sort(\"acquisition.price_amount\", -1).limit(10))\n", + "\n", + "print(results16)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 17. All the companies on the 'web' `category` that have more than 4000 employees. Sort them by the amount of employees in ascendant order." + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2070\n" + ] + } + ], + "source": [ + "results17 = list(collection.find({\"$and\":[{\"category_code\": \"web\"}, \n", + " {\"number_of_employees\": {\"$lt\": 4000}}]}).sort(\"number_of_employees\", 1))\n", + "\n", + "print(len(results17))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 18. All the companies which their acquisition amount is more than 10.000.000, and currency are 'EUR'.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd675299576'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299900'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results18 = list(collection.find({\"$and\": \n", + " [{\"ipo.valuation_amount\": {\"$gt\": 10000000}}, {\"ipo.valuation_currency_code\": \"EUR\"}]}))\n", + "\n", + "print(results18)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 19. All the companies that have been acquired on the first trimester of the year. Limit the search to 10 companies, and retrieve only their `name` and `acquisition` fields." + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297dab'), 'name': 'Kyte', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/31/exclusive-kit-digital-acquires-kickapps-kewego-and-kyte-for-77-2-million/', 'source_description': 'KIT digital Acquires KickApps, Kewego AND Kyte For $77.2 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'KIT digital', 'permalink': 'kit-digital'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297db4'), 'name': 'NetRatings', 'acquisition': {'price_amount': 327000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://login.vnuemedia.com/hr/login/login_subscribe.jsp?id=0oqDem1gYIfIclz9i2%2Ffqj5NxCp2AC5DPbVnyT2da8GyV2mXjasabE128n69OrmcAh52%2FGE3pSG%2F%0AEKRYD9vh9EhrJrxukmUzh532fSMTZXL42gwPB80UWVtF1NwJ5UZSM%2BCkLU1mpYBoHFgiH%2Fi0f6Ax%0A9yMIVxt47t%2BHamhEQ0nkOEK24L', 'source_description': 'Nielsen buys rest of NetRatings', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'acquiring_company': {'name': 'Nielsen', 'permalink': 'nielsen'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dbf'), 'name': 'blogTV', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/13/younow-buys-blogtv/', 'source_description': 'Live Social Video Network YouNow Acquires Streaming Service BlogTV', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 13, 'acquiring_company': {'name': 'YouNow', 'permalink': 'younow'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dc0'), 'name': 'Livestream', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': '', 'source_description': 'company', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 1, 'acquiring_company': {'name': 'Adviqo', 'permalink': 'adviqo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'acquisition': {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/02/28/vocus-buys-email-marketing-company-icontact-for-169-million/', 'source_description': 'Vocus Buys Email Marketing Company iContact For $169 Million', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 28, 'acquiring_company': {'name': 'Vocus', 'permalink': 'vocus'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297de8'), 'name': 'Coghead', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/02/19/sap-acquires-cogheads-technology-as-it-looks-towards-the-cloud/', 'source_description': 'SAP Acquires Coghead’s Technology As It Looks Towards The Cloud', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 19, 'acquiring_company': {'name': 'SAP', 'permalink': 'sap'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'acquisition': {'price_amount': 168000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/22/orange-acquired-dailymotion-for-168-million-by-buying-out-the-remaining-51-stake/', 'source_description': 'Orange Acquired Dailymotion For $168 Million By Buying Out Remaining 51% Stake [Update: Orange Confirms]', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 22, 'acquiring_company': {'name': 'Orange', 'permalink': 'orange'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/dassault-systemes-acquires-netvibes-2012-02-09', 'source_description': 'Dassault Systemes Acquires Netvibes', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 9, 'acquiring_company': {'name': 'Dassault Systemes', 'permalink': 'dassault'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df8'), 'name': 'Flickr', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://news.cnet.com/Yahoo-buys-photo-sharing-site-Flickr/2100-1038_3-5627640.html?tag=mncol;txt', 'source_description': 'CNET', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': None, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df9'), 'name': 'BabyCenter', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.investor.jnj.com/releasedetail.cfm?releaseid=63836', 'source_description': 'Johnson & Johnson Acquires BabyCenter From eToys, Inc. Leading Online Destination for Parents Plans for Continued Expansion of Operations', 'acquired_year': 2001, 'acquired_month': 3, 'acquired_day': 2, 'acquiring_company': {'name': 'Johnson & Johnson', 'permalink': 'johnson-johnson'}}}]\n" + ] + } + ], + "source": [ + "results19 = list(collection.find({\"acquisition.acquired_month\": {\"$lt\": 4}}, {\"name\": 1, \"acquisition\": 1}).limit(10))\n", + "\n", + "print(len(results19))\n", + "print(results19)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 20. All the companies that have been founded between 2000 and 2010, but have not been acquired before 2011." + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "486\n" + ] + } + ], + "source": [ + "results20 = list(collection.find({\"$and\": \n", + " [{\"founded_year\": {\"$gte\": 2000}}, {\"founded_year\": {\"$lt\": 2011}}, \n", + " {\"acquisition.acquired_year\": {\"$gte\": 2011}}]}))\n", + "\n", + "print(len(results20))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/starter_code/queries.ipynb b/starter_code/queries.ipynb index 6eee69f..f6bbfe3 100644 --- a/starter_code/queries.ipynb +++ b/starter_code/queries.ipynb @@ -9,13 +9,28 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\OpenSSL\\crypto.py:1128: CryptographyDeprecationWarning: This version of cryptography contains a temporary pyOpenSSL fallback path. Upgrade pyOpenSSL now.\n", + " cert._x509 = crypto_cert._x509\n", + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\cryptography\\x509\\base.py:521: CryptographyDeprecationWarning: Parsed a negative serial number, which is disallowed by RFC 5280.\n", + " return rust_x509.load_der_x509_certificate(data)\n", + "C:\\Users\\tglhi\\Anaconda3\\lib\\site-packages\\cryptography\\hazmat\\backends\\openssl\\x509.py:17: CryptographyDeprecationWarning: This version of cryptography contains a temporary pyOpenSSL fallback path. Upgrade pyOpenSSL now.\n", + " utils.DeprecatedIn35,\n" + ] + } + ], "source": [ "from pymongo import MongoClient\n", - "client=MongoClient()\n", - "db=client.companies" + "client=MongoClient(\"mongodb+srv://TGLSpain1:Eespanya1@cluster0.yzpf2n4.mongodb.net/?retryWrites=true&w=majority\")\n", + "client.list_database_names()\n", + "db = client.crunchbase\n", + "collection = db.companies" ] }, { @@ -28,10 +43,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297da0'), 'name': 'Babelgum'}]\n" + ] + } + ], + "source": [ + "results1 = list(collection.find({\"name\": \"Babelgum\"}, {\"name\": 1}))\n", + "\n", + "print(results1)" + ] }, { "cell_type": "markdown", @@ -42,10 +69,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n", + "388000\n" + ] + } + ], + "source": [ + "results2 = list(collection.find({\"number_of_employees\": {\"$gt\": 5000}}).limit(20).sort(\"number_of_employees\", -1))\n", + " \n", + "print(results2)" + ] }, { "cell_type": "markdown", @@ -56,10 +96,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "3734\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d8c'), 'name': 'Zoho', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d8d'), 'name': 'Digg', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'name': 'Facebook', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297d8f'), 'name': 'Omnidrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297d95'), 'name': 'StumbleUpon', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297d96'), 'name': 'Gizmoz', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297d9a'), 'name': 'Helio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297da1'), 'name': 'Plaxo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297da5'), 'name': 'Technorati', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297da7'), 'name': 'AddThis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dac'), 'name': 'Veoh', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297daf'), 'name': 'Jingle Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db2'), 'name': 'Meetup', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db6'), 'name': 'Wesabe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db7'), 'name': 'Jangl SMS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297db8'), 'name': 'SmugMug', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297dbb'), 'name': 'Jajah', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dbc'), 'name': 'Skype', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dbd'), 'name': 'YouTube', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dc3'), 'name': 'Pando Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dc6'), 'name': 'Ikan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dc7'), 'name': 'delicious', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dc8'), 'name': 'Topix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297dc9'), 'name': 'Jobster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dcb'), 'name': 'Revision3', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dcc'), 'name': 'AllPeers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dd3'), 'name': 'iSkoot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dd5'), 'name': 'AllofMP3', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297dd9'), 'name': 'Steorn', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ddb'), 'name': 'MeeVee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297ddc'), 'name': 'blinkx', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dde'), 'name': 'ClipBlast!', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ddf'), 'name': 'Zlio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297de8'), 'name': 'Coghead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ded'), 'name': 'Farecast', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297def'), 'name': 'KickApps', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df3'), 'name': 'Instructables', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df5'), 'name': 'Swivel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df6'), 'name': 'Slide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df7'), 'name': 'Bebo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297df8'), 'name': 'Flickr', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297dfc'), 'name': 'TripHub', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297dfe'), 'name': 'FeedBurner', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e02'), 'name': 'Dogster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e03'), 'name': 'PBworks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e04'), 'name': 'Sway', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e05'), 'name': 'CornerWorld', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e06'), 'name': 'adBrite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e08'), 'name': 'Loomia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e09'), 'name': 'Meebo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e0b'), 'name': 'Newsvine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'name': 'LinkedIn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e0e'), 'name': 'Jamendo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e10'), 'name': 'Box', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e11'), 'name': 'iLike', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e15'), 'name': 'Conduit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e17'), 'name': 'Kaboodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e1a'), 'name': 'Wink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e1e'), 'name': 'TechnologyGuide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297e20'), 'name': 'Zvents', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e21'), 'name': 'MotionDSP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e22'), 'name': 'Techmeme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e23'), 'name': 'Eventful', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e25'), 'name': 'Oodle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e26'), 'name': 'oDesk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e27'), 'name': 'Simply Hired', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e28'), 'name': 'ooma', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e2e'), 'name': 'stylediary', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e32'), 'name': 'Vast', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297e33'), 'name': 'MyPublicInfo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e38'), 'name': 'PhotoBox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297e3a'), 'name': 'Spreadshirt', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e3b'), 'name': 'Socialtext', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e3c'), 'name': 'Bazaarvoice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e3d'), 'name': 'IceRocket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e3f'), 'name': 'barablu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e43'), 'name': 'Ohloh', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e45'), 'name': 'Clipperz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e47'), 'name': 'ScanScout', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4a'), 'name': 'Indeed', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e4b'), 'name': 'Jaxtr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4c'), 'name': 'Cerado', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297e4e'), 'name': 'ONEsite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e4f'), 'name': 'introNetworks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e57'), 'name': 'GoLightly', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e58'), 'name': 'eBuddy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e5b'), 'name': 'PeerMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e5c'), 'name': 'Kiptronic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e5e'), 'name': 'Zenfolio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e61'), 'name': 'Vuze', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6b'), 'name': 'PodTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6c'), 'name': 'NowPublic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e6e'), 'name': 'Crackle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e70'), 'name': 'Clipmarks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297e73'), 'name': 'Boonex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297e77'), 'name': 'Reddit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e7b'), 'name': 'BuddyTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e82'), 'name': 'Hightail', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e85'), 'name': 'TextPayMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e86'), 'name': 'obopay', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e88'), 'name': 'BillMonk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e8a'), 'name': 'TalkPlus', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e8b'), 'name': 'Vudu', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e90'), 'name': 'PermissionTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297e9a'), 'name': 'Kaneva', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e9b'), 'name': 'IMVU', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297e9f'), 'name': 'Userplane', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ea4'), 'name': 'Webkinz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ea9'), 'name': 'Sulake', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297eab'), 'name': 'Dubit', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297eac'), 'name': 'Viagogo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eaf'), 'name': 'Millsberry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297eb1'), 'name': 'GreatCall', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eb6'), 'name': 'SelectMinds', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297eb7'), 'name': 'Revver', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297eb9'), 'name': 'Metacafe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297eba'), 'name': 'MindTouch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ebb'), 'name': 'ChaCha', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ebc'), 'name': 'Flock', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ebf'), 'name': 'Kontera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ec4'), 'name': 'Curverider', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ec5'), 'name': 'MobiTV', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ec6'), 'name': 'TimeBridge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ed1'), 'name': 'Sampa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ed2'), 'name': 'Six Apart', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ed6'), 'name': 'BitTorrent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297edf'), 'name': 'Eventbee', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ee4'), 'name': 'GoFish', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ee6'), 'name': 'Kiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ee8'), 'name': 'PartnerUp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eeb'), 'name': 'Zopa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297eec'), 'name': 'Fathom Online', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297ef0'), 'name': 'SuicideGirls', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ef2'), 'name': 'ContextWeb', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297ef4'), 'name': 'Goowy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297ef5'), 'name': 'MySpace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ef8'), 'name': 'A9', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ef9'), 'name': 'Doostang', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297efa'), 'name': 'TechCrunch', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297efd'), 'name': 'ZoomInfo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f04'), 'name': 'Covestor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f05'), 'name': 'Mevio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f07'), 'name': 'Shock Treatment Management', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f08'), 'name': 'NewsGator', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f09'), 'name': 'Pluck', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f0b'), 'name': 'BitPass', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f12'), 'name': 'eHarmony', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f13'), 'name': 'Friendster', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f18'), 'name': 'Exabre', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f19'), 'name': 'ReachLocal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f1a'), 'name': 'Greystripe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f1b'), 'name': 'Trulia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f20'), 'name': 'Yeigo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f21'), 'name': 'DAVE Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f23'), 'name': 'Netblue', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f2a'), 'name': 'SpiralFrog', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f2e'), 'name': 'Multiply', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f35'), 'name': 'LimeLife', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f39'), 'name': 'Espotting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f3b'), 'name': 'MocoSpace', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f3c'), 'name': 'Adknowledge', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f3e'), 'name': 'airG', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f50'), 'name': 'BBE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f53'), 'name': 'Thumbplay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f54'), 'name': 'Fotolog', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f58'), 'name': 'Xfire', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f63'), 'name': 'Marchex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f6a'), 'name': 'MyHeritage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f6d'), 'name': 'Finetune', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f70'), 'name': 'OnForce', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f75'), 'name': 'SayNow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f79'), 'name': 'PixSense', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f7a'), 'name': 'ContactOffice', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297f7d'), 'name': 'Yugma', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f83'), 'name': 'imeem', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297f89'), 'name': 'Attributor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f8a'), 'name': 'ElephantDrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f8c'), 'name': 'Nemedia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297f8d'), 'name': '4INFO', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297f90'), 'name': 'Musicshake', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f95'), 'name': 'Jive Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297f98'), 'name': 'Mozy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297f99'), 'name': 'WooMe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297fa1'), 'name': 'Sertifi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa3'), 'name': 'Orgoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa4'), 'name': 'HylioSoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fa7'), 'name': 'Zerofootprint', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fa9'), 'name': 'PrepMe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675297fab'), 'name': 'Ceedo Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fac'), 'name': 'SmartHippo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fad'), 'name': 'Snoozester', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fb2'), 'name': 'in2apps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fb7'), 'name': 'Balihoo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fbb'), 'name': 'Smartsheet', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fbe'), 'name': 'ThisNext', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fc0'), 'name': 'Tumri', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fc5'), 'name': 'MuseStorm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fc8'), 'name': 'Eons', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fd6'), 'name': 'Cuil', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fd9'), 'name': 'Boomi', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675297fda'), 'name': 'mig33', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fe3'), 'name': 'mEgo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fe8'), 'name': 'CafeScribe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675297fe9'), 'name': 'StoryBlender', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fea'), 'name': 'Spoke', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675297fed'), 'name': 'Myxer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297fef'), 'name': 'Wirenode', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ff5'), 'name': 'Styky', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297ff8'), 'name': 'GroupSwim', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675297ffe'), 'name': 'Notemarks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675297fff'), 'name': 'Jiglu', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298005'), 'name': 'itsmylife', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529800a'), 'name': 'RingCentral', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529800d'), 'name': 'Moz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298013'), 'name': '3Jam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298015'), 'name': 'DocuSign', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529802f'), 'name': 'zSlide', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298031'), 'name': 'CityTherapy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298037'), 'name': 'VoodooVox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298039'), 'name': 'CondoDomain', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529803c'), 'name': 'RayV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298043'), 'name': 'YuMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298044'), 'name': 'Woophy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298047'), 'name': 'Treemo Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529804a'), 'name': 'Blurb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529804d'), 'name': 'Automattic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298058'), 'name': 'Phrasebase', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529805a'), 'name': 'Payoneer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529805c'), 'name': 'Shopatron', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529805e'), 'name': 'JackBe', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529805f'), 'name': 'EchoSign', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298060'), 'name': 'tyntec', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298063'), 'name': 'Simpy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298064'), 'name': 'Ubertor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529806a'), 'name': 'JobDig', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529806b'), 'name': 'Marakana', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298073'), 'name': 'Firetide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529807b'), 'name': 'Eurekster', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529807c'), 'name': 'OnLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298083'), 'name': 'Zattoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298084'), 'name': 'Baynote', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298086'), 'name': 'Taobao', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298087'), 'name': 'Alipay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298088'), 'name': 'Soonr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529808a'), 'name': 'GridNetworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529808b'), 'name': 'Quigo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298097'), 'name': 'Pelago', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298099'), 'name': 'Upcoming', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980a2'), 'name': 'Faves', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980a4'), 'name': 'mDialog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980a7'), 'name': 'BrainKeeper', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980a8'), 'name': 'Evi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ac'), 'name': 'Casero', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752980ad'), 'name': 'MerchantCircle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ae'), 'name': 'Minekey', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980af'), 'name': 'Compete', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752980b2'), 'name': 'Chintano', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980b9'), 'name': 'StreetFire', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980ba'), 'name': 'Turn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980bd'), 'name': 'Loopt', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980cd'), 'name': 'Congoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980d1'), 'name': 'Springbox', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980d4'), 'name': 'Optimost', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752980d5'), 'name': 'uShip', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980d6'), 'name': 'Vobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980d7'), 'name': 'Vivox', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980ed'), 'name': 'Bloglines', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752980f4'), 'name': 'Frappr', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752980f8'), 'name': 'LinkStorm', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752980f9'), 'name': 'Zoji', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752980fa'), 'name': 'Worktopia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298101'), 'name': 'iStockphoto', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298103'), 'name': 'Verican', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298104'), 'name': 'FiveRuns', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298107'), 'name': 'beRecruited', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529810c'), 'name': 'ProductWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529810f'), 'name': 'Splunk', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298110'), 'name': 'LucidEra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298114'), 'name': 'Localeze', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298117'), 'name': 'xkoto', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529811f'), 'name': 'YouOS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298127'), 'name': 'Seeqpod', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529812e'), 'name': 'Yodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298131'), 'name': 'Snapvine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298134'), 'name': 'betNOW', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298135'), 'name': 'eyeOS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529813b'), 'name': 'Kewego', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529813f'), 'name': 'Vidyo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298142'), 'name': 'Intronis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298149'), 'name': 'Criticker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298150'), 'name': 'TradeKing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298151'), 'name': 'Viadeo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298157'), 'name': 'FastBooking', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298159'), 'name': 'GrubHub', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529815a'), 'name': 'Skyscanner', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529815c'), 'name': 'Iotum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298162'), 'name': 'Vemo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298163'), 'name': 'Smilebox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298166'), 'name': 'Hakia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298168'), 'name': 'Kosmix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529816d'), 'name': 'Ribbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529816e'), 'name': 'BustedTees', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529816f'), 'name': 'Jobvite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298171'), 'name': 'Squidoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298173'), 'name': 'Streamezzo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298175'), 'name': 'Vyew', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529817d'), 'name': 'PlayFirst', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298180'), 'name': 'Deem', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298181'), 'name': 'CDNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298183'), 'name': 'KAYAK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298184'), 'name': 'Mobissimo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298187'), 'name': 'Chumby', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298188'), 'name': 'GlobalGiving', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529818a'), 'name': 'GridPoint', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529818c'), 'name': 'HelioVolt', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529818d'), 'name': 'Etsy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298190'), 'name': 'Atlassian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298192'), 'name': 'Nanosolar', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298195'), 'name': 'Shozu', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298196'), 'name': 'EditGrid', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298198'), 'name': 'Tesla Motors', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529819a'), 'name': 'Fotolia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529819d'), 'name': 'Bunchball', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529819f'), 'name': 'SimulScribe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981a5'), 'name': 'Truveo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981a7'), 'name': 'TripAdvisor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752981ae'), 'name': 'LifeOnKey', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981b2'), 'name': 'jellyfish', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981ba'), 'name': 'SugarCRM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981c3'), 'name': 'Jobfox', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981c4'), 'name': 'Critical Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752981c8'), 'name': 'ARPU', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981cd'), 'name': 'Joyent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981cf'), 'name': 'Woot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981d6'), 'name': 'SuccessFactors', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752981d7'), 'name': 'fabrik', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981dd'), 'name': 'yoonew', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752981de'), 'name': 'Oversee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752981e2'), 'name': 'Enforta', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752981e5'), 'name': 'WAYN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752981ea'), 'name': 'Smaato', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981f1'), 'name': 'Jellyvision', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752981f3'), 'name': 'Mumboe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752981ff'), 'name': 'ReimagineMemories', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298202'), 'name': 'XING', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298204'), 'name': 'Criteo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298207'), 'name': 'Amobee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298208'), 'name': 'Visible Measures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529820d'), 'name': 'Adchemy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298217'), 'name': '5pm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298224'), 'name': 'IPRO', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298229'), 'name': 'Spout', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298237'), 'name': 'Maugans Corp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298238'), 'name': 'BreakingPoint Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298239'), 'name': 'iModules Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529823a'), 'name': 'Senokian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529823c'), 'name': 'Relenta', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529823f'), 'name': 'HonestMall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298243'), 'name': 'VerticalCurve', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298245'), 'name': ']project-open[', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529824d'), 'name': 'Citrix Online', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529824e'), 'name': 'EnterpriseDB', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298251'), 'name': 'MerchantOS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298252'), 'name': 'SimpleFeed', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298253'), 'name': 'eNotes', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298258'), 'name': 'Survey Analytics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529825d'), 'name': 'b5media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529825e'), 'name': 'Gawker Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529825f'), 'name': 'Weblogs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298264'), 'name': 'Autonet Mobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298266'), 'name': 'Openomy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298270'), 'name': 'Vaakya Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298272'), 'name': 'skinnyCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298273'), 'name': 'Sikka Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298275'), 'name': 'FUPEI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298277'), 'name': 'Collarity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529827c'), 'name': 'Inside', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298283'), 'name': 'Mininova', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298284'), 'name': 'apivision', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298287'), 'name': 'Bia2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529828f'), 'name': 'Gliffy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298291'), 'name': 'Mobiance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298292'), 'name': 'Brownstoner Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298297'), 'name': 'TravelGator', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982a1'), 'name': 'PathConnect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982a4'), 'name': 'Booyah Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982a6'), 'name': 'GameDuell', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982ac'), 'name': 'Neotonic Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982ad'), 'name': 'Bungee Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982af'), 'name': 'Yodio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982bc'), 'name': 'Principal Axis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982bf'), 'name': 'eTeacher', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982c5'), 'name': 'uVuMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982c6'), 'name': 'Qype', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982c8'), 'name': 'RankOne Media Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982c9'), 'name': 'Escapia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752982ce'), 'name': 'Snap Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982d0'), 'name': 'Clicks2Customers', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982d6'), 'name': 'PicScout', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982d7'), 'name': 'Three Rings', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982d8'), 'name': 'UnsubCentral', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982dc'), 'name': 'ChoiceStream', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752982de'), 'name': 'Recombinant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982e2'), 'name': 'Smalltown', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982e8'), 'name': 'LibraryThing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982ea'), 'name': 'Lulu Press', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752982ee'), 'name': 'aSmallWorld', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752982f1'), 'name': 'TheLadders', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752982f4'), 'name': 'Cellfire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982f6'), 'name': 'HomeAway', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752982f8'), 'name': 'A1Vacations', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298302'), 'name': 'Gorilla Nation Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298306'), 'name': 'Audio Lunchbox', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529830b'), 'name': 'MOG', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529830f'), 'name': 'LiveUniverse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298312'), 'name': 'Betfair', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298313'), 'name': 'ShareMethods', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298318'), 'name': 'SiteSpect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298320'), 'name': 'Silobreaker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298325'), 'name': 'AskPoodle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298326'), 'name': 'Scary Ideas', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298328'), 'name': 'Skyrove', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529832d'), 'name': 'Coverity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529832e'), 'name': 'Fortify Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298334'), 'name': 'FaceTec', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298336'), 'name': 'Maktoob', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529833b'), 'name': 'Ownersite Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298345'), 'name': 'ePrep', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298349'), 'name': 'SnapNames', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529834a'), 'name': 'Opinity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298351'), 'name': 'EnergyWeb Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298352'), 'name': 'Online-Access', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298354'), 'name': 'Exalead', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298359'), 'name': 'Motionplan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298360'), 'name': 'MediaTrust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298366'), 'name': 'Hotwire', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529836c'), 'name': 'Agematis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298372'), 'name': 'kelDOM', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298379'), 'name': 'Pentaho', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529837b'), 'name': 'StubHub', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298381'), 'name': 'Project10X', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298382'), 'name': 'Evernote', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298383'), 'name': 'Y Combinator', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529838c'), 'name': 'HipLogic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298394'), 'name': 'Swarmcast', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298397'), 'name': 'Ad Infuse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298398'), 'name': 'Inform Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529839f'), 'name': 'Ephox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752983a2'), 'name': 'Sxoop Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983aa'), 'name': 'Realtime Applications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983b2'), 'name': 'Tiny Pictures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983b4'), 'name': 'Zorpia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983bc'), 'name': 'Flurry', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983c3'), 'name': 'Animax Entertainment', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752983c5'), 'name': '2threads', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983c7'), 'name': 'SugarSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983cc'), 'name': 'Phorm', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752983cf'), 'name': 'Teneros', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983d3'), 'name': 'EMOB', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983d5'), 'name': 'Leverage Card', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983dc'), 'name': 'Kazeon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983e1'), 'name': 'Mochila', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752983e8'), 'name': 'Fibre2fashion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752983ea'), 'name': 'YaData', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f0'), 'name': 'AnswerBag', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752983f5'), 'name': 'Tinypic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f6'), 'name': 'Quintura', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983f7'), 'name': 'Clusty', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752983fd'), 'name': 'Panther Express', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752983ff'), 'name': 'E-junkie', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298400'), 'name': 'PayLoadz', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529840b'), 'name': 'Right Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529840d'), 'name': 'Volagratis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298414'), 'name': 'Myrimis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298417'), 'name': 'Webtronic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529841d'), 'name': 'FreshBooks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529841e'), 'name': 'Central Desktop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298429'), 'name': 'The Media Kitchen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529842c'), 'name': 'EASEUS', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529842e'), 'name': 'Tectura', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298436'), 'name': 'I-stats', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298438'), 'name': 'FatPort', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529843a'), 'name': 'AtomicOnline', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298441'), 'name': 'Phreesia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298443'), 'name': 'Boonty', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298444'), 'name': 'Sportgenic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529844d'), 'name': 'Mapicurious', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298455'), 'name': 'Printfection', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298457'), 'name': 'Ifbyphone', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298458'), 'name': 'Grasshopper', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529845d'), 'name': 'Generate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298460'), 'name': 'OpenDNS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298461'), 'name': 'Paxfire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298463'), 'name': 'Kareo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298465'), 'name': 'Digital-Telepathy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298467'), 'name': 'Pidgin Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529846a'), 'name': 'VZnet Netzwerke', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529846d'), 'name': 'Astrails', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529846e'), 'name': 'GoodBarry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298474'), 'name': 'Participatory Culture Foundation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298479'), 'name': 'Aidmas Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529847a'), 'name': 'Kulabyte', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298480'), 'name': 'Relevad', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298484'), 'name': 'Coveo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529848b'), 'name': 'PresenterNet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298495'), 'name': 'Atlantic Metro Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298499'), 'name': 'PacketFront', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529849a'), 'name': 'ShoutWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984a5'), 'name': 'PI Corporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984b1'), 'name': 'Mobenga', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984c0'), 'name': 'AirTight Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984c1'), 'name': 'WiSpry', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984c7'), 'name': 'Vidient', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984cb'), 'name': 'KeyEye Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752984cc'), 'name': 'LiveOps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752984d2'), 'name': 'Janrain', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984d4'), 'name': 'SearchMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984d6'), 'name': 'PointRoll', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752984de'), 'name': 'Imperva', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e0'), 'name': 'Posit Science', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e1'), 'name': 'Sabrix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e2'), 'name': 'AccountNow', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984e5'), 'name': 'EveryScape', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752984e7'), 'name': 'TalkShoe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984e8'), 'name': 'Voxiva', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752984e9'), 'name': 'Workday', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984ee'), 'name': 'Skyhook Wireless', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984f3'), 'name': 'Revolution Health', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752984f5'), 'name': 'Cognitive Labs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752984f6'), 'name': 'PopularMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752984fb'), 'name': 'Clarizen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529850b'), 'name': 'JobThread', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529850e'), 'name': 'Workcircle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298510'), 'name': 'NeoEdge Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298515'), 'name': 'Jelsoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298516'), 'name': 'Invision Power Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529851e'), 'name': 'TeamWork Live', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298526'), 'name': 'Arclight Media Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529852c'), 'name': 'Sedo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298536'), 'name': 'Voltage Security', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298538'), 'name': 'Star Analytics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298539'), 'name': 'Aria Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529853a'), 'name': 'Cenzic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529853e'), 'name': 'Replay Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298540'), 'name': 'SupplyFrame', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298541'), 'name': 'Scalent Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298542'), 'name': 'InMage Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298543'), 'name': 'SignalDemand', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298547'), 'name': 'Authenticlick', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298549'), 'name': 'Webpass', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529854b'), 'name': 'MyBlogLog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529854e'), 'name': 'CitySquares', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529855e'), 'name': 'Planypus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298560'), 'name': 'Virtualmin', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298565'), 'name': 'Socialmoth', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298566'), 'name': 'Snipshot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298581'), 'name': 'Ecommerce Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298587'), 'name': 'WebVisible', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529858a'), 'name': 'Akampus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529858d'), 'name': 'Toufee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298598'), 'name': 'Xtenza Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529859b'), 'name': 'SIMchronise', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529859e'), 'name': 'Athena Archiver', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985a5'), 'name': 'liveBooks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985aa'), 'name': 'AdEngage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985ab'), 'name': 'BlogCatalog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985af'), 'name': 'Zebtab', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985bd'), 'name': 'Music Arsenal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985bf'), 'name': 'Glaxstar', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752985c1'), 'name': 'SonicSwap', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752985c4'), 'name': 'Adconion Media Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985c8'), 'name': 'Shvoong', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985c9'), 'name': 'Gecad Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752985d1'), 'name': 'GoToMeeting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985d2'), 'name': 'Liftopia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985d7'), 'name': 'AnchorFree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985db'), 'name': 'Greater Than One', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752985e6'), 'name': 'Aternity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985e9'), 'name': 'Total Server Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985ed'), 'name': 'Reprise Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752985ee'), 'name': 'ChipIn', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985f3'), 'name': 'ContentNext Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752985f6'), 'name': 'MosaicGlobe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752985f8'), 'name': 'Webreakstuff', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985fe'), 'name': 'Devolia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752985ff'), 'name': 'Wellwrittenwords', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529860b'), 'name': 'GotVoice', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529860d'), 'name': 'BlogFlux', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298624'), 'name': 'Carsonified', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529862a'), 'name': 'CLEAR', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529862c'), 'name': 'MODERO GROUP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529862e'), 'name': 'Parature', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298631'), 'name': '7digital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298645'), 'name': 'SET Consulting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298650'), 'name': 'Wikimedia Foundation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298655'), 'name': 'Wiredset', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298657'), 'name': 'Cemaphore Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529865a'), 'name': 'Become', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529865d'), 'name': 'BlueCat Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298666'), 'name': 'The Echo Nest', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298669'), 'name': 'vFlyer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529866c'), 'name': 'BeInSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298672'), 'name': 'iovation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298680'), 'name': 'ki work', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298684'), 'name': 'Skycore', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298685'), 'name': 'Game Trust', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298687'), 'name': 'Datacraft Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529868c'), 'name': 'Realtime Worlds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529868e'), 'name': 'Berkeley Design Automation', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298697'), 'name': 'Achievers Point Knowledge Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529869c'), 'name': '3Tera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986a0'), 'name': 'Attentio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986a3'), 'name': 'LunarStorm UK', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986a5'), 'name': 'Eyeline Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986a6'), 'name': 'Minggl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986a7'), 'name': 'Netlog', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986a9'), 'name': 'PHPCow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986b0'), 'name': 'Cellufun', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986b1'), 'name': 'Xoopit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986b2'), 'name': 'Spain Holiday', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986b8'), 'name': 'Reality Digital', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986b9'), 'name': 'Satori Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986bb'), 'name': 'Q-Layer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986bf'), 'name': 'Franson Technology AB', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986c1'), 'name': 'Adlucent', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986c9'), 'name': 'Designing Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752986cb'), 'name': 'Placecast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986ce'), 'name': 'Meck Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986d2'), 'name': 'Kudzu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986d4'), 'name': 'TheNextBigWriter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986d7'), 'name': 'Wists', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752986dd'), 'name': 'RiDE Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986e5'), 'name': 'Glasses Direct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752986e7'), 'name': 'ProActive Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752986e8'), 'name': 'Notanant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752986ee'), 'name': 'Avisena', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752986fc'), 'name': 'Undertone', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529871f'), 'name': 'Austhink Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529872c'), 'name': 'Zong', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298737'), 'name': 'GuardianEdge Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298738'), 'name': 'FoxyTunes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529873e'), 'name': 'Odeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298740'), 'name': 'Cellfish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298747'), 'name': 'Health-Smart', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298748'), 'name': 'Pure Digital Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529874a'), 'name': 'Axosoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd67529874b'), 'name': 'SoftLogica', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529874c'), 'name': 'Jotlet', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529874d'), 'name': 'Trellon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298751'), 'name': 'Enomaly', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298759'), 'name': 'Trampoline Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529875c'), 'name': 'SiBEAM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529875e'), 'name': '83 Degrees', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298762'), 'name': 'Tideway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298764'), 'name': 'SearchForce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298766'), 'name': '1938 Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298769'), 'name': 'Velocix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529876c'), 'name': 'Support Intelligence', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529876e'), 'name': 'Sogeti USA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298772'), 'name': 'Boxbe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298777'), 'name': 'Univa UD', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298778'), 'name': 'Honeypot Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529877d'), 'name': 'Artabase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529877e'), 'name': 'Alex Gorney Web Development', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd67529877f'), 'name': 'Acme Mobile', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298780'), 'name': 'Moviestorm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298781'), 'name': 'Rollyo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298783'), 'name': 'Fourth Media Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298789'), 'name': 'MediaWhiz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298797'), 'name': 'Spleak', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987a4'), 'name': 'Berro', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987a5'), 'name': 'PixelCrayons', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987a8'), 'name': 'mediaFORGE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987ae'), 'name': 'LocalWineEvents', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987af'), 'name': 'Logicalware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987b7'), 'name': 'Palamida', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987bb'), 'name': 'Blinksale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987bd'), 'name': 'Creative Commons', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987c4'), 'name': 'Plentyoffish', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987ca'), 'name': 'Seattle Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987cb'), 'name': 'Campusbug', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd6752987d0'), 'name': 'Fubra', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987d1'), 'name': 'eMomentum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987d4'), 'name': 'OnOneMap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987d6'), 'name': 'Visible Theory', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987d7'), 'name': 'HowtoForge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987db'), 'name': 'UnitedLayer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987dc'), 'name': 'LearnItFirst', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987e0'), 'name': 'ServePath', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd6752987e1'), 'name': 'Janmedia Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd6752987e8'), 'name': 'ProjectLocker', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd6752987eb'), 'name': 'Pipl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987f3'), 'name': 'alaTest', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987f9'), 'name': 'The Beer Mapping Project', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd6752987fb'), 'name': 'eVIPlist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd6752987fc'), 'name': 'ArticleAlley', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529880d'), 'name': 'BMAT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298811'), 'name': 'Mercury Intermedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298812'), 'name': 'AdXpose', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298819'), 'name': 'Splendia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298821'), 'name': 'Visible World', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298826'), 'name': 'Memeo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529882e'), 'name': 'ReefEdge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298836'), 'name': 'MailChimp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298837'), 'name': 'Globant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529883b'), 'name': 'ImageShack', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd67529883c'), 'name': 'RealMatch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529883d'), 'name': 'Collective Intellect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd67529883f'), 'name': 'Beep Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298841'), 'name': 'AdShuffle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298842'), 'name': 'General Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298845'), 'name': 'Red Oxygen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7c4bab8bd675298846'), 'name': 'ExitReality', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298848'), 'name': 'W3Counter', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529884a'), 'name': 'Mirror42', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd67529884c'), 'name': 'blogads', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd67529885e'), 'name': 'Medioh!', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298860'), 'name': 'LOVEFiLM', 'founded_year': 2003}, {'_id': ObjectId('52cdef7c4bab8bd675298861'), 'name': 'Crazymenu', 'founded_year': 2005}, {'_id': ObjectId('52cdef7c4bab8bd675298862'), 'name': 'Rate Beer', 'founded_year': 2000}, {'_id': ObjectId('52cdef7c4bab8bd675298882'), 'name': 'eInnovative Consultants', 'founded_year': 2004}, {'_id': ObjectId('52cdef7c4bab8bd675298886'), 'name': 'Wayfair', 'founded_year': 2002}, {'_id': ObjectId('52cdef7c4bab8bd675298887'), 'name': '3tailer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298891'), 'name': 'Nexopia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298894'), 'name': 'Fog Creek Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988a4'), 'name': 'Yendo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752988a8'), 'name': 'Lexalytics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752988aa'), 'name': 'Scanbuy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988b1'), 'name': 'Interarbor Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752988b3'), 'name': 'Modera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988b7'), 'name': 'Rising Sun Research', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988bc'), 'name': 'Superblock', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752988d3'), 'name': 'SQLstream', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752988de'), 'name': 'Voices', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752988e1'), 'name': 'JobScore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752988e4'), 'name': 'PIER Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752988ed'), 'name': 'Gameware Development', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752988f2'), 'name': 'RelevantView', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752988fb'), 'name': 'Android', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298901'), 'name': 'AF Telecom Sarl', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529890a'), 'name': 'Amanager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298925'), 'name': 'InvenSense', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529892d'), 'name': 'Sony BMG Music Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298938'), 'name': 'Innovolt', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298940'), 'name': 'The Icon Factory', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298945'), 'name': 'TraceWorks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529894d'), 'name': 'UNYK', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298950'), 'name': 'BioWizard', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298955'), 'name': 'Mind Candy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298957'), 'name': 'AllMyData', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298959'), 'name': 'TicketLeap', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529895a'), 'name': 'kajeet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529895b'), 'name': 'SilverStripe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529895c'), 'name': 'Fotolink Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529895e'), 'name': 'Inovatis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529895f'), 'name': 'AVIS eSolutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298966'), 'name': 'Velocify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298976'), 'name': 'FusionOps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529897a'), 'name': 'Foldera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529897f'), 'name': 'PatientsLikeMe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298989'), 'name': 'Xerpi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298995'), 'name': 'TrustMe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298996'), 'name': 'iNET Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752989a4'), 'name': 'PhaseWare', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752989a5'), 'name': 'Hush Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989b5'), 'name': 'YourTechOnline', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989c1'), 'name': 'Skyrider', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989cd'), 'name': 'Phi Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d1'), 'name': 'Control4', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989d2'), 'name': 'IPEVO', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d4'), 'name': 'Fantasy Sports Matrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989d9'), 'name': 'ChatAny', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989da'), 'name': 'Traffic Broker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752989e0'), 'name': 'Talend', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989ed'), 'name': 'GoMobo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989f4'), 'name': 'Musopen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752989f5'), 'name': 'Catzilla', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752989f9'), 'name': 'Segala', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752989fb'), 'name': '3Dynamics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a01'), 'name': 'IMAGE202 ENTERTAINMENT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a06'), 'name': 'ExpertFlyer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a0e'), 'name': 'dotMobi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a12'), 'name': 'Boardwalktech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a15'), 'name': 'hosting365', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a22'), 'name': 'Andera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a25'), 'name': 'Boulevard R', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a27'), 'name': 'ClairMail', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a2c'), 'name': 'Waleg', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298a35'), 'name': 'BioIQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a41'), 'name': 'Swamp Fox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a43'), 'name': 'TouchLocal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a49'), 'name': 'Facilitas', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a4b'), 'name': 'GuardID', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a4e'), 'name': 'Dilithium Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a50'), 'name': 'Passenger', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a52'), 'name': 'IP Commerce', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a55'), 'name': 'SimpleTuition', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a57'), 'name': 'Tyfone', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a63'), 'name': 'Accoona', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298a69'), 'name': 'Efficient Frontier', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a6c'), 'name': 'Textensor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a6f'), 'name': 'Esendex', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a71'), 'name': 'Mozes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a7d'), 'name': 'PearBudget', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298a84'), 'name': 'VirtualLogix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298a8b'), 'name': 'TrafficZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a90'), 'name': 'Futurlink', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298a92'), 'name': 'Hypertag', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a94'), 'name': 'Dezide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a97'), 'name': 'Drawloop Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298a98'), 'name': 'Sawfish Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298a9a'), 'name': 'Cognition Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aa0'), 'name': 'Raydiance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298aa7'), 'name': 'OwnersRentals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aac'), 'name': 'VoipReview', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298aaf'), 'name': 'Tiny Prints', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ab1'), 'name': 'TerraPass', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298abe'), 'name': 'U Sphere', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ac2'), 'name': 'SilkRoad Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298ac8'), 'name': 'NetworthIQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298acb'), 'name': 'Zedge', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298acc'), 'name': 'deviantART', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ad1'), 'name': 'myThings', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ad3'), 'name': 'VivoCom', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ad4'), 'name': 'mpw Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298ad9'), 'name': 'Splice Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ada'), 'name': 'WrapMail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298adc'), 'name': 'Crunchlabz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298adf'), 'name': 'ACT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae1'), 'name': 'mywaves', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae3'), 'name': 'NextBio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ae4'), 'name': 'Parascale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ae7'), 'name': 'Aquantia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ae9'), 'name': 'financial crossing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298aed'), 'name': 'Pixaria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298af4'), 'name': 'Bluetise', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b00'), 'name': 'Elite Renting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b05'), 'name': 'ClearContext', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b0a'), 'name': 'Nectil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b0e'), 'name': 'Geary Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b10'), 'name': 'ITSportsNet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b1d'), 'name': 'OpenCircle', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b1e'), 'name': 'GameFly', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b1f'), 'name': 'Ztail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b26'), 'name': 'AirCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b29'), 'name': 'Row44', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b2b'), 'name': 'Aster Data Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b2d'), 'name': 'iConclude', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b31'), 'name': 'Atmail', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b33'), 'name': 'MediaRush', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b39'), 'name': 'Lightfleet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b3a'), 'name': 'Fliqz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b3c'), 'name': 'TechMeridian', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b3d'), 'name': 'Roku', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b3e'), 'name': 'Asankya', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b43'), 'name': 'Funambol', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b49'), 'name': 'Pingability', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b4a'), 'name': 'Batipi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b4f'), 'name': 'eBureau', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b52'), 'name': 'Moblyng', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b57'), 'name': 'Hymotion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b58'), 'name': 'Loyalty Matrix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b5d'), 'name': 'ExpertsYard', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b60'), 'name': 'Sirtris Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b63'), 'name': 'TinyURL', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298b68'), 'name': 'Jitterbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b6a'), 'name': 'AtHoc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b6d'), 'name': 'Global Property Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b73'), 'name': 'EnterMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b79'), 'name': 'Skalfa', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b8a'), 'name': 'SaleHoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298b8c'), 'name': 'NearU Search', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298b8d'), 'name': 'CompareNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b8e'), 'name': 'Sxip Identity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298b97'), 'name': 'sph3re', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298b99'), 'name': 'Accenture', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298b9d'), 'name': 'Stockhouse', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298bb0'), 'name': 'iBiz Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bb3'), 'name': 'OneMoreLevel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bb5'), 'name': 'C4Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bb8'), 'name': 'Vocio', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bb9'), 'name': 'Electrostate', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298bbb'), 'name': 'BrightDoor Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bbe'), 'name': 'iWin', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bc0'), 'name': 'SmokeJumper Strategy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298bc1'), 'name': 'Savvy Cellar Wines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298bd3'), 'name': 'InterGraphicDESIGNS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298bd9'), 'name': 'PurePlay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298bda'), 'name': 'Aruspex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298bde'), 'name': 'AdapDev IT Web Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298be1'), 'name': 'Rove', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298be2'), 'name': 'Sputnik', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bf9'), 'name': 'Cloudmark', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298bfb'), 'name': 'Soundflavor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c01'), 'name': 'IndieFlix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c03'), 'name': 'Enterprise Concept', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c06'), 'name': 'BelAir Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c09'), 'name': 'Vaultus Mobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c0a'), 'name': 'Handmark', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c16'), 'name': 'Aptera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c18'), 'name': 'Market Sentinel', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c19'), 'name': 'Fabric Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298c1a'), 'name': 'Neo Code Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c1b'), 'name': 'The Television Writers Vault', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c1c'), 'name': 'Invensis Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c1d'), 'name': 'Aedgency', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c20'), 'name': 'RMW Web Publishing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c21'), 'name': 'Blogpire Productions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c22'), 'name': 'Xtract', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298c2a'), 'name': 'M:Metrics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c2b'), 'name': 'Teresis Media Management', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298c2f'), 'name': 'B-hive Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c33'), 'name': 'Monsoon Multimedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c34'), 'name': 'zebraspot design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c35'), 'name': 'FanDriveMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c37'), 'name': 'Elevator Up', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c3a'), 'name': 'Dohop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c3b'), 'name': 'Versaly Entertainment', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c44'), 'name': 'TNR Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c47'), 'name': 'Intelius', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c4e'), 'name': 'ViewScore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c61'), 'name': 'TeleFlip', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c65'), 'name': 'Niwango', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c78'), 'name': 'MissGift', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298c7d'), 'name': 'Jigsaw', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c86'), 'name': 'Ozmo Devices', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298c8f'), 'name': 'Lookeen', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298c90'), 'name': 'No Star Clothing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c92'), 'name': 'Navic Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298c9e'), 'name': 'Medallia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ca8'), 'name': 'YTB', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ca9'), 'name': 'Inertia Beverage Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298caa'), 'name': 'TuneCore', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cad'), 'name': 'Internet Mall', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cb5'), 'name': 'Avaya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cbc'), 'name': 'FoxyMelody', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cbd'), 'name': 'COMSHARP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cc1'), 'name': 'Vindicia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298cc3'), 'name': 'WSO2', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cd3'), 'name': 'Limbo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cd4'), 'name': 'Beweb', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298cd8'), 'name': 'G2 SwitchWorks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298cdd'), 'name': 'Macronimous Web Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ced'), 'name': 'LyricFind', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cf0'), 'name': 'AtTask', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298cf7'), 'name': 'AFrame Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298cf9'), 'name': 'ClickandBuy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298cfa'), 'name': 'Mobile Rider', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d11'), 'name': 'Intelliworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d12'), 'name': 'BrightSource Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d1a'), 'name': 'Betaface', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d1e'), 'name': 'iePlexus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d1f'), 'name': 'SpaBoom', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d23'), 'name': 'Phonerental', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d31'), 'name': 'Groove Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d33'), 'name': 'H-care', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d36'), 'name': 'GuestLogix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298d37'), 'name': 'Pivot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d38'), 'name': 'XRackPro', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d40'), 'name': 'Solomodels', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d41'), 'name': 'Sense Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d53'), 'name': 'Cyber Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d55'), 'name': 'K9Poker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d5b'), 'name': 'Infusionsoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d5f'), 'name': 'Practice Fusion', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d63'), 'name': 'Birthday Alarm', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d66'), 'name': 'be2', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d6a'), 'name': 'zanox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298d6d'), 'name': 'Tribe', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d6e'), 'name': 'Nimbit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d70'), 'name': 'HireVue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d75'), 'name': 'Tipo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d7a'), 'name': 'Codefast', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d7e'), 'name': 'RRD USA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298d82'), 'name': 'Lingro', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d89'), 'name': 'HealthiNation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298d8a'), 'name': 'TOA Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d91'), 'name': 'Just Landed', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d93'), 'name': 'Storagepipe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298d95'), 'name': 'Universal Clients', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298d98'), 'name': 'Firefly Energy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298da1'), 'name': 'Socialcast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298da7'), 'name': 'EpikOne', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298da9'), 'name': 'AttendEase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298daf'), 'name': 'Hyperic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298db0'), 'name': 'Zenoss', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dd2'), 'name': 'MANHUNT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298dd3'), 'name': 'OnlineBootyCall', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298dd4'), 'name': 'SocialBang', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dd8'), 'name': 'AnotherFriend', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298dda'), 'name': 'Stardoll', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298dde'), 'name': 'Gratis Internet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298de3'), 'name': 'Optaros', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298de4'), 'name': 'White Label Dating', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298de6'), 'name': 'Meetic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298deb'), 'name': 'Palbee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ded'), 'name': 'Projity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298dee'), 'name': 'Blooloop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298def'), 'name': 'Mapufacture', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298dfe'), 'name': 'Zulu Creative', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e04'), 'name': 'Replay Poker', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e0e'), 'name': 'Vitrium Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e15'), 'name': 'Boxee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e1d'), 'name': 'Acronis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e1e'), 'name': 'Exinda', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e1f'), 'name': 'Barracuda Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e20'), 'name': 'Astaro', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e3b'), 'name': 'TechColumbus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e3f'), 'name': 'InkHead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e40'), 'name': 'Flex2go', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e44'), 'name': 'iMediaBlitz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e53'), 'name': 'AskMeNow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e58'), 'name': 'InQuira', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e61'), 'name': 'Razz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298e64'), 'name': 'InsideView', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298e66'), 'name': 'Xcerion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e6a'), 'name': 'ViewNow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e6f'), 'name': 'Bazaar Advertising Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e71'), 'name': 'LogicalApps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298e73'), 'name': 'Media Bloggers Association', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e76'), 'name': 'Uniblue', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298e7a'), 'name': 'Forcestream', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298e7b'), 'name': 'UNOS Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e7e'), 'name': '1915 Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298e83'), 'name': 'FlipDog', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298ea0'), 'name': 'CPXi', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ea5'), 'name': 'HIRO Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb0'), 'name': 'SpikeSource', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb4'), 'name': 'BTRCL', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298eb6'), 'name': 'Blueprint Software Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ebf'), 'name': 'Faulkner Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ec0'), 'name': 'MyTickets', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ec1'), 'name': 'HIGH-SPEED SOLUTIONS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298ec3'), 'name': 'CrestaTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ecb'), 'name': 'Vodaco Web Strategies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298ed1'), 'name': 'GBA Internet Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ed4'), 'name': 'Textic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298edf'), 'name': 'Hoteliers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ee2'), 'name': 'NameMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ee6'), 'name': 'Remember The Milk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ee8'), 'name': 'NOLOH', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298eea'), 'name': 'RIM Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ef1'), 'name': 'GSA Technology Council', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298eff'), 'name': 'Nxtbook Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f02'), 'name': 'Samba Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f03'), 'name': 'Alereon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f05'), 'name': 'Cequel III', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f10'), 'name': 'BuiBase', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f14'), 'name': 'RoboDynamics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f17'), 'name': 'Ensign Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f1d'), 'name': 'Easyflirt', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298f24'), 'name': 'Roottori', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f28'), 'name': 'Dieyes', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f35'), 'name': 'Bluehost', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f3a'), 'name': 'LicenseStream', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f3c'), 'name': 'Info-Tech Assist', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f3e'), 'name': 'PodOmatic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f42'), 'name': 'OkCupid', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f4d'), 'name': 'rPath', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f50'), 'name': 'NativeBroadcast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f53'), 'name': 'MarkLogic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f60'), 'name': 'Tangivel', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298f61'), 'name': 'Gammoth', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298f63'), 'name': 'Freeportway', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298f65'), 'name': 'Unspace Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f81'), 'name': 'Manticore Technology', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298f8b'), 'name': 'SageTV', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f8d'), 'name': 'Photobucket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f8e'), 'name': 'Blue Sky Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298f91'), 'name': 'Jedox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298f94'), 'name': 'Mobile Trend', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298f9e'), 'name': 'Armjisoft Digital Rights Management Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fa0'), 'name': 'Mendix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fa1'), 'name': 'UseGIS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fa5'), 'name': 'Troux Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298fa8'), 'name': 'JLOOP Rich Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fb1'), 'name': 'Mobile Data Now', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675298fb3'), 'name': 'FireID', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fb4'), 'name': 'MobiComp', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fb7'), 'name': 'Ounce Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fbb'), 'name': 'Clupedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fc1'), 'name': 'Jobitorial', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298fc4'), 'name': 'LeafsOfTalent', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fd3'), 'name': 'Siteheart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fd6'), 'name': 'Pelican Crossing', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675298fdb'), 'name': 'Popkomm', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298fe4'), 'name': 'thePlatform', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675298fe9'), 'name': 'Lehigh Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675298fee'), 'name': 'adicate timeads', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298fef'), 'name': 'Avature', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675298ff2'), 'name': 'Nalpeiron', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675298ffe'), 'name': 'e-contratos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529900d'), 'name': 'ShopMyCloset', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299011'), 'name': 'Aylus Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529901c'), 'name': 'SightSpeed', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299023'), 'name': 'Easypano', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529902d'), 'name': 'Affinegy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529902e'), 'name': 'LifePics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299038'), 'name': 'GrayBoxx', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299039'), 'name': 'Mediastay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299042'), 'name': 'Rhapsody', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299043'), 'name': 'Mashware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299056'), 'name': 'ZipcodeZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529905c'), 'name': 'Neven Vision', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299061'), 'name': 'PeakStream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299063'), 'name': 'Zingku', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299064'), 'name': 'wikiHow', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299065'), 'name': 'Vonage', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529906a'), 'name': 'Copper Project', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299085'), 'name': 'MetaCarta', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529908e'), 'name': 'Linspire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529908f'), 'name': 'Xandros', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990a3'), 'name': 'Muso Net', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990a7'), 'name': 'College Toolkit', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990b3'), 'name': 'VenJuvo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990b6'), 'name': 'Junction Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990c0'), 'name': 'MEDDIA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990c1'), 'name': 'Surgenia Productions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990c5'), 'name': 'Transinsight', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990c8'), 'name': 'Meetweb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990cb'), 'name': 'Travellerspoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752990cc'), 'name': 'GoGrid', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990d4'), 'name': 'Medisoft Telemedicine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990dc'), 'name': 'Neato Robotics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752990e1'), 'name': 'Chitika', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e3'), 'name': 'EC-CON BV', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e7'), 'name': 'amplusnet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990e9'), 'name': 'ecreative', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752990f7'), 'name': 'Dot Com Infoway France', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752990f9'), 'name': 'mmCHANNEL', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752990fc'), 'name': 'ProjectSpaces', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752990fe'), 'name': 'PHASE 2 International', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299100'), 'name': 'Paragent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299102'), 'name': 'KnowNow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529910a'), 'name': 'Segway', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529910c'), 'name': 'Trinex Commercial Finance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529910d'), 'name': 'Celebrity Seats', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299112'), 'name': 'Mission Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529912d'), 'name': 'Arkiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529913f'), 'name': 'Synology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299141'), 'name': 'WatchMouse', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529914f'), 'name': 'Chapatiz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299152'), 'name': 'IGG', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299154'), 'name': 'Open Box', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299155'), 'name': 'Bronto Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529915b'), 'name': 'Unisfair', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299162'), 'name': 'Compellent Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299163'), 'name': 'StoneFly', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299167'), 'name': 'MainNerve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529916c'), 'name': 'SulfurCell', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529916f'), 'name': 'Discovery Mining', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299170'), 'name': 'Data Domain', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299174'), 'name': 'Linkool Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529917e'), 'name': 'Skorpiostech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529918b'), 'name': 'Talking Panda', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299192'), 'name': 'TopTenREVIEWS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529919b'), 'name': '4chan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752991c2'), 'name': 'Spheric Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752991c4'), 'name': 'RedMonk', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752991c5'), 'name': 'Michael Martin Agency', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752991d8'), 'name': 'LenderFlex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991d9'), 'name': 'Icontem', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991db'), 'name': 'Zi Yu Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752991ee'), 'name': 'Streetline', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991ef'), 'name': 'impara', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752991f1'), 'name': 'MixMeister', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752991f9'), 'name': 'Truviso', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752991fc'), 'name': 'Zoomix', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752991ff'), 'name': 'Caspio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299200'), 'name': 'WindSolutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299201'), 'name': 'Geometric Informatics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299204'), 'name': 'ByteShield', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299206'), 'name': 'Vimukti Tehnologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299207'), 'name': 'Adorn Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299209'), 'name': 'Gigablast', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529921c'), 'name': 'iRadeo', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299234'), 'name': 'Dexterra', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529923e'), 'name': 'Four Corners Development Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299259'), 'name': 'Aldor Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529925e'), 'name': 'Sellathon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299261'), 'name': 'Converseon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299269'), 'name': 'Rouxbe', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529926a'), 'name': 'BlogHer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529926b'), 'name': 'Global Market Hub', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299271'), 'name': 'Devshop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299273'), 'name': 'Reverb Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299283'), 'name': 'The Electric Sheep', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299284'), 'name': 'Diquest', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299286'), 'name': 'Cultuzz', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299287'), 'name': 'VISUALPLANT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529928b'), 'name': 'Nexdot', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529928c'), 'name': 'Leafish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529928d'), 'name': 'Cascada Mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529928f'), 'name': 'Ocean Online Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529929f'), 'name': 'Colizer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752992a1'), 'name': 'Cherwell Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752992b5'), 'name': 'ZAO Begun', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992b7'), 'name': 'Honesty Online', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992ba'), 'name': 'WEBCARGO', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752992bc'), 'name': 'Hands-On Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752992bd'), 'name': 'Talance', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992c5'), 'name': 'Indextools', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992c6'), 'name': 'Stereogum', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752992cf'), 'name': 'Alfresco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992d0'), 'name': 'Cynapse', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752992d2'), 'name': 'SparkPeople', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992d4'), 'name': 'Myibay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752992d7'), 'name': 'teclogy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992da'), 'name': 'Prosperity Research', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992dd'), 'name': 'Instil Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992e0'), 'name': 'InfoSoft Global', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992ea'), 'name': 'd-Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752992ed'), 'name': 'Carbonetworks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752992f9'), 'name': 'BUKA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299305'), 'name': 'Douban', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299311'), 'name': 'K3 Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299312'), 'name': 'Avidian Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299314'), 'name': 'I-COM', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299318'), 'name': 'LeadCreations', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529931a'), 'name': 'Lead411', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529931d'), 'name': 'WoodWare Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299326'), 'name': 'jkOnTheRun', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299333'), 'name': 'SubHub', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299334'), 'name': 'Sears Holdings Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529933a'), 'name': 'InnoTech Conference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529933d'), 'name': 'Eye-Fi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299341'), 'name': 'Qumu', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299343'), 'name': 'Hire-seo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529934e'), 'name': 'Castle Ink Cartridges', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299354'), 'name': 'XFRIDAY', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299356'), 'name': 'Systinet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529935e'), 'name': 'Black Duck Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529936c'), 'name': 'DATAllegro', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529936f'), 'name': 'EffectiveUI', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299370'), 'name': 'eVectis Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299372'), 'name': 'mywire', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299379'), 'name': 'akakce', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529937e'), 'name': 'Transposagen Biopharmaceuticals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529938b'), 'name': 'Cbondesign', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529938d'), 'name': 'Supaproofread', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529939d'), 'name': 'Aurigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993a6'), 'name': 'Bioalma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993a8'), 'name': 'OPEN Leads', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ac'), 'name': 'DutchSoftware', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993af'), 'name': 'iStreamPlanet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993b6'), 'name': 'Kinoma', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993b8'), 'name': 'Integrated Computer Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ba'), 'name': 'Livebookings', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993bb'), 'name': 'RODECO ICT Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993c1'), 'name': 'Wireless Technology Forum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993c5'), 'name': 'Taringa!', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993d2'), 'name': 'FUNKY BUSINESS', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993d5'), 'name': 'Carrot Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993d8'), 'name': 'worldtvradio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993da'), 'name': 'ProForma Document Management Services', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752993de'), 'name': 'db4objects', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993e2'), 'name': 'Accipiter Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993e7'), 'name': 'FundingUniverse', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993ea'), 'name': 'Halosys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993eb'), 'name': 'Roamware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993ed'), 'name': 'Clinnovo Research Labs Pvt Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993f1'), 'name': 'LeadGenesys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752993f2'), 'name': 'Goober Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993f3'), 'name': 'TeamViewer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993f5'), 'name': 'SpringSource', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752993f6'), 'name': 'Industria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993f7'), 'name': 'Sharkstrike', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752993fa'), 'name': 'Telnic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752993fc'), 'name': 'ActiveCause', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752993fd'), 'name': 'The Tin', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299400'), 'name': 'NEXTA Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299405'), 'name': 'QuesGen Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299422'), 'name': 'Halogen Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299423'), 'name': 'XB Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299429'), 'name': 'CompuBase Internet Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529942a'), 'name': 'Local Marketers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529942d'), 'name': 'Covarity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299432'), 'name': 'Albion', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299442'), 'name': 'Manas Technology Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299443'), 'name': 'iKnowHow', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299447'), 'name': 'BeamYourScreen', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529944c'), 'name': 'Squiz UK', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529944d'), 'name': 'SimpleSignal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529944e'), 'name': 'B3B', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299456'), 'name': 'FillZ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299461'), 'name': 'ITBrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299463'), 'name': 'Dataupia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299466'), 'name': 'Global Mind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529946c'), 'name': 'Lashback', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529946f'), 'name': 'e-Man', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299476'), 'name': 'Informacije', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529947b'), 'name': 'Dreams Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299481'), 'name': 'Skyspine', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299488'), 'name': 'solarplaza', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529948a'), 'name': 'FuseMail', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529948d'), 'name': 'Logia Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299493'), 'name': 'Pluit Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299496'), 'name': 'BuildIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529949a'), 'name': 'CraveOnline', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529949b'), 'name': 'InteliArt Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994a8'), 'name': 'Vantage Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994b0'), 'name': 'Qualiteam Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752994b7'), 'name': 'Kantega', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994bb'), 'name': 'Terapeak', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994c2'), 'name': 'FinancialContent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994c7'), 'name': 'AYCE Internet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752994c9'), 'name': 'Quova', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994cb'), 'name': 'Plastic Logic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994d1'), 'name': 'InstantPresenter', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994d6'), 'name': 'DailyCandy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994da'), 'name': 'WirelessGround', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752994e0'), 'name': 'Everyclick', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994e1'), 'name': 'myAuctionNetwork', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994e2'), 'name': 'Casius', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752994eb'), 'name': 'GreenCine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994ef'), 'name': 'GoodSearch', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994f0'), 'name': 'SkyGrid', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994f1'), 'name': 'Kirtas Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752994f2'), 'name': 'eFriendsNet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752994f6'), 'name': 'dynaTrace software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994fb'), 'name': 'SiteAdvisor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752994fe'), 'name': 'RatchetSoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299508'), 'name': 'Propertyware', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299509'), 'name': 'Sandlot Games', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299517'), 'name': 'KDDI', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529951c'), 'name': 'AccuConference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529951e'), 'name': 'Swell Pregnancy Guide', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529952b'), 'name': 'Ambient Devices', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529952f'), 'name': 'Insyde', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299532'), 'name': 'WorldMate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299535'), 'name': 'Koolanoo Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299536'), 'name': 'UltiZen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299537'), 'name': 'Interspire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529953e'), 'name': 'IntelePeer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299541'), 'name': 'RoyaltyShare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299546'), 'name': 'MobileAware', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299547'), 'name': 'CTdeveloping', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529954a'), 'name': 'Indwell Consultancy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529954e'), 'name': 'Corporate Buyers Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529954f'), 'name': 'Polity Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529955a'), 'name': 'magnify360', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299560'), 'name': 'StrikeIron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299564'), 'name': 'Recommind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529956c'), 'name': 'MOBI Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299573'), 'name': 'Centrify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299577'), 'name': 'SMBLive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299578'), 'name': 'ProjectX Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299580'), 'name': 'Likewise Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529958a'), 'name': 'Axiom Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529958f'), 'name': 'Innotas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299590'), 'name': 'Native Instinct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995a3'), 'name': 'Enigmo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995a4'), 'name': 'Realsoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995a5'), 'name': 'J-Magic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995a6'), 'name': 'Power Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995ab'), 'name': 'WeSellYourSite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995ad'), 'name': 'Kilopass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995ae'), 'name': 'Arcadia Biosciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752995b0'), 'name': 'Deeya Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b4'), 'name': 'MagSil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b6'), 'name': '3i Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995b7'), 'name': 'FreedomPay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995b8'), 'name': 'Nevis Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752995b9'), 'name': 'Sequoia Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995ba'), 'name': 'ZManda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995bb'), 'name': 'Availink', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995bc'), 'name': 'Advasense', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995be'), 'name': 'Muzicall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995bf'), 'name': 'Vollee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995c0'), 'name': 'Corea Titanium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995c1'), 'name': 'Frontier Silicon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995c5'), 'name': 'Imprev', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752995c7'), 'name': 'Nextiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995db'), 'name': 'Alpha Systems Ltd ( Mauritius )', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995dd'), 'name': '2GeeksinaLab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995ea'), 'name': 'Synchronica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995eb'), 'name': 'Infoactive Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752995ec'), 'name': 'AxisMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995ef'), 'name': 'Palo Alto Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752995f0'), 'name': 'Axis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752995f3'), 'name': 'WebMindtree', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752995f8'), 'name': 'About The Image', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299600'), 'name': 'CoolBeansLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299607'), 'name': 'BitWave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299608'), 'name': 'EnOcean', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299612'), 'name': 'Amara Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299614'), 'name': 'Equipment Simulations', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299619'), 'name': 'Hexacta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529961e'), 'name': 'Parama Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529961f'), 'name': 'HedgeStreet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299623'), 'name': 'ShopWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299628'), 'name': 'Boulder Logic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299631'), 'name': 'The Highway Girl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299637'), 'name': 'Gust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299638'), 'name': 'KoolSpan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529963b'), 'name': 'CE Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529963c'), 'name': 'AirMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299659'), 'name': 'MESoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529965d'), 'name': 'Atigeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529965f'), 'name': 'Digital Ordnance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299663'), 'name': 'UBmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299667'), 'name': 'Adlib Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299668'), 'name': 'UK Office Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529966a'), 'name': 'Emerald Software Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299671'), 'name': 'Procera Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529967a'), 'name': 'PPTV', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529967e'), 'name': 'Hyva IT Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529968a'), 'name': 'Connective Logic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752996a0'), 'name': 'LeapRE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996ab'), 'name': 'OMS SafeHarbor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752996ad'), 'name': 'Jumptap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996b6'), 'name': 'PlayPhone', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996bd'), 'name': 'Jivjiv', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996c9'), 'name': 'AMAX Global Services', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752996d6'), 'name': 'Blogcritics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752996da'), 'name': 'Franglo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752996e0'), 'name': 'GeoTrust', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752996ed'), 'name': 'Phones Limited', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752996ef'), 'name': 'Contoural', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752996f6'), 'name': 'adlib', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299709'), 'name': 'Draconis Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529970b'), 'name': 'Flying Cart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529970d'), 'name': 'PostPath', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299710'), 'name': 'Swype', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299712'), 'name': 'Clickbooth', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299714'), 'name': 'Multiplied Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299715'), 'name': 'ProCPR', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529971a'), 'name': 'SpeakerMatch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529972b'), 'name': 'International Drug Mart', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529972d'), 'name': 'Advanced Millennium Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299731'), 'name': 'TimeTrade Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299734'), 'name': 'FMYI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299735'), 'name': 'Google Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529973c'), 'name': 'TRUECar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299745'), 'name': 'Displax', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299748'), 'name': 'SG2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299753'), 'name': 'PG Realty', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299758'), 'name': 'Crisp Thinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529975e'), 'name': 'Unified Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299760'), 'name': 'Aventure Host', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299761'), 'name': 'Lime Productions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529976b'), 'name': 'Aventure Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299770'), 'name': 'Beck Energy', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299772'), 'name': 'Project Amarillo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299774'), 'name': 'Alefo Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299776'), 'name': 'frankst0ned', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299777'), 'name': 'Google Earth Blog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299778'), 'name': 'Utagoe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529977b'), 'name': 'Kale Host', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529977e'), 'name': 'Libertas Academica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299785'), 'name': 'Picateers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299786'), 'name': 'SailPoint Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529978b'), 'name': 'Mexuar Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529978e'), 'name': 'Carribean International trading', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529978f'), 'name': 'Myriad Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299792'), 'name': 'Neoris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997a0'), 'name': 'Imixs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997a2'), 'name': 'Propertyshark', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997a8'), 'name': 'HexaCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997af'), 'name': 'SearchRev', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752997be'), 'name': 'Adaptive Technologies(ATi)', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997ca'), 'name': 'Builders Copilot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997d2'), 'name': 'Davai Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997d3'), 'name': 'Billdesk', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752997d4'), 'name': 'Mimosa Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752997db'), 'name': 'RouteYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997dc'), 'name': 'Fancorps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997e1'), 'name': 'BiggerPockets', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752997e7'), 'name': 'Intelligenes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752997e8'), 'name': 'Flashants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752997ef'), 'name': 'Nomadesk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752997fc'), 'name': 'Stylesight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299804'), 'name': 'Yerbabuena Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299806'), 'name': 'LooseHead Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529980f'), 'name': 'PIEmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299810'), 'name': 'Connectbeam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299817'), 'name': 'QFx Solutions Ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529981d'), 'name': 'Raizlabs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529981e'), 'name': 'IT Matters', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529983a'), 'name': 'Helpstream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529983d'), 'name': 'AirSet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529984a'), 'name': 'GolterGraphix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529984e'), 'name': 'Chegg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529984f'), 'name': 'Xactly Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299850'), 'name': 'IdeaBlade', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299853'), 'name': 'Hangout Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299858'), 'name': 'CheckMarket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299866'), 'name': 'Groqit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299874'), 'name': 'RuffWire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299876'), 'name': 'Vichara Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299877'), 'name': 'Fresh Web Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529987d'), 'name': 'Nealite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529987e'), 'name': 'Mandalorian Security Services Ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299886'), 'name': 'Fastmetrics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299888'), 'name': 'Spiral Shell Web LLC', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299889'), 'name': 'SysArc', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529988b'), 'name': 'Owner List', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299892'), 'name': 'DESIGN about TOWN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299894'), 'name': 'PG Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752998a1'), 'name': 'KDDI', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998a6'), 'name': 'AccuConference', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998a8'), 'name': 'Swell Pregnancy Guide', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752998b5'), 'name': 'Ambient Devices', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752998b9'), 'name': 'Insyde', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998bc'), 'name': 'WorldMate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998bf'), 'name': 'Koolanoo Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998c0'), 'name': 'UltiZen', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998c1'), 'name': 'Interspire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998c8'), 'name': 'IntelePeer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998cb'), 'name': 'RoyaltyShare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d0'), 'name': 'MobileAware', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998d1'), 'name': 'CTdeveloping', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998d4'), 'name': 'Indwell Consultancy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d8'), 'name': 'Corporate Buyers Guide', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998d9'), 'name': 'Polity Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752998e4'), 'name': 'magnify360', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752998ea'), 'name': 'StrikeIron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998ee'), 'name': 'Recommind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752998f6'), 'name': 'MOBI Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752998fd'), 'name': 'Centrify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299901'), 'name': 'SMBLive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299902'), 'name': 'ProjectX Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529990a'), 'name': 'Likewise Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299914'), 'name': 'Axiom Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299919'), 'name': 'Innotas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529991a'), 'name': 'Native Instinct', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529992d'), 'name': 'Enigmo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529992e'), 'name': 'Realsoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529992f'), 'name': 'J-Magic', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299930'), 'name': 'Power Technology', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299935'), 'name': 'WeSellYourSite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299937'), 'name': 'Kilopass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299938'), 'name': 'Arcadia Biosciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529993a'), 'name': 'Deeya Energy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529993e'), 'name': 'MagSil', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299940'), 'name': '3i Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299941'), 'name': 'FreedomPay', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299942'), 'name': 'Nevis Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299943'), 'name': 'Sequoia Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299944'), 'name': 'ZManda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299945'), 'name': 'Availink', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299946'), 'name': 'Advasense', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299948'), 'name': 'Muzicall', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299949'), 'name': 'Vollee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529994a'), 'name': 'Corea Titanium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529994b'), 'name': 'Frontier Silicon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529994f'), 'name': 'Imprev', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299951'), 'name': 'Nextiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299965'), 'name': 'Alpha Systems Ltd ( Mauritius )', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299967'), 'name': '2GeeksinaLab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299974'), 'name': 'Synchronica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299975'), 'name': 'Infoactive Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299976'), 'name': 'AxisMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299979'), 'name': 'Palo Alto Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529997a'), 'name': 'Axis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529997d'), 'name': 'WebMindtree', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299982'), 'name': 'About The Image', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529998a'), 'name': 'CoolBeansLive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299991'), 'name': 'BitWave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299992'), 'name': 'EnOcean', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529999c'), 'name': 'Amara Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529999e'), 'name': 'Equipment Simulations', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999a3'), 'name': 'Hexacta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999a8'), 'name': 'Parama Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd6752999a9'), 'name': 'HedgeStreet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999ad'), 'name': 'ShopWiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999b2'), 'name': 'Boulder Logic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999bb'), 'name': 'The Highway Girl', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999c1'), 'name': 'Gust', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999c2'), 'name': 'KoolSpan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999c5'), 'name': 'CE Interactive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd6752999c6'), 'name': 'AirMedia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999e3'), 'name': 'MESoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752999e7'), 'name': 'Atigeo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999e9'), 'name': 'Digital Ordnance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999ed'), 'name': 'UBmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd6752999f1'), 'name': 'Adlib Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd6752999f2'), 'name': 'UK Office Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd6752999f4'), 'name': 'Emerald Software Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd6752999fb'), 'name': 'Procera Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a04'), 'name': 'PPTV', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299a08'), 'name': 'Hyva IT Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a14'), 'name': 'Connective Logic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299a2a'), 'name': 'LeapRE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a35'), 'name': 'OMS SafeHarbor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a37'), 'name': 'Jumptap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a40'), 'name': 'PlayPhone', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a47'), 'name': 'Jivjiv', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a53'), 'name': 'AMAX Global Services', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299a60'), 'name': 'Blogcritics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a64'), 'name': 'Franglo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a6a'), 'name': 'GeoTrust', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299a77'), 'name': 'Phones Limited', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a79'), 'name': 'Contoural', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a80'), 'name': 'adlib', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a93'), 'name': 'Draconis Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a95'), 'name': 'Flying Cart', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299a97'), 'name': 'PostPath', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299a9a'), 'name': 'Swype', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9c'), 'name': 'Clickbooth', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9e'), 'name': 'Multiplied Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299a9f'), 'name': 'ProCPR', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299aa4'), 'name': 'SpeakerMatch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ab5'), 'name': 'International Drug Mart', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ab7'), 'name': 'Advanced Millennium Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299abb'), 'name': 'TimeTrade Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299abe'), 'name': 'FMYI', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299abf'), 'name': 'Google Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ac6'), 'name': 'TRUECar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299acf'), 'name': 'Displax', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ad2'), 'name': 'SG2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299add'), 'name': 'PG Realty', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ae2'), 'name': 'Crisp Thinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ae8'), 'name': 'Unified Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299aea'), 'name': 'Aventure Host', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299aeb'), 'name': 'Lime Productions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299af5'), 'name': 'Aventure Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299afa'), 'name': 'Beck Energy', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299afc'), 'name': 'Project Amarillo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299afe'), 'name': 'Alefo Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b00'), 'name': 'frankst0ned', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b01'), 'name': 'Google Earth Blog', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b02'), 'name': 'Utagoe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b05'), 'name': 'Kale Host', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b08'), 'name': 'Libertas Academica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b0f'), 'name': 'Picateers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b10'), 'name': 'SailPoint Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b15'), 'name': 'Mexuar Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b18'), 'name': 'Carribean International trading', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b19'), 'name': 'Myriad Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b1c'), 'name': 'Neoris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b2a'), 'name': 'Imixs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b2c'), 'name': 'Propertyshark', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b32'), 'name': 'HexaCorp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b39'), 'name': 'SearchRev', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299b48'), 'name': 'Adaptive Technologies(ATi)', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b54'), 'name': 'Builders Copilot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b5c'), 'name': 'Davai Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b5d'), 'name': 'Billdesk', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299b5e'), 'name': 'Mimosa Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299b65'), 'name': 'RouteYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b66'), 'name': 'Fancorps', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b6b'), 'name': 'BiggerPockets', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b71'), 'name': 'Intelligenes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b72'), 'name': 'Flashants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299b79'), 'name': 'Nomadesk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b86'), 'name': 'Stylesight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b8e'), 'name': 'Yerbabuena Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b90'), 'name': 'LooseHead Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299b99'), 'name': 'PIEmatrix', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299b9a'), 'name': 'Connectbeam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ba1'), 'name': 'QFx Solutions Ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ba7'), 'name': 'Raizlabs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ba8'), 'name': 'IT Matters', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bc4'), 'name': 'Helpstream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299bc7'), 'name': 'AirSet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299bd4'), 'name': 'GolterGraphix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bd8'), 'name': 'Chegg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bd9'), 'name': 'Xactly Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bda'), 'name': 'IdeaBlade', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299bdd'), 'name': 'Hangout Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299be2'), 'name': 'CheckMarket', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299bf0'), 'name': 'Groqit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299bfe'), 'name': 'RuffWire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c00'), 'name': 'Vichara Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299c01'), 'name': 'Fresh Web Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c07'), 'name': 'Nealite', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c08'), 'name': 'Mandalorian Security Services Ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c10'), 'name': 'Fastmetrics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c12'), 'name': 'Spiral Shell Web LLC', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c13'), 'name': 'SysArc', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c15'), 'name': 'Owner List', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c1c'), 'name': 'DESIGN about TOWN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c1e'), 'name': 'PG Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c28'), 'name': 'LiveHive Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c2f'), 'name': 'Legkokredit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c34'), 'name': 'Parent Teacher Network', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c38'), 'name': 'Blueface', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c3a'), 'name': 'Idiro', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c3e'), 'name': 'CreativeHost Hospedagem', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c3f'), 'name': 'ConSentry Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c40'), 'name': 'LogLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c41'), 'name': 'Sipera Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c48'), 'name': 'Aruba Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c4c'), 'name': 'SEEDCORE GROUP', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c50'), 'name': 'The Solution Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c51'), 'name': '3biz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c53'), 'name': 'Zonablu Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c54'), 'name': 'Zen Web Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c55'), 'name': '3Sigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c59'), 'name': 'Web CEO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c5b'), 'name': 'TNC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c60'), 'name': 'Semantra', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c6d'), 'name': 'nextep', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299c6f'), 'name': 'PageTraffic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299c71'), 'name': 'Quantum Voyage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299c7b'), 'name': 'shanghai junda instrument co,ltd', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c85'), 'name': 'PROJECT DIRT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c88'), 'name': 'Qpyn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299c90'), 'name': 'Brick Marketing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299c9e'), 'name': 'Ziva Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299caa'), 'name': 'Endavo Media and Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cab'), 'name': 'Nabbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299cac'), 'name': 'OnVantage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb0'), 'name': 'Meritia mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb5'), 'name': 'Vidiac', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cb8'), 'name': 'Amethon Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cc0'), 'name': 'Trizeon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cc1'), 'name': 'Jobmixi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299cc5'), 'name': 'Viocorp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299cda'), 'name': 'Alwayswater', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299cdc'), 'name': 'Atalasoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ce4'), 'name': 'Intellectual Ventures', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ced'), 'name': 'SEO Services Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cf1'), 'name': 'Open Lab', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299cf3'), 'name': 'Jabber', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299cf4'), 'name': 'eSchedule', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299cf6'), 'name': 'Securent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d00'), 'name': 'InfoWeapons', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d03'), 'name': 'Optiant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d04'), 'name': 'Elemica', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d05'), 'name': 'Frontline Selling', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d06'), 'name': 'Cupid XL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d19'), 'name': 'Vertica Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d1e'), 'name': 'SK Net Service Company Ltd', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d22'), 'name': 'Alpha SEP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d23'), 'name': 'Ratchet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d24'), 'name': 'Infinity Pharmaceuticals', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d28'), 'name': 'Exaprotect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d38'), 'name': 'Voice123', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d39'), 'name': 'Club Scene Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d49'), 'name': 'Facebookster', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d4b'), 'name': 'CityVoter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d51'), 'name': 'FreyerMartin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d5e'), 'name': 'Beau-coup Wedding Favors', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d60'), 'name': 'Blogdigger', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299d61'), 'name': 'Apogee Search', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d62'), 'name': 'KingsIsle Entertainment', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d63'), 'name': 'Enspire Learning', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d6a'), 'name': 'Smiley Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d6f'), 'name': 'OneSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d7b'), 'name': 'Servoy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299d7d'), 'name': 'HT', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d85'), 'name': 'TESCRA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d87'), 'name': 'Beeby Clark + Meyler', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299d96'), 'name': '302designs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299d9b'), 'name': 'Horasphere', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299d9e'), 'name': 'PetitionSpot', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299d9f'), 'name': 'metaio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299da3'), 'name': 'DreamBox Learning', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299daa'), 'name': 'Cramster', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dab'), 'name': 'eWrite', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299db3'), 'name': 'ApartmentRatings', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299db8'), 'name': 'NOTCOT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299db9'), 'name': 'Right90', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dbf'), 'name': 'BridgePose', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dc1'), 'name': 'Exajoule', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dc8'), 'name': 'eDLink Services Pte Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dd0'), 'name': 'DERI', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dd5'), 'name': 'MP3Tunes', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299dd6'), 'name': 'HydroPoint Data Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299dd8'), 'name': 'BCSG, LLC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299dd9'), 'name': 'OQO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ddd'), 'name': 'Eleven2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dde'), 'name': 'BonzaDat', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299de0'), 'name': 'Asian Airfares Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299de1'), 'name': 'India Web Hosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299de5'), 'name': 'Architel LP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299de6'), 'name': 'DataCrunch', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299dee'), 'name': 'Advanced Virtual Surveillance', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299dfd'), 'name': 'infoFACTORY', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e02'), 'name': 'Big Nerd Ranch Consulting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e08'), 'name': 'LifeMed Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e09'), 'name': 'smashLAB', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e14'), 'name': 'kankan', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e19'), 'name': 'ExposureManager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e23'), 'name': 'Verdisoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e3b'), 'name': 'FISCAL Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299e3e'), 'name': 'M2C2 Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e49'), 'name': 'GridFusions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e63'), 'name': 'SDH Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e68'), 'name': 'MyShape', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e6a'), 'name': 'AOptix Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e6b'), 'name': 'EyeSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299e6c'), 'name': 'Kodiak Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e70'), 'name': 'Modo Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e7d'), 'name': 'iPhase Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299e81'), 'name': 'Fansoft Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299e82'), 'name': 'PlumChoice', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299e92'), 'name': 'Sienconsultant', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299e98'), 'name': 'Tony Bain Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299e9b'), 'name': 'Avaak', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ea7'), 'name': 'PolygonsWild', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ea8'), 'name': 'Invictus Technology solutions (P) Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299eb3'), 'name': 'Precise', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299eb7'), 'name': 'Acknowledgement', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299eb9'), 'name': 'FUSE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ec2'), 'name': 'PayLease', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ec3'), 'name': 'Gumtree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ec4'), 'name': 'Loquo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299ecc'), 'name': 'Papercheck', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ed2'), 'name': 'OHWordpress', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299edd'), 'name': 'arth infosoft pvt ltd', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299ee0'), 'name': 'Sitecore', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299ee3'), 'name': 'NativeX', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299ee4'), 'name': 'PropertyBridge', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ee5'), 'name': 'IGG Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299ee7'), 'name': 'Gossip Girls', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299eea'), 'name': 'Art2Digital InterMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f0c'), 'name': 'KAYXO', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f0e'), 'name': 'Trailfire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f11'), 'name': 'Kiva Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f13'), 'name': 'ThoseGeeks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f19'), 'name': 'Naughty America', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f1c'), 'name': 'Nexenta Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f21'), 'name': 'Apaja', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f34'), 'name': 'SolFocus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f39'), 'name': 'Saset Healthcare', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f3e'), 'name': 'Trunk Archive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f3f'), 'name': 'Happiness Foundation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299f46'), 'name': 'AMF Ventures', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f49'), 'name': 'SpinningYourWeb International', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f4d'), 'name': 'Hoccam', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f4e'), 'name': 'Chapter Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f4f'), 'name': 'Vinfolio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299f52'), 'name': 'Entellium', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299f53'), 'name': 'Bidaroo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f5b'), 'name': 'Lokalisten', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f5f'), 'name': 'DigitalDeejay', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f66'), 'name': 'Guardium', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299f6b'), 'name': 'ExactTarget', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299f6c'), 'name': 'Vontoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f6f'), 'name': 'iGoDigital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299f7d'), 'name': 'Edoceo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f80'), 'name': 'Xceed', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f84'), 'name': 'The Hyperfactory', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f9b'), 'name': 'O3Spaces', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299f9c'), 'name': 'Large Animal Games', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299f9f'), 'name': 'Microsupply', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299fa4'), 'name': 'Opt-Intelligence', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299fa6'), 'name': 'Thinkingvoice', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fac'), 'name': 'mBLAST', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fad'), 'name': 'Virtual Strategy Magazine', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd675299fb2'), 'name': 'Paralegal Services USA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299fbc'), 'name': 'MX Logic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd675299fbf'), 'name': 'Cleartext', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd675299fc0'), 'name': 'FatTail', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd675299fc2'), 'name': 'Agriya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fc8'), 'name': 'MediaUnbound', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fc9'), 'name': 'Image Metrics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fd0'), 'name': 'Quest Groups', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd675299fd1'), 'name': 'Apigee', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299ffe'), 'name': 'Vesess', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd675299fff'), 'name': 'Olivos by Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a006'), 'name': 'Engadget', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a009'), 'name': 'Webgineers', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a00a'), 'name': 'Ukash', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a010'), 'name': 'Xtranormal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a014'), 'name': 'AskMe Corp', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a018'), 'name': 'SharperAgent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a01c'), 'name': 'Goldstar', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a01e'), 'name': 'Carat Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a024'), 'name': 'RigNet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a027'), 'name': 'SeaMobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a029'), 'name': 'Komoku', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a030'), 'name': 'AdECN', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a031'), 'name': 'Screen Tonic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a03c'), 'name': 'ControlCase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a03d'), 'name': 'PokerDIY', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a03e'), 'name': 'SearchBlox', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a051'), 'name': 'Mobile Factory', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a057'), 'name': 'McRaaN Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a060'), 'name': 'C4M', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a067'), 'name': 'BizCorp', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a078'), 'name': 'Syndiant', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a07a'), 'name': 'Bytemobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a07f'), 'name': 'American Safety Associates', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a086'), 'name': 'Floor64', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a087'), 'name': 'Motion Bridge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a089'), 'name': 'Alacris', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a091'), 'name': 'Dilogs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a095'), 'name': 'Movidius', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a096'), 'name': 'Pumant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a097'), 'name': 'Kirusa', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a098'), 'name': 'Pharmacy OneSource', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a099'), 'name': 'acerno', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a09b'), 'name': 'Nexaweb Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a09f'), 'name': 'AIKON Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a2'), 'name': 'Mezimedia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a5'), 'name': 'ClickShift', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ae'), 'name': 'MyFreeImplants', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0af'), 'name': 'Liquid Studios', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b0'), 'name': 'Adaptive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b8'), 'name': 'Games2Win', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ba'), 'name': 'Scate Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0bf'), 'name': 'Instablogs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0c4'), 'name': 'Wind Birds', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ca'), 'name': 'semanticlabs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0d4'), 'name': 'Obtiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0da'), 'name': 'Wengo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0df'), 'name': 'ComCorp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0e4'), 'name': 'Arista Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0e7'), 'name': 'ApogeeInvent', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ec'), 'name': 'A10 Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f0'), 'name': 'Hitflip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f3'), 'name': 'Blacknight', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f8'), 'name': 'OpenEdit', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f9'), 'name': 'Indiagames', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a104'), 'name': 'XE Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a107'), 'name': 'TourCMS', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a10c'), 'name': 'Jataayu Software Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a10e'), 'name': 'BDSoftwares', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a115'), 'name': 'Monavie', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a11a'), 'name': 'Madhouse Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a11b'), 'name': 'Seventymm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a11c'), 'name': 'Blizzard Entertainment', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a122'), 'name': 'Dolphin Geeks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a12b'), 'name': 'Virtuoso Analytic Services', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a134'), 'name': 'Remal IT', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a142'), 'name': 'Senario', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a148'), 'name': 'Singing Fish', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a149'), 'name': 'Crescendo Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a154'), 'name': 'UnoLink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a157'), 'name': 'Model Metrics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a15a'), 'name': 'Vox Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a161'), 'name': 'North Storm Media Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a163'), 'name': 'Netviewer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a16a'), 'name': 'Tekriti Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a174'), 'name': 'Xignite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a175'), 'name': 'RadarFind', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a176'), 'name': 'Amart Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a17a'), 'name': 'Brickfish', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a17d'), 'name': 'Neoganda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a182'), 'name': 'Aicio', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a18d'), 'name': 'Big Nerd Ranch', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a192'), 'name': 'Sonar6', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a197'), 'name': 'Twin Pines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a19b'), 'name': 'Red Ventures', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19c'), 'name': 'Vividas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19d'), 'name': 'EdgeStream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a19f'), 'name': 'Newmerix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a8'), 'name': 'Squarespace', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1aa'), 'name': 'RawVoice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ae'), 'name': 'India Designers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1b7'), 'name': 'LucidLogix Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1bb'), 'name': 'Alliance Card', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c3'), 'name': 'Adoos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c8'), 'name': 'Guruperl', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a1c9'), 'name': 'EON Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ca'), 'name': 'Dake', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a1cc'), 'name': 'Umicom Group Plc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d0'), 'name': 'Ponton Consulting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d6'), 'name': 'Mindity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f1'), 'name': 'Open-Xchange', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a209'), 'name': 'X-PRIME', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a20a'), 'name': 'Datasheet Archive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a20d'), 'name': 'Ecato', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a213'), 'name': 'Trovix', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a214'), 'name': 'NFi Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a217'), 'name': 'PicResize', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a219'), 'name': 'HillCast Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a21b'), 'name': 'erento', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a221'), 'name': 'CodeSmith', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a222'), 'name': 'Telerik', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a237'), 'name': 'Zadby', 'founded_year': 2002}, {'_id': ObjectId('52cdef7d4bab8bd67529a239'), 'name': 'Centro', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a23b'), 'name': 'Clearwire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a23f'), 'name': 'SPIL GAMES', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a240'), 'name': 'CTL Europe', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a243'), 'name': 'clearTXT', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a24a'), 'name': 'iKobo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a258'), 'name': 'Brain Fingerprinting Laboratories', 'founded_year': 2003}, {'_id': ObjectId('52cdef7d4bab8bd67529a259'), 'name': 'Privaris', 'founded_year': 2001}, {'_id': ObjectId('52cdef7d4bab8bd67529a25a'), 'name': 'Xeround', 'founded_year': 2005}, {'_id': ObjectId('52cdef7d4bab8bd67529a25e'), 'name': 'Arena Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7d4bab8bd67529a25f'), 'name': 'TRX Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7d4bab8bd67529a260'), 'name': 'BB Direct', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a262'), 'name': 'kidthing', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a263'), 'name': 'Media River', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a265'), 'name': 'faberNovel', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a267'), 'name': 'Homes Security Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a287'), 'name': 'Solid State Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a28a'), 'name': 'Quidco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a290'), 'name': 'Verismo Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a294'), 'name': 'Metropolitan Regional Information Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a295'), 'name': 'Booksfree', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a298'), 'name': 'Celebros', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a299'), 'name': 'Thanx Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a29b'), 'name': 'SLI Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2a7'), 'name': 'World On-Demand', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2aa'), 'name': 'Jaincotech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ac'), 'name': 'LINKBYNET', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ad'), 'name': 'Zone-ViP Network', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2b0'), 'name': 'Ealbeni', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2b9'), 'name': 'The Jonah Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2bc'), 'name': 'Logisuite', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2d6'), 'name': 'Flipswap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2da'), 'name': 'NineSigma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2db'), 'name': 'InnoCentive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a2dc'), 'name': 'Cassatt', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e3'), 'name': 'e-dialog', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e4'), 'name': 'KeyStream', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2e8'), 'name': 'DeepDyve', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a2f5'), 'name': 'Tenantplus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a2f6'), 'name': 'Zensoft Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2fc'), 'name': 'Populis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ff'), 'name': 'How2Manual', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a30a'), 'name': 'Autotask', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a30b'), 'name': 'Projector PSA', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a310'), 'name': 'BitLeap', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a314'), 'name': 'Invictus Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a315'), 'name': 'One True Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a318'), 'name': 'Easy Bill Online', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a319'), 'name': 'Machinima', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a31b'), 'name': 'Finacity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a321'), 'name': 'Illuminex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a326'), 'name': 'Pilot Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a327'), 'name': 'Collabor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a336'), 'name': 'PeerApp', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a337'), 'name': 'Memento', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a345'), 'name': 'MarketMentat', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a34f'), 'name': 'Testvinnare i Sverige', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a35a'), 'name': 'Enough Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a35d'), 'name': 'AmeriGlide', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a362'), 'name': 'PharmiWeb Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a368'), 'name': 'Listal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a36c'), 'name': 'Cymbet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a36d'), 'name': 'Nantero', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a36e'), 'name': 'SkyPilot Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a380'), 'name': 'Emsi Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a383'), 'name': '32bytes', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a385'), 'name': 'SEOMatrix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a386'), 'name': 'SiteBrand', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a388'), 'name': 'Datacastle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a38e'), 'name': 'Rollstream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a390'), 'name': 'Imagine Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a393'), 'name': 'Stamen Design', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a394'), 'name': 'Apptera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a398'), 'name': 'anaXis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a39a'), 'name': 'NewBay', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3a3'), 'name': 'Pet Airways', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3a6'), 'name': 'Tractis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3aa'), 'name': 'Transitive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ac'), 'name': 'DealStop', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ad'), 'name': 'Datachamps', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ba'), 'name': 'Activeweb', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3bc'), 'name': 'Socialwrks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c0'), 'name': 'Capricode', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c2'), 'name': 'Carnegie Speech', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c3'), 'name': 'ascentify', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c5'), 'name': 'Tiberium', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c6'), 'name': 'Miniclip', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c7'), 'name': 'Fingertime', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c8'), 'name': 'VicMan Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3cb'), 'name': \"OC'LIANE\", 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d1'), 'name': 'KB_Soft Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d8'), 'name': 'Saurus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3e2'), 'name': 'Fusionet24', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a3e6'), 'name': 'Mindreef', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f1'), 'name': 'Attenex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f3'), 'name': 'Cataphora', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ff'), 'name': 'Xendex Holding', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a408'), 'name': 'Incredimail', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a414'), 'name': 'Amadesa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a418'), 'name': 'Epok', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a41c'), 'name': 'Symphony Services', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a41d'), 'name': 'Scio Consulting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a421'), 'name': 'Lunascape', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a422'), 'name': 'Travel Insights', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a42a'), 'name': 'Opelin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a42f'), 'name': 'Blogosfere', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a435'), 'name': 'TerraSoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a439'), 'name': 'Zepol', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a43c'), 'name': 'HotLinuxJobs', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a43e'), 'name': 'Actus Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a440'), 'name': 'ConstructionDeal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a442'), 'name': 'Phibble', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a443'), 'name': 'Exanet', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a446'), 'name': 'Weinstock Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a44d'), 'name': 'Hosted Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a454'), 'name': 'Nuxeo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a45e'), 'name': 'WunderWorks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a45f'), 'name': 'FirstDIBZ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a461'), 'name': 'SpeedyPin', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a468'), 'name': 'Manitoulin Holdings', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a469'), 'name': 'WiChorus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a46b'), 'name': 'Darkstrand', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a46c'), 'name': 'Active Online', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a478'), 'name': 'Nipple Charms', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a485'), 'name': 'Quarkis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a486'), 'name': 'LogMeIn', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a48f'), 'name': 'Navio Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a493'), 'name': 'ForeSoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a495'), 'name': 'ClearSight Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4a6'), 'name': 'dotBERLIN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4a9'), 'name': 'Megawatt PR', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ab'), 'name': 'net-m', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ac'), 'name': 'Homethinking', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4af'), 'name': 'Momail', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4b1'), 'name': 'Green Pages Australia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c0'), 'name': 'Xceligent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c1'), 'name': 'Commercial IQ', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a4c3'), 'name': 'Mercury Grove', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4cb'), 'name': 'Vayan Marketing Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ce'), 'name': 'Host Color', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4d1'), 'name': 'Hirebridge', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a4d2'), 'name': 'Clew', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4da'), 'name': 'Campusbooks4less', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a4db'), 'name': 'Extendi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4de'), 'name': 'MyPraize', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e1'), 'name': 'Carbonmade', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e3'), 'name': 'Central Databank', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e4'), 'name': 'MediBANK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a4e8'), 'name': 'authorGEN', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a4f9'), 'name': 'Double D Pools', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a4fa'), 'name': 'ICON Technology Services', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a4fc'), 'name': 'AAfter Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a501'), 'name': 'Verix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a503'), 'name': 'Cubic Compass', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a505'), 'name': 'BOLDstreet Wireless', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a509'), 'name': 'zyntroPICS', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a50e'), 'name': 'SoundNotes Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a513'), 'name': 'Three Melons', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a524'), 'name': 'Market2Lead', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a530'), 'name': 'Bit9', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a535'), 'name': 'Tedemis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a537'), 'name': 'Unicorn Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a53f'), 'name': 'Hi-Midia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a540'), 'name': 'Banzai Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a544'), 'name': 'Kinal Corp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a555'), 'name': 'Probability PLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a557'), 'name': 'Playtech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a55d'), 'name': 'SMA Informatics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a561'), 'name': 'OpenMethods', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a56f'), 'name': 'Liquid Fusion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a571'), 'name': 'Neurotic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a57b'), 'name': 'NETCRAW IT', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a57c'), 'name': 'Central Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a57e'), 'name': 'Best Before Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a582'), 'name': 'Zeraphina', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a583'), 'name': 'Call Genie', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a588'), 'name': 'p3 Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a58d'), 'name': 'Near-Time', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a590'), 'name': 'MotionApps', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a591'), 'name': 'SamKnows Limited', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a594'), 'name': 'iPixCel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a595'), 'name': 'Volicon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a596'), 'name': 'Masstech Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a597'), 'name': 'SnapStream Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a59e'), 'name': 'SpinnakerPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5a0'), 'name': 'Editor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5a5'), 'name': 'Koalog', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5aa'), 'name': 'Jake', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ab'), 'name': 'Epispeed', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ac'), 'name': 'Visonys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5b1'), 'name': 'Nexthink', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ba'), 'name': 'CrownPeak', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a5be'), 'name': 'Refinery29', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ca'), 'name': 'Ridespring', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a5cd'), 'name': 'Social Knowledge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a5cf'), 'name': 'Escalate Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d0'), 'name': 'Decru', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d1'), 'name': 'Real Pro Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d5'), 'name': 'MLB Advanced Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a5db'), 'name': 'temetra', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e1'), 'name': 'Collective Wisdom', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e4'), 'name': 'Liferay', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a600'), 'name': 'Proxama', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a610'), 'name': 'Ramp Technology Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a615'), 'name': 'Web:Studio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a617'), 'name': 'Amaze', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a61d'), 'name': 'SmartEquip', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a624'), 'name': 'Azuro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a626'), 'name': 'G-uniX Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a627'), 'name': 'Webgains UK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a62e'), 'name': 'Gather', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a630'), 'name': 'Adjust', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a636'), 'name': 'Brightegg', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a63e'), 'name': 'Expert Online Services, LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a642'), 'name': 'CampusEAI', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a644'), 'name': 'Career Crown International', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a64a'), 'name': 'AppLabs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a64e'), 'name': 'MarketForward', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a651'), 'name': 'Digital Base', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a658'), 'name': '[is value]', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a659'), 'name': 'White Wall Web', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a65b'), 'name': 'Holy Bible Trivia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a65e'), 'name': 'Discogs', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a661'), 'name': 'Nodeta', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a663'), 'name': 'Fishlabs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a665'), 'name': 'OneCommunity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a668'), 'name': 'Contactology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a66d'), 'name': 'DispatchThis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a67a'), 'name': 'Elevate Visual Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a681'), 'name': 'Nanomatic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a68b'), 'name': 'US Chemist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a68f'), 'name': 'blogSpirit', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a69b'), 'name': 'Ad Giants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a69d'), 'name': 'The Building Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a6'), 'name': 'Tableau Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b1'), 'name': 'Vontu', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b3'), 'name': 'Awareness Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b6'), 'name': 'cFares', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ba'), 'name': 'Rainbow Partners', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6c4'), 'name': 'Amarok Multimedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6c9'), 'name': 'StillSecure', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ca'), 'name': 'iPerceptions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d5'), 'name': 'OpSource', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d8'), 'name': 'SeeReal Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a6ee'), 'name': 'Solavista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f1'), 'name': 'Proxibid', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f5'), 'name': 'Pronto Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a704'), 'name': 'Dot Com Infoway', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a706'), 'name': 'Consileon Business Consultancy GmbH', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a70e'), 'name': 'Mega AS Consulting Ltd', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a717'), 'name': 'Viigo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a719'), 'name': 'Ekahau', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a720'), 'name': 'Quantivo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a728'), 'name': 'Masternaut UK', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a72b'), 'name': 'speroware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a731'), 'name': 'Forces Reunited', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a73e'), 'name': 'Sencia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a73f'), 'name': 'Altierre', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a741'), 'name': 'Arc90', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a748'), 'name': 'Aftercad Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a74f'), 'name': 'The WebMan Network', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a753'), 'name': 'tenCube', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a754'), 'name': 'BAK2u', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a757'), 'name': 'IP2Location', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a758'), 'name': 'ZIPCodeWorld', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a759'), 'name': 'FraudLabs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a75b'), 'name': 'Valuebound', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a762'), 'name': 'SnapGalaxy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a763'), 'name': 'FK3', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a768'), 'name': 'Rhythm NewMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a769'), 'name': 'op5', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a775'), 'name': 'Bitam', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a77c'), 'name': 'Fonality', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a77d'), 'name': 'Novafora', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a77e'), 'name': 'Kapston', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a783'), 'name': 'NetraMind', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a78c'), 'name': 'Allegiance', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a78d'), 'name': 'ScienceLogic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a79e'), 'name': 'CoKinetic Systems Corp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a79f'), 'name': 'Enversa Companies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a3'), 'name': 'HPC Systems Incorporated', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a7'), 'name': 'tBits Global', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a8'), 'name': 'iQ Content', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7b4'), 'name': 'VinayRas Infotech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7b5'), 'name': 'SMAF associates Law Firm', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a7c6'), 'name': 'Cellopoint', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a7cf'), 'name': 'SecondMarket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d2'), 'name': 'Dust Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d3'), 'name': 'E2open', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a7d7'), 'name': 'SenSage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7df'), 'name': 'VirnetX', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e3'), 'name': 'WiredReach', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e5'), 'name': 'Test of Time Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e8'), 'name': 'Free Range Data', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7ec'), 'name': 'Ubuntu', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a7f8'), 'name': 'ReachForce', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7fb'), 'name': 'PG Newsletter', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a7fc'), 'name': 'Peperoni', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a80b'), 'name': 'Pixelactive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a812'), 'name': 'Lambda Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a81b'), 'name': 'Shutterstock', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a81c'), 'name': 'AbsolutVision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a81d'), 'name': 'eConversions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a81f'), 'name': 'Clear2Pay', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a821'), 'name': 'Manthan Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a82a'), 'name': 'Jaspersoft', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a831'), 'name': 'Focus-N-Fly', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a834'), 'name': 'Nstein Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a83a'), 'name': 'JiWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a83b'), 'name': 'Trilibis', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a83e'), 'name': 'GIM Geomatics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a842'), 'name': 'Asetek', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a843'), 'name': 'Himshilp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a845'), 'name': 'eBillme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a84b'), 'name': 'Stanfy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a84d'), 'name': 'Sky Italia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a84f'), 'name': 'Oberon Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a850'), 'name': 'FileVision', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a858'), 'name': 'Smart Online', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a85c'), 'name': 'Influent', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a861'), 'name': 'QualSoft Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a867'), 'name': 'A2zdesignwork', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a868'), 'name': 'StreamGuys', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a86a'), 'name': 'eSpace', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a86b'), 'name': 'Sagebit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a86c'), 'name': 'FlightStats', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a871'), 'name': 'e4e', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a877'), 'name': 'Envivio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a879'), 'name': 'CouponCabin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a87a'), 'name': 'mPay Gateway', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a87d'), 'name': 'AMP Consulting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a882'), 'name': 'Discountbattery', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a883'), 'name': 'Radha Krishna Portal', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a885'), 'name': 'Bright View Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a886'), 'name': 'Vantos', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a887'), 'name': 'WhiteHat Security', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a889'), 'name': 'Hanger Network In-Home Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a88f'), 'name': 'FireEye', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a890'), 'name': 'EoPlex Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a893'), 'name': 'OmniGuide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a898'), 'name': 'SupplierSelect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a899'), 'name': 'Soul Oyster Web Studios', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a89f'), 'name': 'College Prowler', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b0'), 'name': 'NTRglobal', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b8'), 'name': 'RGB Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8bc'), 'name': 'MyOtherDrive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a8c4'), 'name': 'Symplectic', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d0'), 'name': 'Stratavia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d4'), 'name': 'Anystream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d6'), 'name': 'Aconex', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8d9'), 'name': 'beganto Incorporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8da'), 'name': 'LawCrossing', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8dd'), 'name': 'BCG Attorney Search', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e2'), 'name': 'SageQuest', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e3'), 'name': 'Frumster', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a8e5'), 'name': 'EasyDate', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a8ee'), 'name': 'SeeSaw Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a8f4'), 'name': 'Provade', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a900'), 'name': 'Concentric Sky', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a901'), 'name': 'Mansueto Ventures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a905'), 'name': 'MetaSpring', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a909'), 'name': 'TwoCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a90c'), 'name': 'Otay Mesa Data Center', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a916'), 'name': 'Mobitween', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a919'), 'name': 'Traffic Marketplace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a91c'), 'name': 'Proofpoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a91d'), 'name': 'Battery Info', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a920'), 'name': 'Luzern Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a923'), 'name': 'Highwinds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a924'), 'name': 'Volas Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a93d'), 'name': 'Secure64', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a946'), 'name': 'Safari Books Online', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a94a'), 'name': 'EB2 International', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a952'), 'name': 'Vividity Consulting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a953'), 'name': 'Sonopia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a954'), 'name': 'Silver Spring Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a955'), 'name': '3Leaf', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a95d'), 'name': 'Mocana', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a965'), 'name': 'Liquid Engines', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a96b'), 'name': 'WageWorks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a96e'), 'name': 'InTouch Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a96f'), 'name': 'Avega Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a970'), 'name': 'Traverse Networks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a975'), 'name': 'ServusXchange, LLC', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a97c'), 'name': 'Hammerhead Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a97d'), 'name': 'Neopolitan Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529a97e'), 'name': 'Packet Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a985'), 'name': 'webwork', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a986'), 'name': 'Convate Consultancy Services Private Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a989'), 'name': 'Hannon Hill', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a994'), 'name': 'InfoEther', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a996'), 'name': 'thoughtbot', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a99f'), 'name': 'Advameg', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a1'), 'name': 'Koffeeware', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a4'), 'name': 'Netopia System', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a7'), 'name': 'AutoClaims Direct', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9ac'), 'name': 'RealityWanted', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9b3'), 'name': 'Five9', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529a9bf'), 'name': 'Esotop Options', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9c3'), 'name': 'Taueret Laboratories', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9c9'), 'name': 'WildBlue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9cd'), 'name': 'Jentro Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d7'), 'name': 'Legal Authority', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9db'), 'name': 'ASOCS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529a9dc'), 'name': 'Affinity Express', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9df'), 'name': 'Adeptia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9eb'), 'name': 'Jasper Wireless', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9ed'), 'name': 'Iken Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9f3'), 'name': 'VoloMedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529a9f7'), 'name': 'Crossbeam Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fb'), 'name': 'musicSUBMIT', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fc'), 'name': 'AllStarWeek', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa12'), 'name': 'Clarabridge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa13'), 'name': 'Applied Identity', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa14'), 'name': 'Clarus Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa22'), 'name': 'TradeKey', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa27'), 'name': 'Spring Mobile Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa2e'), 'name': 'FierceMarkets', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa3e'), 'name': 'ONStor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa41'), 'name': 'RingCube Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa42'), 'name': 'Meru Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa49'), 'name': 'Transera Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa50'), 'name': 'Ravenflow', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa54'), 'name': 'Rage Frameworks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa61'), 'name': 'Dropfire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa6e'), 'name': 'Apredica', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa75'), 'name': 'Mondowave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa79'), 'name': 'Cortina Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7a'), 'name': 'Aquest Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7e'), 'name': 'Otaku-Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa7f'), 'name': 'Mu Dynamics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa81'), 'name': 'Multigig', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa84'), 'name': 'Sensory Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa85'), 'name': 'ChipVision Design', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8a'), 'name': 'TriCipher', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8c'), 'name': 'ID Analytics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aa8e'), 'name': 'Achronix Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa93'), 'name': 'NetDevices', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aa94'), 'name': 'Double Fusion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aa95'), 'name': 'Aicent', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aa97'), 'name': 'Mobile17', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9d'), 'name': 'Crosstrade Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9e'), 'name': 'GoodCore Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa0'), 'name': 'The Big Domain', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa3'), 'name': 'Mantara', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaa7'), 'name': 'Arteris', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aaab'), 'name': 'Open Technology Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aab2'), 'name': 'LeadPoint', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aab4'), 'name': 'Koves Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aac8'), 'name': 'Digital Face', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aacd'), 'name': 'Mobillcash', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aad4'), 'name': 'SmartTurn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aad6'), 'name': 'Exeros', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aad8'), 'name': 'Siperian', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aadb'), 'name': 'MyRealPage', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aae7'), 'name': 'Tudou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aae8'), 'name': 'Tendril', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf4'), 'name': 'AppliedIRC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf6'), 'name': 'Daimon', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf7'), 'name': 'PC Handyman', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aafa'), 'name': 'Helldesign', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aaff'), 'name': 'Alachisoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab04'), 'name': 'Digital Performance', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab09'), 'name': 'Talldude Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab0b'), 'name': 'Small Business Technology Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab13'), 'name': 'Open-Mind', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab16'), 'name': 'Ideup', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab17'), 'name': 'Adaptive Planning', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab18'), 'name': 'FunAdvice', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab1e'), 'name': 'PayCommerce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab24'), 'name': 'Programming Designs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab2b'), 'name': 'Fidelis Security Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab2e'), 'name': 'Azalea Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab31'), 'name': 'Nangate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab33'), 'name': 'Silicon Clocks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab35'), 'name': 'NorthStar Systems International', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab37'), 'name': 'Daddy Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab38'), 'name': 'DisplayLink', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab39'), 'name': 'ExaGrid Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab3e'), 'name': 'AdVerit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab40'), 'name': 'VeriSilicon Holdings', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab45'), 'name': 'Optimal Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab48'), 'name': 'F-Origin', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4b'), 'name': 'AscenVision Technology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4c'), 'name': 'Rapport', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4d'), 'name': 'WebLayers', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab4e'), 'name': 'Optichron', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab51'), 'name': 'Siimpel Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ab56'), 'name': 'Webrageous Studios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab5a'), 'name': 'Echospin', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab67'), 'name': 'Alpheon Corporation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ab6a'), 'name': 'BrickHouse Security', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ab74'), 'name': 'MCorp Consulting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7f'), 'name': 'Infrant Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ab84'), 'name': 'Certess', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab8e'), 'name': 'RF Nano Corporation', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab92'), 'name': 'RALLY! Education', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab96'), 'name': 'GetPrice', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab99'), 'name': 'Focus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9d'), 'name': 'Naverus', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9e'), 'name': 'LogRhythm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ab9f'), 'name': 'Breach Security', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aba8'), 'name': 'Zeugma Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abaf'), 'name': 'Ruckus Wireless', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abba'), 'name': 'BrightTALK', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529abbc'), 'name': 'scanR', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529abc5'), 'name': 'QSecure', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529abca'), 'name': 'PhoneFactor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abd1'), 'name': 'Asoka', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abdb'), 'name': 'Artifact Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529abe5'), 'name': 'Futurelab', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529abe8'), 'name': 'CellarTracker!', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529abea'), 'name': 'Team Forrest', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529abf6'), 'name': 'All My Data', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac02'), 'name': 'BroadLight', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0a'), 'name': 'Voxify', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0e'), 'name': 'Tripbase', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0f'), 'name': 'Broadband Genie', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac18'), 'name': 'Wiretree', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac1c'), 'name': 'Tejas Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ac21'), 'name': 'RentLinx', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac23'), 'name': 'Rhxo Technology Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac25'), 'name': 'WhatCounts', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac28'), 'name': 'Clear Light Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac2e'), 'name': 'SparkBase', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac39'), 'name': 'Rozdoum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac43'), 'name': 'Cierzo Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac44'), 'name': 'Touchboards', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac45'), 'name': 'NetAsturias Internet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ac4d'), 'name': '6th Sense Analytics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac55'), 'name': 'Triforma - Innotiimi', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ac62'), 'name': 'Unkasoft Advergaming', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ac64'), 'name': 'Voztelecom', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac6b'), 'name': 'QuickPlay Media', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ac75'), 'name': 'CloudShield Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ac83'), 'name': 'Reactor Zero', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aca6'), 'name': 'GridApp Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acb0'), 'name': 'TalkXbox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acb6'), 'name': 'Liquid Air Lab', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acbe'), 'name': 'Mobigame', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529acc9'), 'name': 'GAMEVIL', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529acd2'), 'name': 'Chillingo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529acdb'), 'name': 'TransGaming', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aced'), 'name': 'Flarium', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529acee'), 'name': 'OnePIN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529acf4'), 'name': 'Telegent Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529acf8'), 'name': 'Remobo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad00'), 'name': 'Polimetrix', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad01'), 'name': 'YouGov', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad03'), 'name': 'Parade Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad06'), 'name': 'ITM Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0a'), 'name': 'Yolk', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0c'), 'name': 'Symwave', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0d'), 'name': 'Eka Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad0e'), 'name': 'Airband Communications Holdings', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad13'), 'name': 'TechAspect Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad14'), 'name': 'Signiant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad17'), 'name': 'PrimeSyn Lab', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad18'), 'name': 'Blue Sky POS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad1a'), 'name': 'RockeTalk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad20'), 'name': 'Extreme Planner', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad21'), 'name': 'Period Three', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad23'), 'name': 'TheInfoPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad28'), 'name': 'Crossing Automation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad29'), 'name': 'Untangle', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad2d'), 'name': 'Kealia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad35'), 'name': 'UpSpring', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad37'), 'name': 'Corefino', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad3b'), 'name': 'Vembu Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad48'), 'name': 'Emporis', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad4d'), 'name': 'Saffron Brand Consultants', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad52'), 'name': 'Tehuti Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad57'), 'name': 'Naseeb Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad59'), 'name': 'Aristos Logic', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad5e'), 'name': 'HeySpace', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad61'), 'name': 'Blakol Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad66'), 'name': 'Alterwave', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad6b'), 'name': 'Assent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad76'), 'name': 'Speedshape', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad77'), 'name': 'DuneNetworks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad78'), 'name': 'FirstRain', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad79'), 'name': 'HiWired', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7c'), 'name': 'GoodtoBeYou', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7f'), 'name': 'HYFN', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ad8a'), 'name': 'CacheLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ad90'), 'name': 'Genstar Capital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad97'), 'name': 'Qbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad98'), 'name': 'Transport Marketplace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9b'), 'name': 'Power Analog Microelectronics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9c'), 'name': 'Tymphany', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9d'), 'name': 'Slim Devices', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9f'), 'name': 'Gamestop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ada2'), 'name': 'MediaPhy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ada3'), 'name': 'NoiseFree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529adab'), 'name': 'Nexway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529adac'), 'name': 'C9 Radio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529adb0'), 'name': 'Mobius Microsystems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adba'), 'name': 'Intelleflex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529adbf'), 'name': 'TuVox', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adc1'), 'name': 'Backchannelmedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adc3'), 'name': 'Spreadtrum Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529adc9'), 'name': 'Intelliden', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adcc'), 'name': 'Escapio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529add2'), 'name': 'Bluestreak Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529add6'), 'name': 'Acquirelists', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529add7'), 'name': 'ReflexPhotonics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529addb'), 'name': 'Solid State Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529addd'), 'name': 'NetInternals', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ade0'), 'name': 'Nanoradio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ade6'), 'name': 'Storwize', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adeb'), 'name': 'TimeXchange', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529adf6'), 'name': 'Devicescape', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529adf7'), 'name': 'Glu Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae09'), 'name': 'Woven Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae0a'), 'name': 'Apprion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae11'), 'name': 'Copan Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae19'), 'name': 'Appulate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae26'), 'name': 'Firethorn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae28'), 'name': 'hyperWALLET Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae2d'), 'name': 'ArcoStream', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae2e'), 'name': 'invu technology', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae31'), 'name': 'Vantrix', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae3e'), 'name': 'Websiteprojects', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae48'), 'name': 'MessageCast', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae49'), 'name': 'Pixelita Designs', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae4a'), 'name': 'Nilesh Roy Consultancy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae51'), 'name': 'Racked Hosting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae54'), 'name': 'Yakaz', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae57'), 'name': 'Echopass Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae58'), 'name': 'Quantum Secure', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae59'), 'name': 'Bizclickusa', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5a'), 'name': 'Neocase Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5c'), 'name': 'Atrenta', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5d'), 'name': 'Riverbed Technology', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae5f'), 'name': 'RADLIVE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae60'), 'name': 'Magnum Semiconductor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae61'), 'name': 'M-Factor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ae69'), 'name': 'BT Fresca', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6c'), 'name': 'TranslateMedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6d'), 'name': 'Attensity', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae72'), 'name': 'Serus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae74'), 'name': 'SpaceClaim', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae78'), 'name': 'Team Rubber', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7b'), 'name': 'OpVista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7e'), 'name': 'Sophic', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae7f'), 'name': 'MiNOWireless', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae85'), 'name': 'Assembla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ae89'), 'name': 'Mazu Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae8b'), 'name': 'Traiana', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae8d'), 'name': 'Staccato Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ae93'), 'name': 'Luminary Micro', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ae9a'), 'name': 'Bridgestream', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ae9c'), 'name': 'Eyedea Lab', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aea2'), 'name': 'Marble Security', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aea4'), 'name': 'Carrier IQ', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aea7'), 'name': 'Tobii Technology', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aea9'), 'name': 'Gennio', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb1'), 'name': 'ZVUE', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb6'), 'name': 'Acopia Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aebc'), 'name': 'Hidden City Games', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aec5'), 'name': 'AdsTamil', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aeca'), 'name': 'VidSys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aecf'), 'name': 'Xelerated', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aed6'), 'name': 'Neoconix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529aed7'), 'name': 'Visage Mobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529aedb'), 'name': 'TechForward', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aedc'), 'name': 'Travel Distribution Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aedf'), 'name': 'i-Jet Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aee3'), 'name': 'Squeejee', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aee6'), 'name': 'OnRequest Images', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529aee7'), 'name': 'Rigel Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529aefa'), 'name': 'Celeno', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aefd'), 'name': 'Vista Research', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af02'), 'name': 'NextHop Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af09'), 'name': 'SUPERAntiSpyware', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af0c'), 'name': 'Code Authority Custom Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af0d'), 'name': 'VirtuOz', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af10'), 'name': 'Litepoint', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af1e'), 'name': 'Jimojo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af27'), 'name': 'Neverblue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af2a'), 'name': 'CipherMax', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af2b'), 'name': 'Qihoo 360 Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af2c'), 'name': 'Medio', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af36'), 'name': 'LuckyDogJobs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af3d'), 'name': 'CipherTrust', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af42'), 'name': 'Septagon Studios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af43'), 'name': 'Sittercity', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af46'), 'name': 'TheMarkets', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529af4a'), 'name': 'Etology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af4b'), 'name': 'Avnera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af54'), 'name': 'Manifest Digital', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af5a'), 'name': 'Technology In Ministry', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af64'), 'name': 'Bharosa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af66'), 'name': 'Invarium', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af6e'), 'name': 'Oversi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af73'), 'name': 'BigSoccer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af74'), 'name': 'Phu Concepts', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af7b'), 'name': 'MerchantRun', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af7d'), 'name': 'Masabi', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529af7e'), 'name': 'NeoPath Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529af7f'), 'name': 'Amimon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af80'), 'name': 'Casabi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af8f'), 'name': 'Spoiled Milk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529af90'), 'name': 'MediaMall Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529af9b'), 'name': 'SportSpyder', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529af9d'), 'name': 'ELP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afa3'), 'name': 'Crea', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529afab'), 'name': 'Skycross', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afb3'), 'name': 'VSC Consulting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529afb5'), 'name': 'Power-battery', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529afba'), 'name': 'FQcode True Traceability', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afbd'), 'name': 'Natasha', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afc7'), 'name': 'LeadsMarketer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afc8'), 'name': 'Rassami', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529afca'), 'name': 'Verve Mobile', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afce'), 'name': 'WANdisco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afd0'), 'name': '247techsupport', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529afd3'), 'name': 'Metricus', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afe0'), 'name': 'Cambridge Broadband Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529afe1'), 'name': 'TopCoder', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529afef'), 'name': 'Litmus', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aff1'), 'name': 'Axeda', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529aff4'), 'name': 'Spotigo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529aff8'), 'name': 'Selatra', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b006'), 'name': 'ABCO TECHNOLOGY', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b00b'), 'name': 'GaimTheory', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b014'), 'name': 'Backbase', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b01a'), 'name': 'Lamingo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b01c'), 'name': 'Asta Publications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b025'), 'name': 'Adysoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b02c'), 'name': 'ITI Scotland', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b02e'), 'name': 'EPi Engineering Psychology Institute', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b033'), 'name': 'Weblogs SL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b036'), 'name': 'DoublePositive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b03a'), 'name': 'Designing Digitally', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b03b'), 'name': 'CallMiner', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b03f'), 'name': 'Perceptis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b041'), 'name': 'Silicon Stratgies Marketing', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b04f'), 'name': 'Icreon Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b051'), 'name': 'Shriv Commedia Solutions Pvt Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b052'), 'name': 'Leo TechnoSoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b054'), 'name': 'Leadzoomer', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b063'), 'name': 'Audacious Inquiry', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b066'), 'name': 'Headline Shirts', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b06f'), 'name': 'WIT Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b071'), 'name': 'eModeration', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b081'), 'name': 'PawSpot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b083'), 'name': 'Rocket Online Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b088'), 'name': 'Alliance of Action Sports', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b090'), 'name': 'Digital Marketing Solutions', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b091'), 'name': 'Free-Rentals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b095'), 'name': 'HomeWelcome', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b097'), 'name': 'PointSpa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b098'), 'name': 'Artionet', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b099'), 'name': 'Expathos', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b09a'), 'name': 'Askedweb', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0a2'), 'name': 'Vorsite', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0a7'), 'name': 'Full Proof', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0af'), 'name': 'TelTech Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0b1'), 'name': 'Vertical Measures', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0bd'), 'name': 'Mobile-XL', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ca'), 'name': 'Knowledge Center', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0cf'), 'name': 'A1-4 Electronics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d4'), 'name': 'Condesa', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d6'), 'name': 'Dot Com Infoway Australia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d7'), 'name': 'BPower House', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ed'), 'name': 'HellHouse Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f1'), 'name': 'Online Chess LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f7'), 'name': 'Sand Software Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b0f8'), 'name': 'Transcensus', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b0fa'), 'name': 'Jahia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b0ff'), 'name': 'Bizanga', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b101'), 'name': 'Wire2Air', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b10b'), 'name': 'EyeBuyDirect', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b110'), 'name': 'Chronos Process Integration', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b112'), 'name': 'Black Soft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b11d'), 'name': 'Everyday Health', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b121'), 'name': 'TimeLog', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b125'), 'name': 'LLONA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b126'), 'name': 'Punch Entertainment', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b12b'), 'name': 'MAG STUDIOS', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b12d'), 'name': 'KISS Intelligent Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b131'), 'name': 'Portero', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b139'), 'name': 'Velneo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b13e'), 'name': 'Splash Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b147'), 'name': 'Frontline Direct', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b151'), 'name': 'UPS Store', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b153'), 'name': 'StudyStack', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b159'), 'name': 'Geewa', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b15d'), 'name': 'Turtle Entertainment', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b168'), 'name': 'Corebridge', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b16b'), 'name': 'Major League Gaming', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b16c'), 'name': 'DigitalGuestList', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b171'), 'name': 'Pivotal Concept', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b174'), 'name': 'SPAMfighter', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b17e'), 'name': 'TicketBiscuit', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b183'), 'name': 'Sourcefire', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b184'), 'name': 'Corvigo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b18d'), 'name': 'DataPreserve', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b18e'), 'name': 'DERescue', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b192'), 'name': 'HAPPYneuron', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b19a'), 'name': 'MediaRich', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1ab'), 'name': 'iTOK', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b4'), 'name': 'dsignz media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b5'), 'name': 'Air Astana Airlines', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b6'), 'name': 'IndiGo Airlines', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1b7'), 'name': 'Skybus Airlines', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b1c8'), 'name': 'SEOValley', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d2'), 'name': 'Intercasting', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d4'), 'name': 'ThirdFrameStudios', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1da'), 'name': 'Hitachi GST', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e1'), 'name': 'Netmaps', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e6'), 'name': 'Enclarity', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e7'), 'name': 'Rivulet Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1eb'), 'name': 'Apalon', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b1ed'), 'name': 'Rightmove Overseas', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1f3'), 'name': 'Soliton Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fe'), 'name': 'Brothersoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b213'), 'name': 'Metapilot', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b214'), 'name': 'Metacast', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b22d'), 'name': 'VisConPro', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b22e'), 'name': 'Concrete', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b230'), 'name': '360is', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b239'), 'name': 'nLayer Communications', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b23a'), 'name': 'AW CompuTech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b24b'), 'name': 'Tizor Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b24c'), 'name': 'Netezza', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b24d'), 'name': 'M3X Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b255'), 'name': 'AllYearbooks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b259'), 'name': 'Stantum', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b25a'), 'name': 'Gnomz Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b25b'), 'name': 'Monarch Teaching Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b26b'), 'name': 'Umbraco', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b280'), 'name': 'IS Decisions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b289'), 'name': 'Ekartha', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b28f'), 'name': 'Tech Support 4 NYC', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b294'), 'name': 'Netboot', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b29e'), 'name': 'MPMsoft', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b2a1'), 'name': 'Cool Components', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2a4'), 'name': 'Conveneer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ae'), 'name': 'Across Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2af'), 'name': 'Geebo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2b7'), 'name': 'Evon Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2b8'), 'name': 'Ifline Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2bb'), 'name': 'Milcord LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b2bd'), 'name': 'NewVoiceMedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c4'), 'name': 'Preface Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c7'), 'name': 'Dyn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ce'), 'name': 'Codesion', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d2'), 'name': 'Binserver', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d6'), 'name': 'CereProc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2da'), 'name': 'Unity Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b2e9'), 'name': 'Topala Software Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ec'), 'name': 'Lightwaves', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ee'), 'name': 'Sharpeffect', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b2ef'), 'name': 'Fabchannel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2f9'), 'name': 'fosiki', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b2fb'), 'name': 'Real estate SKY', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b2fd'), 'name': 'quietrevolution', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b313'), 'name': 'CalFinder', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b318'), 'name': 'GlobalPrint Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b31c'), 'name': 'StepUp Commerce', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b31d'), 'name': 'SchemaLogic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b31e'), 'name': 'Verdiem', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b321'), 'name': 'InPhase Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b326'), 'name': 'Conmio', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b328'), 'name': 'Safend', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b329'), 'name': 'Dmailer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b32a'), 'name': 'CoSoSys', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b32e'), 'name': 'txtNation', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b346'), 'name': 'Xact Check', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b347'), 'name': 'BUGBYTE', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b348'), 'name': 'Ubequity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b34b'), 'name': 'ixi mobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b356'), 'name': 'Gloto', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b365'), 'name': 'Deep Shift Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b36e'), 'name': 'Menexis Merchant Account', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b381'), 'name': 'Liberty League International', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b387'), 'name': 'One Call Now', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b38b'), 'name': 'ARKeX', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b38c'), 'name': 'Atraverda', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b38e'), 'name': 'CamSemi', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b38f'), 'name': 'Futuretec', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b391'), 'name': 'Chronicle Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b392'), 'name': 'TBG Security', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b394'), 'name': 'daysoft', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b396'), 'name': 'Fotech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b398'), 'name': 'Heartscape', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b399'), 'name': 'Vialect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b39b'), 'name': 'RedVision System', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3a5'), 'name': 'Touchpaper', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3ae'), 'name': 'Javaground', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3b6'), 'name': 'Zenprise', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b3c8'), 'name': 'StudioEmotion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3c9'), 'name': 'Opobox', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b3cc'), 'name': 'ImageDeposit', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b3cf'), 'name': 'Kiala', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d0'), 'name': 'picoChip', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d8'), 'name': 'Adityaa Call Centre', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b3dc'), 'name': 'Achates Power', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b408'), 'name': 'Hudson International Properties', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b40b'), 'name': 'Production Media Network', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b410'), 'name': 'Networks in Motion', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b411'), 'name': 'Winmark Business Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b412'), 'name': 'deBruyn Design + Marketing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b41c'), 'name': 'ActiveCampaign', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b421'), 'name': 'Axle IT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b423'), 'name': 'Classic Informatics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b42c'), 'name': 'NetMotion Wireless', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b42e'), 'name': 'Rushmore Digital', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b452'), 'name': 'Elephant Pharm', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b45c'), 'name': 'Lumar', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b45f'), 'name': 'ToonUps', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b460'), 'name': 'Botonomy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b464'), 'name': 'Personal Estate Manager', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b466'), 'name': 'Lockstep Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b467'), 'name': 'House Party', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b468'), 'name': 'FiberZone Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b46d'), 'name': 'MediaWorks 7', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b46e'), 'name': 'Verisim', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b472'), 'name': 'Zinwave', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b475'), 'name': 'Impulse Accelerated Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b479'), 'name': 'Holiday Watchdog', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b47c'), 'name': 'financialjoe', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b486'), 'name': 'Adventure Central', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b48a'), 'name': 'Tatto Media', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48b'), 'name': 'Jresearch Software', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48e'), 'name': 'Commex Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b48f'), 'name': '25 Pixels Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b497'), 'name': 'mSnap', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b498'), 'name': 'SmartReply', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b49c'), 'name': 'Noise Industries', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b49f'), 'name': 'MC+A', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b4a3'), 'name': 'Ardian', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4a7'), 'name': 'AOI Marketing Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4aa'), 'name': 'Infobright', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4b2'), 'name': 'Site Mafia Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4b8'), 'name': 'Transfer To', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4bc'), 'name': 'Clickulate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c0'), 'name': 'Owlient', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c1'), 'name': 'DecalDriveway', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b4d0'), 'name': 'Azteria', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4e5'), 'name': 'Signup Anytime', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b4e9'), 'name': 'goviral', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b4f6'), 'name': 'mjunction services limite', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b4fd'), 'name': 'D2V', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b4ff'), 'name': 'ContractPal', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b506'), 'name': 'Raptor Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b50a'), 'name': 'Greetz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b510'), 'name': 'Pleth', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b513'), 'name': 'Tamarac', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b515'), 'name': 'BusinessNameUSA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b51c'), 'name': 'PC Tools', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b522'), 'name': 'Paymate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b523'), 'name': 'Stubdepot', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b535'), 'name': 'Synacor', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b552'), 'name': 'Cruxy', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b55c'), 'name': 'Proper Hosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b560'), 'name': 'Camangi', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b563'), 'name': 'Preview Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b564'), 'name': 'TIS India', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b565'), 'name': 'Lingo24', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b568'), 'name': 'DealTaker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b56b'), 'name': 'Trufina', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b574'), 'name': 'Indicative Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b575'), 'name': 'Nimsoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b577'), 'name': 'Biip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b57a'), 'name': 'Fan Centric', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b57b'), 'name': 'Net Industries', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b57d'), 'name': 'Epsilon Concepts', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b57e'), 'name': 'WIT Corporation', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b581'), 'name': 'Net Aspects', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b589'), 'name': 'Feedzilla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b58b'), 'name': 'Celequest Corp', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b598'), 'name': 'OE Design', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b59b'), 'name': 'Exfront Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b59d'), 'name': 'SLK Software Services Pvt Ltd', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a4'), 'name': 'iPropertyWebsites', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a8'), 'name': 'ControlCircle', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5b8'), 'name': 'Talent Alliance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c1'), 'name': 'anoniMouse', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c2'), 'name': 'The Escapist', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c4'), 'name': 'Three Stars', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5d8'), 'name': 'SeekBroadband', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5dd'), 'name': 'StealthTech', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e1'), 'name': 'GlassHouse Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e2'), 'name': 'C! Tech Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b5e9'), 'name': 'Generation Sales Group', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b5ec'), 'name': 'Diligent Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b5f0'), 'name': 'HEDLOC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b5fa'), 'name': 'inFreeDA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b602'), 'name': 'ACS Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b609'), 'name': 'Lilliputian Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b60c'), 'name': 'igniteHealth', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b60e'), 'name': 'Info-Surge', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b60f'), 'name': 'Information Architects', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b615'), 'name': 'Altaine', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b61e'), 'name': 'S3 Matching Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b620'), 'name': 'Groxis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b621'), 'name': 'Deep Web Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b630'), 'name': 'Catbird', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b644'), 'name': 'BelWo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b656'), 'name': 'WebFM', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b65a'), 'name': 'VillaAkumal', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b65e'), 'name': 'Applied Insights', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b660'), 'name': 'Foviance', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b669'), 'name': 'Red McCombs Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b671'), 'name': 'illuminate Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b67a'), 'name': 'AbodesIndia', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b67d'), 'name': 'Wezz Interactive', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b694'), 'name': 'SweetIM', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b69d'), 'name': 'RegalBuilt', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a7'), 'name': 'Aerovance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b3'), 'name': 'Paltux', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b7'), 'name': 'OneBigPlanet', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6bb'), 'name': 'Asani consulting Pvt Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6c4'), 'name': 'Iksanika', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b6ca'), 'name': 'Teradici', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b6cb'), 'name': 'Xeridia', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d7'), 'name': 'Imprivata', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d8'), 'name': 'Alert Logic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b6e6'), 'name': 'Mindgruve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b6eb'), 'name': 'Bomgar', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b6f8'), 'name': 'Armstead Enterprise', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b700'), 'name': 'SX Entertainment', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b701'), 'name': 'ForePoint Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b702'), 'name': 'Kongespill', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b703'), 'name': 'SEOP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b705'), 'name': 'CiteMan Network', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b70c'), 'name': 'bausepp', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b718'), 'name': 'Smart AdServer', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b71c'), 'name': 'GenoLogics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b71d'), 'name': 'i-wood', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b728'), 'name': 'Sierra Logic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b72b'), 'name': 'Azavea', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b72d'), 'name': 'avVenta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b72e'), 'name': 'IMASTE', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b732'), 'name': 'Two Animators! LLP', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b736'), 'name': 'Digitally Imported', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b738'), 'name': 'MyMusicStream', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b739'), 'name': 'Embitel', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b73b'), 'name': 'Sesamea', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b74b'), 'name': 'ZettaView Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b74d'), 'name': 'Solera Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b750'), 'name': 'StoredIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b75c'), 'name': 'sinhasoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b762'), 'name': 'Campaign Monitor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b764'), 'name': 'Webpulser', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b765'), 'name': 'HT2', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b773'), 'name': 'InvestorLoft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b774'), 'name': 'Yanko Design', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b775'), 'name': 'Level 5 Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b777'), 'name': 'Cat on the Couch Productions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b779'), 'name': 'N-able Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b77d'), 'name': 'Kaseya', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b782'), 'name': 'Absoft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b785'), 'name': 'RentVine', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b790'), 'name': 'Telehammers', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b798'), 'name': 'Symphogen', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a1'), 'name': 'ServiceRelated', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a2'), 'name': 'Melinta', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a6'), 'name': 'SOMARK Innovations', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ab'), 'name': 'Outso', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7c5'), 'name': 'mobifriends', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7dd'), 'name': 'Your Design Online', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7df'), 'name': 'Stretch', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e1'), 'name': 'Pelikan Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e3'), 'name': 'Trellia Networks', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7e6'), 'name': 'Explore Talent', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ef'), 'name': 'Riviera Partners', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f1'), 'name': 'Elite Care Canada', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f2'), 'name': 'Neurona Networking', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b7f5'), 'name': 'MyBuilder', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fa'), 'name': 'Shopyop', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fc'), 'name': 'Stoke', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b7fd'), 'name': 'Transcepta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b7ff'), 'name': 'Tilted Pixel', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b802'), 'name': 'Nosco', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b80a'), 'name': 'vLinx', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b823'), 'name': 'Nirix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b830'), 'name': 'Agilis Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b832'), 'name': 'BiPar Sciences', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b83b'), 'name': 'Tippingpoint Labs', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b83c'), 'name': 'IES Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b842'), 'name': 'Indienink', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b847'), 'name': 'Omniscient Technology', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b850'), 'name': 'AppShore', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b851'), 'name': 'FTRANS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b856'), 'name': 'Cinetic Media', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b85b'), 'name': 'medpex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b85f'), 'name': 'Bokan Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b879'), 'name': 'eG Innovations', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b894'), 'name': 'Rentricity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b8a4'), 'name': 'Dinahosting', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8a8'), 'name': 'Demandware', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c1'), 'name': 'backpage', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b8cb'), 'name': 'Acotis Jewellery', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8d7'), 'name': 'Bench on Demand', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e2'), 'name': 'Chasma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8ed'), 'name': 'Websystems, inc', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f0'), 'name': 'Centralis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f1'), 'name': 'Minecode', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f4'), 'name': 'Bluewolf', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b8fd'), 'name': 'Red Engineering Design', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b903'), 'name': 'Tenax technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b90b'), 'name': 'Phonevalley', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b90c'), 'name': 'iLoop Mobile', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b90d'), 'name': 'HipCricket', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b911'), 'name': 'Metreos Corporation', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b915'), 'name': 'Sonos', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b918'), 'name': 'Active Endpoints', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b919'), 'name': 'Birst', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b923'), 'name': 'Hotchalk', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b925'), 'name': 'eLayaway', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b92b'), 'name': 'NaturalMotion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b938'), 'name': 'MAQ Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b93f'), 'name': 'Control Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b94c'), 'name': 'oscommerce experts', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b951'), 'name': 'Irish Web Developers', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b954'), 'name': 'Ratio Interactive', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b966'), 'name': 'PERCUSSA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b968'), 'name': 'Sandbox Software Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b969'), 'name': 'ReadHowYouWant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b970'), 'name': 'IPcelerate', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b98a'), 'name': 'Tomoye Community Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b994'), 'name': 'Sales Placements Australia', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b997'), 'name': 'Clickfree', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b99e'), 'name': 'SeeWhy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ad'), 'name': 'NexJ Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ae'), 'name': 'GMA Grading', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b9b2'), 'name': 'Bidoo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9b9'), 'name': 'MetaGeek, LLC', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bd'), 'name': 'Solyndra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9be'), 'name': 'Invenergy', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bf'), 'name': 'Taigen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529b9c2'), 'name': 'Recyclebank', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9c7'), 'name': 'Motor Creative Marketing', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ce'), 'name': 'iPOTT Softech India Private Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9da'), 'name': 'Finagle', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9db'), 'name': 'Pixel Vivant', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529b9e3'), 'name': 'BridgeLux', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f2'), 'name': 'Xorcom', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f3'), 'name': 'CMS Enviro Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f9'), 'name': 'Netbiscuits', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba01'), 'name': 'Valid8', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba03'), 'name': 'SearchForecast', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba07'), 'name': 'NetRetail Holding', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0c'), 'name': 'Aspediens', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0d'), 'name': 'Tiscali UK', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba0f'), 'name': 'Fulcrum Microsystems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba10'), 'name': 'ExteNet Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba11'), 'name': 'Bullhorn', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba12'), 'name': 'CoreOptics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba14'), 'name': 'Panasas', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba1e'), 'name': 'Eden Development', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba20'), 'name': 'NetroStar', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba22'), 'name': 'SMobile Systems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba24'), 'name': 'Amedia Networks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba25'), 'name': 'Antepo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba27'), 'name': 'Brandspace', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba28'), 'name': 'Promotion Space Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba2d'), 'name': 'FocusFrame', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba33'), 'name': 'ITLANDMARK', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba3a'), 'name': 'Baytech Webs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba3b'), 'name': 'Diamantea', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba44'), 'name': 'Navatar Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba45'), 'name': 'DoJiggy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba50'), 'name': 'Eton Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba52'), 'name': 'Servicios Netosfera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529ba5c'), 'name': 'Celtro', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba5d'), 'name': 'EverSpin Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba61'), 'name': 'bwired', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba62'), 'name': 'Sagacious Softwares', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba68'), 'name': 'Clearleft', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba6a'), 'name': 'Callender Creates', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba70'), 'name': 'Vital Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba75'), 'name': 'Plural and Partners Inc', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529ba80'), 'name': 'Matisse Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba81'), 'name': 'Arieso', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529ba88'), 'name': 'BizTradeShows', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529ba8d'), 'name': 'GRNLive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529ba9a'), 'name': 'X3 Studios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529ba9c'), 'name': 'DiVitas Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529baa9'), 'name': 'Easy Corp Ltd', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bab0'), 'name': 'Infostroy', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bab6'), 'name': 'VFM Leonardo', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baba'), 'name': 'Eglue Business Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529babb'), 'name': 'Corvil', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bac1'), 'name': 'Breakaway Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bac4'), 'name': 'Host Analytics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bace'), 'name': 'Uplogix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bad1'), 'name': 'Mobidia Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bad2'), 'name': 'AllClear ID', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bad9'), 'name': 'Provide Support', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bada'), 'name': 'Live2Support', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bae5'), 'name': 'StreamTheWorld', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bae8'), 'name': 'Velti', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529baf1'), 'name': 'SpinalMotion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529baf3'), 'name': 'MergeOptics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baf5'), 'name': 'Qosmos', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529baf7'), 'name': 'GeoDigm', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb05'), 'name': 'Miyowa', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb07'), 'name': 'QD Vision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb09'), 'name': 'GPS Insight', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0c'), 'name': 'SensorLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0d'), 'name': 'Razorsight', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0e'), 'name': 'Specialty Capital', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb1a'), 'name': 'First Coverage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb1c'), 'name': 'Firm58', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb23'), 'name': 'The HeadShop Wigs Online', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb29'), 'name': 'Emmaus Designs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2a'), 'name': 'Minyanville', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2d'), 'name': 'n3w media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bb33'), 'name': 'HiFi Headphones', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb3b'), 'name': 'Dating Site Builder', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb44'), 'name': 'Canopy Financial', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb4f'), 'name': 'Air Ninja', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb64'), 'name': 'Senscient', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb65'), 'name': 'Carbonon Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb6d'), 'name': 'InSite Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bb73'), 'name': 'Neuro SEO Services', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb7d'), 'name': 'BetterTrades', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bb80'), 'name': 'Book4Time', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb82'), 'name': 'Redfern Integrated Optics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb85'), 'name': 'SatNav Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bb86'), 'name': 'Rhapso', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8a'), 'name': 'Illumitex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8d'), 'name': 'ContinuumGlobal', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bb9b'), 'name': 'Softechstratgegies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bba2'), 'name': 'Asteres', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bba6'), 'name': 'Lightning Gaming', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bba7'), 'name': 'Aria Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc0'), 'name': 'MMIC Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc7'), 'name': 'Garlik', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcb'), 'name': 'CityGuideSA', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcd'), 'name': 'RainStor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcf'), 'name': 'OfferWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bbd3'), 'name': '[212]Media', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbdc'), 'name': 'Zenitum', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bbea'), 'name': 'Correlsense', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bbef'), 'name': 'Ondax', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bbf2'), 'name': 'SkillSurvey', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bbfc'), 'name': 'Cascade Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc02'), 'name': 'PLAVEB Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc0a'), 'name': 'SEOeconomist', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc0d'), 'name': 'Design215', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc11'), 'name': 'CxT Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc18'), 'name': 'Syntensia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc1a'), 'name': 'My-Hammer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc1c'), 'name': 'WiseBeetle', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc21'), 'name': 'Rhythmia Medical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc22'), 'name': 'EBR Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc24'), 'name': 'Izola Shower Curtains', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc26'), 'name': 'DriveHQ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc28'), 'name': 'Distinctive Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc2b'), 'name': 'LDL Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc2f'), 'name': 'amigura', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc31'), 'name': 'WiFilez', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc37'), 'name': 't3leads', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc3c'), 'name': 'Shqiperia Com', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc41'), 'name': 'LEADshare', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc43'), 'name': 'Pro-Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc44'), 'name': 'greenstar media labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bc47'), 'name': 'InfTek', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc4a'), 'name': 'Internet Marketing Consultant', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc4d'), 'name': 'Factonomy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc5d'), 'name': 'DermaGen', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc61'), 'name': 'c-LEcta', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc62'), 'name': 'Evolutionary Genomics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bc74'), 'name': 'Domainex', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc75'), 'name': 'Vandalia Research', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc76'), 'name': 'BCB Medical', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bc7a'), 'name': 'U-Play Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc7c'), 'name': 'eflow', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bc81'), 'name': 'Five Prime Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bc84'), 'name': 'WysDM Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc8d'), 'name': 'Oxatis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bc93'), 'name': '360innovate', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcb2'), 'name': 'Partners Marketing Group', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bcbe'), 'name': 'CarWale', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcbf'), 'name': 'Auto-IES', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc0'), 'name': 'Autoquake', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc6'), 'name': 'Evince', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bccf'), 'name': 'ClassifEye', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd0'), 'name': 'Vocab', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd4'), 'name': 'Pixelligent', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd6'), 'name': '2 Minutes', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd9'), 'name': 'Netsonda Research', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bcdf'), 'name': 'AppIQ', 'founded_year': 2001}, {'_id': ObjectId('52cdef7e4bab8bd67529bce0'), 'name': 'Zipcar', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bceb'), 'name': 'Roomster', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bcf7'), 'name': 'Ultracell', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bcfc'), 'name': 'Sirius Forex Trading Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7e4bab8bd67529bd0b'), 'name': 'X1 Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd0d'), 'name': 'Manifold Products', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bd11'), 'name': '1Scan', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bd13'), 'name': 'ShoeHunting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd1c'), 'name': 'My Ad Box', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd1e'), 'name': 'Feed Me Links', 'founded_year': 2002}, {'_id': ObjectId('52cdef7e4bab8bd67529bd20'), 'name': 'SiteVisibility', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd29'), 'name': 'MetroLyrics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7e4bab8bd67529bd2a'), 'name': 'SchoolRack', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd3a'), 'name': 'TypeFrag', 'founded_year': 2003}, {'_id': ObjectId('52cdef7e4bab8bd67529bd3c'), 'name': 'Soliant Energy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7e4bab8bd67529bd42'), 'name': 'SunEdison', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bd54'), 'name': 'AVST', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bd57'), 'name': 'Mamapedia', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd5c'), 'name': 'GGK Tech', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd68'), 'name': 'BuildForge', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bd69'), 'name': 'Electric Cloud', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bd6d'), 'name': 'Mint Digital', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd72'), 'name': 'Qingdao Land of State Power Environment Engineering', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bd74'), 'name': 'TechnoSpin', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7b'), 'name': 'Merchantrms', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7c'), 'name': 'Kythera Biopharmaceuticals', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bd96'), 'name': \"Don't Blink Design\", 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bd99'), 'name': 'Blip', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdab'), 'name': 'Ciklum', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdb3'), 'name': 'ViralTracker', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bdb7'), 'name': 'Private Equity Info', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdbb'), 'name': 'IntraWorlds', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdbe'), 'name': 'Roundthird', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bdc1'), 'name': 'AlloTraffic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bdc9'), 'name': 'Capture the Market', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdd8'), 'name': 'Trustdefender', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bde3'), 'name': 'OncoMed Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bde4'), 'name': 'Stemline Therapeutics', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bde7'), 'name': 'uttarbharat Inc', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bdec'), 'name': 'WorldWide Biggies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bdef'), 'name': 'Infosearch Media', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bdf6'), 'name': 'BiddingForGood', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bdfa'), 'name': 'Instant Domain Search', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be04'), 'name': 'Wakonda Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be0e'), 'name': 'Apieron', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be0f'), 'name': 'Innovative Biosensors', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be16'), 'name': 'TRIRIGA', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be19'), 'name': 'Solace Systems', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be1a'), 'name': 'Kryptiva', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be2a'), 'name': 'CSA Partners', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be2f'), 'name': 'WebGravity', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be39'), 'name': 'Prenova', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be3b'), 'name': 'Submitinme', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be3d'), 'name': 'Ambow Education', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be44'), 'name': 'Pasteuria Bioscience', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be49'), 'name': 'Icera', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be5b'), 'name': 'NannyToYou', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be5e'), 'name': 'ObjectSharp', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529be63'), 'name': 'Poly9', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be65'), 'name': \"Flippin' Sweet Gear\", 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be77'), 'name': 'Soho Properties', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529be7e'), 'name': 'Waymedia', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be80'), 'name': 'Telisma', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be81'), 'name': 'OnMobile', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529be82'), 'name': 'Morgan Everett', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529be87'), 'name': 'Flashcoms', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529be88'), 'name': 'Sunlight Digital', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529be9e'), 'name': 'Binbit', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bea2'), 'name': 'DevelopIntelligence', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bea5'), 'name': 'ERA Biotech', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bea7'), 'name': 'Wasatch Wind', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529beac'), 'name': 'Biomonitor', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bebb'), 'name': 'AMEC', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bebf'), 'name': 'InboxFox', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bec9'), 'name': 'Akond Lab', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529beda'), 'name': 'Hexaformer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bee4'), 'name': 'Ovation Pharmaceuticals', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529beec'), 'name': 'Aspen Surgical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529beee'), 'name': 'HotSpot Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bef2'), 'name': 'GolfToImpress', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bef3'), 'name': 'Cyber-Duck', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bef6'), 'name': 'ke Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529befb'), 'name': 'MoSync', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529beff'), 'name': 'ATILUS', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf01'), 'name': 'Applied Cell Sciences', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf08'), 'name': 'Biofisica', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf09'), 'name': 'BioProtect', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf0c'), 'name': 'Bashton', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf10'), 'name': 'CoalTek', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf12'), 'name': 'eIQnetworks', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf16'), 'name': 'Red Javelin Communications', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf29'), 'name': 'Global Surfari', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf2d'), 'name': 'Tangoe', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf30'), 'name': 'Hydra Biosciences', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf31'), 'name': 'Ben Jen Online, LLC', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf37'), 'name': 'Chiral Quest', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf38'), 'name': 'Innovative Spinal Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3b'), 'name': 'Singulex', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3c'), 'name': 'Tribold', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3f'), 'name': 'MD-IT', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf43'), 'name': 'S*Bio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf54'), 'name': 'XPlace', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf56'), 'name': 'Above the Fold', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf59'), 'name': 'Xyber Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf5a'), 'name': 'Limerick BioPharma', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf67'), 'name': 'Motion Computing', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6a'), 'name': 'Voon', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6c'), 'name': 'KaloBios Pharmaceuticals', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6f'), 'name': 'Brondell', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bf73'), 'name': 'Prosensa', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf75'), 'name': 'Cornerstone Pharmaceuticals', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529bf76'), 'name': 'TextMagic', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7c'), 'name': 'En-Twyn', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7d'), 'name': 'Ramp Up Tech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf7e'), 'name': 'Avid Radiopharmaceuticals', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf87'), 'name': 'Absara', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bf88'), 'name': 'NYC Media Group', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf8f'), 'name': 'GCDUK Search', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bf95'), 'name': 'Promo Resources', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfa7'), 'name': 'HighBeam Research', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfaa'), 'name': 'Triumfant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfad'), 'name': 'CareGain', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb1'), 'name': 'Virtual Heroes', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb4'), 'name': 'Brogent Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfb7'), 'name': 'Aileron Therapeutics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bfbb'), 'name': 'Diagnoplex', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bfc9'), 'name': 'ExpanDrive', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcb'), 'name': 'Opsona', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcc'), 'name': 'MediQuest Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcd'), 'name': 'ReportLinker', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfce'), 'name': 'VaxInnate', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529bfcf'), 'name': 'Seriosity', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd2'), 'name': 'NanoString Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd3'), 'name': 'Solazyme', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfe1'), 'name': 'The Box', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529bfe5'), 'name': 'Certify Data Systems', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529bfea'), 'name': 'Pegasys', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bfec'), 'name': 'Costume Craze', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529bff2'), 'name': 'TVU Networks', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529bff9'), 'name': 'Vyatta', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c002'), 'name': 'Green Courte Partners', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c00a'), 'name': 'Infinite Power Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c016'), 'name': 'Transhorsa Translation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c018'), 'name': 'ElectraTherm', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c01a'), 'name': 'Telenity', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c031'), 'name': 'Lime Kiln Camera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c042'), 'name': 'Optimum Energy', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c043'), 'name': 'DRC Computer', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c044'), 'name': 'Security First', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c047'), 'name': 'Proteon Therapeutics', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c04a'), 'name': 'Max Q Designs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c04b'), 'name': 'Tokai Pharmaceuticals', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c050'), 'name': 'Xsigo', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c058'), 'name': 'Polatis', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c05b'), 'name': 'Forterra Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c05d'), 'name': 'Ntech Industries', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c060'), 'name': 'SiliconStor', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c061'), 'name': 'Greenline Industries', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c066'), 'name': 'Fresh Echo Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c067'), 'name': 'Miles Electric Vehicles', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c06a'), 'name': 'EnerG2', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c06b'), 'name': 'Avantium Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c06c'), 'name': 'Biosystems International', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c073'), 'name': 'Iteego', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c07d'), 'name': 'National Business Brokerage', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c07e'), 'name': 'Lee Enterprises', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c091'), 'name': 'Generous Gems Jewelry', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c095'), 'name': 'Posh Eyes', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c0a0'), 'name': 'Zemoga', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b1'), 'name': 'Shadeland Studios', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b3'), 'name': 'MacroGenics', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b7'), 'name': 'Ostara', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b9'), 'name': 'Anacor Pharmaceutical', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c2'), 'name': 'MusicIP', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c7'), 'name': 'LearningMate', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ca'), 'name': 'Baobaz', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0cf'), 'name': 'BioMed Central', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0d8'), 'name': 'Alimera Sciences', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0da'), 'name': 'Idealo', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0dd'), 'name': 'Comparado', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c0df'), 'name': 'THiNKmedia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0e6'), 'name': 'm-Wise', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0eb'), 'name': 'Sutro Biopharma', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c0f7'), 'name': 'Mailout Interactive', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0fa'), 'name': 'FuckedCompany', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c0fe'), 'name': 'PIERIS Proteolab', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ff'), 'name': 'Connectiva Systems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c100'), 'name': 'Student Driven', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c10a'), 'name': 'Seahorse Bioscience', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c10d'), 'name': 'SynapCell', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c118'), 'name': 'Threadless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c122'), 'name': 'Fermentalg', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c124'), 'name': 'Iconic Therapeutics', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c126'), 'name': 'Agrisoma Biosciences', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c12e'), 'name': 'The Book Depository', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c140'), 'name': 'Taligen Therapeutics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c143'), 'name': 'Silex Microsystems', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c146'), 'name': 'INRIX', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c147'), 'name': 'Mediamobile', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c149'), 'name': 'NAVX', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c14c'), 'name': 'Living Proof', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c150'), 'name': 'Altair Semiconductor', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c152'), 'name': 'Appuonline', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c154'), 'name': 'SteadyMed Therapeutics', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c15d'), 'name': 'Webtrekk', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c160'), 'name': 'Kinos Group', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c163'), 'name': 'Airgain', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c165'), 'name': 'Luca Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c16e'), 'name': 'BPL Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c16f'), 'name': 'Glaukos', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c178'), 'name': 'Bigpoint', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c17f'), 'name': 'Brainsgate', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c180'), 'name': 'PINC Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c181'), 'name': 'PrecisionPoint Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c186'), 'name': 'ICU Global', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c18b'), 'name': 'PayPay', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c18d'), 'name': 'ZoomSystems', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c18f'), 'name': 'Puppet Labs', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c190'), 'name': 'Santhos', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c197'), 'name': 'Catalyst Biosciences', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c19b'), 'name': 'Accera', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c19e'), 'name': 'Submittal Exchange', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1a6'), 'name': 'Zugara', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ac'), 'name': 'Costumzee', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1b1'), 'name': 'Ampere Software Private Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1b4'), 'name': 'City Network Hosting', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ba'), 'name': 'EGEN', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1bc'), 'name': 'Intermolecular', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1bf'), 'name': 'Carpathia Hosting', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1c5'), 'name': 'Pontis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ca'), 'name': 'Enpirion', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1cc'), 'name': 'Joomla', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1cd'), 'name': 'ocProducts', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d1'), 'name': 'Exalt Communications', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d3'), 'name': 'Audience', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d5'), 'name': 'Visiogen', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c1dc'), 'name': 'Palyon Medical', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1df'), 'name': 'CallFire', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c1e5'), 'name': 'Marinus Pharmaceuticals', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1e8'), 'name': 'Our Memories in Motion', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ea'), 'name': 'iNetGiant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c1f3'), 'name': 'Kyero', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c1f9'), 'name': 'Intradigm Corporation', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fb'), 'name': 'Global Data Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fe'), 'name': 'OpTier', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c202'), 'name': 'Green Wave Holidays', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c215'), 'name': 'dream ad', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c21c'), 'name': 'Savant', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c22e'), 'name': 'Hythiam', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c243'), 'name': 'NetXen', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c24d'), 'name': 'New Energy Finance', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c254'), 'name': 'Grubby Games', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c257'), 'name': 'Azingo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c259'), 'name': 'mediaburst', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c25b'), 'name': 'Prime Time Communications', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c25d'), 'name': 'Premier Power', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c260'), 'name': 'Oesia', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c265'), 'name': 'Altivation Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c269'), 'name': 'Video Game 911', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c26c'), 'name': 'Axiom Microdevices', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c26e'), 'name': 'Varonis Systems', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c26f'), 'name': 'All India Guide', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c273'), 'name': 'Zymeworks', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c27d'), 'name': 'Nuventix', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c27e'), 'name': 'Schoolwires', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c281'), 'name': 'I6NET', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c285'), 'name': 'Aveksa', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c287'), 'name': 'Rivotek Kenya Limited', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c28e'), 'name': 'CMSWire', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c293'), 'name': 'HxTechnologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a2'), 'name': 'AbCRO', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2ad'), 'name': 'Waban Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b4'), 'name': 'Intexys', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b5'), 'name': 'Photonera', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b7'), 'name': 'Broadband Networks Wireless Internet', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b8'), 'name': 'Fisher Vista', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2be'), 'name': 'Report Hawk', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2c6'), 'name': 'Agency Zebra', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2c8'), 'name': 'Aspen Aerogels', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c2ca'), 'name': 'Alter-G', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c2cd'), 'name': 'XDx', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c2cf'), 'name': 'Edgeware', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d1'), 'name': 'WiNetworks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d5'), 'name': 'Sentilla', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2d9'), 'name': 'CoMentis', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2e1'), 'name': 'Mirics Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c2e2'), 'name': 'Advanced Manufacturing Control Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c2f4'), 'name': 'ERTH Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c2f7'), 'name': 'NPS', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c300'), 'name': 'Woodland Biofuels', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c302'), 'name': 'Breathe Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c30c'), 'name': 'Bioscale', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c30e'), 'name': 'Realeyes 3D', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c321'), 'name': 'Colibria', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c322'), 'name': 'Hurrah', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c329'), 'name': 'Kurani Interactive', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c32f'), 'name': 'Mobile Interactive Group', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c339'), 'name': 'SoloPower', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c33a'), 'name': 'Neosens', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c348'), 'name': 'Mashable', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c36b'), 'name': 'Compassoft', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c37c'), 'name': 'Roundstone Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c37f'), 'name': 'Compliance 360', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c38e'), 'name': 'Ciclon Semiconductor Device Corporation', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c390'), 'name': 'Nexant', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c393'), 'name': 'Coral8', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c396'), 'name': 'AlterPoint', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c39a'), 'name': 'Sana Security', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c39f'), 'name': 'WaveTwo', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a2'), 'name': 'Digital Interactive', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a3'), 'name': 'Darby Corporate Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a4'), 'name': 'Telogis', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3ac'), 'name': 'Mind Drivers', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3af'), 'name': 'Control Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3b6'), 'name': 'PopCap Games', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c0'), 'name': 'FleetMatics', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c4'), 'name': 'DataKraft', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c6'), 'name': 'Online Personals Watch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c8'), 'name': 'Picsearch', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c3d9'), 'name': 'Jalios', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3dc'), 'name': 'Increase CRM', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c3df'), 'name': 'Fortefi', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e6'), 'name': 'FNZ', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c3ed'), 'name': 'GreenVolts', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f1'), 'name': 'SoftLayer', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f4'), 'name': 'Purple Labs', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c3fb'), 'name': 'Semprius', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c40b'), 'name': 'Infrasolve', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c40e'), 'name': 'Haivision', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c420'), 'name': 'One97 Communications', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c42e'), 'name': 'C7 Data Centers', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c42f'), 'name': 'Bamboo Media Casting', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c433'), 'name': 'aCon', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c438'), 'name': 'StreamUK', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c43e'), 'name': 'Recycleinme', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c44a'), 'name': 'MentorMate', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c459'), 'name': 'Concord Supplies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c461'), 'name': 'BatteryFuel', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c475'), 'name': 'Phase Holographic Imaging', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c47a'), 'name': 'Moonfruit', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c47b'), 'name': 'SI Government Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c482'), 'name': 'PicoSolve', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c48b'), 'name': 'Vativ Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c49b'), 'name': 'BzzAgent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ad'), 'name': 'Trapeze Networks', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ae'), 'name': 'Axway', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4af'), 'name': 'Pro2col', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4bd'), 'name': 'SiteValley', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c4c8'), 'name': 'Danoo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c4c9'), 'name': 'CognitiveDATA', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ce'), 'name': 'Goodman Networks', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d1'), 'name': 'Blink Twice', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d2'), 'name': 'Telx', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d6'), 'name': 'Energy and Power Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4da'), 'name': '800APP', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e0'), 'name': 'CPower', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e1'), 'name': 'UCWeb', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e4'), 'name': 'Enecsys', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c4e7'), 'name': 'Radio Systemes Ingenierie', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4eb'), 'name': 'Teklatech', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c4f6'), 'name': 'Prepared Response', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c4fc'), 'name': 'Synergy Production', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c505'), 'name': 'Optium', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c50c'), 'name': 'Wondershare Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c513'), 'name': 'Shaping Tomorrow', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c515'), 'name': 'iCentera', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c51c'), 'name': 'Media Whiz', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c51e'), 'name': 'Relevantis', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c528'), 'name': 'A Small Orange', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c52d'), 'name': 'Anchor Bay Technologies', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c534'), 'name': 'Pufferfish', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c538'), 'name': 'Kineto Wireless', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c544'), 'name': 'TZero Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c547'), 'name': 'Asempra Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c548'), 'name': 'Bakbone Software', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c54b'), 'name': 'Nexsem', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c54e'), 'name': 'Airespace', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c54f'), 'name': 'Phasor Solutions', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c552'), 'name': 'Touchdown Technologies', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c56c'), 'name': 'OSA Technologies', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c56e'), 'name': 'Sanera', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c588'), 'name': 'Applied Language Solutions', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c589'), 'name': 'eXMeritus', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c58d'), 'name': 'Reva Systems', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c58e'), 'name': 'Virtual Iron Software', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c594'), 'name': 'Equiendo', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c598'), 'name': 'Axxana', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c59c'), 'name': 'TerraGo Technologies', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a0'), 'name': 'Axis Three', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a3'), 'name': 'ColdSpark', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a4'), 'name': 'Crocus Technology', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5a7'), 'name': 'Canevaflor', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5aa'), 'name': 'Nethra Imaging', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ab'), 'name': 'M2M Solution', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ae'), 'name': 'Aspera', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5b0'), 'name': '10East', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5b5'), 'name': 'm35 Limited', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ba'), 'name': 'iomart Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5c3'), 'name': 'Interprise Software Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5c6'), 'name': 'Incuity Software', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d6'), 'name': 'Swiftprosys', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d9'), 'name': 'Events Computer Design', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c5e2'), 'name': 'Affiliate Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ee'), 'name': 'Translucent', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f0'), 'name': 'Tizbi', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f1'), 'name': 'Everyday Solutions', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5f8'), 'name': 'NanoBio', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c5fe'), 'name': 'InfoLogix', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c604'), 'name': 'Ponte Solutions', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c610'), 'name': 'PaymentOne', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c617'), 'name': 'Open E Cry', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c618'), 'name': 'optionsXpress', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c619'), 'name': 'Skywire Software', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c62d'), 'name': 'Total Telecom Consulting', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c636'), 'name': 'Collaboration Online', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c63c'), 'name': 'Layered Technologies', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c63e'), 'name': 'eForce Media', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c63f'), 'name': 'Sirific Wireless', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c643'), 'name': 'Storm Semiconductor', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c64c'), 'name': 'Abraxas', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c64f'), 'name': 'Focus Views', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c653'), 'name': 'iPartyTV', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c659'), 'name': 'LogicLibrary', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c65a'), 'name': 'SOA Software', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c65b'), 'name': 'AGEIA Technologies', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c65c'), 'name': 'SheKnows', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c668'), 'name': 'WV Fiber', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c673'), 'name': 'LeadRev', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c677'), 'name': 'MediaPal', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c67b'), 'name': 'Edgeos', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c67c'), 'name': 'LED Grow Master Global', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c687'), 'name': 'findownersearch', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c68b'), 'name': 'Prolify', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c69d'), 'name': 'Fotothing', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ab'), 'name': 'Vigilos', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b4'), 'name': 'OptiMedica', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b8'), 'name': 'CScout Japan', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c6bd'), 'name': 'AffittiVacanze-Spagna', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6bf'), 'name': 'Mu-Gahat Enterprises', 'founded_year': 2005}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c0'), 'name': 'Block Shield', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c4'), 'name': 'ITERNOVA', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c5'), 'name': 'Luminus Devices', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6cb'), 'name': 'AwardSpace', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d0'), 'name': 'Netrake', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d8'), 'name': 'NextLabs', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6dd'), 'name': 'Cameron Health', 'founded_year': 2001}, {'_id': ObjectId('52cdef7f4bab8bd67529c6e0'), 'name': 'Celestial Semiconductor', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ee'), 'name': 'EnterSys Group', 'founded_year': 2000}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ef'), 'name': 'Axon Solutions', 'founded_year': 2004}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f0'), 'name': 'Intergy', 'founded_year': 2003}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f7'), 'name': 'AfterLogic', 'founded_year': 2002}, {'_id': ObjectId('52cdef7f4bab8bd67529c6fa'), 'name': 'EnteGreat', 'founded_year': 2000}]\n" + ] + } + ], + "source": [ + "results3 = list(collection.find({\"founded_year\": {\"$gt\":1999 , \"$lt\":2006}}, {\"name\":1, \"founded_year\": 1}))\n", + "print(len(results3))\n", + "print(results3)" + ] }, { "cell_type": "markdown", @@ -70,11 +123,33 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'name': 'Facebook', 'ipo': {'valuation_amount': 104000000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 5, 'pub_day': 18, 'stock_symbol': 'NASDAQ:FB'}}, {'_id': ObjectId('52cdef7c4bab8bd675297d94'), 'name': 'Twitter', 'ipo': {'valuation_amount': 18100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'NYSE:TWTR'}}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'name': 'LinkedIn', 'ipo': {'valuation_amount': 9310000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 20, 'stock_symbol': 'NYSE:LNKD'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'name': 'Amazon', 'ipo': {'valuation_amount': 100000000000, 'valuation_currency_code': 'USD', 'pub_year': 1997, 'pub_month': 5, 'pub_day': None, 'stock_symbol': 'NASDAQ:AMZN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'ipo': {'valuation_amount': 290000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 2, 'pub_day': 17, 'stock_symbol': 'NASDAQ:BCOV'}}, {'_id': ObjectId('52cdef7c4bab8bd675297ee5'), 'name': 'KIT digital', 'ipo': {'valuation_amount': 235000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 27, 'stock_symbol': 'KITD'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'ipo': {'valuation_amount': 1600000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 1, 'pub_day': 26, 'stock_symbol': 'NYSE:NLSN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'ipo': {'valuation_amount': 1050000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 21, 'stock_symbol': 'NASDAQ:OPEN'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'ipo': {'valuation_amount': 287000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 5, 'pub_day': 23, 'stock_symbol': 'NYSE:ECOM'}}, {'_id': ObjectId('52cdef7c4bab8bd675297f95'), 'name': 'Jive Software', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 2, 'pub_day': 3, 'stock_symbol': 'NASDAQ:JIVE'}}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'ipo': {'valuation_amount': 2550000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 19, 'stock_symbol': 'NASDAQ:Z'}}, {'_id': ObjectId('52cdef7c4bab8bd67529805d'), 'name': 'Wix', 'ipo': {'valuation_amount': 750000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 6, 'stock_symbol': 'NASDAQ:WIX'}}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'ipo': {'valuation_amount': 350000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'SFLY'}}, {'_id': ObjectId('52cdef7c4bab8bd6752981a7'), 'name': 'TripAdvisor', 'ipo': {'valuation_amount': 3273770000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 12, 'pub_day': 21, 'stock_symbol': 'TRIP'}}, {'_id': ObjectId('52cdef7c4bab8bd67529823b'), 'name': 'Salesforce', 'ipo': {'valuation_amount': 110000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 7, 'pub_day': 2, 'stock_symbol': 'NYSE:CRM'}}, {'_id': ObjectId('52cdef7c4bab8bd6752982f6'), 'name': 'HomeAway', 'ipo': {'valuation_amount': 3000000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 6, 'pub_day': 29, 'stock_symbol': 'NASDAQ:AWAY'}}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'ipo': {'valuation_amount': 140000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 1, 'pub_day': 11, 'stock_symbol': 'NASDAQ:QNST'}}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'name': 'Rackspace', 'ipo': {'valuation_amount': 5440000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'RAX'}}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'name': 'BMC Software', 'ipo': {'valuation_amount': 6000000000, 'valuation_currency_code': 'USD', 'pub_year': 1988, 'pub_month': 8, 'pub_day': 12, 'stock_symbol': 'NASDAQ:BMC'}}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'ipo': {'valuation_amount': 1060000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:ONE'}}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'ipo': {'valuation_amount': 824000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 4, 'pub_day': 20, 'stock_symbol': 'NYSE:BLOX'}}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'name': 'Tencent', 'ipo': {'valuation_amount': 11000000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'HK:0700'}}, {'_id': ObjectId('52cdef7c4bab8bd675298696'), 'name': 'Marketo', 'ipo': {'valuation_amount': 465000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 4, 'pub_day': 2, 'stock_symbol': 'NASDAQ:MKTO'}}, {'_id': ObjectId('52cdef7c4bab8bd675298760'), 'name': 'Baidu', 'ipo': {'valuation_amount': 4000000000, 'valuation_currency_code': 'USD', 'pub_year': 2005, 'pub_month': 8, 'pub_day': 5, 'stock_symbol': 'NASDAQ:BIDU'}}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'ipo': {'valuation_amount': 134000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 11, 'pub_day': 2, 'stock_symbol': 'GKNT'}}, {'_id': ObjectId('52cdef7d4bab8bd6752989a0'), 'name': 'Opsware', 'ipo': {'valuation_amount': 450000000, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 9, 'stock_symbol': 'NASDAQ:LDCL'}}, {'_id': ObjectId('52cdef7d4bab8bd6752989f2'), 'name': 'Telenav', 'ipo': {'valuation_amount': 337000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 5, 'pub_day': 13, 'stock_symbol': 'TNAV'}}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'ipo': {'valuation_amount': 315000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 4, 'pub_day': 12, 'stock_symbol': 'RALY'}}, {'_id': ObjectId('52cdef7d4bab8bd675298d12'), 'name': 'BrightSource Energy', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 4, 'pub_day': 22, 'stock_symbol': 'NASDAQ:BRSE'}}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'ipo': {'valuation_amount': 970000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 14, 'stock_symbol': 'JP:2121'}}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 16, 'stock_symbol': 'QLIK'}}, {'_id': ObjectId('52cdef7d4bab8bd67529984e'), 'name': 'Chegg', 'ipo': {'valuation_amount': 1100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 14, 'stock_symbol': 'NYSE:CHGG'}}, {'_id': ObjectId('52cdef7d4bab8bd675299bd8'), 'name': 'Chegg', 'ipo': {'valuation_amount': 1100000000, 'valuation_currency_code': 'USD', 'pub_year': 2013, 'pub_month': 11, 'pub_day': 14, 'stock_symbol': 'NYSE:CHGG'}}, {'_id': ObjectId('52cdef7d4bab8bd675299d5d'), 'name': 'Groupon', 'ipo': {'valuation_amount': 12800000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'NASDAQ:GRPN'}}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'ipo': {'valuation_amount': 803000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 20, 'stock_symbol': 'SWI'}}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'ipo': {'valuation_amount': 108960000000, 'valuation_currency_code': 'JPY', 'pub_year': 2008, 'pub_month': 12, 'pub_day': 17, 'stock_symbol': '3632'}}, {'_id': ObjectId('52cdef7e4bab8bd67529aae7'), 'name': 'Tudou', 'ipo': {'valuation_amount': 174000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NASDAQ:TUDO'}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'ipo': {'valuation_amount': 245000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 2, 'pub_day': 14, 'stock_symbol': 'NASDAQ:DMAN'}}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'name': 'Western Digital', 'ipo': {'valuation_amount': 9430000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:WDC'}}, {'_id': ObjectId('52cdef7e4bab8bd67529bb87'), 'name': 'Millennial Media', 'ipo': {'valuation_amount': 973500000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 28, 'stock_symbol': 'NYSE:MM'}}]\n" + ] + } + ], "source": [ - " " + "results4 = list(collection.find({\n", + " '$and': [\n", + " {\n", + " 'ipo.valuation_amount': {\n", + " '$gt': 100000000\n", + " }\n", + " }, {\n", + " 'founded_year': {\n", + " '$lt': 2010\n", + " }\n", + " }\n", + " ]\n", + "}, {\"name\": 1, \"ipo\": 1}))\n", + " \n", + "print(results4)" ] }, { @@ -86,10 +161,24 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'permalink': 'infinera', 'crunchbase_url': 'http://www.crunchbase.com/company/infinera', 'homepage_url': 'http://www.infinera.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'InfineraCorp', 'category_code': 'network_hosting', 'number_of_employees': 974, 'founded_year': 2000, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': 'Zepton Networks', 'email_address': '', 'phone_number': '408-572-5200', 'description': 'Optical Networking Systems', 'created_at': 'Tue Apr 29 19:43:09 UTC 2008', 'updated_at': 'Tue Jan 10 22:07:21 UTC 2012', 'overview': '

Infinera Corporation provides optical networking systems based on photonic integration technology in the United States. Its digital transport node (DTN) system utilizes the photonic integrated circuit (PIC) technology to enable digital processing and management of data with the capability to generate wavelength division multiplexing wavelengths and to add, drop, switch, manage, protect, and restore network traffic digitally. The company’s PICs transmit and receive 100 Gigabits per second of optical capacity and incorporate the functionality of approximately 60 discrete optical components into a pair of indium phosphide chips. The DTN System is used to enable optical to electrical to optical conversions at every network access point to provide communications service providers with the ability to digitally process the information being transported across their optical networks. It also offers a range of support offerings, including 24/7/365 hardware and software technical support, installation and deployment services, spares management, first line maintenance services, on-site technical services, professional services, product technical training, and extended product warranties. The company offers its products to operators of optical networks, including telecom carriers, cable operators, and Internet or content service providers.

\\n\\n

Infinera Corporation, formerly known as Zepton Networks, was founded in 2000 and is headquartered in Sunnyvale, California.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0001/7822/17822v1-max-150x150.png'], [[191, 49], 'assets/images/resized/0001/7822/17822v1-max-250x250.png'], [[191, 49], 'assets/images/resized/0001/7822/17822v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Thomas', 'last_name': 'Fallon', 'permalink': 'thomas-fallon'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tom', 'last_name': 'Fallon', 'permalink': 'tom-fallon'}}, {'is_past': False, 'title': 'VP, Cable Sales', 'person': {'first_name': 'Mike', 'last_name': 'Kelly', 'permalink': 'mike-kelly-2'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Kenneth', 'last_name': 'Goldman', 'permalink': 'kenneth-goldman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Sunny', 'last_name': 'Sugaya', 'permalink': 'sunny-sugaya'}}, {'is_past': False, 'title': 'Chairman of the Board', 'person': {'first_name': 'Kambiz', 'last_name': 'Hooshmand', 'permalink': 'kambiz-hooshmand'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'T.J.', 'last_name': 'Rodgers', 'permalink': 't-j-rodgers'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Phil', 'last_name': 'Koen', 'permalink': 'phil-koen'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Julien', 'last_name': 'Nguyen', 'permalink': 'julien-nguyen'}}, {'is_past': True, 'title': 'Vice President Sales EMEA', 'person': {'first_name': 'Tom', 'last_name': 'Schmitt', 'permalink': 'tom-schmitt'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Steve', 'last_name': \"O'Hara\", 'permalink': 'steve-ohara'}}, {'is_past': True, 'title': 'Manufacturing Controller', 'person': {'first_name': 'John', 'last_name': 'Nadaskay', 'permalink': 'john-nadaskay'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Mawhinney', 'permalink': 'tom-mawhinney'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Christopher', 'last_name': 'Lucas', 'permalink': 'christopher-lucas'}}, {'is_past': True, 'title': 'Manager, PIC Process Interaction', 'person': {'first_name': 'Gang', 'last_name': 'He', 'permalink': 'gang-he'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vinodh', 'last_name': 'Kumar', 'permalink': 'vinodh-kumar-2'}}, {'is_past': True, 'title': 'investments', 'person': {'first_name': 'Peter', 'last_name': 'Wagner', 'permalink': 'peter-wagner'}}, {'is_past': True, 'title': 'Engineering', 'person': {'first_name': 'Rob', 'last_name': 'Stone', 'permalink': 'rob-stone'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '169 Java Drive', 'address2': '', 'zip_code': '94089', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.411877, 'longitude': -122.018277}], 'milestones': [{'id': 20267, 'description': 'Infinera PICs Surpass 500 Million Hours of Failure-Free Operation Latest Milestones Reaffirm PIC Reliability', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 3, 'source_url': 'http://www.live-pr.com/en/infinera-pics-surpass-500-million-hours-r1048777717.htm', 'source_text': '', 'source_description': 'Infinera PICs Surpass 500 Million Hours of Failure-Free Operation Latest Milestones Reaffirm PIC Reliability', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infinera Corporation', 'permalink': 'infinera'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 6, 'pub_day': 7, 'stock_symbol': 'INFN'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 112], 'assets/images/resized/0016/9559/169559v1-max-150x150.jpg'], [[250, 187], 'assets/images/resized/0016/9559/169559v1-max-250x250.jpg'], [[450, 338], 'assets/images/resized/0016/9559/169559v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529ac95'), 'name': 'NorthPoint Communications Group', 'permalink': 'northpoint-communications-group', 'crunchbase_url': 'http://www.crunchbase.com/company/northpoint-communications-group', 'homepage_url': '', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'network_hosting', 'number_of_employees': 948, 'founded_year': 1997, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '415-403-4003', 'description': 'data transport services', 'created_at': 'Fri Jan 16 03:27:17 UTC 2009', 'updated_at': 'Sun Jun 20 20:07:21 UTC 2010', 'overview': '

NorthPoint Communications Group, Inc. provided high speed network and data transport services, allowing Internet service providers, broadband data service providers, and long distance and local phone companies to meet the information needs of small and medium-sized businesses, people who work in home offices, and telecommuters, as of September 2000. On June 12, 2001, the voluntary petition of Northpoint Communications Group, Inc. for reorganization under Chapter 11 was converted to Chapter 7. It had filed for Chapter 11 bankruptcy on January 16, 2001.

', 'image': None, 'products': [], 'relationships': [{'is_past': True, 'title': 'SVP, Business Development and Interim CEO, VersaPoint', 'person': {'first_name': 'Ray', 'last_name': 'Solnik', 'permalink': 'ray-solnik'}}, {'is_past': True, 'title': 'Interim CEO-VersaPoint JV, SVP Business Development', 'person': {'first_name': 'Ray', 'last_name': 'Solnik', 'permalink': 'ray-solnik'}}, {'is_past': True, 'title': 'CMO & EVPof Sales', 'person': {'first_name': 'Shellye', 'last_name': 'Archambeau', 'permalink': 'shellye-archambeau'}}, {'is_past': True, 'title': 'Vice President Engineering & Operations', 'person': {'first_name': 'John', 'last_name': 'Karsner', 'permalink': 'john-karsner-2'}}, {'is_past': True, 'title': 'Director, Value Added Services', 'person': {'first_name': 'Crick', 'last_name': 'Waters', 'permalink': 'crick-waters'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': True, 'title': 'Director - Corporate Development', 'person': {'first_name': 'Gary', 'last_name': 'Hagmueller', 'permalink': 'gary-hagmueller'}}, {'is_past': True, 'title': 'investments', 'person': {'first_name': 'Peter', 'last_name': 'Wagner', 'permalink': 'peter-wagner'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Debbie', 'last_name': 'Jo Severin', 'permalink': 'debbie-jo-severin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dave', 'last_name': 'Rosenberg', 'permalink': 'dave-rosenberg'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Frank', 'last_name': 'Cabri', 'permalink': 'frank-cabri'}}, {'is_past': True, 'title': 'corporate planning, M&A, and investor relations', 'person': {'first_name': 'Alan', 'last_name': 'Priest', 'permalink': 'alan-priest'}}, {'is_past': True, 'title': 'Online Marketing Manager', 'person': {'first_name': 'Daniel', 'last_name': 'Lizio-Katzen', 'permalink': 'daniel-lizio-katzen'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '303 Second Street', 'address2': 'South Tower', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7f4bab8bd67529be17'), 'name': '888 Holdings', 'permalink': '888-holdings', 'crunchbase_url': 'http://www.crunchbase.com/company/888-holdings', 'homepage_url': 'http://www.888holdingsplc.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'games_video', 'number_of_employees': 931, 'founded_year': 1997, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'info@888holdingsplc.com', 'phone_number': '+350 20049800', 'description': 'online gaming entertainment company', 'created_at': 'Sat Jun 06 18:58:57 UTC 2009', 'updated_at': 'Tue Jun 15 03:02:26 UTC 2010', 'overview': '

888 Holdings Public Limited Company, through its subsidiaries, operates as an online gaming entertainment company worldwide. It offers various online casino, poker, and skill games, as well as access to a third party betting exchange, through its various Web sites, including 888.com, Casino-on-Net.com, PacificPoker.com, ReefClubCasino.com, 888.tv, 888.info, and Betmate.com. The company also provides Sportsbetting, Bingo games, and Backgammon to end users and business partners. It has strategic agreements with Dynamite Idea; and Ash Gaming, Ltd. 888 Holdings was founded in 1997 and is based in Europort, Gibraltar.

', 'image': {'available_sizes': [[[150, 101], 'assets/images/resized/0006/4734/64734v1-max-150x150.png'], [[198, 134], 'assets/images/resized/0006/4734/64734v1-max-250x250.png'], [[198, 134], 'assets/images/resized/0006/4734/64734v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'User Expiriance Manager', 'person': {'first_name': 'Gilad', 'last_name': 'Shlang', 'permalink': 'gilad-shlang'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Gigi', 'last_name': 'Levy', 'permalink': 'gigi-levy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roi', 'last_name': 'Carthy', 'permalink': 'roi-carthy'}}, {'is_past': True, 'title': 'conversion optimization manager', 'person': {'first_name': 'Yair', 'last_name': 'Vaknin', 'permalink': 'yair-vaknin'}}, {'is_past': True, 'title': 'VIP Affiliate Manager', 'person': {'first_name': 'Liat', 'last_name': 'Fuchs', 'permalink': 'liat-fuchs'}}, {'is_past': True, 'title': 'Web Infrastructure Developer', 'person': {'first_name': 'shai', 'last_name': 'ariel', 'permalink': 'shai-ariel'}}, {'is_past': True, 'title': 'Head of Mobile Division', 'person': {'first_name': 'Shimon', 'last_name': 'Constante', 'permalink': 'shimon-constante'}}, {'is_past': True, 'title': 'Project & Product Manager', 'person': {'first_name': 'Oren', 'last_name': 'Harnevo', 'permalink': 'oren-harnevo'}}, {'is_past': True, 'title': 'SEM Account Executive', 'person': {'first_name': 'Anat', 'last_name': 'Koren', 'permalink': 'anat-koren'}}, {'is_past': True, 'title': 'Enterprise Sevices Programmer', 'person': {'first_name': 'Nir', 'last_name': 'Cohen', 'permalink': 'nir-cohen-2'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://games.venturebeat.com/2010/06/14/888-holdings-acquires-online-gaming-firm-mytopia-for-18m/', 'source_description': '888 Holdings acquires online gaming firm Mytopia for $18M', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Mytopia', 'permalink': 'mytopia'}}], 'offices': [], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[143, 150], 'assets/images/resized/0006/4735/64735v1-max-150x150.jpg'], [[238, 250], 'assets/images/resized/0006/4735/64735v1-max-250x250.jpg'], [[429, 450], 'assets/images/resized/0006/4735/64735v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd6752986a2'), 'name': 'Forrester Research', 'permalink': 'forrester-research', 'crunchbase_url': 'http://www.crunchbase.com/company/forrester-research', 'homepage_url': 'http://forrester.com', 'blog_url': 'http://blogs.forrester.com/colony/', 'blog_feed_url': 'http://blogs.forrester.com/colony/index.rdf', 'twitter_username': '', 'category_code': 'consulting', 'number_of_employees': 903, 'founded_year': 1983, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'press@forrester.com', 'phone_number': '(617) 613-5730', 'description': '', 'created_at': 'Sun Mar 30 16:42:50 UTC 2008', 'updated_at': 'Fri Jul 19 10:09:08 UTC 2013', 'overview': '

Forrester Research is an independent technology and market research company providing proprietary research, consulting, events, and peer-to-peer executive programs.

', 'image': {'available_sizes': [[[121, 59], 'assets/images/resized/0001/6566/16566v1-max-150x150.png'], [[121, 59], 'assets/images/resized/0001/6566/16566v1-max-250x250.png'], [[121, 59], 'assets/images/resized/0001/6566/16566v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Researcher to the Chairman & CEO', 'person': {'first_name': 'Griffin', 'last_name': 'McGrath', 'permalink': 'griffin-mcgrath'}}, {'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'George', 'last_name': 'F. Colony', 'permalink': 'george-f-colony'}}, {'is_past': False, 'title': 'Chief Strategy and Marketing Officer', 'person': {'first_name': 'Brian', 'last_name': 'Kardon', 'permalink': 'brian-kardon'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael A.', 'last_name': 'Doyle', 'permalink': 'michael-a-doyle'}}, {'is_past': False, 'title': 'VP, Principal Analyst', 'person': {'first_name': 'Josh', 'last_name': 'Bernoff', 'permalink': 'josh-bernoff'}}, {'is_past': False, 'title': 'Chief People Officer', 'person': {'first_name': 'Elizabeth', 'last_name': 'Lemons', 'permalink': 'elizabeth-lemons'}}, {'is_past': False, 'title': 'Senior Analyst', 'person': {'first_name': 'Rebecca', 'last_name': 'Jennings', 'permalink': 'rebecca-jennings'}}, {'is_past': False, 'title': 'Chief Legal Officer And Secretary', 'person': {'first_name': 'Gail', 'last_name': 'S. Mann', 'permalink': 'gail-s-mann'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Oliver', 'last_name': 'Young', 'permalink': 'oliver-young'}}, {'is_past': True, 'title': 'Member, CMO & Marketing Leadership Group', 'person': {'first_name': 'Stella', 'last_name': 'Goulet', 'permalink': 'stella-goulet'}}, {'is_past': True, 'title': 'Chief Strategy & Marketing Officer', 'person': {'first_name': 'Brian', 'last_name': 'Kardon', 'permalink': 'brian-kardon'}}, {'is_past': True, 'title': 'VP Project Consulting', 'person': {'first_name': 'Matthew', 'last_name': 'Nordan', 'permalink': 'matthew-nordan'}}, {'is_past': True, 'title': 'VP Research Director,Senior Analyst', 'person': {'first_name': 'Emily', 'last_name': 'Riley', 'permalink': 'emily-riley'}}, {'is_past': True, 'title': 'VP, Principle Analyst', 'person': {'first_name': 'Charlene', 'last_name': 'Li', 'permalink': 'charlene-li'}}, {'is_past': True, 'title': 'Senior Analyst', 'person': {'first_name': 'Jeremiah', 'last_name': 'Owyang', 'permalink': 'jeremiah-owyang'}}, {'is_past': True, 'title': 'Director, International', 'person': {'first_name': 'Alex', 'last_name': 'Garcia-Tobar', 'permalink': 'alex-garcia-tobar'}}, {'is_past': True, 'title': 'Senior Industry Analyst', 'person': {'first_name': 'David', 'last_name': 'Friedlander', 'permalink': 'david-friedlander'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Chatham', 'permalink': 'bob-chatham'}}, {'is_past': True, 'title': 'Research Director', 'person': {'first_name': 'Steven', 'last_name': 'J. Kafka', 'permalink': 'steven-j-kafka'}}, {'is_past': True, 'title': 'Group Director (Data Products)', 'person': {'first_name': 'William', 'last_name': 'Reeve', 'permalink': 'william-reeve'}}, {'is_past': True, 'title': 'Direct Selling and Account Management', 'person': {'first_name': 'Leslie', 'last_name': 'Candy', 'permalink': 'leslie-candy'}}, {'is_past': True, 'title': 'Market Leader', 'person': {'first_name': 'Sanjay', 'last_name': 'Pingle', 'permalink': 'sanjay-pingle'}}, {'is_past': True, 'title': 'Principal Analyst', 'person': {'first_name': 'Mark', 'last_name': 'Bunger', 'permalink': 'mark-bunger'}}, {'is_past': True, 'title': 'Sales Team', 'person': {'first_name': 'Will', 'last_name': 'Polese', 'permalink': 'will-polese'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kip', 'last_name': 'Levin', 'permalink': 'kip-levin'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Chris', 'last_name': 'Homer', 'permalink': 'chris-homer'}}, {'is_past': True, 'title': 'principal analyst', 'person': {'first_name': 'Babba', 'last_name': 'Shetty', 'permalink': 'babba-shetty'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Claudine', 'last_name': 'Bianchi', 'permalink': 'claudine-bianchi'}}, {'is_past': True, 'title': 'Principal Analyst', 'person': {'first_name': 'André', 'last_name': 'Pino', 'permalink': 'andr-pino'}}, {'is_past': True, 'title': 'Senior Strategy Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Zurek', 'permalink': 'bob-zurek'}}, {'is_past': True, 'title': 'Information Security Expert (Forrester Security Forum)', 'person': {'first_name': 'Don', 'last_name': 'Gray', 'permalink': 'don-gray'}}, {'is_past': True, 'title': 'Led the Web Development Team', 'person': {'first_name': 'Ezra', 'last_name': 'Ball', 'permalink': 'ezra-ball'}}, {'is_past': True, 'title': 'Regional Sales Director', 'person': {'first_name': 'Raymond', 'last_name': 'Creemers', 'permalink': 'raymond-creemers'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 4750000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.crm2day.com/news/crm/EpuFkkVpulPrSDiTaP.php', 'source_description': 'CRM Today', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': 22, 'company': {'name': 'Giga Group', 'permalink': 'giga-group'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://weblogs.jupiterresearch.com/analysts/schatsky/archives/010098.html', 'source_description': 'Forrester Buys Jupiter', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 31, 'company': {'name': 'JupiterResearch', 'permalink': 'jupiterresearch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/Forrester-Research-Acquires-bw-3368700802.html?x=0', 'source_description': 'Forrester Research Acquires Springboard Research', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 12, 'company': {'name': 'Springboard Research', 'permalink': 'springboard-research'}}], 'offices': [{'description': None, 'address1': '400 Technology Square', 'address2': '', 'zip_code': '02139', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.3632, 'longitude': -71.092378}], 'milestones': [{'id': 36801, 'description': 'Forrester: $2.1 Trillion Will Go Into IT Spend In 2013; Apps And The U.S. Lead The Charge', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2013/07/15/forrester-2-1-trillion-will-go-into-it-spend-in-2013-apps-and-the-u-s-lead-the-charge/', 'source_text': '', 'source_description': 'Forrester: $2.1 Trillion Will Go Into IT Spend In 2013; Apps And The U.S. Lead The Charge', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Forrester Research', 'permalink': 'forrester-research'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'JPY', 'pub_year': 1987, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'FORR'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/6555/46555v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/6555/46555v1-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/6555/46555v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://blogs.forrester.com/colony/', 'title': 'Blog of CEO George Forrester Colongy'}, {'external_url': 'http://blogs.forrester.com/charleneli/', 'title': 'Groundswell (Charlene Li, Josh Bernoff, Analysts)'}, {'external_url': 'http://web-strategist.com/blog', 'title': 'Web Strategy by Jeremiah (Analyst)'}, {'external_url': 'http://www.beingpeterkim.com/', 'title': 'Being Peter Kim (Analyst)'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529af6d'), 'name': 'SonicWALL', 'permalink': 'sonicwall', 'crunchbase_url': 'http://www.crunchbase.com/company/sonicwall', 'homepage_url': 'http://www.sonicwall.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'sonicwall', 'category_code': 'security', 'number_of_employees': 900, 'founded_year': 1991, 'founded_month': 2, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'sales@sonicwall.com', 'phone_number': '+1 408.745.9600', 'description': '', 'created_at': 'Sat Jan 31 21:37:20 UTC 2009', 'updated_at': 'Thu Sep 22 21:27:37 UTC 2011', 'overview': '

SonicWALL is a private company that provides Internet security solutions and appliances. SonicWALL has three business units: Network Security, Content Security, and Business Continuity. Their product lines within these business units include devices that provide a firewall, UTM (Universal Threat Management), VPN (Virtual Private Network), backup and recovery, and anti-spam / email and content filtering, as well as software and value-added subscription services.

', 'image': {'available_sizes': [[[149, 45], 'assets/images/resized/0003/5408/35408v1-max-150x150.png'], [[149, 45], 'assets/images/resized/0003/5408/35408v1-max-250x250.png'], [[149, 45], 'assets/images/resized/0003/5408/35408v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'VP and CFO', 'person': {'first_name': 'Robert', 'last_name': 'Selvi', 'permalink': 'robert-selvi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'Sayle', 'permalink': 'robert-sayle'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Marcel', 'last_name': 'Bernard', 'permalink': 'marcel-bernard'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Seth', 'last_name': 'Boro', 'permalink': 'seth-boro'}}, {'is_past': True, 'title': 'Founder (Aventail Corporation)', 'person': {'first_name': 'Marty', 'last_name': 'Bickford', 'permalink': 'marty-bickford'}}, {'is_past': True, 'title': 'Chairman of the Board', 'person': {'first_name': 'John', 'last_name': 'Shoemaker', 'permalink': 'john-shoemaker'}}, {'is_past': True, 'title': 'Founder, Chief Technology Officer, and Vice President of Engineering', 'person': {'first_name': 'Sudhakar', 'last_name': 'Ravi', 'permalink': 'sudhakar-ravi'}}, {'is_past': True, 'title': 'Founder, Chairman, and Chief Executive Officer', 'person': {'first_name': 'Sreekanth', 'last_name': 'Ravi', 'permalink': 'sreekanth-ravi'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Brian', 'last_name': 'Wilson', 'permalink': 'brian-wilson'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Michael', 'last_name': 'Sheridan', 'permalink': 'michael-sheridan'}}, {'is_past': True, 'title': 'VP of Operations', 'person': {'first_name': 'Fara', 'last_name': 'Zarrabi', 'permalink': 'fara-zarrabi'}}, {'is_past': True, 'title': 'Director Global PR', 'person': {'first_name': 'Jock', 'last_name': 'Breitwieser', 'permalink': 'jock-breitwieser'}}, {'is_past': True, 'title': 'Sr. Director, Product Management', 'person': {'first_name': 'Gleb', 'last_name': 'Budman', 'permalink': 'gleb-budman'}}, {'is_past': True, 'title': 'Senior Director of Software Engineering', 'person': {'first_name': 'Emanoel', 'last_name': 'Daryoush', 'permalink': 'emanoel-daryoush'}}, {'is_past': True, 'title': 'Management positions', 'person': {'first_name': 'Wes', 'last_name': 'Swenson', 'permalink': 'wes-swenson'}}, {'is_past': True, 'title': 'Product Line Manager', 'person': {'first_name': 'Sameer', 'last_name': 'Mathur', 'permalink': 'sameer-mathur'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Casey', 'last_name': 'Jones', 'permalink': 'casey-jones-2'}}, {'is_past': True, 'title': 'VP - EMEA', 'person': {'first_name': 'Keith', 'last_name': 'Bird', 'permalink': 'keith-bird'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 717000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/sonicwall_acquired_by_private_equity_group_for_7_7m/s-0028973.html', 'source_description': 'SonicWALL Acquired By Private Equity Group For $717M', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 22, 'acquiring_company': {'name': 'Private equity group', 'permalink': 'private-equity-group'}}, 'acquisitions': [{'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2007/06/14/aventail-a-vpn-company-sells-to-sonicwall-for-25m/', 'source_description': 'Aventail, a VPN company, sells to SonicWall for $25M', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Aventail', 'permalink': 'aventail'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techstartups.wordpress.com/2005/11/22/sonicwall-acquires-lasso-logic-inc-and-enkoo/', 'source_description': 'SonicWALL Acquires Lasso Logic, Inc. and enKoo', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 22, 'company': {'name': 'Lasso Logic', 'permalink': 'lasso'}}], 'offices': [{'description': 'HQ', 'address1': '2001 Logic Drive', 'address2': '', 'zip_code': '95124', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 15615, 'description': 'SonicWALL Revolutionizes Network Security with SuperMassive E10000 Next-Generation Firewall Series - Offers 30 Gbps of Application Control and Intrusion Prevention', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 14, 'source_url': 'http://news.sonicwall.com/index.php?s=43&item=1043', 'source_text': None, 'source_description': 'Press Release', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'SonicWALL', 'permalink': 'sonicwall'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

SonicWALL Interop 2011

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b21b'), 'name': 'Webmetrics', 'permalink': 'webmetrics', 'crunchbase_url': 'http://www.crunchbase.com/company/webmetrics', 'homepage_url': 'http://www.webmetrics.com', 'blog_url': 'http://blog.webmetrics.com', 'blog_feed_url': 'http://feeds.feedburner.com/webmetricsperformanceblog', 'twitter_username': 'Webmetrics', 'category_code': 'software', 'number_of_employees': 900, 'founded_year': 1999, 'founded_month': 3, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'web-performance-management, web-site-monitoring, web-load-testing, website-monitoring, application-monitoring, network-services-monitoring, web-services-monitoring', 'alias_list': '', 'email_address': 'sales@webmetrics.com', 'phone_number': '888-367-4812', 'description': 'Performance Management Platforms', 'created_at': 'Thu Feb 26 23:49:50 UTC 2009', 'updated_at': 'Thu Jan 24 08:41:50 UTC 2013', 'overview': '

Founded in 1999 and acquired by Neustar in 2008\\nNeustar Webmetrics is a leading provider of collaborative web performance management solutions. Webmetrics website monitoring and testing services are used by companies that want to ensure online performance, competitive advantage and a positive end-user experience.

\\n\\n

Webmetrics Monitoring services enable companies to track, identify, solve and prevent web performance issues before customers are impacted. Webmetrics tests, monitors and measures the performance of web sites, web applications, web services, network services and streaming media to ensure 24/7 uptime and performance integrity. To meet customers’ unique requirements, Webmetrics offers both Basic and Enterprise Monitoring, with agents located in over 100 major cities worldwide.

\\n\\n

Webmetrics Load Testing services test your sites and applications against heavy loads or inputs to find the point at which they fail or performance degrades – providing real-world validation that your web applications are ready to go. Webmetrics offers both Full-Service and On-Demand Load Testing to meet customers’ unique needs, including the only solution with real browser users for testing.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0006/5480/65480v6-max-150x150.png'], [[250, 49], 'assets/images/resized/0006/5480/65480v6-max-250x250.png'], [[371, 73], 'assets/images/resized/0006/5480/65480v6-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [], 'competitions': [{'competitor': {'name': 'AlertFox', 'permalink': 'alertfox'}}, {'competitor': {'name': 'Monitis', 'permalink': 'monitis'}}, {'competitor': {'name': 'Keynote', 'permalink': 'keynote'}}, {'competitor': {'name': 'PingMate', 'permalink': 'pingmate'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '9444 Waples', 'address2': 'Suite 300', 'zip_code': '92121', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Corporate', 'address1': '21575 Ridgetop Circle', 'address2': '', 'zip_code': '20166', 'city': 'Sterling', 'state_code': 'VA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 125], 'assets/images/resized/0006/5481/65481v1-max-150x150.jpg'], [[250, 208], 'assets/images/resized/0006/5481/65481v1-max-250x250.jpg'], [[450, 375], 'assets/images/resized/0006/5481/65481v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 119], 'assets/images/resized/0015/3997/153997v2-max-150x150.png'], [[250, 199], 'assets/images/resized/0015/3997/153997v2-max-250x250.png'], [[450, 359], 'assets/images/resized/0015/3997/153997v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerstone-ondemand', 'homepage_url': 'http://www.cornerstoneondemand.com', 'blog_url': 'http://www.cornerstoneondemand.com/blog', 'blog_feed_url': 'http://www.cornerstoneondemand.com/blog', 'twitter_username': 'cornerstoneinc', 'category_code': 'software', 'number_of_employees': 881, 'founded_year': 1999, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'talent-management, enterprise, learning-management, performance-management, onboarding, internal-recruiting, learning-content, critical-roles, employee-collaboration, succession', 'alias_list': '', 'email_address': 'info@cornerstoneondemand.com', 'phone_number': '1 (888) 365-2763', 'description': 'integrated talent management software', 'created_at': 'Sun Mar 15 14:45:14 UTC 2009', 'updated_at': 'Tue Nov 05 09:46:58 UTC 2013', 'overview': '

Cornerstone OnDemand is a leading global provider of a comprehensive learning and talent management solution delivered as Software-as-a-Service (SaaS). The company enables organizations to meet the challenges they face in empowering their people and maximizing the productivity of their human capital. Cornerstone currently empowers nearly 13 million users across 190 countries and in 41 languages.

\\n\\n

The company’s integrated software offering consists of four cloud solutions, including the Cornerstone Recruiting Cloud, the Cornerstone Performance Cloud, the Cornerstone Learning Cloud and the Cornerstone Extended Enterprise Cloud. Our clients use our solution to develop employees throughout their careers, engage all employees effectively, improve business execution, cultivate future leaders, and integrate with their external networks of customers, vendors and distributors.

\\n\\n

The company has more than 1,500 clients, including multi-national corporations, large domestic enterprises, mid-market companies, state and local public sector organizations, higher education institutions and non-profit entities. Clients include BJC HealthCare, Flextronics, Kelly Services, Pearson, Starwood Hotels & Resorts Worldwide, Teach for America and Virgin Media Limited, among many others. Cornerstone supports multiple client deployments of more than 150,000 users, including one client with more than 700,000 users.

\\n\\n

Cornerstone is headquartered in Santa Monica, California, with offices in Auckland, Hong Kong, London, Mumbai, Munich, Madrid, Paris, Rome, Sydney and Tel Aviv.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0012/4709/124709v7-max-150x150.png'], [[250, 61], 'assets/images/resized/0012/4709/124709v7-max-250x250.png'], [[450, 110], 'assets/images/resized/0012/4709/124709v7-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Mark', 'last_name': 'Goldin', 'permalink': 'mark-goldin'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Perry', 'last_name': 'Wallack', 'permalink': 'perry-wallack'}}, {'is_past': False, 'title': 'VP, Corporate Development & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': False, 'title': 'EVP Strategic Accounts', 'person': {'first_name': 'Steven', 'last_name': 'Seymour', 'permalink': 'steven-seymour'}}, {'is_past': False, 'title': 'SVP of Client Success', 'person': {'first_name': 'Kirsten', 'last_name': 'Maas Helvey', 'permalink': 'kirsten-maas-helvey'}}, {'is_past': False, 'title': 'SVP and GM of Europe, Middle East and Africa (EMEA)', 'person': {'first_name': 'Vince', 'last_name': 'Belliveau', 'permalink': 'vince-belliveau'}}, {'is_past': False, 'title': 'SVP Sales', 'person': {'first_name': 'Dave', 'last_name': 'Carter', 'permalink': 'dave-carter'}}, {'is_past': False, 'title': 'VP Alliances & Strategy', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': False, 'title': 'GM, Asia-Pacific', 'person': {'first_name': 'Frank', 'last_name': 'Ricciardi', 'permalink': 'frank-ricciardi'}}, {'is_past': False, 'title': 'Services Executive Consultant', 'person': {'first_name': 'Jose', 'last_name': 'daVeiga', 'permalink': 'jose-daveiga'}}, {'is_past': False, 'title': 'National Director – Higher Education', 'person': {'first_name': 'Kurt', 'last_name': 'Ackman', 'permalink': 'kurt-ackman'}}, {'is_past': True, 'title': 'Vice President, Channel Management', 'person': {'first_name': 'Sean', 'last_name': 'Jacobsohn', 'permalink': 'sean-jacobsohn-2'}}, {'is_past': True, 'title': 'SVP, Consulting Services', 'person': {'first_name': 'Kristen', 'last_name': 'Mass Helvey', 'permalink': 'kristen-mass-helvey'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Ed', 'last_name': 'Garber', 'permalink': 'ed-garber'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Norquist Roy', 'permalink': 'julie-norquist-roy'}}, {'is_past': True, 'title': 'Director of Core architecture', 'person': {'first_name': 'Sridhar', 'last_name': 'Sambangi', 'permalink': 'sridhar-sambangi'}}, {'is_past': True, 'title': 'Senior Director, Strategy and Research', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Matt', 'last_name': 'Shields', 'permalink': 'matt-shields-2'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Jessica', 'last_name': 'Levaton', 'permalink': 'jessica-levaton'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Neil', 'last_name': 'Sadaranganey', 'permalink': 'neil-sadaranganey'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'S.Steven', 'last_name': 'Singh', 'permalink': 's-steven-singh'}}], 'competitions': [{'competitor': {'name': 'SuccessFactors', 'permalink': 'successfactors'}}, {'competitor': {'name': 'Halogen Software', 'permalink': 'halogen-software'}}, {'competitor': {'name': 'WorkSimple', 'permalink': 'worksimple'}}, {'competitor': {'name': 'SilkRoad Technology', 'permalink': 'silkroad-technology'}}, {'competitor': {'name': 'Taleo', 'permalink': 'taleo'}}, {'competitor': {'name': 'Softscape', 'permalink': 'softscape'}}], 'providerships': [], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 5331, 'round_code': 'e', 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_raises____7m/s-0020463.html', 'source_description': 'Cornerstone OnDemand Raises $12.7M', 'raised_amount': 12700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}]}, {'id': 11881, 'round_code': 'd', 'source_url': 'http://www.cornerstoneondemand.com/2007-09-17-cornerstone-ondemand-raises-32-million', 'source_description': 'On-Demand Leader Redefines the Talent Management Landscape', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '1601 Cloverfield Blvd.', 'address2': 'Suite 620 South', 'zip_code': '90404', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.028182, 'longitude': -118.472577}], 'milestones': [{'id': 7141, 'description': 'Announced hire of new CTO, Mark Goldin.', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://www.cornerstoneondemand.com/mark-goldin-joins-cornerstone-ondemand-chief-technology-officer', 'source_text': None, 'source_description': 'Mark Goldin Joins Cornerstone OnDemand as Chief Technology Officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}, {'id': 35043, 'description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 11, 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_looks_to_raises____m_in_debt/s-0049751.html', 'source_text': '', 'source_description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}], 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ff0'), 'name': 'Mozilla', 'permalink': 'mozilla', 'crunchbase_url': 'http://www.crunchbase.com/company/mozilla', 'homepage_url': 'http://mozilla.org', 'blog_url': 'http://blog.mozilla.org', 'blog_feed_url': 'http://blog.mozilla.org/feed/', 'twitter_username': 'firefox', 'category_code': 'web', 'number_of_employees': 800, 'founded_year': 1998, 'founded_month': 2, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mozilla, browser, opensource, addons', 'alias_list': '', 'email_address': 'webmaster@mozilla.com', 'phone_number': '', 'description': '', 'created_at': 'Sat Sep 08 18:18:41 UTC 2007', 'updated_at': 'Sat Mar 16 07:55:31 UTC 2013', 'overview': '

Born from Netscape’s 1998 open sourcing of the code base behind its Netscape Communicator internet suite, Mozilla Firefox currently holds approximately 22.48% of the world market for internet browsers as of April 2009. Version 1.0 was released on November 9, 2004 after a series of name changes, and within a year close to 100 million downloads of the browser technology had occurred.

\\n\\n

The following two years saw upgrades to version 1.5 in November 2005 and 2.0 in October 2006. Firefox’s feature set includes tabbed browsing, an array of extensions, themes and add-ons to enable more functionality within the browser, as well as a variety of security measures that help the browser compete with Internet Explorer for customers.

', 'image': {'available_sizes': [[[150, 144], 'assets/images/resized/0001/8039/18039v7-max-150x150.jpg'], [[229, 220], 'assets/images/resized/0001/8039/18039v7-max-250x250.jpg'], [[229, 220], 'assets/images/resized/0001/8039/18039v7-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Firefox', 'permalink': 'firefox'}, {'name': 'Mozilla Messaging', 'permalink': 'mozilla-messaging'}, {'name': 'Geode', 'permalink': 'geode'}, {'name': 'Fennec', 'permalink': 'fennec'}, {'name': 'Thunderbird', 'permalink': 'thunderbird'}, {'name': 'Bugzilla', 'permalink': 'bugzilla'}, {'name': 'Seamonkey', 'permalink': 'seamonkey'}, {'name': 'Sunbird', 'permalink': 'sunbird'}, {'name': 'Lightning', 'permalink': 'lightning'}, {'name': 'Weave', 'permalink': 'weave'}, {'name': 'Personas', 'permalink': 'personas'}, {'name': 'Prism', 'permalink': 'prism'}, {'name': 'Test Pilot', 'permalink': 'test-pilot'}, {'name': 'Chromatabs', 'permalink': 'chromatabs'}, {'name': 'The Coop', 'permalink': 'the-coop'}, {'name': 'Web Apps Project', 'permalink': 'web-apps-project'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Mitchell', 'last_name': 'Baker', 'permalink': 'mitchell-baker'}}, {'is_past': False, 'title': 'CTO and SVP Engineering', 'person': {'first_name': 'Brendan', 'last_name': 'Eich', 'permalink': 'brendan-eich'}}, {'is_past': False, 'title': 'Vice President, Product', 'person': {'first_name': 'Jay', 'last_name': 'Sullivan', 'permalink': 'jay-sullivan'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Ellen', 'last_name': 'Siminoff', 'permalink': 'ellen-siminoff'}}, {'is_past': False, 'title': 'Fellow (WebFWD)', 'person': {'first_name': 'Patrick', 'last_name': 'Santana', 'permalink': 'patrick-santana'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Diane', 'last_name': 'Bisgeier', 'permalink': 'diane-bisgeier'}}, {'is_past': False, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Jack', 'last_name': 'Moffitt', 'permalink': 'jack-moffitt'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Ash', 'last_name': 'Maurya', 'permalink': 'ash-maurya'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Joi', 'last_name': 'Ito', 'permalink': 'joi-ito'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Bob', 'last_name': 'Lisbonne', 'permalink': 'bob-lisbonne'}}, {'is_past': False, 'title': 'Data & Product Counsel', 'person': {'first_name': 'Jishnu', 'last_name': 'Menon', 'permalink': 'jishnu-menon'}}, {'is_past': False, 'title': 'Hacker Extraordinaire', 'person': {'first_name': 'Marshall', 'last_name': 'Culpepper', 'permalink': 'marshall-culpepper'}}, {'is_past': False, 'title': 'Principal Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Mayo', 'permalink': 'mark-mayo'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Lilly', 'permalink': 'john-lilly'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Grandon', 'permalink': 'kevin-grandon'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Blake', 'last_name': 'Ross', 'permalink': 'blake-ross'}}, {'is_past': True, 'title': 'CFO and Treasure', 'person': {'first_name': 'Jim', 'last_name': 'Cook', 'permalink': 'jim-cook-3'}}, {'is_past': True, 'title': 'Chief Application Officer and General Manager', 'person': {'first_name': 'Shervin', 'last_name': 'Pishevar', 'permalink': 'shervin-pishevar'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Chris', 'last_name': 'Beard', 'permalink': 'chris-beard'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'VP Engineering Ops', 'person': {'first_name': 'Justin', 'last_name': 'Fitzhugh', 'permalink': 'justin-fitzhugh'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Shaver', 'permalink': 'mike-shaver'}}, {'is_past': True, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Schroepfer', 'permalink': 'mike-shroepfer'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Dave', 'last_name': 'Hyatt', 'permalink': 'dave-hyatt'}}, {'is_past': True, 'title': 'Head of Business Affairs', 'person': {'first_name': 'Bart', 'last_name': 'Decrem', 'permalink': 'bart-decrem'}}, {'is_past': True, 'title': 'Thunderbird Guru', 'person': {'first_name': 'Scott', 'last_name': 'MacGregor', 'permalink': 'scott-macgregor'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': True, 'title': 'VP People Ops', 'person': {'first_name': 'Dan', 'last_name': 'Portillo', 'permalink': 'dan-portillo'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael Yoshitaka', 'last_name': 'Erlewine', 'permalink': 'michael-yoshitaka-erlewine'}}, {'is_past': True, 'title': 'Director, Developer Tools', 'person': {'first_name': 'Dion', 'last_name': 'Almaer', 'permalink': 'dion-almaer'}}, {'is_past': True, 'title': 'Director of Add-ons', 'person': {'first_name': 'Nick', 'last_name': 'Nguyen', 'permalink': 'nick-nguyen'}}, {'is_past': True, 'title': 'Director of Global PR', 'person': {'first_name': 'Melissa', 'last_name': 'Shapiro', 'permalink': 'melissa-shapiro'}}, {'is_past': True, 'title': 'Business Affairs / Mozilla Labs Intern', 'person': {'first_name': 'Pejman', 'last_name': 'Pour-Moezzi', 'permalink': 'pejman-pour-moezzi'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Sara', 'last_name': 'Yu', 'permalink': 'sara-yu'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Mitch', 'last_name': 'Kapor', 'permalink': 'mitch-kapor'}}, {'is_past': True, 'title': 'Native Android Mobile Engineer', 'person': {'first_name': 'Dmitrij', 'last_name': 'Petters', 'permalink': 'dmitrij-petters'}}, {'is_past': True, 'title': 'Webdev Intern', 'person': {'first_name': 'RJ', 'last_name': 'Walsh', 'permalink': 'rj-walsh'}}, {'is_past': True, 'title': 'Head of User Experience, Mozilla Labs', 'person': {'first_name': 'Aza', 'last_name': 'Raskin', 'permalink': 'aza-raskin'}}, {'is_past': True, 'title': 'Director, Evangelism', 'person': {'first_name': 'Christopher', 'last_name': 'Blizzard', 'permalink': 'christopher-blizzard'}}, {'is_past': True, 'title': 'Director, Mozilla Labs', 'person': {'first_name': 'Suneel', 'last_name': 'Gupta', 'permalink': 'suneel-gupta'}}, {'is_past': True, 'title': 'Labs Engineer', 'person': {'first_name': 'John', 'last_name': 'Resig', 'permalink': 'john-resig'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mikeal', 'last_name': 'Rogers', 'permalink': 'mikeal-rogers'}}, {'is_past': True, 'title': 'Director, Developer Tools', 'person': {'first_name': 'Ben', 'last_name': 'Galbraith', 'permalink': 'ben-galbraith'}}, {'is_past': True, 'title': 'Principal UX Designer', 'person': {'first_name': 'Kevin', 'last_name': 'Fox', 'permalink': 'kevin-fox'}}, {'is_past': True, 'title': 'Fellow (WebFWD)', 'person': {'first_name': 'Jaisen', 'last_name': 'Mathai', 'permalink': 'jaisen-mathai'}}, {'is_past': True, 'title': 'Principal Product Manager, Mobile', 'person': {'first_name': 'Thomas', 'last_name': 'Arend', 'permalink': 'thomas-arend'}}, {'is_past': True, 'title': 'Business Development & Marketing', 'person': {'first_name': 'Rishi', 'last_name': 'Mallik', 'permalink': 'rishi-mallik'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Firefox UX Lead', 'person': {'first_name': 'Alex', 'last_name': 'Limi', 'permalink': 'alexander-limi'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'David', 'last_name': 'Rolnitzky', 'permalink': 'david-rolnitzky'}}], 'competitions': [{'competitor': {'name': 'Opera Software', 'permalink': 'opera-software'}}, {'competitor': {'name': 'Flock', 'permalink': 'flock'}}, {'competitor': {'name': 'Rockmelt', 'permalink': 'rockmelt'}}], 'providerships': [{'title': '', 'is_past': True, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}], 'total_money_raised': '$2.3M', 'funding_rounds': [{'id': 1892, 'round_code': 'unattributed', 'source_url': 'http://www.aol.com', 'source_description': 'AOL', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 7, 'funded_day': 15, 'investments': [{'company': {'name': 'AOL', 'permalink': 'aol'}, 'financial_org': None, 'person': None}]}, {'id': 1893, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Mitch', 'last_name': 'Kapor', 'permalink': 'mitch-kapor'}}]}], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/05/10/amara-funding/', 'source_description': 'Mozilla & Knight Foundation Invest $1M In Crowdsourced Translation Startup Amara', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 10, 'company': {'name': 'Amara', 'permalink': 'amara'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businesswire.com/news/home/20121128005406/en/Everything.me-Announces-25-Million-Strategic-Investment-Telef%C3%B3nica', 'source_description': 'Everything.me Announces a $25 Million Strategic Investment From Telefónica, SingTel Innov8, Mozilla and Existing Investors', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 28, 'company': {'name': 'Everything.me', 'permalink': 'everything-me'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '650 Castro Street', 'address2': 'Suite 300', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.418491, 'longitude': -122.08744}], 'milestones': [{'id': 153, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 2, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': 'MOUNTAIN VIEW, Calif. – July 2, 2008 – Mozilla today announced it set a new Guinness World Record for the largest number of software downloads in 24 hours. The record-setting 8,002,530 downloads coincided with the launch of Firefox® 3, Mozilla’s major update to its popular and acclaimed free, open source Web browser.\\r\\n\\r\\nMozilla enthusiasts worldwide drove more than 1.7 million pledges to download Firefox 3 on Download Day, hosted regional download “fests,â€\\x9d and informed more than 43 million people through hosting Download Day affiliate buttons online. The global Mozilla community has been celebrating the historic goal of establishing a Guinness World Record with parties in more than 25 countries, including a 24-hour long download fest celebration called Camp Firefox at Mozilla’s Mountain View headquarters.\\r\\n\\r\\n“The enthusiasm and creativity of Firefox fans was instrumental in achieving this record,â€\\x9d said Paul Kim, VP of Marketing at Mozilla. “Our community members came together and not only spread the word, but also took the initiative to help mobilize millions of people to demonstrate their belief that Firefox gives people the best possible online experience.â€\\x9d\\r\\n\\r\\n“As the arbiter and recorder of the world’s amazing facts, Guinness World Records is pleased to add Mozilla’s achievement to our archives,â€\\x9d said Gareth Deaves, Records Manager for Guinness World Records. “Mobilizing over 8 million internet users within 24 hours is an extremely impressive accomplishment and we would like to congratulate the Mozilla community for their hard work and dedication.â€\\x9d', 'source_description': 'Mozilla Sets New Guinness World Record with Firefox 3 Downloads', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 5275, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 11, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Mozilla CEO John Lilly Stepping Down To Join Greylock Partners', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 6465, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 1, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Firefox Crosses 2 Billion Add-On Downloads', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}, {'id': 10209, 'description': 'UnqVjH srogpklotzjt, [url=http://skfpgjngazmi.com/]skfpgjngazmi[/url], [link=http://rceivvrqqwoq.com/]rceivvrqqwoq[/link], http://qjoeocrepxdf.com/', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 18, 'source_url': 'http://veugotmnfbsr.com/', 'source_text': '', 'source_description': 'Mozilla: $104 Million In Revenues, 400 Million Users, Google Deal Running Through 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mozilla', 'permalink': 'mozilla'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://mashpedia.com/Mozilla_Corporation', 'title': 'Mozilla Corp. at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529857e'), 'name': 'Buongiorno', 'permalink': 'buongiorno', 'crunchbase_url': 'http://www.crunchbase.com/company/buongiorno', 'homepage_url': 'http://www.buongiorno.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'AnnPRBuongiorno', 'category_code': 'mobile', 'number_of_employees': 800, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, vas, community, social-networking, connected-devices, android, tablets, smartphones', 'alias_list': None, 'email_address': 'customer-care@buongiorno.com', 'phone_number': '39 02 582131 ', 'description': '', 'created_at': 'Sun Mar 16 09:28:40 UTC 2008', 'updated_at': 'Sat Jan 05 19:34:21 UTC 2013', 'overview': '

Buongiorno is known in the worldwide mobile commerce ecosystem for developing and managing paid apps and contents that help consumers get greater enjoyment from mobile devices.

\\n\\n

With direct connections to more than 130 telecom operators in 25 countries, over 10 years’ experience and a team of 800 professionals, Buongiorno makes the mobile internet experience happen. In 2011, Buongiorno refocused its business on the B2C sector, materialized via the acquisition of Dada.net and the spin-off of the majority of its B2B business.

\\n\\n

Buongiorno concentrates exclusively on delivering a top notch mobile entertainment experience to end consumers and is investing heavily to market a few high-potential businesses based on paid content on mobile, such as the mobile payments solution Cashlog.com and e-Gaming portal Winga.com.\\nBuongiorno is headquartered and listed in Milan (FTSE Italy STAR: BNG).

', 'image': {'available_sizes': [[[150, 90], 'assets/images/resized/0002/1848/21848v1-max-150x150.jpg'], [[250, 151], 'assets/images/resized/0002/1848/21848v1-max-250x250.jpg'], [[341, 206], 'assets/images/resized/0002/1848/21848v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Cashlog', 'permalink': 'blinko'}, {'name': 'B!3A', 'permalink': 'b-3a'}], 'relationships': [{'is_past': False, 'title': 'Chairman of Buongiorno', 'person': {'first_name': 'Mauro', 'last_name': 'Del Rio', 'permalink': 'mauro-del-rio'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Andrea', 'last_name': 'Casalini', 'permalink': 'andrea-casalini'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Carlo', 'last_name': 'Frigato', 'permalink': 'carlo-frigato'}}, {'is_past': False, 'title': 'Global Marketing Communications Director', 'person': {'first_name': 'Lucia', 'last_name': 'Predolin', 'permalink': 'lucia-predolin'}}, {'is_past': False, 'title': 'Head of Global Marketing, Product & Supply', 'person': {'first_name': 'Fernando', 'last_name': 'González Mesones', 'permalink': 'fernando-gonzlez-mesones'}}, {'is_past': False, 'title': 'Global Head of Technology and Delivery', 'person': {'first_name': 'Alessandro', 'last_name': 'Gatteschi', 'permalink': 'alessandro-gatteschi'}}, {'is_past': False, 'title': 'Latam Business Development Director', 'person': {'first_name': 'Filippo', 'last_name': 'Satolli', 'permalink': 'filippo-satolli-2'}}, {'is_past': False, 'title': 'Head of New Business', 'person': {'first_name': 'Matteo', 'last_name': 'Montan', 'permalink': 'matteo-montan'}}, {'is_past': False, 'title': 'Head of Global Market Development & Sales', 'person': {'first_name': 'Pietro', 'last_name': 'De Nardis', 'permalink': 'pietro-de-nardis'}}, {'is_past': False, 'title': 'HR and Organization Development Director', 'person': {'first_name': 'Florence', 'last_name': 'Kaminska', 'permalink': 'florence-kaminska'}}, {'is_past': False, 'title': 'Head of Connected Devices', 'person': {'first_name': 'Mo', 'last_name': 'Firouzabadian', 'permalink': 'mo-firouzabadian'}}, {'is_past': True, 'title': 'VP and Managing Director of the German Branch', 'person': {'first_name': 'Ekow', 'last_name': 'Yankah', 'permalink': 'ekow-yankah'}}, {'is_past': True, 'title': 'Director, Operations', 'person': {'first_name': 'Benjamin', 'last_name': 'Rohé', 'permalink': 'benjamin-roh'}}, {'is_past': True, 'title': 'Head of Interactive Television', 'person': {'first_name': 'Gaylord', 'last_name': 'Zach', 'permalink': 'gaylord-zach'}}, {'is_past': True, 'title': 'Senior Telco Account Manager', 'person': {'first_name': 'Mirko', 'last_name': 'Trasciatti', 'permalink': 'mirko-trasciatti'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Phil', 'last_name': 'v. Sassen', 'permalink': 'phil-v-sassen'}}, {'is_past': True, 'title': 'South Cone Latam Executive Director', 'person': {'first_name': 'Diego', 'last_name': 'Marti\\xadnez Nunez', 'permalink': 'diego-martnez-nez'}}, {'is_past': True, 'title': 'Director, New Business Development', 'person': {'first_name': 'Max', 'last_name': 'Polisar', 'permalink': 'max-polisar'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Freever', 'permalink': 'freever'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Tutch Media Mobile', 'permalink': 'tutch-media-mobile'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2004, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Gsmbox', 'permalink': 'gsmbox'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Vitaminic', 'permalink': 'vitaminic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'iTouch', 'permalink': 'itouch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Dada', 'permalink': 'dada-spa'}}], 'offices': [{'description': '', 'address1': 'Via Cosimo del Fante, 10', 'address2': '', 'zip_code': '20122', 'city': 'Milan', 'state_code': None, 'country_code': 'ITA', 'latitude': 45.455322, 'longitude': 9.185502}, {'description': '', 'address1': 'Borgo Masnovo, 2', 'address2': '', 'zip_code': '43100', 'city': 'Parma', 'state_code': None, 'country_code': 'ITA', 'latitude': 44.798391, 'longitude': 10.326149}, {'description': 'Argentina', 'address1': 'Humboldt 2495', 'address2': 'Piso 10', 'zip_code': 'C1425FUG', 'city': 'Buenos Aires', 'state_code': None, 'country_code': 'ARG', 'latitude': None, 'longitude': None}, {'description': 'Australia', 'address1': 'Level 4', 'address2': '2 Elizabeth Plaza', 'zip_code': '2060', 'city': 'North Sydney NSW', 'state_code': None, 'country_code': 'AUS', 'latitude': -33.804474, 'longitude': 151.104553}, {'description': 'Austria', 'address1': 'Hießgasse 12/3', 'address2': '', 'zip_code': '1030', 'city': 'Wien', 'state_code': None, 'country_code': 'AUT', 'latitude': 48.202731, 'longitude': 16.395911}, {'description': 'Belgium e Netherlands', 'address1': 'Sweelinckplein 9-11', 'address2': '', 'zip_code': '2517', 'city': 'The Hague', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.083971, 'longitude': 4.285853}, {'description': 'Brasil', 'address1': 'R. Arandu, 205, 04562-030', 'address2': 'Brooklyn Novo', 'zip_code': '1110', 'city': 'São Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.60918, 'longitude': -46.692783}, {'description': 'Finland', 'address1': 'Salmisaarenranta 7', 'address2': '', 'zip_code': '00180', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': 60.163748, 'longitude': 24.899607}, {'description': 'France', 'address1': '10 rue Treilhard', 'address2': '', 'zip_code': '75008', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.877049, 'longitude': 2.314679}, {'description': 'Germany', 'address1': 'Arndtstrasse, 34', 'address2': '', 'zip_code': '10965', 'city': 'Berlin', 'state_code': None, 'country_code': 'DEU', 'latitude': 52.488331, 'longitude': 13.393718}, {'description': 'Greece', 'address1': 'Mesogion 319', 'address2': '', 'zip_code': '15231', 'city': 'Athens', 'state_code': None, 'country_code': 'GRC', 'latitude': 38.007084, 'longitude': 23.800205}, {'description': 'Hong Kong', 'address1': '18 Harcourt Road', 'address2': 'Admiralty Centre Tower', 'zip_code': '1001', 'city': 'Hong Kong', 'state_code': None, 'country_code': 'HKG', 'latitude': 22.279704, 'longitude': 114.165023}, {'description': 'India', 'address1': '7, Barakhambha Road', 'address2': '', 'zip_code': '110001', 'city': 'New Delhi', 'state_code': None, 'country_code': 'IND', 'latitude': 28.627906, 'longitude': 77.22797}, {'description': 'Ireland', 'address1': 'Lake Drive', 'address2': 'City West Digital Park', 'zip_code': '3050', 'city': 'Dublin', 'state_code': None, 'country_code': 'IRL', 'latitude': 53.293363, 'longitude': -6.422587}, {'description': 'Mexico', 'address1': 'León Tolstoi #18', 'address2': 'PH Col. Anzures', 'zip_code': '11590', 'city': 'México D.F.', 'state_code': None, 'country_code': 'MEX', 'latitude': 20.686477, 'longitude': -103.422819}, {'description': 'Nigeria', 'address1': '1st Floor Plot, Olosa Street', 'address2': 'Victoria Island', 'zip_code': '1649', 'city': 'Lagos', 'state_code': None, 'country_code': 'NGA', 'latitude': None, 'longitude': None}, {'description': 'Norway', 'address1': 'Kongens gate 9', 'address2': '', 'zip_code': '0153', 'city': 'Oslo', 'state_code': None, 'country_code': 'NOR', 'latitude': 59.909996, 'longitude': 10.741712}, {'description': 'Portugal', 'address1': 'Campo Grande, 30, 2° C', 'address2': '', 'zip_code': '1700-093', 'city': 'Lisbon', 'state_code': None, 'country_code': 'PRT', 'latitude': 38.753759, 'longitude': -9.152264}, {'description': 'Russia', 'address1': 'Archangelskij per, 6 stroenie 2', 'address2': '', 'zip_code': '101000', 'city': 'Moscow', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Spain', 'address1': 'Calle Javier Ferrero 13-15', 'address2': '', 'zip_code': '28002', 'city': 'Madrid', 'state_code': None, 'country_code': 'ESP', 'latitude': 40.4487974, 'longitude': -3.6697641}, {'description': 'South Africa', 'address1': '34, Bree Street', 'address2': '9th Floor, The Terraces', 'zip_code': '8001', 'city': 'Cape Town', 'state_code': None, 'country_code': 'ZAF', 'latitude': None, 'longitude': None}, {'description': 'Switzerland', 'address1': 'Technikumsstrasse 14 CH', 'address2': '', 'zip_code': '9470', 'city': 'Buchs', 'state_code': None, 'country_code': 'CHE', 'latitude': None, 'longitude': None}, {'description': 'Turkey', 'address1': 'Kasap Sok. No. 12', 'address2': 'Kat. 2 Esentepe', 'zip_code': '34394', 'city': 'Istanbul', 'state_code': None, 'country_code': 'TUR', 'latitude': 41.029886, 'longitude': 28.94057}, {'description': 'UK', 'address1': '57-63, Scrutton Street', 'address2': '', 'zip_code': 'EC2A 4PF', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.5232478, 'longitude': -0.082571}, {'description': 'USA', 'address1': '485 Alberto Way', 'address2': 'Suite 210', 'zip_code': '95032', 'city': 'Los Gatos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.229898, 'longitude': -121.971853}], 'milestones': [{'id': 23902, 'description': 'NTT DOCOMO, INC. has launched a tender offer to acquire all shares in Buongiorno S.p.A., one of the largest providers of mobile internet content and apps in Europe and beyond.', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 14, 'source_url': 'http://www.nttdocomo.com/pr/2012/001588.html', 'source_text': None, 'source_description': 'NTT DOCOMO to Launch Public Tender Offer for Buongiorno', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Buongiorno', 'permalink': 'buongiorno'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2003, 'pub_month': 7, 'pub_day': 17, 'stock_symbol': 'BNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'permalink': 'yelp', 'crunchbase_url': 'http://www.crunchbase.com/company/yelp', 'homepage_url': 'http://yelp.com', 'blog_url': 'http://officialblog.yelp.com/', 'blog_feed_url': 'http://naturallylindy.com', 'twitter_username': 'Yelp', 'category_code': 'search', 'number_of_employees': 800, 'founded_year': 2004, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'localsearch, localreviews, reviews, avriette', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Local search and review site', 'created_at': 'Tue Jul 10 06:21:37 UTC 2007', 'updated_at': 'Wed Nov 13 09:32:29 UTC 2013', 'overview': '

Yelp (NYSE: YELP) connects people with great local businesses. Yelp was founded in San Francisco in July 2004. Since then, Yelp communities have taken root in major metros across the US, Canada, UK, Ireland, France, Germany, Austria, The Netherlands, Spain, Italy, Switzerland, Belgium, Australia, Sweden, Denmark, Norway, Finland, Singapore, Poland and Turkey. Yelp had a monthly average of 86 million unique visitors in Q4 2012*. By the end of Q4 2012, Yelpers had written more than 36 million rich, local reviews, making Yelp the leading local guide for real word-of-mouth on everything from boutiques and mechanics to restaurants and dentists. Yelp’s mobile application was used on 9.2 million unique mobile devices on a monthly average basis during Q4 2012.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/2263/2263v12-max-150x150.png'], [[250, 103], 'assets/images/resized/0000/2263/2263v12-max-250x250.png'], [[435, 180], 'assets/images/resized/0000/2263/2263v12-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Slimak', 'permalink': 'jonathan-slimak'}}, {'is_past': False, 'title': 'Chairman & Board Director', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': False, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': False, 'title': 'Vice President, Local Sales', 'person': {'first_name': 'Erica', 'last_name': 'Galos Alioto', 'permalink': 'erica-galos-alioto'}}, {'is_past': False, 'title': 'Vice President, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Vice President of New Markets', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': False, 'title': 'Vice President, North American Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': False, 'title': 'VP of Corporate Communic', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': False, 'title': 'Senior Vice President of Global Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Laurence', 'last_name': 'Wilson', 'permalink': 'laurence-wilson-2'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Fenton', 'permalink': 'peter-fenton'}}, {'is_past': False, 'title': 'Vice President of Business and Corporate Development', 'person': {'first_name': 'Mike', 'last_name': 'Ghaffary', 'permalink': 'mike-ghaffary'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': False, 'title': 'VP, Revenue & Analytics', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': False, 'title': 'Director, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Android Developer', 'person': {'first_name': 'Alexander', 'last_name': 'Davis', 'permalink': 'alexander-davis-2'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeremy', 'last_name': 'Levine', 'permalink': 'jeremy-levine'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': False, 'title': 'Tech Lead', 'person': {'first_name': 'Ken', 'last_name': 'Struys', 'permalink': 'ken-struys'}}, {'is_past': False, 'title': 'Vice President, Consumer & Mobile Productser and Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': False, 'title': 'Global Head of Human Resources', 'person': {'first_name': 'Jose', 'last_name': 'Martin', 'permalink': 'jose-martin-3'}}, {'is_past': False, 'title': 'Sales Account Executive', 'person': {'first_name': 'Clement', 'last_name': 'Bazan', 'permalink': 'clement-bazan'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Vlado', 'last_name': 'Herman', 'permalink': 'vlado-herman'}}, {'is_past': True, 'title': 'Vice President of European Marketing', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Neil', 'last_name': 'Kumar', 'permalink': 'neil-kumar'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Sales Director', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Marketing Consultant', 'person': {'first_name': 'Jeremy', 'last_name': 'Krantz', 'permalink': 'jeremy-krantz'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Emile', 'last_name': 'Petrone', 'permalink': 'emile-petrone'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Jae', 'last_name': 'Kwon', 'permalink': 'jae-kwon'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Mueller', 'permalink': 'jason-mueller'}}, {'is_past': True, 'title': 'Senior Business Intelligence Analyst', 'person': {'first_name': 'Nikhil', 'last_name': 'Nirmel', 'permalink': 'nikhil-nirmel-2'}}, {'is_past': True, 'title': 'Regional Marketing Director', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Key Account Executive', 'person': {'first_name': 'Stephen', 'last_name': 'Smith', 'permalink': 'stephen-smith-2'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Director of Sales / West', 'person': {'first_name': 'Amanda', 'last_name': 'Levy', 'permalink': 'amanda-levy'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mamoon', 'last_name': 'Hamid', 'permalink': 'mamoon-hamid'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Kenji', 'last_name': 'Kaneko', 'permalink': 'kenji-kaneko'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kyle', 'last_name': 'Killion', 'permalink': 'kyle-killion'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Robertson', 'permalink': 'tim-robertson'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Director of Consumer & Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'John', 'last_name': 'Lin', 'permalink': 'john-lin-2'}}], 'competitions': [{'competitor': {'name': 'Insider Pages', 'permalink': 'insiderpages'}}, {'competitor': {'name': 'Viewpoints', 'permalink': 'viewpoints'}}, {'competitor': {'name': 'Judys Book', 'permalink': 'judysbook'}}, {'competitor': {'name': 'LocoGopher', 'permalink': 'locogopher'}}, {'competitor': {'name': 'Citysearch', 'permalink': 'citysearch'}}, {'competitor': {'name': 'Zvents', 'permalink': 'zvents'}}, {'competitor': {'name': 'Upcoming', 'permalink': 'upcoming'}}, {'competitor': {'name': 'Tipped', 'permalink': 'tipped'}}, {'competitor': {'name': 'GenieTown', 'permalink': 'genietown'}}, {'competitor': {'name': 'YellowPages', 'permalink': 'yellowpages'}}, {'competitor': {'name': 'YellowBot', 'permalink': 'yellowbot'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'CitySquares', 'permalink': 'citysquares'}}, {'competitor': {'name': 'Loladex', 'permalink': 'loladex'}}, {'competitor': {'name': 'Pelago', 'permalink': 'pelago'}}, {'competitor': {'name': 'Notches', 'permalink': 'notches'}}, {'competitor': {'name': 'Kudzu', 'permalink': 'kudzu'}}, {'competitor': {'name': 'TriValleyBook', 'permalink': 'trivalleybook'}}, {'competitor': {'name': 'BooRah', 'permalink': 'boorah'}}, {'competitor': {'name': 'TrustedPlaces', 'permalink': 'trustedplaces'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'Outalot', 'permalink': 'outalot'}}, {'competitor': {'name': 'Tupalo', 'permalink': 'tupalo'}}, {'competitor': {'name': 'RateItAll', 'permalink': 'rateitall'}}, {'competitor': {'name': 'ApartmentRatings', 'permalink': 'apartmentratings'}}, {'competitor': {'name': 'Zagat', 'permalink': 'zagat'}}, {'competitor': {'name': 'AroundMe', 'permalink': 'aroundme'}}, {'competitor': {'name': 'LocalPrice', 'permalink': 'localprice'}}, {'competitor': {'name': 'burrp!', 'permalink': 'burrp'}}, {'competitor': {'name': 'Shustir', 'permalink': 'shustir'}}, {'competitor': {'name': 'Koko', 'permalink': 'koko'}}, {'competitor': {'name': 'Redbeacon', 'permalink': 'redbeacon'}}, {'competitor': {'name': 'Thumbtack', 'permalink': 'thumbtack'}}, {'competitor': {'name': 'Tellmewhere', 'permalink': 'tellmewhere'}}, {'competitor': {'name': 'Trusted Opinion', 'permalink': 'trustedopinion'}}, {'competitor': {'name': 'Geodruid', 'permalink': 'geodruid'}}, {'competitor': {'name': 'Foursquare', 'permalink': 'foursquare'}}, {'competitor': {'name': 'Explore.To Yellow Pages', 'permalink': 'explore-to-yellow-pages'}}, {'competitor': {'name': 'FindAPro.com', 'permalink': 'findapro'}}, {'competitor': {'name': 'Dish.fm', 'permalink': 'dish-fm'}}, {'competitor': {'name': 'Compass (by Hugleberry Corp.)', 'permalink': 'hugleberry'}}, {'competitor': {'name': 'AlterGeo', 'permalink': 'altergeo'}}, {'competitor': {'name': 'Semadic', 'permalink': 'semadic-com'}}, {'competitor': {'name': 'DinnDinn', 'permalink': 'dinndinn'}}, {'competitor': {'name': 'ComplaintsBoard.com', 'permalink': 'complaintsboard-com'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The Local Data Company', 'permalink': 'the-local-data-company'}}, {'title': '', 'is_past': False, 'provider': {'name': 'RatePoint', 'permalink': 'ratepoint'}}], 'total_money_raised': '$90M', 'funding_rounds': [{'id': 95, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2006/10/04/local-review-site-yelp-raises-10-million-from-benchmark/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 96, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 293, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}]}, {'id': 1648, 'round_code': 'd', 'source_url': 'http://www.paidcontent.org/entry/419-user-reviews-site-yelp-raises-15-million', 'source_description': 'User Reviews Site Yelp Raises $15 Million Fourth Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}, {'id': 11626, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2010/01/27/update-elevation-to-invest-as-much-as-100-million-in-yelp/', 'source_description': 'TechCrunch', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Elevation Partners', 'permalink': 'elevation-partners'}, 'person': None}]}, {'id': 42197, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864912000008/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 25250029, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 7, 'investments': []}, {'id': 44472, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864913000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 8719311, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/10/24/yelp-pays-50m-to-acquire-its-big-european-rival-qype/', 'source_description': 'Yelp Pays $50M To Acquire Its Big European Rival, Qype, To Beef Up Its Recommendations And Listings Business', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 25, 'company': {'name': 'Qype', 'permalink': 'qype'}}, {'price_amount': 12700000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/18/yelp-acquires-online-reservation-service-seatme/', 'source_description': 'Yelp To Acquire Online Reservation Service SeatMe For Up To $12.7M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'SeatMe', 'permalink': 'seatme'}}], 'offices': [{'description': '', 'address1': '706 Mission Street', 'address2': '7th Floor', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.786183, 'longitude': -122.402195}], 'milestones': [{'id': 5336, 'description': 'Yelp Launches in France\\r\\n', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/yelp-launches-in-france-92908424.html', 'source_text': 'AN FRANCISCO, May 5 /PRNewswire/ -- Yelp (http://www.yelp.com), the community-led local search site, today announced the availability of Yelp France (http://www.yelp.fr). Representing its first non-English speaking country, people in France can now use Yelp.fr to read and share reviews about great local businesses in their native language. Additionally, Yelp users everywhere will have the option to view Yelp\\'s interface in French or English, as well as write and access reviews in these supported languages via a link at the bottom of any business listing.\\r\\n(Logo: http://www.newscom.com/cgi-bin/prnh/20050511/SFW134LOGO)\\r\\n\\r\\n\"France is a country steeped in rich culinary, artistic and cultural traditions. Considering this heritage, it represents the next logical destination for Yelp, which is all about connecting people with great local businesses,\" said Jeremy Stoppelman, co-founder and CEO. \"Today\\'s launch represents an exciting step for us and we are committed to making Yelp France the go-to resource for locals to share their knowledge and opinions with one another.\"\\r\\n\\r\\nThe launch of Yelp France underscores the site\\'s increased effort towards broader availability in Europe. In April 2010, one million unique visitors consulted Yelp UK and Yelp Ireland, with the vast majority of that traffic coming from London. Reaching one million unique visitors after 16 months is an even faster growth rate than Yelp experienced in its first U.S. market of San Francisco and a strong indicator that Yelp is poised to gain the same type of traction in Europe.\\r\\n\\r\\nYelp for iPhone and Yelp for Business Owners will be available shortly after the launch of Yelp.fr.\\r\\n\\r\\nAbout Yelp! Inc.', 'source_description': 'Yelp Launches in France ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 8051, 'description': \"Yelp named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 13945, 'description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://techcrunch.com/2011/04/04/yelp-now-drawing-50-million-users-a-month-to-its-17-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 16471, 'description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2011/07/15/yelp-20-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 19293, 'description': 'Yelp Files For IPO To Raise $100 Million', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/11/17/yelp-files-for-100-million-ipo/', 'source_text': '', 'source_description': 'Yelp Files For IPO To Raise $100 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 21391, 'description': 'Yelp sets terms for $93 mil IPO', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 16, 'source_url': 'http://www.renaissancecapital.com/ipohome/news/Reviews-website-Yelp-sets-IPO-terms-seeking-$93-million-11067.html', 'source_text': None, 'source_description': 'Reviews website Yelp sets IPO terms, seeking $93 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}], 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 75], 'assets/images/resized/0024/5749/245749v2-max-150x150.png'], [[250, 125], 'assets/images/resized/0024/5749/245749v2-max-250x250.png'], [[450, 226], 'assets/images/resized/0024/5749/245749v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Yelp,_Inc.', 'title': 'Wikipedia page'}], 'partners': []}]\n" + ] + } + ], + "source": [ + "results5 = list(collection.find({\"$and\": \n", + " [{\"number_of_employees\": {\"$lt\": 1000}}, \n", + " {\"founded_year\": {\"$lt\": 2005}}]}).limit(10).sort(\"number_of_employees\", -1))\n", + "\n", + "print(results5)" + ] }, { "cell_type": "markdown", @@ -100,10 +189,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "results6 = list(collection.find({\"partners\": {\"$exists\": False}}))\n", + " \n", + "print(len(results6))" + ] }, { "cell_type": "markdown", @@ -114,10 +215,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2751\n" + ] + } + ], + "source": [ + "results7 = list(collection.find({\"category_code\": None}))\n", + "\n", + "print(len(results7))" + ] }, { "cell_type": "markdown", @@ -128,10 +241,26 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "917\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8b'), 'name': 'AdventNet', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297da7'), 'name': 'AddThis', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297da8'), 'name': 'OpenX', 'number_of_employees': 305}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'number_of_employees': 644}, {'_id': ObjectId('52cdef7c4bab8bd675297dbb'), 'name': 'Jajah', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675297dc0'), 'name': 'Livestream', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297dc1'), 'name': 'Ustream', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7c4bab8bd675297e09'), 'name': 'Meebo', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e0a'), 'name': 'Eventbrite', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e10'), 'name': 'Box', 'number_of_employees': 950}, {'_id': ObjectId('52cdef7c4bab8bd675297e15'), 'name': 'Conduit', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e26'), 'name': 'oDesk', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e27'), 'name': 'Simply Hired', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e38'), 'name': 'PhotoBox', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297e3a'), 'name': 'Spreadshirt', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675297e3c'), 'name': 'Bazaarvoice', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297e3e'), 'name': 'spigit', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e40'), 'name': 'PowerReviews', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'number_of_employees': 162}, {'_id': ObjectId('52cdef7c4bab8bd675297e6d'), 'name': 'PayScale', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd675297e72'), 'name': 'Truphone', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7c4bab8bd675297e81'), 'name': 'Brightcove', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd675297e82'), 'name': 'Hightail', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297e83'), 'name': 'Nimbuzz', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd675297e9b'), 'name': 'IMVU', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675297eb2'), 'name': 'INgage Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297ec2'), 'name': 'Dropbox', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675297ec5'), 'name': 'MobiTV', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297ecd'), 'name': 'Jimdo', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7c4bab8bd675297ee5'), 'name': 'KIT digital', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7c4bab8bd675297ef5'), 'name': 'MySpace', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297efd'), 'name': 'ZoomInfo', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297eff'), 'name': 'Zango', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd675297f1b'), 'name': 'Trulia', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675297f24'), 'name': 'TubeMogul', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675297f25'), 'name': 'TechTarget', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd675297f32'), 'name': 'Sportsline', 'number_of_employees': 264}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7c4bab8bd675297f39'), 'name': 'Espotting', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675297f3c'), 'name': 'Adknowledge', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f3e'), 'name': 'airG', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7c4bab8bd675297f42'), 'name': 'ChannelAdvisor', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f72'), 'name': 'Ooyala', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675297f81'), 'name': 'hulu', 'number_of_employees': 153}, {'_id': ObjectId('52cdef7c4bab8bd675297f97'), 'name': 'ZocDoc', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7c4bab8bd675297f9d'), 'name': 'PubMatic', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7c4bab8bd675297fc7'), 'name': 'Clickable', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675297fda'), 'name': 'mig33', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675297ff0'), 'name': 'Mozilla', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675297ffd'), 'name': 'Kaltura', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd67529800c'), 'name': 'Zillow', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd67529800d'), 'name': 'Moz', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529801f'), 'name': 'Wamba', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529802b'), 'name': 'Fon', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529804a'), 'name': 'Blurb', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529804c'), 'name': 'The Climate Corporation', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529804d'), 'name': 'Automattic', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675298057'), 'name': 'uTest', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529805a'), 'name': 'Payoneer', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529805c'), 'name': 'Shopatron', 'number_of_employees': 166}, {'_id': ObjectId('52cdef7c4bab8bd67529805d'), 'name': 'Wix', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd67529805f'), 'name': 'EchoSign', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298060'), 'name': 'tyntec', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529806d'), 'name': 'TrialPay', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298073'), 'name': 'Firetide', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298081'), 'name': 'Gigya', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7c4bab8bd675298087'), 'name': 'Alipay', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752980c4'), 'name': 'MyBuys', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd6752980c9'), 'name': 'Zecco', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752980d5'), 'name': 'uShip', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7c4bab8bd6752980d6'), 'name': 'Vobile', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd6752980d9'), 'name': 'Verimatrix', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752980f1'), 'name': 'Blyk', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298106'), 'name': 'Ingenio', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd67529810f'), 'name': 'Splunk', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'number_of_employees': 611}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298132'), 'name': 'Deezer', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529813a'), 'name': 'HubSpot', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7c4bab8bd675298151'), 'name': 'Viadeo', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298159'), 'name': 'GrubHub', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529815a'), 'name': 'Skyscanner', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd67529816b'), 'name': 'Match', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298180'), 'name': 'Deem', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298181'), 'name': 'CDNetworks', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298183'), 'name': 'KAYAK', 'number_of_employees': 101}, {'_id': ObjectId('52cdef7c4bab8bd675298185'), 'name': 'Acquia', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd67529818d'), 'name': 'Etsy', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298198'), 'name': 'Tesla Motors', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752981cf'), 'name': 'Woot', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752981d7'), 'name': 'fabrik', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7c4bab8bd6752981de'), 'name': 'Oversee', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd6752981e1'), 'name': 'Zynga', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7c4bab8bd6752981f4'), 'name': 'Badoo', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675298202'), 'name': 'XING', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298204'), 'name': 'Criteo', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd67529820d'), 'name': 'Adchemy', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298212'), 'name': 'Endeca', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd675298221'), 'name': 'Cubics', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298238'), 'name': 'BreakingPoint Systems', 'number_of_employees': 109}, {'_id': ObjectId('52cdef7c4bab8bd67529824d'), 'name': 'Citrix Online', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd675298258'), 'name': 'Survey Analytics', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529827f'), 'name': 'ioko', 'number_of_employees': 270}, {'_id': ObjectId('52cdef7c4bab8bd6752982a6'), 'name': 'GameDuell', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752982bf'), 'name': 'eTeacher', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd6752982cb'), 'name': 'Pivotal Labs', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd6752982f1'), 'name': 'TheLadders', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752982ff'), 'name': 'TiVo', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd675298302'), 'name': 'Gorilla Nation Media', 'number_of_employees': 163}, {'_id': ObjectId('52cdef7c4bab8bd67529831a'), 'name': 'Social Gaming Network', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529832d'), 'name': 'Coverity', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298354'), 'name': 'Exalead', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529836b'), 'name': 'AdoTube', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298376'), 'name': 'Grooveshark', 'number_of_employees': 113}, {'_id': ObjectId('52cdef7c4bab8bd675298379'), 'name': 'Pentaho', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298382'), 'name': 'Evernote', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7c4bab8bd67529839d'), 'name': 'Covario', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752983bc'), 'name': 'Flurry', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd6752983e8'), 'name': 'Fibre2fashion', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529841d'), 'name': 'FreshBooks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd67529843a'), 'name': 'AtomicOnline', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675298443'), 'name': 'Boonty', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298447'), 'name': '99designs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298459'), 'name': 'Elance', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529845b'), 'name': 'LiveRail', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd675298460'), 'name': 'OpenDNS', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd675298463'), 'name': 'Kareo', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529846a'), 'name': 'VZnet Netzwerke', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298488'), 'name': 'Vovici', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298497'), 'name': 'Toluna', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7c4bab8bd675298499'), 'name': 'PacketFront', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7c4bab8bd6752984cc'), 'name': 'LiveOps', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7c4bab8bd6752984e1'), 'name': 'Sabrix', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752984e6'), 'name': 'Outblaze', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7c4bab8bd6752984e9'), 'name': 'Workday', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7c4bab8bd6752984ec'), 'name': '2ergo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752984fb'), 'name': 'Clarizen', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7c4bab8bd6752984fc'), 'name': 'Next New Networks', 'number_of_employees': 121}, {'_id': ObjectId('52cdef7c4bab8bd675298503'), 'name': 'FriendFinder Networks', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd675298514'), 'name': 'Zuora', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd675298518'), 'name': 'modu', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd675298525'), 'name': 'Cheapflights', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529852c'), 'name': 'Sedo', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd675298530'), 'name': 'Innuity', 'number_of_employees': 151}, {'_id': ObjectId('52cdef7c4bab8bd675298536'), 'name': 'Voltage Security', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298542'), 'name': 'InMage Systems', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298571'), 'name': 'Medindia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529857e'), 'name': 'Buongiorno', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd675298587'), 'name': 'WebVisible', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7c4bab8bd6752985a1'), 'name': 'ScanCafe', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7c4bab8bd6752985c4'), 'name': 'Adconion Media Group', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd6752985c5'), 'name': 'Cvent', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7c4bab8bd6752985de'), 'name': 'Zend Technologies', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd6752985e0'), 'name': 'Location Labs', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd6752985e3'), 'name': 'Infibeam', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752985e4'), 'name': 'OrangeSoda', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7c4bab8bd6752985e7'), 'name': 'Networked Insights', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7c4bab8bd6752985eb'), 'name': 'The Orchard', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7c4bab8bd6752985fc'), 'name': 'iCrossing', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7c4bab8bd675298608'), 'name': 'Magento', 'number_of_employees': 275}, {'_id': ObjectId('52cdef7c4bab8bd67529862d'), 'name': 'babbel', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7c4bab8bd67529862e'), 'name': 'Parature', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298631'), 'name': '7digital', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298643'), 'name': 'WebCollage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298649'), 'name': 'Higher One', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7c4bab8bd675298650'), 'name': 'Wikimedia Foundation', 'number_of_employees': 143}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7c4bab8bd67529865d'), 'name': 'BlueCat Networks', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298673'), 'name': 'NetShops', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd67529867a'), 'name': 'Glassdoor', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7c4bab8bd675298681'), 'name': 'Allopass', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529868a'), 'name': 'Red Bend Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd67529868c'), 'name': 'Realtime Worlds', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7c4bab8bd675298696'), 'name': 'Marketo', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7c4bab8bd675298698'), 'name': 'Bonobos', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529869e'), 'name': 'Edmodo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752986a2'), 'name': 'Forrester Research', 'number_of_employees': 903}, {'_id': ObjectId('52cdef7c4bab8bd6752986b4'), 'name': 'ZEDO', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd6752986e5'), 'name': 'Glasses Direct', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752986ec'), 'name': 'Pegasystems', 'number_of_employees': 750}, {'_id': ObjectId('52cdef7c4bab8bd6752986ee'), 'name': 'Avisena', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd6752986fb'), 'name': 'GlobalEnglish', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd67529872b'), 'name': 'Business News Americas', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd67529873f'), 'name': 'Absolute Software', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7c4bab8bd675298740'), 'name': 'Cellfish', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7c4bab8bd675298743'), 'name': 'eSolar', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7c4bab8bd675298754'), 'name': 'Huddle', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd67529876d'), 'name': 'iRise', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529876f'), 'name': 'Volusion', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd675298788'), 'name': 'RichRelevance', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7c4bab8bd6752987a5'), 'name': 'PixelCrayons', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7c4bab8bd6752987c9'), 'name': 'SquareTrade', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7c4bab8bd6752987cd'), 'name': 'myTino', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752987d5'), 'name': 'Mojiva', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7c4bab8bd6752987d9'), 'name': 'NaviSite', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7c4bab8bd6752987e0'), 'name': 'ServePath', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd6752987e9'), 'name': 'Iomega', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7c4bab8bd6752987f1'), 'name': 'GitHub', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'number_of_employees': 127}, {'_id': ObjectId('52cdef7c4bab8bd675298857'), 'name': 'InMobi', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7c4bab8bd67529885b'), 'name': 'Daptiv', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7c4bab8bd67529886e'), 'name': 'Mastiff Tech', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7c4bab8bd675298873'), 'name': 'TigerLogic', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7c4bab8bd675298886'), 'name': 'Wayfair', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd67529889a'), 'name': 'Natta', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7d4bab8bd67529889e'), 'name': 'BuildDirect', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752988a3'), 'name': 'Webtrends', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd6752988ac'), 'name': 'Modern Feed', 'number_of_employees': 123}, {'_id': ObjectId('52cdef7d4bab8bd67529891a'), 'name': 'Tealeaf', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298922'), 'name': 'Adify', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298925'), 'name': 'InvenSense', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675298933'), 'name': 'Infinera Corporation', 'number_of_employees': 974}, {'_id': ObjectId('52cdef7d4bab8bd67529893c'), 'name': 'Kabam', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7d4bab8bd675298952'), 'name': 'Turbine', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298966'), 'name': 'Velocify', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd675298974'), 'name': 'Phonewire', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529897f'), 'name': 'PatientsLikeMe', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752989ca'), 'name': 'Neutralize', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752989e0'), 'name': 'Talend', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752989fd'), 'name': 'Cartedge', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298a26'), 'name': 'The Motley Fool', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298a30'), 'name': 'FIRST ROI', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298a43'), 'name': 'TouchLocal', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298a69'), 'name': 'Efficient Frontier', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298a9b'), 'name': '[x+1]', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7d4bab8bd675298aaf'), 'name': 'Tiny Prints', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675298ac2'), 'name': 'SilkRoad Technology', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298acc'), 'name': 'deviantART', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298acd'), 'name': 'Saba', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675298b0e'), 'name': 'Geary Interactive', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298b15'), 'name': 'BullsEye Telecom', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298b5a'), 'name': 'SmallWorlds', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298b66'), 'name': 'Knewton', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675298b6a'), 'name': 'AtHoc', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298bbe'), 'name': 'iWin', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298bf7'), 'name': 'Zero9', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298bf9'), 'name': 'Cloudmark', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298c14'), 'name': 'TRUSTe', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298c1d'), 'name': 'Aedgency', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298c45'), 'name': 'CoreMedia', 'number_of_employees': 154}, {'_id': ObjectId('52cdef7d4bab8bd675298c47'), 'name': 'Intelius', 'number_of_employees': 131}, {'_id': ObjectId('52cdef7d4bab8bd675298c9e'), 'name': 'Medallia', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675298caf'), 'name': 'CCP Games', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd675298cbb'), 'name': 'Epic Advertising', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7d4bab8bd675298cc1'), 'name': 'Vindicia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298cc3'), 'name': 'WSO2', 'number_of_employees': 228}, {'_id': ObjectId('52cdef7d4bab8bd675298ccc'), 'name': 'VECTOR', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675298cdd'), 'name': 'Macronimous Web Solutions', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298cf0'), 'name': 'AtTask', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298cf9'), 'name': 'ClickandBuy', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298cfe'), 'name': 'Technology Evaluation Centers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298d0c'), 'name': 'CareerNet', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298d0e'), 'name': 'Rally Software', 'number_of_employees': 430}, {'_id': ObjectId('52cdef7d4bab8bd675298d10'), 'name': 'Trisoft Consulting', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298d3e'), 'name': 'mindSHIFT Technologies', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7d4bab8bd675298d48'), 'name': 'vLex', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298d5b'), 'name': 'Infusionsoft', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298d5f'), 'name': 'Practice Fusion', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675298d6a'), 'name': 'zanox', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675298d7b'), 'name': 'Vernalis Systems', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298d8a'), 'name': 'TOA Technologies', 'number_of_employees': 460}, {'_id': ObjectId('52cdef7d4bab8bd675298d8b'), 'name': 'Vostu', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd675298d9a'), 'name': 'Odnoklassniki', 'number_of_employees': 207}, {'_id': ObjectId('52cdef7d4bab8bd675298d9c'), 'name': \"Tom's Hardware\", 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298dbf'), 'name': 'CyberCoders', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675298dc5'), 'name': 'Pervasive Software', 'number_of_employees': 214}, {'_id': ObjectId('52cdef7d4bab8bd675298de3'), 'name': 'Optaros', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675298df0'), 'name': 'NetSpend', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298e07'), 'name': 'Intacct', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298e0a'), 'name': 'Making Sense', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e1f'), 'name': 'Barracuda Networks', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7d4bab8bd675298e20'), 'name': 'Astaro', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7d4bab8bd675298e23'), 'name': 'eEye', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e35'), 'name': 'GARA Web Hosting', 'number_of_employees': 480}, {'_id': ObjectId('52cdef7d4bab8bd675298e51'), 'name': 'New Media Strategies', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675298e64'), 'name': 'InsideView', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298e76'), 'name': 'Uniblue', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e84'), 'name': 'Onyx Software', 'number_of_employees': 245}, {'_id': ObjectId('52cdef7d4bab8bd675298e92'), 'name': 'TDI', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298e93'), 'name': 'WideOrbit', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298ea0'), 'name': 'CPXi', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298eb3'), 'name': 'Braithwaite Technology Consultants', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298eb6'), 'name': 'Blueprint Software Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298ee2'), 'name': 'NameMedia', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298f04'), 'name': 'AdParlor', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298f18'), 'name': 'VBS TV', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298f2d'), 'name': 'Talent Gurus', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298f48'), 'name': 'FusionOne', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675298f49'), 'name': 'FileMaker', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675298f53'), 'name': 'MarkLogic', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7d4bab8bd675298f7e'), 'name': 'Klee Group', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675298f82'), 'name': 'Appian', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7d4bab8bd675298f8d'), 'name': 'Photobucket', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298f91'), 'name': 'Jedox', 'number_of_employees': 101}, {'_id': ObjectId('52cdef7d4bab8bd675298f9b'), 'name': 'Cleartrip', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675298f9e'), 'name': 'Armjisoft Digital Rights Management Systems', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675298fa0'), 'name': 'Mendix', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675298fa5'), 'name': 'Troux Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675298fe4'), 'name': 'thePlatform', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675298fef'), 'name': 'Avature', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299017'), 'name': 'DSNR Media Group', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299023'), 'name': 'Easypano', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529902c'), 'name': 'plista', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299042'), 'name': 'Rhapsody', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752990cc'), 'name': 'GoGrid', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7d4bab8bd6752990d9'), 'name': 'Achievers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752990f7'), 'name': 'Dot Com Infoway France', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752990fb'), 'name': 'BitDefender', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'number_of_employees': 257}, {'_id': ObjectId('52cdef7d4bab8bd67529911b'), 'name': 'IDEO', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299122'), 'name': 'PurpleTalk', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd67529913d'), 'name': 'Mobiquest', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299149'), 'name': 'Milestone Systems', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529914d'), 'name': '9You', 'number_of_employees': 460}, {'_id': ObjectId('52cdef7d4bab8bd675299155'), 'name': 'Bronto Software', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd6752991c9'), 'name': 'TRSR Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752991ea'), 'name': 'Zendesk', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752991ed'), 'name': 'Shoplocal', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752991f3'), 'name': 'Epocrates', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299203'), 'name': 'Zhaopin', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299218'), 'name': 'Future US', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299254'), 'name': 'Continuum', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7d4bab8bd675299267'), 'name': 'Message Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299295'), 'name': 'Vertex', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd6752992aa'), 'name': 'The Onion', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752992b5'), 'name': 'ZAO Begun', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd6752992c2'), 'name': 'SAVO', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752992e9'), 'name': 'Gateway TechnoLabs Pvt Ltd', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd6752992f0'), 'name': 'Minted', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7d4bab8bd6752992f9'), 'name': 'BUKA', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752992fd'), 'name': 'Appirio', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299305'), 'name': 'Douban', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299327'), 'name': 'MapVersa', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd67529932f'), 'name': 'Cklear', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299331'), 'name': 'Verticity', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd675299336'), 'name': 'LateRooms', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299341'), 'name': 'Qumu', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529934f'), 'name': 'Keynote Systems', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529935e'), 'name': 'Black Duck Software', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529935f'), 'name': 'Unicsis Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299375'), 'name': 'Soft-genesis', 'number_of_employees': 124}, {'_id': ObjectId('52cdef7d4bab8bd67529937d'), 'name': 'Big Property Ladder', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299380'), 'name': 'Zagat', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299391'), 'name': 'Ableton', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752993a7'), 'name': 'Prezi', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7d4bab8bd6752993ba'), 'name': 'Livebookings', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd6752993f5'), 'name': 'SpringSource', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752993f6'), 'name': 'Industria', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299416'), 'name': 'Atari', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299421'), 'name': 'ngmoco', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299422'), 'name': 'Halogen Software', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd67529945b'), 'name': 'Passlogix', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299470'), 'name': 'Xero', 'number_of_employees': 507}, {'_id': ObjectId('52cdef7d4bab8bd67529948d'), 'name': 'Logia Group', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd6752994a8'), 'name': 'Vantage Media', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752994aa'), 'name': 'OZ Communications', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7d4bab8bd6752994af'), 'name': 'SothinkMedia', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752994b0'), 'name': 'Qualiteam Software', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752994ff'), 'name': 'NetQoS', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7d4bab8bd675299508'), 'name': 'Propertyware', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd675299533'), 'name': 'J-Curve Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299535'), 'name': 'Koolanoo Group', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675299573'), 'name': 'Centrify', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd67529957c'), 'name': 'HotCourses', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7d4bab8bd67529957d'), 'name': 'BCC Research', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299583'), 'name': 'Integrate', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299597'), 'name': 'Stack Exchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752995c7'), 'name': 'Nextiva', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299606'), 'name': 'Voxeo', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299619'), 'name': 'Hexacta', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd67529961b'), 'name': 'Cutter Consortium', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529962b'), 'name': 'StepOut', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299656'), 'name': 'Redwood Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299657'), 'name': 'Webroot', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299671'), 'name': 'Procera Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529967c'), 'name': 'Micro Focus', 'number_of_employees': 591}, {'_id': ObjectId('52cdef7d4bab8bd675299686'), 'name': 'Lyft', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7d4bab8bd6752996b3'), 'name': 'Courion Corporation', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7d4bab8bd6752996bc'), 'name': 'Popego', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd6752996c9'), 'name': 'AMAX Global Services', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752996dd'), 'name': 'Orchard Information Systems', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd6752996e6'), 'name': 'TradeCard', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd6752996fe'), 'name': 'Yammer', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299705'), 'name': 'LivingLink', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299708'), 'name': 'API Outsourcing', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299712'), 'name': 'Clickbooth', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7d4bab8bd675299730'), 'name': 'iWeb Technologies', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd67529973c'), 'name': 'TRUECar', 'number_of_employees': 303}, {'_id': ObjectId('52cdef7d4bab8bd67529974b'), 'name': 'InfoReach', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd6752997a8'), 'name': 'HexaCorp', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752997b0'), 'name': 'AKQA', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd6752997b2'), 'name': 'Softonic', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd6752997fc'), 'name': 'Stylesight', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299821'), 'name': 'Fusion Garage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299876'), 'name': 'Vichara Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529987b'), 'name': 'XBOSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752998bd'), 'name': 'J-Curve Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752998bf'), 'name': 'Koolanoo Group', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd6752998fd'), 'name': 'Centrify', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd675299906'), 'name': 'HotCourses', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7d4bab8bd675299907'), 'name': 'BCC Research', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529990d'), 'name': 'Integrate', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299921'), 'name': 'Stack Exchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299951'), 'name': 'Nextiva', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299990'), 'name': 'Voxeo', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752999a3'), 'name': 'Hexacta', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752999a5'), 'name': 'Cutter Consortium', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd6752999b5'), 'name': 'StepOut', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd6752999e0'), 'name': 'Redwood Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd6752999e1'), 'name': 'Webroot', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd6752999fb'), 'name': 'Procera Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299a06'), 'name': 'Micro Focus', 'number_of_employees': 591}, {'_id': ObjectId('52cdef7d4bab8bd675299a10'), 'name': 'Lyft', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7d4bab8bd675299a3d'), 'name': 'Courion Corporation', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7d4bab8bd675299a46'), 'name': 'Popego', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299a53'), 'name': 'AMAX Global Services', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299a67'), 'name': 'Orchard Information Systems', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7d4bab8bd675299a70'), 'name': 'TradeCard', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299a88'), 'name': 'Yammer', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7d4bab8bd675299a8f'), 'name': 'LivingLink', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7d4bab8bd675299a92'), 'name': 'API Outsourcing', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299a9c'), 'name': 'Clickbooth', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7d4bab8bd675299aba'), 'name': 'iWeb Technologies', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd675299ac6'), 'name': 'TRUECar', 'number_of_employees': 303}, {'_id': ObjectId('52cdef7d4bab8bd675299ad5'), 'name': 'InfoReach', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299b32'), 'name': 'HexaCorp', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299b3a'), 'name': 'AKQA', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7d4bab8bd675299b3c'), 'name': 'Softonic', 'number_of_employees': 360}, {'_id': ObjectId('52cdef7d4bab8bd675299b86'), 'name': 'Stylesight', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299bab'), 'name': 'Fusion Garage', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c00'), 'name': 'Vichara Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c05'), 'name': 'XBOSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c2b'), 'name': 'FetchBack', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c36'), 'name': 'Magnet Technologies India', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c40'), 'name': 'LogLogic', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299c4b'), 'name': 'Telera', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c70'), 'name': 'TeleSciences', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7d4bab8bd675299c75'), 'name': 'inTALK', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299c83'), 'name': 'Webguru-India', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7d4bab8bd675299cba'), 'name': 'Xiamen Everbeen Magnet Electron', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd675299ccf'), 'name': 'Unwired Planet', 'number_of_employees': 590}, {'_id': ObjectId('52cdef7d4bab8bd675299ced'), 'name': 'SEO Services Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299d16'), 'name': 'RiseSmart', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299d24'), 'name': 'Infinity Pharmaceuticals', 'number_of_employees': 179}, {'_id': ObjectId('52cdef7d4bab8bd675299d2c'), 'name': 'OneSource Information Services', 'number_of_employees': 185}, {'_id': ObjectId('52cdef7d4bab8bd675299d49'), 'name': 'Facebookster', 'number_of_employees': 124}, {'_id': ObjectId('52cdef7d4bab8bd675299d52'), 'name': 'Electronics Shop Limited', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299d85'), 'name': 'TESCRA', 'number_of_employees': 580}, {'_id': ObjectId('52cdef7d4bab8bd675299dd0'), 'name': 'DERI', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7d4bab8bd675299ddf'), 'name': 'Whereismyboss', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299de5'), 'name': 'Architel LP', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd675299e11'), 'name': 'InPage Incorporated', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299ea5'), 'name': 'Mindjet', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299ec1'), 'name': 'Global Relay', 'number_of_employees': 210}, {'_id': ObjectId('52cdef7d4bab8bd675299edc'), 'name': 'iTouchPoint', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675299ee0'), 'name': 'Sitecore', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7d4bab8bd675299ee3'), 'name': 'NativeX', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd675299ee8'), 'name': 'DigitalGlobe', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7d4bab8bd675299f1c'), 'name': 'Nexenta Systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299f24'), 'name': 'InfoAppenders', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7d4bab8bd675299f37'), 'name': 'Sonosite', 'number_of_employees': 715}, {'_id': ObjectId('52cdef7d4bab8bd675299f54'), 'name': 'PlayNetwork', 'number_of_employees': 122}, {'_id': ObjectId('52cdef7d4bab8bd675299f57'), 'name': 'Creative Kingdom Animation Studios Film', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7d4bab8bd675299f84'), 'name': 'The Hyperfactory', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299fa1'), 'name': 'Propellum', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299fb0'), 'name': 'Cloudera', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7d4bab8bd675299fb1'), 'name': 'Vuclip', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd675299fc2'), 'name': 'Agriya', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd675299fcb'), 'name': 'Thismoment', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7d4bab8bd67529a004'), 'name': 'SolArc', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a01a'), 'name': 'Go2Net', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a020'), 'name': 'Think Future', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a024'), 'name': 'RigNet', 'number_of_employees': 410}, {'_id': ObjectId('52cdef7d4bab8bd67529a045'), 'name': 'deltatre', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a05d'), 'name': 'TARGUSinfo', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a07a'), 'name': 'Bytemobile', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ea'), 'name': 'Trusteer', 'number_of_employees': 310}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ec'), 'name': 'A10 Networks', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f5'), 'name': 'Macbellads Network', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a0f9'), 'name': 'Indiagames', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a100'), 'name': 'Grus Construction Personnel', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a10c'), 'name': 'Jataayu Software Ltd', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a136'), 'name': 'Datamonitor', 'number_of_employees': 984}, {'_id': ObjectId('52cdef7d4bab8bd67529a137'), 'name': 'EDI Specialists', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7d4bab8bd67529a157'), 'name': 'Model Metrics', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7d4bab8bd67529a16a'), 'name': 'Tekriti Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7d4bab8bd67529a19b'), 'name': 'Red Ventures', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a8'), 'name': 'Squarespace', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7d4bab8bd67529a1b6'), 'name': 'SinoTech Group', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7d4bab8bd67529a1d5'), 'name': 'SOASTA', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1e4'), 'name': 'Next Jump', 'number_of_employees': 225}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f1'), 'name': 'Open-Xchange', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1f9'), 'name': 'JR Language Translation Services', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7d4bab8bd67529a1fc'), 'name': 'Marine Harvest Canada', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a216'), 'name': 'Hi-media', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7d4bab8bd67529a239'), 'name': 'Centro', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7d4bab8bd67529a23f'), 'name': 'SPIL GAMES', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a2aa'), 'name': 'Jaincotech', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a2ac'), 'name': 'LINKBYNET', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529a2cd'), 'name': 'GENEVA SOFTWARE TECHNOLOGIES LTD', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a2fc'), 'name': 'Populis', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a323'), 'name': 'Trustpilot', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a333'), 'name': 'Trivantis Corporation', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a352'), 'name': 'PatientKeeper', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a358'), 'name': 'Decho', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a363'), 'name': 'Meirc Training and Consulting', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a381'), 'name': 'ShipServ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ae'), 'name': 'ZipWeb', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b2'), 'name': 'Sendmail', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ba'), 'name': 'Activeweb', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a3c6'), 'name': 'Miniclip', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a3ca'), 'name': 'Twilio', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a3d2'), 'name': 'Scope e Knowledge Center Pvt Ltd', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7e4bab8bd67529a3f3'), 'name': 'Cataphora', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a407'), 'name': 'Marden Edwards', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a419'), 'name': 'MediaMath', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529a430'), 'name': 'IsayBlog!', 'number_of_employees': 154}, {'_id': ObjectId('52cdef7e4bab8bd67529a44d'), 'name': 'Hosted Solutions', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a4ab'), 'name': 'net-m', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7e4bab8bd67529a4bc'), 'name': 'LoopNet', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a50c'), 'name': 'American Broadband Family of Companies', 'number_of_employees': 144}, {'_id': ObjectId('52cdef7e4bab8bd67529a527'), 'name': 'Novem -- China website development', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a546'), 'name': 'Intelligent Software Solutions', 'number_of_employees': 730}, {'_id': ObjectId('52cdef7e4bab8bd67529a58c'), 'name': 'Canpages', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529a5c3'), 'name': 'Commission Junction', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a5d5'), 'name': 'MLB Advanced Media', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e4'), 'name': 'Liferay', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529a5e9'), 'name': 'Jump Lab', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529a62b'), 'name': 'CyberSynchs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a642'), 'name': 'CampusEAI', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a676'), 'name': 'LeapFish', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a679'), 'name': 'DotNext', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a68c'), 'name': 'BrainPulse', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a2'), 'name': 'CASON', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529a6a8'), 'name': 'iPayment', 'number_of_employees': 330}, {'_id': ObjectId('52cdef7e4bab8bd67529a6b2'), 'name': 'SpectorSoft', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529a6d5'), 'name': 'OpSource', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f1'), 'name': 'Proxibid', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a6f5'), 'name': 'Pronto Networks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529a704'), 'name': 'Dot Com Infoway', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529a706'), 'name': 'Consileon Business Consultancy GmbH', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a70c'), 'name': 'Exit41', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a71c'), 'name': 'Appcelerator', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a775'), 'name': 'Bitam', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a78d'), 'name': 'ScienceLogic', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a7a7'), 'name': 'tBits Global', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529a7cf'), 'name': 'SecondMarket', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'number_of_employees': 354}, {'_id': ObjectId('52cdef7e4bab8bd67529a81a'), 'name': 'BlueKai', 'number_of_employees': 142}, {'_id': ObjectId('52cdef7e4bab8bd67529a81b'), 'name': 'Shutterstock', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529a81f'), 'name': 'Clear2Pay', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529a834'), 'name': 'Nstein Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a854'), 'name': 'Onebox', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529a861'), 'name': 'QualSoft Services', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a865'), 'name': 'Wink Bill', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a86d'), 'name': 'Solbright', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a88f'), 'name': 'FireEye', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7e4bab8bd67529a894'), 'name': 'Itransition', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529a895'), 'name': 'Program-Ace', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529a8af'), 'name': 'ClickSquared', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'name': 'GREE', 'number_of_employees': 700}, {'_id': ObjectId('52cdef7e4bab8bd67529a8b8'), 'name': 'RGB Networks', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529a8cc'), 'name': 'Elemental Technologies', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529a8da'), 'name': 'LawCrossing', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a8dd'), 'name': 'BCG Attorney Search', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a8ed'), 'name': 'Veritas Prep', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529a954'), 'name': 'Silver Spring Networks', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7e4bab8bd67529a963'), 'name': 'Sonim Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a983'), 'name': 'OSSCube Solutions', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a986'), 'name': 'Convate Consultancy Services Private Ltd', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a988'), 'name': 'Central Reservations', 'number_of_employees': 510}, {'_id': ObjectId('52cdef7e4bab8bd67529a9b3'), 'name': 'Five9', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d7'), 'name': 'Legal Authority', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529a9d8'), 'name': 'Radix Web', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529a9dd'), 'name': '2AdPro', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529a9de'), 'name': 'Express KCS', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529a9fd'), 'name': 'Internap', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529aa12'), 'name': 'Clarabridge', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aa22'), 'name': 'TradeKey', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529aa31'), 'name': 'Nalini Networks', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529aa37'), 'name': 'Data Tech Computers', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aa3d'), 'name': 'Silverpop', 'number_of_employees': 380}, {'_id': ObjectId('52cdef7e4bab8bd67529aa9a'), 'name': 'Huiying Chemical Xiamen Company', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aab4'), 'name': 'Koves Technologies', 'number_of_employees': 146}, {'_id': ObjectId('52cdef7e4bab8bd67529aab8'), 'name': 'e-Spirit', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529aad7'), 'name': 'Initiate Systems', 'number_of_employees': 280}, {'_id': ObjectId('52cdef7e4bab8bd67529aaef'), 'name': 'SundaySky', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7e4bab8bd67529aaf3'), 'name': 'Analytical Graphics', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529aafb'), 'name': 'Aristotle', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529aafc'), 'name': 'Fuel Industries', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ab46'), 'name': 'Digimind', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ab55'), 'name': 'Vocalocity', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7b'), 'name': 'Quality Web Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ab7c'), 'name': '88DB', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529ab82'), 'name': 'InteQ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ac17'), 'name': '[x+1]', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529ac2c'), 'name': 'Stored Value Systems', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ac6e'), 'name': 'Intalio', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529ac93'), 'name': 'Intellisync', 'number_of_employees': 456}, {'_id': ObjectId('52cdef7e4bab8bd67529ac95'), 'name': 'NorthPoint Communications Group', 'number_of_employees': 948}, {'_id': ObjectId('52cdef7e4bab8bd67529ace5'), 'name': 'Namco Bandai', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529acea'), 'name': 'Skout', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529acec'), 'name': 'Relax Solutions Pvt Ltd', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ad13'), 'name': 'TechAspect Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529ad33'), 'name': 'DesignArt Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ad39'), 'name': 'Compulink Systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529ad4b'), 'name': 'Landor Associates', 'number_of_employees': 750}, {'_id': ObjectId('52cdef7e4bab8bd67529ad57'), 'name': 'Naseeb Networks', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7e'), 'name': 'Chelsio Communications', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529ad94'), 'name': 'MapMyIndia', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529adab'), 'name': 'Nexway', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529adb3'), 'name': 'Good Technology', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529adc0'), 'name': 'CAP Digisoft Solutions', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529add6'), 'name': 'Acquirelists', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae11'), 'name': 'Copan Systems', 'number_of_employees': 144}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'number_of_employees': 126}, {'_id': ObjectId('52cdef7e4bab8bd67529ae22'), 'name': 'Synaptics', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae58'), 'name': 'Quantum Secure', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529ae59'), 'name': 'Bizclickusa', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529ae68'), 'name': 'Venda', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6b'), 'name': 'Compolette guide to weight loss', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529aea7'), 'name': 'Tobii Technology', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529aeb3'), 'name': 'National Association of Professional Women', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529aedf'), 'name': 'i-Jet Media', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529aee7'), 'name': 'Rigel Networks', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529af27'), 'name': 'Neverblue', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529af3e'), 'name': 'Secure Computing', 'number_of_employees': 344}, {'_id': ObjectId('52cdef7e4bab8bd67529af63'), 'name': 'Mobile Messenger', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529af6d'), 'name': 'SonicWALL', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529afb5'), 'name': 'Power-battery', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529afc6'), 'name': 'OpenMarket', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529afc7'), 'name': 'LeadsMarketer', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529afce'), 'name': 'WANdisco', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529afd1'), 'name': 'School Management Software', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529afd3'), 'name': 'Metricus', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b028'), 'name': 'mogamebo', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b02f'), 'name': 'Perforce Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b036'), 'name': 'DoublePositive', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b04f'), 'name': 'Icreon Communications', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b050'), 'name': 'Synapse', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b051'), 'name': 'Shriv Commedia Solutions Pvt Ltd', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b052'), 'name': 'Leo TechnoSoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b06f'), 'name': 'WIT Software', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529b071'), 'name': 'eModeration', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b090'), 'name': 'Digital Marketing Solutions', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7e4bab8bd67529b0d6'), 'name': 'Dot Com Infoway Australia', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b10b'), 'name': 'EyeBuyDirect', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b10e'), 'name': 'Marketwired', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7e4bab8bd67529b112'), 'name': 'Black Soft', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b11f'), 'name': 'eCopy', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b135'), 'name': 'inContact', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b13c'), 'name': 'Skytap', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b15d'), 'name': 'Turtle Entertainment', 'number_of_employees': 175}, {'_id': ObjectId('52cdef7e4bab8bd67529b16a'), 'name': 'Jobnownow Recruitment Agency', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7e4bab8bd67529b195'), 'name': 'NearSoft Europe', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b1d3'), 'name': 'Marand', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b1eb'), 'name': 'Apalon', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fe'), 'name': 'Brothersoft', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b212'), 'name': 'Imaginova', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b21b'), 'name': 'Webmetrics', 'number_of_employees': 900}, {'_id': ObjectId('52cdef7e4bab8bd67529b29c'), 'name': 'Jobspring Partners', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b29d'), 'name': 'Workbridge Associates', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b2c7'), 'name': 'Dyn', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b2cf'), 'name': 'APICS', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b2d1'), 'name': 'Hirshorn Zuckerman Design Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b2da'), 'name': 'Unity Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b2f3'), 'name': '4shared', 'number_of_employees': 666}, {'_id': ObjectId('52cdef7e4bab8bd67529b320'), 'name': 'Jama Software', 'number_of_employees': 103}, {'_id': ObjectId('52cdef7e4bab8bd67529b32b'), 'name': 'Sixchannels', 'number_of_employees': 114}, {'_id': ObjectId('52cdef7e4bab8bd67529b340'), 'name': 'TaskUs', 'number_of_employees': 540}, {'_id': ObjectId('52cdef7e4bab8bd67529b34b'), 'name': 'ixi mobile', 'number_of_employees': 138}, {'_id': ObjectId('52cdef7e4bab8bd67529b34e'), 'name': 'Orca Interactive', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b35f'), 'name': 'LiveOffice', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b378'), 'name': 'ePartners', 'number_of_employees': 215}, {'_id': ObjectId('52cdef7e4bab8bd67529b393'), 'name': 'Cmed', 'number_of_employees': 188}, {'_id': ObjectId('52cdef7e4bab8bd67529b3b4'), 'name': 'Idea Couture', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'number_of_employees': 881}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d6'), 'name': 'Sift', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529b3d8'), 'name': 'Adityaa Call Centre', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529b3fb'), 'name': 'AMX', 'number_of_employees': 346}, {'_id': ObjectId('52cdef7e4bab8bd67529b423'), 'name': 'Classic Informatics', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529b42c'), 'name': 'NetMotion Wireless', 'number_of_employees': 107}, {'_id': ObjectId('52cdef7e4bab8bd67529b438'), 'name': 'Foursquare', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b483'), 'name': 'RightNow Technologies', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529b4c9'), 'name': 'Axcient', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b4f6'), 'name': 'mjunction services limite', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b51d'), 'name': 'Malwarebytes', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529b51e'), 'name': 'Sunbelt Software', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b52e'), 'name': 'Z2Live', 'number_of_employees': 130}, {'_id': ObjectId('52cdef7e4bab8bd67529b52f'), 'name': 'ZillionTV', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b564'), 'name': 'TIS India', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b565'), 'name': 'Lingo24', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b575'), 'name': 'Nimsoft', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b584'), 'name': 'Sowre', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b586'), 'name': 'Paisawaisa', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b587'), 'name': 'ITP Publishing Group', 'number_of_employees': 437}, {'_id': ObjectId('52cdef7e4bab8bd67529b596'), 'name': 'Webfusion', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a7'), 'name': 'Pointlogic', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529b5a8'), 'name': 'ControlCircle', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529b5c4'), 'name': 'Three Stars', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b5d4'), 'name': 'Openbravo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b619'), 'name': 'Parts Express', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b62e'), 'name': 'HootSuite', 'number_of_employees': 370}, {'_id': ObjectId('52cdef7e4bab8bd67529b63b'), 'name': 'i365, A Seagate Company', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7e4bab8bd67529b644'), 'name': 'BelWo', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b654'), 'name': 'Smartbuzz', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b675'), 'name': 'Brandsclub', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7e4bab8bd67529b67a'), 'name': 'AbodesIndia', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a6'), 'name': 'Basho Technologies', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b6b5'), 'name': 'Elluminate', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b6ca'), 'name': 'Teradici', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d5'), 'name': 'NuView Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b6d8'), 'name': 'Alert Logic', 'number_of_employees': 217}, {'_id': ObjectId('52cdef7e4bab8bd67529b6eb'), 'name': 'Bomgar', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b703'), 'name': 'SEOP', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b716'), 'name': 'SolarEdge', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7e4bab8bd67529b747'), 'name': 'Tuenti Technologies', 'number_of_employees': 170}, {'_id': ObjectId('52cdef7e4bab8bd67529b74c'), 'name': 'Fluid', 'number_of_employees': 125}, {'_id': ObjectId('52cdef7e4bab8bd67529b763'), 'name': 'Perception System', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b76a'), 'name': 'amfAR', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b76b'), 'name': 'Consumers Union', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529b77d'), 'name': 'Kaseya', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529b7a4'), 'name': 'TMP Directional Marketing', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b7cd'), 'name': 'u-blox', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7e4bab8bd67529b804'), 'name': 'SurveyMonkey', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b837'), 'name': 'Yourwovenphotos', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8b7'), 'name': 'Yellowbrix', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c3'), 'name': 'AvantGo', 'number_of_employees': 208}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c6'), 'name': 'Brandtology', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e1'), 'name': 'Broadband Suppliers', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8e5'), 'name': 'CSSAGlobal', 'number_of_employees': 135}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f1'), 'name': 'Minecode', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b8f4'), 'name': 'Bluewolf', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529b8fd'), 'name': 'Red Engineering Design', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b8ff'), 'name': 'Chikka', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529b915'), 'name': 'Sonos', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7e4bab8bd67529b919'), 'name': 'Birst', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b92b'), 'name': 'NaturalMotion', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7e4bab8bd67529b92f'), 'name': 'Lehren Entertainment Pvt Ltd', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b938'), 'name': 'MAQ Software', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529b94c'), 'name': 'oscommerce experts', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b958'), 'name': 'Aspiro', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b95b'), 'name': 'Quallion', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529b95d'), 'name': 'FreeWheel', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7e4bab8bd67529b962'), 'name': 'Markafoni', 'number_of_employees': 520}, {'_id': ObjectId('52cdef7e4bab8bd67529b988'), 'name': 'AspireHR', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7e4bab8bd67529b98e'), 'name': 'Cybernetics', 'number_of_employees': 115}, {'_id': ObjectId('52cdef7e4bab8bd67529b9a3'), 'name': 'EFJohnson Technologies', 'number_of_employees': 290}, {'_id': ObjectId('52cdef7e4bab8bd67529b9ad'), 'name': 'NexJ Systems', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529b9bc'), 'name': 'Huge', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529b9de'), 'name': 'NewAuto Video Technology', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529b9f9'), 'name': 'Netbiscuits', 'number_of_employees': 145}, {'_id': ObjectId('52cdef7e4bab8bd67529ba07'), 'name': 'NetRetail Holding', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529ba11'), 'name': 'Bullhorn', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529ba13'), 'name': 'Linekong', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529ba1b'), 'name': 'Excel Telemarketing', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ba35'), 'name': 'Tell Me More', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7e4bab8bd67529ba36'), 'name': 'Square', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529ba41'), 'name': 'Interliant', 'number_of_employees': 176}, {'_id': ObjectId('52cdef7e4bab8bd67529ba8d'), 'name': 'GRNLive', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7e4bab8bd67529bab6'), 'name': 'VFM Leonardo', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bab9'), 'name': 'eMeter', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529babb'), 'name': 'Corvil', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529babc'), 'name': 'AeroScout', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bae7'), 'name': 'HauteLook', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bafc'), 'name': 'Quality Copperworks LLC', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb00'), 'name': 'Unitrends Software', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bb0d'), 'name': 'Razorsight', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7e4bab8bd67529bb2c'), 'name': 'CASAMUNDO', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bb34'), 'name': 'SourceMedia', 'number_of_employees': 800}, {'_id': ObjectId('52cdef7e4bab8bd67529bb42'), 'name': 'Daimer Industries', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7e4bab8bd67529bb44'), 'name': 'Canopy Financial', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb67'), 'name': 'Lending Stream', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb72'), 'name': 'Acme Scale Systems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb7d'), 'name': 'BetterTrades', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7e4bab8bd67529bb85'), 'name': 'SatNav Technologies', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb87'), 'name': 'Millennial Media', 'number_of_employees': 137}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8d'), 'name': 'ContinuumGlobal', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb8e'), 'name': 'Soffront', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bb9d'), 'name': 'Veeva', 'number_of_employees': 510}, {'_id': ObjectId('52cdef7e4bab8bd67529bbb7'), 'name': 'Taipan Publishing Group', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bbc5'), 'name': 'PSR Productions', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529bbcc'), 'name': 'Venere', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7e4bab8bd67529bbe2'), 'name': 'Prevail Resources', 'number_of_employees': 162}, {'_id': ObjectId('52cdef7e4bab8bd67529bc06'), 'name': 'Kerio Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bc68'), 'name': 'Dimension Funding', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7e4bab8bd67529bc6f'), 'name': 'Leapfrog Enterprises', 'number_of_employees': 541}, {'_id': ObjectId('52cdef7e4bab8bd67529bc86'), 'name': 'StorageNetworks', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529bc9d'), 'name': 'Digium', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bcc0'), 'name': 'Autoquake', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7e4bab8bd67529bcd6'), 'name': '2 Minutes', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7e4bab8bd67529bce6'), 'name': 'CFH Docmail', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7e4bab8bd67529bd39'), 'name': 'Quirky', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7e4bab8bd67529bd48'), 'name': 'White House Business Solutions', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529bd54'), 'name': 'AVST', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bd5c'), 'name': 'GGK Tech', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bd70'), 'name': 'Sunrun', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529bd7b'), 'name': 'Merchantrms', 'number_of_employees': 117}, {'_id': ObjectId('52cdef7f4bab8bd67529bdae'), 'name': 'Ergon Informatik', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bdd2'), 'name': 'MarketsandMarkets', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529bde7'), 'name': 'uttarbharat Inc', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bdf8'), 'name': 'Netcentives', 'number_of_employees': 496}, {'_id': ObjectId('52cdef7f4bab8bd67529be02'), 'name': 'Wuxi Qiaolian Wind Power Technology', 'number_of_employees': 325}, {'_id': ObjectId('52cdef7f4bab8bd67529be03'), 'name': 'SLR Consulting', 'number_of_employees': 650}, {'_id': ObjectId('52cdef7f4bab8bd67529be16'), 'name': 'TRIRIGA', 'number_of_employees': 214}, {'_id': ObjectId('52cdef7f4bab8bd67529be17'), 'name': '888 Holdings', 'number_of_employees': 931}, {'_id': ObjectId('52cdef7f4bab8bd67529be25'), 'name': 'EdeniQ', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529be49'), 'name': 'Icera', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7f4bab8bd67529be4b'), 'name': 'Ipswitch', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529be4f'), 'name': 'Accurate Background', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529be67'), 'name': 'Urban Airship', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7f4bab8bd67529be91'), 'name': 'Pathway Genomics', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529be9e'), 'name': 'Binbit', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529bebb'), 'name': 'AMEC', 'number_of_employees': 240}, {'_id': ObjectId('52cdef7f4bab8bd67529bec0'), 'name': 'Novariant', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bef0'), 'name': 'Netsize', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529befa'), 'name': 'Tiempo Development', 'number_of_employees': 230}, {'_id': ObjectId('52cdef7f4bab8bd67529bf15'), 'name': 'Navtrak', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529bf2d'), 'name': 'Tangoe', 'number_of_employees': 485}, {'_id': ObjectId('52cdef7f4bab8bd67529bf3c'), 'name': 'Tribold', 'number_of_employees': 106}, {'_id': ObjectId('52cdef7f4bab8bd67529bf42'), 'name': 'Water Health International', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529bf50'), 'name': 'SolaRover', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7f4bab8bd67529bf52'), 'name': 'viastore systems', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529bf6e'), 'name': 'Innotech Solar', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529bfd6'), 'name': 'Anacomp', 'number_of_employees': 600}, {'_id': ObjectId('52cdef7f4bab8bd67529c004'), 'name': 'American Land Lease', 'number_of_employees': 195}, {'_id': ObjectId('52cdef7f4bab8bd67529c007'), 'name': 'Delhitoagra', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529c01a'), 'name': 'Telenity', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c033'), 'name': 'UQ Communications', 'number_of_employees': 222}, {'_id': ObjectId('52cdef7f4bab8bd67529c06b'), 'name': 'Avantium Technologies', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c09a'), 'name': 'Yahoo! Brazil', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c0a0'), 'name': 'Zemoga', 'number_of_employees': 140}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ac'), 'name': 'Timetric', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c0ae'), 'name': 'LEVEL Studios', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c0c7'), 'name': 'LearningMate', 'number_of_employees': 190}, {'_id': ObjectId('52cdef7f4bab8bd67529c0da'), 'name': 'Idealo', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c103'), 'name': 'Galam', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529c157'), 'name': 'COA Solutions', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c162'), 'name': 'MicroVision', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529c166'), 'name': 'Imagination Technologies', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c169'), 'name': 'Biolex Therapeutics', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7f4bab8bd67529c178'), 'name': 'Bigpoint', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c18d'), 'name': 'ZoomSystems', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c1a9'), 'name': 'Exent', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c1c5'), 'name': 'Pontis', 'number_of_employees': 105}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d3'), 'name': 'Audience', 'number_of_employees': 189}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ed'), 'name': 'Elite Advanced Laser Corporation', 'number_of_employees': 320}, {'_id': ObjectId('52cdef7f4bab8bd67529c1fe'), 'name': 'OpTier', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c26e'), 'name': 'Varonis Systems', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c29d'), 'name': 'Postindustria', 'number_of_employees': 110}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'number_of_employees': 165}, {'_id': ObjectId('52cdef7f4bab8bd67529c315'), 'name': 'Maxymiser', 'number_of_employees': 250}, {'_id': ObjectId('52cdef7f4bab8bd67529c327'), 'name': 'Anteryon', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c32f'), 'name': 'Mobile Interactive Group', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'number_of_employees': 149}, {'_id': ObjectId('52cdef7f4bab8bd67529c33e'), 'name': 'Solairedirect', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c348'), 'name': 'Mashable', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c368'), 'name': 'SpringSoft', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7f4bab8bd67529c377'), 'name': 'HighJump Software', 'number_of_employees': 352}, {'_id': ObjectId('52cdef7f4bab8bd67529c3a4'), 'name': 'Telogis', 'number_of_employees': 400}, {'_id': ObjectId('52cdef7f4bab8bd67529c3c0'), 'name': 'FleetMatics', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c3dd'), 'name': 'Genesis Communications', 'number_of_employees': 235}, {'_id': ObjectId('52cdef7f4bab8bd67529c3de'), 'name': 'Calypso Technology', 'number_of_employees': 386}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e9'), 'name': 'IRIS Software Group', 'number_of_employees': 347}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f7'), 'name': 'Hifn', 'number_of_employees': 166}, {'_id': ObjectId('52cdef7f4bab8bd67529c3fd'), 'name': 'Sky Bird Travel Tours', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c401'), 'name': 'Onsite3', 'number_of_employees': 422}, {'_id': ObjectId('52cdef7f4bab8bd67529c408'), 'name': 'Tier Technologies', 'number_of_employees': 412}, {'_id': ObjectId('52cdef7f4bab8bd67529c43d'), 'name': 'Tucows', 'number_of_employees': 150}, {'_id': ObjectId('52cdef7f4bab8bd67529c44a'), 'name': 'MentorMate', 'number_of_employees': 216}, {'_id': ObjectId('52cdef7f4bab8bd67529c45b'), 'name': 'Cogniance', 'number_of_employees': 300}, {'_id': ObjectId('52cdef7f4bab8bd67529c474'), 'name': 'Fuze Box', 'number_of_employees': 120}, {'_id': ObjectId('52cdef7f4bab8bd67529c49e'), 'name': 'Enliven Marketing Technologies', 'number_of_employees': 146}, {'_id': ObjectId('52cdef7f4bab8bd67529c4d4'), 'name': 'Avira', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c4da'), 'name': '800APP', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c505'), 'name': 'Optium', 'number_of_employees': 267}, {'_id': ObjectId('52cdef7f4bab8bd67529c50c'), 'name': 'Wondershare Software', 'number_of_employees': 350}, {'_id': ObjectId('52cdef7f4bab8bd67529c55d'), 'name': 'Amber Networks', 'number_of_employees': 223}, {'_id': ObjectId('52cdef7f4bab8bd67529c56a'), 'name': 'NetScaler', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529c56c'), 'name': 'OSA Technologies', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7f4bab8bd67529c57c'), 'name': 'Abilis Solutions', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7f4bab8bd67529c588'), 'name': 'Applied Language Solutions', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c599'), 'name': 'Catapult Communications', 'number_of_employees': 205}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ba'), 'name': 'iomart Group', 'number_of_employees': 260}, {'_id': ObjectId('52cdef7f4bab8bd67529c5d6'), 'name': 'Swiftprosys', 'number_of_employees': 180}, {'_id': ObjectId('52cdef7f4bab8bd67529c5e9'), 'name': 'G5 Entertainment', 'number_of_employees': 107}, {'_id': ObjectId('52cdef7f4bab8bd67529c5fe'), 'name': 'InfoLogix', 'number_of_employees': 206}, {'_id': ObjectId('52cdef7f4bab8bd67529c601'), 'name': 'smartFOCUS', 'number_of_employees': 550}, {'_id': ObjectId('52cdef7f4bab8bd67529c603'), 'name': 'TGS Geophysicl', 'number_of_employees': 696}, {'_id': ObjectId('52cdef7f4bab8bd67529c609'), 'name': 'INX', 'number_of_employees': 433}, {'_id': ObjectId('52cdef7f4bab8bd67529c616'), 'name': 'Ambassadors Group', 'number_of_employees': 267}, {'_id': ObjectId('52cdef7f4bab8bd67529c618'), 'name': 'optionsXpress', 'number_of_employees': 305}, {'_id': ObjectId('52cdef7f4bab8bd67529c61e'), 'name': 'Embarcadero Technologies', 'number_of_employees': 450}, {'_id': ObjectId('52cdef7f4bab8bd67529c649'), 'name': 'AuthenTec', 'number_of_employees': 220}, {'_id': ObjectId('52cdef7f4bab8bd67529c65c'), 'name': 'SheKnows', 'number_of_employees': 200}, {'_id': ObjectId('52cdef7f4bab8bd67529c6a2'), 'name': 'Savvion', 'number_of_employees': 160}, {'_id': ObjectId('52cdef7f4bab8bd67529c6ac'), 'name': 'Inventa Technologies', 'number_of_employees': 207}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d1'), 'name': 'UOL (Universo Online)', 'number_of_employees': 500}, {'_id': ObjectId('52cdef7f4bab8bd67529c6d8'), 'name': 'NextLabs', 'number_of_employees': 100}, {'_id': ObjectId('52cdef7f4bab8bd67529c6e6'), 'name': 'OfficialVirtualDJ', 'number_of_employees': 102}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f1'), 'name': 'Willdan Group', 'number_of_employees': 385}, {'_id': ObjectId('52cdef7f4bab8bd67529c6f3'), 'name': 'QSGI', 'number_of_employees': 164}]\n" + ] + } + ], + "source": [ + "results8 = list(collection.find(\n", + " {\"$and\": [{\"number_of_employees\": {\"$gte\": 100}}, {\"number_of_employees\": {\"$lt\": 1000}}]},\n", + " {\"name\": 1, \"number_of_employees\": 1}))\n", + "\n", + "print(len(results8))\n", + "print(results8)" + ] }, { "cell_type": "markdown", @@ -142,11 +271,24 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "[{'_id': ObjectId('52cdef7e4bab8bd67529a8b4'), 'ipo': {'valuation_amount': 108960000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297d8e'), 'ipo': {'valuation_amount': 104000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'ipo': {'valuation_amount': 100000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297d94'), 'ipo': {'valuation_amount': 18100000000}}, {'_id': ObjectId('52cdef7d4bab8bd675299d5d'), 'ipo': {'valuation_amount': 12800000000}}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'ipo': {'valuation_amount': 11000000000}}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'ipo': {'valuation_amount': 9430000000}}, {'_id': ObjectId('52cdef7c4bab8bd675297e0c'), 'ipo': {'valuation_amount': 9310000000}}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'ipo': {'valuation_amount': 6000000000}}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'ipo': {'valuation_amount': 5440000000}}]\n" + ] + } + ], "source": [ - " " + "# NOTE: For memory purposes search results have been limited to 10\n", + "\n", + "results9 = list(collection.find({},{\"ipo.valuation_amount\": 1}).sort(\"ipo.valuation_amount\", -1).limit(10))\n", + "\n", + "print(results9)" ] }, { @@ -158,10 +300,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd67529941a'), 'name': 'Siemens', 'permalink': 'siemens', 'crunchbase_url': 'http://www.crunchbase.com/company/siemens', 'homepage_url': 'http://www.siemens.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Siemens', 'category_code': 'hardware', 'number_of_employees': 405000, 'founded_year': 1847, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'automation, building-technologies, drive-technology, energy', 'alias_list': '', 'email_address': 'contact@siemens.com', 'phone_number': '49 89 636 34134', 'description': 'Electronics and Electrical Engineering', 'created_at': 'Thu Jul 31 09:29:43 UTC 2008', 'updated_at': 'Thu Nov 28 20:32:55 UTC 2013', 'overview': '

Siemens AG, an electronics and electrical engineering company, operates in the industry, energy, and healthcare sectors worldwide. The company, formerly known as Siemens & Halske, was founded in 1847 and is headquartered in Munich, Germany. Siemens’ principal activities are in the fields of industry, energy, transportation and healthcare. It is organized into five main divisions: Industry, Energy, Healthcare, Infrastructure & Cities, and Siemens Financial Services (SFS). Siemens and its subsidiaries employ approximately 360,000 people across nearly 190 countries and reported global revenue of approximately 73.5 billion euros for the year of 2011.

\\n\\n

In the industry sector, the company’s portfolio ranges from industry automation and drives products and services to building, lighting, and mobility solutions and services, as well as includes system integration and solutions for plant business. It offers automation and drives, industrial solutions and services, transportation systems, Siemens building technologies, and OSRAM lighting solutions.

\\n\\n

In the energy sector, the company provides various solutions for the generation, transmission, and distribution of power, as well as for the extraction, conversion, and transport of oil and gas in the oil and gas industry. Siemens Energy Service delivers service solutions for gas turbines, steam turbines, generators or wind turbines to increase efficiency, reliability and availability throughout the entire lifecycle. From modernizations and upgrades, remote monitoring, lifetime extensions, and condition monitoring to logistical and turnkey service for onshore and offshore wind turbines, Siemens energy services work to achieve maximum success and efficiency.

\\n\\n

In the healthcare sector, Siemens develops, manufactures, and markets diagnostic and therapeutic systems, devices, and consumables, as well as offers IT systems for clinical and administrative purposes.

\\n\\n

Other services include technical maintenance, professional, and consulting services. Siemens AG offers IT solutions and services, primarily information and communications systems. Further, the company provides financial products and services comprising commercial finance, equity and project finance, treasury and investment management, and project and export finance. Siemens AG offers insurance solutions, such as claims management, as well as acts as a broker of company-financed insurances for employees on business trips and foreign assignments.

\\n\\n

The company has equity investments in Nokia Siemens Networks B.V., a telecommunications infrastructure company; and BSH Bosch und Siemens Hausgerate GmbH, a household appliance producer.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0006/5139/65139v2-max-150x150.jpg'], [[250, 58], 'assets/images/resized/0006/5139/65139v2-max-250x250.jpg'], [[450, 104], 'assets/images/resized/0006/5139/65139v2-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman, Supervisory Board', 'person': {'first_name': 'Dr. Gerhard', 'last_name': 'Cromme', 'permalink': 'dr-gerhard-cromme'}}, {'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Joe', 'last_name': 'Kaeser', 'permalink': 'joe-kaeser'}}, {'is_past': False, 'title': 'Head of the Open Innovation Program at the Chief Technology Office', 'person': {'first_name': 'Thomas', 'last_name': 'Lackner', 'permalink': 'thomas-lackner-2'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Ralf', 'last_name': 'P. Thomas', 'permalink': 'ralf-p-thomas'}}, {'is_past': False, 'title': 'Softare Engineer', 'person': {'first_name': 'Ali', 'last_name': 'Ugur', 'permalink': 'ali-ugur'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jens', 'last_name': 'Dressler', 'permalink': 'jens-dressler'}}, {'is_past': False, 'title': 'Director of Venture Technology', 'person': {'first_name': 'Debjit', 'last_name': 'Mukerji', 'permalink': 'debjit-mukerji'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Roland', 'last_name': 'Busch', 'permalink': 'roland-busch'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Barbara', 'last_name': 'Kux', 'permalink': 'barbara-kux'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Siegfried', 'last_name': 'Russwurm', 'permalink': 'siegfried-russwurm'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Michael', 'last_name': 'Suess', 'permalink': 'michael-suess'}}, {'is_past': False, 'title': 'Supervisory Boards', 'person': {'first_name': 'Werner', 'last_name': 'Wenning', 'permalink': 'werner-wenning'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Gerd', 'last_name': 'von Brandenstein', 'permalink': 'gerd-von-brandenstein'}}, {'is_past': False, 'title': 'Audit Committee', 'person': {'first_name': 'Hans Michael', 'last_name': 'Gaul', 'permalink': 'hans-michael-gaul'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Bettina', 'last_name': 'Haller', 'permalink': 'bettina-haller'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Robert', 'last_name': 'Kensbock', 'permalink': 'robert-kensbock'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Harald', 'last_name': 'Kern', 'permalink': 'harald-kern'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Nicola', 'last_name': 'Leibinger-Kammüller', 'permalink': 'nicola-leibinger-kammller'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Güler', 'last_name': 'Sabancı', 'permalink': 'gler-sabanc'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Birgit', 'last_name': 'Steinborn', 'permalink': 'birgit-steinborn'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Beregszaszi', 'permalink': 'alex-beregszaszi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Elnar', 'last_name': 'Hajiyev', 'permalink': 'elnar-hajiyev'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Deniss', 'last_name': 'Belajevs', 'permalink': 'deniss-belajevs'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Nigel', 'last_name': 'Vaz', 'permalink': 'nigel-vaz'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Klaus', 'last_name': 'Helmrich', 'permalink': 'klaus-helmrich'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Hermann', 'last_name': 'Requardt', 'permalink': 'hermann-requardt'}}, {'is_past': False, 'title': 'Managing Board', 'person': {'first_name': 'Peter', 'last_name': 'Y. Solmssen', 'permalink': 'peter-y-solmssen'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Berthold', 'last_name': 'Huber', 'permalink': 'berthold-huber'}}, {'is_past': False, 'title': 'Central Works Council', 'person': {'first_name': 'Lothar', 'last_name': 'Adler', 'permalink': 'lothar-adler'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Michael', 'last_name': 'Diekmann', 'permalink': 'michael-diekmann'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Peter', 'last_name': 'Gruss', 'permalink': 'peter-gruss'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Hans-Jürgen', 'last_name': 'Hartung', 'permalink': 'hans-jrgen-hartung'}}, {'is_past': False, 'title': 'Central Works Council', 'person': {'first_name': 'Harald', 'last_name': 'Kern', 'permalink': 'harald-kern'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Jürgen', 'last_name': 'Kerner', 'permalink': 'jrgen-kerner'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Gérard', 'last_name': 'Mestrallet', 'permalink': 'grard-mestrallet'}}, {'is_past': False, 'title': 'Committee of Spokespersons', 'person': {'first_name': 'Rainer', 'last_name': 'Sieg', 'permalink': 'rainer-sieg'}}, {'is_past': False, 'title': 'Supervisory Board', 'person': {'first_name': 'Sibylle', 'last_name': 'Wankel', 'permalink': 'sibylle-wankel'}}, {'is_past': False, 'title': 'Director, Venture Technology - USA', 'person': {'first_name': 'Ayman', 'last_name': 'Fawaz', 'permalink': 'ayman-fawaz'}}, {'is_past': True, 'title': 'Founder (INDX Software)', 'person': {'first_name': 'Mike', 'last_name': 'Brooks', 'permalink': 'mike-brooks'}}, {'is_past': True, 'title': 'President and CEO', 'person': {'first_name': 'F.', 'last_name': 'Steven Feinberg', 'permalink': 'f-steven-feinberg'}}, {'is_past': True, 'title': 'Chief Information Officer', 'person': {'first_name': 'Kerry', 'last_name': 'Stover', 'permalink': 'kerry-stover'}}, {'is_past': True, 'title': 'CTO, Communications Division', 'person': {'first_name': 'Thorsten', 'last_name': 'Heins', 'permalink': 'thorsten-heins'}}, {'is_past': True, 'title': 'Vice President at Siemens Molecular Imaging', 'person': {'first_name': 'Christian', 'last_name': 'Behrenbruch', 'permalink': 'christian-behrenbruch'}}, {'is_past': True, 'title': 'SVP / GM - Siemens Wireless Terminals', 'person': {'first_name': 'Bob', 'last_name': 'Hunsberger', 'permalink': 'bob-hunsberger'}}, {'is_past': True, 'title': 'EVP', 'person': {'first_name': 'Julien', 'last_name': 'Dahan', 'permalink': 'julien-dahan'}}, {'is_past': True, 'title': 'Global Vice President of CT Sales & Marketing, Managing Director Siemens Medical', 'person': {'first_name': 'Peter', 'last_name': 'Kingma', 'permalink': 'peter-kingma'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Robert', 'last_name': 'Bongi', 'permalink': 'robert-bongi'}}, {'is_past': True, 'title': 'VP, GM, Asia-Pacific & EMEA', 'person': {'first_name': 'Salim', 'last_name': 'Khan', 'permalink': 'salim-khan'}}, {'is_past': True, 'title': 'Vice President, T-Mobile USA Account', 'person': {'first_name': 'Jason', 'last_name': 'Mackenzie', 'permalink': 'jason-mackenzie'}}, {'is_past': True, 'title': 'VP, Wireless Solutions', 'person': {'first_name': 'Tom', 'last_name': 'Racca', 'permalink': 'tom-racca'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Leif', 'last_name': 'Pedersen', 'permalink': 'leif-pedersen'}}, {'is_past': True, 'title': 'Vice President, Product LIne Management', 'person': {'first_name': 'Ryan', 'last_name': 'Petty', 'permalink': 'ryan-petty'}}, {'is_past': True, 'title': 'Director M&A, Venturing & Partnering', 'person': {'first_name': 'Henning', 'last_name': 'Kosmack', 'permalink': 'henning-kosmack'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Warren', 'permalink': 'tom-warren'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Sujit', 'last_name': 'Nair', 'permalink': 'sujit-nair'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Rainer', 'last_name': 'Maerkle', 'permalink': 'rainer-maerkle'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Ilan', 'last_name': 'Vardi', 'permalink': 'ilan-vardi'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gregoire', 'last_name': 'jaunin', 'permalink': 'gregoire-jaunin'}}, {'is_past': True, 'title': 'Division Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Crowe', 'permalink': 'jeff-crowe'}}, {'is_past': True, 'title': 'number of ground breaking projects', 'person': {'first_name': 'George', 'last_name': 'Liou', 'permalink': 'george-liou'}}, {'is_past': True, 'title': 'Senior Project Engineer', 'person': {'first_name': 'David', 'last_name': 'Wood', 'permalink': 'david-wood'}}, {'is_past': True, 'title': 'Sr. Programmer Analyst', 'person': {'first_name': 'Zikria', 'last_name': 'Syed', 'permalink': 'zikria-syed'}}, {'is_past': True, 'title': 'Business Development & Partnerships', 'person': {'first_name': 'Neil', 'last_name': 'Harmsworth', 'permalink': 'neil-harmsworth'}}, {'is_past': True, 'title': 'Internet Expert - Software Developer', 'person': {'first_name': 'Christian', 'last_name': 'Berczely', 'permalink': 'christian-berczely'}}, {'is_past': True, 'title': 'Sales Engineer for Siemens Energy and Automation', 'person': {'first_name': 'Scott', 'last_name': 'Davis', 'permalink': 'scott-davis-4'}}, {'is_past': True, 'title': 'Summer Venture Manager', 'person': {'first_name': 'Stefan', 'last_name': 'Kalteis', 'permalink': 'stefan-kalteis'}}, {'is_past': True, 'title': 'Localization Specialist', 'person': {'first_name': 'Andrea', 'last_name': 'Roesch', 'permalink': 'andrea-roesch'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Fahri', 'last_name': 'Diner', 'permalink': 'fahri-diner'}}, {'is_past': True, 'title': 'Manager, IS Officer', 'person': {'first_name': 'Xiao', 'last_name': 'Ling Dong', 'permalink': 'xiao-ling-dong'}}, {'is_past': True, 'title': 'Intern (Software Development)', 'person': {'first_name': 'Stefan', 'last_name': 'Will', 'permalink': 'stefan-will'}}, {'is_past': True, 'title': 'Internship Industrial Design', 'person': {'first_name': 'Bianca', 'last_name': 'Busetti', 'permalink': 'bianca-busetti'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Elena', 'last_name': 'Fironova', 'permalink': 'elena-fironova'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'Vincent', 'last_name': 'Graziani', 'permalink': 'vincent-graziani'}}, {'is_past': True, 'title': 'Senior Director, Sales & Marketing', 'person': {'first_name': 'Walter', 'last_name': 'Lowes', 'permalink': 'walter-lowes'}}, {'is_past': True, 'title': 'IP Counsel', 'person': {'first_name': 'Jim', 'last_name': 'Harlan', 'permalink': 'jim-harlan'}}, {'is_past': True, 'title': 'Software Engineering Manager', 'person': {'first_name': 'Ping', 'last_name': 'Zhang', 'permalink': 'ping-zhang'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Elnar', 'last_name': 'Hajiyev', 'permalink': 'elnar-hajiyev'}}, {'is_past': True, 'title': 'Financial Advisor', 'person': {'first_name': 'Scott', 'last_name': 'Gorton', 'permalink': 'scott-gorton'}}, {'is_past': True, 'title': 'Project Management', 'person': {'first_name': 'Vernon', 'last_name': 'Warner', 'permalink': 'vernon-warner'}}, {'is_past': True, 'title': 'Global Product Manager for Repeater and Confined Area Communication Systems', 'person': {'first_name': 'Tormod', 'last_name': 'Larsen', 'permalink': 'tormod-larsen'}}, {'is_past': True, 'title': 'Core Product Development', 'person': {'first_name': 'Srinivas', 'last_name': 'Muktevi', 'permalink': 'srinivas-muktevi'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Claus', 'last_name': 'Thorsgaard', 'permalink': 'claus-thorsgaard'}}, {'is_past': True, 'title': 'Contracts Manager', 'person': {'first_name': 'Joe', 'last_name': 'Regnery', 'permalink': 'joe-regnery'}}, {'is_past': True, 'title': 'Leadership in Strategic-Partnership Developments', 'person': {'first_name': 'Steve', 'last_name': 'Hane', 'permalink': 'steve-hane'}}, {'is_past': True, 'title': 'HR Leader', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Systems Engineering and Sales Management', 'person': {'first_name': 'Steve', 'last_name': 'Madeira', 'permalink': 'steve-madeira'}}, {'is_past': True, 'title': 'Assistant to the Central Executive', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': 'Supply Chain Management & Business Development', 'person': {'first_name': 'Kevin', 'last_name': 'Owczarzak', 'permalink': 'kevin-owczarzak'}}, {'is_past': True, 'title': 'Senior Human Resources Role', 'person': {'first_name': 'Marietta', 'last_name': 'Harvey', 'permalink': 'marietta-harvey'}}, {'is_past': True, 'title': 'Board of Directors (Castle Networks)', 'person': {'first_name': 'Barry', 'last_name': 'Fidelman', 'permalink': 'barry-fidelman'}}, {'is_past': True, 'title': 'Led a site Manufacturing and Developing', 'person': {'first_name': 'Ed', 'last_name': 'Farrell', 'permalink': 'ed-farrell'}}, {'is_past': True, 'title': 'Country Manager (Sales and Business Development)', 'person': {'first_name': 'Rosemary', 'last_name': 'Lokhorst', 'permalink': 'rosemary-lokhorst'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'K.', 'last_name': 'Cyrus Hadavi', 'permalink': 'k-cyrus-hadavi'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Hanjiang', 'last_name': 'Wang', 'permalink': 'hanjiang-wang'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Bejoy', 'last_name': 'Jaison', 'permalink': 'bejoy-jaison'}}, {'is_past': True, 'title': 'Manager, Channel Sales', 'person': {'first_name': 'David', 'last_name': 'Putnam', 'permalink': 'david-putnam'}}, {'is_past': True, 'title': 'Technical Leader', 'person': {'first_name': 'Kamlesh', 'last_name': 'Pant', 'permalink': 'kamlesh-pant'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Ricky', 'last_name': 'Arora', 'permalink': 'ricky-arora'}}, {'is_past': True, 'title': 'Product Manager, Project Lead', 'person': {'first_name': 'Medha', 'last_name': 'Vedaprakash', 'permalink': 'medha-vedaprakash'}}, {'is_past': True, 'title': 'Various management positions', 'person': {'first_name': 'Jan', 'last_name': 'van Dokkum', 'permalink': 'jan-van-dokkum'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'David', 'last_name': 'Corre', 'permalink': 'david-corre'}}, {'is_past': True, 'title': 'Director, Decision Support', 'person': {'first_name': 'Daphne', 'last_name': 'Thomas', 'permalink': 'daphne-thomas'}}, {'is_past': True, 'title': 'Software Engineer, New Product Development', 'person': {'first_name': 'Anibal', 'last_name': 'Damiao', 'permalink': 'anibal-damiao'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Sid', 'last_name': 'Fein', 'permalink': 'sid-fein'}}, {'is_past': True, 'title': 'Division Manager', 'person': {'first_name': 'Jeffrey', 'last_name': 'Crowe', 'permalink': 'jeffrey-crowe'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Lemuel', 'last_name': 'Park', 'permalink': 'lemuel-park'}}, {'is_past': True, 'title': 'Vice President, Mobile Phones North America', 'person': {'first_name': 'Florian', 'last_name': 'Seiche', 'permalink': 'florian-seiche'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Rick', 'last_name': 'Campfield', 'permalink': 'rick-campfield'}}, {'is_past': True, 'title': 'Sales Management Positions', 'person': {'first_name': 'Woody', 'last_name': 'Sessoms', 'permalink': 'woody-sessoms'}}, {'is_past': True, 'title': 'SALES SUPPORT', 'person': {'first_name': 'Rebecca', 'last_name': 'lin', 'permalink': 'rebecca-lin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Lonsdale', 'permalink': 'simon-lonsdale'}}, {'is_past': True, 'title': 'senior leadership positions', 'person': {'first_name': 'Mark', 'last_name': 'Straton', 'permalink': 'mark-straton'}}, {'is_past': True, 'title': 'Accounting Manager / Internal Audit / Profit Center Reporting Supervisor / Staff Positions', 'person': {'first_name': 'Dan', 'last_name': 'Zebrowski', 'permalink': 'dan-zebrowski'}}, {'is_past': True, 'title': 'Deputy Director', 'person': {'first_name': 'Juergen', 'last_name': 'Schoepf', 'permalink': 'juergen-schoepf'}}, {'is_past': True, 'title': 'System Architect', 'person': {'first_name': 'Atreedev', 'last_name': 'Banerjee', 'permalink': 'atreedev-banerjee'}}, {'is_past': True, 'title': 'Telecommunication Technician', 'person': {'first_name': 'Douglas', 'last_name': 'Correa', 'permalink': 'douglas-correa-2'}}, {'is_past': True, 'title': 'Corporate Auditor, Region Controller', 'person': {'first_name': 'Kathrin', 'last_name': 'Buvac', 'permalink': 'kathrin-buvac'}}, {'is_past': True, 'title': 'Department Manager IC Development', 'person': {'first_name': 'Luc', 'last_name': 'Darmon', 'permalink': 'luc-darmon'}}, {'is_past': True, 'title': 'Director of Strategic Planning', 'person': {'first_name': 'Dan', 'last_name': 'Mondor', 'permalink': 'dan-mondor'}}, {'is_past': True, 'title': 'Medical Data Analysis', 'person': {'first_name': 'Jay', 'last_name': 'B. Simha', 'permalink': 'jay-b-simha'}}, {'is_past': True, 'title': 'R&D / Product Management', 'person': {'first_name': 'Maurice', 'last_name': 'Van Riek', 'permalink': 'maurice-van-riek'}}, {'is_past': True, 'title': 'Distributed Systems and Call Processing Applications', 'person': {'first_name': 'Mark', 'last_name': 'Snycerski', 'permalink': 'mark-snycerski'}}, {'is_past': True, 'title': 'Subject Matter Expert', 'person': {'first_name': 'Adnan', 'last_name': 'Hamid', 'permalink': 'adnan-hamid'}}, {'is_past': True, 'title': 'Account Management and Executive Positions', 'person': {'first_name': 'Mark', 'last_name': 'Baehr', 'permalink': 'mark-baehr'}}, {'is_past': True, 'title': 'Senior Quality & Regulatory Positions (Diagnostic Ultrasound)', 'person': {'first_name': 'Jim', 'last_name': 'Talbot', 'permalink': 'jim-talbot'}}, {'is_past': True, 'title': 'Telecommunications Projects - Greece', 'person': {'first_name': 'Giuseppe', 'last_name': 'Donagemma', 'permalink': 'giuseppe-donagemma'}}, {'is_past': True, 'title': 'Project Manager for Siemens Corporate Technology', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': 'Siemens Technology Accelerator GmbH as a Venture Manager', 'person': {'first_name': 'Armin', 'last_name': 'Anders', 'permalink': 'armin-anders'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Markus', 'last_name': 'Sickmoeller', 'permalink': 'markus-sickmoeller'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Philip', 'last_name': 'Korf', 'permalink': 'philip-korf'}}, {'is_past': True, 'title': 'Corporate Research Division', 'person': {'first_name': 'Leo', 'last_name': 'Grady', 'permalink': 'leo-grady'}}, {'is_past': True, 'title': 'Managed Manufacturing and Procurement', 'person': {'first_name': 'Jeremy', 'last_name': 'Edinger', 'permalink': 'jeremy-edinger'}}, {'is_past': True, 'title': 'Senior Roles in Product Management and Product Development', 'person': {'first_name': 'Pedro', 'last_name': 'Colaco', 'permalink': 'pedro-colao'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Chris', 'last_name': 'Hammelef', 'permalink': 'chris-hammelef'}}], 'competitions': [], 'providerships': [{'title': 'Application Development', 'is_past': False, 'provider': {'name': 'Mercury Digital Agency', 'permalink': 'mercury-digital-agency'}}, {'title': '', 'is_past': True, 'provider': {'name': '_STRATEGY Global Business Development', 'permalink': 'strategy-global-business-development'}}], 'total_money_raised': '$8.9M', 'funding_rounds': [{'id': 17062, 'round_code': 'grant', 'source_url': 'http://www.thealarmclock.com/mt/archives/2010/07/siemens_awarded.html', 'source_description': 'Siemens Awarded $8.9 Million For Clean Coal Plant', 'raised_amount': 8900000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'U.S. Department of Energy', 'permalink': 'u-s-department-of-energy'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 418000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/siemens-buys-solel-for-418-million/', 'source_description': 'Siemens Buys Solel for $418M', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'Solel Solar Systems', 'permalink': 'solel-solar-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/siemens-buys-suregrid-amid-building-management-fever/', 'source_description': 'Siemens Buys SureGrid Amid Building Management Fever', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 1, 'company': {'name': 'SureGrid', 'permalink': 'suregrid'}}, {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/memphis/stories/2005/03/14/daily44.html', 'source_description': 'Siemens to buy CTI Molecular Imaging, Inc., for $1 billion Read more: Siemens to buy CTI Molecular Imaging, Inc., for $1 billion | Memphis Business Journal ', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 18, 'company': {'name': 'CTI Molecular Imaging', 'permalink': 'cti-molecular-imaging'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2011/11/07/daily20-Siemens-buys-Waltham-CAD-software-maker-Vistagy.html', 'source_description': 'Siemens buys Waltham CAD software maker Vistagy', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Vistagy', 'permalink': 'vistagy'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/05/siemens-buys-emeter-to-bolster-its-smart-grid-division/', 'source_description': 'Siemens Buys eMeter To Bolster Its Smart Grid Division', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 6, 'company': {'name': 'eMeter', 'permalink': 'emeter'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siemens.com/press/en/pressrelease/?press=/en/pressrelease/2013/industry/industry-automation/iia2013063008.htm', 'source_description': 'Siemens Aquires Preactor', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 3, 'company': {'name': 'The Preactor Group', 'permalink': 'preactor-international-ltd'}}], 'offices': [{'description': '', 'address1': 'Wittelsbacherplatz 2', 'address2': '', 'zip_code': '80333', 'city': 'Munich', 'state_code': None, 'country_code': 'DEU', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 35852, 'description': 'Siemens Receives €1.8 Billion Order for U.K. Trains ', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://online.wsj.com/article/SB10001424127887323419604578571470024685266.html?mod=europe_home', 'source_text': '', 'source_description': 'Siemens Receives €1.8 Billion Order for U.K. Trains ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Siemens', 'permalink': 'siemens'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 23, 'stock_symbol': 'NYSE:SI'}, 'video_embeds': [{'embed_code': '', 'description': '

More Than Just A Business

'}, {'embed_code': \"\", 'description': '

A World With Seven Billion People

'}, {'embed_code': \"\", 'description': '

The Next Big Step

'}, {'embed_code': \"\", 'description': '

Somewhere In America

'}], 'screenshots': [{'available_sizes': [[[150, 92], 'assets/images/resized/0036/7684/367684v1-max-150x150.png'], [[250, 154], 'assets/images/resized/0036/7684/367684v1-max-250x250.png'], [[450, 277], 'assets/images/resized/0036/7684/367684v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529856a'), 'name': 'IBM', 'permalink': 'ibm', 'crunchbase_url': 'http://www.crunchbase.com/company/ibm', 'homepage_url': 'http://www.ibm.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'IBM', 'category_code': 'software', 'number_of_employees': 388000, 'founded_year': 1896, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'ews@us.ibm.com', 'phone_number': '914-499-1900', 'description': '', 'created_at': 'Fri Mar 14 22:55:52 UTC 2008', 'updated_at': 'Sat Jan 04 02:56:24 UTC 2014', 'overview': '

IBM, acronym for International Business Machines, is a multinational computer technology and consulting corporation. The company is one of the few information technology companies with a continuous history dating back to the 19th century. IBM manufactures and sells computer hardware and software, and offers infrastructure services, hosting services, and consulting services in areas ranging from mainframe computers to nanotechnology..

', 'image': {'available_sizes': [[[150, 60], 'assets/images/resized/0002/1370/21370v1-max-150x150.png'], [[170, 68], 'assets/images/resized/0002/1370/21370v1-max-250x250.png'], [[170, 68], 'assets/images/resized/0002/1370/21370v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Lotus Notes', 'permalink': 'lotus-notes'}, {'name': 'Lotus Sametime', 'permalink': 'lotus-sametime'}, {'name': 'Lotus Quickr', 'permalink': 'lotus-quickr'}, {'name': 'Lotus Connections', 'permalink': 'lotus-connections'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board of Directors', 'person': {'first_name': 'Virginia', 'last_name': 'M. Rometty', 'permalink': 'virginia-m-rometty'}}, {'is_past': False, 'title': 'President and CEO', 'person': {'first_name': 'Virginia', 'last_name': 'M. Rometty', 'permalink': 'virginia-m-rometty'}}, {'is_past': False, 'title': 'Chief Privacy Officer, IBM', 'person': {'first_name': 'Christina', 'last_name': 'Peters', 'permalink': 'christina-peters'}}, {'is_past': False, 'title': 'Vice President and CTO, Global Public Sector', 'person': {'first_name': 'Guruduth', 'last_name': 'Banavar', 'permalink': 'guruduth-banavar'}}, {'is_past': False, 'title': 'Chief Scientist of the IBM Entity Analytics group', 'person': {'first_name': 'Jeff', 'last_name': 'Jonas', 'permalink': 'jeff-jonas'}}, {'is_past': False, 'title': 'Senior VP and CFO', 'person': {'first_name': 'Mark', 'last_name': 'Loughridge', 'permalink': 'mark-loughridge'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'John', 'last_name': 'Blyzinskyj', 'permalink': 'john-blyzinskyj'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Donald', 'last_name': 'J. Rosenberg', 'permalink': 'donald-j-rosenberg'}}, {'is_past': False, 'title': 'Vice President of Services (Information Lifecycle Governance)', 'person': {'first_name': 'Ellis', 'last_name': 'Ishaya', 'permalink': 'ellis-ishaya'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'John', 'last_name': 'Lutsi', 'permalink': 'john-lutsi'}}, {'is_past': False, 'title': 'Vice President, Strategy and Product Management, IBM Security System', 'person': {'first_name': 'Marc', 'last_name': 'Van Zadelhoff', 'permalink': 'marc-van-zadelhoff'}}, {'is_past': False, 'title': 'Vice President, Exascale Systems', 'person': {'first_name': 'Dave', 'last_name': 'Turek', 'permalink': 'dave-turek'}}, {'is_past': False, 'title': 'IBM Global Energy & Utilities Industry , Vice President, Strategy and Development', 'person': {'first_name': 'Allan', 'last_name': 'Schurr', 'permalink': 'allan-schurr'}}, {'is_past': False, 'title': 'Vice President, Corporate Citizenship & Corporate Affairs and President, IBM International Foundation', 'person': {'first_name': 'Stanley', 'last_name': 'S. Litow', 'permalink': 'stanley-s-litow'}}, {'is_past': False, 'title': 'Senior Vice President, Application Management Services, IBM Global Business Services', 'person': {'first_name': 'Colleen', 'last_name': 'Arnold', 'permalink': 'colleen-arnold'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Global Business Services', 'person': {'first_name': 'Bridget', 'last_name': 'van Kralingen', 'permalink': 'bridget-van-kralingen'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Systems & Technology Group and IBM Integrated Supply Chain', 'person': {'first_name': 'Tom', 'last_name': 'Rosamilia', 'permalink': 'tom-rosamilia'}}, {'is_past': False, 'title': 'Senior Vice President and Group Executive - Software & Systems', 'person': {'first_name': 'Steven', 'last_name': 'A. Mills', 'permalink': 'steven-a-mills'}}, {'is_past': False, 'title': 'Senior Vice President, Marketing and Communications', 'person': {'first_name': 'Jon', 'last_name': 'C. Iwata', 'permalink': 'jon-c-iwata'}}, {'is_past': False, 'title': 'Senior Vice President, Sales and Distribution', 'person': {'first_name': 'Bruno', 'last_name': 'Di Leo', 'permalink': 'bruno-di-leo'}}, {'is_past': False, 'title': 'Senior Vice President, Corporate Strategy', 'person': {'first_name': 'Rodney', 'last_name': 'C. Adkins', 'permalink': 'rodney-c-adkins'}}, {'is_past': False, 'title': 'VP, Big Data Products', 'person': {'first_name': 'Anjul', 'last_name': 'Bhambhri', 'permalink': 'anjul-bhambhri'}}, {'is_past': False, 'title': 'Vice president of messaging and collaboration', 'person': {'first_name': 'Kevin', 'last_name': 'Cavanaugh', 'permalink': 'kevin-cavanaugh'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Abdul', 'last_name': 'J', 'permalink': 'abdul-jaleel-kk'}}, {'is_past': False, 'title': 'Research Staff Member', 'person': {'first_name': 'Qinghuang', 'last_name': 'Lin', 'permalink': 'qinghuang-lin'}}, {'is_past': False, 'title': 'System Administrator', 'person': {'first_name': 'Marcel', 'last_name': 'Figueiredo', 'permalink': 'marcel-figueiredo'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Marc', 'last_name': 'Baumbach', 'permalink': 'marc-baumbach'}}, {'is_past': False, 'title': 'IBM Venture Capital - Partner', 'person': {'first_name': 'Martin', 'last_name': 'Kelly', 'permalink': 'martin-kelly'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Lee', 'last_name': 'Hamrick', 'permalink': 'lee-hamrick'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Cordell', 'last_name': 'Carter, II', 'permalink': 'cordell-carter-ii'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Karandeep', 'last_name': 'Chawla', 'permalink': 'karandeep-chawla'}}, {'is_past': False, 'title': 'partnerships', 'person': {'first_name': 'Joseph', 'last_name': 'M. Sanda', 'permalink': 'joseph-m-sanda'}}, {'is_past': False, 'title': 'executive vice president', 'person': {'first_name': 'Lonnie', 'last_name': 'Smith', 'permalink': 'lonnie-smith'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Paul', 'last_name': 'Twombly', 'permalink': 'paul-twombly'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vincent', 'last_name': 'P. Melvin', 'permalink': 'vincent-p-melvin'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vince', 'last_name': 'Hunt', 'permalink': 'vince-hunt'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Global Technology Services', 'person': {'first_name': 'Erich', 'last_name': 'Clementi', 'permalink': 'erich-clementi'}}, {'is_past': False, 'title': 'Senior Vice President and Director of IBM Research', 'person': {'first_name': 'Dr.', 'last_name': 'John E. Kelly III', 'permalink': 'dr-john-e-kelly-iii'}}, {'is_past': False, 'title': 'Senior Vice President, IBM Software Solutions Group', 'person': {'first_name': 'Michael', 'last_name': 'D. Rhodin', 'permalink': 'michael-d-rhodin'}}, {'is_past': False, 'title': 'Senior Vice President, Legal and Regulatory Affairs, and General Counsel', 'person': {'first_name': 'Robert', 'last_name': 'C. Weber', 'permalink': 'robert-c-weber'}}, {'is_past': False, 'title': 'IBM Fellow & Vice President, Innovation', 'person': {'first_name': 'Bernard', 'last_name': 'S. Meyerson', 'permalink': 'bernard-s-meyerson'}}, {'is_past': False, 'title': 'Vice-President/Partner Global Energy and Utilities Leader, IBM Global Business Services', 'person': {'first_name': 'F.', 'last_name': 'Michael Valocchi', 'permalink': 'f-michael-valocchi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': False, 'title': 'Financial and Operational Roles', 'person': {'first_name': 'Paul', 'last_name': 'Nannetti', 'permalink': 'paul-nannetti'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Flávia', 'last_name': 'Melon', 'permalink': 'flvia-melon'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Greg', 'last_name': 'Jorgensen', 'permalink': 'greg-jorgensen'}}, {'is_past': False, 'title': 'Practice Manager', 'person': {'first_name': 'Brent', 'last_name': 'Rhymes', 'permalink': 'brent-rhymes'}}, {'is_past': False, 'title': 'General Manager of Business Analytics', 'person': {'first_name': 'Rob', 'last_name': 'Ashe', 'permalink': 'rob-ashe'}}, {'is_past': False, 'title': 'Finance Industry', 'person': {'first_name': 'Nick', 'last_name': 'Adamo', 'permalink': 'nick-adamo'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'James', 'last_name': 'Bryant', 'permalink': 'james-bryant-2'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': False, 'title': 'Distribution Channels Marketing Leader - NE, Europe', 'person': {'first_name': 'James', 'last_name': 'Hutchison', 'permalink': 'james-hutchison'}}, {'is_past': False, 'title': 'Director and Member of Audit Committee', 'person': {'first_name': 'James', 'last_name': 'W. Owens', 'permalink': 'james-w-owens'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Sally', 'last_name': 'Narodick', 'permalink': 'sally-narodick'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Babak', 'last_name': 'Forutanpour', 'permalink': 'babak-forutanpour'}}, {'is_past': False, 'title': 'Marketing and Operations', 'person': {'first_name': 'Don', 'last_name': 'Clifford', 'permalink': 'don-clifford'}}, {'is_past': False, 'title': 'Member of IBM’s Corporate Executive Committee', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': False, 'title': 'General Manager', 'person': {'first_name': 'Paula', 'last_name': 'L. Summa', 'permalink': 'paula-l-summa-2'}}, {'is_past': False, 'title': 'President - Asia Pacific', 'person': {'first_name': 'Fank', 'last_name': 'Kern', 'permalink': 'fank-kern'}}, {'is_past': False, 'title': 'Director, Market Management - IBM Mobile Enterprise', 'person': {'first_name': 'Ed', 'last_name': 'Brill', 'permalink': 'ed-brill'}}, {'is_past': False, 'title': 'Senior Consultant, IBM Global Services', 'person': {'first_name': 'Phil', 'last_name': 'Michaelson', 'permalink': 'phil-michaelson'}}, {'is_past': False, 'title': 'Strategy & Corporate Development', 'person': {'first_name': 'Vijay', 'last_name': 'Raghavendra', 'permalink': 'vijay-raghavendra'}}, {'is_past': False, 'title': 'Global Storage Efficiency Evangelist', 'person': {'first_name': 'Steve', 'last_name': 'Kenniston', 'permalink': 'steve-kenniston'}}, {'is_past': False, 'title': 'Architect Consultant', 'person': {'first_name': 'Nicolas', 'last_name': 'Gunther', 'permalink': 'nicols-gunther'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Bauman', 'permalink': 'brian-bauman'}}, {'is_past': False, 'title': 'Security Architect', 'person': {'first_name': 'Igor', 'last_name': 'Volovich', 'permalink': 'igor-volovich'}}, {'is_past': False, 'title': 'Smartcamp Mentor', 'person': {'first_name': 'Luis', 'last_name': 'Rivera Gurrea-Nozaleda', 'permalink': 'luis-rivera'}}, {'is_past': False, 'title': 'senior executive leadership', 'person': {'first_name': 'Steve', 'last_name': 'Shute', 'permalink': 'steve-shute'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Daniel', 'last_name': 'Leff', 'permalink': 'daniel-leff'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jeff', 'last_name': 'Jonas', 'permalink': 'jeff-jonas'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'Fiddis', 'permalink': 'richard-fiddis'}}, {'is_past': False, 'title': 'Senior Vice President, Human Resources', 'person': {'first_name': 'Diane', 'last_name': 'Gherson', 'permalink': 'diane-gherson'}}, {'is_past': False, 'title': 'Chairs Technology Team', 'person': {'first_name': 'Robert', 'last_name': 'J. LeBlanc', 'permalink': 'robert-j-leblanc'}}, {'is_past': False, 'title': 'Senior Vice President, Enterprise Transformation', 'person': {'first_name': 'Linda', 'last_name': 'S. Sanford', 'permalink': 'linda-s-sanford'}}, {'is_past': False, 'title': 'Vice President and Chief Information Officer', 'person': {'first_name': 'Jeanette', 'last_name': 'Horan', 'permalink': 'jeanette-horan'}}, {'is_past': False, 'title': 'Senior Vice President, Services Delivery, IBM Global Technology Services', 'person': {'first_name': 'Timothy', 'last_name': 'S. Shaughnessy', 'permalink': 'timothy-s-shaughnessy'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Charlie', 'last_name': 'Thomas', 'permalink': 'charlie-thomas'}}, {'is_past': False, 'title': 'Various Positions', 'person': {'first_name': 'Alex', 'last_name': 'Behfar', 'permalink': 'alex-behfar'}}, {'is_past': False, 'title': 'IBM Executive - Global Natural Resources Sector', 'person': {'first_name': 'Kadir', 'last_name': 'Koken', 'permalink': 'kadir-koken'}}, {'is_past': False, 'title': 'Software engineer', 'person': {'first_name': 'Michael', 'last_name': 'Lipton', 'permalink': 'michael-lipton'}}, {'is_past': False, 'title': 'Global Product Development', 'person': {'first_name': 'Yi-Ling', 'last_name': 'Chen', 'permalink': 'yi-ling-chen'}}, {'is_past': False, 'title': 'Partner / Vice-President', 'person': {'first_name': 'Michael', 'last_name': 'LaRoche', 'permalink': 'michael-laroche'}}, {'is_past': False, 'title': 'Corporate Technology Officer', 'person': {'first_name': 'John', 'last_name': 'Borkenhagen', 'permalink': 'john-borkenhagen'}}, {'is_past': False, 'title': 'STG - WW Sales Executive Leader; Real-time Compression', 'person': {'first_name': 'Roger', 'last_name': 'Cummings', 'permalink': 'roger-cummings'}}, {'is_past': False, 'title': 'Global Business Partner Strategy', 'person': {'first_name': 'Han', 'last_name': 'Sikkens', 'permalink': 'han-sikkens'}}, {'is_past': False, 'title': 'Senior Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': False, 'title': 'vice president', 'person': {'first_name': 'Stratton', 'last_name': 'Sclavos', 'permalink': 'stratton-sclavos-3'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Angel', 'last_name': 'Sansegundo', 'permalink': 'angel-sansegundo'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Praveen', 'last_name': 'Tailam', 'permalink': 'praveen-tailam'}}, {'is_past': False, 'title': 'Business Analyst', 'person': {'first_name': 'Christian', 'last_name': 'Fazzini', 'permalink': 'christian-fazzini'}}, {'is_past': False, 'title': 'Consulting IT Specialist', 'person': {'first_name': 'Marcos', 'last_name': 'Quezada', 'permalink': 'marcos-quezada'}}, {'is_past': False, 'title': 'General Manager - IBM INVESTMENTS, INC.', 'person': {'first_name': 'Paula', 'last_name': 'L. Summa', 'permalink': 'paula-l-summa'}}, {'is_past': True, 'title': 'Co - Founder / EVP / CTO (Watchmark Corp.)', 'person': {'first_name': 'Richard', 'last_name': 'Kateley', 'permalink': 'richard-kateley'}}, {'is_past': True, 'title': 'CEO, Lombardi', 'person': {'first_name': 'Rod', 'last_name': 'Favaron', 'permalink': 'rod-favaron'}}, {'is_past': True, 'title': 'Chairman, President and Chief Executive Officer', 'person': {'first_name': 'Samuel', 'last_name': 'J. Palmisano', 'permalink': 'samuel-j-palmisano'}}, {'is_past': True, 'title': 'President / COO', 'person': {'first_name': 'Charles', 'last_name': 'A. Haggerty', 'permalink': 'charles-a-haggerty'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Kris', 'last_name': 'Lamb', 'permalink': 'kris-lamb'}}, {'is_past': True, 'title': 'CSO, IBM Smarter Commerce / Executive, Digital Marketing & Analytics', 'person': {'first_name': 'John', 'last_name': 'Squire', 'permalink': 'john-squire'}}, {'is_past': True, 'title': 'CTO and Business Development Manager, Israel and EMEA', 'person': {'first_name': 'Jacob', 'last_name': 'Ukelson', 'permalink': 'jacob-ukelson'}}, {'is_past': True, 'title': 'Business Consulting Leader, CFO, VP , Operations', 'person': {'first_name': 'Udi', 'last_name': 'Dagan', 'permalink': 'udi-dagan'}}, {'is_past': True, 'title': 'Chief Architect (File Systems)', 'person': {'first_name': 'Michael', 'last_name': 'Kazar', 'permalink': 'michael-kazar'}}, {'is_past': True, 'title': 'Chief Financial Officer and Vice President of Finance', 'person': {'first_name': 'Bob', 'last_name': 'Calderoni', 'permalink': 'bob-calderoni'}}, {'is_past': True, 'title': 'VP / CFO / Controller', 'person': {'first_name': 'Frank', 'last_name': 'Calderoni', 'permalink': 'frank-calderoni'}}, {'is_past': True, 'title': 'Chief NT Architect of File Systems Group', 'person': {'first_name': 'Jonathan', 'last_name': 'Goldick', 'permalink': 'jonathan-goldick'}}, {'is_past': True, 'title': 'Chief Strategy Officer, IBM System & Technology Group, NEIOT, IBM Zurich', 'person': {'first_name': 'Mark', 'last_name': 'Vargo', 'permalink': 'mark-vargo'}}, {'is_past': True, 'title': 'Chief Architect, Rational Team Concert', 'person': {'first_name': 'Jean-Michel', 'last_name': 'Lemieux', 'permalink': 'jean-michel-lemieux'}}, {'is_past': True, 'title': 'IBM Fellow, VP & CTO, Information Mgmt', 'person': {'first_name': 'Anant', 'last_name': 'Jhingran', 'permalink': 'anant-jhingran'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Douglas', 'last_name': 'L. Maine', 'permalink': 'douglas-l-maine'}}, {'is_past': True, 'title': 'COO, Educational Division', 'person': {'first_name': 'Tim', 'last_name': 'Harrington', 'permalink': 'tim-harrington'}}, {'is_past': True, 'title': 'Chief Strategist, Identity Management', 'person': {'first_name': 'Jeff', 'last_name': 'Curie', 'permalink': 'jeff-curie'}}, {'is_past': True, 'title': 'Vice President, Assistant General Counsel and Secretary', 'person': {'first_name': 'Andrew', 'last_name': 'Bonzani', 'permalink': 'andrew-bonzani'}}, {'is_past': True, 'title': 'VP / GM - Public Sector Hadoop', 'person': {'first_name': 'Shawn', 'last_name': 'Dolley', 'permalink': 'shawn-dolley'}}, {'is_past': True, 'title': 'VP / GM - EMEA', 'person': {'first_name': 'Guillaume', 'last_name': \"d'Eyssautier\", 'permalink': 'guillaume-deyssautier'}}, {'is_past': True, 'title': 'Vice President of the North American', 'person': {'first_name': 'Kelly', 'last_name': 'Gay', 'permalink': 'kelly-gay'}}, {'is_past': True, 'title': 'Vice President, Storage Systems Sales, Americas', 'person': {'first_name': 'Carlos', 'last_name': 'M. Carreras', 'permalink': 'carlos-m-carreras'}}, {'is_past': True, 'title': 'Director of Business Development and Strategy, and VP Business Development', 'person': {'first_name': 'Karl', 'last_name': 'Doyle', 'permalink': 'karl-doyle'}}, {'is_past': True, 'title': 'Senior Exe. / VP roles', 'person': {'first_name': 'Brian', 'last_name': 'McBride', 'permalink': 'brian-mcbride'}}, {'is_past': True, 'title': 'Vice President, Finance, Software Group, Assistant Controller, Vice President, Financial Planning, Asia Pacific, Director of Finance, IBM Software Solutions, Program Director, IBM Corporate Headquarters, Financial Consolidation Manager, IBM Global Service', 'person': {'first_name': 'Charles', 'last_name': 'Neral', 'permalink': 'charles-neral'}}, {'is_past': True, 'title': 'Strategy Consultant, Executive Assistant to VP', 'person': {'first_name': 'Christian', 'last_name': 'Thrane', 'permalink': 'christian-thrane'}}, {'is_past': True, 'title': 'VP Tivoli/netcool, Dir Tivoli BA', 'person': {'first_name': 'Tom', 'last_name': 'Axbey', 'permalink': 'tom-axbey'}}, {'is_past': True, 'title': 'VP Product Strategy, ECM Group, IM', 'person': {'first_name': 'David', 'last_name': 'McCann', 'permalink': 'david-mccann-2'}}, {'is_past': True, 'title': 'VP - Global Marketing & Industry Strategy', 'person': {'first_name': 'Robert', 'last_name': 'Shecterle', 'permalink': 'robert-shecterle'}}, {'is_past': True, 'title': 'VP & GM , Worldwide Marketing and Brand Management', 'person': {'first_name': 'Dave', 'last_name': 'Andonian', 'permalink': 'dave-andonian'}}, {'is_past': True, 'title': 'VP EMEA Business Analytics', 'person': {'first_name': 'Ad', 'last_name': 'Voogt', 'permalink': 'ad-voogt'}}, {'is_past': True, 'title': 'VP, Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Zisman', 'permalink': 'mike-zisman'}}, {'is_past': True, 'title': 'VP Research', 'person': {'first_name': 'Andre', 'last_name': 'Boysen', 'permalink': 'andre-boysen'}}, {'is_past': True, 'title': 'Vice President, Finance IBM Software Group', 'person': {'first_name': 'George', 'last_name': 'W. Harrington', 'permalink': 'george-w-harrington'}}, {'is_past': True, 'title': 'VP and Various Executive Positions', 'person': {'first_name': 'John', 'last_name': 'W. Thompson', 'permalink': 'john-w-thompson'}}, {'is_past': True, 'title': 'VP-GBS Federal', 'person': {'first_name': 'Dane', 'last_name': 'Coyer', 'permalink': 'dane-coyer'}}, {'is_past': True, 'title': 'VP Entity Analytic Systems,, VP EAS,,', 'person': {'first_name': 'John', 'last_name': 'Slitz', 'permalink': 'john-slitz'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Ward', 'permalink': 'stephen-ward'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Arun', 'last_name': 'Oberoi', 'permalink': 'arun-oberoi'}}, {'is_past': True, 'title': 'Vice President, Software Group, Vice President, Storage Technology Division, Vice President, Americas Sales', 'person': {'first_name': 'Greg', 'last_name': 'Enriquez', 'permalink': 'greg-enriquez'}}, {'is_past': True, 'title': 'Vice President of Plans, Controls and Product Management, General Products Division', 'person': {'first_name': 'Dick', 'last_name': 'Williams', 'permalink': 'dick-williams'}}, {'is_past': True, 'title': 'VP, Corporate Strategy', 'person': {'first_name': 'Anil', 'last_name': 'Menon', 'permalink': 'anil-menon'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Steven', 'last_name': 'M. Cooker', 'permalink': 'steven-m-cooker'}}, {'is_past': True, 'title': 'VP, Business Intelligence', 'person': {'first_name': 'Evangelos', 'last_name': 'Simoudis', 'permalink': 'evangelos-simoudis'}}, {'is_past': True, 'title': 'Vice President, CRM Product Group', 'person': {'first_name': 'Scott', 'last_name': 'McCorkle', 'permalink': 'scott-mccorkle'}}, {'is_past': True, 'title': 'Senior VP & GM United States', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': True, 'title': 'Vice President and General Manager for Tivoli Systems Division', 'person': {'first_name': 'Maurizio', 'last_name': 'Carli', 'permalink': 'maurizio-carli'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Chet', 'last_name': 'Kapoor', 'permalink': 'chet-kapoor'}}, {'is_past': True, 'title': 'Vice President, Financial Planning', 'person': {'first_name': 'J.D.', 'last_name': 'Sherman', 'permalink': 'j-d-sherman'}}, {'is_past': True, 'title': 'Partner/ Vice President', 'person': {'first_name': 'Bill', 'last_name': 'Diffenderffer', 'permalink': 'bill-diffenderffer'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Jim', 'last_name': 'Steele', 'permalink': 'jim-steele'}}, {'is_past': True, 'title': 'Vice President, Information Management Solutions', 'person': {'first_name': 'Tom', 'last_name': 'Reilly', 'permalink': 'tom-reilly'}}, {'is_past': True, 'title': 'Vice President of Internet Technology', 'person': {'first_name': 'John', 'last_name': 'R. Patrick', 'permalink': 'john-r-patrick'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Rich', 'last_name': 'Fennessy', 'permalink': 'rich-fennessy'}}, {'is_past': True, 'title': 'VP - IBM Sales Model', 'person': {'first_name': 'Dan', 'last_name': 'Bennewitz', 'permalink': 'dan-bennewitz'}}, {'is_past': True, 'title': 'Vice President and Corporate Officer,Vice President and General Manager for Marketing and Services, Numerous Leadership Positions', 'person': {'first_name': 'William', 'last_name': 'O.Grabe', 'permalink': 'william-o-grabe'}}, {'is_past': True, 'title': 'Vice President and Business Unit General Manager', 'person': {'first_name': 'Jim', 'last_name': 'Ricotta', 'permalink': 'jim-ricotta'}}, {'is_past': True, 'title': 'VP, Software', 'person': {'first_name': 'Paul', 'last_name': 'Gigg', 'permalink': 'paul-gigg'}}, {'is_past': True, 'title': 'VP WW R&D Business Analytics & Applications', 'person': {'first_name': 'Peter', 'last_name': 'JL Griffiths', 'permalink': 'peter-jl-griffiths'}}, {'is_past': True, 'title': 'Division Vice President,Regional Manager, Southeast', 'person': {'first_name': 'Michael', 'last_name': 'Forster', 'permalink': 'michael-forster'}}, {'is_past': True, 'title': 'VP of Semiconductor', 'person': {'first_name': 'Tom', 'last_name': 'Caulfield', 'permalink': 'tom-caulfield'}}, {'is_past': True, 'title': 'Vice President Blade and Modular Systems Development', 'person': {'first_name': 'Jeff', 'last_name': 'Benck', 'permalink': 'jeff-benck-2'}}, {'is_past': True, 'title': 'VP Marketing & Operations eServer', 'person': {'first_name': 'Kim', 'last_name': 'Stevenson', 'permalink': 'kim-stevenson'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'jon', 'last_name': 'griffin', 'permalink': 'jon-griffin'}}, {'is_past': True, 'title': 'VP Content Discovery', 'person': {'first_name': 'Stuart', 'last_name': 'Levinson', 'permalink': 'stuart-levinson'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Papermaster', 'permalink': 'mark-papermaster'}}, {'is_past': True, 'title': 'Vice President, Distribution Sector, Americas', 'person': {'first_name': 'Gerri', 'last_name': 'Elliott', 'permalink': 'gerri-elliott'}}, {'is_past': True, 'title': 'Executive VP Innovation and Technology', 'person': {'first_name': 'Nick', 'last_name': 'Donofrio', 'permalink': 'nick-donofrio'}}, {'is_past': True, 'title': 'Developer of processor targeting 3G handsets', 'person': {'first_name': 'Olivier', 'last_name': 'Schuepbach', 'permalink': 'olivier-schuepbach'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Igor', 'last_name': 'Jablokov', 'permalink': 'igor-jablokov'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Toby', 'last_name': 'Beresford', 'permalink': 'toby-beresford'}}, {'is_past': True, 'title': 'President - Canada', 'person': {'first_name': 'Dan', 'last_name': 'Fortin', 'permalink': 'dan-fortin'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Abhishek', 'last_name': 'Jain', 'permalink': 'abhishek-jain'}}, {'is_past': True, 'title': 'Engineer, Consulting Principal, Sales School', 'person': {'first_name': 'Amir', 'last_name': 'Nathoo', 'permalink': 'amir-nathoo'}}, {'is_past': True, 'title': 'Manager, Commercial Major Accounts', 'person': {'first_name': 'Ean', 'last_name': 'Jackson', 'permalink': 'ean-jackson'}}, {'is_past': True, 'title': 'R&D Engineer', 'person': {'first_name': 'Jaroslav', 'last_name': 'Gergic', 'permalink': 'jaroslav-gergic'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Ali Rıza', 'last_name': 'BabaoÄŸlan', 'permalink': 'ali-rza-babaolan'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Jim', 'last_name': 'Caruso', 'permalink': 'james-caruso'}}, {'is_past': True, 'title': 'Extreme Blue Technical Intern', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brent', 'last_name': 'Metz', 'permalink': 'brent-metz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Warren', 'permalink': 'tom-warren'}}, {'is_past': True, 'title': 'Researcher & Programmer', 'person': {'first_name': 'Boaz', 'last_name': 'Binnun', 'permalink': 'boaz-binnun'}}, {'is_past': True, 'title': 'Global Program Manager, Business Partner Process Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Program Director / Program Manager, IBM Academy of Technology', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Mergers and Acquisitions', 'person': {'first_name': 'Seth', 'last_name': 'Sternberg', 'permalink': 'seth-sternberg'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Rasmus', 'last_name': 'Lerdorf', 'permalink': 'rasmus-lerdorf'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joe', 'last_name': 'Davy', 'permalink': 'joe-davy'}}, {'is_past': True, 'title': 'R&D Manager', 'person': {'first_name': 'Lior', 'last_name': 'Sion', 'permalink': 'lior-sion'}}, {'is_past': True, 'title': 'Privacy Strategist', 'person': {'first_name': 'John', 'last_name': 'Bliss', 'permalink': 'john-bliss'}}, {'is_past': True, 'title': 'Director Software Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Maples, Sr.', 'permalink': 'mike-maples-sr'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Jack', 'last_name': 'Chapin', 'permalink': 'jack-chapin'}}, {'is_past': True, 'title': 'Senior Advisory Systems Programmer', 'person': {'first_name': 'Fred', 'last_name': 'Kauber', 'permalink': 'fred-kauber'}}, {'is_past': True, 'title': 'Advisory Client Representative', 'person': {'first_name': 'Benjamin', 'last_name': 'Joe', 'permalink': 'benjamin-joe'}}, {'is_past': True, 'title': 'Principal Consultant', 'person': {'first_name': 'Barrett', 'last_name': 'Powell', 'permalink': 'barrett-powell'}}, {'is_past': True, 'title': 'Information Developer', 'person': {'first_name': 'Chris', 'last_name': 'Fohlin', 'permalink': 'chris-fohlin'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Basit', 'last_name': 'Mustafa', 'permalink': 'basit-mustafa'}}, {'is_past': True, 'title': 'Interaction Designer / Design Researcher', 'person': {'first_name': 'Chad', 'last_name': 'Thornton', 'permalink': 'chad-thornton'}}, {'is_past': True, 'title': 'Director, Security and Cloud Products', 'person': {'first_name': 'Michael', 'last_name': 'Weider', 'permalink': 'michael-weider'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Charlie', 'last_name': 'Wood', 'permalink': 'charlie-wood'}}, {'is_past': True, 'title': 'Advisory Client Representative', 'person': {'first_name': 'Brian', 'last_name': 'Snyder', 'permalink': 'brian-snyder'}}, {'is_past': True, 'title': 'Director, Wireless Services', 'person': {'first_name': 'Diana', 'last_name': 'Hage', 'permalink': 'diana-hage'}}, {'is_past': True, 'title': 'Enterprise Sales and AIX Business Development', 'person': {'first_name': 'Gamiel', 'last_name': 'Gran', 'permalink': 'gamiel-gran'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Reza', 'last_name': 'Jalili', 'permalink': 'reza-jalili'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Jim', 'last_name': 'McGovern', 'permalink': 'jim-mcgovern'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dwai', 'last_name': 'Banerjee', 'permalink': 'dwai-banerjee'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': \"Kanwaldeep 'KD Singh\", 'last_name': 'Arneja', 'permalink': 'kanwaldeep-kd-singh-arneja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Gibbs', 'permalink': 'kevin-gibbs'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Ariel', 'last_name': 'Cohen', 'permalink': 'ariel-cohen-2'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Steve', 'last_name': 'Drozdowski', 'permalink': 'steve-drozdowski'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Harishankaran', 'last_name': 'Karunanidhi', 'permalink': 'harishankaran-karunanidhi'}}, {'is_past': True, 'title': 'Project Mgr.', 'person': {'first_name': 'Winston', 'last_name': 'Mendoza', 'permalink': 'winston-mendoza'}}, {'is_past': True, 'title': 'Enterprise Software Sales', 'person': {'first_name': 'Elias', 'last_name': 'Guerra', 'permalink': 'elias-guerra'}}, {'is_past': True, 'title': 'Client Representative', 'person': {'first_name': 'Clifford', 'last_name': 'Holekamp', 'permalink': 'cliff-holekamp'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Vincent', 'last_name': 'Lee', 'permalink': 'vincent-lee'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Forest', 'last_name': 'Bond', 'permalink': 'forest-bond'}}, {'is_past': True, 'title': 'marketing roles', 'person': {'first_name': 'Angela', 'last_name': 'Strand', 'permalink': 'angela-strand'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Howard', 'last_name': 'Durdle', 'permalink': 'howard-durdle'}}, {'is_past': True, 'title': 'Technical Project Manager', 'person': {'first_name': 'Martin', 'last_name': 'Jennings', 'permalink': 'martin-jennings'}}, {'is_past': True, 'title': 'Channel Sales Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Voller', 'permalink': 'stephen-voller'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Shawn', 'last_name': 'R. Hughes', 'permalink': 'shawn-r-hughes'}}, {'is_past': True, 'title': 'Scalable POWERParallel Systems Consultant', 'person': {'first_name': 'Uday', 'last_name': 'chinta', 'permalink': 'uday-chinta'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Terry', 'last_name': 'Walby', 'permalink': 'terry-walby'}}, {'is_past': True, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Dr.', 'last_name': 'Orna Berry', 'permalink': 'dr-orna-berry'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Ali', 'last_name': 'Ahmed', 'permalink': 'ali-ahmed'}}, {'is_past': True, 'title': 'Client Services Partner, Communication Sector', 'person': {'first_name': 'Shahid', 'last_name': 'Khan', 'permalink': 'shahid-khan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Martin', 'last_name': 'Milani', 'permalink': 'martin-milani'}}, {'is_past': True, 'title': 'Attorney', 'person': {'first_name': 'Barbara', 'last_name': 'Walkowski', 'permalink': 'barbara-walkowashi'}}, {'is_past': True, 'title': 'Special Bids Pricer, IBM Federal', 'person': {'first_name': 'Joel', 'last_name': 'Pulliam', 'permalink': 'joel-pulliam'}}, {'is_past': True, 'title': 'Analyst / Intern', 'person': {'first_name': 'Stephen', 'last_name': 'Bernstein', 'permalink': 'stephen-bernstein'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Smith', 'permalink': 'jeff-smith'}}, {'is_past': True, 'title': 'advisor', 'person': {'first_name': 'Ronald', 'last_name': 'F.E. Weissman', 'permalink': 'ronald-f-e-weissman'}}, {'is_past': True, 'title': 'Director Phonemail and PBX Development', 'person': {'first_name': 'Tim', 'last_name': 'Kleffman', 'permalink': 'tim-kleffman'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'William', 'last_name': 'L. Hughes', 'permalink': 'william-l-hughes'}}, {'is_past': True, 'title': 'various legal positions', 'person': {'first_name': 'Amy', 'last_name': 'Fliegelman Olli', 'permalink': 'amy-fliegelman-olli'}}, {'is_past': True, 'title': 'Major role', 'person': {'first_name': 'Dennis', 'last_name': 'Roberson', 'permalink': 'dennis-roberson'}}, {'is_past': True, 'title': 'Principal Consultant', 'person': {'first_name': 'Clayton', 'last_name': 'Nicholas', 'permalink': 'clayton-nicholas'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'James', 'last_name': 'Gosling', 'permalink': 'james-gosling-2'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Eric', 'last_name': 'Schurr', 'permalink': 'eric-schurr'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Bo', 'last_name': 'Yang', 'permalink': 'bo-yang'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Peter', 'last_name': 'Chang', 'permalink': 'peter-chang'}}, {'is_past': True, 'title': 'Program Director, Security', 'person': {'first_name': 'Alex', 'last_name': 'Lazar', 'permalink': 'alex-lazar'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Mark', 'last_name': 'Hill', 'permalink': 'mark-hill'}}, {'is_past': True, 'title': 'Distinguished Engineer / Senior IT Architect', 'person': {'first_name': 'Luis', 'last_name': 'Ostdiek', 'permalink': 'luis-ostdiek'}}, {'is_past': True, 'title': 'Plant Manager', 'person': {'first_name': 'Karl', 'last_name': 'Steigele', 'permalink': 'karl-steigele'}}, {'is_past': True, 'title': 'Director, e-Commerce Solutions', 'person': {'first_name': 'Neil', 'last_name': 'Lustig', 'permalink': 'neil-lustig'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Keith', 'last_name': 'Barraclough', 'permalink': 'keith-barraclough'}}, {'is_past': True, 'title': 'Senior Programmer / Team Lead', 'person': {'first_name': 'Dav', 'last_name': 'Yaginuma', 'permalink': 'dav-yaginuma'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Patrick', 'last_name': 'Ervin', 'permalink': 'patrick-ervin'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Jeff', 'last_name': 'Feinstein', 'permalink': 'jeff-feinstein'}}, {'is_past': True, 'title': 'Senior Research Staff Member Manager', 'person': {'first_name': 'Cliff', 'last_name': 'Meltzer', 'permalink': 'cliff-meltzer'}}, {'is_past': True, 'title': 'Manager, Supply Chain Reengineering', 'person': {'first_name': 'RJ', 'last_name': 'Brideau', 'permalink': 'rj-brideau'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Mike', 'last_name': 'Aquino', 'permalink': 'mike-aquino'}}, {'is_past': True, 'title': 'Senior Manager, Business Operations & Development, IBM SWG', 'person': {'first_name': 'Claudia', 'last_name': 'Franco', 'permalink': 'claudia-franco'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Starr', 'permalink': 'brian-starr'}}, {'is_past': True, 'title': 'Development', 'person': {'first_name': 'George', 'last_name': 'Smyth ( Business Intelligence & Analytics )', 'permalink': 'george-smyth-business-intelligence-analytics'}}, {'is_past': True, 'title': 'IBM Alliance Manager', 'person': {'first_name': 'Michael', 'last_name': 'Warkentin ( Storage, Network & Compliance)', 'permalink': 'michael-warkentin-storage-network-compliance'}}, {'is_past': True, 'title': 'Product Requirements Manager', 'person': {'first_name': 'Vinnie', 'last_name': 'Smith ( Database Server & Tools )', 'permalink': 'vinnie-smith-database-server-tools'}}, {'is_past': True, 'title': 'Change Management Analyst', 'person': {'first_name': 'Jason', 'last_name': 'McGinnis', 'permalink': 'jason-mcginnis'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Jeff', 'last_name': 'Spalding', 'permalink': 'jeff-spalding'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Young', 'permalink': 'andrew-young-2'}}, {'is_past': True, 'title': 'Design Engineer', 'person': {'first_name': 'Coby', 'last_name': 'Sella', 'permalink': 'coby-sella'}}, {'is_past': True, 'title': 'sales management', 'person': {'first_name': 'Lewis', 'last_name': 'Miller', 'permalink': 'lewis-miller'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Constantine', 'last_name': 'Korovkin', 'permalink': 'constantine-korovkin'}}, {'is_past': True, 'title': 'Executive Consultant', 'person': {'first_name': 'Jim', 'last_name': 'Mains', 'permalink': 'jim-mains'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Robert', 'last_name': 'Lundy', 'permalink': 'robert-lundy'}}, {'is_past': True, 'title': 'Systems Architect', 'person': {'first_name': 'Christopher', 'last_name': 'Drumgoole', 'permalink': 'christopher-drumgoole'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'Liebhaber', 'permalink': 'richard-liebhaber'}}, {'is_past': True, 'title': 'Sales & Technical positions', 'person': {'first_name': 'Peter', 'last_name': 'Gyenes', 'permalink': 'peter-gyenes'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Donald', 'last_name': 'Southard', 'permalink': 'donald-southard'}}, {'is_past': True, 'title': 'Client Manager', 'person': {'first_name': 'James', 'last_name': 'Hidlay', 'permalink': 'james-hidlay'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Harper', 'permalink': 'mike-harper'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Kishore', 'last_name': 'Ganji', 'permalink': 'kishore-ganji'}}, {'is_past': True, 'title': 'Various Management Positions Product and Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Loughridge', 'permalink': 'mark-loughridge'}}, {'is_past': True, 'title': 'Director of Tools development and Partner Enablement', 'person': {'first_name': 'Anjul', 'last_name': 'Bhambhri', 'permalink': 'anjul-bhambhri'}}, {'is_past': True, 'title': 'Developer at Global Business Solution Center', 'person': {'first_name': 'Abhishek', 'last_name': 'Jain', 'permalink': 'abhishek-jain'}}, {'is_past': True, 'title': 'Senior Product Manager / Program Manager - Lotus SmartSuite', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Louay', 'last_name': 'Eldada', 'permalink': 'louay-eldada'}}, {'is_past': True, 'title': 'Senior Manager, Media/Digital media', 'person': {'first_name': 'George', 'last_name': 'Gutierrez', 'permalink': 'george-gutierrez'}}, {'is_past': True, 'title': 'Associate Developer', 'person': {'first_name': 'Danielle', 'last_name': 'Royston', 'permalink': 'danielle-royston'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Judy', 'last_name': 'Keeley', 'permalink': 'judy-keeley'}}, {'is_past': True, 'title': 'R&D', 'person': {'first_name': 'Steve', 'last_name': 'Fredrick', 'permalink': 'steve-fredrick'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'James', 'last_name': 'Satloff', 'permalink': 'james-satloff'}}, {'is_past': True, 'title': 'Red Hat On-Site Developer', 'person': {'first_name': 'Dustin', 'last_name': 'Kirkland', 'permalink': 'dustin-kirkland'}}, {'is_past': True, 'title': 'Sales/Marketing Representative', 'person': {'first_name': 'Lory', 'last_name': 'Pilchik', 'permalink': 'lory-pilchik'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'AA & Branch Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Hickey', 'permalink': 'kevin-hickey'}}, {'is_past': True, 'title': 'Applications Engineer', 'person': {'first_name': 'Alper', 'last_name': 'Celen', 'permalink': 'alper-celen'}}, {'is_past': True, 'title': 'Enterprise Mobile Solutions Architect', 'person': {'first_name': 'George', 'last_name': 'Papayiannis', 'permalink': 'george-papayiannis'}}, {'is_past': True, 'title': 'Y2K Expert', 'person': {'first_name': 'Greg', 'last_name': 'Caws', 'permalink': 'greg-caws'}}, {'is_past': True, 'title': 'GM Communications Sector', 'person': {'first_name': 'Khalil', 'last_name': 'E. Barsoum', 'permalink': 'khalil-e-barsoum'}}, {'is_past': True, 'title': 'Research Internship', 'person': {'first_name': 'Rusty', 'last_name': 'Irving', 'permalink': 'rusty-irving'}}, {'is_past': True, 'title': 'Knowledge Management consultant', 'person': {'first_name': 'Bjørn', 'last_name': 'Skou Eilertsen', 'permalink': 'bjrn-skou-eilertsen'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Mikel', 'last_name': 'Cármenes Cavia', 'permalink': 'mikel-carmenes-cavia'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dean', 'last_name': 'Schoen', 'permalink': 'dean-schoen'}}, {'is_past': True, 'title': 'Sales & Marketing Management - Asia Pacific', 'person': {'first_name': 'Dominic', 'last_name': 'Toledo', 'permalink': 'dominic-toledo'}}, {'is_past': True, 'title': 'Business Development & Market Development Executive', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': True, 'title': 'Operations & Engineering Roles', 'person': {'first_name': 'Jeffrey', 'last_name': 'E. Williams', 'permalink': 'jeffrey-e-williams'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Craig', 'last_name': 'Newmark', 'permalink': 'craig-newmark'}}, {'is_past': True, 'title': 'Consulting I/T Architect', 'person': {'first_name': 'Gregory', 'last_name': 'Brail', 'permalink': 'gregory-brail'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Cory', 'last_name': 'Lund', 'permalink': 'cory-lund'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Harlan', 'last_name': 'Milkove', 'permalink': 'harlan-milkove'}}, {'is_past': True, 'title': 'Account Marketing Representative, US Marketing and Services Group', 'person': {'first_name': 'Bill', 'last_name': 'Demas', 'permalink': 'bill-demas'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Saad', 'last_name': 'Khan', 'permalink': 'saad-khan'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Andrew', 'last_name': 'Dutton', 'permalink': 'andrew-dutton'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'George', 'last_name': 'Kadifa', 'permalink': 'george-kadifa'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Director Industry Solutions', 'person': {'first_name': 'Alex', 'last_name': 'Shootman', 'permalink': 'alex-shootman'}}, {'is_past': True, 'title': 'Industrial Engineer', 'person': {'first_name': 'Mitch', 'last_name': 'Kushinsky', 'permalink': 'mitch-kushinsky'}}, {'is_past': True, 'title': 'Sr. Technical Writer & Marketing Communications', 'person': {'first_name': 'Joyce', 'last_name': 'Fee', 'permalink': 'joyce-fee'}}, {'is_past': True, 'title': 'Global Technology Services Integration Sales Leader', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'Consultant and IT Architect', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'ILOG US Controller', 'person': {'first_name': 'Jean', 'last_name': 'Francois Hervy', 'permalink': 'jean-francois-hervy'}}, {'is_past': True, 'title': 'Faculty Visitor', 'person': {'first_name': 'Pankaj', 'last_name': 'Mehra', 'permalink': 'pankaj-mehra'}}, {'is_past': True, 'title': 'Americas Solutions Leader, Media & Entertainment Industry', 'person': {'first_name': 'Douglas', 'last_name': 'Korte', 'permalink': 'douglas-korte'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Wilkes', 'permalink': 'alex-wilkes'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Scott', 'last_name': 'Friend', 'permalink': 'scott-friend'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Bill', 'last_name': 'Crawley', 'permalink': 'bill-crawley'}}, {'is_past': True, 'title': 'Staff Counsel', 'person': {'first_name': 'Ellen', 'last_name': 'McDonald', 'permalink': 'ellen-mcdonald'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alicia', 'last_name': 'Navarro', 'permalink': 'alicia-navarro'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Joanne', 'last_name': 'Olsen', 'permalink': 'joanne-olsen'}}, {'is_past': True, 'title': 'Scientific & Technical Computing Specialist', 'person': {'first_name': 'Kurt', 'last_name': 'Stammberger', 'permalink': 'kurt-stammberger'}}, {'is_past': True, 'title': 'Sales Management', 'person': {'first_name': 'Jim', 'last_name': 'Ebzery', 'permalink': 'jim-ebzery'}}, {'is_past': True, 'title': 'Sales & Marketing Director', 'person': {'first_name': 'Garry', 'last_name': 'Veale', 'permalink': 'garry-veale'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Lisa', 'last_name': 'Purvis', 'permalink': 'lisa-purvis'}}, {'is_past': True, 'title': 'Freelance Software Developer', 'person': {'first_name': 'Matt', 'last_name': 'Deegler', 'permalink': 'matt-deegler'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Rohan', 'last_name': 'Shah', 'permalink': 'rohan-shah'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Richard', 'last_name': 'Fields', 'permalink': 'richard-fields'}}, {'is_past': True, 'title': 'Extreme Blue Intern', 'person': {'first_name': 'Leonard', 'last_name': 'Chung', 'permalink': 'leonard-chung'}}, {'is_past': True, 'title': 'Lead Sales and Product Marketing Roles', 'person': {'first_name': 'Cristina', 'last_name': 'Dolan', 'permalink': 'cristina-dolan'}}, {'is_past': True, 'title': 'Brand Manager, Tivoli Software', 'person': {'first_name': 'Juan Pablo', 'last_name': 'Bedoya', 'permalink': 'juan-pablo-bedoya'}}, {'is_past': True, 'title': 'Contracts & Negotiations Specialist', 'person': {'first_name': 'Scott', 'last_name': 'Alridge', 'permalink': 'scott-alridge'}}, {'is_past': True, 'title': 'Netezza Channel Sales Mgr, Mid-Atlantic Region', 'person': {'first_name': 'Mickey', 'last_name': 'James', 'permalink': 'mickey-james'}}, {'is_past': True, 'title': 'IT Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Leu', 'permalink': 'jason-leu'}}, {'is_past': True, 'title': 'Various Sales & Management Roles', 'person': {'first_name': 'Nicholas', 'last_name': 'A. Adamo', 'permalink': 'nicholas-a-adamo'}}, {'is_past': True, 'title': 'SAP IS-U Consultant', 'person': {'first_name': 'Sean', 'last_name': 'Antony', 'permalink': 'sean-antony'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Reza', 'last_name': 'Raji', 'permalink': 'reza-raji'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Patrick', 'last_name': 'Finn', 'permalink': 'patrick-finn'}}, {'is_past': True, 'title': 'financial planning and analysis', 'person': {'first_name': 'Keli', 'last_name': 'Forsman', 'permalink': 'keli-forsman'}}, {'is_past': True, 'title': 'Sales Positions', 'person': {'first_name': 'Susan', 'last_name': 'Chenoweth', 'permalink': 'susan-chenoweth'}}, {'is_past': True, 'title': 'Manager, Engineering', 'person': {'first_name': 'M.C.', 'last_name': 'Srivas', 'permalink': 'm-c-srivas'}}, {'is_past': True, 'title': 'Various Technical & Leadership Positions', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'Sales Management Positions', 'person': {'first_name': 'Woody', 'last_name': 'Sessoms', 'permalink': 'woody-sessoms'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Peter', 'last_name': 'Gassner', 'permalink': 'peter-gassner'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Dan', 'last_name': 'Goldsmith', 'permalink': 'dan-goldsmith'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Tao', 'permalink': 'simon-tao'}}, {'is_past': True, 'title': 'Manager, Network Consulting & integration unit', 'person': {'first_name': 'Daniel', 'last_name': 'Hua', 'permalink': 'daniel-hua'}}, {'is_past': True, 'title': 'Responsible for Logistics, Internship', 'person': {'first_name': 'David', 'last_name': 'Marimon', 'permalink': 'david-marimon'}}, {'is_past': True, 'title': 'Executive Marketing Positons', 'person': {'first_name': 'Lauren', 'last_name': 'Flaherty', 'permalink': 'lauren-flaherty'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'K.', 'last_name': 'Scott Morrison', 'permalink': 'k-scott-morrison'}}, {'is_past': True, 'title': 'Sales GM for IGS China,IBM', 'person': {'first_name': 'Jerry', 'last_name': 'Sung', 'permalink': 'jerry-sung'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Klett', 'permalink': 'michael-klett'}}, {'is_past': True, 'title': 'SAP production support', 'person': {'first_name': 'Ilya', 'last_name': 'Atrashkevich', 'permalink': 'ilya-atrashkevich'}}, {'is_past': True, 'title': 'Director, Messaging Solutions', 'person': {'first_name': 'Blair', 'last_name': 'Hankins', 'permalink': 'blair-hankins'}}, {'is_past': True, 'title': 'Graphics Lead', 'person': {'first_name': 'Long', 'last_name': 'Vo', 'permalink': 'long-vo'}}, {'is_past': True, 'title': 'North America Sales Leader, Business Solutions', 'person': {'first_name': 'Robert', 'last_name': 'Prigge', 'permalink': 'robert-prigge'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alan', 'last_name': 'Hyman', 'permalink': 'alan-hyman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Paul', 'last_name': 'Cheesbrough', 'permalink': 'paul-cheesbrough'}}, {'is_past': True, 'title': 'Internship (Pre-professional Programmer)', 'person': {'first_name': 'Brian', 'last_name': 'Jackson', 'permalink': 'brian-jackson'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'John', 'last_name': 'E. Rehfeld', 'permalink': 'john-e-rehfeld'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Graham', 'last_name': 'Sanderson', 'permalink': 'graham-sanderson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Kruger', 'permalink': 'alex-kruger'}}, {'is_past': True, 'title': 'Director of Brand Strategy and other Sr. Marketing Positions', 'person': {'first_name': 'Dana', 'last_name': 'Prestigiacomo', 'permalink': 'dana-prestigiacomo'}}, {'is_past': True, 'title': 'Sales & Marketing', 'person': {'first_name': 'Gary', 'last_name': 'Little', 'permalink': 'gary-little'}}, {'is_past': True, 'title': 'Client Representative', 'person': {'first_name': 'Carla', 'last_name': 'Derasmo', 'permalink': 'carla-derasmo'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'George', 'last_name': 'Durden', 'permalink': 'george-durden'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Connor', 'permalink': 'ian-connor'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Neal', 'last_name': 'East', 'permalink': 'neal-east'}}, {'is_past': True, 'title': 'Strategic Sales Group', 'person': {'first_name': 'Noah', 'last_name': 'Lewis', 'permalink': 'noah-lewis'}}, {'is_past': True, 'title': 'Intern in Webahead Development', 'person': {'first_name': 'Michael', 'last_name': 'Glukhovsky', 'permalink': 'michael-glukhovsky'}}, {'is_past': True, 'title': 'Software Sales Assistant', 'person': {'first_name': 'Timoor', 'last_name': 'Taufig', 'permalink': 'timoor-taufig'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Spike', 'last_name': 'Washburn', 'permalink': 'spike-washburn'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Novick', 'permalink': 'matt-novick'}}, {'is_past': True, 'title': 'Marketing Associate', 'person': {'first_name': 'Chris', 'last_name': 'Brahm', 'permalink': 'chris-brahm'}}, {'is_past': True, 'title': 'SAP Project Manager', 'person': {'first_name': 'Mati', 'last_name': 'Cohen', 'permalink': 'mati-cohen'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Phil', 'last_name': 'Bronner', 'permalink': 'phil-bronner'}}, {'is_past': True, 'title': 'Research Intern', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'B2B Software Sales', 'person': {'first_name': 'Duy', 'last_name': 'Huynh', 'permalink': 'duy-huynh'}}, {'is_past': True, 'title': 'Sales & Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Chandra', 'permalink': 'rob-chandra'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Philip', 'last_name': '\"Flip\" Gianos', 'permalink': 'philip-flip-gianos'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Jon', 'last_name': 'Seeber', 'permalink': 'jon-seeber'}}, {'is_past': True, 'title': 'Director Entity Analytics, Software Group', 'person': {'first_name': 'Charlie', 'last_name': 'Barbour', 'permalink': 'charlie-barbour'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Bipul', 'last_name': 'Sinha', 'permalink': 'bipul-sinha'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Todd', 'last_name': 'Untrecht', 'permalink': 'todd-untrecht'}}, {'is_past': True, 'title': 'sales and marketing positions.', 'person': {'first_name': 'Ray', 'last_name': 'Lane', 'permalink': 'ray-lane'}}, {'is_past': True, 'title': 'Global Software Dealmaker', 'person': {'first_name': 'Andy', 'last_name': 'Wild', 'permalink': 'andy-wild'}}, {'is_past': True, 'title': 'Marketing Rep', 'person': {'first_name': 'Bruce', 'last_name': 'Brandes', 'permalink': 'bruce-brandes'}}, {'is_past': True, 'title': 'engineering, marketing and executive positions', 'person': {'first_name': 'Nora', 'last_name': 'Denzel', 'permalink': 'nora-denzel'}}, {'is_past': True, 'title': 'Open Source Software Engineer', 'person': {'first_name': 'Sean', 'last_name': 'Johnson', 'permalink': 'sean-johnson-4'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vijay', 'last_name': 'Parmar', 'permalink': 'vijay-parmar'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Maria', 'last_name': 'M. Klawe', 'permalink': 'maria-m-klawe'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Steve', 'last_name': 'Brodie', 'permalink': 'steve-brodie-2'}}, {'is_past': True, 'title': 'Cloud Computing Business Development Executive', 'person': {'first_name': 'Prathap', 'last_name': 'Dendi', 'permalink': 'prathap-dendi'}}, {'is_past': True, 'title': 'stagist', 'person': {'first_name': 'Giuliano', 'last_name': 'Iacobelli', 'permalink': 'giuliano-iacobelli'}}, {'is_past': True, 'title': 'Extreme Blue Intern', 'person': {'first_name': 'Matt', 'last_name': 'Moore', 'permalink': 'matt-moore'}}, {'is_past': True, 'title': 'Systems Management Specialist', 'person': {'first_name': 'David', 'last_name': 'Kopf', 'permalink': 'david-kopf'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Dr.', 'last_name': 'Howard Lee', 'permalink': 'dr-howard-lee'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kunal', 'last_name': 'Sinha', 'permalink': 'kunal-sinha'}}, {'is_past': True, 'title': 'Storage Development Architect', 'person': {'first_name': 'Shachar', 'last_name': 'Fienblit', 'permalink': 'shachar-fienblit'}}, {'is_past': True, 'title': 'Research engineer', 'person': {'first_name': 'Doron', 'last_name': 'Tal', 'permalink': 'doron-tal'}}, {'is_past': True, 'title': 'Advisory Programmer', 'person': {'first_name': 'Oliver', 'last_name': 'Tavakoli', 'permalink': 'oliver-tavakoli'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'David', 'last_name': 'Nevas', 'permalink': 'david-nevas'}}, {'is_past': True, 'title': 'Product/Process Development Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Hilleboe', 'permalink': 'scott-hilleboe'}}, {'is_past': True, 'title': 'ThinkPad Product strategy and Solution Manager,,Product Manager', 'person': {'first_name': 'Masanari', 'last_name': 'Arai', 'permalink': 'masanari-arai'}}, {'is_past': True, 'title': 'Project Executive', 'person': {'first_name': 'Mike', 'last_name': 'Morrissey', 'permalink': 'mike-morrissey'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Paul', 'last_name': 'Mockapetris', 'permalink': 'paul-mockapetris'}}, {'is_past': True, 'title': 'Slaes Management', 'person': {'first_name': 'Stefan', 'last_name': 'Johansson', 'permalink': 'stefan-johansson-2'}}, {'is_past': True, 'title': 'Student Associate / Trainee', 'person': {'first_name': 'Christian', 'last_name': 'Stein', 'permalink': 'christian-steinborn'}}, {'is_past': True, 'title': 'Marketing, Sales and Business Development Roles', 'person': {'first_name': 'Ezequiel', 'last_name': 'Steiner', 'permalink': 'ezequiel-steiner'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Ashish', 'last_name': 'Gambhir', 'permalink': 'ashish-gambhir'}}, {'is_past': True, 'title': 'Executive Consultant', 'person': {'first_name': 'Heiner', 'last_name': 'Sussner', 'permalink': 'heiner-sussner'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'John', 'last_name': 'Bauschard', 'permalink': 'john-bauschard-2'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Michael', 'last_name': 'Donovan', 'permalink': 'michael-donovan'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Lenard', 'last_name': 'Marcus', 'permalink': 'lenard-marcus'}}, {'is_past': True, 'title': 'Senior Associate Programmer', 'person': {'first_name': 'Cliff', 'last_name': 'McBride', 'permalink': 'cliff-mcbride'}}, {'is_past': True, 'title': 'Agile/Lean Software Development Coach,,,, Senior Development Manager, DB2 UDB,,,Manager Software Development, DB2 Client APIs,,, Software Analyst', 'person': {'first_name': 'Robert', 'last_name': 'Begg', 'permalink': 'robert-begg'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Tim', 'last_name': 'Tyrrell', 'permalink': 'tim-tyrrell'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Quinn', 'last_name': 'Li', 'permalink': 'quinn-li'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Neil', 'last_name': 'Dexter', 'permalink': 'neil-dexter'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Loftesness', 'permalink': 'scott-loftesness'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tom', 'last_name': 'Crotty', 'permalink': 'tom-crotty'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'Joe', 'last_name': 'Polastre', 'permalink': 'joe-polastre'}}, {'is_past': True, 'title': 'Strategy & Change Consultant', 'person': {'first_name': 'Gregory', 'last_name': 'Lok', 'permalink': 'gregory-lok'}}, {'is_past': True, 'title': 'Process Engineer', 'person': {'first_name': 'Matthew', 'last_name': 'L. Scullin', 'permalink': 'matthew-l-scullin'}}, {'is_past': True, 'title': 'Media Relations Manager', 'person': {'first_name': 'Cas', 'last_name': 'Purdy', 'permalink': 'cas-purdy'}}, {'is_past': True, 'title': 'Technical Sales, Cast Iron Systems - IBM Software Group', 'person': {'first_name': 'David', 'last_name': 'Brenegan', 'permalink': 'david-brenegan'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'OB', 'last_name': 'Bilous', 'permalink': 'ob-bilous'}}, {'is_past': True, 'title': 'Senior Knowledge Engineer', 'person': {'first_name': 'Maarten', 'last_name': 'Sierhuis', 'permalink': 'maarten-sierhuis'}}, {'is_past': True, 'title': 'Technical Director - South East Asia', 'person': {'first_name': 'Doug', 'last_name': 'Meadows', 'permalink': 'doug-meadows-2'}}, {'is_past': True, 'title': 'Executive & Corporate Management', 'person': {'first_name': 'Dave', 'last_name': 'Plumer', 'permalink': 'dave-plumer'}}, {'is_past': True, 'title': 'Branch Manager', 'person': {'first_name': 'Jay', 'last_name': 'Haladay', 'permalink': 'jay-haladay'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'Hing', 'last_name': 'Wong', 'permalink': 'hing-wong'}}, {'is_past': True, 'title': 'IT Management Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Zimmerman', 'permalink': 'andy-zimmerman'}}, {'is_past': True, 'title': 'Application Integrator', 'person': {'first_name': 'Vish', 'last_name': 'Baliga', 'permalink': 'vish-baliga'}}, {'is_past': True, 'title': 'Executive roles', 'person': {'first_name': 'Jeff', 'last_name': 'Robinson', 'permalink': 'jeff-robinson-4'}}, {'is_past': True, 'title': 'Sales & Marketing Position', 'person': {'first_name': 'Victor', 'last_name': 'Leventhal', 'permalink': 'victor-leventhal'}}, {'is_past': True, 'title': 'North American Sales Manager', 'person': {'first_name': 'Jon', 'last_name': 'Melamut', 'permalink': 'jon-melamut'}}, {'is_past': True, 'title': 'Sr. Engineering Mgr', 'person': {'first_name': 'Srinivas', 'last_name': 'Kandikattu', 'permalink': 'srinivas-kandikattu'}}, {'is_past': True, 'title': 'Director, Computer Science Research', 'person': {'first_name': 'Daniel', 'last_name': 'Shiffman', 'permalink': 'daniel-shiffman'}}, {'is_past': True, 'title': 'Director, Implementation Services', 'person': {'first_name': 'Gordon', 'last_name': 'Campbell', 'permalink': 'gordon-campbell'}}, {'is_past': True, 'title': 'executive positions', 'person': {'first_name': 'Andre', 'last_name': 'M. Boisvert', 'permalink': 'andre-m-boisvert'}}, {'is_past': True, 'title': 'Manager, Senior Engineer', 'person': {'first_name': 'Joe', 'last_name': 'Lamoreux', 'permalink': 'joe-lamoreux'}}, {'is_past': True, 'title': 'Sales and Marketing Positions', 'person': {'first_name': 'Dave', 'last_name': 'Ward', 'permalink': 'dave-ward'}}, {'is_past': True, 'title': 'Progarm Director, Business Development', 'person': {'first_name': 'Emeka', 'last_name': 'Obianwu', 'permalink': 'emeka-obianwu'}}, {'is_past': True, 'title': 'Online Marketing Specialist & Web Projects Leader', 'person': {'first_name': 'Denis', 'last_name': 'Mazzei', 'permalink': 'denis-mazzei'}}, {'is_past': True, 'title': 'Financial Consultant', 'person': {'first_name': 'Ryan', 'last_name': 'Healy', 'permalink': 'ryan-healy'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Micallef', 'permalink': 'andy-micallef'}}, {'is_past': True, 'title': 'Director NAS Solutions OEM Sales and Marketing', 'person': {'first_name': 'Amanda', 'last_name': 'Jobbins', 'permalink': 'amanda-jobbins'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Vikram', 'last_name': 'Kumar', 'permalink': 'vikram-kumar'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Bowles', 'permalink': 'david-bowles'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Eyal', 'last_name': 'Keren', 'permalink': 'eyal-keren'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Chris', 'last_name': 'Benne', 'permalink': 'chris-benne'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Eva', 'last_name': 'Elmstedt', 'permalink': 'eva-elmstedt'}}, {'is_past': True, 'title': 'Senior Director, Support Services', 'person': {'first_name': 'Eric', 'last_name': 'Goffney', 'permalink': 'eric-goffney'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Don', 'last_name': 'Taylor', 'permalink': 'don-taylor-2'}}, {'is_past': True, 'title': 'Executive Team Member', 'person': {'first_name': 'Luis', 'last_name': 'Arzubi', 'permalink': 'luis-arzubi'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'John', 'last_name': 'Urban', 'permalink': 'john-urban'}}, {'is_past': True, 'title': 'Consultant & Integrated Communications Business Manager', 'person': {'first_name': 'Darren', 'last_name': 'Chalmers Steven', 'permalink': 'darren-chalmers-steven'}}, {'is_past': True, 'title': 'Senior Market Analyst', 'person': {'first_name': 'Jack', 'last_name': 'Reader', 'permalink': 'jack-reader'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Venkat', 'last_name': 'Rajan', 'permalink': 'venkat-rajan'}}, {'is_past': True, 'title': 'Distinguished Engineer / Manager, ibm.com Web Experience', 'person': {'first_name': 'Mike', 'last_name': 'Moran', 'permalink': 'mike-moran'}}, {'is_past': True, 'title': 'Software Programmer', 'person': {'first_name': 'Chris', 'last_name': 'Christensen', 'permalink': 'chris-christensen'}}, {'is_past': True, 'title': 'Technical Sales Rep - EMEA', 'person': {'first_name': 'Adolfo', 'last_name': 'Hernandez', 'permalink': 'adolfo-hernandez'}}, {'is_past': True, 'title': 'Program Manager, SOA Strategy', 'person': {'first_name': 'Nick', 'last_name': 'Burling', 'permalink': 'nick-burling'}}, {'is_past': True, 'title': 'Program Director, Manager, & Market Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Greene', 'permalink': 'kevin-greene'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Dr.', 'last_name': 'Robert P. Lee', 'permalink': 'dr-robert-p-lee'}}, {'is_past': True, 'title': 'GM, Industry Solutions', 'person': {'first_name': 'John', 'last_name': 'Schwarz', 'permalink': 'john-schwarz'}}, {'is_past': True, 'title': 'IT Architect', 'person': {'first_name': 'Sidney', 'last_name': 'Wen', 'permalink': 'sidney-wen'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tom', 'last_name': 'Hughes', 'permalink': 'tom-hughes-3'}}, {'is_past': True, 'title': 'Director of Product Management and Development', 'person': {'first_name': 'Neeraj', 'last_name': 'Sen', 'permalink': 'neeraj-sen'}}, {'is_past': True, 'title': 'Associate Engineer', 'person': {'first_name': 'Don', 'last_name': 'Parsons', 'permalink': 'don-parsons'}}, {'is_past': True, 'title': 'Worldwide Program Director InfoSphere Data Warehousing', 'person': {'first_name': 'Steve', 'last_name': 'Millard', 'permalink': 'steve-millard'}}, {'is_past': True, 'title': 'Senior Manager, Data Warehouse Solutions Evangelism', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Product and Programs Marketing Manager', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Frederick', 'last_name': 'Dotzler', 'permalink': 'frederick-dotzler'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Josef', 'last_name': 'Schodl', 'permalink': 'josef-schodl-2'}}, {'is_past': True, 'title': 'Director of Customer Service', 'person': {'first_name': 'Tim', 'last_name': 'Allaway', 'permalink': 'tim-allaway'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Smith', 'permalink': 'dan-smith-4'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Scruggs', 'permalink': 'david-scruggs'}}, {'is_past': True, 'title': 'Product / Operations - Management Roles', 'person': {'first_name': 'Noah', 'last_name': 'Doyle', 'permalink': 'noah-doyle'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Shaun', 'last_name': 'Seo', 'permalink': 'shaun-seo'}}, {'is_past': True, 'title': 'verseeing global operations', 'person': {'first_name': 'John', 'last_name': 'W. Baumstark', 'permalink': 'john-w-baumstark'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Peter', 'last_name': 'DiLaura', 'permalink': 'peter-dilaura'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Jack', 'last_name': 'Harding', 'permalink': 'jack-harding'}}, {'is_past': True, 'title': 'Summer Co-op', 'person': {'first_name': 'Jon', 'last_name': 'Thornton', 'permalink': 'jon-thornton'}}, {'is_past': True, 'title': 'Executive Sales and Marketing Positions', 'person': {'first_name': 'Gary', 'last_name': 'Napotnik', 'permalink': 'gary-napotnik'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Rami', 'last_name': 'Kalish', 'permalink': 'rami-kalish'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Frank', 'last_name': 'D’Angelo', 'permalink': 'frank-dangelo'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Arun', 'last_name': 'Kulkarni', 'permalink': 'arun-kulkarni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ralph', 'last_name': 'Rivera', 'permalink': 'ralph-rivera'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Greg', 'last_name': 'Lock', 'permalink': 'greg-lock'}}, {'is_past': True, 'title': 'Executives', 'person': {'first_name': 'Amal', 'last_name': 'M. Johnson', 'permalink': 'amal-m-johnson'}}, {'is_past': True, 'title': 'Consumer and Reseller Marketing Programs', 'person': {'first_name': 'Jim', 'last_name': 'Mediate', 'permalink': 'jim-mediate'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Nikolay', 'last_name': 'Rashev', 'permalink': 'nikolay-rashev'}}, {'is_past': True, 'title': 'Test & Mechanical Engineer', 'person': {'first_name': 'Pavan', 'last_name': 'Gupta', 'permalink': 'pavan-gupta'}}, {'is_past': True, 'title': 'Sr. roles, Call center solutions', 'person': {'first_name': 'Owen', 'last_name': 'Bridle', 'permalink': 'owen-bridle'}}, {'is_past': True, 'title': 'Sales Leadership', 'person': {'first_name': 'William', 'last_name': 'Kerrigan', 'permalink': 'william-kerrigan'}}, {'is_past': True, 'title': 'Online Platforms & Applications', 'person': {'first_name': 'Vaidy', 'last_name': 'Panchapakesan', 'permalink': 'vaidy-panchapakesan'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Stela', 'last_name': 'Cassidy', 'permalink': 'stela-cassidy'}}, {'is_past': True, 'title': 'Executive, IBM corporate & World Trade marketing', 'person': {'first_name': 'Zack', 'last_name': 'Margolis', 'permalink': 'zack-margolis'}}, {'is_past': True, 'title': 'Sales & Management positions', 'person': {'first_name': 'Jeff', 'last_name': 'Ray', 'permalink': 'jeff-ray'}}, {'is_past': True, 'title': 'Intern Web Programmer', 'person': {'first_name': 'Muhammad', 'last_name': 'Arrabi', 'permalink': 'muhammad-arrabi'}}, {'is_past': True, 'title': 'Director / Manager - IBM’s Global x86-based server Div.', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Fletcher', 'last_name': 'Payne', 'permalink': 'fletcher-payne'}}, {'is_past': True, 'title': 'Executive Roles', 'person': {'first_name': 'Nigel', 'last_name': 'Broda', 'permalink': 'nigel-broda'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Asad', 'last_name': 'Parvaiz', 'permalink': 'asad-parvaiz'}}, {'is_past': True, 'title': 'Employee (Israel)', 'person': {'first_name': 'Yoram', 'last_name': 'Alroy', 'permalink': 'yoram-alroy'}}, {'is_past': True, 'title': 'Leadership positions in Finance', 'person': {'first_name': 'Rajesh', 'last_name': 'Garg', 'permalink': 'rajesh-garg'}}, {'is_past': True, 'title': 'Leadership roles', 'person': {'first_name': 'Gavin', 'last_name': 'Cato', 'permalink': 'gavin-cato'}}, {'is_past': True, 'title': 'Head, Strategy & Market Development - IBM’s Intel Server business', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': True, 'title': 'Sales & Technical positions', 'person': {'first_name': 'Francois', 'last_name': 'Rene Letourneur', 'permalink': 'francois-rene-letourneur'}}, {'is_past': True, 'title': 'Transition Executive / ITIL SME', 'person': {'first_name': 'Craig', 'last_name': 'Nelson', 'permalink': 'craig-nelson'}}, {'is_past': True, 'title': 'Director level positions', 'person': {'first_name': 'Rick', 'last_name': 'Sizemore', 'permalink': 'rick-sizemore'}}, {'is_past': True, 'title': 'General Manager (Lotus Messaging and Collaboration Division) ,, Held Key Executive Positions', 'person': {'first_name': 'Steve', 'last_name': 'Lewis', 'permalink': 'steve-lewis'}}, {'is_past': True, 'title': 'Senior Marketing positions', 'person': {'first_name': 'Sharon', 'last_name': 'Thompson', 'permalink': 'sharon-thompson'}}, {'is_past': True, 'title': 'Sr. Product Marketing, Product Management & Business Development positions', 'person': {'first_name': 'Santosh', 'last_name': 'Chitakki', 'permalink': 'santosh-chitakki'}}, {'is_past': True, 'title': 'Senior Vice President and Group Executive', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Head, SLA Management Portfolio', 'person': {'first_name': 'Neil', 'last_name': 'Coleman', 'permalink': 'neil-coleman'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Paul', 'last_name': 'Von Autenried', 'permalink': 'paul-von-autenried'}}, {'is_past': True, 'title': 'Semiconductor R&D Center', 'person': {'first_name': 'Raj', 'last_name': 'Jammy', 'permalink': 'raj-jammy'}}, {'is_past': True, 'title': 'Head, Distributed Network & Systems Business', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Head, Strategy for Transaction Processing', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Information Technology', 'person': {'first_name': 'Ahmad', 'last_name': 'Kasmieh', 'permalink': 'ahmad-kasmieh'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ray', 'last_name': 'Ozzie', 'permalink': 'ray-ozzie'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Rua', 'permalink': 'dan-rua'}}, {'is_past': True, 'title': '2nd Line Engineer', 'person': {'first_name': 'Taz', 'last_name': 'Ryder', 'permalink': 'taz-ryder'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abe', 'last_name': 'Thomas', 'permalink': 'abe-thomas'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Eliezer', 'last_name': 'Israel', 'permalink': 'eliezer-israel'}}, {'is_past': True, 'title': 'Applied Research, Marketing', 'person': {'first_name': 'Kris', 'last_name': 'Tuttle', 'permalink': 'kris-tuttle'}}, {'is_past': True, 'title': 'Intellectual Property / R&D', 'person': {'first_name': 'Damion', 'last_name': 'Hankejh', 'permalink': 'damion-hankejh'}}, {'is_past': True, 'title': 'Principal - eBusiness & Org. Change Consulting', 'person': {'first_name': 'R R', 'last_name': 'Dasgupta', 'permalink': 'r-r-dasgupta'}}, {'is_past': True, 'title': 'Technical Editor', 'person': {'first_name': 'Kristi', 'last_name': 'Hadix', 'permalink': 'kristi-hadix'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': 'Ravi', 'last_name': 'Srivatsav', 'permalink': 'ravi-srivatsav-krishnamurthy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sami', 'last_name': 'Shalabi', 'permalink': 'sami-shalabi'}}, {'is_past': True, 'title': 'SEO LEAD ANZ', 'person': {'first_name': 'Ullash', 'last_name': 'Tiwari', 'permalink': 'ullash-tiwari'}}, {'is_past': True, 'title': 'Software consultant', 'person': {'first_name': 'Veeru', 'last_name': 'Mehta', 'permalink': 'veeru-mehta'}}, {'is_past': True, 'title': 'Global Program Manager, IBM Smart Market', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Global Program Manager & Project Executive, Technical Support Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Program Manager, Global Web Architecture & Process Transformation', 'person': {'first_name': 'Allen', 'last_name': 'Stalvey', 'permalink': 'allen-stalvey'}}, {'is_past': True, 'title': 'Sr. Linux System Administrator', 'person': {'first_name': 'Joshua', 'last_name': 'Miller', 'permalink': 'joshua-miller'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Damien', 'last_name': 'Katz', 'permalink': 'damien-katz'}}, {'is_past': True, 'title': 'Sr. Manager, Consumer Systems & SW Research', 'person': {'first_name': 'Mitch', 'last_name': 'Stein', 'permalink': 'mitch-stein'}}, {'is_past': True, 'title': 'User Interface Designer, IBM.com (PCD)', 'person': {'first_name': 'Rob', 'last_name': 'Abbott', 'permalink': 'rob-abbott'}}, {'is_past': True, 'title': 'E-Commerce Consultant', 'person': {'first_name': 'Malcolm', 'last_name': 'Ong', 'permalink': 'malcolm-ong'}}, {'is_past': True, 'title': 'R&D', 'person': {'first_name': 'Kurt', 'last_name': 'Brown', 'permalink': 'kurt-brown'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Tina', 'last_name': 'Gleisner', 'permalink': 'tina-gleisner'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Benjamin', 'last_name': 'Joe', 'permalink': 'benjamin-joe'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Elliot', 'last_name': 'Theis', 'permalink': 'elliot-theis'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Jatinder', 'last_name': 'Singh', 'permalink': 'jatinder-singh-2'}}, {'is_past': True, 'title': 'Worldwide Sales Operations Leader', 'person': {'first_name': 'Basit', 'last_name': 'Mustafa', 'permalink': 'basit-mustafa'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Monica', 'last_name': 'Enand', 'permalink': 'monica-enand'}}, {'is_past': True, 'title': 'WW Alliances Technical Leader, WebSphere Cast Iron', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': True, 'title': 'Software Sales Engineer', 'person': {'first_name': 'Yohannes', 'last_name': 'Tadesse', 'permalink': 'yohannes-tadesse'}}, {'is_past': True, 'title': 'Delivery Solution Manager', 'person': {'first_name': 'David', 'last_name': 'Pessis', 'permalink': 'david-pessis'}}, {'is_past': True, 'title': 'Marketing Account Representative', 'person': {'first_name': 'Peter', 'last_name': 'Kronowitt', 'permalink': 'peter-kronowitt'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Diana', 'last_name': 'Hage', 'permalink': 'diana-hage'}}, {'is_past': True, 'title': 'various sales roles', 'person': {'first_name': 'Stephan', 'last_name': 'Timme', 'permalink': 'stephan-timme'}}, {'is_past': True, 'title': 'Customer Analytics, Customer Experience & SBU Strategy/Planning', 'person': {'first_name': 'Christian', 'last_name': 'Gammill', 'permalink': 'christian-gammill'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Chuks', 'last_name': 'Onwuneme', 'permalink': 'chuks-onwuneme'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sophia', 'last_name': 'Perl', 'permalink': 'sophia-perl'}}, {'is_past': True, 'title': 'Principal', 'person': {'first_name': 'Mahesh', 'last_name': 'Paolini-Subramanya', 'permalink': 'mahesh-paolini-subramanya'}}, {'is_past': True, 'title': 'Technical Intern', 'person': {'first_name': 'Jeremy', 'last_name': 'Espenshade', 'permalink': 'jeremy-espenshade'}}, {'is_past': True, 'title': 'Senior Software Development Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Schreiber', 'permalink': 'amit-schreiber'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Adam', 'last_name': 'Talcott', 'permalink': 'adam-talcott'}}, {'is_past': True, 'title': 'Program Director of Software Development, Cloud Computing', 'person': {'first_name': 'Satwik', 'last_name': 'Seshasai', 'permalink': 'satwik-seshasai'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Winston', 'last_name': 'Mendoza', 'permalink': 'winston-mendoza'}}, {'is_past': True, 'title': 'Research Staf Member', 'person': {'first_name': 'Sergio', 'last_name': 'Fogel', 'permalink': 'sergio-fogel-2'}}, {'is_past': True, 'title': 'Managing Director, Ogilvy', 'person': {'first_name': 'George', 'last_name': 'Gutierrez', 'permalink': 'george-gutierrez'}}, {'is_past': True, 'title': 'OSI Compliance', 'person': {'first_name': 'Eugene', 'last_name': 'Ciurana', 'permalink': 'eugene-ciurana'}}, {'is_past': True, 'title': 'Advanced Technology Business Development Professional', 'person': {'first_name': 'Ime', 'last_name': 'Archibong', 'permalink': 'ime-archibong'}}, {'is_past': True, 'title': 'Project Engineer/Business Manager', 'person': {'first_name': 'Arnoud', 'last_name': 'van Houten', 'permalink': 'arnoud-van-houten'}}, {'is_past': True, 'title': 'Technical Project Manager', 'person': {'first_name': 'Chris', 'last_name': 'Bell', 'permalink': 'chris-bell'}}, {'is_past': True, 'title': 'Senior Product Marketing and Strategy', 'person': {'first_name': 'Tom', 'last_name': 'Vogel', 'permalink': 'tom-vogel'}}, {'is_past': True, 'title': 'Usability Specialist', 'person': {'first_name': 'Brbara', 'last_name': 'Ballard', 'permalink': 'brbara-ballard'}}, {'is_past': True, 'title': 'sales representative and progressed t', 'person': {'first_name': 'Jim', 'last_name': 'Hackbarth', 'permalink': 'jim-hackbarth'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Rudolf', 'last_name': 'Kergassner', 'permalink': 'rudolf-kergassner'}}, {'is_past': True, 'title': 'Global Commodity Manager', 'person': {'first_name': 'Ohad', 'last_name': 'Shvueli', 'permalink': 'ohad-shvueli'}}, {'is_past': True, 'title': 'Part Of R&D Group', 'person': {'first_name': 'Haris', 'last_name': 'Basit', 'permalink': 'haris-basit'}}, {'is_past': True, 'title': 'Branch Manager', 'person': {'first_name': 'Bart', 'last_name': 'Tichelman', 'permalink': 'bart-tichelman'}}, {'is_past': True, 'title': 'Senior Consultant, IBM GBS', 'person': {'first_name': 'Matt', 'last_name': 'Marra', 'permalink': 'matt-marra'}}, {'is_past': True, 'title': 'Global Development Manager for Educational Systems', 'person': {'first_name': 'Deb', 'last_name': 'Miller', 'permalink': 'deb-miller-2'}}, {'is_past': True, 'title': 'Program Director, Security Division', 'person': {'first_name': 'STEVEN', 'last_name': 'BALL', 'permalink': 'steven-ball'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Glenn', 'last_name': 'Osborne', 'permalink': 'glenn-osborne'}}, {'is_past': True, 'title': 'Advisory Software Engineer', 'person': {'first_name': 'Alexey', 'last_name': 'Timanovskiy', 'permalink': 'alexey-timanovskiy'}}, {'is_past': True, 'title': 'VP Partner Marketing', 'person': {'first_name': 'Ian', 'last_name': 'Bonner', 'permalink': 'ian-bonner'}}, {'is_past': True, 'title': 'Software Engineer, WebSphere Business Integration', 'person': {'first_name': 'Lily', 'last_name': 'Chiu', 'permalink': 'lily-chiu'}}, {'is_past': True, 'title': 'front-office analytics systems', 'person': {'first_name': 'Joel', 'last_name': 'Kaplan', 'permalink': 'joel-kaplan'}}, {'is_past': True, 'title': 'enior management positions', 'person': {'first_name': 'Rich', 'last_name': 'Beckert', 'permalink': 'rich-beckert'}}, {'is_past': True, 'title': 'Partner and Sales Leader', 'person': {'first_name': 'Shelly', 'last_name': 'Singh', 'permalink': 'shelly-singh'}}, {'is_past': True, 'title': 'Emerging Technology Analyst', 'person': {'first_name': 'Zaw', 'last_name': 'Thet', 'permalink': 'zaw-thet'}}, {'is_past': True, 'title': 'Operations', 'person': {'first_name': 'Michael', 'last_name': 'Levinthal', 'permalink': 'michael-levinthal'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Pace', 'permalink': 'stephen-pace'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Jim', 'last_name': 'Byrnes', 'permalink': 'jim-byrnes'}}, {'is_past': True, 'title': 'Staff Development Engineer', 'person': {'first_name': 'Tom', 'last_name': 'Rosenmayer', 'permalink': 'tom-rosenmayer'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Carlson', 'permalink': 'brent-carlson'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Hitesh', 'last_name': 'shah', 'permalink': 'hitesh-shah-2'}}, {'is_past': True, 'title': 'Systems Programmer', 'person': {'first_name': 'Alan', 'last_name': 'Matthews', 'permalink': 'alan-matthews'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ori', 'last_name': 'Schwartz', 'permalink': 'ori-schwartz'}}, {'is_past': True, 'title': 'Director, Web Intergration Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Purcell', 'permalink': 'mike-purcell'}}, {'is_past': True, 'title': 'Various Management positions', 'person': {'first_name': 'Umesh', 'last_name': 'Singh', 'permalink': 'umesh-singh'}}, {'is_past': True, 'title': 'Managing Consultant, Supply Chain Planning', 'person': {'first_name': 'Katin', 'last_name': 'Miller', 'permalink': 'katin-miller'}}, {'is_past': True, 'title': 'Manager/Director - IBM Raleigh', 'person': {'first_name': 'Shashank', 'last_name': 'Samant', 'permalink': 'shashank-samant'}}, {'is_past': True, 'title': 'various management and technical Position', 'person': {'first_name': 'Duane', 'last_name': 'Zitzner', 'permalink': 'duane-zitzner'}}, {'is_past': True, 'title': 'Senior Sales, Marketing and Professional Services Leadership Positions', 'person': {'first_name': 'Paul', 'last_name': 'Black', 'permalink': 'paul-black'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Jason', 'last_name': 'Morio', 'permalink': 'jason-morio'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Rich', 'last_name': 'Fennessy', 'permalink': 'rich-fennessy'}}, {'is_past': True, 'title': 'Programmer, sales', 'person': {'first_name': 'Sam', 'last_name': 'Elias', 'permalink': 'sam-elias'}}, {'is_past': True, 'title': 'Director, U2 Data Servers & Tools', 'person': {'first_name': 'Susie', 'last_name': 'Siegesmund', 'permalink': 'susie-siegesmund'}}, {'is_past': True, 'title': 'Senior Manager, Information Management', 'person': {'first_name': 'Simon', 'last_name': 'Caddick ( Platform Leadership )', 'permalink': 'simon-caddick-platform-leadership'}}, {'is_past': True, 'title': 'Business Partner/Operations Manager', 'person': {'first_name': 'Elizabeth', 'last_name': 'Thomas ( Storage, Network & Compliance)', 'permalink': 'elizabeth-thomas-john-procter-storage-network-compliance'}}, {'is_past': True, 'title': 'Consulting Sales Specialist', 'person': {'first_name': 'John', 'last_name': 'Mathieu ( Database Server & Tools )', 'permalink': 'john-mathieu-database-server-tools'}}, {'is_past': True, 'title': 'Research Fellow', 'person': {'first_name': 'Vitaly', 'last_name': 'Sirota', 'permalink': 'vitaly-sirota'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Charles', 'last_name': 'Wuischpard', 'permalink': 'charles-wuischpard'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Rob', 'last_name': 'Anderson', 'permalink': 'rob-anderson-3'}}, {'is_past': True, 'title': 'Senior Scientist', 'person': {'first_name': 'Dr.', 'last_name': 'Kathleen Dahlgren', 'permalink': 'dr-kathleen-dahlgren'}}, {'is_past': True, 'title': 'Software Developer, Tokyo Research Lab', 'person': {'first_name': 'Ethel', 'last_name': 'Chen', 'permalink': 'ethel-chen'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'William', 'last_name': 'A. Geers', 'permalink': 'william-a-geers'}}, {'is_past': True, 'title': 'Large Account Manager', 'person': {'first_name': 'Peter', 'last_name': 'Shields', 'permalink': 'peter-shields'}}, {'is_past': True, 'title': 'Director of Finance, Planning and Administration', 'person': {'first_name': 'Bob', 'last_name': 'Romano', 'permalink': 'bob-romano'}}, {'is_past': True, 'title': 'Marketing Representaion', 'person': {'first_name': 'Jim', 'last_name': 'Donnelly', 'permalink': 'jim-donnelly'}}, {'is_past': True, 'title': 'Business Unit Executive, MDM', 'person': {'first_name': 'Josh', 'last_name': 'Rogers', 'permalink': 'josh-rogers'}}, {'is_past': True, 'title': 'Director, Cloud Business Development', 'person': {'first_name': 'Tim', 'last_name': 'Thatcher', 'permalink': 'tim-thatcher'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Steve', 'last_name': 'Lesem', 'permalink': 'steve-lesem'}}, {'is_past': True, 'title': 'Account Executive, New Business', 'person': {'first_name': 'Greg', 'last_name': 'Katai', 'permalink': 'greg-katai'}}, {'is_past': True, 'title': 'Executive Assistant & Business Development Manager, Regional Sales Manager - Personal Computing Division, Various IBM positions - Boca Raton, FL, Boston, MA, Lansing, MI', 'person': {'first_name': 'John', 'last_name': 'Veit', 'permalink': 'john-veit'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Ed', 'last_name': 'Lacobucci', 'permalink': 'ed-lacobucci'}}, {'is_past': True, 'title': 'Advisory Marketing Rep', 'person': {'first_name': 'Paul', 'last_name': 'Guerin', 'permalink': 'paul-guerin'}}, {'is_past': True, 'title': 'General Manager, Global Distribution Sector', 'person': {'first_name': 'Dan', 'last_name': 'Fortin', 'permalink': 'dan-fortin'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Ed', 'last_name': 'Brill', 'permalink': 'ed-brill'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Igor', 'last_name': 'Jablokov', 'permalink': 'igor-jablokov'}}, {'is_past': True, 'title': 'Business Unit Executive, Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Diamond', 'permalink': 'michael-diamond'}}, {'is_past': True, 'title': 'Client Manager - Healthcare & Public Sector', 'person': {'first_name': 'Martin', 'last_name': 'Kelly', 'permalink': 'martin-kelly'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Vikas', 'last_name': 'Reddy', 'permalink': 'vikas-reddy'}}, {'is_past': True, 'title': 'Variuos Role', 'person': {'first_name': 'Petro', 'last_name': 'Estakhri', 'permalink': 'petro-estakhri'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Jerry', 'last_name': 'Neumann', 'permalink': 'jerry-neumann'}}, {'is_past': True, 'title': 'Branch Manager/General Manager', 'person': {'first_name': 'Brian', 'last_name': 'Brogan', 'permalink': 'brian-brogan'}}, {'is_past': True, 'title': 'Architect, Software Engineer, Master Inventor', 'person': {'first_name': 'Dustin', 'last_name': 'Kirkland', 'permalink': 'dustin-kirkland'}}, {'is_past': True, 'title': 'Global General Manager of Financial Services', 'person': {'first_name': 'John', 'last_name': 'M. Connolly', 'permalink': 'john-m-connolly'}}, {'is_past': True, 'title': 'Senior Manager, IBM SmartCloud for Social Business', 'person': {'first_name': 'Satwik', 'last_name': 'Seshasai', 'permalink': 'satwik-seshasai'}}, {'is_past': True, 'title': 'Acquisition Transition Executive', 'person': {'first_name': 'Scott', 'last_name': 'Cosby', 'permalink': 'scott-cosby'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Sumit', 'last_name': 'Gupta', 'permalink': 'sumit-gupta-3'}}, {'is_past': True, 'title': 'WW IBM Clarity & Cognos FSR Sales Leader', 'person': {'first_name': 'Don', 'last_name': 'Mal', 'permalink': 'don-mal'}}, {'is_past': True, 'title': 'Global Alliances - Business Analytics, Clarity', 'person': {'first_name': 'Steve', 'last_name': \"O'Neil\", 'permalink': 'steve-oneil'}}, {'is_past': True, 'title': 'Various Technical & Management Positions', 'person': {'first_name': 'Adya', 'last_name': 'S. Tripathi', 'permalink': 'adya-s-tripathi'}}, {'is_past': True, 'title': 'various engineering, product management and marketing positions', 'person': {'first_name': 'Paul', 'last_name': 'Santinelli', 'permalink': 'paul-santinelli'}}, {'is_past': True, 'title': 'software engineer', 'person': {'first_name': 'Jesse', 'last_name': 'Schell', 'permalink': 'jesse-schell'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Jay', 'last_name': 'Tansing', 'permalink': 'jay-tansing'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'Aiman', 'last_name': 'Ezzat', 'permalink': 'aiman-ezzat'}}, {'is_past': True, 'title': 'Software Client Executive', 'person': {'first_name': 'Bill', 'last_name': 'Almbanis', 'permalink': 'bill-almbanis'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jim', 'last_name': 'Frankola', 'permalink': 'jim-frankola'}}, {'is_past': True, 'title': 'Director, North American Fulfillment', 'person': {'first_name': 'Tim', 'last_name': 'Cook', 'permalink': 'tim-cook'}}, {'is_past': True, 'title': 'Various technical roles in colloaborative software group', 'person': {'first_name': 'Simon', 'last_name': 'Hayhurst', 'permalink': 'simon-hayhurst'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Rob', 'last_name': 'Enns', 'permalink': 'rob-enns'}}, {'is_past': True, 'title': 'Software Engineer Co-op', 'person': {'first_name': 'Luu', 'last_name': 'Tran', 'permalink': 'luu-tran'}}, {'is_past': True, 'title': 'Senior Executive Positions', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Web Application Developer', 'person': {'first_name': 'Matt', 'last_name': 'Goyer', 'permalink': 'matt-goyer'}}, {'is_past': True, 'title': 'Sales Executive', 'person': {'first_name': 'Jim', 'last_name': 'Watson', 'permalink': 'jim-watson'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Greg', 'last_name': 'Duffy', 'permalink': 'greg-duffy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Cheryln', 'last_name': 'Chin', 'permalink': 'cheryln-chin'}}, {'is_past': True, 'title': 'Sr. Engineer/Research Manager', 'person': {'first_name': 'Peng', 'last_name': 'Lu', 'permalink': 'peng-lu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Law', 'permalink': 'david-law'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Caroline', 'last_name': 'Tsay', 'permalink': 'caroline-tsay'}}, {'is_past': True, 'title': 'Code Monkey', 'person': {'first_name': 'John', 'last_name': 'Shedletsky', 'permalink': 'john-shedletsky'}}, {'is_past': True, 'title': 'Client Solutions Executive', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'Partner, IT Optimization', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'e-Business Architect', 'person': {'first_name': 'David', 'last_name': 'Weiss', 'permalink': 'david-weiss'}}, {'is_past': True, 'title': 'Channel Sales Leader for IBM XIV - West IMT', 'person': {'first_name': 'Sudheesh', 'last_name': 'Nair', 'permalink': 'sudheesh-nair'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Andy', 'last_name': 'Wright', 'permalink': 'andy-wright-3'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Ben', 'last_name': 'Slutter', 'permalink': 'ben-slutter'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Qi', 'last_name': 'Lu', 'permalink': 'qi-lu'}}, {'is_past': True, 'title': 'Resident', 'person': {'first_name': 'Neil', 'last_name': 'Sheth', 'permalink': 'neil-sheth'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Maurice', 'last_name': 'Heiblum', 'permalink': 'maurice-heiblum'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Babbitt', 'permalink': 'david-babbitt'}}, {'is_past': True, 'title': 'Senior Software Engineer,,, Advisory Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Feinberg', 'permalink': 'jonathan-feinberg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Takao', 'last_name': 'Endo', 'permalink': 'takao-endo'}}, {'is_past': True, 'title': 'Consultant, Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Sikora', 'permalink': 'scott-sikora'}}, {'is_past': True, 'title': 'Marketing Rep', 'person': {'first_name': 'Andy', 'last_name': 'Kofoi', 'permalink': 'andy-kofoi'}}, {'is_past': True, 'title': 'Midmarket Sales Executive - Great Lakes Region', 'person': {'first_name': 'Bob', 'last_name': 'McCarthy', 'permalink': 'bob-mccarthy'}}, {'is_past': True, 'title': 'Pre-professional Programmer', 'person': {'first_name': 'Ryan', 'last_name': 'Sit', 'permalink': 'ryan-sit'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Andrew', 'last_name': 'Hamilton', 'permalink': 'andrew-hamilton-4'}}, {'is_past': True, 'title': 'sales and alliances', 'person': {'first_name': 'Peter', 'last_name': 'Mahoney', 'permalink': 'peter-mahoney'}}, {'is_past': True, 'title': 'Consultant, Strategy & Change', 'person': {'first_name': 'Rob', 'last_name': 'Schwartz', 'permalink': 'rob-schwartz'}}, {'is_past': True, 'title': 'Consultant Relations Marketing Programs Leader, Finance Industry DM Strategist', 'person': {'first_name': 'Lynn', 'last_name': 'Tornabene', 'permalink': 'lynn-tornabene'}}, {'is_past': True, 'title': 'Application Software Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Sarbiewski', 'permalink': 'mark-sarbiewski'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'George', 'last_name': 'Haidar', 'permalink': 'george-haidar'}}, {'is_past': True, 'title': 'Software Engineer / Programmer', 'person': {'first_name': 'David', 'last_name': 'Spitz', 'permalink': 'david-spitz'}}, {'is_past': True, 'title': 'UNKNOWN', 'person': {'first_name': 'John', 'last_name': 'T. Chambers', 'permalink': 'john-t-chambers'}}, {'is_past': True, 'title': 'Sales and Marketing', 'person': {'first_name': 'Stephen', 'last_name': 'Schuckenbrock', 'permalink': 'stephen-schuckenbrock'}}, {'is_past': True, 'title': 'Director, Discovery Products', 'person': {'first_name': 'Amit', 'last_name': 'Somani', 'permalink': 'amit-somani'}}, {'is_past': True, 'title': 'User Experience Program Manager', 'person': {'first_name': 'Brandon', 'last_name': 'Waselnuk', 'permalink': 'brandon-waselnuk'}}, {'is_past': True, 'title': 'Managing Director Iberia', 'person': {'first_name': 'Jordi', 'last_name': 'Botifoll', 'permalink': 'jordi-botifoll'}}, {'is_past': True, 'title': 'Director, Partner Relationship Management', 'person': {'first_name': 'Will', 'last_name': 'Pryor', 'permalink': 'will-pryor'}}, {'is_past': True, 'title': 'Management Positions', 'person': {'first_name': 'Yasufumi', 'last_name': 'Hirai', 'permalink': 'yasufumi-hirai'}}, {'is_past': True, 'title': 'Systems Analyst', 'person': {'first_name': 'Brian', 'last_name': 'Fioca', 'permalink': 'brian-fioca'}}, {'is_past': True, 'title': 'Internal Executive and Field Communications Lead/Site Communications Lead', 'person': {'first_name': 'Arun', 'last_name': 'Krishnan', 'permalink': 'arun-krishnan'}}, {'is_past': True, 'title': 'Account Marketing Representative', 'person': {'first_name': 'Patrick', 'last_name': 'Morley', 'permalink': 'patrick-morley'}}, {'is_past': True, 'title': 'HR Account Manager', 'person': {'first_name': 'Nick', 'last_name': 'Camelio', 'permalink': 'nick-camelio'}}, {'is_past': True, 'title': 'Senior leadership & Management Roles', 'person': {'first_name': 'Jaime', 'last_name': 'Valles', 'permalink': 'jaime-valles'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Jennifer', 'last_name': 'Goldsmith', 'permalink': 'jennifer-goldsmith'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kevin', 'last_name': 'Johnson', 'permalink': 'kevin-johnson'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Todd', 'last_name': 'Rulon-Miller', 'permalink': 'todd-rulon-miller'}}, {'is_past': True, 'title': 'Senior Technical Staff Member', 'person': {'first_name': 'Rick', 'last_name': 'Cole', 'permalink': 'rick-cole'}}, {'is_past': True, 'title': 'Western Region Sales Leader - Enterprise Marketing Management', 'person': {'first_name': 'Jason', 'last_name': 'Han', 'permalink': 'jason-han'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Mick', 'last_name': 'Hollison', 'permalink': 'mick-hollison'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Scott', 'last_name': 'Sorensen', 'permalink': 'scott-sorensen'}}, {'is_past': True, 'title': 'Business Analytics', 'person': {'first_name': 'Lara', 'last_name': 'Shackelford', 'permalink': 'lara-shackelford'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Bruno', 'last_name': 'Santos', 'permalink': 'bruno-santos-2'}}, {'is_past': True, 'title': 'General Manager Global Banking & Financial Markets, Global Lead Partner, Banking and Financial Markets, Business Consulting Services, Global Leader Financial Services Strategy & Change Practice', 'person': {'first_name': 'Shanker', 'last_name': 'Ramamurthy', 'permalink': 'shanker-ramamurthy'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Gary', 'last_name': 'Schofield', 'permalink': 'gary-schofield'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Robert', 'last_name': 'Youngjohns', 'permalink': 'robert-youngjohns'}}, {'is_past': True, 'title': 'GM, BPO & CRM Services Division ,, Variety of executive/mgmt positions', 'person': {'first_name': 'Karen', 'last_name': 'Riley', 'permalink': 'karen-riley'}}, {'is_past': True, 'title': 'Corporate Development - Mergers & Acquisitions Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Artz', 'permalink': 'andy-artz'}}, {'is_past': True, 'title': 'global professional services', 'person': {'first_name': 'Gordon', 'last_name': 'Adams', 'permalink': 'gordon-adams'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Andy', 'last_name': 'Halsall', 'permalink': 'andy-halsall'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Olivier', 'last_name': 'Modica', 'permalink': 'olivier-modica'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Aymeric', 'last_name': 'Puech', 'permalink': 'aymeric-puech'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Christopher', 'last_name': 'Schaepe', 'permalink': 'christopher-schaepe'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Anne', 'last_name': 'Bonaparte', 'permalink': 'anne-bonaparte'}}, {'is_past': True, 'title': 'Project Accountant', 'person': {'first_name': 'Derek', 'last_name': 'Stewart', 'permalink': 'derek-stewart'}}, {'is_past': True, 'title': 'Senior Technical Architect', 'person': {'first_name': 'Gordon', 'last_name': 'Simpson', 'permalink': 'gordon-simpson'}}, {'is_past': True, 'title': 'Researcher', 'person': {'first_name': 'Stephen', 'last_name': 'R. Smoot', 'permalink': 'stephen-r-smoot'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'David', 'last_name': 'Ting', 'permalink': 'david-ting'}}, {'is_past': True, 'title': 'Application Development, Marketing and Sales', 'person': {'first_name': 'Jason', 'last_name': 'Abodeely', 'permalink': 'jason-abodeely'}}, {'is_past': True, 'title': 'VLSI semiconductor engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Kau', 'permalink': 'andrew-kau'}}, {'is_past': True, 'title': 'MBA Intern', 'person': {'first_name': 'Joseph', 'last_name': 'Holland', 'permalink': 'joseph-holland'}}, {'is_past': True, 'title': 'Developer Intern', 'person': {'first_name': 'Eytan', 'last_name': 'Seidman', 'permalink': 'eytan-seidman'}}, {'is_past': True, 'title': 'IT Strategy', 'person': {'first_name': 'Anthony', 'last_name': 'Austin', 'permalink': 'anthony-austin'}}, {'is_past': True, 'title': 'Greater China General Manager', 'person': {'first_name': 'Anderson', 'last_name': 'Wong', 'permalink': 'anderson-wong'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Don', 'last_name': 'Rainey', 'permalink': 'don-rainey'}}, {'is_past': True, 'title': 'Project Management / Systems Integration', 'person': {'first_name': 'Tom', 'last_name': 'Hartzell', 'permalink': 'tom-hartzell'}}, {'is_past': True, 'title': 'variety of executive positions', 'person': {'first_name': 'Timothy', 'last_name': 'Brown', 'permalink': 'timothy-brown'}}, {'is_past': True, 'title': 'Technical Specialist', 'person': {'first_name': 'Dave', 'last_name': 'Micalizzi', 'permalink': 'dave-micalizzi'}}, {'is_past': True, 'title': 'Lean Manufacturing Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Axe', 'permalink': 'brian-axe-2'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Gray', 'last_name': 'Hall', 'permalink': 'gray-hall'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'James', 'last_name': 'Elste', 'permalink': 'james-elste'}}, {'is_past': True, 'title': 'Member of the Technical Staff', 'person': {'first_name': 'Francis', 'last_name': 'deSouza', 'permalink': 'francis-desouza'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Gaurav', 'last_name': 'Sharma', 'permalink': 'gaurav-sharma-10'}}, {'is_past': True, 'title': 'Sr. Engineer (C)', 'person': {'first_name': 'Chandra', 'last_name': 'Pandey', 'permalink': 'chandra-pandey'}}, {'is_past': True, 'title': 'Lead Developer', 'person': {'first_name': 'Amir', 'last_name': 'Alon', 'permalink': 'amir-alon'}}, {'is_past': True, 'title': 'Client Rep', 'person': {'first_name': 'Ken', 'last_name': 'Cho', 'permalink': 'ken-cho'}}, {'is_past': True, 'title': 'Business Unit Executive, Applications on Demand', 'person': {'first_name': 'Scott', 'last_name': 'Weber', 'permalink': 'scott-weber'}}, {'is_past': True, 'title': 'Senior Management Consultant', 'person': {'first_name': 'Terry', 'last_name': 'Lynn', 'permalink': 'terry-lynn'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Jeff', 'last_name': 'Stacey', 'permalink': 'jeff-stacey'}}, {'is_past': True, 'title': 'Regional Industry Sales Representative', 'person': {'first_name': 'Bob', 'last_name': 'Heard', 'permalink': 'bob-heard'}}, {'is_past': True, 'title': 'Member Technical Staff', 'person': {'first_name': 'Gautam', 'last_name': 'Bhargava', 'permalink': 'gautam-bhargava'}}, {'is_past': True, 'title': 'Business Unit Executive', 'person': {'first_name': 'Christian', 'last_name': 'Nall', 'permalink': 'christian-nall'}}, {'is_past': True, 'title': 'Senior Manager Systems Management Strategy', 'person': {'first_name': 'Leo', 'last_name': 'J. Cole', 'permalink': 'leo-j-cole'}}, {'is_past': True, 'title': 'Strategy & Communications, Consultant, Healthcare & LifeSciences', 'person': {'first_name': 'Missy', 'last_name': 'Krasner', 'permalink': 'missy-krasner'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'John', 'last_name': 'A. Swainson', 'permalink': 'john-a-swainson'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Lindsay', 'last_name': 'Mindler', 'permalink': 'lindsay-mindler'}}, {'is_past': True, 'title': 'Marketing Representative', 'person': {'first_name': 'Dennis', 'last_name': 'Kyle', 'permalink': 'dennis-kyle'}}, {'is_past': True, 'title': 'Dealer Advisory Council', 'person': {'first_name': 'Dennis', 'last_name': 'Johnson', 'permalink': 'dennis-johnson'}}, {'is_past': True, 'title': 'sales executive', 'person': {'first_name': 'Aaron', 'last_name': 'Mankovski', 'permalink': 'aaron-mankovski'}}, {'is_past': True, 'title': 'General Manager, Pervasive Computing,,, GM, RS/6000 Division,,, Dir. Yasu M&D', 'person': {'first_name': 'Mark', 'last_name': 'F. Bregman', 'permalink': 'mark-f-bregman-2'}}, {'is_past': True, 'title': 'Sr Technical Writer', 'person': {'first_name': 'Dave', 'last_name': 'Roberts', 'permalink': 'dave-roberts'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Gaurav', 'last_name': 'Kachhawa', 'permalink': 'gaurav-kachhawa'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Joshua', 'last_name': 'Levine', 'permalink': 'joshua-levine'}}, {'is_past': True, 'title': 'PM', 'person': {'first_name': 'Naoshi', 'last_name': 'Suzuki', 'permalink': 'naoshi-suzuki'}}, {'is_past': True, 'title': 'IBM Co-op Program', 'person': {'first_name': 'Daniel', 'last_name': 'Blasingame', 'permalink': 'daniel-blasingame'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Eric', 'last_name': 'Esterlis', 'permalink': 'eric-esterlis'}}, {'is_past': True, 'title': 'Worldwide Marketing Manager', 'person': {'first_name': 'W.', 'last_name': 'Cecyl Hobbs', 'permalink': 'w-cecyl-hobbs'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Zempel', 'permalink': 'jonathan-zempel'}}, {'is_past': True, 'title': 'Advisory Software engineer', 'person': {'first_name': 'John', 'last_name': 'Dickey', 'permalink': 'john-dickey'}}, {'is_past': True, 'title': 'Research Staff Member', 'person': {'first_name': 'Partha', 'last_name': 'Bhattacharya', 'permalink': 'partha-bhattacharya'}}, {'is_past': True, 'title': 'Collegiate Representative', 'person': {'first_name': 'Brian', 'last_name': 'Greenberg', 'permalink': 'brian-j-greenberg'}}, {'is_past': True, 'title': 'Consultant - Strategy & Change', 'person': {'first_name': 'Gabriel', 'last_name': 'Matuschka', 'permalink': 'gabriel-matuschka'}}, {'is_past': True, 'title': 'Marketing Director, IBM Microelectronics', 'person': {'first_name': 'Dave', 'last_name': 'McLean', 'permalink': 'dave-mclean'}}, {'is_past': True, 'title': 'System Analyst', 'person': {'first_name': 'Wolfgang', 'last_name': 'Kandek', 'permalink': 'wolfgang-kandek'}}, {'is_past': True, 'title': 'Territory Systems Engineer', 'person': {'first_name': 'Michel', 'last_name': 'Hepp', 'permalink': 'michel-hepp'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'Blair', 'last_name': 'Taylor', 'permalink': 'blair-taylor'}}, {'is_past': True, 'title': 'Director, Product Strategy', 'person': {'first_name': 'Bob', 'last_name': 'Zurek', 'permalink': 'bob-zurek'}}, {'is_past': True, 'title': 'Marketing and Research & Developmen', 'person': {'first_name': 'Andre', 'last_name': 'Boisvert', 'permalink': 'andre-boisvert'}}, {'is_past': True, 'title': 'Sr Managing Consultant', 'person': {'first_name': 'Brian', 'last_name': 'Brackeen', 'permalink': 'brian-brackeen'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Dunn', 'permalink': 'eric-dunn-2'}}, {'is_past': True, 'title': 'Executive Position', 'person': {'first_name': 'Chris', 'last_name': 'Huff', 'permalink': 'chris-huff'}}, {'is_past': True, 'title': 'Marketing Executive', 'person': {'first_name': 'Mick', 'last_name': 'Liubinskas', 'permalink': 'mick-liubinskas'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Rob', 'last_name': 'Meadows', 'permalink': 'rob-meadows'}}, {'is_past': True, 'title': 'IBM Collegiate Representative', 'person': {'first_name': 'Randy', 'last_name': 'Schmitz', 'permalink': 'randy-schmitz'}}, {'is_past': True, 'title': 'Vice President, Demand Generation', 'person': {'first_name': 'Scott', 'last_name': 'Frank', 'permalink': 'scott-frank'}}, {'is_past': True, 'title': 'Finance', 'person': {'first_name': 'Matt', 'last_name': 'Zakrzewski', 'permalink': 'matt-zakrzewski'}}, {'is_past': True, 'title': 'Director, Alliances', 'person': {'first_name': 'Peter', 'last_name': 'Lalonde', 'permalink': 'peter-lalonde'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kurt', 'last_name': 'Williams', 'permalink': 'kurt-williams-2'}}, {'is_past': True, 'title': 'Executive Relationship Manager', 'person': {'first_name': 'Pete', 'last_name': 'Wassell', 'permalink': 'pete-wassell'}}, {'is_past': True, 'title': 'Object Oriented Programming Department', 'person': {'first_name': 'Ben', 'last_name': 'Whitaker', 'permalink': 'ben-whitaker'}}, {'is_past': True, 'title': 'Sr.Management Role', 'person': {'first_name': 'Amir', 'last_name': 'Mobini', 'permalink': 'amir-mobini'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Tom', 'last_name': 'Scott', 'permalink': 'tom-scott'}}, {'is_past': True, 'title': 'Marketing Manager/Representative', 'person': {'first_name': 'Luis', 'last_name': 'B. Curet', 'permalink': 'luis-b-curet'}}, {'is_past': True, 'title': 'System Analyst', 'person': {'first_name': 'Benoit', 'last_name': 'Scheen', 'permalink': 'benot-scheen'}}, {'is_past': True, 'title': 'Staff Engineer', 'person': {'first_name': 'Reid', 'last_name': 'Hutchins', 'permalink': 'reid-hutchins'}}, {'is_past': True, 'title': 'xSeries Server/Storage Specialist', 'person': {'first_name': 'Sam', 'last_name': 'Herren', 'permalink': 'sam-herren'}}, {'is_past': True, 'title': 'Software Development Manager', 'person': {'first_name': 'Robbie', 'last_name': 'Williamson', 'permalink': 'robbie-willamson'}}, {'is_past': True, 'title': 'IBM Systems Software Specialist', 'person': {'first_name': 'David', 'last_name': 'B. Jackson', 'permalink': 'david-b-jackson'}}, {'is_past': True, 'title': 'Regional Industry Marketing Manager', 'person': {'first_name': 'Art', 'last_name': 'Roldan', 'permalink': 'art-roldan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Rathore', 'permalink': 'amit-rathore'}}, {'is_past': True, 'title': 'Managing Consultant', 'person': {'first_name': 'Gibb', 'last_name': 'Witham', 'permalink': 'gibb-witham'}}, {'is_past': True, 'title': 'Senior Executive Positions', 'person': {'first_name': 'Andy', 'last_name': 'Rappaport', 'permalink': 'andy-rappaport'}}, {'is_past': True, 'title': 'Manager, Marketing Planning', 'person': {'first_name': 'Jay', 'last_name': 'Gardner', 'permalink': 'jay-gardner-2'}}, {'is_past': True, 'title': 'Group Manager, Collaborative Services', 'person': {'first_name': 'Jim', 'last_name': 'Lidestri', 'permalink': 'jim-lidestri'}}, {'is_past': True, 'title': 'Marketing Specialist', 'person': {'first_name': 'Ed', 'last_name': 'Barrientos', 'permalink': 'ed-barrientos'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Quynh', 'last_name': 'Pham', 'permalink': 'quynh-pham'}}, {'is_past': True, 'title': 'Advisory Engineer', 'person': {'first_name': 'Rich', 'last_name': 'Warwick', 'permalink': 'rich-warwick'}}, {'is_past': True, 'title': 'Systems Engineer, Marketing Represenative, Corporate Development executive', 'person': {'first_name': 'Michael', 'last_name': 'Balmuth', 'permalink': 'michael-balmuth'}}, {'is_past': True, 'title': 'Sr. Associate System Engineer', 'person': {'first_name': 'Sachin', 'last_name': 'Soni', 'permalink': 'sachin-soni'}}, {'is_past': True, 'title': 'Technical Lead, Hardware & Software Engineering', 'person': {'first_name': 'Rahul', 'last_name': 'Bawa', 'permalink': 'rahul-bawa'}}, {'is_past': True, 'title': 'Competitive Intelligence Unit', 'person': {'first_name': 'Lee', 'last_name': 'Chuen Ting', 'permalink': 'lee-chuen-ting'}}, {'is_past': True, 'title': 'Business Executive', 'person': {'first_name': 'Mads', 'last_name': 'Jensen', 'permalink': 'mads-jensen'}}, {'is_past': True, 'title': 'Extreme Blue Summer Associate', 'person': {'first_name': 'B.', 'last_name': 'Christopher Kim', 'permalink': 'b-christopher-kim'}}, {'is_past': True, 'title': 'Senior Researcher', 'person': {'first_name': 'Paul', 'last_name': 'May', 'permalink': 'paul-may-4'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Andy', 'last_name': 'Norman', 'permalink': 'andy-norman'}}, {'is_past': True, 'title': 'Master Inventor, Sr. Mgr. Targeted Internet Solutions', 'person': {'first_name': 'whurley', 'last_name': '(william hurley)', 'permalink': 'whurley-william-hurley'}}, {'is_past': True, 'title': 'Busines Unit Executive', 'person': {'first_name': 'Glen', 'last_name': 'Schrank', 'permalink': 'glen-schrank'}}, {'is_past': True, 'title': 'Director of marketing', 'person': {'first_name': 'Brain', 'last_name': 'Anderson', 'permalink': 'brain-anderson'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Pradeep', 'last_name': 'Chaudhry', 'permalink': 'pradeep-chaudhry'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Robert', 'last_name': 'M. Howe', 'permalink': 'robert-m-howe-iii'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Seth', 'last_name': 'Tropper', 'permalink': 'seth-tropper'}}, {'is_past': True, 'title': 'Snr. Finance & Strategy Roles', 'person': {'first_name': 'Stephen', 'last_name': 'Henkenmeier', 'permalink': 'stephen-henkenmeier'}}, {'is_past': True, 'title': 'Program Director', 'person': {'first_name': 'Vic', 'last_name': 'Nyman', 'permalink': 'vic-nyman'}}, {'is_past': True, 'title': 'Engineering and Managerial Positions', 'person': {'first_name': 'Mary', 'last_name': 'Boose', 'permalink': 'mary-boose'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Shellye', 'last_name': 'Archambeau', 'permalink': 'shellye-archambeau'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Stefan', 'last_name': 'Lai', 'permalink': 'stefan-lai'}}, {'is_past': True, 'title': 'Business Unit Manager OEM; Business Unit Manager CIM (Computer Integrated Manufacturing) Zurich Switzerland Vienna Austria', 'person': {'first_name': 'Ulf', 'last_name': 'Claesson', 'permalink': 'ulf-claesson'}}, {'is_past': True, 'title': 'Contract Consultant, DB/2 Database Division', 'person': {'first_name': 'Larry', 'last_name': 'Philps', 'permalink': 'larry-philps'}}, {'is_past': True, 'title': 'Communications Specialist', 'person': {'first_name': 'Judith', 'last_name': 'Gan', 'permalink': 'judith-gan'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'Bassam', 'last_name': 'Salem', 'permalink': 'bassam-salem'}}, {'is_past': True, 'title': 'Managing Consultant', 'person': {'first_name': 'Sean', 'last_name': 'Fleming', 'permalink': 'sean-fleming'}}, {'is_past': True, 'title': 'Advisory Sales Leader', 'person': {'first_name': 'Steve', 'last_name': 'Millard', 'permalink': 'steve-millard'}}, {'is_past': True, 'title': 'Senior Manager, Information Management Software Support & Development, Latin America', 'person': {'first_name': 'Michael', 'last_name': 'Hiskey', 'permalink': 'michael-hiskey'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Jimmy', 'last_name': 'Fitzgerald', 'permalink': 'jimmy-fitzgerald'}}, {'is_past': True, 'title': 'Global Marketing and Business Development', 'person': {'first_name': 'Anna', 'last_name': 'Convery', 'permalink': 'anna-convery'}}, {'is_past': True, 'title': 'Software Account Manager', 'person': {'first_name': 'Armando', 'last_name': 'Gonzalez', 'permalink': 'armando-gonzalez-2'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Jenn', 'last_name': 'Markey', 'permalink': 'jenn-markey'}}, {'is_past': True, 'title': 'IT Specialist', 'person': {'first_name': 'Melissa', 'last_name': 'Davis', 'permalink': 'melissa-davis-2'}}, {'is_past': True, 'title': 'GM and Various', 'person': {'first_name': 'Rudy', 'last_name': 'Wedenoja', 'permalink': 'rudy-wedenoja'}}, {'is_past': True, 'title': 'Senior Legal Counsel', 'person': {'first_name': 'Alexander', 'last_name': 'Grinberg', 'permalink': 'alex-grinberg'}}, {'is_past': True, 'title': 'Research Team', 'person': {'first_name': 'Ken', 'last_name': 'Mackay', 'permalink': 'ken-mackay'}}, {'is_past': True, 'title': 'Specialty in the Semiconductor and Communication Industry', 'person': {'first_name': 'David', 'last_name': 'Chang', 'permalink': 'david-chang-6'}}, {'is_past': True, 'title': 'Technical Writer', 'person': {'first_name': 'Robin', 'last_name': 'Caputo', 'permalink': 'robin-caputo'}}, {'is_past': True, 'title': 'Financial Advisor', 'person': {'first_name': 'Scott', 'last_name': 'Gorton', 'permalink': 'scott-gorton'}}, {'is_past': True, 'title': 'Sales / Account Management', 'person': {'first_name': 'Ed', 'last_name': 'Dougherty', 'permalink': 'ed-dougherty'}}, {'is_past': True, 'title': 'Executive positions', 'person': {'first_name': 'Randy', 'last_name': 'Holl', 'permalink': 'randy-holl'}}, {'is_past': True, 'title': 'Operations & Sales', 'person': {'first_name': 'Vete', 'last_name': 'Clements', 'permalink': 'vete-clements'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Shrikant', 'last_name': 'Parikh', 'permalink': 'shrikant-parikh'}}, {'is_past': True, 'title': 'Professional Software', 'person': {'first_name': 'Ken', 'last_name': 'Steele', 'permalink': 'ken-steele'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Promod', 'last_name': 'Narang', 'permalink': 'promod-narang'}}, {'is_past': True, 'title': 'Leader of the Strategic Sourcing Center', 'person': {'first_name': 'Elmer', 'last_name': 'Letts', 'permalink': 'elmer-letts'}}, {'is_past': True, 'title': 'Responsible positions (IBM Microelectronics)', 'person': {'first_name': 'William', 'last_name': 'Getchell', 'permalink': 'william-getchell'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kostadin', 'last_name': 'Jordanov', 'permalink': 'kostadin-jordanov'}}, {'is_past': True, 'title': 'Test & Mechanical Engineer', 'person': {'first_name': 'Pavan', 'last_name': 'Gupta', 'permalink': 'pavan-gupta'}}, {'is_past': True, 'title': 'Global Head, Product Management', 'person': {'first_name': 'Stephen', 'last_name': 'Lazenby', 'permalink': 'stephen-lazenby'}}, {'is_past': True, 'title': 'Sales, Marketing & Management roles', 'person': {'first_name': 'Chris', 'last_name': 'Rees', 'permalink': 'chris-rees'}}, {'is_past': True, 'title': 'Associate Partner, Global Business Services Div.', 'person': {'first_name': 'Joseph', 'last_name': 'Fylypowycz', 'permalink': 'joseph-fylypowycz'}}, {'is_past': True, 'title': 'Online Platforms & Applications', 'person': {'first_name': 'Vaidy', 'last_name': 'Panchapakesan', 'permalink': 'vaidy-panchapakesan'}}, {'is_past': True, 'title': 'Exe. positions in leading global consulting practices', 'person': {'first_name': 'Daniel', 'last_name': 'Rizer', 'permalink': 'daniel-rizer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Richard', 'last_name': 'L. FitzGerald', 'permalink': 'richard-l-fitzgerald'}}, {'is_past': True, 'title': 'System Engineer', 'person': {'first_name': 'Pierre', 'last_name': 'Leblanc', 'permalink': 'pierre-leblanc'}}, {'is_past': True, 'title': 'General Manager, IBM System x', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': 'Exe. Positions - IBM Server Group, IBM Asia Pacific & IBM Midwest', 'person': {'first_name': 'Susan', 'last_name': 'M. Whitney', 'permalink': 'susan-m-whitney'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Fletcher', 'last_name': 'Payne', 'permalink': 'fletcher-payne'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andreas', 'last_name': 'Kwiatkowski', 'permalink': 'andreas-kwiatkowski'}}, {'is_past': True, 'title': 'Head, IBM Singapore Software Lab', 'person': {'first_name': 'Cheehan', 'last_name': 'Tee', 'permalink': 'cheehan-tee'}}, {'is_past': True, 'title': 'Software Division / GM, Marketing & Services - Asia Pacific / President - Asia Pacific Services Corporation / Director, Global Strategy', 'person': {'first_name': 'Lloyd', 'last_name': 'G. Waterhouse', 'permalink': 'lloyd-g-waterhouse'}}, {'is_past': True, 'title': 'Leadership positions in Finance', 'person': {'first_name': 'Rajesh', 'last_name': 'Garg', 'permalink': 'rajesh-garg'}}, {'is_past': True, 'title': 'Sr. Management positions', 'person': {'first_name': 'John', 'last_name': 'H. Kispert', 'permalink': 'john-h-kispert'}}, {'is_past': True, 'title': 'Head, Strategy & Market Development - IBM’s Intel Server business', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': True, 'title': 'Head, Global Client Sourcing Team', 'person': {'first_name': 'Bill', 'last_name': 'Huber', 'permalink': 'bill-huber'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Homan', 'last_name': 'Haghighi', 'permalink': 'homan-haghighi'}}, {'is_past': True, 'title': 'Director level positions', 'person': {'first_name': 'Rick', 'last_name': 'Sizemore', 'permalink': 'rick-sizemore'}}, {'is_past': True, 'title': 'General Manager (Lotus Messaging and Collaboration Division) ,, Held Key Executive Positions', 'person': {'first_name': 'Steve', 'last_name': 'Lewis', 'permalink': 'steve-lewis'}}, {'is_past': True, 'title': 'Head, Strategy & Business Execution', 'person': {'first_name': 'Martin', 'last_name': 'Neath', 'permalink': 'martin-neath'}}, {'is_past': True, 'title': 'Vice President of the Financial Analytics Business', 'person': {'first_name': 'Jennifer', 'last_name': 'Francis', 'permalink': 'jennifer-francis'}}, {'is_past': True, 'title': 'General Manager, North America; General Manager, Asia Pacific; General Manager, AS/400 Division; President, National Distribution Division', 'person': {'first_name': 'David', 'last_name': 'M. Thomas', 'permalink': 'david-m-thomas'}}, {'is_past': True, 'title': 'Sales & Marketing positions', 'person': {'first_name': 'Bill', 'last_name': 'McHale', 'permalink': 'bill-mchale'}}, {'is_past': True, 'title': 'Internet Division', 'person': {'first_name': 'Ting', 'last_name': 'Wu', 'permalink': 'ting-wu'}}, {'is_past': True, 'title': 'Various positions', 'person': {'first_name': 'Paul', 'last_name': 'Von Autenried', 'permalink': 'paul-von-autenried'}}, {'is_past': True, 'title': 'Manager, Thermal Processes and Surface Preparation Group', 'person': {'first_name': 'Raj', 'last_name': 'Jammy', 'permalink': 'raj-jammy'}}, {'is_past': True, 'title': 'Head, Strategy for Transaction Processing', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Head, Distributed Network & Systems Business', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sanjiv', 'last_name': 'Ahuja', 'permalink': 'sanjiv-ahuja'}}], 'competitions': [{'competitor': {'name': 'BEA Systems', 'permalink': 'bea-systems'}}, {'competitor': {'name': 'Dell', 'permalink': 'dell'}}, {'competitor': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Nuance Communications', 'permalink': 'nuance'}}, {'competitor': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}, {'competitor': {'name': 'Sun Microsystems', 'permalink': 'sun-microsystems'}}, {'competitor': {'name': 'Infoglide Software Corporation', 'permalink': 'infoglide-software-corporation'}}, {'competitor': {'name': 'Siperian', 'permalink': 'siperian'}}, {'competitor': {'name': 'UnboundID', 'permalink': 'unboundid'}}, {'competitor': {'name': 'Qontext', 'permalink': 'qontext'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'AIIM', 'permalink': 'aiim'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Techaisle ', 'permalink': 'techaisle'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Davies Murphy Group', 'permalink': 'davies-murphy-group'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Swimfish ', 'permalink': 'swimfish'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Synergy Transcription Services', 'permalink': 'synergy-transcription-services'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://www.enterprisedb.com/about/news_events/press_releases/03_25_08a.do', 'source_description': '', 'raised_amount': 16000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 25, 'company': {'name': 'EnterpriseDB', 'permalink': 'enterprisedb'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.monolithics.com/wb/pages/news/allnews.php', 'source_description': 'Sierra Monolithics', 'raised_amount': 14200000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 8, 'funded_day': 28, 'company': {'name': 'Sierra Monolithics', 'permalink': 'sierra-monolithics'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.transitive.com/news/press_full/153', 'source_description': 'IBM announces plans to acquire Transitive', 'acquired_year': 2008, 'acquired_month': 11, 'acquired_day': 18, 'company': {'name': 'Transitive', 'permalink': 'transitive'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2008/01/ibm_buys_novel.html', 'source_description': 'IBM Buys Novel Israeli Storage Firm XIV for $300M+', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 2, 'company': {'name': 'XIV', 'permalink': 'xiv'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'Telelogic', 'permalink': 'telelogic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Capital Report Index', 'acquired_year': 2009, 'acquired_month': 5, 'acquired_day': 5, 'company': {'name': 'Exeros', 'permalink': 'exeros'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23996.wss', 'source_description': 'IBM Acquires InfoDyne to Create World-Class Platform for Market Data Delivery', 'acquired_year': 2008, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'InfoDyne Corporation', 'permalink': 'infodyne-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Index Report', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Diligent Technologies', 'permalink': 'diligent-technologies'}}, {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.informationweek.com/news/software/database_apps/showArticle.jhtml?articleID=218700131', 'source_description': 'IBM To Acquire SPSS For $1.2 Billion', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'SPSS', 'permalink': 'spss'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bilal.ca/ibm-acquisition-of-outblaze/', 'source_description': 'IBM completes acquisition of Outblaze', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 16, 'company': {'name': 'Outblaze', 'permalink': 'outblaze'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.foxbusiness.com/story/markets/industries/technology/ibm-acquires-ounce-labs/', 'source_description': 'IBM Acquires Ounce Labs, Inc.', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Ounce Labs', 'permalink': 'ounce-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/212796/ibm-acquires-business-redpill-solutions-bolster-analytics-services', 'source_description': 'IBM Acquires Business of RedPill Solutions to Bolster Analytics Services', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'RedPill Solutions', 'permalink': 'redpill-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23967.wss', 'source_description': 'IBM Completes Acquisition of FilesX', 'acquired_year': 2008, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'FilesX', 'permalink': 'filesx'}}, {'price_amount': 225000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/30/confirmed-ibm-acquires-database-security-startup-guardium-for-undisclosed-amount/', 'source_description': 'Confirmed: IBM Acquires Database Security Startup Guardium For Undisclosed Amount', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Guardium', 'permalink': 'guardium'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/257250/ibm-acquire-lombardi', 'source_description': 'IBM to Acquire Lombardi', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Lombardi Software', 'permalink': 'lombardi-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2010/02/03/ibm-acquires-data-management-software-startup-initiate-systems/', 'source_description': 'IBM Acquires Data Management Software Company Initiate Systems', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 3, 'company': {'name': 'Initiate Systems', 'permalink': 'initiate-systems'}}, {'price_amount': 3500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Lotus_Development_Corporation', 'source_description': '', 'acquired_year': 1995, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Lotus Development Corporation', 'permalink': 'lotus-development-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/29323.wss', 'source_description': 'IBM Acquires Automation Software Intelliden', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 16, 'company': {'name': 'Intelliden', 'permalink': 'intelliden'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/03/ibm-acquires-cloud-computing-integration-company-cast-iron-systems/', 'source_description': 'IBM Acquires Cloud Computing Integration Company Cast Iron Systems', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 3, 'company': {'name': 'Cast Iron Systems', 'permalink': 'castiron-systems'}}, {'price_amount': 1400000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/05/24/ibm-acquires-sterling-commerce-from-att-for-1-4-billion/', 'source_description': 'IBM Acquires Sterling Commerce From AT&T For $1.4 Billion', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Sterling Commerce', 'permalink': 'sterling-commerce'}}, {'price_amount': 140000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/06/14/storwize-ibm/', 'source_description': 'IBM close to buying Storwize for $140 million, says Israeli site', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'Storwize', 'permalink': 'storwize'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2010/06/15/ibm-buys-web-analytics-software-maker-coremetrics/', 'source_description': 'IBM Buys Web Analytics Software Maker Coremetrics', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 15, 'company': {'name': 'Coremetrics', 'permalink': 'coremetrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/01/ibm-acquires-enterprise-data-security-software-company-bigfix/', 'source_description': 'IBM Acquires Enterprise Data Security Software Company BigFix', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'BigFix', 'permalink': 'bigfix'}}, {'price_amount': 480000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.masshightech.com/stories/2010/10/04/daily32-IBMs-480M-buyout-of-Unica-complete.html', 'source_description': \"IBM's $480M buyout of Unica complete\", 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Unica', 'permalink': 'unica'}}, {'price_amount': 1700000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/09/20/ibm-buys-data-analytics-company-netezza-for-1-7b/', 'source_description': 'IBM buys data analytics company Netezza for $1.7B', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 20, 'company': {'name': 'Netezza', 'permalink': 'netezza'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/27/ibm-buys-data-center-switching-company-blade-network-technologies/', 'source_description': 'IBM Buys Data Center Switching Company BLADE Network Technologies', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'BLADE Network Technologies', 'permalink': 'blade-network-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.alacrastore.com/deal-snapshot/IBM_Corp_acquires_Valchemy_Inc-469048', 'source_description': 'IBM Corp acquires Valchemy Inc', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Valchemy', 'permalink': 'valchemy'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pss-systems.com/news/101310.html', 'source_description': 'IBM Acquires PSS Systems', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 13, 'company': {'name': 'PSS Systems', 'permalink': 'pss-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2010/10/21/ibm-buys-financial-governance-software-company-clarity-systems/', 'source_description': 'IBM Buys Financial Governance Software Company Clarity Systems', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 21, 'company': {'name': 'Clarity Systems', 'permalink': 'clarity-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/1219.wss', 'source_description': 'IBM Completes Mainspring Acquisition', 'acquired_year': 2001, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'Mainspring', 'permalink': 'mainspring'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/947.wss', 'source_description': 'IBM Completes Acquisition of CrossWorlds Software', 'acquired_year': 2002, 'acquired_month': 1, 'acquired_day': 14, 'company': {'name': 'CrossWorlds Software', 'permalink': 'crossworlds-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/631.wss', 'source_description': 'IBM Acquires Metamerge', 'acquired_year': 2002, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Metamerge', 'permalink': 'metamerge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/547.wss', 'source_description': 'IBM Acquires TrelliSoft', 'acquired_year': 2002, 'acquired_month': 8, 'acquired_day': 29, 'company': {'name': 'TrelliSoft', 'permalink': 'trellisoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/534.wss', 'source_description': 'IBM Acquires Holosofx to Extend WebSphere Business Integration Software Portfolio', 'acquired_year': 2002, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'HOLOSOFX', 'permalink': 'holosofx'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/491.wss', 'source_description': 'IBM, PricewaterhouseCoopers Complete Sale of PwC Consulting', 'acquired_year': 2002, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'PwC Consulting', 'permalink': 'pwc-consulting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.networkworld.com/news/2002/0903acc360.html', 'source_description': 'IBM to acquire Access360', 'acquired_year': 2002, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Access360', 'permalink': 'access360'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/481.wss', 'source_description': 'IBM To Acquire EADS Matra Datavision', 'acquired_year': 2002, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'EADS Matra Datavision', 'permalink': 'eads-matra-datavision'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/428.wss', 'source_description': 'IBM Completes Acquisition Of Tarian Software', 'acquired_year': 2002, 'acquired_month': 11, 'acquired_day': 15, 'company': {'name': 'Tarian Software', 'permalink': 'tarian-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/314.wss', 'source_description': 'IBM Completes Acquisition of Rational Software', 'acquired_year': 2003, 'acquired_month': 2, 'acquired_day': 21, 'company': {'name': 'Rational Software', 'permalink': 'rational-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/214.wss', 'source_description': 'IBM Acquires Think Dynamics', 'acquired_year': 2003, 'acquired_month': 5, 'acquired_day': 14, 'company': {'name': 'Think Dynamics', 'permalink': 'think-dynamics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/5531.wss', 'source_description': 'IBM Acquires Aptrix', 'acquired_year': 2003, 'acquired_month': 7, 'acquired_day': 15, 'company': {'name': 'Aptrix', 'permalink': 'aptrix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6140.wss', 'source_description': 'IBM to Acquire CrossAccess Technology, Extends Leadership in Information Integration', 'acquired_year': 2003, 'acquired_month': 10, 'acquired_day': 14, 'company': {'name': 'CrossAccess', 'permalink': 'crossaccess'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6335.wss', 'source_description': 'IBM Acquires Retail Self-Checkout Leader, PSI', 'acquired_year': 2003, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Productivity Solutions', 'permalink': 'productivity-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6504.wss', 'source_description': 'IBM Acquires Green Pasture Software', 'acquired_year': 2003, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'Green Pasture Software', 'permalink': 'green-pasture-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/6968.wss', 'source_description': 'IBM Completes Acquisition of Trigo Technologies', 'acquired_year': 2004, 'acquired_month': 4, 'acquired_day': 6, 'company': {'name': 'Trigo Technologies', 'permalink': 'trigo-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7160.wss', 'source_description': 'IBM Completes Acquisition of Candle Corporation', 'acquired_year': 2004, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'Candle', 'permalink': 'candle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7223.wss', 'source_description': 'IBM to Acquire Alphablox Corporation, Strengthens Leadership in Business Intelligence', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 14, 'company': {'name': 'AlphaBlox Corporation', 'permalink': 'alphablox-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7245.wss', 'source_description': 'IBM To Acquire Cyanea', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 29, 'company': {'name': 'Cyanea Systems', 'permalink': 'cyanea-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7327.wss', 'source_description': 'IBM Completes Acquisition of Venetica', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'Venetica', 'permalink': 'venetica'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7410.wss', 'source_description': 'IBM Completes Acquisition of Systemcorp', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 19, 'company': {'name': 'Systemcorp A.L.G.', 'permalink': 'systemcorp-a-l-g'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7415.wss', 'source_description': 'IBM to Acquire Liberty Insurance Services', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 23, 'company': {'name': 'Liberty Insurance Services', 'permalink': 'liberty-insurance-services'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.financialexpress.com/news/ibm-to-buy-maersk-data/113320/0', 'source_description': 'IBM To Buy Maersk Data', 'acquired_year': 2004, 'acquired_month': 8, 'acquired_day': 18, 'company': {'name': 'Maersk Data', 'permalink': 'maersk-data'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7455.wss', 'source_description': 'IBM to Acquire KeyMRO, Procurement Services Leader in Europe and North America', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': 13, 'company': {'name': 'KeyMRO', 'permalink': 'keymro'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7471.wss', 'source_description': 'IBM Acquires SRD, Breaks New Ground in Identity Resolution Software', 'acquired_year': 2005, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'SRD', 'permalink': 'srd'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7567.wss', 'source_description': 'IBM Completes Acquisition of Corio', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Corio', 'permalink': 'corio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7642.wss', 'source_description': 'IBM Completes Acquisition Of Ascential Software', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Ascential Software', 'permalink': 'ascential-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7658.wss', 'source_description': 'IBM Acquires Gluecode Software', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 10, 'company': {'name': 'Gluecode Software', 'permalink': 'gluecode-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7755.wss', 'source_description': 'IBM Acquires Meiosys', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Meiosys', 'permalink': 'meiosys'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7820.wss', 'source_description': 'IBM Formally Acquires PureEdge Solutions Inc.,', 'acquired_year': 2005, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'PureEdge Solutions', 'permalink': 'pureedge-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7811.wss', 'source_description': 'IBM Completes Acquisition of Isogon Corporation', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 27, 'company': {'name': 'Isogon Corporation', 'permalink': 'isogon-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7867.wss', 'source_description': 'IBM Formally Acquires DWL, Enhancing Data Integration Portfolio', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'DWL', 'permalink': 'dwl'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7934.wss', 'source_description': 'IBM Acquires DataPower', 'acquired_year': 2005, 'acquired_month': 10, 'acquired_day': 18, 'company': {'name': 'DataPower Technology', 'permalink': 'datapower-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/7952.wss', 'source_description': 'IBM Acquires the Business of iPhrase Systems, Inc.', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 1, 'company': {'name': 'iPhrase Technologies', 'permalink': 'iphrase-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://dqchannels.ciol.com/content/reselleralert/105110901.asp', 'source_description': 'IBM to acquire Network Solutions', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Network Solutions Private Limited', 'permalink': 'network-solutions-private-limited'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19064.wss', 'source_description': 'IBM Acquires Bowstreet, Inc. to Help Customers Quickly Create Portals that Integrate Existing Business Applications', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'Bowstreet', 'permalink': 'bowstreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19160.wss', 'source_description': 'IBM Acquires ARGUS Semiconductor Software From INFICON', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 27, 'company': {'name': 'ARGUS Semiconductor Software', 'permalink': 'argus-semiconductor-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19153.wss', 'source_description': 'IBM Acquires CIMS Lab, Inc.', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'CIMS Lab', 'permalink': 'cims-lab'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eweek.com/c/a/IT-Management/IBM-Acquires-Viacore/', 'source_description': 'IBM Acquires Viacore', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 8, 'company': {'name': 'Viacore', 'permalink': 'viacore'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19247.wss', 'source_description': 'IBM Completes Acquisition of Micromuse Inc.', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 15, 'company': {'name': 'Micromuse', 'permalink': 'micromuse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19394.wss', 'source_description': 'IBM TO ACQUIRE LANGUAGE ANALYSIS SYSTEMS, INC.', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Language Analysis Systems', 'permalink': 'language-analysis-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/19604.wss', 'source_description': 'IBM Acquires BuildForge, Inc. to Help Organizations Meet Compliance Demands', 'acquired_year': 2006, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'BuildForge', 'permalink': 'buildforge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.forrester.com/rb/Research/ibm_accelerates_metadata_investments_with_acquisition_of/q/id/39682/t/2', 'source_description': 'IBM Accelerates Metadata Investments With Acquisition Of Unicorn Solutions', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 6, 'company': {'name': 'Unicorn Solutions', 'permalink': 'unicorn-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://spectroscopyonline.findanalytichem.com/spectroscopy/article/articleDetail.jsp?id=327850', 'source_description': 'IBM to acquire Rembo Technology', 'acquired_year': 2006, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Rembo Technology', 'permalink': 'rembo-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20058.wss', 'source_description': 'IBM Acquires Webify', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 2, 'company': {'name': 'Webify Solutions', 'permalink': 'webify-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20206.wss', 'source_description': 'IBM Acquires Full Ownership of Brazilian SMB Services Firm Global Value Solutions', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 6, 'company': {'name': 'Global Value Solutions', 'permalink': 'global-value-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20397.wss', 'source_description': 'IBM Completes Acquisition of MRO Software, Inc.', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'MRO Software', 'permalink': 'mro-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20429.wss', 'source_description': 'IBM Completes Acquisition of FileNet Corporation', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 12, 'company': {'name': 'FileNet Corporation', 'permalink': 'filenet-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20468.wss', 'source_description': 'IBM Completes Acquisition of Internet Security Systems', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Internet Security Systems', 'permalink': 'internet-security-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20598.wss', 'source_description': 'IBM Completes the Acquisition of Palisades Technology Partners', 'acquired_year': 2006, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Palisades Technology Partners', 'permalink': 'palisades-technology-partners'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/20964.wss', 'source_description': 'IBM Completes Acquisition of Consul', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'Consul risk management international', 'permalink': 'consul-risk-management-international'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21076.wss', 'source_description': 'IBM Completes Acquisition of Vallent', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': 14, 'company': {'name': 'Vallent Corporation', 'permalink': 'vallent-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21164.wss', 'source_description': 'IBM Completes Acquisition of Softek', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Softek Storage Solutions', 'permalink': 'softek-storage-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/21921.wss', 'source_description': 'IBM Completes Acquisition of Watchfire', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 23, 'company': {'name': 'Watchfire', 'permalink': 'watchfire'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22210.wss', 'source_description': 'IBM Acquires WebDialogs to Expand Web Conferencing Capabilities in Industry-Leading Lotus Sametime ', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 22, 'company': {'name': 'Webdialogs', 'permalink': 'webdialogs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22282.wss', 'source_description': 'IBM Completes Acquisition of DataMirror', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 4, 'company': {'name': 'DataMirror', 'permalink': 'datamirror'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22318.wss', 'source_description': 'IBM Completes Acquisition of Princeton Softech', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 13, 'company': {'name': 'Princeton Softech', 'permalink': 'princeton-softech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22476.wss', 'source_description': 'IBM Acquires Storage Solutions Company NovusCG', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 24, 'company': {'name': 'NovusCG', 'permalink': 'novuscg'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23376.wss', 'source_description': 'IBM Acquires AptSoft to Expand Portfolio in Burgeoning Business Events Software Market', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 23, 'company': {'name': 'AptSoft', 'permalink': 'aptsoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/22921.wss', 'source_description': 'IBM to Acquire Solid Information Technology to Broaden Information on Demand Portfolio', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': 21, 'company': {'name': 'Solid Information Technology', 'permalink': 'solid-information-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23423.wss', 'source_description': 'IBM Completes Acquisition of Cognos', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Cognos', 'permalink': 'cognos'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23404.wss', 'source_description': 'IBM Completes Acquisition of Arsenal Digital Solutions', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Arsenal Digital Solutions', 'permalink': 'arsenal-digital-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23325.wss', 'source_description': 'IBM Reaches Agreement to Acquire Net Integration Technologies Inc.', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Net Integration Technologies', 'permalink': 'net-integration-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/23653.wss', 'source_description': 'IBM Acquires Encentuate', 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 12, 'company': {'name': 'Encentuate', 'permalink': 'encentuate'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/24560.wss', 'source_description': 'IBM Acquires Platform Solutions', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'Platform Solutions', 'permalink': 'platform-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/24740.wss', 'source_description': 'IBM Announces Plans to Acquire ILOG', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'ILOG', 'permalink': 'ilog'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/34296.wss', 'source_description': 'IBM Buys Real Estate And Facilities Management Software Company TRIRIGA', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 14, 'company': {'name': 'TRIRIGA', 'permalink': 'tririga'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/31/ibm-buys-crime-prevention-and-data-intelligence-software-developer-i2/', 'source_description': 'IBM Buys Crime Prevention And Data Intelligence Software Developer i2', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'i2', 'permalink': 'i2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/ibm-to-acquire-algorithmics-128865648.html', 'source_description': 'IBM to Acquire Algorithmics', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'Algorithmics', 'permalink': 'algorithmics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/10/04/ibm-buys-network-security-intelligence-company-q1-labs/', 'source_description': 'IBM Buys Network Security Intelligence Company Q1 Labs', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 4, 'company': {'name': 'Q1 Labs', 'permalink': 'q1-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/559423/ibm-acquire-system-software-company-platform-computing-extend-reach-technical-computing', 'source_description': 'IBM to Acquire System Software Company Platform Computing to Extend Reach of Technical Computing', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 11, 'company': {'name': 'Platform Computing', 'permalink': 'platform-computing'}}, {'price_amount': 440000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/08/ibm-buys-retail-forecasting-and-merchandising-software-company-demandtec-for-440m/', 'source_description': 'IBM Buys Retail Forecasting And Merchandising Software Company DemandTec For $440M', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 8, 'company': {'name': 'DemandTec', 'permalink': 'demandtec'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/15/ibm-buys-supply-chain-analytics-software-emptoris-to-boost-smarter-commerce-offerings/', 'source_description': 'IBM Buys Supply Chain Analytics Software Emptoris To Boost Smarter Commerce Offerings', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Emptoris', 'permalink': 'emptoris'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/01/04/ibm-buys-cloud-based-software-testing-platform-green-hat/', 'source_description': 'IBM Buys Cloud-Based Software Testing Platform Green Hat', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'Green Hat', 'permalink': 'green-hat'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/01/31/ibm-buys-html5-app-development-company-worklight-to-expand-mobile-enterprise-services/', 'source_description': 'IBM Buys HTML5 App Development Company WorkLight For $70M To Expand Mobile Enterprise Services', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Worklight', 'permalink': 'worklight'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/13/ibm-acquires-sales-data-and-analytics-software-company-varicent/', 'source_description': 'IBM Acquires Sales Data And Analytics Software Company Varicent', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'Varicent Software', 'permalink': 'varicent-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/25/ibm-acquires-enterprise-search-software-company-vivisimo-to-boost-big-data-analytics/', 'source_description': 'IBM Acquires Enterprise Search Software Company Vivisimo To Boost Big Data Analytics', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 25, 'company': {'name': 'Vivisimo', 'permalink': 'vivsimo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/02/ibm-acquires-tealeaf-to-add-customer-buying-analytics-to-smarter-commerce-products/', 'source_description': 'IBM Acquires Tealeaf To Add Customer Buying Analytics To Smarter Commerce Products', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Tealeaf', 'permalink': 'tealeaf'}}, {'price_amount': 1300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/27/ibm-acquires-hr-and-talent-management-software-company-kenexa-for-1-3b-in-cash/', 'source_description': 'IBM Buys Social HR And Talent Management Software Company Kenexa For $1.3B In Cash', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 28, 'company': {'name': 'Kenexa', 'permalink': 'kenexa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/24/ibm-acquires-butterfly-software-for-data-analysis-and-advanced-storage-capabilites/', 'source_description': 'IBM Acquires Butterfly Software For Data Analysis And Advanced Storage Capabilites', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 24, 'company': {'name': 'Butterfly Software', 'permalink': 'butterfly-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/755307/ibm-acquire-star-analytics-inc-', 'source_description': 'IBM to Acquire Star Analytics, Inc.', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Star Analytics', 'permalink': 'star-analytics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/787778/ibm-acquires-urbancode-help-businesses-rapidly-deliver-mobile-cloud-big-data-and-social', 'source_description': 'IBM ACQUIRES URBANCODE TO HELP BUSINESSES RAPIDLY DELIVER MOBILE, CLOUD, BIG DATA AND SOCIAL SOFTWARE', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 22, 'company': {'name': 'Urbancode', 'permalink': 'urbancode'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-06-04/ibm-to-acquire-cloud-computing-provider-softlayer-technologies.html', 'source_description': ' IBM to Buy Cloud-Computing Firm SoftLayer for $2 Billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'SoftLayer', 'permalink': 'softlayer'}}, {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ynetnews.com/articles/0,7340,L-4403225,00.html', 'source_description': 'IBM buys Israeli CSL for $20M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'company': {'name': 'CSL International', 'permalink': 'csl-international'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/15/ibm-buys-israelus-cybersecurity-specialist-trusteer-for-few-hundred-million-dollars/', 'source_description': 'IBM Buys Israel/US Cybersecurity Specialist Trusteer For Between $800M-$1B', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Trusteer', 'permalink': 'trusteer'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techweekeurope.co.uk/news/ibm-big-data-acquisition-the-now-factory-128534', 'source_description': 'IBM To Acquire Irish Analytics Boffs The Now Factory', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'The Now Factory', 'permalink': 'the-now-factory'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/03/ibm-acquires-xtify-a-mobile-messaging-company/', 'source_description': 'IBM Acquires Xtify, A Mobile Messaging Company', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Xtify Inc.', 'permalink': 'xtify'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://risetothecloud.com/ibm-to-buy-fiberlink-for-mobile-management-informationweek/', 'source_description': 'IBM To Buy Fiberlink For Mobile Management – InformationWeek', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Fiberlink', 'permalink': 'fiberlink-communications-corp'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/19/ibm-buys-aspera-a-file-transfer-company-that-counts-apple-and-netflix-as-customers/', 'source_description': 'IBM Buys Aspera, A File Transfer Company That Counts Apple And Netflix As Customers', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'company': {'name': 'Aspera', 'permalink': 'aspera'}}], 'offices': [{'description': 'Corporate Headquarters', 'address1': 'New Orchard Road', 'address2': '', 'zip_code': '10504', 'city': 'Armonk', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 41.109534, 'longitude': -73.723999}], 'milestones': [{'id': 10471, 'description': 'IBM Completes Acquisition of Informix Database Assets', 'stoned_year': 2001, 'stoned_month': 7, 'stoned_day': 2, 'source_url': 'http://www-03.ibm.com/press/us/en/pressrelease/1174.wss', 'source_text': '', 'source_description': 'IBM Completes Acquisition of Informix Database Assets', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 11620, 'description': 'IBM Beats The Street; Posts Record Revenue Of $29B, Net Income Up 9 Percent', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 18, 'source_url': 'http://techcrunch.com/2011/01/18/ibm-beats-the-street-posts-record-revenue-of-29b-net-income-up-9-percent/', 'source_text': '', 'source_description': 'IBM Beats The Street; Posts Record Revenue Of $29B, Net Income Up 9 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 14252, 'description': 'IBM Beats The Street, Posts Revenue of $24.6B; Net Income Up 10 Percent To $2.9B', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2011/04/19/ibm-beats-the-street-posts-revenue-of-24-6b-net-income-up-10-percent-to-2-9b/', 'source_text': '', 'source_description': 'IBM Beats The Street, Posts Revenue of $24.6B; Net Income Up 10 Percent To $2.9B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 18718, 'description': 'IBM Names Sales Chief Virginia Rometty As CEO, Samuel Palmisano Will Remain As Chairman', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/10/25/ibm-names-sales-chief-virginia-rometty-as-ceo-samuel-palmisano-will-remain-as-chairman/', 'source_text': '', 'source_description': 'IBM Names Sales Chief Virginia Rometty As CEO, Samuel Palmisano Will Remain As Chairman', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 20348, 'description': 'Add FEH as associate partner. ', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 2, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}, {'id': 43985, 'description': 'IBM Buys Dexia Tech Unit, Signs IT Contracts Worth $1.3B', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 9, 'source_url': 'http://www.americanbanker.com/issues/178_235/ibm-buys-dexia-tech-unit-signs-it-contracts-worth-13b-1064123-1.html?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'IBM Buys Dexia Tech Unit, Signs IT Contracts Worth $1.3B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IBM', 'permalink': 'ibm'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1978, 'pub_month': 1, 'pub_day': 13, 'stock_symbol': 'NYSE:IBM'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/6332/46332v1-max-150x150.png'], [[250, 155], 'assets/images/resized/0004/6332/46332v1-max-250x250.png'], [[450, 279], 'assets/images/resized/0004/6332/46332v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/IBM', 'title': 'IBM at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299d33'), 'name': 'Toyota', 'permalink': 'toyota', 'crunchbase_url': 'http://www.crunchbase.com/company/toyota', 'homepage_url': 'http://www.toyota-global.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Toyota', 'category_code': 'enterprise', 'number_of_employees': 320000, 'founded_year': 1933, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '81 5 6528 2121', 'description': 'Automotive', 'created_at': 'Mon Sep 22 22:00:26 UTC 2008', 'updated_at': 'Mon Nov 11 16:24:21 UTC 2013', 'overview': '

Toyota operates 75 manufacturing companies across 28 countries globally, and markets vehicles in more than 170 countries, thanks to the support of a 320,000-strong workforce. \\nToyota began selling cars in Europe in 1963, has invested over 7 billion since 1990 and currently employs some 80,000 people here.

\\n\\n

Their European operations are supported by a network of 31 National Marketing and Sales Companies in 56 countries, around 3,000 retailers, and nine manufacturing plants.

', 'image': {'available_sizes': [[[135, 37], 'assets/images/resized/0006/6965/66965v1-max-150x150.jpg'], [[135, 37], 'assets/images/resized/0006/6965/66965v1-max-250x250.jpg'], [[135, 37], 'assets/images/resized/0006/6965/66965v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': '', 'person': {'first_name': 'Yukari', 'last_name': 'Matsuzawa', 'permalink': 'yukari-matsuzawa'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'John', 'last_name': 'David Chibuk', 'permalink': 'john-david-chibuk'}}, {'is_past': False, 'title': 'Brand Manager', 'person': {'first_name': 'Dimitri', 'last_name': 'Popov', 'permalink': 'dimitri-popov-2'}}, {'is_past': False, 'title': 'Marketing Counsel', 'person': {'first_name': 'Jeff', 'last_name': 'Sherwood', 'permalink': 'jeff-sherwood'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Kathi', 'last_name': 'Hanley', 'permalink': 'kathi-hanley'}}, {'is_past': True, 'title': 'HR Information Systems Senior Specialist', 'person': {'first_name': 'Nadia', 'last_name': 'Lambrechts', 'permalink': 'nadia-lambrechts'}}, {'is_past': True, 'title': 'Internal Auditor / Consultant', 'person': {'first_name': 'Sheryl', 'last_name': 'Ryan', 'permalink': 'sheryl-ryan'}}, {'is_past': True, 'title': 'GM, Production Engineering West Coast, Toyota North America', 'person': {'first_name': 'Gilbert', 'last_name': 'Passin', 'permalink': 'gilbert-passin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kazunori', 'last_name': 'Takeda', 'permalink': 'kazunori-takeda'}}, {'is_past': True, 'title': 'National manager accounting', 'person': {'first_name': 'Robyn', 'last_name': 'Denholm', 'permalink': 'robyn-denholm'}}, {'is_past': True, 'title': 'Software Consultant', 'person': {'first_name': 'Patrik', 'last_name': 'Outericky', 'permalink': 'patrik-outericky'}}, {'is_past': True, 'title': 'Business Partnerships', 'person': {'first_name': 'Dave', 'last_name': 'Peterson', 'permalink': 'dave-peterson-2'}}, {'is_past': True, 'title': 'Management Trainee and Technical Service, US Headquarters', 'person': {'first_name': 'Greg', 'last_name': 'Tarr', 'permalink': 'greg-tarr'}}, {'is_past': True, 'title': 'Lead Researcher, Toyota Motor Sales', 'person': {'first_name': 'Glen', 'last_name': 'Hogue', 'permalink': 'glen-hogue'}}, {'is_past': True, 'title': 'Government Affairs/Corporate Communications', 'person': {'first_name': 'Brian', 'last_name': 'Birkett', 'permalink': 'brian-birkett'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Kentaro', 'last_name': 'Hyakuno', 'permalink': 'kentaro-hyakuno'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Erick', 'last_name': 'Herring', 'permalink': 'erick-herring'}}, {'is_past': True, 'title': 'Strategic & Product planning & Corporate Finance - USA', 'person': {'first_name': 'Jim', 'last_name': 'Nguyen', 'permalink': 'jim-nguyen'}}], 'competitions': [], 'providerships': [{'title': '', 'is_past': True, 'provider': {'name': 'Leader', 'permalink': 'leader-enterprises'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://onbiovc.com/dnp-green-technology-inc-series-a-12m/', 'source_description': 'DNP Green Technology, Inc.: Series A $12M', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 17, 'company': {'name': 'DNP Green Technology', 'permalink': 'dnp-green-technology'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': 'Toyota Motor Corporation 1', 'address2': 'Toyota-cho', 'zip_code': '471-8571', 'city': 'Aichi', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 84], 'assets/images/resized/0035/5660/355660v2-max-150x150.png'], [[250, 140], 'assets/images/resized/0035/5660/355660v2-max-250x250.png'], [[450, 253], 'assets/images/resized/0035/5660/355660v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 47], 'assets/images/resized/0035/5661/355661v1-max-150x150.png'], [[250, 78], 'assets/images/resized/0035/5661/355661v1-max-250x250.png'], [[450, 141], 'assets/images/resized/0035/5661/355661v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b0fe'), 'name': 'Nippon Telegraph and Telephone Corporation', 'permalink': 'nippon-telegraph-and-telephone-corporation', 'crunchbase_url': 'http://www.crunchbase.com/company/nippon-telegraph-and-telephone-corporation', 'homepage_url': 'http://www.ntt.co.jp/index_e.html', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': None, 'number_of_employees': 227000, 'founded_year': 1985, 'founded_month': 4, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue Feb 17 16:43:28 UTC 2009', 'updated_at': 'Mon Dec 23 19:36:20 UTC 2013', 'overview': '

In the information and communication technology (ICT) market, the uses of social media and cloud computing are expanding along with the increase of high-speed optical fiber and mobile broadband, and the rapid spread of various terminal devices such as smartphones and tablet computers. In line with this trend, not only communications carriers but also various players in other businesses are entering the market and accelerating the diversity and sophistication of services globally.

\\n\\n

Based on its management strategy “Towards the Next Stage,” which was announced in November 2012, the NTT Group will strengthen cutting-edge broadband services such as FLET’S Hikari and the LTE service Xi (crossy)and promote advanced R&D, creating high-value-added services and business models. In particular, we will focus on accelerating global business development with cloud services as the growth driver of NTT’s business operations. We will also offer services that are “Suitable (for customers’ needs),” “Simple(and convenient)” and “Secure (and safe),” thereby supporting our corporate clients in transforming business models and individual customers in creating diverse lifestyles.

\\n\\n

Through these measures, the NTT Group will deliver convenient, enriched, and reliable services to support our customers as a Value Partner that our customers will continue to select. As a result, we will enhance our corporate value and contribute to the development of the Japanese and global economies and society.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0038/1785/381785v3-max-150x150.png'], [[239, 55], 'assets/images/resized/0038/1785/381785v3-max-250x250.png'], [[239, 55], 'assets/images/resized/0038/1785/381785v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'System consultant', 'person': {'first_name': 'Akinori', 'last_name': 'Harada', 'permalink': 'akinori-harada'}}, {'is_past': True, 'title': 'SalesEngineer', 'person': {'first_name': 'Hiroaki', 'last_name': 'Yasutake', 'permalink': 'hiroaki-yasutake'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'e', 'source_url': 'http://www.opsource.net/news/press/read_news.php?&newsid=88', 'source_description': \"OpSource Acquires $10 Million in Series 'E' Funding\", 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 17, 'company': {'name': 'OpSource', 'permalink': 'opsource'}}}, {'funding_round': {'round_code': 'c', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 15, 'company': {'name': 'NexWave Solutions', 'permalink': 'nexwave-solutions'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'NTT', 'address1': '3-1, Otemachi 2-chome, Chiyoda-ku', 'address2': '', 'zip_code': '100-8116', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 42], 'assets/images/resized/0038/1786/381786v1-max-150x150.png'], [[250, 71], 'assets/images/resized/0038/1786/381786v1-max-250x250.png'], [[450, 128], 'assets/images/resized/0038/1786/381786v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675298aa4'), 'name': 'Samsung Electronics', 'permalink': 'samsung-electronics', 'crunchbase_url': 'http://www.crunchbase.com/company/samsung-electronics', 'homepage_url': 'http://www.samsung.com/us', 'blog_url': 'http://www.samsungvillage.com/', 'blog_feed_url': '', 'twitter_username': 'samsungtweets', 'category_code': 'hardware', 'number_of_employees': 221726, 'founded_year': 1969, 'founded_month': 2, 'founded_day': 12, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'electronics', 'alias_list': '', 'email_address': 'manta.client@gmail.com', 'phone_number': '1-800-726-7864', 'description': '', 'created_at': 'Wed May 14 20:34:02 UTC 2008', 'updated_at': 'Wed Dec 04 05:52:38 UTC 2013', 'overview': '

Samsung Electronics Co. Ltd., together with its subsidiaries, is engaged in consumer electronics, information technology and mobile communications, and device solutions businesses worldwide. It develops, manufactures, and sells various consumer products, including mobile phones, tablets, televisions, Blu-rays, DVD players, home theaters, and digital cameras and camcorders; home appliances, such as refrigerators, air conditioners, washing machines, ovens, and dishwashers; PC/peripherals/printers comprising tablet PC, notebooks, monitors, optical disc drive, printers, and computers; memory and storage products, such as solid state drives and memory cards; and accessories.

\\n\\n

The company also provides healthcare and medical equipment comprising ultrasound, digital X-ray, and in-vitro diagnostics; telecommunications infrastructure, including wireless and enterprise network systems; standalone mobile APs for smartphones, CMOS image sensors for mobile cameras, display driver ICs, and smart card ICs; LCD display panels and OLED panels for mobiles; and LED lighting solutions that include LED packages, LED display modules, LED light engines, and LED retrofit lamps. In addition, it engages in cyber game match hosting; technology business venture capital investments; manufacture of semiconductor components; semiconductor equipments business; sponsoring of sports team and games; and credit management activities.

\\n\\n

Further, the company provides repair service for electronic devices, general logistics agency services, consulting services, and communication system services. It has operations in Korea, China, Latin and North America, Europe, the Asia Pacific, and Africa. Samsung Electronics Co. Ltd. has a strategic partnership with Lookout, as well as with Orange Business Services. The company was founded in 1969 as a subsidiary of Samsung Group and is headquartered in Suwon, South Korea.

', 'image': {'available_sizes': [[[150, 78], 'assets/images/resized/0001/8596/18596v6-max-150x150.jpg'], [[250, 130], 'assets/images/resized/0001/8596/18596v6-max-250x250.jpg'], [[311, 162], 'assets/images/resized/0001/8596/18596v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Samsung GALAXY Tab', 'permalink': 'samsung-galaxy-tab'}, {'name': 'Samsung GALAXY S', 'permalink': 'samsung-galaxy-s-series'}, {'name': 'Samsung GALAXY Note', 'permalink': 'samsung-galaxy-note'}], 'relationships': [{'is_past': False, 'title': 'President and CEO, Samsung Telecommunications America', 'person': {'first_name': 'Gregory', 'last_name': 'Lee', 'permalink': 'gregory-lee-2'}}, {'is_past': False, 'title': 'CEO, Vice Chairman & Board of Directors', 'person': {'first_name': 'Oh-Hyun', 'last_name': 'Kwon', 'permalink': 'oh-hyun-kwon'}}, {'is_past': False, 'title': 'Vice Chairman and CEO', 'person': {'first_name': 'Yoon-Woo', 'last_name': 'Lee', 'permalink': 'yoon-woo-lee'}}, {'is_past': False, 'title': 'President and CEO, Samsung Semiconductor, Inc.', 'person': {'first_name': 'Charlie', 'last_name': 'Bae', 'permalink': 'charlie-bae'}}, {'is_past': False, 'title': 'President and Chief Strategy Officer', 'person': {'first_name': 'Young', 'last_name': 'Sohn', 'permalink': 'young-sohn'}}, {'is_past': False, 'title': 'President & CEO, South West Asia Operations', 'person': {'first_name': 'B.D.', 'last_name': 'Park', 'permalink': 'b-d-park'}}, {'is_past': False, 'title': 'President and Chief Executive Officer of Samsung Electronics America', 'person': {'first_name': 'Yangkyu', 'last_name': '(Y.K.) Kim', 'permalink': 'yangkyu-y-k-kim'}}, {'is_past': False, 'title': 'Executive Vice President, Global Media Group', 'person': {'first_name': 'David', 'last_name': 'Eun', 'permalink': 'david-eun'}}, {'is_past': False, 'title': 'Acting President', 'person': {'first_name': 'Lee', 'last_name': 'Soo-bin', 'permalink': 'lee-soo-bin'}}, {'is_past': False, 'title': 'Mobile Technology Strategy and Sourcing', 'person': {'first_name': 'Homayoon', 'last_name': 'Shahinfar', 'permalink': 'homayoon-shahinfar'}}, {'is_past': False, 'title': 'General Manager, Global Business Innovation Group', 'person': {'first_name': 'Kevin', 'last_name': 'Chong', 'permalink': 'kevin-chong'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Ju-Hwa', 'last_name': 'Yoon', 'permalink': 'ju-hwa-yoon'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'In-Ho', 'last_name': 'Lee', 'permalink': 'in-ho-lee'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Byeong-Gi', 'last_name': 'Lee', 'permalink': 'byeong-gi-lee'}}, {'is_past': False, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Taehoon', 'last_name': 'Kang', 'permalink': 'taehoon-kang'}}, {'is_past': False, 'title': 'Director Product Management', 'person': {'first_name': 'Adnan', 'last_name': 'Agboatwalla', 'permalink': 'adnan-agboatwalla'}}, {'is_past': False, 'title': 'Business houner', 'person': {'first_name': 'John', 'last_name': 'wakefiwld', 'permalink': 'john-wakefiwld-2'}}, {'is_past': False, 'title': 'Engineer, Cooperate R&D Lab', 'person': {'first_name': 'Richard', 'last_name': 'Uichel Joung', 'permalink': 'richard-uichel-joung'}}, {'is_past': False, 'title': 'Mechanical Engineer and Managed Technology Strategic Planning', 'person': {'first_name': 'Simon', 'last_name': 'Kim', 'permalink': 'simon-kim'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Aleksey', 'last_name': 'Lazorenko', 'permalink': 'aleksey-lazorenko'}}, {'is_past': False, 'title': 'Manager, Overseas Marketing & Sales', 'person': {'first_name': 'Sean', 'last_name': 'Lee', 'permalink': 'sean-lee-2'}}, {'is_past': False, 'title': 'Manager', 'person': {'first_name': 'Jennifer', 'last_name': 'George', 'permalink': 'jennifer-george'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Varun', 'last_name': 'Vishwanathan', 'permalink': 'varun-vishwanathan'}}, {'is_past': False, 'title': 'Head', 'person': {'first_name': 'Shawn', 'last_name': 'Pouliotte', 'permalink': 'shawn-pouliotte'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Gee-Sung', 'last_name': 'Choi', 'permalink': 'gee-sung-choi'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Dong-Min', 'last_name': 'Yoon', 'permalink': 'dong-min-yoon'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Han-joong', 'last_name': 'Kim', 'permalink': 'han-joong-kim'}}, {'is_past': False, 'title': 'Associate', 'person': {'first_name': 'Leif', 'last_name': 'Karlen', 'permalink': 'leif-karlen'}}, {'is_past': False, 'title': 'Director, New Technology Pathfinding', 'person': {'first_name': 'Thomas', 'last_name': 'W. Fry', 'permalink': 'thomas-w-fry'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Reda', 'last_name': 'Dehy', 'permalink': 'reda-dehy'}}, {'is_past': False, 'title': 'Open Innovation', 'person': {'first_name': 'Brendon', 'last_name': 'Kim', 'permalink': 'brendon-kim'}}, {'is_past': False, 'title': 'Senior Engineer', 'person': {'first_name': 'Benjamin', 'last_name': 'Lee', 'permalink': 'benjamin-lee'}}, {'is_past': False, 'title': 'Senior Manager Business Development, Partnerships Team', 'person': {'first_name': 'Godfrey', 'last_name': 'Powell', 'permalink': 'godfrey-powell'}}, {'is_past': False, 'title': 'President, Samsung Austin Semiconducter', 'person': {'first_name': 'Dr.', 'last_name': 'Woosung Han', 'permalink': 'dr-woosung-han'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Suh', 'permalink': 'ian-suh'}}, {'is_past': True, 'title': 'Co - Founder', 'person': {'first_name': 'Ilbok', 'last_name': 'Lee', 'permalink': 'ilbok-lee'}}, {'is_past': True, 'title': 'Chief Marketing Officer/Vice President Strategic Marketing', 'person': {'first_name': 'Paul', 'last_name': 'Golden', 'permalink': 'paul-golden'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Chen', 'last_name': 'Wang', 'permalink': 'chen-wang'}}, {'is_past': True, 'title': 'Vice President, General Counsel', 'person': {'first_name': 'Randall', 'last_name': 'Wick', 'permalink': 'randall-wick'}}, {'is_past': True, 'title': 'Sr. Director Human Resources', 'person': {'first_name': 'Peter', 'last_name': 'Altuch', 'permalink': 'peter-altuch'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Youcef', 'last_name': 'ES-SKOURI', 'permalink': 'youcef-es-skouri'}}, {'is_past': True, 'title': 'Head of Content', 'person': {'first_name': 'Nick', 'last_name': 'Turner-Samuels', 'permalink': 'nick-turner-samuels'}}, {'is_past': True, 'title': 'Solutions Business Manager', 'person': {'first_name': 'Dan', 'last_name': 'Jones', 'permalink': 'dan-jones-2'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Gin', 'last_name': 'Kim', 'permalink': 'gin-kim'}}, {'is_past': True, 'title': 'Global Strategist', 'person': {'first_name': 'Gonzalo', 'last_name': 'Martinez de Azagra', 'permalink': 'gonzalo-martinez-de-azagra'}}, {'is_past': True, 'title': 'Senior Technologist', 'person': {'first_name': 'Ali', 'last_name': 'Khoshgozaran', 'permalink': 'jeff-khoshgozaran'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Igal', 'last_name': 'Perelman', 'permalink': 'igal-perelman'}}, {'is_past': True, 'title': 'Associate Account Manager', 'person': {'first_name': 'KR', 'last_name': 'Song', 'permalink': 'kr-song'}}, {'is_past': True, 'title': 'Director Flash Marketing', 'person': {'first_name': 'Steffen', 'last_name': 'Hellmold', 'permalink': 'steffen-hellmold'}}, {'is_past': True, 'title': 'Member', 'person': {'first_name': 'Bernard', 'last_name': 'S. Meyerson', 'permalink': 'bernard-s-meyerson'}}, {'is_past': True, 'title': 'Intern Programmer', 'person': {'first_name': 'Chee-Hyung', 'last_name': 'Yoon', 'permalink': 'chee-hyung-yoon'}}, {'is_past': True, 'title': 'General Manager, USA Representative Office', 'person': {'first_name': 'Charles', 'last_name': 'Lho', 'permalink': 'charles-lho-2'}}, {'is_past': True, 'title': 'Business Coordinator / Outbound Logistics Coordinator', 'person': {'first_name': 'Richard', 'last_name': 'Chae', 'permalink': 'richard-chae'}}, {'is_past': True, 'title': 'Director, Product Planning', 'person': {'first_name': 'Paul', 'last_name': 'Gallagher', 'permalink': 'paul-gallagher'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Yang', 'permalink': 'michael-yang'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Dong', 'last_name': 'Su Kim', 'permalink': 'dong-su-kim'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Kalyan', 'last_name': 'Uppalapati', 'permalink': 'kalyan-uppalapati'}}, {'is_past': True, 'title': 'Management Innovation Team', 'person': {'first_name': 'Hunjin', 'last_name': 'Jung', 'permalink': 'hunjin-jung'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Frank', 'last_name': 'Fu', 'permalink': 'frank-fu'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Hai', 'last_name': 'Liu', 'permalink': 'hai-liu'}}, {'is_past': True, 'title': 'Executive Director', 'person': {'first_name': 'Syed', 'last_name': 'Ali', 'permalink': 'syed-ali'}}, {'is_past': True, 'title': 'President / Board of Directors', 'person': {'first_name': 'Ilbok', 'last_name': 'Lee', 'permalink': 'ilbok-lee'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Tord', 'last_name': 'Wingren', 'permalink': 'tord-wingren'}}, {'is_past': True, 'title': 'Manager, System Design', 'person': {'first_name': 'Andy', 'last_name': 'Bell', 'permalink': 'andy-bell'}}, {'is_past': True, 'title': 'Research Engineer', 'person': {'first_name': 'Gene Moo', 'last_name': 'Lee', 'permalink': 'gene-moo-lee'}}, {'is_past': True, 'title': 'International Sales Manager', 'person': {'first_name': 'Mickey', 'last_name': 'Kim', 'permalink': 'mickey-kim'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Chang', 'last_name': 'Kim', 'permalink': 'chang-kim'}}, {'is_past': True, 'title': 'Assistant Manager', 'person': {'first_name': 'Josh Ha-Nyung', 'last_name': 'Chung', 'permalink': 'josh-ha-nyung-chung'}}, {'is_past': True, 'title': 'Social Media Marketing Manager', 'person': {'first_name': 'Esteban', 'last_name': 'Contreras', 'permalink': 'esteban-contreras-3'}}, {'is_past': True, 'title': 'Lead Engineer', 'person': {'first_name': 'Gin', 'last_name': 'Kim', 'permalink': 'gin-kim'}}, {'is_past': True, 'title': 'DSP SW Engineer', 'person': {'first_name': 'Renat', 'last_name': 'Gataullin', 'permalink': 'renat-gataullin'}}, {'is_past': True, 'title': 'Senior Manager, Public Relations', 'person': {'first_name': 'Deborah', 'last_name': 'Szajngarten', 'permalink': 'deborah-szajngarten'}}, {'is_past': True, 'title': 'Senior Marketing Manager Flat TV', 'person': {'first_name': 'Kevin', 'last_name': 'Cahill', 'permalink': 'kevin-cahill'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Young-Min', 'last_name': 'Jo', 'permalink': 'young-min-jo'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Douglas', 'last_name': 'Jardine', 'permalink': 'douglas-jardine'}}, {'is_past': True, 'title': 'Senior Channel Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Sternhell', 'permalink': 'paul-sternhell'}}, {'is_past': True, 'title': 'Director, Center for Global Cooperation', 'person': {'first_name': 'Charles', 'last_name': 'Lho', 'permalink': 'charles-lho-2'}}, {'is_past': True, 'title': 'Sr. Product Manager, New Business Development / Director, Emerging Business & Technologies', 'person': {'first_name': 'Dinesh', 'last_name': 'Moorjani', 'permalink': 'dinesh-moorjani'}}, {'is_past': True, 'title': 'Strategic Marketing Associate/Intern', 'person': {'first_name': 'Dawn', 'last_name': 'Verbrigghe', 'permalink': 'dawn-verbrigghe'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Guneet', 'last_name': 'Singh', 'permalink': 'guneet-singh'}}, {'is_past': True, 'title': 'Head of Developer Relations, Europe', 'person': {'first_name': 'Manfred', 'last_name': 'Bortenschlager', 'permalink': 'manfred-bortenschlager'}}, {'is_past': True, 'title': 'WW Director, Marketing & Product Planning', 'person': {'first_name': 'Paul', 'last_name': 'Gallagher', 'permalink': 'paul-gallagher'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Bumsoo', 'last_name': 'Kim', 'permalink': 'bumsoo-kim'}}, {'is_past': True, 'title': 'HR/Staffing', 'person': {'first_name': 'Jim', 'last_name': 'Everett', 'permalink': 'jim-everett'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rajesh', 'last_name': 'Vashist', 'permalink': 'rajesh-vashist'}}, {'is_past': True, 'title': 'Consulting Practice', 'person': {'first_name': 'Jordi', 'last_name': 'Vinas', 'permalink': 'jordi-vinas'}}, {'is_past': True, 'title': 'Contents Manager', 'person': {'first_name': 'Luis', 'last_name': 'Spencer Freitas', 'permalink': 'luis-spencer-freitas'}}, {'is_past': True, 'title': 'Device & Design Engineering', 'person': {'first_name': 'Kuang', 'last_name': 'Yu Chen', 'permalink': 'kuang-yu-chen'}}, {'is_past': True, 'title': 'Management positions', 'person': {'first_name': 'Vacit', 'last_name': 'Arat', 'permalink': 'vacit-arat'}}, {'is_past': True, 'title': 'Mobile Software Engineer', 'person': {'first_name': 'Jay', 'last_name': 'Park', 'permalink': 'jay-park'}}], 'competitions': [{'competitor': {'name': 'Numonyx', 'permalink': 'numonyx'}}, {'competitor': {'name': 'LG', 'permalink': 'lg'}}], 'providerships': [{'title': 'Electronics', 'is_past': False, 'provider': {'name': 'Carrier y Asociados', 'permalink': 'carrier-y-asociados'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.bizjournals.com/seattle/stories/2008/08/25/daily24.html', 'source_description': 'RadioFrame Networks raises another $28 million in financing', 'raised_amount': 28000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 29, 'company': {'name': 'RadioFrame', 'permalink': 'radioframe'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.beceem.com/news/042209.shtml', 'source_description': 'Beceem Closes $20 Million in Financing and Accelerates WiMAX Product Developments', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 22, 'company': {'name': 'Beceem Communications', 'permalink': 'beceem'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://www.cellular-news.com/story/40700.php', 'source_description': 'cellular-news', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 18, 'company': {'name': 'picoChip', 'permalink': 'picochip'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businessinsider.com/widevine-to-grow-with-new-15-million-venture-round-2009-12', 'source_description': 'TechFlash', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 14, 'company': {'name': 'Widevine Technologies', 'permalink': 'widevine'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2013/06/watchwith-completes-5m-venture-financing.html', 'source_description': 'Watchwith Completes $5M Venture Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 25, 'company': {'name': 'Watchwith', 'permalink': 'watchwith'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/440012/samsung-acquires-display-technology-provider-liquavista', 'source_description': 'SAMSUNG ACQUIRES DISPLAY TECHNOLOGY PROVIDER LIQUAVISTA', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 19, 'company': {'name': 'Liquavista', 'permalink': 'liquavista'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.fis.dowjones.com/article.aspx?ProductIDFromApplication=32&aid=DJFVW00020110801e7820018h&r=Rss&s=DJFVW', 'source_description': 'Samsung Buys Grandis As MRAM Moves Toward Mainstream ', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'Grandis', 'permalink': 'grandis'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/09/samsung-acquires-mobile-entertainment-and-music-streaming-startup-mspot/', 'source_description': 'Samsung Acquires Mobile Entertainment And Music Streaming Startup mSpot', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 9, 'company': {'name': 'mSpot', 'permalink': 'mspot'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/samsung-electronics-acquires-nvelo-214000759.html', 'source_description': 'Samsung Electronics Acquires NVELO', 'acquired_year': 2012, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'NVELO', 'permalink': 'nvelo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/28/samsung-buys-medical-imaging-company-neurologica/', 'source_description': 'Samsung Buys Medical Imaging Company NeuroLogica', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'company': {'name': 'NeuroLogica', 'permalink': 'neurologica'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/03/streaming-entertainment-startup-boxee-acquired-by-samsung-for-around-30m/', 'source_description': 'Streaming Entertainment Startup Boxee Acquired By Samsung For Around $30M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 3, 'company': {'name': 'Boxee', 'permalink': 'boxee'}}, {'price_amount': 347000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/08/09/samsung-to-acquire-german-oled-biz-novaled-for-347m/', 'source_description': 'Samsung to acquire German OLED biz Novaled for $347M', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Novaled', 'permalink': 'novaled'}}], 'offices': [{'description': 'HQ - South Korea', 'address1': 'Maetandong 416 Suwon, Gyeonggi-do Samsung Medison Bldg., 42, Teheran-ro 108 gil', 'address2': '', 'zip_code': '', 'city': 'Suwon', 'state_code': None, 'country_code': 'KOR', 'latitude': None, 'longitude': None}, {'description': 'USA', 'address1': '85 Challenger Road', 'address2': '', 'zip_code': '07660', 'city': 'Ridgefield Park,', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Brazil', 'address1': 'Av. Maria Coelho Aguiar, 215 – Bl. C – 4. Andar. CEP:05804-900', 'address2': '', 'zip_code': '', 'city': 'San Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': None, 'longitude': None}, {'description': 'Japan', 'address1': 'Ichigaya Tokyu Bldg., 4-2-1, Kudankita, Chiyoda-ku', 'address2': '', 'zip_code': '', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}, {'description': 'India', 'address1': '2nd, 3rd & 4th floor, Tower C, Vipul Tech Square, Sector 43, Golf Course Road,Gurgaon -122002', 'address2': '', 'zip_code': 'Haryana', 'city': '', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Germany', 'address1': 'Am Kronberger Hang 6, 65824', 'address2': '', 'zip_code': '', 'city': 'Schwalbach am Taunus', 'state_code': None, 'country_code': 'DEU', 'latitude': None, 'longitude': None}, {'description': 'Italy', 'address1': 'C. Donat Cattin, 5, 20063 Cernusco sul Navigilio', 'address2': '', 'zip_code': '', 'city': 'Milano', 'state_code': None, 'country_code': 'ITA', 'latitude': None, 'longitude': None}, {'description': 'France', 'address1': '270 Avenue de President Wilson, 93458, La Plain Saint Deni', 'address2': '', 'zip_code': '', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': None, 'longitude': None}, {'description': 'China', 'address1': 'China Merchants Tower, Jian Guo Road 118, Chao Yang District, Beijing', 'address2': '', 'zip_code': '', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 11908, 'description': 'Samsung Ships 3 Million Galaxy Tabs', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://www.businessinsider.com/samsung-ships-2-million-galaxy-tabs-2011-1', 'source_text': '', 'source_description': 'Samsung Ships 2 Million Galaxy Tabs', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 14253, 'description': 'Samsung to sell hard disk business to Seagate for $1.375B', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 19, 'source_url': 'http://venturebeat.com/2011/04/19/samsung-to-sell-hard-disk-business-to-seagate-for-1-375b/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_text': '', 'source_description': 'Samsung to sell hard disk business to Seagate for $1.375B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 34232, 'description': 'Confirmed: Samsung buys 10% stake in Korean handset maker Pantech for $48 million', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 22, 'source_url': 'http://thenextweb.com/asia/2013/05/22/samsung-buys-10-stake-in-korean-handset-maker-pantech-for-48-million/', 'source_text': '', 'source_description': 'Confirmed: Samsung buys 10% stake in Korean handset maker Pantech for $48 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}, {'id': 40660, 'description': \"Samsung to acquire stake in Best Buy, vice chairman Lee calls Apple's CEO 'Captain Cook'\", 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://www.phonearena.com/news/Samsung-to-acquire-stake-in-Best-Buy-vice-chairman-Lee-calls-Apples-CEO-Captain-Cook_id47976', 'source_text': '', 'source_description': \"Samsung to acquire stake in Best Buy, vice chairman Lee calls Apple's CEO 'Captain Cook'\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[94, 150], 'assets/images/resized/0020/4819/204819v1-max-150x150.png'], [[156, 250], 'assets/images/resized/0020/4819/204819v1-max-250x250.png'], [[282, 450], 'assets/images/resized/0020/4819/204819v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/Samsung_Electronics', 'title': 'Samsung Electronics at Mashpedia'}, {'external_url': 'http://www.riocoupon.com/articles/samsung-galaxy-s3-review.html', 'title': 'Samsung Galaxy S3 Review'}, {'external_url': 'http://www.riocoupon.com/articles/top-10-android-phones.html', 'title': 'Top 10 Android Smartphones'}, {'external_url': 'http://samsunggalaxys7review.biz/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675298b99'), 'name': 'Accenture', 'permalink': 'accenture', 'crunchbase_url': 'http://www.crunchbase.com/company/accenture', 'homepage_url': 'http://www.accenture.com', 'blog_url': 'http://www.accenture.com/Global/Accenture_Blogs/', 'blog_feed_url': 'http://feeds.accenture.com/Accenture_High_Performance_Business?format=xml', 'twitter_username': 'accenture', 'category_code': 'consulting', 'number_of_employees': 205000, 'founded_year': 2001, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'Consulting, Technology, Outsourcing', 'created_at': 'Fri May 23 17:46:58 UTC 2008', 'updated_at': 'Tue Dec 03 03:57:46 UTC 2013', 'overview': '

Accenture is a global management consulting, technology services and outsourcing company, with approximately 204,000 people serving clients in more than 120 countries. Combining unparalleled experience, comprehensive capabilities across all industries and business functions, and extensive research on the world’s most successful companies, Accenture collaborates with clients to help them become high-performance businesses and governments. The company generated net revenues of US$21.6 billion for the fiscal year ended Aug. 31, 2010.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0001/9509/19509v2-max-150x150.png'], [[162, 57], 'assets/images/resized/0001/9509/19509v2-max-250x250.png'], [[162, 57], 'assets/images/resized/0001/9509/19509v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Accenture Application Dev', 'permalink': 'accenture-application-dev'}, {'name': 'Real-Time Location Tracking Services', 'permalink': 'real-time-location-tracking-services'}], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Pierre', 'last_name': 'Nanterme', 'permalink': 'pierre-nanterme'}}, {'is_past': False, 'title': 'Chief Marketing & Communications Officer', 'person': {'first_name': 'Roxanne', 'last_name': 'Taylor', 'permalink': 'roxanne-taylor'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Jill', 'last_name': 'B. Smart', 'permalink': 'jill-b-smart'}}, {'is_past': False, 'title': 'Chief Executive—Business Process Outsourcing', 'person': {'first_name': 'Michael', 'last_name': 'J. Salvino', 'permalink': 'michael-j-salvino'}}, {'is_past': False, 'title': 'Chief Executive—Resources', 'person': {'first_name': 'Jean-Marc', 'last_name': 'Ollagnier', 'permalink': 'jean-marc-ollagnier'}}, {'is_past': False, 'title': 'Chief Executive—Financial Services', 'person': {'first_name': 'Richard', 'last_name': 'Lumb', 'permalink': 'richard-lumb'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': False, 'title': 'Chief Executive—Products', 'person': {'first_name': 'Gianfranco', 'last_name': 'Casati', 'permalink': 'gianfranco-casati'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'David', 'last_name': 'P. Rowland', 'permalink': 'david-p-rowland'}}, {'is_past': False, 'title': 'Chief Technology Innovation Officer', 'person': {'first_name': 'Gavin', 'last_name': 'Michael', 'permalink': 'gavin-michael'}}, {'is_past': False, 'title': 'Chief Executive US and Managing Director North America', 'person': {'first_name': 'Jorge', 'last_name': 'Benitez', 'permalink': 'jorge-benitez'}}, {'is_past': False, 'title': 'CEO & Partner', 'person': {'first_name': 'William', 'last_name': 'D. Green', 'permalink': 'william-d-green'}}, {'is_past': False, 'title': 'CRM Consultant', 'person': {'first_name': 'Nikhil', 'last_name': 'Daftary', 'permalink': 'nikhil-daftary'}}, {'is_past': False, 'title': 'Wireless Technology Consultant', 'person': {'first_name': 'Colin', 'last_name': 'Lowenberg', 'permalink': 'colin-lowenberg'}}, {'is_past': False, 'title': 'Software Architect', 'person': {'first_name': 'Tom', 'last_name': 'Burger', 'permalink': 'tom-burger'}}, {'is_past': False, 'title': 'Security Analyst', 'person': {'first_name': 'Bob', 'last_name': 'Wei', 'permalink': 'bob-wei'}}, {'is_past': False, 'title': 'Business Analyst', 'person': {'first_name': 'Gaurav', 'last_name': 'Hardikar', 'permalink': 'gaurav-hardikar'}}, {'is_past': False, 'title': 'Global Client Services Director / GTM Lead at Accenture Interactive', 'person': {'first_name': 'Brent', 'last_name': 'Trimble', 'permalink': 'brent-trimble'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dave', 'last_name': 'Robinett', 'permalink': 'dave-robinett'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Stephan', 'last_name': 'Rau', 'permalink': 'stephan-rau'}}, {'is_past': False, 'title': 'Lead Management Scientist', 'person': {'first_name': 'Chris', 'last_name': 'Checco', 'permalink': 'chris-checco'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Nobuyuki', 'last_name': 'Idei', 'permalink': 'nobuyuki-idei'}}, {'is_past': False, 'title': 'Chief Executive - Technology', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': False, 'title': 'Chief Executive—Management Consulting', 'person': {'first_name': 'Sander', 'last_name': \"van 't Noordende\", 'permalink': 'sander-van-t-noordende'}}, {'is_past': False, 'title': 'Chief Executive—Communications, Media & Technology', 'person': {'first_name': 'Robert', 'last_name': 'E. Sell', 'permalink': 'robert-e-sell'}}, {'is_past': False, 'title': 'Chief Geographic Strategy & Operations Officer', 'person': {'first_name': 'David', 'last_name': 'C. Thomlinson', 'permalink': 'david-c-thomlinson'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Ray', 'last_name': 'Grady', 'permalink': 'ray-grady'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dina', 'last_name': 'Dublon', 'permalink': 'dina-dublon'}}, {'is_past': False, 'title': 'Senior Manager', 'person': {'first_name': 'Dan', 'last_name': 'McCue', 'permalink': 'dan-mccue'}}, {'is_past': False, 'title': 'Analyst Consultant', 'person': {'first_name': 'Simon', 'last_name': 'Kempner', 'permalink': 'simon-kempner'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Stephen', 'last_name': 'Phillips', 'permalink': 'stephen-phillips'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'John', 'last_name': 'Staunton', 'permalink': 'john-staunton'}}, {'is_past': False, 'title': 'Digital Marketing Analytics Lead', 'person': {'first_name': 'Janet', 'last_name': 'McCabe', 'permalink': 'janet-mccabe'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Bill', 'last_name': 'Murphy', 'permalink': 'bill-murphy-5'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Julian', 'last_name': 'Lee', 'permalink': 'julian-lee'}}, {'is_past': False, 'title': 'Management Consultancy', 'person': {'first_name': 'Michael', 'last_name': 'Kowalzik', 'permalink': 'michael-kowalzik'}}, {'is_past': False, 'title': 'Executive', 'person': {'first_name': 'Joel', 'last_name': 'Krauss', 'permalink': 'joel-krauss'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jetze', 'last_name': 'van Beijma', 'permalink': 'jetze-van-beijma'}}, {'is_past': False, 'title': 'MD & Global Lead - Accenture Cloud Platform', 'person': {'first_name': 'Michael', 'last_name': 'Liebow', 'permalink': 'michael-liebow'}}, {'is_past': False, 'title': 'Senior Engineer', 'person': {'first_name': 'Mark', 'last_name': 'G. Miller', 'permalink': 'mark-miller-2'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Michael', 'last_name': 'Vichich', 'permalink': 'michael-vichich'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Hankins', 'permalink': 'matt-hankins'}}, {'is_past': False, 'title': 'Senior Manager at Accenture Technology Labs', 'person': {'first_name': 'Alexandre', 'last_name': 'Naressi', 'permalink': 'alexandre-naressi'}}, {'is_past': False, 'title': 'IT consultant', 'person': {'first_name': 'Julien', 'last_name': 'Berthéas', 'permalink': 'julien-berthas'}}, {'is_past': False, 'title': 'Managing Director, Communications, Media and High Technology', 'person': {'first_name': 'Frank', 'last_name': 'Vaculin', 'permalink': 'frank-vaculin'}}, {'is_past': False, 'title': 'CTO & Sr. MD, Technology Strategy & Innovation Group', 'person': {'first_name': 'Paul', 'last_name': 'Daugherty', 'permalink': 'paul-daugherty'}}, {'is_past': False, 'title': 'Managing Director, Service Delivery Lead - avVenta', 'person': {'first_name': 'Narciso', 'last_name': 'Tauler', 'permalink': 'narciso-tauler'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Jamie', 'last_name': 'Posnanski', 'permalink': 'jamie-posnanski'}}, {'is_past': False, 'title': 'Senior Anderson Consulting', 'person': {'first_name': 'Tim', 'last_name': 'Slayton', 'permalink': 'tim-slayton'}}, {'is_past': False, 'title': 'N.A. mCommerce Lead, Accenture Mobility Services', 'person': {'first_name': 'Phong', 'last_name': 'Q. Rock', 'permalink': 'phong-q-rock'}}, {'is_past': False, 'title': 'Sr. Mgr (Cisco Services Unit)', 'person': {'first_name': 'Manvinder', 'last_name': 'Sandhu', 'permalink': 'manvinder-sandhu'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Jo', 'last_name': 'Deblaere', 'permalink': 'jo-deblaere'}}, {'is_past': False, 'title': 'Chief Leadership Officer', 'person': {'first_name': 'Adrian', 'last_name': 'Lajtha', 'permalink': 'adrian-lajtha'}}, {'is_past': False, 'title': 'Chief Executive—Health & Public Service', 'person': {'first_name': 'Stephen', 'last_name': 'J. Rohleder', 'permalink': 'stephen-j-rohleder'}}, {'is_past': False, 'title': 'General Counsel, Secretary & Chief Compliance Officer', 'person': {'first_name': 'Julie', 'last_name': 'Spellman Sweet', 'permalink': 'julie-spellman-sweet'}}, {'is_past': False, 'title': 'iOS DEVELOPER', 'person': {'first_name': 'Aleksejs', 'last_name': 'Sinicins', 'permalink': 'aleksejs-sinicins'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Charles', 'last_name': 'Giancarlo', 'permalink': 'charles-giancarlo'}}, {'is_past': False, 'title': 'Consultant, Advanced Technology Group', 'person': {'first_name': 'Michael', 'last_name': 'Schoen', 'permalink': 'michael-schoen'}}, {'is_past': False, 'title': 'Senior Programmer', 'person': {'first_name': 'Rolands', 'last_name': 'Umbrovskis', 'permalink': 'rolands-umbrovskis'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Esben', 'last_name': 'Friis-Jensen', 'permalink': 'esben-friis-jensen'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Chris', 'last_name': 'Murphy', 'permalink': 'chris-murphy-4'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Karim', 'last_name': 'Chehade', 'permalink': 'karim-chehade'}}, {'is_past': False, 'title': 'Management Consulting', 'person': {'first_name': 'Marco', 'last_name': 'Guglielminetti', 'permalink': 'marco-guglielminetti'}}, {'is_past': False, 'title': 'Business Consultant', 'person': {'first_name': 'Oliver', 'last_name': 'Qi', 'permalink': 'oliver-qi'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Markus', 'last_name': 'Grundmann', 'permalink': 'markus-grundmann'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Arsenault', 'permalink': 'jonathan-arsenault'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Rob', 'last_name': 'van Buuren', 'permalink': 'rob-van-buuren'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Iris', 'last_name': 'Olafsdottir', 'permalink': 'ris-lafsdttir'}}, {'is_past': False, 'title': 'Finance Director, Technology', 'person': {'first_name': 'Grant', 'last_name': 'P. Ireland', 'permalink': 'grant-p-ireland'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Giwan', 'last_name': 'Persaud', 'permalink': 'giwan-persaud'}}, {'is_past': False, 'title': 'Project Leader', 'person': {'first_name': 'Takashi', 'last_name': 'Hondo', 'permalink': 'takashi-hondo'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dev', 'last_name': 'Sanyal', 'permalink': 'dev-sanyal'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Chairman, Diamond Client Forum', 'person': {'first_name': 'David', 'last_name': 'A. Rey', 'permalink': 'david-a-rey'}}, {'is_past': True, 'title': 'International Chairman', 'person': {'first_name': 'Robert', 'last_name': 'N. Frerichs', 'permalink': 'robert-n-frerichs'}}, {'is_past': True, 'title': 'Chief Technology Architect', 'person': {'first_name': 'Paul', 'last_name': 'Daugherty', 'permalink': 'paul-daugherty'}}, {'is_past': True, 'title': 'Chief Executive, Communications & High Technology Operating Group', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Chief Executive', 'person': {'first_name': 'William', 'last_name': 'D. Green', 'permalink': 'william-d-green'}}, {'is_past': True, 'title': 'CFO / Principal Accounting Officer', 'person': {'first_name': 'Harry', 'last_name': 'L. You', 'permalink': 'harry-l-you'}}, {'is_past': True, 'title': 'Executive Vice President of multi-channel specialty retailer, Divers Direct, and as an Engagement Manager', 'person': {'first_name': 'Charles', 'last_name': 'Whiteman', 'permalink': 'charles-whiteman'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Pamela', 'last_name': 'J. Craig', 'permalink': 'pamela-j-craig'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Brian', 'last_name': 'Harrington', 'permalink': 'brian-harrington-2'}}, {'is_past': True, 'title': 'West Region Sales VP', 'person': {'first_name': 'Kelly', 'last_name': 'Malone', 'permalink': 'kelly-malone'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Hansen', 'permalink': 'brian-hansen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen-2'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Skander', 'last_name': 'Ben Mansour', 'permalink': 'skander-ben-mansour'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Miguel Angel', 'last_name': 'Ivars Mas', 'permalink': 'miguel-angel-ivars-mas'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Sheppard', 'permalink': 'andrew-sheppard'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Bils', 'permalink': 'scott-bils'}}, {'is_past': True, 'title': 'Senior Consultant, Center for Strategic Technology', 'person': {'first_name': 'Narinder', 'last_name': 'Singh', 'permalink': 'narinder-singh'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Velicer', 'permalink': 'scott-velicer'}}, {'is_past': True, 'title': 'Asistant', 'person': {'first_name': 'Patricio', 'last_name': 'Torres', 'permalink': 'patricio-torres'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Raymond', 'last_name': 'Grainger', 'permalink': 'raymond-grainger'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Francois', 'last_name': 'Naudé', 'permalink': 'francois-naud'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Anthony', 'last_name': 'DeFilippo', 'permalink': 'anthony-defilippo'}}, {'is_past': True, 'title': 'Solution Architect', 'person': {'first_name': 'David', 'last_name': 'Pessis', 'permalink': 'david-pessis'}}, {'is_past': True, 'title': 'Senior PHP Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Rocher', 'permalink': 'scott-rocher'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Eduardo', 'last_name': 'Frias', 'permalink': 'eduardo-frias'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Cindy', 'last_name': 'Gordon', 'permalink': 'cindy-gordon'}}, {'is_past': True, 'title': 'Product Manager & Solution Architect', 'person': {'first_name': 'Jeanette', 'last_name': 'Cajide', 'permalink': 'jeanette-cajide'}}, {'is_past': True, 'title': 'Business Management Consultant', 'person': {'first_name': 'Filippo', 'last_name': 'Satolli', 'permalink': 'filippo-satolli-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mansour', 'last_name': 'Salame', 'permalink': 'mansour-salame'}}, {'is_past': True, 'title': 'Partner, Analytics and Marketing Services', 'person': {'first_name': 'Jay', 'last_name': 'Rampuria', 'permalink': 'jay-rampuria'}}, {'is_past': True, 'title': 'Senior Management Consultant', 'person': {'first_name': 'Dilek', 'last_name': 'Dayinlarli', 'permalink': 'dilek-dayinlarli'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Rafael', 'last_name': 'Anta', 'permalink': 'rafael-anta'}}, {'is_past': True, 'title': 'Manager / Strategy / TMT', 'person': {'first_name': 'Jamyn', 'last_name': 'Edis', 'permalink': 'jamyn-edis'}}, {'is_past': True, 'title': 'Analyst & PMI', 'person': {'first_name': 'Maria', 'last_name': 'Ocampo', 'permalink': 'maria-ocampo'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Will', 'last_name': 'Neale', 'permalink': 'will-neale'}}, {'is_past': True, 'title': 'Stage', 'person': {'first_name': 'Alessio', 'last_name': 'Bonu', 'permalink': 'alessio-bonu'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jerome', 'last_name': 'Touze', 'permalink': 'jerome-touze'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Mattias', 'last_name': 'Danielsson', 'permalink': 'mattias-danielsson'}}, {'is_past': True, 'title': 'Managing Partner', 'person': {'first_name': 'Mike', 'last_name': 'Donohue', 'permalink': 'mike-donohue'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Scott', 'last_name': 'Covington', 'permalink': 'scott-covington'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Olivier', 'last_name': 'Philippe', 'permalink': 'olivier-philippe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Stephan', 'last_name': 'Widmer', 'permalink': 'stephan-widmer'}}, {'is_past': True, 'title': 'Change Management Analyst', 'person': {'first_name': 'In', 'last_name': 'Hsieh', 'permalink': 'in-hsieh'}}, {'is_past': True, 'title': 'Finance Senior Manager', 'person': {'first_name': 'Todd', 'last_name': 'Getz', 'permalink': 'todd-getz'}}, {'is_past': True, 'title': 'Director, Product Marketing and International Business Development', 'person': {'first_name': 'Edward', 'last_name': 'Vesely', 'permalink': 'edward-vesely'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Ben', 'last_name': 'Kartzman', 'permalink': 'ben-kartzman-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Jacobson', 'permalink': 'scott-jacobson-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Maurice', 'last_name': 'Martin', 'permalink': 'maurice-martin'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Stephen', 'last_name': 'Brickley', 'permalink': 'stephen-brickley'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jennifer', 'last_name': 'Kyriakakis', 'permalink': 'jennifer-kyriakakis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Collin', 'last_name': 'Willis', 'permalink': 'collin-willis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Eran', 'last_name': 'Dekel', 'permalink': 'eran-dekel'}}, {'is_past': True, 'title': 'Global Supply Chain practice', 'person': {'first_name': 'Ram', 'last_name': 'Menon', 'permalink': 'ram-menon'}}, {'is_past': True, 'title': 'Executive Partner', 'person': {'first_name': 'Ramon', 'last_name': 'Colomina', 'permalink': 'ramon-colomina'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'David', 'last_name': 'Donabedian', 'permalink': 'david-donabedian'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Lander', 'last_name': 'Coronado-Garcia', 'permalink': 'lander-coronado-garcia'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bruce', 'last_name': 'Goldstein', 'permalink': 'bruce-goldstein-3'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Mendelson', 'permalink': 'jason-mendelson'}}, {'is_past': True, 'title': 'multi-million dollar engagements for both the U.S. Postal Service and the Department of Defense.', 'person': {'first_name': 'Jason', 'last_name': 'Simpson', 'permalink': 'jason-simpson-2'}}, {'is_past': True, 'title': 'Consultant, Strategy and Shareholder Value Groups', 'person': {'first_name': 'Jessica', 'last_name': 'Alter', 'permalink': 'jessica-alter'}}, {'is_past': True, 'title': 'Client Services Director', 'person': {'first_name': 'Steve', 'last_name': 'Meade', 'permalink': 'steve-meade'}}, {'is_past': True, 'title': 'Managing Partner, Products North America', 'person': {'first_name': 'Tom', 'last_name': 'Spann', 'permalink': 'tom-spann'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'John', 'last_name': 'Rollins', 'permalink': 'john-rollins'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Skip', 'last_name': 'Besthoff', 'permalink': 'skip-besthoff'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Yang', 'permalink': 'andy-yang'}}, {'is_past': True, 'title': 'Consulting Analyst', 'person': {'first_name': 'Martin', 'last_name': 'Poschenrieder', 'permalink': 'martin-poschenrieder'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jon', 'last_name': 'Herstein', 'permalink': 'jon-herstein'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mark', 'last_name': 'Roberge', 'permalink': 'mark-roberge'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Michael', 'last_name': 'Hart', 'permalink': 'michael-hart'}}, {'is_past': True, 'title': 'Business consulting firms', 'person': {'first_name': 'Chris', 'last_name': 'Nielsen', 'permalink': 'chris-nielsen'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Scott', 'last_name': 'Hintz', 'permalink': 'scott-hintz'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'Hinshaw', 'permalink': 'john-hinshaw'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Thiago', 'last_name': 'Teodoro', 'permalink': 'thiago-teodoro-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Holger', 'last_name': 'Luedorf', 'permalink': 'holger-luedorf'}}, {'is_past': True, 'title': 'Client Account HR Lead', 'person': {'first_name': 'Kathy', 'last_name': 'Humphreys', 'permalink': 'kathy-humphreys'}}, {'is_past': True, 'title': 'Management Consultant, Digital Strategy', 'person': {'first_name': 'Ceres', 'last_name': 'Chua', 'permalink': 'ceres-chua'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Patrick', 'last_name': 'McCormack', 'permalink': 'patrick-mccormack'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brad', 'last_name': 'Mattick', 'permalink': 'brad-mattick'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thomas', 'last_name': 'Depuydt', 'permalink': 'thomas-depuydt'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Vince', 'last_name': 'Monical', 'permalink': 'vince-monical'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Stefanos', 'last_name': 'Missailidis', 'permalink': 'stefanos-missailidis'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jonathan', 'last_name': 'King', 'permalink': 'jonathan-king'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bimal', 'last_name': 'Shah', 'permalink': 'bimal-shah'}}, {'is_past': True, 'title': 'ets', 'person': {'first_name': 'Marco', 'last_name': 'Visibelli', 'permalink': 'marco-visibelli'}}, {'is_past': True, 'title': 'Summer Analyst - Accenture Technology Labs', 'person': {'first_name': 'Steven', 'last_name': 'Bong', 'permalink': 'steven-bong'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Farhan', 'last_name': 'Yasin', 'permalink': 'farhan-yasin'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'John', 'last_name': 'Brennan', 'permalink': 'john-brennan'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dan', 'last_name': 'Goldsmith', 'permalink': 'dan-goldsmith'}}, {'is_past': True, 'title': 'Global Strategic Marketing, Positioning & Insights Lead', 'person': {'first_name': 'Rika', 'last_name': 'Nakazawa', 'permalink': 'rika-nakazawa'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Nisan', 'last_name': 'Gabbay', 'permalink': 'nisan-gabbay'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Pierre', 'last_name': 'Nanterme', 'permalink': 'pierre-nanterme'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Jorge', 'last_name': 'Benitez', 'permalink': 'jorge-benitez'}}, {'is_past': True, 'title': 'BPM Business Development', 'person': {'first_name': 'Ron', 'last_name': 'Rock', 'permalink': 'ron-rock'}}, {'is_past': True, 'title': 'Engagement Manager', 'person': {'first_name': 'James', 'last_name': 'Speer', 'permalink': 'james-spear'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Steve', 'last_name': 'Surdu', 'permalink': 'steve-surdu'}}, {'is_past': True, 'title': 'Sr. Mgr - Strategy Consulting', 'person': {'first_name': 'Kevin', 'last_name': 'Hannan', 'permalink': 'kevin-hannan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'James', 'last_name': 'Hunvanich', 'permalink': 'james-hunvanich'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Urs', 'last_name': 'Haeusler', 'permalink': 'urs-haeusler'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Hunn', 'permalink': 'andy-hunn'}}, {'is_past': True, 'title': 'SAP IS-U Billing Analyst', 'person': {'first_name': 'Sean', 'last_name': 'Antony', 'permalink': 'sean-antony'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Valerie', 'last_name': 'Layman', 'permalink': 'valerie-layman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Bzur', 'last_name': 'Haun', 'permalink': 'bzur-haun'}}, {'is_past': True, 'title': 'Praktikant', 'person': {'first_name': 'Arne', 'last_name': 'Horn', 'permalink': 'arne-horn'}}, {'is_past': True, 'title': 'Several assignments', 'person': {'first_name': 'Milan', 'last_name': 'Schnorrer', 'permalink': 'milan-schnorrer'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Rodney', 'last_name': 'Rogers', 'permalink': 'rodney-rogers'}}, {'is_past': True, 'title': 'North American Practice Lead, Data Management & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Ackerman', 'permalink': 'michael-ackerman'}}, {'is_past': True, 'title': 'Global Managing Director', 'person': {'first_name': 'Andrew', 'last_name': 'Zimmerman', 'permalink': 'andrew-zimmerman'}}, {'is_past': True, 'title': 'Partner, Supply Chain Management', 'person': {'first_name': 'Randall', 'last_name': 'E. Berry', 'permalink': 'randall-e-berry'}}, {'is_past': True, 'title': 'Manager, Strategy and Business Architecture Group', 'person': {'first_name': 'Nick', 'last_name': 'Vaney', 'permalink': 'nick-vaney'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Blosl', 'permalink': 'matthew-blosl'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'James', 'last_name': 'Beer', 'permalink': 'james-beer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Simon', 'last_name': 'Blanks', 'permalink': 'simon-blanks'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matthew', 'last_name': 'Goldstein', 'permalink': 'matthew-goldstein'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Adam', 'last_name': 'Siegel', 'permalink': 'adam-siegel'}}, {'is_past': True, 'title': 'Business Intelligence Consultant', 'person': {'first_name': 'Patrick', 'last_name': 'Carolan', 'permalink': 'patrick-carolan'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Olivier', 'last_name': 'Duprez', 'permalink': 'olivier-duprez'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Carolyn', 'last_name': 'Everson', 'permalink': 'carolyn-everson'}}, {'is_past': True, 'title': 'Experienced Management Consultant', 'person': {'first_name': 'Ramesh', 'last_name': 'Venugopal', 'permalink': 'ramesh-venugopal'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'J.', 'last_name': 'Lawrence Podmolik', 'permalink': 'j-lawrence-podmolik'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Yo', 'last_name': 'Koga', 'permalink': 'yo-koga'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Julie', 'last_name': 'Sandler', 'permalink': 'julie-sandler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Mark', 'last_name': 'Pierce', 'permalink': 'mark-pierce'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Frank F.', 'last_name': 'Britt', 'permalink': 'frank-f-britt'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Leah', 'last_name': 'Jones', 'permalink': 'leah-jones'}}, {'is_past': True, 'title': 'Senior Programmer', 'person': {'first_name': 'Rafael', 'last_name': 'Heringer', 'permalink': 'rafael-heringer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Mark', 'last_name': \"D'Agostino\", 'permalink': 'mark-dagostino'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Mark', 'last_name': 'Hadland', 'permalink': 'mark-hadland'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Drew', 'last_name': 'Kane', 'permalink': 'drew-kane'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Kelly', 'last_name': 'Ungerman', 'permalink': 'kelly-ungerman'}}, {'is_past': True, 'title': 'Strategy Management Consultant', 'person': {'first_name': 'Stephen', 'last_name': 'Bernardez', 'permalink': 'stephen-bernardez'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Chelsea', 'last_name': 'Stoner', 'permalink': 'chelsea-stoner'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Andy', 'last_name': 'Macey', 'permalink': 'andy-macey'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Trevor', 'last_name': 'Oelschig', 'permalink': 'trevor-oelschig'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Michael', 'last_name': 'J. Owsiany', 'permalink': 'michael-j-owsiany'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Isai', 'last_name': 'Peimer', 'permalink': 'isai-peimer'}}, {'is_past': True, 'title': 'Sales Lead', 'person': {'first_name': 'Matt', 'last_name': 'Needham', 'permalink': 'matt-needham'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brett', 'last_name': 'Wilson', 'permalink': 'brett-wilson'}}, {'is_past': True, 'title': 'HR Manager', 'person': {'first_name': 'Alice', 'last_name': 'Barriciello', 'permalink': 'alice-barriciello'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Bruno', 'last_name': 'Perreault', 'permalink': 'bruno-perreault'}}, {'is_past': True, 'title': 'Strategy Consulting', 'person': {'first_name': 'Ankur', 'last_name': 'Jain', 'permalink': 'ankur-jain-3'}}, {'is_past': True, 'title': 'Manager, Strategy Formulation', 'person': {'first_name': 'David', 'last_name': 'Popler', 'permalink': 'david-popler'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Chris', 'last_name': 'Seib', 'permalink': 'chris-seib'}}, {'is_past': True, 'title': 'Executive, Healthcare and Life Sciences Practice', 'person': {'first_name': 'Bill', 'last_name': 'Marvin', 'permalink': 'bill-marvin'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Stefano', 'last_name': 'Carrara', 'permalink': 'stefano-carrara'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Dickon', 'last_name': 'Waterfield', 'permalink': 'dickon-waterfield'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Marc', 'last_name': 'Doering', 'permalink': 'marc-doering'}}, {'is_past': True, 'title': 'Sr Consultant', 'person': {'first_name': 'Lane', 'last_name': 'Franks', 'permalink': 'lane-franks'}}, {'is_past': True, 'title': 'Siebel Consultant', 'person': {'first_name': 'Douglas', 'last_name': 'Correa', 'permalink': 'douglas-correa-2'}}, {'is_past': True, 'title': 'International Sales Director', 'person': {'first_name': 'Chris', 'last_name': 'Mitchell', 'permalink': 'chris-mitchell'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kerry', 'last_name': 'Rupp', 'permalink': 'kerry-rupp'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Paul', 'last_name': 'Pieper', 'permalink': 'paul-pieper'}}, {'is_past': True, 'title': 'Director of Human Performance', 'person': {'first_name': 'Daya', 'last_name': 'Kori', 'permalink': 'daya-kori'}}, {'is_past': True, 'title': 'Manager, Technology R&D Organization', 'person': {'first_name': 'Harsh', 'last_name': 'Patel', 'permalink': 'harsh-patel-2'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Teresa', 'last_name': 'Weipert', 'permalink': 'teresa-weipert'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Jones', 'permalink': 'matt-jones-2'}}, {'is_past': True, 'title': 'Sr Manager', 'person': {'first_name': 'David', 'last_name': 'Adams', 'permalink': 'david-adams-5'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Supriya', 'last_name': 'Singh', 'permalink': 'supriya-singh'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Aditya', 'last_name': 'Sanghi', 'permalink': 'aditya-sanghi'}}, {'is_past': True, 'title': 'Manager, Strategic Services Group - Communications and High Tech Practice', 'person': {'first_name': 'Gary', 'last_name': 'Warzynski', 'permalink': 'gary-warzynski'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thad', 'last_name': 'White', 'permalink': 'thad-white'}}, {'is_past': True, 'title': 'Business Intelligence Analyst', 'person': {'first_name': 'Jacob', 'last_name': 'Hansen', 'permalink': 'jacob-hansen'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Philippe', 'last_name': 'Gire', 'permalink': 'philippe-gire'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'James', 'last_name': 'McElwee', 'permalink': 'james-mcelwee'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Grieve', 'permalink': 'kevin-grieve'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Will', 'last_name': 'Hunsinger', 'permalink': 'will-hunsinger'}}, {'is_past': True, 'title': 'IT Analyst', 'person': {'first_name': 'Gerardo', 'last_name': 'Barroeta', 'permalink': 'gerardo-barroeta'}}, {'is_past': True, 'title': 'Technical Architect, Experienced Consultant', 'person': {'first_name': 'Cameron', 'last_name': 'Logan', 'permalink': 'cameron-logan'}}, {'is_past': True, 'title': 'Staff Consultant - Latin America', 'person': {'first_name': 'Turan', 'last_name': 'Sahinkaya', 'permalink': 'turan-sahinkaya'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Esben', 'last_name': 'Friis-Jensen', 'permalink': 'esben-friis-jensen'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Lisa', 'last_name': 'Agona', 'permalink': 'lisa-agona'}}, {'is_past': True, 'title': 'Member, Strategy Practice Consulting Team', 'person': {'first_name': 'Hari', 'last_name': 'Menon', 'permalink': 'hari-menon'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Mark', 'last_name': 'Perutz', 'permalink': 'mark-perutz'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Lily', 'last_name': 'Liang', 'permalink': 'lily-liang'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Jason', 'last_name': 'Simeone', 'permalink': 'jason-simeone'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Dan', 'last_name': 'Schulz', 'permalink': 'dan-schulz'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Stan', 'last_name': 'Curtis', 'permalink': 'stan-curtis'}}, {'is_past': True, 'title': 'Global Digital Marketing Manager', 'person': {'first_name': 'Janet', 'last_name': 'McCabe', 'permalink': 'janet-mccabe'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dara', 'last_name': 'Price-Olsen', 'permalink': 'dara-price-olsen'}}, {'is_past': True, 'title': 'Services Delivery Roles', 'person': {'first_name': 'Morgan', 'last_name': 'McReynolds', 'permalink': 'morgan-mcreynolds'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Kim', 'last_name': 'Pilman', 'permalink': 'kim-pilman'}}, {'is_past': True, 'title': 'Developer, Designer & Project Manager', 'person': {'first_name': 'Peter', 'last_name': 'Classon', 'permalink': 'peter-classon'}}, {'is_past': True, 'title': 'Strategy & Management Consultant', 'person': {'first_name': 'LIONEL', 'last_name': 'CARNOT', 'permalink': 'lionel-carnot'}}, {'is_past': True, 'title': 'Retail Industry team', 'person': {'first_name': 'Stephen', 'last_name': 'Morris', 'permalink': 'stephen-morris'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Damon', 'last_name': 'Lockwood', 'permalink': 'damon-lockwood'}}, {'is_past': True, 'title': 'Senior Positions', 'person': {'first_name': 'Rajiv', 'last_name': 'Paul', 'permalink': 'rajiv-paul'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Troy', 'last_name': 'Pliska', 'permalink': 'troy-pliska'}}, {'is_past': True, 'title': 'Global Managing Partner, Retail Practice', 'person': {'first_name': 'Robert', 'last_name': 'A. Willett', 'permalink': 'robert-a-willett'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Pedro', 'last_name': 'Ribeiro Santos', 'permalink': 'pedro-ribeiro-santos'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Peter', 'last_name': 'Brooks Johnson', 'permalink': 'peter-brooks-johnson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Barry', 'last_name': 'Yates', 'permalink': 'barry-yates'}}, {'is_past': True, 'title': 'Partner / Member Advisory Board', 'person': {'first_name': 'John', 'last_name': 'Bean', 'permalink': 'john-bean'}}, {'is_past': True, 'title': 'Director, Operations & Finance', 'person': {'first_name': 'Ken', 'last_name': 'Guthrie', 'permalink': 'ken-guthrie'}}, {'is_past': True, 'title': 'Associate Partner, Strategic Services practice', 'person': {'first_name': 'Mick', 'last_name': 'Slattery', 'permalink': 'mick-slattery'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Aziz', 'last_name': 'Virani', 'permalink': 'aziz-virani'}}, {'is_past': True, 'title': 'MD, Industries & Market Innovation', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Head, Public Service & Health (formerly Government) Operating Group', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': True, 'title': 'Auditor', 'person': {'first_name': 'Nicola', 'last_name': 'Downes', 'permalink': 'nicola-downes'}}, {'is_past': True, 'title': 'Manager of Technology Integration Solutions', 'person': {'first_name': 'Rob', 'last_name': 'Leach', 'permalink': 'rob-leach'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Rydell', 'permalink': 'john-rydell'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ramzi', 'last_name': 'AbdelJaber', 'permalink': 'ramzi-abdeljaber'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Venkat', 'last_name': 'Gattamaneni', 'permalink': 'venkat-gattamaneni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Claudio', 'last_name': 'Stabon', 'permalink': 'claudio-stabon'}}, {'is_past': True, 'title': 'Consultant, Communications & High Tech Market Unit', 'person': {'first_name': 'Olivia', 'last_name': 'Garfield', 'permalink': 'olivia-garfield'}}, {'is_past': True, 'title': 'Executive Partner', 'person': {'first_name': 'Jorg', 'last_name': 'Heinemann', 'permalink': 'jorg-heinemann'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Ginal', 'permalink': 'steve-ginal'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Thomas', 'last_name': 'Nikolopulos', 'permalink': 'thomas-nikolopulos'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Russell', 'last_name': 'Joyner', 'permalink': 'russell-joyner'}}, {'is_past': True, 'title': 'Management Teams', 'person': {'first_name': 'Chris', 'last_name': 'Hafenscher', 'permalink': 'chris-hafenscher'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Beth', 'last_name': 'Murphy', 'permalink': 'beth-murphy'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'J.', 'last_name': \"Patrick O'Halloran\", 'permalink': 'j-patrick-ohalloran'}}, {'is_past': True, 'title': 'Associate Partner', 'person': {'first_name': 'Robert', 'last_name': 'Jones', 'permalink': 'robert-jones-2'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Kerry', 'last_name': 'Stover', 'permalink': 'kerry-stover'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Ricks', 'permalink': 'michael-ricks'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'A.', 'last_name': 'Craig Asher', 'permalink': 'a-craig-asher'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'John', 'last_name': 'Banczak', 'permalink': 'john-banczak'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Dwayne', 'last_name': 'Nesmith', 'permalink': 'dwayne-nesmith'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Sevitz', 'permalink': 'adrian-sevitz'}}, {'is_past': True, 'title': 'Consultant Technology', 'person': {'first_name': 'Laurent', 'last_name': 'Ruben', 'permalink': 'laurent-ruben'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ullash', 'last_name': 'Tiwari', 'permalink': 'ullash-tiwari'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Erick', 'last_name': 'Arndt', 'permalink': 'erick-arndt'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Scott', 'last_name': 'Reismanis', 'permalink': 'scott-reismanis'}}, {'is_past': True, 'title': 'Strategy Consultant, Telecoms & High Tech', 'person': {'first_name': 'Ed', 'last_name': 'Hodges', 'permalink': 'ed-hodges'}}, {'is_past': True, 'title': 'Open Source Consultant', 'person': {'first_name': 'Luc', 'last_name': 'Byhet', 'permalink': 'luc-byhet'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Pearson', 'permalink': 'jeff-pearson'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Howard', 'last_name': 'Koenig', 'permalink': 'howard-koenig'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Giuseppe', 'last_name': 'De Giorgi', 'permalink': 'giuseppe-de-giorgi'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tom', 'last_name': 'Spengler', 'permalink': 'tom-spengler-2'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Goncalo', 'last_name': 'Reis', 'permalink': 'gonalo-reis'}}, {'is_past': True, 'title': 'Managing Partner, Strategy', 'person': {'first_name': 'Steven', 'last_name': 'Lamont', 'permalink': 'steven-lamont'}}, {'is_past': True, 'title': 'Enterprise Architecture', 'person': {'first_name': 'Guilherme', 'last_name': 'Souza', 'permalink': 'guilherme-souza'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jamey', 'last_name': 'Jeff', 'permalink': 'jamey-jeff'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'Liska', 'permalink': 'john-liska'}}, {'is_past': True, 'title': 'Analyst Programmer', 'person': {'first_name': 'Rajneesh', 'last_name': 'Verma', 'permalink': 'rajneesh-verma'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Oriol', 'last_name': 'Penya Sanromà', 'permalink': 'oriol-penya-sanrom'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Ritu', 'last_name': 'Raj', 'permalink': 'ritu-raj'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Christopher', 'last_name': 'Esclapez', 'permalink': 'christopher-esclapez'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Alexi', 'last_name': 'Suvacioglu', 'permalink': 'alexi-suvacioglu'}}, {'is_past': True, 'title': 'Internet Marketing Consultant', 'person': {'first_name': 'Antonio', 'last_name': 'Altamirano', 'permalink': 'antonio-altamirano'}}, {'is_past': True, 'title': 'Senior Business Analyst', 'person': {'first_name': 'Cory', 'last_name': 'Jones', 'permalink': 'cory-jones'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Will', 'last_name': 'Miceli', 'permalink': 'will-miceli'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Martin', 'last_name': 'Mackay', 'permalink': 'martin-mackay'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Kevin', 'last_name': 'Malik', 'permalink': 'kevin-malik'}}, {'is_past': True, 'title': 'Manager - Shared Service Centre', 'person': {'first_name': 'Paul', 'last_name': 'Monelly', 'permalink': 'paul-monelly'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Hnatiuk', 'permalink': 'steve-hnatiuk'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Rodrigo', 'last_name': 'Prudencio', 'permalink': 'rodrigo-prudencio'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Amrit', 'last_name': 'Kirpalani', 'permalink': 'amrit-kirpalani'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Peebler', 'permalink': 'andy-peebler'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Lawrence', 'last_name': 'Leisure', 'permalink': 'lawrence-leisure'}}, {'is_past': True, 'title': 'Process Analyst', 'person': {'first_name': 'TJ', 'last_name': 'Mahony', 'permalink': 'tj-mahony'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Rik', 'last_name': 'Vandevenne', 'permalink': 'rik-vandevenne'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Michael', 'last_name': 'Piacenza', 'permalink': 'michael-piacenza'}}, {'is_past': True, 'title': 'System Integration Consultant', 'person': {'first_name': 'Jacques', 'last_name': 'Marine', 'permalink': 'jacques-marine'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Savitz', 'permalink': 'andrew-savitz'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jim', 'last_name': 'Cyb', 'permalink': 'jim-cyb'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kirk', 'last_name': 'Wolfe', 'permalink': 'kirk-wolfe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Ed', 'last_name': 'Hofffman', 'permalink': 'ed-hofffman'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Joe', 'last_name': 'Terry', 'permalink': 'joe-terry'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Stewart', 'last_name': 'Smythe', 'permalink': 'stewart-smythe'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Pedro', 'last_name': 'Cerdeira', 'permalink': 'pedro-cerdeira'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Ramirez', 'permalink': 'alex-ramirez'}}, {'is_past': True, 'title': 'Senior consultant', 'person': {'first_name': 'Michael', 'last_name': 'Levit', 'permalink': 'michael-levit'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Clarissa', 'last_name': 'Riggins', 'permalink': 'clarissa-riggins'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Clint', 'last_name': 'Dickson', 'permalink': 'clint-dickson'}}, {'is_past': True, 'title': 'Senior Analyst', 'person': {'first_name': 'Neal', 'last_name': 'Mohan', 'permalink': 'neal-mohan'}}, {'is_past': True, 'title': 'Consultant Developer', 'person': {'first_name': 'Cyndi', 'last_name': 'Mitchell', 'permalink': 'cyndi-mitchell'}}, {'is_past': True, 'title': 'Managing Partner, North American Life Sciences', 'person': {'first_name': 'Amy', 'last_name': 'Loftus', 'permalink': 'amy-loftus'}}, {'is_past': True, 'title': 'Senior Strategy Consultant', 'person': {'first_name': 'David', 'last_name': 'J. Kim', 'permalink': 'david-j-kim'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Denis', 'last_name': 'Bernaert', 'permalink': 'denis-bernaert'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Aparna', 'last_name': 'Kuttuva', 'permalink': 'aparna-kuttuva'}}, {'is_past': True, 'title': 'Enterprise Architect', 'person': {'first_name': 'Christopher', 'last_name': 'Stancombe', 'permalink': 'christopher-stancombe'}}, {'is_past': True, 'title': 'Worldwide Managing Partner of Market Development and Member of the Executive Committee', 'person': {'first_name': 'Skip', 'last_name': 'Battle', 'permalink': 'skip-battle'}}, {'is_past': True, 'title': 'Developer and Design Lead, Telecom OSS', 'person': {'first_name': 'Scott', 'last_name': 'Regan', 'permalink': 'scott-regan'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Lawson', 'permalink': 'matt-lawson'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Kamal', 'last_name': 'Fariz Mohamed Mahyuddin', 'permalink': 'kamal-fariz-mohamed-mahyuddin'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Michael', 'last_name': 'Malone', 'permalink': 'michael-malone'}}, {'is_past': True, 'title': 'Summer Analyst', 'person': {'first_name': 'Tian', 'last_name': 'He', 'permalink': 'tian-he'}}, {'is_past': True, 'title': 'Senior Manager, Media & Entertainment', 'person': {'first_name': 'Byron', 'last_name': 'Dumbrill', 'permalink': 'byron-dumbrill'}}, {'is_past': True, 'title': 'Information Systems Consultant', 'person': {'first_name': 'John', 'last_name': 'Abraham', 'permalink': 'john-abraham'}}, {'is_past': True, 'title': 'Senior Research Associate', 'person': {'first_name': 'Neil', 'last_name': 'Sheth', 'permalink': 'neil-sheth'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Neil', 'last_name': 'Sequeira', 'permalink': 'neil-sequeira'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Will', 'last_name': 'Peppo', 'permalink': 'will-peppo'}}, {'is_past': True, 'title': 'Managing Partner, India Delivery Centre Network', 'person': {'first_name': 'Chaitanya', 'last_name': 'M. Kamat', 'permalink': 'chaitanya-m-kamat'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Amanda', 'last_name': 'Keleher', 'permalink': 'amanda-keleher'}}, {'is_past': True, 'title': 'Marketing Strategy Executive', 'person': {'first_name': 'Khurrum', 'last_name': 'Malik', 'permalink': 'khurrum-malik'}}, {'is_past': True, 'title': 'Mangaement Consultant', 'person': {'first_name': 'Putri', 'last_name': 'Nurul Ida', 'permalink': 'putri-nurul-ida'}}, {'is_past': True, 'title': 'Research Programmer at Accenture Technology Labs', 'person': {'first_name': 'Brandon', 'last_name': 'Harvey', 'permalink': 'brandon-harvey'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Dan', 'last_name': 'Killeen', 'permalink': 'dan-killeen'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Marco', 'last_name': 'Visibelli', 'permalink': 'marco-visibelli'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Brian', 'last_name': 'Bispala', 'permalink': 'brian-bispala'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Thomas', 'last_name': 'Holl', 'permalink': 'thomas-holl'}}, {'is_past': True, 'title': 'application developer', 'person': {'first_name': 'Yosi', 'last_name': 'Glick', 'permalink': 'yossi-glick'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Longo', 'permalink': 'brian-longo'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Eric', 'last_name': 'Browne', 'permalink': 'eric-browne'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Eunice', 'last_name': 'Yu', 'permalink': 'eunice-yu'}}, {'is_past': True, 'title': 'Director, Communication, Media and Technology / Financial Services', 'person': {'first_name': 'Frank', 'last_name': 'Vaculin', 'permalink': 'frank-vaculin'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Michael', 'last_name': 'Katz', 'permalink': 'michael-katz'}}, {'is_past': True, 'title': 'Senior Consultant – Products/Information and Technology Strategy Practices', 'person': {'first_name': 'Chris', 'last_name': 'Kibarian', 'permalink': 'chris-kibarian'}}, {'is_past': True, 'title': 'Associate Partner, Electronics and High Tech Practice', 'person': {'first_name': 'Michael', 'last_name': 'Frey', 'permalink': 'michael-frey'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Doug', 'last_name': 'Petkanics', 'permalink': 'doug-petkanics'}}, {'is_past': True, 'title': 'Senior Consultant, Strategy Services', 'person': {'first_name': 'Linda', 'last_name': 'Shaffer', 'permalink': 'linda-shaffer'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Mark', 'last_name': 'Orttung', 'permalink': 'mark-orttung'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Christine', 'last_name': 'Turcuato Gutierrez', 'permalink': 'christine-turcuato-gutierrez'}}, {'is_past': True, 'title': 'Retail Consultant', 'person': {'first_name': 'Louise', 'last_name': 'Mullock', 'permalink': 'louise-mullock'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Paul', 'last_name': 'Lee', 'permalink': 'paul-lee'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Ed', 'last_name': 'Lang', 'permalink': 'ed-lang-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Evan', 'last_name': 'Ginsburg', 'permalink': 'evan-ginsburg'}}, {'is_past': True, 'title': 'Architect, SOA', 'person': {'first_name': 'Manish', 'last_name': 'Pandit', 'permalink': 'manish-pandit'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Pierre', 'last_name': 'Hennes', 'permalink': 'pierre-hennes'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Ray', 'last_name': 'Smith', 'permalink': 'ray-smith-2'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Alisdair', 'last_name': 'Faulkner', 'permalink': 'alisdair-faulkner'}}, {'is_past': True, 'title': 'Global Managing Partner', 'person': {'first_name': 'Gregory', 'last_name': 'J. Owens', 'permalink': 'gregory-j-owens'}}, {'is_past': True, 'title': 'Technology Analyst', 'person': {'first_name': 'Adriane', 'last_name': 'Musuneggi', 'permalink': 'adriane-musuneggi'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Rob', 'last_name': 'Chandra', 'permalink': 'rob-chandra'}}, {'is_past': True, 'title': 'Consultant,,Analyst', 'person': {'first_name': 'Jason', 'last_name': 'Provisor', 'permalink': 'jason-provisor'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Will', 'last_name': 'Prendergast', 'permalink': 'will-prendergast'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Adam', 'last_name': 'Kanouse', 'permalink': 'adam-kanouse'}}, {'is_past': True, 'title': 'Change Management', 'person': {'first_name': 'Sophia', 'last_name': 'Kim', 'permalink': 'sophia-kim'}}, {'is_past': True, 'title': 'Developing Research', 'person': {'first_name': 'Brain', 'last_name': 'Leslie', 'permalink': 'brain-leslie'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Nate', 'last_name': 'Kontny', 'permalink': 'nate-kontny'}}, {'is_past': True, 'title': 'Staff', 'person': {'first_name': 'Jeffrey', 'last_name': 'Leget', 'permalink': 'jeffrey-leget'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Dintenfass', 'permalink': 'nathan-dintenfass'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Bokor', 'permalink': 'andrew-bokor'}}, {'is_past': True, 'title': 'Summer Analyst', 'person': {'first_name': 'Jason', 'last_name': 'Yeh', 'permalink': 'jason-yeh-2'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Sanjay', 'last_name': 'Wahi', 'permalink': 'sanjay-wahi'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Lettmann', 'permalink': 'jason-lettmann'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'James', 'last_name': 'Miller', 'permalink': 'james-miller-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Tracy', 'last_name': 'Randall', 'permalink': 'tracy-randall'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Maria', 'last_name': 'Callahan', 'permalink': 'maria-callahan'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Deon', 'last_name': 'van Heerden', 'permalink': 'deon-van-heerden'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Drew', 'last_name': 'Martin', 'permalink': 'drew-martin'}}, {'is_past': True, 'title': 'Business Analyst and Project Management Consultant', 'person': {'first_name': 'John', 'last_name': 'Ciecholewski', 'permalink': 'john-ciecholewski'}}, {'is_past': True, 'title': 'consultant', 'person': {'first_name': 'Darren', 'last_name': 'Black', 'permalink': 'darren-black'}}, {'is_past': True, 'title': 'Senior Management Consultant, Corporate Finance Group', 'person': {'first_name': 'Talia', 'last_name': 'Rafaeli', 'permalink': 'talia-rafaeli'}}, {'is_past': True, 'title': 'Strategy Consultant', 'person': {'first_name': 'Ruchika', 'last_name': 'Kumar', 'permalink': 'ruchika-kumar'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andrew', 'last_name': 'Leigh', 'permalink': 'andrew-leigh'}}, {'is_past': True, 'title': 'Executive Assistant', 'person': {'first_name': 'Laurie', 'last_name': 'Femia', 'permalink': 'laurie-femia'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Tim', 'last_name': 'Curran', 'permalink': 'tim-curran-3'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Liz', 'last_name': 'Devine', 'permalink': 'liz-devine'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Gareth', 'last_name': 'Capon', 'permalink': 'gareth-capon'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Primal', 'last_name': 'Sharma', 'permalink': 'primal-sharma'}}, {'is_past': True, 'title': 'Developer (Gap Year)', 'person': {'first_name': 'Tom', 'last_name': 'Godber', 'permalink': 'tom-godber'}}, {'is_past': True, 'title': 'Senior Staff', 'person': {'first_name': 'Flint', 'last_name': 'A. Lane', 'permalink': 'flint-a-lane'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Colin', 'last_name': 'T. Mistele', 'permalink': 'colin-t-mistele'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Robert', 'last_name': 'A. Lauer', 'permalink': 'robert-a-lauer'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Jeff', 'last_name': 'Lin', 'permalink': 'jeff-lin-5'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Mark', 'last_name': 'Krapels', 'permalink': 'mark-krapels'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Edoardo', 'last_name': 'Luciani', 'permalink': 'edoardo-luciani'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Dena', 'last_name': 'Trujillo', 'permalink': 'dena-trujillo'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Cole', 'last_name': 'Harper', 'permalink': 'cole-harper'}}, {'is_past': True, 'title': 'Consulting Practice', 'person': {'first_name': 'Nick', 'last_name': 'Hartman', 'permalink': 'nick-hartman'}}, {'is_past': True, 'title': 'Director, Market and Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Rossie', 'permalink': 'chris-rossie'}}, {'is_past': True, 'title': 'Business Development, North America within Global Analytics Group', 'person': {'first_name': 'John', 'last_name': 'Fraser', 'permalink': 'john-fraser'}}, {'is_past': True, 'title': 'Service Delivery Lead', 'person': {'first_name': 'Manuel', 'last_name': 'Beaudroit', 'permalink': 'manuel-beaudroit'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Gregg', 'last_name': 'Burt', 'permalink': 'gregg-burt'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Damon', 'last_name': 'Clinkscales', 'permalink': 'damon-clinkscales'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Mihir', 'last_name': 'Mehta', 'permalink': 'mihir-mehta'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Tom', 'last_name': 'Englund', 'permalink': 'tom-englund'}}, {'is_past': True, 'title': 'Strategy Consulting', 'person': {'first_name': 'Annie', 'last_name': 'Lin', 'permalink': 'annie-lin'}}, {'is_past': True, 'title': 'IT Project Manager/Sr. Technical Architect', 'person': {'first_name': 'Raghavan', 'last_name': 'Chellappan', 'permalink': 'raghavan-chellappan'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Ravi', 'last_name': 'Mohan', 'permalink': 'ravi-mohan'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Collin', 'last_name': 'West', 'permalink': 'collin-west'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Rebecca', 'last_name': 'Madsen', 'permalink': 'rebecca-madsen'}}, {'is_past': True, 'title': 'Management Consultant (Strategy)', 'person': {'first_name': 'Lisa', 'last_name': 'Bridgett', 'permalink': 'lisa-bridgett'}}, {'is_past': True, 'title': 'Business Intelligence Consultant', 'person': {'first_name': 'Jacob', 'last_name': 'Hansen', 'permalink': 'jacob-hansen'}}, {'is_past': True, 'title': 'Global Client Account HR Lead', 'person': {'first_name': 'Melissa', 'last_name': 'Breakfield', 'permalink': 'melissa-breakfield'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Dain', 'last_name': 'F. DeGroff', 'permalink': 'dain-f-degroff'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Chawanop', 'last_name': 'Witthayaphirak', 'permalink': 'chawanop-witthayaphirak-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Roberts', 'permalink': 'jason-roberts-5'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'Jon', 'last_name': 'Schäffer', 'permalink': 'jon-schffer'}}, {'is_past': True, 'title': 'Process Designer', 'person': {'first_name': 'Geoffrey', 'last_name': 'Berthon', 'permalink': 'geoffrey-berthon'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Michael', 'last_name': 'Neal', 'permalink': 'michael-neal-2'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Meghan', 'last_name': 'Keough', 'permalink': 'meghan-keough'}}, {'is_past': True, 'title': 'Senior manager', 'person': {'first_name': 'Kevin', 'last_name': 'McClain', 'permalink': 'kevin-mcclain'}}, {'is_past': True, 'title': 'Asia region network consulting practice', 'person': {'first_name': 'Omar', 'last_name': 'Hakim', 'permalink': 'omar-hakim'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Ken', 'last_name': 'desGarennes', 'permalink': 'ken-desgarennes'}}, {'is_past': True, 'title': 'Led Initiatives', 'person': {'first_name': 'Doug', 'last_name': 'Marquis', 'permalink': 'doug-marquis'}}, {'is_past': True, 'title': 'Sr. Technology Consultant - New York', 'person': {'first_name': 'Christine', 'last_name': 'Larsen', 'permalink': 'christine-larsen'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Joe', 'last_name': 'Forehand', 'permalink': 'joe-forehand'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Charles', 'last_name': 'Yong', 'permalink': 'charles-yong-2'}}, {'is_past': True, 'title': 'Management Consultant', 'person': {'first_name': 'James', 'last_name': 'Gardner', 'permalink': 'james-gardner'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Paul', 'last_name': 'Perleberg', 'permalink': 'paul-perleberg'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Thomas', 'last_name': 'Suk', 'permalink': 'thomas-suk'}}, {'is_past': True, 'title': 'Workday Financials Practice', 'person': {'first_name': 'Brian', 'last_name': 'Wolf', 'permalink': 'brian-wolf'}}, {'is_past': True, 'title': 'IT Consultant', 'person': {'first_name': 'David', 'last_name': 'Lyman', 'permalink': 'david-lyman'}}, {'is_past': True, 'title': 'Sr. Director', 'person': {'first_name': 'Garry', 'last_name': 'Stetser', 'permalink': 'garry-stetser'}}, {'is_past': True, 'title': 'Strategy Partner, Communications & High Tech practice', 'person': {'first_name': 'Daniel', 'last_name': 'Rizer', 'permalink': 'daniel-rizer'}}, {'is_past': True, 'title': 'Consultant, Pharmaceutical R&D', 'person': {'first_name': 'Sam', 'last_name': 'Holliday', 'permalink': 'sam-holliday'}}, {'is_past': True, 'title': 'Business Consultant', 'person': {'first_name': 'Shawn', 'last_name': 'Lu', 'permalink': 'shawn-lu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tor', 'last_name': 'Oystein Repstad', 'permalink': 'tor-ystein-repstad'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Joseph', 'last_name': 'V. Marabito', 'permalink': 'joseph-v-marabito'}}, {'is_past': True, 'title': 'Finance Lead and Startup Controller', 'person': {'first_name': 'Craig', 'last_name': 'Leidlein', 'permalink': 'craig-leidlein'}}, {'is_past': True, 'title': 'Consultant, Technology Div.', 'person': {'first_name': 'Nick', 'last_name': 'McKittrick', 'permalink': 'nick-mckittrick'}}, {'is_past': True, 'title': 'Managing Partner, Financial Services, France and the Global Head of Capital Markets Industry', 'person': {'first_name': 'Salomon', 'last_name': 'Mizrahi', 'permalink': 'salomon-mizrahi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Joel', 'last_name': 'Greensite', 'permalink': 'joel-greensite'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Adam', 'last_name': 'Justice', 'permalink': 'adam-justice'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Florin', 'last_name': 'Rotar', 'permalink': 'florin-rotar'}}, {'is_past': True, 'title': 'Technology Consultant', 'person': {'first_name': 'Eugene', 'last_name': 'Kim', 'permalink': 'eugene-kim-2'}}, {'is_past': True, 'title': 'Client Group Managing Partner', 'person': {'first_name': 'Aziz', 'last_name': 'Virani', 'permalink': 'aziz-virani'}}, {'is_past': True, 'title': 'MD, Management Consulting & Industries - Resources Operating Group', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Consultant, Energy Industry', 'person': {'first_name': 'Shawn', 'last_name': 'Collinson', 'permalink': 'shawn-collinson'}}, {'is_past': True, 'title': 'Head, Outsourcing & Infrastructure Delivery Group', 'person': {'first_name': 'Martin', 'last_name': 'I. Cole', 'permalink': 'martin-i-cole'}}, {'is_past': True, 'title': 'Senior Technologist', 'person': {'first_name': 'Scott', 'last_name': 'Rothrock', 'permalink': 'scott-rothrock'}}, {'is_past': True, 'title': 'Managing Director (Finland) ,, Director, Nordic Outsourcing ,, Deputy Managing Director ,, Technology Director', 'person': {'first_name': 'Juho', 'last_name': 'Malmberg', 'permalink': 'juho-malmberg'}}, {'is_past': True, 'title': 'Communications and Technology Analyst', 'person': {'first_name': 'Rachel', 'last_name': 'Hechter', 'permalink': 'rachel-hechter'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Fernanda', 'last_name': 'Gandara', 'permalink': 'fernanda-gandara'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Alan', 'last_name': 'R. Christensen', 'permalink': 'alan-r-christensen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Cindy', 'last_name': 'Bi', 'permalink': 'cindy-bi'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'Sanjay', 'last_name': 'Mathur', 'permalink': 'sanjay-mathur'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Robert', 'last_name': 'Auston', 'permalink': 'robert-auston'}}, {'is_past': True, 'title': 'Leadership Role in Accenture’s Logistics Strategy Practice', 'person': {'first_name': 'Irv', 'last_name': 'Grossman', 'permalink': 'irv-grossman'}}, {'is_past': True, 'title': 'Sr Manager', 'person': {'first_name': 'Susanna', 'last_name': 'High', 'permalink': 'susanna-high'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Hakon', 'last_name': 'Kvale', 'permalink': 'hakon-kvale'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mark', 'last_name': 'Bunger', 'permalink': 'mark-bunger'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'J.', 'last_name': \"Patrick O'Halloran\", 'permalink': 'j-patrick-ohalloran'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Feser', 'permalink': 'john-feser'}}, {'is_past': True, 'title': 'Leadership Roles', 'person': {'first_name': 'Bruce', 'last_name': 'Ballengee', 'permalink': 'bruce-ballengee'}}, {'is_past': True, 'title': 'Director of the Entity Tax Matters Group', 'person': {'first_name': 'Eric', 'last_name': 'C. Green', 'permalink': 'eric-c-green'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Payam', 'last_name': 'Safa', 'permalink': 'payam-safa'}}], 'competitions': [{'competitor': {'name': 'IBM', 'permalink': 'ibm'}}, {'competitor': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, {'competitor': {'name': 'Booz Allen Hamilton', 'permalink': 'booz-allen-hamilton'}}, {'competitor': {'name': 'Deloitte Consulting', 'permalink': 'deloitte-consulting'}}, {'competitor': {'name': 'IBM', 'permalink': 'ibm'}}], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'BuzzConnect ', 'permalink': 'buzzconnect'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://bits.blogs.nytimes.com/2009/10/20/accenture-tries-to-turn-ads-into-gold-with-adchemy/', 'source_description': 'NYTimes', 'raised_amount': 31000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 20, 'company': {'name': 'Adchemy', 'permalink': 'adchemy'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.finsmes.com/2013/07/predixion-software-san-juan-capistrano-ca-based-developer-collaborative-predictive-analytics-solutions-raised-20m-series-financing.html', 'source_description': 'Predixion Software Raises $20 Million in Series C Financing', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 8, 'company': {'name': 'Predixion Software', 'permalink': 'predixion-software'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/07/31/apigee-raises-35m-for-api-management-platform/', 'source_description': 'Apigee Raises $35M For Its API Management Platform', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'company': {'name': 'Apigee', 'permalink': 'apigee'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://biz.yahoo.com/ap/080514/accenture_acquisition.html?.v=1', 'source_description': 'Accenture buying privately held Origin Digital', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Origin Digital', 'permalink': 'origin-digital'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newsroom.accenture.com/article_display.cfm?article_id=4676', 'source_description': 'Accenture to Acquire AddVal Technology Inc., Enhancing Freight-Management Capabilities', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'AddVal Technology', 'permalink': 'addval-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/281730/accenture-acquires-riskcontrol-rio-based-risk-management-company-adding%C2%A0end-end-software', 'source_description': 'Accenture Acquires RiskControl, a Rio-Based Risk Management Company, Adding End-to-End Software Solution to Its Risk Offerings', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 12, 'company': {'name': 'RiskControl', 'permalink': 'riskcontrol'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/accenture-acquire-newspage-leading-provider-080000715.html', 'source_description': 'Accenture to Acquire NewsPage, a Leading Provider of Integrated Distributor Management and Mobility Software for the Consumer Goods Industry', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 30, 'company': {'name': 'NewsPage', 'permalink': 'newspage'}}, {'price_amount': 316000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pulse2.com/2013/05/18/accenture-buying-acquity-group-for-316-million-86190/', 'source_description': 'Accenture Plc (ACN) Acquires E-Commerce Company Acquity Group For $316 Million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 19, 'company': {'name': 'Acquity Group', 'permalink': 'acquity-group'}}, {'price_amount': 375000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businesswire.com/news/home/20131003005465/en/Accenture-Acquire-Procurian-Expanding-Leading-Capabilities-Procurement', 'source_description': ' Accenture to Acquire Procurian Inc., Expanding Its Leading Capabilities in Procurement Business Process Outsourcing ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Procurian', 'permalink': 'procurian'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.trefis.com/stock/acn/articles/148404/accenture-acquires-avventa-to-extend-social-media-marketing-offering/2012-10-12', 'source_description': 'Accenture Acquires avVenta To Extend Social Media Marketing Offering', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 12, 'company': {'name': 'avVenta', 'permalink': 'avventa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newsroom.accenture.com/news/accenture-completes-acquisition-of-duck-creek-technologies.htm', 'source_description': 'Accenture Completes Acquisition of Duck Creek Technologies', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 23, 'company': {'name': 'Duck Creek Technologies', 'permalink': 'duck-creek-technologies'}}], 'offices': [{'description': '', 'address1': '1615 Murray Canyon Road', 'address2': 'Suite 400', 'zip_code': '92108', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '75 Fifth Street NW', 'address2': 'Suite 1100', 'zip_code': '30308', 'city': 'Atlanta', 'state_code': 'GA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '9-10 St Andrew Square', 'address2': '', 'zip_code': 'EH2 2AF', 'city': 'Edinburgh', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '145 King Street West', 'address2': 'Suite 1401', 'zip_code': 'M5H 1J8', 'city': 'Toronto, Ontario', 'state_code': None, 'country_code': 'CAN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 1824, 'description': \"Nokia and Accenture have entered into an agreement for Accenture to acquire Nokia's Symbian Professional Services unit responsible for Symbian OS customer engineering and customer support.\", 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 17, 'source_url': 'http://www.freshnews.com/news/183308/nokias-symbian-professional-services-be-acquired-accenture', 'source_text': '', 'source_description': \"Nokia's Symbian Professional Services to be Acquired by Accenture\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 10210, 'description': 'Accenture Agrees to Acquire CAS Computer Anwendungs-und Systemberatung AG, a Leader in Consumer Products Industry CRM and Mobility Software', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://www.freshnews.com/news/417558/accenture-agrees-acquire-cas-computer-anwendungs-und-systemberatung-ag-leader-consumer-', 'source_text': '', 'source_description': 'Accenture Agrees to Acquire CAS Computer Anwendungs-und Systemberatung AG, a Leader in Consumer Products Industry CRM and Mobility Software', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 30590, 'description': 'ACCENTURE AWARDED HP PARTNER IN EXCELLENCE GLOBAL INNOVATION AWARD FOR CLOUD COMPUTING', 'stoned_year': 2013, 'stoned_month': 2, 'stoned_day': 22, 'source_url': 'http://www.freshnews.com/news/763969/accenture-awarded-hp-partner-excellence-global-innovation-award-cloud-computing', 'source_text': '', 'source_description': 'ACCENTURE AWARDED HP PARTNER IN EXCELLENCE GLOBAL INNOVATION AWARD FOR CLOUD COMPUTING', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 35631, 'description': 'U.S. Air Force Awards Accenture $42 Million Contract for Financial Management System Improvements', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 24, 'source_url': 'http://www.businesswire.com/news/home/20130624005036/en/U.S.-Air-Force-Awards-Accenture-42-Million?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'U.S. Air Force Awards Accenture $42 Million Contract for Financial Management System Improvements', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}, {'id': 43628, 'description': 'Accenture, will purchase Industrial and Embedded Software Solutions from Evopro Group', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 28, 'source_url': 'http://mna.im/segmentview.aspx?ViewModes=6&AcquisitionID=38323', 'source_text': '', 'source_description': 'Accenture, will purchase Industrial and Embedded Software Solutions from Evopro Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Accenture', 'permalink': 'accenture'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 7, 'pub_day': 27, 'stock_symbol': 'NYSE:ACN'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 136], 'assets/images/resized/0011/0968/110968v2-max-150x150.png'], [[250, 227], 'assets/images/resized/0011/0968/110968v2-max-250x250.png'], [[450, 409], 'assets/images/resized/0011/0968/110968v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.accenture.com/Global/About_Accenture/Company_Overview/Executive_Leadership/PierreNanterme.htm', 'title': 'Pierre Nanterme is the new CEO of Accenture'}], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529a657'), 'name': 'Tata Consultancy Services', 'permalink': 'tata-consultancy-services', 'crunchbase_url': 'http://www.crunchbase.com/company/tata-consultancy-services', 'homepage_url': 'http://www.tcs.com', 'blog_url': '', 'blog_feed_url': 'http://www.tcs.com/rss_feeds/Pages/feed.aspx?f=p', 'twitter_username': 'TCS_News', 'category_code': 'consulting', 'number_of_employees': 200300, 'founded_year': 1968, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tcs, india', 'alias_list': '', 'email_address': 'global.marketing@tcs.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Dec 03 11:25:19 UTC 2008', 'updated_at': 'Thu May 09 11:58:45 UTC 2013', 'overview': '

When you choose Tata Consultancy Services (TCS) as your IT services, consulting and business solutions partner, you will discover what so many global enterprises have already discovered—the power of certainty.

\\n\\n

We are a leader in the global marketplace and among the top 10 technology firms in the world. Our continued rapid growth is a testament to the certainty our clients experience every day. Building on more than 40 years of experience, we add real value to global organizations through domain expertise plus solutions with proven success in the field and world-class service. It’s how we keep you moving forward.

', 'image': {'available_sizes': [[[150, 18], 'assets/images/resized/0003/1888/31888v2-max-150x150.jpg'], [[211, 26], 'assets/images/resized/0003/1888/31888v2-max-250x250.jpg'], [[211, 26], 'assets/images/resized/0003/1888/31888v2-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & President - TCS, Japan K. K.', 'person': {'first_name': 'Richard', 'last_name': 'Dyck', 'permalink': 'richard-dyck'}}, {'is_past': False, 'title': 'CEO & MD', 'person': {'first_name': 'N', 'last_name': 'Chandrasekaran', 'permalink': 'n-chandrasekaran'}}, {'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Ratan', 'last_name': 'N Tata', 'permalink': 'ratan-n-tata'}}, {'is_past': False, 'title': 'Vice-Chairman', 'person': {'first_name': 'S.', 'last_name': 'Ramadorai', 'permalink': 's-ramadorai'}}, {'is_past': False, 'title': 'Systems Engineer', 'person': {'first_name': 'Abdul', 'last_name': 'J', 'permalink': 'abdul-jaleel-kk'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Paras', 'last_name': 'Arora', 'permalink': 'paras-arora'}}, {'is_past': False, 'title': 'Principal', 'person': {'first_name': 'Shikrant', 'last_name': 'N. Pathak', 'permalink': 'shikrant-n-pathak'}}, {'is_past': False, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Rajesh', 'last_name': 'Rathod', 'permalink': 'rajesh-rathod'}}, {'is_past': False, 'title': 'Alliance Head - IBM Business Analytics Solutions', 'person': {'first_name': 'Ram', 'last_name': 'Mohan', 'permalink': 'ram-mohan-2'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'S.', 'last_name': 'Ramadorai', 'permalink': 's-ramadorai'}}, {'is_past': True, 'title': 'Astt. Hardware Engineer', 'person': {'first_name': 'Vibhor', 'last_name': 'Jain', 'permalink': 'vibhor-jain'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Kruttik', 'last_name': 'Aggarwal', 'permalink': 'kruttik-aggarwal'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Ashwin', 'last_name': 'Singh', 'permalink': 'ashwin-singh'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Abhishek', 'last_name': 'Sant', 'permalink': 'abhishek-sant'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Sunny', 'last_name': 'Malhi', 'permalink': 'sunny-malhi'}}, {'is_past': True, 'title': 'Asst. Consultant', 'person': {'first_name': 'Sridhar', 'last_name': 'Vutukuri', 'permalink': 'sridhar-vutukuri'}}, {'is_past': True, 'title': 'Assistant Systems Analyst', 'person': {'first_name': 'Neelakantan', 'last_name': 'Natrajan', 'permalink': 'neelakantan-natrajan'}}, {'is_past': True, 'title': 'Systems Analyst', 'person': {'first_name': 'Vineet', 'last_name': 'Sharma', 'permalink': 'vineet-sharma'}}, {'is_past': True, 'title': 'Sr. Engineer', 'person': {'first_name': 'Jayesh', 'last_name': 'Bhayani', 'permalink': 'jayesh-bhayani'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Sonia', 'last_name': 'Ahuja', 'permalink': 'sonia-ahuja'}}, {'is_past': True, 'title': 'ASE', 'person': {'first_name': 'Marcelo', 'last_name': 'Vaccaro', 'permalink': 'marcelo-vaccaro'}}, {'is_past': True, 'title': 'Assoc Consultant / Group Manager', 'person': {'first_name': 'Suhas', 'last_name': 'Gudihal', 'permalink': 'suhas-gudihal'}}, {'is_past': True, 'title': 'ERP', 'person': {'first_name': 'Vinay', 'last_name': 'Bhardwaj', 'permalink': 'vinay-bhardwaj'}}, {'is_past': True, 'title': 'Team Lead - PLM (Engineering Services)', 'person': {'first_name': 'Renji', 'last_name': 'John', 'permalink': 'renji-john'}}, {'is_past': True, 'title': 'Technical Lead & Project Manager', 'person': {'first_name': 'Ashok', 'last_name': 'Agarwal', 'permalink': 'ashok-agarwal'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Krish', 'last_name': 'Subramanian', 'permalink': 'krish-subramanian'}}, {'is_past': True, 'title': 'Global Practice Head-Telecom BPO', 'person': {'first_name': 'Sathya', 'last_name': 'Karthik', 'permalink': 'sathya-karthik'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ravi', 'last_name': 'Gunti', 'permalink': 'ravi-gunti'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Hemant', 'last_name': 'Kanakia', 'permalink': 'hemant-kanakia'}}, {'is_past': True, 'title': 'Assistant Consultant (Business Development & Program Management)', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vibhor', 'last_name': 'Chhabra', 'permalink': 'vibhor-chhabra'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Vijay', 'last_name': 'Vasu', 'permalink': 'vijay-vasu'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Kiran', 'last_name': 'Godbole', 'permalink': 'kiran-godbole'}}, {'is_past': True, 'title': 'Sr. Systems Analyst', 'person': {'first_name': 'Bhaskar', 'last_name': 'Roy', 'permalink': 'bhaskar-roy'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Raison', 'last_name': 'D’souza', 'permalink': 'raison-dsouza'}}, {'is_past': True, 'title': 'Assistant System Analyst', 'person': {'first_name': 'Chandan', 'last_name': 'Agrawal', 'permalink': 'chandan-agrawal'}}, {'is_past': True, 'title': 'Software Development', 'person': {'first_name': 'Sunil', 'last_name': 'Samel', 'permalink': 'sunil-samel'}}, {'is_past': True, 'title': 'Software Engineer/Consultant', 'person': {'first_name': 'Dickey', 'last_name': 'Singh', 'permalink': 'dickey-singh'}}, {'is_past': True, 'title': 'Assistant Systems Engineer', 'person': {'first_name': 'Tabrez', 'last_name': 'Shaikh', 'permalink': 'tabrez-shaikh'}}, {'is_past': True, 'title': 'Senior Consultant', 'person': {'first_name': 'Vish', 'last_name': 'Baliga', 'permalink': 'vish-baliga'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gaya', 'last_name': 'Vukkadala', 'permalink': 'gaya-vukkadala'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Jagdish', 'last_name': 'Reddy', 'permalink': 'jagdish-reddy'}}, {'is_past': True, 'title': 'Consultant on Product Lifecycle Management technologies', 'person': {'first_name': 'Renji', 'last_name': 'John', 'permalink': 'renji-john'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Krish', 'last_name': 'Subramanian', 'permalink': 'krish-subramanian'}}, {'is_past': True, 'title': 'Head of E-Security Consulting Practice', 'person': {'first_name': 'Venugopal', 'last_name': 'Iyengar', 'permalink': 'venugopal-iyengar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Surinder', 'last_name': 'Singh Anand', 'permalink': 'surinder-singh-anand'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Harish', 'last_name': 'Gala', 'permalink': 'harish-gala'}}], 'competitions': [{'competitor': {'name': 'Infosys Limited', 'permalink': 'infosys-technologies'}}, {'competitor': {'name': 'IBM', 'permalink': 'ibm'}}, {'competitor': {'name': 'Accenture', 'permalink': 'accenture'}}, {'competitor': {'name': 'Wipro Technologies', 'permalink': 'wipro'}}, {'competitor': {'name': 'Cognizant Technology Solutions', 'permalink': 'cognizant-technology-solutions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'World Headquarters', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Mumbai', 'state_code': None, 'country_code': 'IND', 'latitude': 19.017656, 'longitude': 72.856178}, {'description': '', 'address1': 'Plot No 1, Survey No. 64/2, Software Units Layout', 'address2': 'Madhapur', 'zip_code': '', 'city': 'Hyderabad', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529aa51'), 'name': 'Flextronics International', 'permalink': 'flextronics-international', 'crunchbase_url': 'http://www.crunchbase.com/company/flextronics-international', 'homepage_url': 'http://www.flextronics.com', 'blog_url': 'http://www.flextronicsblog.com/', 'blog_feed_url': '', 'twitter_username': 'flextronics', 'category_code': None, 'number_of_employees': 200000, 'founded_year': 1969, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '408-576-7000', 'description': '', 'created_at': 'Fri Jan 02 22:51:36 UTC 2009', 'updated_at': 'Fri Nov 15 23:56:13 UTC 2013', 'overview': '

Headquartered in Singapore, they are a leading, Fortune Global 500 Electronics Manufacturing Services (EMS) provider focused on delivering complete design, engineering and manufacturing services to automotive, computing, consumer, digital, industrial, infrastructure, medical and mobile OEMs. They design, build, ship, and service electronics products for their customers through a network of facilities in 30 countries on four continents. They provide after-market and field services to support customer end-to-end supply chain requirements. By combining design and engineering solutions with core electronics manufacturing and logistics services, vertically integrated with components technologies, they optimize their customers’ operations, lower their costs and reduce time to market.

', 'image': {'available_sizes': [[[150, 18], 'assets/images/resized/0004/0056/40056v2-max-150x150.png'], [[150, 18], 'assets/images/resized/0004/0056/40056v2-max-250x250.png'], [[150, 18], 'assets/images/resized/0004/0056/40056v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'CEO & Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'McNamara', 'permalink': 'mike-mcnamara'}}, {'is_past': False, 'title': 'Chief Procurement and Supply Chain Officer', 'person': {'first_name': 'Tom', 'last_name': 'Linton', 'permalink': 'tom-linton'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': False, 'title': 'Chief Financial Officer and Chief Accounting Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': False, 'title': 'Executive Vice President and General Counsel', 'person': {'first_name': 'Jonathan', 'last_name': 'S. Hoak', 'permalink': 'jonathan-s-hoak'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Davidson', 'permalink': 'jim-davidson-2'}}, {'is_past': False, 'title': 'President of High Reliability Solutions', 'person': {'first_name': 'Paul', 'last_name': 'Humphries', 'permalink': 'paul-humphries'}}, {'is_past': False, 'title': 'President of the High Velocity Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': False, 'title': 'Secretary to the Board of Directors', 'person': {'first_name': 'Jonathan', 'last_name': 'S. Hoak', 'permalink': 'jonathan-s-hoak'}}, {'is_past': False, 'title': 'President of Energy', 'person': {'first_name': 'Jeannine', 'last_name': 'Sargent', 'permalink': 'jeannine-sargent'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Dr.', 'last_name': 'Erik H. Volkerink', 'permalink': 'dr-erik-h-volkerink'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mark', 'last_name': 'Breunig', 'permalink': 'mark-breunig'}}, {'is_past': False, 'title': 'President, Industrial and Emerging Industries Business Group', 'person': {'first_name': 'Doug', 'last_name': 'Britt', 'permalink': 'doug-britt'}}, {'is_past': False, 'title': 'President, Integrated Network Solutions', 'person': {'first_name': 'Caroline', 'last_name': 'Dowling', 'permalink': 'caroline-dowling'}}, {'is_past': False, 'title': 'President of Automotive', 'person': {'first_name': 'Christopher', 'last_name': 'J. Obey', 'permalink': 'christopher-j-obey'}}, {'is_past': False, 'title': 'President of Power Solutions', 'person': {'first_name': 'Christopher', 'last_name': 'Cook', 'permalink': 'christopher-cook'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Marks', 'permalink': 'michael-marks'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bob', 'last_name': 'Todd', 'permalink': 'bob-todd'}}, {'is_past': True, 'title': 'Vice President of Finance and Chief Accounting Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Chief Financial Officer of the Enclosure Systems Division', 'person': {'first_name': 'Terry', 'last_name': 'Ray', 'permalink': 'terry-ray'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Thomas', 'last_name': 'Smach', 'permalink': 'thomas-smach'}}, {'is_past': True, 'title': 'SVP & Chief Procurement Officer,,,,VP Global Materials Management,,,', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Laura', 'last_name': 'A. Brege', 'permalink': 'laura-a-brege'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Paul', 'last_name': 'Read', 'permalink': 'paul-read'}}, {'is_past': True, 'title': 'EVP, Worldwide Operations', 'person': {'first_name': 'Marty', 'last_name': 'T. Neese', 'permalink': 'marty-t-neese'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Bruce', 'last_name': 'McWilliams', 'permalink': 'bruce-mcwilliams-2'}}, {'is_past': True, 'title': 'Vice President of Design and Engineering for the Industrial and Emerging Industries Business Group', 'person': {'first_name': 'Dr.', 'last_name': 'Erik H. Volkerink', 'permalink': 'dr-erik-h-volkerink'}}, {'is_past': True, 'title': 'Senior Vice President, HR Business Partners and Talent Management', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Senior Vice President of Business Management for the Mobile and Consumer Segment', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Executive Vice President of Human Resources', 'person': {'first_name': 'Paul', 'last_name': 'Humphries', 'permalink': 'paul-humphries'}}, {'is_past': True, 'title': 'Senior Vice President of Finance', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Vice President of Business Development, Europe, for the Enclosure Systems Division', 'person': {'first_name': 'Eric', 'last_name': 'Lekacz', 'permalink': 'eric-lekacz'}}, {'is_past': True, 'title': 'SVP, General Manager', 'person': {'first_name': 'Brad', 'last_name': 'Knight', 'permalink': 'brad-knight'}}, {'is_past': True, 'title': 'Senior Vice President - Sales', 'person': {'first_name': 'Mike', 'last_name': 'Frieswyk', 'permalink': 'mike-frieswyk'}}, {'is_past': True, 'title': 'Vice President & General Manager', 'person': {'first_name': 'Shankar', 'last_name': 'Narayanan', 'permalink': 'shankar-narayanan'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': True, 'title': '.net developer', 'person': {'first_name': 'Max', 'last_name': 'Krylov', 'permalink': 'max-krylov'}}, {'is_past': True, 'title': 'Materials Manager', 'person': {'first_name': 'Sean', 'last_name': 'Murphy', 'permalink': 'sean-murphy-7'}}, {'is_past': True, 'title': 'Director of Global Operations', 'person': {'first_name': 'Raymond', 'last_name': 'de Graaf', 'permalink': 'raymond-de-graaf'}}, {'is_past': True, 'title': 'President, Enclosure Systems Division', 'person': {'first_name': 'Ross', 'last_name': 'W. Manire', 'permalink': 'ross-w-manire'}}, {'is_past': True, 'title': 'Vice President of Finance and Corporate Controller', 'person': {'first_name': 'Christopher', 'last_name': 'Collier', 'permalink': 'christopher-collier'}}, {'is_past': True, 'title': 'Senior Vice President of Consumer Digital Products and Senior Vice President of the Flextronics Novo Group', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Leadership of HR Operations', 'person': {'first_name': 'Denise', 'last_name': 'Haylor', 'permalink': 'denise-haylor'}}, {'is_past': True, 'title': 'Senior Vice President, Treasury and Investor Relations', 'person': {'first_name': 'Warren', 'last_name': 'Ligan', 'permalink': 'warren-ligan'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Bruce', 'last_name': 'McWilliams', 'permalink': 'bruce-mcwilliams'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Lip-Bu', 'last_name': 'Tan', 'permalink': 'lip-bu-tan'}}, {'is_past': True, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Dan', 'last_name': 'Jablonsky', 'permalink': 'dan-jablonsky'}}, {'is_past': True, 'title': 'Marketing Analyst', 'person': {'first_name': 'Nelson', 'last_name': 'Kim', 'permalink': 'nelson-kim'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Nicholas', 'last_name': 'Brathwaite', 'permalink': 'nicholas-brathwaite'}}, {'is_past': True, 'title': 'Director of Global Integrations', 'person': {'first_name': 'Raymond', 'last_name': 'de Graaf', 'permalink': 'raymond-de-graaf'}}, {'is_past': True, 'title': 'COO / President, Americas Operations', 'person': {'first_name': 'Mike', 'last_name': 'McNamara', 'permalink': 'mike-mcnamara'}}, {'is_past': True, 'title': 'Senior Vice President of Business Management for High Velocity Solutions', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Led Procurement and Global Supply Chain Organizations', 'person': {'first_name': 'Mike', 'last_name': 'Dennison', 'permalink': 'mike-dennison'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Walter', 'last_name': 'Shimoon', 'permalink': 'walter-shimoon-2'}}, {'is_past': True, 'title': 'President of Flextronics Semiconductor', 'person': {'first_name': 'Vig', 'last_name': 'Sherrill', 'permalink': 'vig-sherrill'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://venturebeat.com/2008/02/11/communications-software-company-aricent-raises-47m-in-sale-of-shares/', 'source_description': 'Communications software company Aricent raises $4.7M in sale of shares', 'raised_amount': 4700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 11, 'company': {'name': 'Aricent Group', 'permalink': 'aricent'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.soccentral.com/results.asp?EntryID=19564', 'source_description': 'InSilica Announces Closure of $18 Million in New Financing', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 7, 'funded_day': 6, 'company': {'name': 'inSilica', 'permalink': 'insilica'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.opticalkeyhole.com/eventtext.asp?ID=55203&pd=12/8/2005&bhcp=1', 'source_description': 'Inphi, supplying high-speed precision ICs, confirms $12m funding but refuses further comment', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'INPHI', 'permalink': 'inphi'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/flextronics-to-acquire-stellar-microelectronics-142308335.html', 'source_description': 'Flextronics to Acquire Stellar Microelectronics', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 12, 'company': {'name': 'Stellar Microelectronics', 'permalink': 'stellar-microelectronics'}}], 'offices': [{'description': 'US HQ', 'address1': '6201 America Center Drive', 'address2': '', 'zip_code': '95002', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Singapore HQ', 'address1': '2 Changi South Lane', 'address2': '', 'zip_code': '486123', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 107], 'assets/images/resized/0011/8091/118091v1-max-150x150.jpg'], [[250, 179], 'assets/images/resized/0011/8091/118091v1-max-250x250.jpg'], [[450, 323], 'assets/images/resized/0011/8091/118091v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299156'), 'name': 'Safeway', 'permalink': 'safeway', 'crunchbase_url': 'http://www.crunchbase.com/company/safeway', 'homepage_url': 'http://www.safeway.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'other', 'number_of_employees': 186000, 'founded_year': 1915, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '925-467-3000', 'description': 'food and drug retailer', 'created_at': 'Wed Jul 09 20:44:34 UTC 2008', 'updated_at': 'Thu Dec 01 07:50:26 UTC 2011', 'overview': '

Safeway, Inc., based in Pleasanton, California, together with its subsidiaries, operates as a food and drug retailer in North America. The company operates stores that provide an array of dry grocery items, food, and general merchandise, as well as features specialty departments, such as bakery, delicatessen, floral, and pharmacy, as well as coffee shops and fuel centers. As of December 29, 2007, Safeway operated approximately 1,743 stores in California, Oregon, Washington, Alaska, Colorado, Arizona, Texas, the Chicago metropolitan area, and the Mid-Atlantic region, as well as British Columbia, Alberta, and Manitoba/Saskatchewan. The company also owns and operates GroceryWorks.com Operating Company, LLC, an online grocery channel, doing business under the names Safeway.com, Vons.com, and Genuardis.com; and Blackhawk Network Holdings, Inc., which provides third-party gift cards, prepaid cards, telecom cards, and sports and entertainment cards to North American retailers for sale to retail customers. It also engages in gift card businesses in the United Kingdom and Australia, and through 49% ownership interest in Casa Ley, S.A. de C.V. operates 137 food and general merchandise stores in Western Mexico.

', 'image': {'available_sizes': [[[150, 63], 'assets/images/resized/0006/7109/67109v1-max-150x150.png'], [[222, 94], 'assets/images/resized/0006/7109/67109v1-max-250x250.png'], [[222, 94], 'assets/images/resized/0006/7109/67109v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Mohan', 'last_name': 'Gyani', 'permalink': 'mohan-gyani'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jack', 'last_name': 'L. Sinclair', 'permalink': 'jack-l-sinclair'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Doug', 'last_name': 'Mackenzie', 'permalink': 'doug-mackenzie'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Arun', 'last_name': 'Sarin', 'permalink': 'arun-sarin'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Frank', 'last_name': 'C. Herringer', 'permalink': 'frank-c-herringer'}}, {'is_past': True, 'title': 'Deputy Chairman of the Board', 'person': {'first_name': 'George', 'last_name': 'Charters', 'permalink': 'george-charters'}}, {'is_past': True, 'title': 'President / CEO', 'person': {'first_name': 'Matthew', 'last_name': 'Gutermuth', 'permalink': 'matthew-gutermuth'}}, {'is_past': True, 'title': 'EVP / CFO', 'person': {'first_name': 'Julian', 'last_name': 'C. Day', 'permalink': 'julian-c-day'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Lesa', 'last_name': 'Musatto', 'permalink': 'lesa-musatto'}}, {'is_past': True, 'title': 'Corporate VP, Lifestyle Initiatives', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': 'Corporate VP, Marketing', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': 'GVP Marketing Strategies', 'person': {'first_name': 'Stuart', 'last_name': 'Aitken', 'permalink': 'stuart-aitken'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Wes', 'last_name': 'Horvath', 'permalink': 'wes-horvath'}}, {'is_past': True, 'title': 'head of Strategic Analysis', 'person': {'first_name': 'Andrew', 'last_name': 'Bentley', 'permalink': 'andrew-bentley'}}, {'is_past': True, 'title': 'Senior Merchandiser and Specialist', 'person': {'first_name': 'Douglas', 'last_name': 'Gnesda', 'permalink': 'douglas-gnesda'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Stephen', 'last_name': 'Taylor', 'permalink': 'stephen-taylor'}}, {'is_past': True, 'title': 'Director, Marketing Planning', 'person': {'first_name': 'Shan', 'last_name': 'Kumar', 'permalink': 'shan-kumar'}}, {'is_past': True, 'title': 'Corporate VP - Deli, Food Service & Starbuck', 'person': {'first_name': 'Rebecca', 'last_name': 'Philbert', 'permalink': 'rebecca-philbert'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Natasha', 'last_name': 'Raja', 'permalink': 'natasha-raja'}}, {'is_past': True, 'title': 'Executive', 'person': {'first_name': 'Greg', 'last_name': 'Wood', 'permalink': 'greg-wood'}}, {'is_past': True, 'title': 'Personnel Manager', 'person': {'first_name': 'Dominique', 'last_name': 'Jones', 'permalink': 'dominique-jones'}}, {'is_past': True, 'title': 'SVP, Alcohol / VP', 'person': {'first_name': 'Matthew', 'last_name': 'Gutermuth', 'permalink': 'matthew-gutermuth'}}, {'is_past': True, 'title': 'MD - Marketing, Trading & Logistics', 'person': {'first_name': 'George', 'last_name': 'Charters', 'permalink': 'george-charters'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '5918 Stoneridge Mall Road', 'address2': '', 'zip_code': '94588-3229', 'city': 'Pleasanton', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 123], 'assets/images/resized/0006/7110/67110v1-max-150x150.jpg'], [[250, 205], 'assets/images/resized/0006/7110/67110v1-max-250x250.jpg'], [[450, 369], 'assets/images/resized/0006/7110/67110v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results10 = list(collection.find({}).sort(\"number_of_employees\", -1).limit(10))\n", + "\n", + "print(results10)" + ] }, { "cell_type": "markdown", @@ -172,10 +326,27 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "100\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'permalink': 'abc2', 'crunchbase_url': 'http://www.crunchbase.com/company/wetpaint', 'homepage_url': 'http://wetpaint-inc.com', 'blog_url': 'http://digitalquarters.net/', 'blog_feed_url': 'http://digitalquarters.net/feed/', 'twitter_username': 'BachelrWetpaint', 'category_code': 'web', 'number_of_employees': 47, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 17, 'deadpooled_year': 1, 'tag_list': 'wiki, seattle, elowitz, media-industry, media-platform, social-distribution-system', 'alias_list': '', 'email_address': 'info@wetpaint.com', 'phone_number': '206.859.6300', 'description': 'Technology Platform Company', 'created_at': datetime.datetime(2007, 5, 25, 6, 51, 27), 'updated_at': 'Sun Dec 08 07:15:44 UTC 2013', 'overview': '

Wetpaint is a technology platform company that uses its proprietary state-of-the-art technology and expertise in social media to build and monetize audiences for digital publishers. Wetpaint’s own online property, Wetpaint Entertainment, an entertainment news site that attracts more than 12 million unique visitors monthly and has over 2 million Facebook fans, is a proof point to the company’s success in building and engaging audiences. Media companies can license Wetpaint’s platform which includes a dynamic playbook tailored to their individual needs and comprehensive training. Founded by Internet pioneer Ben Elowitz, and with offices in New York and Seattle, Wetpaint is backed by Accel Partners, the investors behind Facebook.

', 'image': {'available_sizes': [[[150, 75], 'assets/images/resized/0000/3604/3604v14-max-150x150.jpg'], [[250, 125], 'assets/images/resized/0000/3604/3604v14-max-250x250.jpg'], [[450, 225], 'assets/images/resized/0000/3604/3604v14-max-450x450.jpg']]}, 'products': [{'name': 'Wikison Wetpaint', 'permalink': 'wetpaint-wiki'}, {'name': 'Wetpaint Social Distribution System', 'permalink': 'wetpaint-social-distribution-system'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder and VP, Social and Audience Development', 'person': {'first_name': 'Michael', 'last_name': 'Howell', 'permalink': 'michael-howell'}}, {'is_past': False, 'title': 'Co-Founder/CEO/Board of Directors', 'person': {'first_name': 'Ben', 'last_name': 'Elowitz', 'permalink': 'ben-elowitz'}}, {'is_past': False, 'title': 'COO/Board of Directors', 'person': {'first_name': 'Rob', 'last_name': 'Grady', 'permalink': 'rob-grady'}}, {'is_past': False, 'title': 'SVP, Strategy and Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Kollas', 'permalink': 'chris-kollas'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Theresia', 'last_name': 'Ranzetta', 'permalink': 'theresia-ranzetta'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Gus', 'last_name': 'Tai', 'permalink': 'gus-tai'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Len', 'last_name': 'Jordan', 'permalink': 'len-jordan'}}, {'is_past': False, 'title': 'Head of Technology and Product', 'person': {'first_name': 'Alex', 'last_name': 'Weinstein', 'permalink': 'alex-weinstein'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Bert', 'last_name': 'Hogue', 'permalink': 'bert-hogue'}}, {'is_past': True, 'title': 'CFO/ CRO', 'person': {'first_name': 'Brian', 'last_name': 'Watkins', 'permalink': 'brian-watkins'}}, {'is_past': True, 'title': 'Senior Vice President, Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Grady', 'permalink': 'rob-grady'}}, {'is_past': True, 'title': 'VP, Technology and Product', 'person': {'first_name': 'Werner', 'last_name': 'Koepf', 'permalink': 'werner-koepf'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Kevin', 'last_name': 'Flaherty', 'permalink': 'kevin-flaherty'}}, {'is_past': True, 'title': 'VP User Experience', 'person': {'first_name': 'Alex', 'last_name': 'Berg', 'permalink': 'alex-berg'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Steve', 'last_name': 'McQuade', 'permalink': 'steve-mcquade'}}, {'is_past': True, 'title': 'Executive Editor', 'person': {'first_name': 'Susan', 'last_name': 'Mulcahy', 'permalink': 'susan-mulcahy'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Kollas', 'permalink': 'chris-kollas'}}], 'competitions': [{'competitor': {'name': 'Wikia', 'permalink': 'wikia'}}, {'competitor': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'competitor': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Soceeo', 'permalink': 'soceeo'}}, {'competitor': {'name': 'Yola', 'permalink': 'yola'}}, {'competitor': {'name': 'SocialGO', 'permalink': 'socialgo'}}, {'competitor': {'name': 'IslamNor', 'permalink': 'islamnor'}}], 'providerships': [], 'total_money_raised': '$39.8M', 'funding_rounds': [{'id': 888, 'round_code': 'a', 'source_url': 'http://seattlepi.nwsource.com/business/246734_wiki02.html', 'source_description': '', 'raised_amount': 5250000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}]}, {'id': 889, 'round_code': 'b', 'source_url': 'http://pulse2.com/2007/01/09/wiki-builder-website-wetpaint-welcomes-95m-funding/', 'source_description': '', 'raised_amount': 9500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}]}, {'id': 2312, 'round_code': 'c', 'source_url': 'http://www.accel.com/news/news_one_up.php?news_id=185', 'source_description': 'Accel', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trinity Ventures', 'permalink': 'trinity-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Frazier Technology Ventures', 'permalink': 'frazier-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://allthingsd.com/20131216/viggle-tries-to-bulk-up-its-social-tv-business-by-buying-wetpaint/?mod=atdtweet', 'source_description': ' Viggle Tries to Bulk Up Its Social TV Business by Buying Wetpaint', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Viggle', 'permalink': 'viggle'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '710 - 2nd Avenue', 'address2': 'Suite 1100', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.603122, 'longitude': -122.333253}, {'description': '', 'address1': '270 Lafayette Street', 'address2': 'Suite 505', 'zip_code': '10012', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7237306, 'longitude': -73.9964312}], 'milestones': [{'id': 5869, 'description': \"Wetpaint named in Lead411's Hottest Seattle Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 8, 'source_url': 'http://www.lead411.com/seattle-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST SEATTLE COMPANIES\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}, {'id': 8702, 'description': 'Site-Builder Wetpaint Makes One For Itself, Using the Demand Media Playbook', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://mediamemo.allthingsd.com/20100906/site-builder-wetpaint-makes-one-for-itself-using-the-demand-media-playbook/', 'source_text': None, 'source_description': 'All Things D', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}], 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 86], 'assets/images/resized/0016/0929/160929v2-max-150x150.png'], [[250, 143], 'assets/images/resized/0016/0929/160929v2-max-250x250.png'], [[450, 258], 'assets/images/resized/0016/0929/160929v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.geekwire.com/2011/rewind-ben-elowitz-wetpaint-ceo-building-type-media-company', 'title': 'GeekWire interview: Rewind - Ben Elowitz, Wetpaint CEO, on building a new type of media company'}, {'external_url': 'http://techcrunch.com/2012/06/17/search-and-social-how-two-will-soon-become-one/', 'title': 'Guest post by CEO Ben Elowitz in TechCrunch'}, {'external_url': 'http://allthingsd.com/20120516/what-to-expect-when-facebook-is-expecting-five-predictions-for-facebooks-first-public-year/', 'title': 'Guest post by CEO Ben Elowitz in AllThingsD'}, {'external_url': 'http://adage.com/article/digitalnext/facebook-biggest-player-advertising-s-540-billion-world/235708/', 'title': 'Guest post by CEO Ben Elowitz in AdAge'}, {'external_url': 'http://www.businessinsider.com/facebook-captures-14-percent-of-our-online-attention-but-only-4-percent-of-ad-spending-online-2012-6', 'title': 'Guest post by CEO Ben Elowitz in Business Insider'}, {'external_url': 'http://allfacebook.com/wetpaint-media-data_b75963', 'title': 'AllFacebook coverage of Wetpaint'}, {'external_url': 'http://adage.com/article/digital/celeb-site-wetpaint-shows-media-profit-facebook/237828/', 'title': 'Profile of Wetpaint in Ad Age'}, {'external_url': 'http://allthingsd.com/20121018/how-to-boost-your-facebook-traffic-tips-and-tricks-from-wetpaint/', 'title': 'Interview with Wetpaint CEO Ben Elowitz in All Things D'}, {'external_url': 'http://www.xconomy.com/seattle/2012/10/19/wetpaint-starts-licensing-its-facebook-based-media-distribution-tech/', 'title': 'Profile of Wetpaint in Xconomy'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8c'), 'name': 'Zoho', 'permalink': 'abc4', 'crunchbase_url': 'http://www.crunchbase.com/company/zoho', 'homepage_url': 'http://zoho.com', 'blog_url': 'http://blogs.zoho.com/', 'blog_feed_url': 'http://blogs.zoho.com/feed', 'twitter_username': 'zoho', 'category_code': 'software', 'number_of_employees': 1600, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 15, 'deadpooled_year': 3, 'tag_list': 'zoho, officesuite, spreadsheet, writer, projects, sheet, crm, show, creator, wiki, planner, suite, notebook, chat, meeting, mail', 'alias_list': '', 'email_address': 'info@zohocorp.com', 'phone_number': '1-888-204-3539', 'description': 'Online Business Apps Suite', 'created_at': 'Fri May 25 19:30:28 UTC 2007', 'updated_at': 'Wed Oct 30 00:07:05 UTC 2013', 'overview': '

Zoho offers a suite of Business, Collaboration & Productivity applications. Apps include CRM, Customer Support, Office Suite, Email Hosting, Project Management, Accounting, App Creator among many others.

\\n\\n

Zoho’s parent company is Zoho Corp (previously AdventNet), “a software company started in 1996 focusing on building quality and affordable software for businesses.”

\\n\\n

Zoho’s main competitors are Google Docs & Spreadsheets, Salesforce as well as Microsoft Office.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0000/3946/3946v12-max-150x150.png'], [[250, 92], 'assets/images/resized/0000/3946/3946v12-max-250x250.png'], [[435, 161], 'assets/images/resized/0000/3946/3946v12-max-450x450.png']]}, 'products': [{'name': 'Zoho Office Suite', 'permalink': 'zoho-office-suite'}, {'name': 'Zoho CRM', 'permalink': 'zoho-crm'}, {'name': 'Zoho Assist', 'permalink': 'zoho-assist'}], 'relationships': [{'is_past': False, 'title': 'CEO and Founder', 'person': {'first_name': 'Sridhar', 'last_name': 'Vembu', 'permalink': 'sridhar-vembu'}}, {'is_past': False, 'title': 'VP Product Managment', 'person': {'first_name': 'Hyther', 'last_name': 'Nizam', 'permalink': 'hyther-nizam'}}, {'is_past': False, 'title': 'VP Marketing', 'person': {'first_name': 'Rodrigo', 'last_name': 'Vaca', 'permalink': 'rodrigo-vaca'}}, {'is_past': False, 'title': 'Evangelist', 'person': {'first_name': 'Raju', 'last_name': 'Vegesna', 'permalink': 'raju-vegesna'}}, {'is_past': False, 'title': 'Director of Product Managment', 'person': {'first_name': 'Gibu', 'last_name': 'Mathew', 'permalink': 'gibu-mathew'}}, {'is_past': False, 'title': 'VP Opration', 'person': {'first_name': 'Neil', 'last_name': 'Butani', 'permalink': 'neil-butani'}}, {'is_past': False, 'title': 'Director Of Engineering', 'person': {'first_name': 'Rajendran', 'last_name': 'Dandapani', 'permalink': 'rajendran-dandapani'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Raj', 'last_name': 'Sabhlok', 'permalink': 'raj-sabhlok'}}, {'is_past': False, 'title': 'GM Marketing', 'person': {'first_name': 'Mouttou', 'last_name': 'Sidambaram', 'permalink': 'mouttou-sidambaram'}}, {'is_past': False, 'title': 'Director of Product Management', 'person': {'first_name': 'Rajesh', 'last_name': 'Ganesan', 'permalink': 'rajesh-ganesan'}}, {'is_past': False, 'title': 'Marketing / Business Development Executive', 'person': {'first_name': 'Aravind', 'last_name': 'Natarajan', 'permalink': 'aravind-natarajan'}}, {'is_past': True, 'title': 'Senior Director Strategic Alliances', 'person': {'first_name': 'Ian', 'last_name': 'Wenig', 'permalink': 'ian-wenig'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Rajkumar', 'last_name': 'Radhakrishnan', 'permalink': 'rajkumar-radhakrishnan'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'KP', 'last_name': 'Saravanan', 'permalink': 'kp-saravanan'}}, {'is_past': True, 'title': 'Member, Technical Staff', 'person': {'first_name': 'Thiyagarajan', 'last_name': 'T', 'permalink': 'thiyagarajan-t'}}, {'is_past': True, 'title': 'Software Architect & Project Manager', 'person': {'first_name': 'Rajkumar', 'last_name': 'Radhakrishnan', 'permalink': 'rajkumar-radhakrishnan'}}, {'is_past': True, 'title': 'Director, Professional Services', 'person': {'first_name': 'Thomas', 'last_name': 'DiGrazia', 'permalink': 'thomas-digrazia'}}, {'is_past': True, 'title': 'Technical Architect', 'person': {'first_name': 'Rajaraman', 'last_name': 'S', 'permalink': 'rajaraman-s'}}], 'competitions': [{'competitor': {'name': 'Empressr', 'permalink': 'empressr'}}, {'competitor': {'name': 'Transmedia Corporation', 'permalink': 'transmedia'}}, {'competitor': {'name': 'Live Documents', 'permalink': 'livedocuments'}}, {'competitor': {'name': 'LongJump', 'permalink': 'longjump'}}, {'competitor': {'name': 'Phuser', 'permalink': 'phuser'}}, {'competitor': {'name': 'NetSuite', 'permalink': 'netsuite'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Flypaper', 'permalink': 'flypaper'}}, {'competitor': {'name': 'MovingLabs', 'permalink': 'movinglabs'}}, {'competitor': {'name': 'Ephox', 'permalink': 'ephox'}}, {'competitor': {'name': 'Coghead', 'permalink': 'coghead'}}, {'competitor': {'name': 'SlideRocket', 'permalink': 'sliderocket'}}, {'competitor': {'name': 'Cozimo', 'permalink': 'cozimo'}}, {'competitor': {'name': 'Nordic River', 'permalink': 'textflow'}}, {'competitor': {'name': 'Iceberg', 'permalink': 'iceberg'}}, {'competitor': {'name': 'Thinkfree', 'permalink': 'thinkfree'}}, {'competitor': {'name': 'Bizroof', 'permalink': 'bizroof'}}, {'competitor': {'name': 'Wolf Frameworks', 'permalink': 'wolf-frameworks'}}, {'competitor': {'name': '280 North', 'permalink': '280-north'}}, {'competitor': {'name': 'Workday', 'permalink': 'workday'}}, {'competitor': {'name': 'coAction.com', 'permalink': 'coaction-com'}}, {'competitor': {'name': 'INES CRM', 'permalink': 'ines-crm'}}, {'competitor': {'name': 'OpenERP', 'permalink': 'openerp'}}, {'competitor': {'name': 'Gurron', 'permalink': 'gurron'}}, {'competitor': {'name': 'LiquidPlanner', 'permalink': 'liquidplanner'}}, {'competitor': {'name': 'Helpshift, Inc.', 'permalink': 'helpshift-inc'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '4900 Hopyard Rd', 'address2': 'Suite 310', 'zip_code': '94588', 'city': 'Pleasanton', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.692934, 'longitude': -121.904945}], 'milestones': [{'id': 388, 'description': 'Zoho Reaches 2 Million Users', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 7, 'source_url': '', 'source_text': \"Mike,\\r\\n\\r\\nTomorrow @ 6AM PST, we are announcing that we now have 1 Million users. User registration stats are attached.\\r\\n\\r\\nIt took us 1 Year to get the first 100K users, 6 Months to get the second 100K, 4 Months to get the third etc. In the last 1 year we added 700K new users. The pace has been increasing.\\r\\n\\r\\nThe registration numbers really jumped after we added support for Google & Yahoo users. Currently over 30% of our users are coming from Google/Yahoo accounts (with more Google users than Yahoo users).\\r\\n\\r\\nI'd love to provide more information on this.\\r\\n\\r\\nRaju\\r\\n\\r\\n\", 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}, {'id': 6577, 'description': 'Zoho Calendar Steps Out Of Beta With Sharing, Subscribing And More', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2010/07/07/zoho-calendar-steps-out-of-beta-with-sharing-subscribing-and-more/', 'source_text': '', 'source_description': 'Zoho Calendar Steps Out Of Beta With Sharing, Subscribing And More', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}, {'id': 7360, 'description': 'Zoho Reports Steps Out Of Beta With Pricing Model And New Features', 'stoned_year': 2009, 'stoned_month': 12, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2009/12/15/zoho-reports-steps-out-of-beta-with-pricing-model-and-new-features/', 'source_text': None, 'source_description': 'Zoho Reports Steps Out Of Beta', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zoho', 'permalink': 'zoho'}}], 'video_embeds': [{'embed_code': '', 'description': '

Zoho’s pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': ''}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.online-tech-tips.com/cool-websites/zoho-free-online-office-applications-word-processor-spreadsheets-etc/', 'title': 'Zoho Overview'}, {'external_url': 'http://www.online-tech-tips.com/cool-websites/free-online-web-meetings/', 'title': 'Zoho Meeting Review'}, {'external_url': 'http://mashpedia.com/Zoho', 'title': 'Zoho at Mashpedia'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/zoho-sites/our-review', 'title': 'Zoho Sites Review'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8d'), 'name': 'Digg', 'permalink': 'digg', 'crunchbase_url': 'http://www.crunchbase.com/company/digg', 'homepage_url': 'http://www.digg.com', 'blog_url': 'http://blog.digg.com/', 'blog_feed_url': 'http://blog.digg.com/?feed=rss2', 'twitter_username': 'digg', 'category_code': 'news', 'number_of_employees': 60, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 11, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'community, social, news, bookmark, digg, technology, design', 'alias_list': '', 'email_address': 'feedback@digg.com', 'phone_number': '(415) 436-9638', 'description': 'user driven social content website', 'created_at': 'Fri May 25 20:03:23 UTC 2007', 'updated_at': 'Tue Nov 05 21:35:47 UTC 2013', 'overview': '

Digg is a user driven social content website. Everything on Digg is user-submitted. After you submit content, other people read your submission and “Digg” what they like best. If your story receives enough Diggs, it’s promoted to the front page for other visitors to see.

\\n\\n

Kevin Rose came up with the idea for Digg in the fall of 2004. He found programmer Owen Byrne through eLance and paid him $10/hour to develop the idea. In addition, Rose paid $99 per month for hosting and $1,200 for the Digg.com domain. In December of 2004, Kevin launched his creation to the world through a post on his blog.

\\n\\n

In February of 2005, Paris Hilton’s cell phone was hacked. Images and phone numbers from the phone were posted online and it didn’t take long for a user to post the link on Digg. The rapidshare downloads site started to receive an enormous amount of traffic and it was then, Rose says, he saw “the power of breaking stories before anyone else.”

\\n\\n

Digg has been a force ever since. Acquisition offers have been made, Rose was on the cover of BusinessWeek and according to Alexa, Digg is in the top 100 most trafficked sites on the internet. The success hasn’t come without its share of problems though. The site has had to face services aimed at gaming the way stories hit the front page, as well as a user revolt. Digg has however been able to get over these hurdles as it continues to be one of the social news leaders.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0000/4138/4138v5-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0000/4138/4138v5-max-250x250.jpg'], [[280, 280], 'assets/images/resized/0000/4138/4138v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Digg', 'permalink': 'digg'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McLaughlin', 'permalink': 'andrew-mclaughlin'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Bennett', 'last_name': 'Thuener', 'permalink': 'bennett-thuener'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Ben', 'last_name': 'Folk-Williams', 'permalink': 'ben-folk-williams'}}, {'is_past': False, 'title': 'Designer', 'person': {'first_name': 'Tyson', 'last_name': 'Rosage', 'permalink': 'tyson-rosage'}}, {'is_past': False, 'title': 'NetSystem', 'person': {'first_name': 'Elad', 'last_name': 'Gilo', 'permalink': 'elad-gilo'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Kevin', 'last_name': 'Rose', 'permalink': 'kevin-rose'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'John', 'last_name': 'Moffett', 'permalink': 'john-moffett'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Mike', 'last_name': 'Maser', 'permalink': 'mike-maser'}}, {'is_past': True, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Jay', 'last_name': 'Adelson', 'permalink': 'jay-adelson'}}, {'is_past': True, 'title': 'VP Ads Development', 'person': {'first_name': 'Alan', 'last_name': 'Lippman', 'permalink': 'alan-lippman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Brian', 'last_name': 'Link', 'permalink': 'brian-link'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'John', 'last_name': 'Quinn', 'permalink': 'john-quinn-2'}}, {'is_past': True, 'title': 'VP of Product', 'person': {'first_name': 'Keval', 'last_name': 'Desai', 'permalink': 'keval-desai'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Bob', 'last_name': 'Buch', 'permalink': 'bob-buch'}}, {'is_past': True, 'title': 'Vice President, Operations', 'person': {'first_name': 'Scott', 'last_name': 'Baker', 'permalink': 'scott-baker'}}, {'is_past': True, 'title': 'VP of Research and Development', 'person': {'first_name': 'Anton', 'last_name': 'Kast', 'permalink': 'anton-kast'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Owen', 'last_name': 'Byrne', 'permalink': 'owen-byrne'}}, {'is_past': True, 'title': 'Lead Architect', 'person': {'first_name': 'Joe', 'last_name': 'Stump', 'permalink': 'joe-stump'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Van Horn', 'permalink': 'matt-van-horn'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Daniel', 'last_name': 'Burka', 'permalink': 'daniel-burka'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Richard', 'last_name': 'de Silva', 'permalink': 'richard-de-silva'}}, {'is_past': True, 'title': 'User Experience', 'person': {'first_name': 'Mark', 'last_name': 'Trammell', 'permalink': 'mark-trammell'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Addison', 'last_name': 'Kowalski', 'permalink': 'addison-kowalski'}}, {'is_past': True, 'title': 'Team Lead, Core Infrastructure', 'person': {'first_name': 'Arin', 'last_name': 'Sarkissian', 'permalink': 'arin-sarkissian'}}, {'is_past': True, 'title': 'R&D Analyst, Operations Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Standefer', 'permalink': 'ben-standefer'}}, {'is_past': True, 'title': 'UI Developer', 'person': {'first_name': 'Jamie', 'last_name': 'Lottering', 'permalink': 'jamie-lottering'}}, {'is_past': True, 'title': 'Director of Engineering, News Platform', 'person': {'first_name': 'Bill', 'last_name': 'Shupp', 'permalink': 'bill-shupp'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Kurt', 'last_name': 'Wilms', 'permalink': 'kurt-wilms'}}, {'is_past': True, 'title': 'Principal R&D Engineer', 'person': {'first_name': 'Wes', 'last_name': 'Augur', 'permalink': 'wes-augur'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mike', 'last_name': 'Cieri', 'permalink': 'mike-cieri'}}, {'is_past': True, 'title': 'Sr. Systems Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Lathrop', 'permalink': 'paul-lathrop'}}, {'is_past': True, 'title': 'Software engineer & UIX designer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Can', 'last_name': 'Duruk', 'permalink': 'can-duruk'}}, {'is_past': True, 'title': 'Director of Ad Ops', 'person': {'first_name': 'Veronica', 'last_name': 'Tegen', 'permalink': 'veronica-tegen'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Brian', 'last_name': 'Wong', 'permalink': 'brian-wong'}}, {'is_past': True, 'title': 'Senior Community Manager', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Sr. Director of Marketing & Communications', 'person': {'first_name': 'Beth', 'last_name': 'Murphy', 'permalink': 'beth-murphy'}}, {'is_past': True, 'title': 'Systems Engineering Manager', 'person': {'first_name': 'Ron', 'last_name': 'Gorodetzky', 'permalink': 'ron-gorodetzky'}}, {'is_past': True, 'title': 'Director of Communications', 'person': {'first_name': 'Kiersten', 'last_name': 'Hollars', 'permalink': 'kiersten-hollars'}}, {'is_past': True, 'title': 'Head of Sales & Sales Operations', 'person': {'first_name': 'Thomas', 'last_name': 'Shin', 'permalink': 'thomas-shin'}}, {'is_past': True, 'title': 'Publisher & Chief Revenue Officer', 'person': {'first_name': 'Chas', 'last_name': 'Edwards', 'permalink': 'chas-edwards'}}, {'is_past': True, 'title': 'Director of Design and User Experience', 'person': {'first_name': 'Jeffrey', 'last_name': 'Kalmikoff', 'permalink': 'jeffrey-kalmikoff'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Hodsdon', 'permalink': 'jeff-hodsdon'}}, {'is_past': True, 'title': 'Director, PR', 'person': {'first_name': 'Michele', 'last_name': 'Husak', 'permalink': 'michele-husak'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Vishwas', 'last_name': 'Prabhakara', 'permalink': 'vishwas-prabhakara'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Sze', 'permalink': 'david-sze'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Vipul', 'last_name': 'Sharma', 'permalink': 'vipul-sharma'}}, {'is_past': True, 'title': 'Head of Search & User Analytics', 'person': {'first_name': 'Marshall', 'last_name': 'Clark', 'permalink': 'marshall-clark'}}, {'is_past': True, 'title': 'Design and User Experience Lead', 'person': {'first_name': 'Marc', 'last_name': 'Hemeon', 'permalink': 'marc-hemeon'}}, {'is_past': True, 'title': 'Director of News Applications', 'person': {'first_name': 'Arsenio', 'last_name': 'Santos', 'permalink': 'arsenio-santos'}}, {'is_past': True, 'title': 'Senior Core Infrastructure Engineer', 'person': {'first_name': 'Ian', 'last_name': 'Eure', 'permalink': 'ian-eure'}}, {'is_past': True, 'title': 'Sr. Developer', 'person': {'first_name': 'Ryan', 'last_name': 'Marshall', 'permalink': 'ryan-marshall'}}, {'is_past': True, 'title': 'PHP Hacker', 'person': {'first_name': 'Eli', 'last_name': 'White', 'permalink': 'eli-white'}}, {'is_past': True, 'title': 'Account Director', 'person': {'first_name': 'Tommy', 'last_name': 'Lee', 'permalink': 'tommy-lee'}}, {'is_past': True, 'title': 'Head of Consumer Product', 'person': {'first_name': 'Dash', 'last_name': 'Gopinath', 'permalink': 'dash-gopinath'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Sammy', 'last_name': 'Yu', 'permalink': 'sammy-yu'}}], 'competitions': [{'competitor': {'name': 'Reddit', 'permalink': 'reddit'}}, {'competitor': {'name': 'Twitter', 'permalink': 'twitter'}}, {'competitor': {'name': 'Newsvine', 'permalink': 'newsvine'}}, {'competitor': {'name': 'Truemors', 'permalink': 'truemors'}}, {'competitor': {'name': 'fav.or.it', 'permalink': 'favorit'}}, {'competitor': {'name': 'Spotplex', 'permalink': 'spotplex'}}, {'competitor': {'name': 'Mixx', 'permalink': 'mixx'}}, {'competitor': {'name': 'Pligg LLC', 'permalink': 'pligg'}}, {'competitor': {'name': 'Silobreaker', 'permalink': 'silobreaker'}}, {'competitor': {'name': 'Newspond', 'permalink': 'newspond'}}, {'competitor': {'name': 'Popularo', 'permalink': 'popularo'}}, {'competitor': {'name': 'ZapNat', 'permalink': 'zapnat'}}, {'competitor': {'name': 'ShoutWire', 'permalink': 'shoutwire'}}, {'competitor': {'name': 'nobosh', 'permalink': 'nobosh'}}, {'competitor': {'name': 'YiGG', 'permalink': 'yigg'}}, {'competitor': {'name': 'Publish2', 'permalink': 'publish2'}}, {'competitor': {'name': 'Naubo', 'permalink': 'naubo'}}, {'competitor': {'name': 'Skewz', 'permalink': 'skewz'}}, {'competitor': {'name': 'eVIPlist', 'permalink': 'eviplist'}}, {'competitor': {'name': 'slinkset', 'permalink': 'slinkset'}}, {'competitor': {'name': 'Subbmitt', 'permalink': 'subbmitt'}}, {'competitor': {'name': 'Link Spank', 'permalink': 'linkspank'}}, {'competitor': {'name': 'EIOBA', 'permalink': 'eioba'}}, {'competitor': {'name': 'buzznewzz', 'permalink': 'buzznewzz'}}, {'competitor': {'name': 'RatherGather', 'permalink': 'rathergather'}}, {'competitor': {'name': 'StumbleUpon', 'permalink': 'stumbleupon'}}, {'competitor': {'name': 'GRAZEit', 'permalink': 'grazeit'}}, {'competitor': {'name': 'Newser', 'permalink': 'newser'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'K/F Communications', 'permalink': 'k-f-communications'}}], 'total_money_raised': '$45M', 'funding_rounds': [{'id': 1, 'round_code': 'b', 'source_url': 'http://www.marketingvox.com/archives/2006/12/29/digg-gets-85mm-in-funding/', 'source_description': '', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}]}, {'id': 85, 'round_code': 'a', 'source_url': 'http://goliath.ecnext.com/coms2/gi_0199-4857782/Social-Content-Web-Site-Digg.html', 'source_description': '', 'raised_amount': 2800000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Al', 'last_name': 'Avery', 'permalink': 'al-avery'}}, {'company': None, 'financial_org': {'name': 'FLOODGATE', 'permalink': 'floodgate'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 3503, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/09/24/spurned-by-google-digg-taps-vcs-for-29-million-c-round/', 'source_description': 'press release', 'raised_amount': 28700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 24, 'investments': [{'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SVB Financial Group', 'permalink': 'svb-financial-group'}, 'person': None}]}, {'id': 24136, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/07/12/digg-raises-an-inside-venture-round/', 'source_description': 'Digg Raises An Inside Venture Round', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 12, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/12/betaworks-acquires-digg/', 'source_description': 'Betaworks Acquires Digg (TechCrunch)', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 12, 'acquiring_company': {'name': 'betaworks', 'permalink': 'betaworks'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 15, 'company': {'name': 'Wefollow', 'permalink': 'wefollow'}}], 'offices': [{'description': None, 'address1': '135 Mississippi St', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.764726, 'longitude': -122.394523}], 'milestones': [{'id': 9588, 'description': 'Another Digg Exec Is Out: Longtime CFO John Moffett Leaves', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2010/10/25/another-digg-exec-is-out-longtime-cfo-john-moffett-leaves/', 'source_text': '', 'source_description': 'Another Digg Exec Is Out: Longtime CFO John Moffett Leaves', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}, {'id': 24912, 'description': 'Digg Sold To LinkedIn AND The Washington Post And Betaworks', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 13, 'source_url': 'http://techcrunch.com/2012/07/12/digg-sold-to-linkedin-and-the-washington-post-and-betaworks/', 'source_text': '', 'source_description': 'Digg Sold To LinkedIn AND The Washington Post And Betaworks', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}, {'id': 42148, 'description': 'Digg Video launches.', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2013/11/05/digg-gives-videos-prime-placement-with-new-digg-video-site/', 'source_text': '', 'source_description': 'Digg Gives Videos Prime Placement With New Digg Video Site', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Digg', 'permalink': 'digg'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

TechCrunch interview with Kevin Rose, April 2009

'}], 'screenshots': [{'available_sizes': [[[117, 150], 'assets/images/resized/0020/0633/200633v1-max-150x150.png'], [[196, 250], 'assets/images/resized/0020/0633/200633v1-max-250x250.png'], [[353, 450], 'assets/images/resized/0020/0633/200633v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/25/digg-closed-287-million-in-series-c/', 'title': 'Digg Closed $28.7 Million in Series C round led by Highland Capital Partners'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d8f'), 'name': 'Omnidrive', 'permalink': 'omnidrive', 'crunchbase_url': 'http://www.crunchbase.com/company/omnidrive', 'homepage_url': 'http://www.omnidrive.com', 'blog_url': 'http://www.omnidrive.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/omnidrive', 'twitter_username': 'Nomadesk', 'category_code': 'network_hosting', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 9, 'deadpooled_day': 15, 'deadpooled_url': '', 'tag_list': 'storage, sharing, edit, online', 'alias_list': None, 'email_address': 'info@omnidrive.com', 'phone_number': '660-675-5052', 'description': None, 'created_at': 'Sun May 27 03:25:32 UTC 2007', 'updated_at': 'Tue Jul 02 22:48:04 UTC 2013', 'overview': '

Currently in public beta, Omnidrive makes it easy to access, edit and share your files from any computer with a web browser. The site was founded in late 2004 by Nik Cubrilovic and later launched at the November 2006 Web 2.0 Conference. An interesting slew of features make Omnidrive an attractive choice in the online file storage field.

\\n\\n

Omnidrive’s competitors include Box.net, Streamload and Xdrive.

', 'image': {'available_sizes': [[[150, 85], 'assets/images/resized/0000/0823/823v1-max-150x150.jpg'], [[150, 85], 'assets/images/resized/0000/0823/823v1-max-250x250.jpg'], [[150, 85], 'assets/images/resized/0000/0823/823v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Omnidrive', 'permalink': 'omnidrive'}], 'relationships': [{'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Geoff', 'last_name': 'McQueen', 'permalink': 'geoff-mcqueen'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Nik', 'last_name': 'Cubrilovic', 'permalink': 'nik-cubrilovic'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tony', 'last_name': 'Guntharp', 'permalink': 'tony-guntharp'}}, {'is_past': True, 'title': 'Board of Advisors', 'person': {'first_name': 'Mike', 'last_name': 'Cannon-Brookes', 'permalink': 'mike-cannon-brookes'}}], 'competitions': [{'competitor': {'name': 'Dropbox', 'permalink': 'dropbox'}}, {'competitor': {'name': 'filobite', 'permalink': 'filobite'}}, {'competitor': {'name': 'digitalbucket.net', 'permalink': 'digitalbucket'}}, {'competitor': {'name': 'ElephantDrive', 'permalink': 'elephantdrive'}}, {'competitor': {'name': 'Banckle Customer Service 2.0', 'permalink': 'banckle'}}], 'providerships': [], 'total_money_raised': '$800k', 'funding_rounds': [{'id': 225, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 800000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Michael', 'last_name': 'Arrington', 'permalink': 'michael-arrington'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Clavier', 'permalink': 'jeff-clavier'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'Suite 200', 'address2': '654 High Street', 'zip_code': '94301', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'ISR', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d9b'), 'name': 'eBay', 'permalink': 'ebay', 'crunchbase_url': 'http://www.crunchbase.com/company/ebay', 'homepage_url': 'http://ebay.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'eBay', 'category_code': 'web', 'number_of_employees': 15000, 'founded_year': 1995, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'auction, bid, search, market', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Online Marketplace', 'created_at': 'Wed Jun 06 13:03:13 UTC 2007', 'updated_at': 'Tue Sep 10 03:38:03 UTC 2013', 'overview': '

Founded in 1995 in San Jose, CA, eBay connects millions of buyers and sellers globally in the world’s largest online marketplace, utilizing PayPal to ensure secure transactions. The company also operates specialized marketplaces such as StubHub, the world’s largest ticket marketplace, and eBay Classifieds sites, which together have a presence in more than 1,000 cities around the world.

\\n\\n

eBay items can be sold either via a silent auction, in which users input the maximum price they are willing to pay and for which the site will automatically increase bids as necessary up to that maximum, or via “Buy It Now,” with which they purchase items at a set price.

\\n\\n

eBay products and companies include eBay Marketplace, Media Marketplace, PayPal, half.com, MicroPlace, Shopping.com, Rent.com, Stubhub and various online classifieds.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/3625/3625v1-max-150x150.png'], [[210, 87], 'assets/images/resized/0000/3625/3625v1-max-250x250.png'], [[210, 87], 'assets/images/resized/0000/3625/3625v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'eBay Marketplace', 'permalink': 'ebay-marketplace'}, {'name': 'eBay Classifieds', 'permalink': 'ebay-classifieds'}, {'name': 'eBay Mobile Application', 'permalink': 'ebay-mobile'}, {'name': 'eBay Desktop', 'permalink': 'ebay-desktop'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Pierre', 'last_name': 'Omidyar', 'permalink': 'pierre-omidyar'}}, {'is_past': False, 'title': 'Chief Marketing Officer of North America', 'person': {'first_name': 'Richelle', 'last_name': 'P. Parham', 'permalink': 'richelle-p-parham'}}, {'is_past': False, 'title': 'Chief Financial Officer and Senior Vice President of Finance', 'person': {'first_name': 'Robert', 'last_name': 'H. Swan', 'permalink': 'robert-h-swan'}}, {'is_past': False, 'title': 'VP & CFO, eBay North America', 'person': {'first_name': 'David', 'last_name': 'Schwarzbach', 'permalink': 'david-schwarzbach'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Bob', 'last_name': 'Swan', 'permalink': 'bob-swan'}}, {'is_past': False, 'title': 'President/CEO', 'person': {'first_name': 'John', 'last_name': 'Donahoe', 'permalink': 'john-donahoe'}}, {'is_past': False, 'title': 'Chief Product Officer and Senior Vice President', 'person': {'first_name': 'R. J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman-2'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': False, 'title': 'Vice President of Innovation and New Ventures, eBay Inc.', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': False, 'title': 'Vice President Managed Marketplaces Technology', 'person': {'first_name': 'Ken', 'last_name': 'Moss', 'permalink': 'ken-moss-2'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Hugh', 'last_name': 'Williams', 'permalink': 'hugh-williams'}}, {'is_past': False, 'title': 'SVP, Human Resources', 'person': {'first_name': 'Beth', 'last_name': 'Axelrod', 'permalink': 'beth-axelrod'}}, {'is_past': False, 'title': 'Senior VP, Legal Affairs/General Counsel/Secretary', 'person': {'first_name': 'Micheal', 'last_name': 'Jacobson', 'permalink': 'micheal-jacobson'}}, {'is_past': False, 'title': 'President, eBay Marketplace', 'person': {'first_name': 'Lorie', 'last_name': 'Norrington', 'permalink': 'lorie-norrington'}}, {'is_past': False, 'title': 'Senior Director, Platform and Mobile', 'person': {'first_name': 'Max', 'last_name': 'Mancini', 'permalink': 'max-mancini'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': False, 'title': 'Voices Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Director, Product Management eBay Mobile', 'person': {'first_name': 'David', 'last_name': 'Beach', 'permalink': 'david-beach'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Andrea', 'last_name': 'Linett', 'permalink': 'andrea-linett'}}, {'is_past': False, 'title': 'Head of Israel Innovation Center', 'person': {'first_name': 'Ron', 'last_name': 'Gura', 'permalink': 'ron-gura'}}, {'is_past': False, 'title': 'Director of Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Gilmartin', 'permalink': 'dan-gilmartin'}}, {'is_past': False, 'title': 'Architect', 'person': {'first_name': 'Sheffield', 'last_name': 'Nolan', 'permalink': 'sheffield-nolan'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': False, 'title': 'CTO and SVP, Global Products, eBay Marketplaces', 'person': {'first_name': 'Mark', 'last_name': 'Carges', 'permalink': 'mark-carges'}}, {'is_past': False, 'title': 'Head of Retail Innovation', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': False, 'title': 'Director of Human Computer Interaction, eBay Research Labs', 'person': {'first_name': 'Elizabeth', 'last_name': 'Churchill', 'permalink': 'elizabeth-churchill'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jess', 'last_name': 'Fleischer', 'permalink': 'jess-fleischer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Howard', 'last_name': 'Schultz', 'permalink': 'howard-schultz'}}, {'is_past': False, 'title': 'MTS1 Software Engineer', 'person': {'first_name': 'Venkatesan', 'last_name': 'Sundramurthy', 'permalink': 'venkatesan-sundramurthy'}}, {'is_past': False, 'title': 'Director, Global Brand Experience', 'person': {'first_name': 'Dane', 'last_name': 'Howard', 'permalink': 'dane-howard'}}, {'is_past': False, 'title': 'Team member', 'person': {'first_name': 'Ross', 'last_name': 'Borden', 'permalink': 'ross-borden-3'}}, {'is_past': False, 'title': 'Intern', 'person': {'first_name': 'Arindam', 'last_name': 'Chakraborty', 'permalink': 'arindam-chakraborty-2'}}, {'is_past': False, 'title': 'President of Global Ebay Marketplaces Business Unit', 'person': {'first_name': 'Devin', 'last_name': 'N. Wenig', 'permalink': 'devin-n-wenig'}}, {'is_past': False, 'title': 'Head of Business', 'person': {'first_name': 'Larry', 'last_name': 'Illg', 'permalink': 'larry-illg'}}, {'is_past': False, 'title': 'Senior Director, Global HR Systems', 'person': {'first_name': 'Kelly', 'last_name': 'Sallin', 'permalink': 'kelly-sallin'}}, {'is_past': False, 'title': 'VP/General Manager, Tickets', 'person': {'first_name': 'Chris', 'last_name': 'Tsakalakis', 'permalink': 'chris-tsakalakis'}}, {'is_past': False, 'title': 'Head of Internet Marketing', 'person': {'first_name': 'Jorge', 'last_name': 'Herrero', 'permalink': 'jorge-herrero'}}, {'is_past': False, 'title': 'SVP, Corporate Communications', 'person': {'first_name': 'Alan', 'last_name': 'Marks', 'permalink': 'alan-marks'}}, {'is_past': False, 'title': 'Head of Product Strategy & Planning', 'person': {'first_name': 'chris', 'last_name': 'mctiernan', 'permalink': 'chris-mctiernan'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Scott', 'last_name': 'Cook', 'permalink': 'scott-cook'}}, {'is_past': False, 'title': 'Lead UX Developer', 'person': {'first_name': 'David', 'last_name': 'Perini', 'permalink': 'david-perini'}}, {'is_past': False, 'title': 'Lead Front End Software Engineer', 'person': {'first_name': 'Abhyuday', 'last_name': 'Chakravarthi', 'permalink': 'abhyuday-chakravarthi'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Sophia', 'last_name': 'Perl', 'permalink': 'sophia-perl'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Paul', 'last_name': 'Bergholm', 'permalink': 'paul-bergholm'}}, {'is_past': False, 'title': 'Director of Technical Services', 'person': {'first_name': 'Jack', 'last_name': 'McGwire', 'permalink': 'jack-mcgwire'}}, {'is_past': False, 'title': 'Head of Retail Strategy and Innovation', 'person': {'first_name': 'David', 'last_name': 'Geisinger', 'permalink': 'david-geisinger'}}, {'is_past': False, 'title': 'Managing Director, eBay India', 'person': {'first_name': 'Latif', 'last_name': 'Nathani', 'permalink': 'latif-nathani'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Aimee', 'last_name': 'Cardwell', 'permalink': 'aimee-cardwell'}}, {'is_past': False, 'title': 'Sr. Manager, Merchant Services', 'person': {'first_name': 'Celeste', 'last_name': 'Paradise', 'permalink': 'celeste-paradise'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Giovanni', 'last_name': 'Fantasia', 'permalink': 'giovanni-fantasia'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Vamsee', 'last_name': 'Nalamothu', 'permalink': 'vamsee-nalamothu'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Daniel', 'last_name': 'Jarosch', 'permalink': 'daniel-jarosch'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Can', 'last_name': 'Turanlı', 'permalink': 'can-turanl'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': 'Head of Russian Marketplaces Business', 'person': {'first_name': 'Vladimir', 'last_name': 'Dolgov', 'permalink': 'vladimir-dolgov'}}, {'is_past': False, 'title': 'Head of International Advertising Division', 'person': {'first_name': 'Christian', 'last_name': 'Kunz', 'permalink': 'christian-kunz'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Dileepan', 'last_name': 'Siva', 'permalink': 'dileepan-siva'}}, {'is_past': True, 'title': 'Chairman & Country Manager, India', 'person': {'first_name': 'Avnish', 'last_name': 'Bajaj', 'permalink': 'avnish-bajaj'}}, {'is_past': True, 'title': 'Founder & VP eBay Motors', 'person': {'first_name': 'Simon', 'last_name': 'Rothman', 'permalink': 'simon-rothman'}}, {'is_past': True, 'title': 'Founder, eBay Motors & eBay Canada', 'person': {'first_name': 'Alexis', 'last_name': 'Maybank', 'permalink': 'alexis-maybank'}}, {'is_past': True, 'title': 'President, Chief Executive Officer, and Board Chairman', 'person': {'first_name': 'Meg', 'last_name': 'Whitman', 'permalink': 'meg-whitman'}}, {'is_past': True, 'title': 'Non-Executive Chairman, Skype', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'Vice President & Chief Information Security Officer & Chief Security Strategist', 'person': {'first_name': 'Howard', 'last_name': 'Schmidt', 'permalink': 'howard-schmidt'}}, {'is_past': True, 'title': 'CTO - PayPal', 'person': {'first_name': 'Chuck', 'last_name': 'Geiger', 'permalink': 'chuck-geiger'}}, {'is_past': True, 'title': 'Chief of Staff, North America eBay Marketplaces,,,Sr. Manager, Product Management, Customer Segments & Insights,,, Manager, Product Marketing.', 'person': {'first_name': 'Susan', 'last_name': 'Kim', 'permalink': 'susan-kim'}}, {'is_past': True, 'title': 'VP & CFO eBay Marketplaces', 'person': {'first_name': 'Erik', 'last_name': 'Bardman', 'permalink': 'erik-bardman'}}, {'is_past': True, 'title': 'CTO of eBay/China', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'VP Finance & CAO', 'person': {'first_name': 'Douglas', 'last_name': 'Jeffries', 'permalink': 'douglas-jeffries'}}, {'is_past': True, 'title': 'Chief of Staff - Global Product Management', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': True, 'title': 'CTO X.commerce', 'person': {'first_name': 'Neal', 'last_name': 'Sample', 'permalink': 'neal-sample'}}, {'is_past': True, 'title': 'COO, Europe', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Mike', 'last_name': 'Linton', 'permalink': 'mike-linton'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Managing Director and Vice President, Marketing and Sales, German', 'person': {'first_name': 'Harald', 'last_name': 'Eisenaecher', 'permalink': 'harald-eisenaecher'}}, {'is_past': True, 'title': 'Deputy General Counsel / VP', 'person': {'first_name': 'Geoff', 'last_name': 'Brigham', 'permalink': 'geoff-brigham'}}, {'is_past': True, 'title': 'VP and General Manager', 'person': {'first_name': 'Reed', 'last_name': 'Henry', 'permalink': 'reed-henry'}}, {'is_past': True, 'title': 'VP International Marketing', 'person': {'first_name': 'Kip', 'last_name': 'Knight', 'permalink': 'kip-knight'}}, {'is_past': True, 'title': 'VP Relationship Marketing', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice President, Product & Community', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'VP Finance & Investor Relations', 'person': {'first_name': 'Mark', 'last_name': 'Rubash', 'permalink': 'mark-rubash'}}, {'is_past': True, 'title': 'Vice President (VP) and General Manager (GM)', 'person': {'first_name': 'John', 'last_name': 'Herr', 'permalink': 'john-herr'}}, {'is_past': True, 'title': 'VP - Managed Marketplace,,, VP - Buyer and Seller Experience,,, VP - Seller Experience ,,, VP - Trust and Safety', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': True, 'title': 'SVP, Corporate Communications', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Michael', 'last_name': 'Dearing', 'permalink': 'michael-dearing'}}, {'is_past': True, 'title': 'Vice President - Advertising and Internet Marketing', 'person': {'first_name': 'Matt', 'last_name': 'Ackley', 'permalink': 'matt-ackley'}}, {'is_past': True, 'title': 'VP, Global Trust & Safety', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': True, 'title': 'SVP, Marketing, Business Development, M & A, & International', 'person': {'first_name': 'Steve', 'last_name': 'Westly', 'permalink': 'steve-westly-2'}}, {'is_past': True, 'title': 'Senior Vice President, Trust and Safety', 'person': {'first_name': 'Rob', 'last_name': 'Chesnut', 'permalink': 'rob-chesnut'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'John', 'last_name': 'Thibault', 'permalink': 'john-thibault'}}, {'is_past': True, 'title': 'VP & General Manager', 'person': {'first_name': 'Lorna', 'last_name': 'Borenstein', 'permalink': 'lorna-borenstein'}}, {'is_past': True, 'title': 'VP, Finance', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': True, 'title': 'Vice President of Technical Operations', 'person': {'first_name': 'Mazen', 'last_name': 'Rawashdeh', 'permalink': 'mazen-rawashdeh'}}, {'is_past': True, 'title': 'VP, North America marketing', 'person': {'first_name': 'Greg', 'last_name': 'Fant', 'permalink': 'greg-fant'}}, {'is_past': True, 'title': 'VP, International', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'SVP & GM, North America and Global Product', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'VP, Corporate Communications', 'person': {'first_name': 'Shannon', 'last_name': 'Stubo', 'permalink': 'shannon-stubo'}}, {'is_past': True, 'title': 'VP, Mobile', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': True, 'title': 'VP, Product Search', 'person': {'first_name': 'Amir', 'last_name': 'Ashkenazi', 'permalink': 'amir-ashkenazi'}}, {'is_past': True, 'title': 'VP, General Manager', 'person': {'first_name': 'Gil', 'last_name': 'Penchina', 'permalink': 'gil-penchina'}}, {'is_past': True, 'title': 'VP, Internet Marketing & Strategic Partnerships', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'VP, eBay Motors', 'person': {'first_name': 'Rob', 'last_name': 'Chesney', 'permalink': 'rob-chesney'}}, {'is_past': True, 'title': 'SVP, eBay New Ventures', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'VP, Seller Experience', 'person': {'first_name': 'Dinesh', 'last_name': 'Lathi', 'permalink': 'dinesh-lathi'}}, {'is_past': True, 'title': 'Board of Directors/Executive VP', 'person': {'first_name': 'Rajiv', 'last_name': 'Dutta', 'permalink': 'rajiv-dutta'}}, {'is_past': True, 'title': 'President, eBay Marketplaces', 'person': {'first_name': 'William C.', 'last_name': 'Cobb', 'permalink': 'william-c-cobb'}}, {'is_past': True, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Amlan', 'last_name': 'Chatterjee', 'permalink': 'amlan-chatterjee'}}, {'is_past': True, 'title': 'eBay Fellow, director ATG', 'person': {'first_name': 'Louis', 'last_name': 'Monier', 'permalink': 'louis-monier'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mary', 'last_name': 'Lou Song', 'permalink': 'mary-lou-song'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Josh', 'last_name': 'Silverman', 'permalink': 'josh-silverman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abe', 'last_name': 'Thomas', 'permalink': 'abe-thomas'}}, {'is_past': True, 'title': 'Product Manager, Desktop', 'person': {'first_name': 'Alan', 'last_name': 'Lewis', 'permalink': 'alan-lewis'}}, {'is_past': True, 'title': 'Senior Manager, Internet Marketing & Business Development', 'person': {'first_name': 'Dave', 'last_name': 'Lu', 'permalink': 'david-lu'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Ole', 'last_name': 'Brandenburg', 'permalink': 'ole-brandenburg'}}, {'is_past': True, 'title': 'Head of Relationship Marketing', 'person': {'first_name': 'Nigel', 'last_name': 'Whiteoak', 'permalink': 'nigel-whiteoak'}}, {'is_past': True, 'title': 'Director, Retention Marketing', 'person': {'first_name': 'Mark', 'last_name': 'Harrington', 'permalink': 'mark-harrington'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Todd', 'last_name': 'Pringle', 'permalink': 'todd-pringle'}}, {'is_past': True, 'title': 'GM, Planning, Formats & Premium Features', 'person': {'first_name': 'David', 'last_name': 'Feller', 'permalink': 'david-feller'}}, {'is_past': True, 'title': 'Managing Director, Canada', 'person': {'first_name': 'Jordan', 'last_name': 'Banks', 'permalink': 'jordan-banks'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Greg', 'last_name': 'Bettinelli', 'permalink': 'greg-bettinelli'}}, {'is_past': True, 'title': 'Director, eBay Express North America', 'person': {'first_name': 'Adam', 'last_name': 'Nash', 'permalink': 'adam-nash'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Justin', 'last_name': 'Miller', 'permalink': 'justin-miller-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Larry', 'last_name': 'Cornett', 'permalink': 'larry-cornett'}}, {'is_past': True, 'title': 'Director, Global Buyer Engagement', 'person': {'first_name': 'Dan', 'last_name': 'Burkhart', 'permalink': 'dan-burkhart-2'}}, {'is_past': True, 'title': 'Director, Business Development & Marketing Strategy', 'person': {'first_name': 'Allan', 'last_name': 'Majotra', 'permalink': 'allan-majotra'}}, {'is_past': True, 'title': 'VP, eBay Buyer Experience', 'person': {'first_name': 'Rob', 'last_name': 'Chesney', 'permalink': 'rob-chesney'}}, {'is_past': True, 'title': 'Executive Senior Vice President of Contrarian Thinking', 'person': {'first_name': 'Anthony', 'last_name': 'Nemitz', 'permalink': 'anthony-nemitz'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Heidema', 'permalink': 'jason-heidema'}}, {'is_past': True, 'title': 'Director, PR, Marketplaces', 'person': {'first_name': 'Jennifer', 'last_name': 'Caukin', 'permalink': 'jennifer-caukin'}}, {'is_past': True, 'title': 'Executive Recruiter', 'person': {'first_name': 'Sean', 'last_name': 'Splaine', 'permalink': 'sean-splaine'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Director, Design', 'person': {'first_name': 'Preston', 'last_name': 'Smalley', 'permalink': 'preston-smalley'}}, {'is_past': True, 'title': 'Senior Manager, Customer Acquisition', 'person': {'first_name': 'Clint', 'last_name': 'Schmidt', 'permalink': 'clint-schmidt'}}, {'is_past': True, 'title': 'Manager, Top Sellers (Power Sellers)', 'person': {'first_name': 'Tiffaney', 'last_name': 'Fox Quintana', 'permalink': 'tiffaney-fox-quintana'}}, {'is_past': True, 'title': 'Head of Strategy UK', 'person': {'first_name': 'Doug', 'last_name': 'Monro', 'permalink': 'doug-monro'}}, {'is_past': True, 'title': 'Director, Strategy, Analytics, and Product / Distinguished Research Scientist', 'person': {'first_name': 'DJ', 'last_name': 'Patil', 'permalink': 'dj-patil'}}, {'is_past': True, 'title': 'Deputy General Counsel', 'person': {'first_name': 'Kent', 'last_name': 'Walker', 'permalink': 'kent-walker-2'}}, {'is_past': True, 'title': 'Director, UX', 'person': {'first_name': 'Shailesh', 'last_name': 'Shilwant', 'permalink': 'shailesh-shilwant'}}, {'is_past': True, 'title': 'Consumer Electronics Category', 'person': {'first_name': 'Gary', 'last_name': 'Calega', 'permalink': 'gary-calega'}}, {'is_past': True, 'title': 'Head of Strategy, Taiwan', 'person': {'first_name': 'Bruce', 'last_name': 'Chen', 'permalink': 'bruce-chen-2'}}, {'is_past': True, 'title': 'Business Developer and Innovation', 'person': {'first_name': 'Clément', 'last_name': 'Delangue', 'permalink': 'clment-delangue'}}, {'is_past': True, 'title': 'Director, eBay Buyer Protection', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Director, Marketing and CLV', 'person': {'first_name': 'Arnaud', 'last_name': 'Collin', 'permalink': 'arnaud-collin'}}, {'is_past': True, 'title': 'Senior Manager, Seller Marketing', 'person': {'first_name': 'Tommaso', 'last_name': 'Cacurio', 'permalink': 'tommaso-cacurio'}}, {'is_past': True, 'title': 'Account Executive, Private Marketplace', 'person': {'first_name': 'Nick', 'last_name': 'Basso', 'permalink': 'nick-basso'}}, {'is_past': True, 'title': 'New Ventures Associate', 'person': {'first_name': 'Sandro', 'last_name': 'Diazzi', 'permalink': 'sandro-diazzi'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Billy', 'last_name': 'Leung', 'permalink': 'billy-leung'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Alexi', 'last_name': 'Suvacioglu', 'permalink': 'alexi-suvacioglu'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Canning', 'permalink': 'rob-canning'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Katharine', 'last_name': 'Lewis', 'permalink': 'katharine-lewis'}}, {'is_past': True, 'title': 'Director Advertising', 'person': {'first_name': 'Michel', 'last_name': 'Vergotte', 'permalink': 'michel-vergotte'}}, {'is_past': True, 'title': 'General Manager, Sr Director Business & Industrial', 'person': {'first_name': 'Jordan', 'last_name': 'Glazier', 'permalink': 'jordan-glazier'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Darian', 'last_name': 'Shirazi', 'permalink': 'darian-shirazi'}}, {'is_past': True, 'title': 'Sr. Director of Product Development', 'person': {'first_name': 'Shawn', 'last_name': 'Kernes', 'permalink': 'shawn-kernes'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Stromberg', 'permalink': 'eric-stromberg-2'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'David', 'last_name': 'Wygant', 'permalink': 'david-wygant'}}, {'is_past': True, 'title': 'Senior Manager leading the Platform Solutions Group', 'person': {'first_name': 'Bjorn', 'last_name': 'Behrendt', 'permalink': 'bjorn-behrendt'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Faith', 'last_name': 'Sedlin', 'permalink': 'faith-sedlin'}}, {'is_past': True, 'title': 'Senior Director Advertising and Internet Marketing,Senior Director New Business ,Director Corporate Developement', 'person': {'first_name': 'Helmut', 'last_name': 'Becker', 'permalink': 'helmut-becker'}}, {'is_past': True, 'title': 'Finance Manager, International', 'person': {'first_name': 'Eric', 'last_name': 'Horndahl', 'permalink': 'eric-horndahl'}}, {'is_past': True, 'title': 'Head of Product Management', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Lee', 'last_name': 'Bouyea', 'permalink': 'lee-bouyea'}}, {'is_past': True, 'title': 'Product Manager, Selling', 'person': {'first_name': 'Rob', 'last_name': 'Veres', 'permalink': 'rob-veres'}}, {'is_past': True, 'title': 'Special Projects Manager', 'person': {'first_name': 'Chris', 'last_name': 'Downie', 'permalink': 'chris-downie'}}, {'is_past': True, 'title': 'Head', 'person': {'first_name': 'Chittu', 'last_name': 'Nagarajan', 'permalink': 'chittu-nagarajan'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Forth', 'permalink': 'aaron-forth'}}, {'is_past': True, 'title': 'Senior Product Manager, Disruptive Innovations Group', 'person': {'first_name': 'Anirban', 'last_name': 'Datta', 'permalink': 'anirban-datta'}}, {'is_past': True, 'title': 'Director, PayPal International Marketplaces', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sen Software Engineer', 'person': {'first_name': 'Anurag', 'last_name': 'Dod', 'permalink': 'anurag-dod'}}, {'is_past': True, 'title': 'Principal Member of Product Development', 'person': {'first_name': 'Sherif', 'last_name': 'Korashy', 'permalink': 'sherif-korashy'}}, {'is_past': True, 'title': 'Director, Search Engine Marketing and Internet Marketing Strategy and planning', 'person': {'first_name': 'Will', 'last_name': 'Martin-Gill', 'permalink': 'will-martin-gill'}}, {'is_past': True, 'title': 'Part Leader', 'person': {'first_name': 'Dylan', 'last_name': 'Ko', 'permalink': 'dylan-ko'}}, {'is_past': True, 'title': 'Director of Corporate Development', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Summer Intern, Top Seller Development', 'person': {'first_name': 'Jonah', 'last_name': 'Lopin', 'permalink': 'jonah-lopin'}}, {'is_past': True, 'title': 'Director of Engineering for Search and Discover, Director of Engineering for Verticals, Director of Research and Engineering', 'person': {'first_name': 'Ali', 'last_name': 'Dasdan', 'permalink': 'ali-dasdan'}}, {'is_past': True, 'title': 'President, eBay Technology', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': True, 'title': 'Managing Director, eBay Germany', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ajay', 'last_name': 'Agrawal', 'permalink': 'ajay-agrawal'}}, {'is_past': True, 'title': 'Business Development Associate', 'person': {'first_name': 'Carey', 'last_name': 'Lai', 'permalink': 'carey-lai'}}, {'is_past': True, 'title': 'Senior Manager Corporate Communications', 'person': {'first_name': 'Usher', 'last_name': 'Lieberman', 'permalink': 'usher-lieberman'}}, {'is_past': True, 'title': 'Sr. Business Development Manager - Strategic Partnerships', 'person': {'first_name': 'Jon', 'last_name': 'Phenix', 'permalink': 'jon-phenix'}}, {'is_past': True, 'title': 'Director of Categories (Product, Marketing, BD)', 'person': {'first_name': 'Sergio', 'last_name': 'Monsalve', 'permalink': 'sergio-monsalve'}}, {'is_past': True, 'title': 'Director, Verticals Fashion', 'person': {'first_name': 'Diana', 'last_name': 'L. Williams', 'permalink': 'diana-l-williams'}}, {'is_past': True, 'title': 'Director, Finance', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Manager - Motors', 'person': {'first_name': 'Jiby', 'last_name': 'Thomas', 'permalink': 'jiby-thomas'}}, {'is_past': True, 'title': 'Vice President, Seller Experience', 'person': {'first_name': 'Jim', 'last_name': 'Ambach', 'permalink': 'jim-ambach'}}, {'is_past': True, 'title': 'Associate Category Manager', 'person': {'first_name': 'Sarah', 'last_name': 'Welch', 'permalink': 'sarah-welch'}}, {'is_past': True, 'title': 'President, eBay Marketplaces', 'person': {'first_name': 'Lorrie', 'last_name': 'Norrington', 'permalink': 'lorrie-norrington'}}, {'is_past': True, 'title': 'Director, Business Operations', 'person': {'first_name': 'Nancy', 'last_name': 'Ramamurthi', 'permalink': 'nancy-ramamurthi'}}, {'is_past': True, 'title': 'Sr. Director, Buyer Experience', 'person': {'first_name': 'Kirstin', 'last_name': 'Hoefer', 'permalink': 'kirstin-hoefer'}}, {'is_past': True, 'title': 'Consulting Search Scientist', 'person': {'first_name': 'Michael', 'last_name': 'Tung', 'permalink': 'michael-tung'}}, {'is_past': True, 'title': 'Senior Member of Technical Staff', 'person': {'first_name': 'Justin', 'last_name': 'Van Winkle', 'permalink': 'justin-van-winkle'}}, {'is_past': True, 'title': 'MBA Intern - Business Development', 'person': {'first_name': 'Joseph', 'last_name': 'Holland', 'permalink': 'joseph-holland'}}, {'is_past': True, 'title': 'Senior Interactive Designer and Online Producer', 'person': {'first_name': 'Andrea', 'last_name': 'Ho', 'permalink': 'andrea-ho'}}, {'is_past': True, 'title': 'GM, Fashion', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Vivek', 'last_name': 'Goyal', 'permalink': 'vivek-goyal'}}, {'is_past': True, 'title': 'Strategy and Business Development Manager', 'person': {'first_name': 'Tom', 'last_name': 'Valentine', 'permalink': 'tom-valentine'}}, {'is_past': True, 'title': 'Product Manager (Shopping.com)', 'person': {'first_name': 'Maya', 'last_name': 'Pizov', 'permalink': 'maya-pizov'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Nico', 'last_name': 'Posner', 'permalink': 'nico-posner'}}, {'is_past': True, 'title': 'Manager eBay Operations, Netherlands', 'person': {'first_name': 'Egbert', 'last_name': 'van Keulen', 'permalink': 'egbert-van-keulen'}}, {'is_past': True, 'title': 'HR. Head, Southeast Asia, Japan, & India', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Executive Recruiter', 'person': {'first_name': 'Gina', 'last_name': 'Moss', 'permalink': 'gina-moss'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Sudhakar', 'last_name': 'Chintu', 'permalink': 'sudhakar-chintu'}}, {'is_past': True, 'title': 'Product Manager - User Acquistion', 'person': {'first_name': 'Amy', 'last_name': 'Chang', 'permalink': 'amy-chang'}}, {'is_past': True, 'title': 'Managing Director Europe', 'person': {'first_name': 'Alexander', 'last_name': 'Samwer', 'permalink': 'alexander-samwer'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Oliver', 'last_name': 'Samwer', 'permalink': 'oliver-samwer'}}, {'is_past': True, 'title': 'Group Manager, Product Management & Product Marketing', 'person': {'first_name': 'Chung', 'last_name': 'Meng Cheong', 'permalink': 'chung-meng-cheong'}}, {'is_past': True, 'title': 'Director, Customer Retention', 'person': {'first_name': 'Allis', 'last_name': 'Ghim', 'permalink': 'allis-ghim'}}, {'is_past': True, 'title': 'Country Finance Director, East Asia', 'person': {'first_name': 'Kalyan', 'last_name': 'Krishnamurthy', 'permalink': 'kalyan-krishnamurthy'}}, {'is_past': True, 'title': 'Sr. Business Development/Category Manager', 'person': {'first_name': 'Dave', 'last_name': 'Coglizer', 'permalink': 'dave-coglizer'}}, {'is_past': True, 'title': 'Senior Director of Information Security', 'person': {'first_name': 'Chris', 'last_name': 'Lalonde', 'permalink': 'chris-lalonde'}}, {'is_past': True, 'title': 'Infrastructure Architect', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Senior Member of Technical Staffs', 'person': {'first_name': 'Simon', 'last_name': 'Ru', 'permalink': 'simon-ru'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Czaja', 'permalink': 'jonathan-czaja'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Eric', 'last_name': 'Moriarty', 'permalink': 'eric-moriarty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Guy', 'permalink': 'dan-guy'}}, {'is_past': True, 'title': 'SVP, Corporate Affairs', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'Senior Manager, Internet Marketing', 'person': {'first_name': 'Ryan', 'last_name': 'Spoon', 'permalink': 'ryan-spoon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Blake', 'last_name': 'Williams', 'permalink': 'blake-williams'}}, {'is_past': True, 'title': 'Principal, Product Strategy', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'SVP, Product', 'person': {'first_name': 'Andre', 'last_name': 'Haddad', 'permalink': 'andre-haddad'}}, {'is_past': True, 'title': 'Senior PR Manager', 'person': {'first_name': 'Dean', 'last_name': 'Jutilla', 'permalink': 'dean-jutilla'}}, {'is_past': True, 'title': 'Director, Marketplace Programs', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Chuck', 'last_name': 'Freedman', 'permalink': 'chuck-freedman'}}, {'is_past': True, 'title': 'Head of Seller Experience', 'person': {'first_name': 'Nigel', 'last_name': 'Whiteoak', 'permalink': 'nigel-whiteoak'}}, {'is_past': True, 'title': 'Senior Manager, Site Experience', 'person': {'first_name': 'Adrian', 'last_name': 'Sevitz', 'permalink': 'adrian-sevitz'}}, {'is_past': True, 'title': 'Community Manager', 'person': {'first_name': 'Jose Antonio', 'last_name': 'Gallego', 'permalink': 'jose-antonio-gallego'}}, {'is_past': True, 'title': 'Director, Distributed Commerce', 'person': {'first_name': 'Josh', 'last_name': 'Wetzel', 'permalink': 'josh-wetzel-3'}}, {'is_past': True, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Udi', 'last_name': 'Nir', 'permalink': 'udi-nir'}}, {'is_past': True, 'title': 'Sr. Director, Global CS Infrastructure', 'person': {'first_name': 'George', 'last_name': 'Leimer', 'permalink': 'george-leimer'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Siddharth', 'last_name': 'Anand', 'permalink': 'siddharth-anand'}}, {'is_past': True, 'title': 'User Experience Architect, Disruptive Innovations', 'person': {'first_name': 'Rob', 'last_name': 'Abbott', 'permalink': 'rob-abbott'}}, {'is_past': True, 'title': 'Head, Global SEM', 'person': {'first_name': 'Prashant', 'last_name': 'Puri', 'permalink': 'prashant-puri'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Leonard', 'last_name': 'Speiser', 'permalink': 'leonard-speiser'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'VP & GM, eBay Motors', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Director, Product, Buyers', 'person': {'first_name': 'Micki', 'last_name': 'Seibel', 'permalink': 'micki-seibel'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Art', 'last_name': 'Leyzerovich', 'permalink': 'art-leyzerovich'}}, {'is_past': True, 'title': 'Director, Global Ad Sales', 'person': {'first_name': 'Scott', 'last_name': 'Engler', 'permalink': 'scott-engler'}}, {'is_past': True, 'title': 'Head of CRM Loyalty Marketing', 'person': {'first_name': 'Natasha', 'last_name': 'Raja', 'permalink': 'natasha-raja'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'David L.', 'last_name': 'Jones', 'permalink': 'david-jones'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Vaughan', 'last_name': 'Smith', 'permalink': 'vaughan-smith'}}, {'is_past': True, 'title': 'Director, Parts & Accessories', 'person': {'first_name': 'Ro', 'last_name': 'Choy', 'permalink': 'ro-choy'}}, {'is_past': True, 'title': 'Head of Retail Business Development', 'person': {'first_name': 'Healey', 'last_name': 'Cypher', 'permalink': 'healey-cypher'}}, {'is_past': True, 'title': 'Head of Internet Marketing', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Greg', 'last_name': 'McCullough', 'permalink': 'greg-mccullough-2'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Nii', 'last_name': 'A. Ahene', 'permalink': 'nii-a-ahene'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Go', 'permalink': 'rob-go'}}, {'is_past': True, 'title': 'Seller Acquistion and Development', 'person': {'first_name': 'Gary', 'last_name': 'Calega', 'permalink': 'gary-calega'}}, {'is_past': True, 'title': 'Corporate Infrastructure Engineer', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Senior Director, Strategic Partnerships', 'person': {'first_name': 'Don', 'last_name': 'Albert', 'permalink': 'don-albert'}}, {'is_past': True, 'title': 'Senior Manager, Platform Evangelism', 'person': {'first_name': 'Jeffrey', 'last_name': 'McManus', 'permalink': 'jeffrey-mcmanus'}}, {'is_past': True, 'title': 'Software Engineer 3, Quality', 'person': {'first_name': 'Milind', 'last_name': 'Shah', 'permalink': 'milind-shah'}}, {'is_past': True, 'title': 'Technology Director', 'person': {'first_name': 'Richard', 'last_name': 'Shusterman', 'permalink': 'richard-shusterman'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Lily', 'last_name': 'Shen', 'permalink': 'lily-shen'}}, {'is_past': True, 'title': 'GM, eBay North America', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Consumer Marketing, GM eBay Business', 'person': {'first_name': 'Lori', 'last_name': 'Goler', 'permalink': 'lori-goler'}}, {'is_past': True, 'title': 'Sr. Product and Design Manager', 'person': {'first_name': 'Christina', 'last_name': 'Mercando', 'permalink': 'christina-mercando'}}, {'is_past': True, 'title': 'Sr. Application/Tools Engineer', 'person': {'first_name': 'Taner', 'last_name': 'Halicioglu', 'permalink': 'taner-halicioglu'}}, {'is_past': True, 'title': 'Head of Planning & Analytics', 'person': {'first_name': 'Sanford', 'last_name': 'Kenyon', 'permalink': 'sanford-kenyon'}}, {'is_past': True, 'title': 'Director of Advertising', 'person': {'first_name': 'Aaron', 'last_name': 'Forth', 'permalink': 'aaron-forth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Sung', 'permalink': 'alex-sung'}}, {'is_past': True, 'title': 'Software Development Engineer II', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Gonzalez', 'permalink': 'john-gonzalez-2'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Joel', 'last_name': 'Johnson', 'permalink': 'joel-johnson'}}, {'is_past': True, 'title': 'Director eBay Europe', 'person': {'first_name': 'Mattias', 'last_name': 'Danielsson', 'permalink': 'mattias-danielsson'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Sr. Manager, Tailored Shopping Experiences - eBay Express', 'person': {'first_name': 'Chris', 'last_name': 'Maliwat', 'permalink': 'chris-maliwat'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Stefan', 'last_name': 'Groß-Selbeck', 'permalink': 'stefan-gro-selbeck'}}, {'is_past': True, 'title': 'HR Consultant - eBay Motors and eBay Financing Center', 'person': {'first_name': 'Jill', 'last_name': 'Kulick', 'permalink': 'jill-kulick'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Li', 'permalink': 'alex-li'}}, {'is_past': True, 'title': 'Strategic Advisor, Sustainable Shopping', 'person': {'first_name': 'Priya', 'last_name': 'Haji', 'permalink': 'priya-haji'}}, {'is_past': True, 'title': 'Head, New Businesses, eBay Motors', 'person': {'first_name': 'Mark', 'last_name': 'Hohmann', 'permalink': 'mark-hohmann'}}, {'is_past': True, 'title': 'Product/Project Manager', 'person': {'first_name': 'Dave', 'last_name': 'Heilmann', 'permalink': 'dave-heilmann'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Josh', 'last_name': 'Knepfle', 'permalink': 'josh-knepfle'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'Head of Motors and Category Development', 'person': {'first_name': 'Andrew', 'last_name': 'Robb', 'permalink': 'andrew-robb'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Henry', 'last_name': 'Vogel', 'permalink': 'henry-vogel'}}, {'is_past': True, 'title': 'Sr. Director, Product Strategy & Operations, eBay North America', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'Head of Marketing, New York', 'person': {'first_name': 'Kelly', 'last_name': 'Ford', 'permalink': 'kelly-ford'}}, {'is_past': True, 'title': 'Director of Product Management, Buyer Applications', 'person': {'first_name': 'Yulie', 'last_name': 'Kim', 'permalink': 'yulie-kim'}}, {'is_past': True, 'title': 'Director, International', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Director of Development', 'person': {'first_name': 'Michael', 'last_name': 'Gardner', 'permalink': 'michael-gardner'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'Kenneth', 'last_name': 'Chiu', 'permalink': 'kenneth-chiu'}}, {'is_past': True, 'title': 'Director, Corporate Development', 'person': {'first_name': 'Stewart', 'last_name': 'Ellis', 'permalink': 'stewart-ellis'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Jen', 'last_name': 'Faenza', 'permalink': 'jen-faenza'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Sean', 'last_name': 'Macnew', 'permalink': 'sean-macnew'}}, {'is_past': True, 'title': 'Director, eBay Express', 'person': {'first_name': 'Bob', 'last_name': 'Holden', 'permalink': 'bob-holden'}}, {'is_past': True, 'title': 'Software Developer Intern', 'person': {'first_name': 'Ben', 'last_name': 'McRedmond', 'permalink': 'ben-mcredmond'}}, {'is_past': True, 'title': 'Senior Product Manager, Finding Traffic Optimization', 'person': {'first_name': 'Elliot', 'last_name': 'Shmukler', 'permalink': 'elliot-shmukler'}}, {'is_past': True, 'title': 'General Manager, US Classifieds & Mobile', 'person': {'first_name': 'Deepak', 'last_name': 'Thomas', 'permalink': 'deepak-thomas'}}, {'is_past': True, 'title': 'Senior Manager, PR', 'person': {'first_name': 'Michele', 'last_name': 'Husak', 'permalink': 'michele-husak'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Jalpa', 'last_name': 'Trivedi', 'permalink': 'jalpa-trivedi'}}, {'is_past': True, 'title': 'marketing leadership', 'person': {'first_name': 'Anna', 'last_name': 'Fieler', 'permalink': 'anna-fieler'}}, {'is_past': True, 'title': 'Finance Director, eBay UK', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Entertainment Strategic Partnerships', 'person': {'first_name': 'Chris', 'last_name': 'Fralic', 'permalink': 'chris-fralic'}}, {'is_past': True, 'title': 'Category Manager', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'General Manager, eBay Ireland', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Senior Manager, Billing & Collections', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Evan', 'last_name': 'Liang', 'permalink': 'evan-liang'}}, {'is_past': True, 'title': 'Top Buyer Group', 'person': {'first_name': 'Timothy', 'last_name': 'Lo', 'permalink': 'timothy-lo'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Raghav', 'last_name': 'Gupta', 'permalink': 'raghav-gupta-3'}}, {'is_past': True, 'title': 'Strategy Manager (Summer Internship), Corporate Strategy Group', 'person': {'first_name': 'Michal', 'last_name': 'Panowicz', 'permalink': 'michal-panowicz'}}, {'is_past': True, 'title': 'Marketing Campaigns Technical Consultant', 'person': {'first_name': 'Amit', 'last_name': 'Narayanan', 'permalink': 'amit-narayanan'}}, {'is_past': True, 'title': 'Sr. Manager, Customer Analytics', 'person': {'first_name': 'Asher', 'last_name': 'Matsuda', 'permalink': 'asher-matsuda'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Maya', 'last_name': 'Pizov', 'permalink': 'maya-pizov'}}, {'is_past': True, 'title': 'IT Asset Management', 'person': {'first_name': 'Daniel', 'last_name': 'Barney', 'permalink': 'daniel-barney'}}, {'is_past': True, 'title': 'Head of Category Management', 'person': {'first_name': 'Marina', 'last_name': 'Tognetti', 'permalink': 'marina-tognetti'}}, {'is_past': True, 'title': 'Senior VP, eBay International', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Several senior positions', 'person': {'first_name': 'Bill', 'last_name': 'Barmeier', 'permalink': 'bill-barmeier'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'MD', 'person': {'first_name': 'Frederic', 'last_name': 'de Bure', 'permalink': 'frederic-de-bure'}}, {'is_past': True, 'title': 'Director & General Manager, ProStores', 'person': {'first_name': 'Eric', 'last_name': 'Shoup', 'permalink': 'eric-shoup'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Marc', 'last_name': 'Samwer', 'permalink': 'marc-samwer'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Yidrienne', 'last_name': 'Lai', 'permalink': 'yidrienne-lai'}}, {'is_past': True, 'title': 'Technology Evaluation / Scalability Strategy Manager ,, Program Manager, Advanced Technology Group', 'person': {'first_name': 'Thomas', 'last_name': 'DiGrazia', 'permalink': 'thomas-digrazia'}}, {'is_past': True, 'title': 'Director, Financial Planning & Analysis, Asia Pacific Region', 'person': {'first_name': 'Kalyan', 'last_name': 'Krishnamurthy', 'permalink': 'kalyan-krishnamurthy'}}, {'is_past': True, 'title': 'VP Strategic Partnerships', 'person': {'first_name': 'Gary', 'last_name': 'Dillabough', 'permalink': 'gary-dillabough'}}, {'is_past': True, 'title': 'Mobile Strategy and Operations - PayPal Here', 'person': {'first_name': 'Imran', 'last_name': 'Ahmad', 'permalink': 'imran-ahmad'}}, {'is_past': True, 'title': 'Principal Database Administrator', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}, {'is_past': True, 'title': 'Sales & Key Account Manager', 'person': {'first_name': 'Peggy', 'last_name': 'Housset', 'permalink': 'peggy-housset'}}, {'is_past': True, 'title': 'Management Consultant / Program Manager', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Howard', 'last_name': 'Rosenberg', 'permalink': 'howard-rosenberg'}}, {'is_past': True, 'title': 'Several Positions', 'person': {'first_name': 'Dave', 'last_name': 'Gershon', 'permalink': 'dave-gershon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Travers', 'permalink': 'david-travers'}}], 'competitions': [{'competitor': {'name': 'Taobao', 'permalink': 'taobao'}}, {'competitor': {'name': 'Seatwave', 'permalink': 'seatwave'}}, {'competitor': {'name': 'Craigslist', 'permalink': 'craigslist'}}, {'competitor': {'name': 'Darrb', 'permalink': 'darrb'}}, {'competitor': {'name': 'Infibeam', 'permalink': 'infibeam'}}, {'competitor': {'name': 'OLX', 'permalink': 'olx'}}, {'competitor': {'name': 'MyFab', 'permalink': 'myfab'}}, {'competitor': {'name': 'Wigix', 'permalink': 'wigix'}}, {'competitor': {'name': 'MyStore.com', 'permalink': 'mystore'}}, {'competitor': {'name': 'iList', 'permalink': 'ilist'}}, {'competitor': {'name': 'erento', 'permalink': 'erento'}}, {'competitor': {'name': 'Corkin', 'permalink': 'corkin'}}, {'competitor': {'name': 'CellBazaar', 'permalink': 'cellbazaar'}}, {'competitor': {'name': 'MySkip.com', 'permalink': 'myskip-com'}}, {'competitor': {'name': '1000 Markets', 'permalink': '1000-markets'}}, {'competitor': {'name': 'Swapidy', 'permalink': 'swapidy'}}, {'competitor': {'name': 'Equallo', 'permalink': 'equallo'}}], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Cooley LLP', 'permalink': 'cooley-godward-kronish-llp'}}, {'title': 'UK, France', 'is_past': False, 'provider': {'name': 'Ballou PR', 'permalink': 'ballou-pr'}}], 'total_money_raised': '$6.7M', 'funding_rounds': [{'id': 24534, 'round_code': 'unattributed', 'source_url': 'http://www.fundinguniverse.com/company-histories/Benchmark-Capital-Company-History.html', 'source_description': 'Benchmark Capital', 'raised_amount': 6700000, 'raised_currency_code': 'USD', 'funded_year': 1997, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/05/channeladvisor.html', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://channeladvisor.com/company/press_releases/2004/pr040122.html', 'source_description': 'ChannelAdvisor Press Release', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 22, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://channeladvisor.com/company/press_releases/2005/pr050428.html', 'source_description': 'ChannelAdvisor Press Release', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 28, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.earthtimes.org/articles/show/channeladvisor-secures-20-million-in-funding,527146.shtml', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 5, 'company': {'name': 'ChannelAdvisor', 'permalink': 'channeladvisor'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.sfgate.com/cgi-bin/article.cgi?file=/chronicle/archive/2004/08/14/BUG6B87P0F1.DTL', 'source_description': 'EBay buys 25% stake in Craigslist', 'raised_amount': 13500000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 8, 'funded_day': 14, 'company': {'name': 'Craigslist', 'permalink': 'craigslist'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.businessweek.com/technology/content/mar2006/tc20060309_072549.htm', 'source_description': \" eBay's Affinity for Meetup.com \", 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 9, 'company': {'name': 'Meetup', 'permalink': 'meetup'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_description': 'eBay Completes Skype Sale at $2.75 Billion Valuation', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 19, 'company': {'name': 'Skype', 'permalink': 'skype'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.appcelerator.com/2010/10/appcelerator-and-paypal-team-up/', 'source_description': 'Sierra Leads $9 Million Investment in Appcelerator; eBay Makes Strategic Investment', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 26, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/03/15/magento-scores-22-5-million-for-open-source-e-commerce-platform-play/', 'source_description': 'Magento Scores $22.5 Million For Open Source E-commerce Platform Play', 'raised_amount': 22500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Magento', 'permalink': 'magento'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcircle.vccircle.com/500/quikr-raises-8m-in-series-d-led-by-nokia-growth-partners/', 'source_description': 'Quikr Raises $8M In Series D, Led By Nokia Growth Partners', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'Quikr India', 'permalink': 'quikr-india'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/07/13/ebay-and-rubbermaid-put-6-million-in-order-fulfillment-company-shipwire/', 'source_description': 'eBay And Rubbermaid Put $6 Million In Order Fulfillment Company Shipwire', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 13, 'company': {'name': 'Shipwire', 'permalink': 'shipwire'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/11/01/appcelerator-raises-15-million-series-c-round/', 'source_description': 'Appcelerator Raises $15 Million Series C Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2012/05/22/quikr-raises-32m/', 'source_description': 'Quikr, India’s Spin On Craigslist, Gobbles Up $32M From Warburg Pincus, eBay & More', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 22, 'company': {'name': 'Quikr India', 'permalink': 'quikr-india'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://venturebeat.com/2013/04/01/snapdeal-funding/', 'source_description': 'Snapdeal nabs $50M from eBay & others to dominate online Indian e-commerce', 'raised_amount': 75000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 1, 'company': {'name': 'Snapdeal', 'permalink': 'snapdeal'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/04/10/bypass-grabs-3-5m-from-ebay-nolan-ryan-others-to-help-big-ticket-venues-upgrade-their-payment-solutions/', 'source_description': 'Bypass Grabs $3.5M From eBay, Nolan Ryan & Others To Help Big-Ticket Venues Upgrade Their Payment Solutions', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 10, 'company': {'name': 'Bypass Mobile', 'permalink': 'bypass-lane'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2013/07/16/appcelerator-raise/', 'source_description': 'Appcelerator Raises $12.1M To Expand Into Asia And Help Enterprises Build The Best Apps', 'raised_amount': 12100000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 16, 'company': {'name': 'Appcelerator', 'permalink': 'appcelerator'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 200000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Cuturia', 'permalink': 'cuturia'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'company': {'name': 'PayPal', 'permalink': 'paypal'}}, {'price_amount': 620000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://archive.thestandard.com/internetnews/003081.php', 'source_description': 'EBay buys Shopping.com for $620 million', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 2, 'company': {'name': 'Shopping.com', 'permalink': 'shopping-com'}}, {'price_amount': 48300000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.thealarmclock.com/euro/archives/2006/04/ebay_buy_swedens_traderacom_gi.html', 'source_description': \"eBay Acquires Sweden's Tradera.com - VCs Exit\", 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Tradera', 'permalink': 'tradera'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.auctionbytes.com/cab/abn/y07/m03/i30/s00', 'source_description': 'eBay Getting into Micro-Finance through Purchase of MicroPlace', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'MicroPlace', 'permalink': 'microplace'}}, {'price_amount': 310000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2007/01/10/its-official-ebay-is-buying-stubhub-for-310-million/', 'source_description': 'It’s Official - eBay is Buying StubHub For $310 million', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 10, 'company': {'name': 'StubHub', 'permalink': 'stubhub'}}, {'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://ecommercetimes.com/story/3555.html', 'source_description': 'eBay Broadens Scope with Half.com Buy', 'acquired_year': 2000, 'acquired_month': 6, 'acquired_day': 13, 'company': {'name': 'Half.com', 'permalink': 'half-com'}}, {'price_amount': 945000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2008/10/06/ebay-spends-more-than-1-billion-to-buy-billmelater-and-dbadk-and-lays-off-10-of-employees/', 'source_description': 'Ebay Spends More Than $1.2 Billion To Buy BillMeLater And DBA.dk, And Lays Off 10% Of Employees', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'price_amount': 380000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/10/06/ebay-buys-denmarks-dba-for-380-million/', 'source_description': 'eBay Buys Denmark’s DBA for $380 million', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 6, 'company': {'name': 'Den Bla Avis', 'permalink': 'dba-dk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/portal/site/google/?ndmViewId=news_view&newsId=20050630005091&newsLang=en', 'source_description': \"eBay's Kijiji Acquires German Classifieds Web Site opusforum\", 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'Opusforum.org', 'permalink': 'opusforum-org'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.zdnet.co.uk/internet/0,1000000097,39199141,00.htm', 'source_description': 'eBay grabs hold of Gumtree', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 19, 'company': {'name': 'Gumtree', 'permalink': 'gumtree'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.auctionbytes.com/cab/abn/y05/m05/i18/s05', 'source_description': \"eBay's Kijiji Acquires Gumtree & LoQUo Classifieds Sites\", 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Loquo', 'permalink': 'loquo'}}, {'price_amount': 415000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.internetnews.com/ec-news/article.php/3449421', 'source_description': 'eBay Grabs Rent.com for $415M', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': None, 'company': {'name': 'Rent.com', 'permalink': 'rent-com'}}, {'price_amount': 290000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=148001', 'source_description': 'eBay Acquires Dutch Company Marktplaats.nl', 'acquired_year': 2004, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Marktplaats.nl', 'permalink': 'marktplaats-nl'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.rediff.com/money/2004/jun/23ebay.htm', 'source_description': 'eBay buys Baazee.com for $50 mn', 'acquired_year': 2004, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Baazee', 'permalink': 'baazee'}}, {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=113943', 'source_description': 'eBay Completes EachNet Investment', 'acquired_year': 2003, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'EachNet', 'permalink': 'eachnet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=100770', 'source_description': 'eBay Motors Announces Acquisition Agreement and New Strategic Relationship', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'CARad', 'permalink': 'carad'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://investor.ebay.com/ReleaseDetail.cfm?releaseid=152866', 'source_description': 'eBay to Acquire Kurant Assets', 'acquired_year': 2005, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Kurant', 'permalink': 'kurant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Index Report', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'Vuvox', 'permalink': 'vuvox'}}, {'price_amount': 215000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/04/12/ebay-acquires-turkish-marketplace-gittigidiyor/', 'source_description': 'eBay Acquires Turkish Marketplace GittiGidiyor', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'GittiGidiyor.com', 'permalink': 'gittigidiyor-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.ebay.com/releasedetail.cfm?ReleaseID=267296', 'source_description': 'eBay Acquires Afterbuy.com', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 4, 'company': {'name': 'ViA-Online', 'permalink': 'via-online'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://bits.blogs.nytimes.com/2008/08/13/ebay-in-talks-to-buy-share-of-korean-auction-site-gmarket/', 'source_description': 'EBay in Talks to Buy Share of Korean Auction Site GMarket', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 25, 'company': {'name': 'Gmarket', 'permalink': 'gmarket'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/06/23/ebay-acquires-barcode-scanning-iphone-app-redlaser/', 'source_description': 'eBay Acquires RedLaser To Integrate Barcode-Scanning Into iPhone Apps', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'RedLaser', 'permalink': 'redlaser'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_1998_July_16/ai_20909153/', 'source_description': 'eBay Announces Acquisition of Jump Inc. and Its Person-to-Person Online Trading Site Up4sale', 'acquired_year': 1998, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Jump', 'permalink': 'jump'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/eBay-buys-Butterfield--Butterfield/2100-1017_3-224933.html', 'source_description': 'eBay buys Butterfield & Butterfield', 'acquired_year': 1999, 'acquired_month': 4, 'acquired_day': 26, 'company': {'name': 'Butterfield & Butterfield', 'permalink': 'butterfield-butterfield'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/eBay-buys-Billpoint,-Kruse/2100-12_3-258449.html', 'source_description': 'eBay buys Billpoint, Kruse', 'acquired_year': 1999, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Billpoint', 'permalink': 'billpoint'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www2.prnewswire.com/cgi-bin/stories.pl?ACCT=105&STORY=/www/story/06-22-1999/0000968029', 'source_description': \"eBay Acquires Germany's Leading Online Person-to-Person Trading Site - alando.de AG\", 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 22, 'company': {'name': 'alando.de', 'permalink': 'alando-de'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investor.ebay.com/releasedetail.cfm?ReleaseID=246467', 'source_description': 'eBay Acquires StumbleUpon', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 30, 'company': {'name': 'StumbleUpon', 'permalink': 'stumbleupon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ebayinkblog.com/2009/01/08/ebay-acquires-positronic-inc/', 'source_description': 'eBay Acquires Positronic, Inc.', 'acquired_year': 2009, 'acquired_month': 1, 'acquired_day': 8, 'company': {'name': 'Positronic', 'permalink': 'positronic'}}, {'price_amount': 75000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/02/confirmed-ebay-acquires-milo-for-75-million-investors-make-a-killing/', 'source_description': 'Confirmed: Ebay Acquires Milo For $75 Million. Investors Make A Killing.', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 2, 'company': {'name': 'Milo', 'permalink': 'milo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/15/ebay-buys-mobile-app-developer-critical-path-software/', 'source_description': 'eBay Buys Mobile App Developer Critical Path Software', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Critical Path Software', 'permalink': 'critical-path-software'}}, {'price_amount': 200000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'https://www.fis.dowjones.com/article.aspx?ProductIDFromApplication=32&aid=DJFVW00020101220e6cl0005m&r=Rss&s=DJFVW', 'source_description': \" EBay To Acquire Germany's Brands4friends For $200M\", 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'brands4friends', 'permalink': 'brands4friends'}}, {'price_amount': 2400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/28/ebay-to-acquire-gsi-commerce-for-2-4-billion/', 'source_description': 'eBay Acquires GSI Commerce For $2.4 Billion In Cash And Debt', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 20, 'company': {'name': 'GSI Commerce', 'permalink': 'gsi-commerce'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://bostinnovation.com/2011/04/20/retail-giant-ebay-acquires-where-for-135-million/', 'source_description': 'BostInnovation', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Where', 'permalink': 'where-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/05/02/ebay-acquires-nonprofit-fundraising-tool-missionfish/', 'source_description': 'eBay Acquires Nonprofit Fundraising Tool MissionFish', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'MissionFish', 'permalink': 'missionfish'}}, {'price_amount': 180000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/23/ebay-acquired-magento-for-over-180-million-but-not-everyone-is-smiling/', 'source_description': 'eBay Acquired Magento For Over $180 Million – But Not Everyone Is Smiling', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 6, 'company': {'name': 'Magento', 'permalink': 'magento'}}, {'price_amount': 240000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/07/07/ebay-acquires-mobile-payments-company-zong-for-240-million-in-cash/', 'source_description': \"eBay Buys Zong For $240 Million In Cash To Boost PayPal's Mobile Payments Technology\", 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 7, 'company': {'name': 'Zong', 'permalink': 'zong'}}, {'price_amount': 2600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/122516/ebay_buys_skype_for_26_billion.html', 'source_description': 'EBay Buys Skype for $2.6 Billion', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'Skype', 'permalink': 'skype'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://allthingsd.com/20110908/ebay-bets-on-social-commerce-with-acquisition-of-the-gifts-project/', 'source_description': 'All Things D', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'The Gifts Project', 'permalink': 'the-gifts-project'}}, {'price_amount': 80000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://uncrunched.com/2011/11/21/ebays-got-a-hunch-for-around-80-million/', 'source_description': 'EBAY’S GOT A HUNCH, FOR AROUND $80 MILLION', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 21, 'company': {'name': 'Hunch', 'permalink': 'hunch'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20111222005130/en/eBay-Acquires-BillSAFE', 'source_description': 'eBay Inc. Acquires BillSAFE', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 22, 'company': {'name': 'BillSAFE', 'permalink': 'billsafe'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Flockish', 'permalink': 'flockish'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/06/ebay-acquires-style-focused-social-curated-shopping-site-svpply/', 'source_description': 'eBay Acquires Style-Focused, Social, Curated Shopping Site Svpply', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 6, 'company': {'name': 'Svpply', 'permalink': 'svpply'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/04/ebay-buys-2dehands-be-and-ememain-be-in-belgium-consolidates-classifieds-power-in-europe/', 'source_description': 'eBay Buys 2dehands.be And 2ememain.be In Belgium, Consolidates Classifieds Power In Europe', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': '2dehands.be', 'permalink': '2dehands-be'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/04/ebay-buys-2dehands-be-and-ememain-be-in-belgium-consolidates-classifieds-power-in-europe/', 'source_description': 'eBay Buys 2dehands.be And 2ememain.be In Belgium, Consolidates Classifieds Power In Europe', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': '2ememain.be', 'permalink': '2ememain-be'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/09/ebay-acquires-decide-com.html', 'source_description': 'Ebay Acquires Decide.com', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Decide.com', 'permalink': 'decide-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/27/ebay-acquires-mens-content-meets-commerce-shopping-site-bureau-of-trade/', 'source_description': 'Ebay Acquires Men’s “Content Meets Commerce” Shopping Site, Bureau Of Trade', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'Bureau Of Trade', 'permalink': 'bureau-of-trade'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/ebay-acquires-uk-startup-shutl-to-change-the-ecommerce-game-with-one-hour-delivery/', 'source_description': 'eBay Acquires UK Startup Shutl To Change The Ecommerce Game With One Hour Delivery', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Shutl', 'permalink': 'shutl'}}], 'offices': [{'description': 'Headquarters', 'address1': '2145 Hamilton Avenue', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.295005, 'longitude': -121.930035}], 'milestones': [{'id': 7107, 'description': 'eBay Q2 Revenue Hits $2.2 Billion', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2010/07/21/ebay-q2-revenue-hits-2-2-billion-paypal-adding-one-million-new-accounts-each-month/', 'source_text': '', 'source_description': 'eBay Q2 Revenue Hits $2.2 Billion, PayPal Adding One Million New Accounts Each Month', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 11521, 'description': 'eBay: Mobile Sales Grew From $600 Million To $2 Billion In 2010', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 6, 'source_url': 'http://techcrunch.com/2011/01/06/ebay-mobile-sales-2010/', 'source_text': '', 'source_description': 'eBay: Mobile Sales Grew From $600 Million To $2 Billion In 2010', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 14439, 'description': 'eBay Beats The Street; Revenue Up 16 Percent To $2.5B; Net Income Up 12 Percent', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/04/27/ebay-beats-the-street-revenue-up-16-percent-to-2-5b-net-income-up-12-percent/', 'source_text': '', 'source_description': 'eBay Beats The Street; Revenue Up 16 Percent To $2.5B; Net Income Up 12 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}, {'id': 15745, 'description': 'eBay Closes $2.4 Billion Acquisition Of GSI Commerce', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/06/20/ebay-closes-2-4-billion-acquisition-of-gsi-commerce/', 'source_text': '', 'source_description': 'eBay Closes $2.4 Billion Acquisition Of GSI Commerce', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBay', 'permalink': 'ebay'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1998, 'pub_month': 10, 'pub_day': 2, 'stock_symbol': 'NASDAQ:EBAY'}, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 71], 'assets/images/resized/0003/3450/33450v1-max-150x150.jpg'], [[250, 119], 'assets/images/resized/0003/3450/33450v1-max-250x250.jpg'], [[450, 215], 'assets/images/resized/0003/3450/33450v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 72], 'assets/images/resized/0014/8877/148877v1-max-150x150.jpg'], [[250, 120], 'assets/images/resized/0014/8877/148877v1-max-250x250.jpg'], [[450, 216], 'assets/images/resized/0014/8877/148877v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297d9d'), 'name': 'Joost', 'permalink': 'joost', 'crunchbase_url': 'http://www.crunchbase.com/company/joost', 'homepage_url': 'http://joost.com', 'blog_url': 'http://blog.joost.com', 'blog_feed_url': 'http://blog.joost.com/atom.xml', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'iptv, babelgum, television, video, theveniceproject', 'alias_list': None, 'email_address': 'newyork@joost.com', 'phone_number': '', 'description': None, 'created_at': 'Sat Jun 09 07:05:30 UTC 2007', 'updated_at': 'Fri Mar 15 23:31:11 UTC 2013', 'overview': '

As their third major undertaking, Skype and Kazaa founders Janus Friis and Niklas Zennstrom are attempting to perfect IPTV with Joost. Joost is a p2p on demand video player that offers professional (legal) programming much like on your television, but whenever you want. The service is free, however, there are video advertisements interspersed between and during programs as well as small type or image ads on the sides of your screen.

\\n\\n

With very heavy backing from media giants CBS and Viacom, Joost looks good to take on competitors Bablegum and Microsoft LiveStation. Currently Joost has content deals with CNN, the NHL and Sony as well as their financiers CBS and Viacom (MTV, Comedy Central etc). They have also recently developed a new Widget API open to third parties to make their own Joost widgets.

\\n\\n

Unlike many online video platforms, joost does require a download and cannot play video directly from users’ browsers. joost offers a desktop client that allows the user to watch on-demand TV over the internet. In addition, Joost enhances the TV experience by offering interactive tools. For example, users will be able to chat with friends while watching a show. The channels will also have interactive displays where users can discover behind-the-scene content.

\\n\\n

Joost’s peer-to-peer technology also lowers the cost of channel owners by reducing the amount of data the servers must stream out. joost only serves some selected users, while the rest of the data is distributed from user to user.

\\n\\n

Rumor has it that Joost is in talks with hardware manufacturers to embed its platform into TV set-top boxes. If the move were successful it could change the TV industry substantially.

\\n\\n

Joost is now fully public and open to all.

\\n\\n

UPDATE: Joost has recently deactivated it’s software client and now streams it’s entire catalog via Adobe’s Flash Player which is available for Windows, Mac OS X, and Linux.

', 'image': {'available_sizes': [[[150, 64], 'assets/images/resized/0000/3718/3718v1-max-150x150.png'], [[199, 85], 'assets/images/resized/0000/3718/3718v1-max-250x250.png'], [[199, 85], 'assets/images/resized/0000/3718/3718v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Joost', 'permalink': 'joost'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Matt', 'last_name': 'Zelesko', 'permalink': 'matt-zelesko'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Janus', 'last_name': 'Friis', 'permalink': 'janus-friis'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Matthew', 'last_name': 'Zelesko', 'permalink': 'matthew-zelesko'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Mike', 'last_name': 'Volpi', 'permalink': 'mike-volpi'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Dirk-Willem', 'last_name': 'van Gulik', 'permalink': 'dirk-willem-van-gulik'}}, {'is_past': True, 'title': 'SVP of Sales', 'person': {'first_name': 'Elizabeth', 'last_name': 'Schiff', 'permalink': 'elizabeth-schiff'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Vipin', 'last_name': 'Goyal', 'permalink': 'vipin-goyal'}}, {'is_past': True, 'title': 'SVP Engineering', 'person': {'first_name': 'Matt', 'last_name': 'Zelesko', 'permalink': 'matt-zelesko'}}, {'is_past': True, 'title': 'Backend systems architect', 'person': {'first_name': 'Sylvain', 'last_name': 'Wallez', 'permalink': 'sylvain-wallez'}}, {'is_past': True, 'title': 'Director of Operations', 'person': {'first_name': 'Sander', 'last_name': 'van Zoest', 'permalink': 'sander-van-zoest'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Aki', 'last_name': 'Tsuchiya', 'permalink': 'aki-tsuchiya'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Esther', 'last_name': 'Park', 'permalink': 'esther-park'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Hiro', 'last_name': 'Tamura', 'permalink': 'hiro-tamura'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Mark', 'last_name': 'Dyne', 'permalink': 'mark-dyne'}}, {'is_past': True, 'title': 'Senior P2P Software Engineer', 'person': {'first_name': 'Jens', 'last_name': 'Finkhaeuser', 'permalink': 'jens-finkhaeuser'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Mark', 'last_name': 'Webster', 'permalink': 'mark-webster'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Allan', 'last_name': 'Beaufour', 'permalink': 'allan-beaufour'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Kaare', 'last_name': 'Larsen', 'permalink': 'kaare-larsen'}}], 'competitions': [{'competitor': {'name': 'Babelgum', 'permalink': 'babelgum'}}, {'competitor': {'name': 'Zattoo', 'permalink': 'zattoo'}}, {'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'Veoh', 'permalink': 'veoh'}}, {'competitor': {'name': 'Vudu', 'permalink': 'vudu'}}, {'competitor': {'name': 'Inuk Networks', 'permalink': 'inuk-networks'}}, {'competitor': {'name': 'Participatory Culture Foundation', 'permalink': 'participatory-culture-foundation'}}, {'competitor': {'name': 'Next New Networks', 'permalink': 'next-new-networks'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'MUBI', 'permalink': 'mubi'}}], 'providerships': [], 'total_money_raised': '$45M', 'funding_rounds': [{'id': 19, 'round_code': 'a', 'source_url': 'http://www.lksf.org/eng/media/press/20070510.shtml', 'source_description': 'Joost Announces $45 million Funding', 'raised_amount': 45000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Li', 'last_name': 'Ka-shing', 'permalink': 'li-ka-shing'}}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/24/joost-acquired-adconion/', 'source_description': 'Joost Is Now Officially Dead – Assets Acquired By Adconion Media Group', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 24, 'acquiring_company': {'name': 'Adconion Media Group', 'permalink': 'adconion-media-group'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '100 5th Ave Fl 6', 'address2': '', 'zip_code': '10011-6903', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7464969, 'longitude': -74.0094471}], 'milestones': [{'id': 4860, 'description': 'Joost Video Network Reaches 67 million Viewers/Month', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2010/04/14/joost-video-network/', 'source_text': '', 'source_description': 'Joost Video Network Stuns With Big Reach: 67 Million Viewers Per Month ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Joost', 'permalink': 'joost'}}], 'ipo': None, 'video_embeds': [{'embed_code': '\\r\\n Joost iPhone App Review - AppVee.com', 'description': ''}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297da1'), 'name': 'Plaxo', 'permalink': 'plaxo', 'crunchbase_url': 'http://www.crunchbase.com/company/plaxo', 'homepage_url': 'http://www.plaxo.com', 'blog_url': 'http://blog.plaxo.com/', 'blog_feed_url': 'http://blog.plaxo.com/index.rdf', 'twitter_username': 'plaxo', 'category_code': 'web', 'number_of_employees': 50, 'founded_year': 2002, 'founded_month': 11, 'founded_day': 17, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'contact-management, address-book, sync, contacts, de-duper, import, personal-cloud', 'alias_list': '', 'email_address': 'info@plaxo.com', 'phone_number': '650-254-5400', 'description': 'Contact Management', 'created_at': 'Sat Jun 09 14:18:54 UTC 2007', 'updated_at': 'Tue Jul 02 03:00:59 UTC 2013', 'overview': '

Plaxo helps keep people connected by solving the common and frustrating problem of out-of-date contact information. Users and their contacts store their information on Plaxo’s servers. When a user edits their own information, the changes appear in the address books of all those who listed the user in their own address books. Because contacts are stored in a central location, it’s possible to list connections between contacts and access the address book from anywhere.

\\n\\n

Napster co-founder, Sean Parker, was one of Plaxo’s founders

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/3880/3880v7-max-150x150.png'], [[250, 78], 'assets/images/resized/0000/3880/3880v7-max-250x250.png'], [[450, 141], 'assets/images/resized/0000/3880/3880v7-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Plaxo Basic', 'permalink': 'plaxo-basic-and-premium'}, {'name': 'Plaxo Pulse', 'permalink': 'plaxo-pulse'}, {'name': 'Plaxo Personal Assistant', 'permalink': 'plaxo-personal-assistant'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Justin', 'last_name': 'Miller', 'permalink': 'justin-miller-2'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Ryan', 'last_name': 'King', 'permalink': 'ryan-king'}}, {'is_past': False, 'title': 'VP Business Development', 'person': {'first_name': 'Peter', 'last_name': 'Lester', 'permalink': 'peter-lester'}}, {'is_past': False, 'title': 'VP Globalization, IT, Customer Support, and Privacy', 'person': {'first_name': 'Redgee', 'last_name': 'Capili', 'permalink': 'redgee-capili'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Redgee', 'last_name': 'Capili', 'permalink': 'redgee-capili'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Minh', 'last_name': 'Nguyen', 'permalink': 'minh-nguyen-2'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Sean', 'last_name': 'Parker', 'permalink': 'sean-parker'}}, {'is_past': True, 'title': 'Chief Privacy Officer', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Joseph', 'last_name': 'Smarr', 'permalink': 'joseph-smarr'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'John', 'last_name': 'McCrea', 'permalink': 'john-mccrea'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ben', 'last_name': 'Golub', 'permalink': 'ben-golub'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'J. Todd', 'last_name': 'Masonis', 'permalink': 'j-todd-masonis'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Venkates', 'last_name': 'Swaminathan', 'permalink': 'venkates-swaminathan'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'GM and Sr. Director, Product', 'person': {'first_name': 'Preston', 'last_name': 'Smalley', 'permalink': 'preston-smalley'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Garret', 'last_name': 'Heaton', 'permalink': 'garret-heaton'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Peng', 'permalink': 'eric-peng'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ryan', 'last_name': 'King', 'permalink': 'ryan-king'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Cameron', 'last_name': 'T. Ring', 'permalink': 'cameron-t-ring'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Jon', 'last_name': 'Callaghan', 'permalink': 'jon-callaghan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Tawheed', 'last_name': 'Kader', 'permalink': 'tawheed-kader'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Pankaj', 'last_name': 'Bengani', 'permalink': 'pankaj-bengani'}}, {'is_past': True, 'title': 'Non-Exec Advisory board', 'person': {'first_name': 'Alan', 'last_name': 'Coad', 'permalink': 'alan-coad'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'George', 'last_name': 'Tang', 'permalink': 'george-tang'}}], 'competitions': [{'competitor': {'name': 'Xobni', 'permalink': 'xobni'}}, {'competitor': {'name': 'Socialthing', 'permalink': 'socialthing'}}, {'competitor': {'name': 'Spokeo', 'permalink': 'spokeo'}}, {'competitor': {'name': 'Soocial', 'permalink': 'soocial'}}, {'competitor': {'name': 'fruux', 'permalink': 'fruux'}}, {'competitor': {'name': 'Gist', 'permalink': 'gist'}}, {'competitor': {'name': 'WhitePages.com', 'permalink': 'whitepages-com'}}, {'competitor': {'name': 'Spoke', 'permalink': 'spoke'}}, {'competitor': {'name': 'Jigsaw', 'permalink': 'jigsaw'}}, {'competitor': {'name': 'Alternion', 'permalink': 'alternion'}}, {'competitor': {'name': 'TAPP', 'permalink': 'tapp'}}, {'competitor': {'name': 'licobo', 'permalink': 'licobo'}}, {'competitor': {'name': 'Memotoo', 'permalink': 'memotoo'}}], 'providerships': [], 'total_money_raised': '$28.3M', 'funding_rounds': [{'id': 20, 'round_code': 'a', 'source_url': 'http://www.plaxo.com/about/releases/release-02-18-03', 'source_description': 'Plaxo Press Release - 2/18/2003', 'raised_amount': 3800000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 21, 'round_code': 'b', 'source_url': 'http://www.plaxo.com/about/releases/release-07-28-03', 'source_description': 'Plaxo Press Release - 7/28/2003', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Harbinger Ventures', 'permalink': 'harbinger-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 29, 'round_code': 'c', 'source_url': 'http://sanjose.bizjournals.com/sanjose/stories/2004/05/24/daily3.html', 'source_description': 'Plaxo connects to more funding', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': {'name': 'Cisco', 'permalink': 'cisco'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Yahoo!', 'permalink': 'yahoo'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 30, 'round_code': 'd', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/05/14/confirmed-comcast-bought-plaxo-deal-closed-today/', 'source_description': 'Confirmed: Comcast Bought Plaxo, Deal Closed Today', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': 'Comcast', 'permalink': 'comcast'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '1050 Enterprise Way, 5th floor', 'address2': '', 'zip_code': '94089', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.387845, 'longitude': -122.055197}], 'milestones': [{'id': 4563, 'description': 'Long-Time Plaxo CEO Golub Leaves ', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 25, 'source_url': 'http://paidcontent.org/article/419-long-time-plaxo-ceo-golub-leaves/', 'source_text': '', 'source_description': 'Long-Time Plaxo CEO Golub Leaves ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}, {'id': 14919, 'description': 'Plaxo lines up new leadership team including promotions (Capili, Erchinger) and new hires Javarappa, and Smalley.', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 17, 'source_url': 'http://www.businesswire.com/news/home/20110517006049/en/Plaxo-Lines-Leadership-Team-Business-Strategy-Engineering', 'source_text': None, 'source_description': 'Plaxo Lines Up Leadership Team in Business Strategy, Engineering, Operations & Customer Service to Execute on World’s Most Powerful Address Book', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}, {'id': 14924, 'description': 'Plaxo returns to its address book roots and introduces the Plaxo Personal Assistant.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 16, 'source_url': 'http://www.prweb.com/releases/2011/3/prweb8199028.htm', 'source_text': None, 'source_description': 'Plaxo Returns to Its Address Book Roots, Offers the Most Intelligent Address Book for Your Connected Life', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Plaxo', 'permalink': 'plaxo'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

About Plaxo - In 60 seconds

'}, {'embed_code': '', 'description': '

Techcrunch Interview of CEO - April 2010

'}], 'screenshots': [{'available_sizes': [[[56, 150], 'assets/images/resized/0012/7053/127053v2-max-150x150.jpg'], [[94, 250], 'assets/images/resized/0012/7053/127053v2-max-250x250.jpg'], [[169, 450], 'assets/images/resized/0012/7053/127053v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 134], 'assets/images/resized/0012/7054/127054v2-max-150x150.jpg'], [[250, 223], 'assets/images/resized/0012/7054/127054v2-max-250x250.jpg'], [[450, 402], 'assets/images/resized/0012/7054/127054v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 112], 'assets/images/resized/0013/5280/135280v2-max-150x150.png'], [[250, 186], 'assets/images/resized/0013/5280/135280v2-max-250x250.png'], [[450, 336], 'assets/images/resized/0013/5280/135280v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297da4'), 'name': 'Powerset', 'permalink': 'powerset', 'crunchbase_url': 'http://www.crunchbase.com/company/powerset', 'homepage_url': 'http://powerset.com', 'blog_url': 'http://blog.powerset.com/', 'blog_feed_url': 'http://blog.powerset.com/atom.xml', 'twitter_username': 'Powerset', 'category_code': 'search', 'number_of_employees': 60, 'founded_year': 2006, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'searchengine, google, techcrunch40, natural-language', 'alias_list': '', 'email_address': 'info@powerset.com', 'phone_number': '415-848-7000', 'description': '', 'created_at': 'Mon Jun 11 19:33:13 UTC 2007', 'updated_at': 'Sat Mar 16 06:13:05 UTC 2013', 'overview': '

Powerset is a search engine focused on natural language processing. In other words, Powerset will not search based simply on keywords alone, but will try to understand the semantic meaning behind the search phrase as a whole. The company launched in May 2008 with intentions of making search more easy and intuitive.

\\n\\n

Powerset was acquired by Microsoft on 1st July 2008.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0000/3934/3934v1-max-150x150.png'], [[231, 59], 'assets/images/resized/0000/3934/3934v1-max-250x250.png'], [[231, 59], 'assets/images/resized/0000/3934/3934v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Powerset', 'permalink': 'powerset'}], 'relationships': [{'is_past': False, 'title': 'Founder / Product Architect', 'person': {'first_name': 'Lorenzo', 'last_name': 'Thione', 'permalink': 'lorenzo-thione'}}, {'is_past': False, 'title': 'Chief Science Officer', 'person': {'first_name': 'Ron', 'last_name': 'Kaplan', 'permalink': 'ron-kaplan'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Eric', 'last_name': 'Tilenius', 'permalink': 'eric-tilenius'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': False, 'title': 'General Manager & Director of Product', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': False, 'title': 'Director of Finance', 'person': {'first_name': 'Bennett', 'last_name': 'Thuener', 'permalink': 'bennett-thuener'}}, {'is_past': True, 'title': 'COO, Founder, Board', 'person': {'first_name': 'Steve', 'last_name': 'Newcomb', 'permalink': 'steve-newcomb'}}, {'is_past': True, 'title': 'Board / Founder / CEO', 'person': {'first_name': 'Barney', 'last_name': 'Pell', 'permalink': 'barney-pell'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Scientist, Ranking & Search Relevance', 'person': {'first_name': 'Jonathan', 'last_name': 'Siddharth', 'permalink': 'jonathan-siddharth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Le', 'permalink': 'alex-le'}}, {'is_past': True, 'title': 'Manager of Knowledge Resources', 'person': {'first_name': 'John', 'last_name': 'Lowe', 'permalink': 'john-lowe-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Johnson', 'permalink': 'mark-johnson-4'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'General Manager and Director of Product', 'person': {'first_name': 'Scott', 'last_name': 'Prevost', 'permalink': 'scott-prevost'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Bill', 'last_name': 'Trenchard', 'permalink': 'bill-trenchard'}}, {'is_past': True, 'title': 'Director of Operations', 'person': {'first_name': 'bill', 'last_name': 'fumerola', 'permalink': 'bill-fumerola'}}, {'is_past': True, 'title': 'Investor (acquired by Microsoft)', 'person': {'first_name': 'Mohsen', 'last_name': 'Moazami', 'permalink': 'mohsen-moazami'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Tom', 'last_name': 'Preston-Werner', 'permalink': 'tom-preston-werner'}}], 'competitions': [{'competitor': {'name': 'Hakia', 'permalink': 'hakia'}}, {'competitor': {'name': 'TextWise', 'permalink': 'textwise'}}, {'competitor': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Blekko', 'permalink': 'blekko'}}, {'competitor': {'name': 'JIxperts', 'permalink': 'jixperts'}}, {'competitor': {'name': 'Viewzi', 'permalink': 'viewzi'}}, {'competitor': {'name': 'Gloofi', 'permalink': 'gloofi'}}, {'competitor': {'name': 'Cognition Technologies', 'permalink': 'cognition-technologies'}}, {'competitor': {'name': 'Devtap', 'permalink': 'devtap'}}, {'competitor': {'name': 'CDNPAL', 'permalink': 'cdnpal'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}], 'total_money_raised': '$22.5M', 'funding_rounds': [{'id': 22, 'round_code': 'a', 'source_url': 'http://www.powerset.com/press/seriesa, http://venturebeat.com/2007/11/02/powerset-the-hyped-search-engine-company-sees-shakeup/#more-52474', 'source_description': '', 'raised_amount': 12500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Foundation Capital', 'permalink': 'foundation-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': {'name': 'Bezos Expeditions', 'permalink': 'bezos-expeditions'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 2827, 'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2008/07/01/ok-now-its-done-microsoft-to-acquire-powerset/', 'source_description': 'Ok, Now It’s Done. Microsoft To Acquire Powerset', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': []}, {'id': 13872, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Amidzad Partners', 'permalink': 'amidzad-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CommerceNet', 'permalink': 'commercenet'}, 'person': None}, {'company': {'name': 'ValleyVC', 'permalink': 'valleyvc'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.powerset.com/blog/articles/2008/07/01/microsoft-to-acquire-powerset', 'source_description': 'Microsoft to Acquire Powerset', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'Microsoft', 'permalink': 'microsoft'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '475 Brannan St', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.778613, 'longitude': -122.395289}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': ' ', 'description': '

Powerset Demo video

'}, {'embed_code': '', 'description': '

HyveUp interview with Lorenzo Thione

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Powerset_(company)', 'title': 'Wikipedia article'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dab'), 'name': 'Kyte', 'permalink': 'kyte', 'crunchbase_url': 'http://www.crunchbase.com/company/kyte', 'homepage_url': 'http://www.kyte.com', 'blog_url': 'http://kyte.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/kyte_blog', 'twitter_username': 'kyte', 'category_code': 'games_video', 'number_of_employees': 40, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'video, mobile, iphone-app, video-platform, mobile-app, media, interactive', 'alias_list': '', 'email_address': 'info@kyte.com', 'phone_number': '', 'description': 'Online & Mobile Video Platform', 'created_at': 'Thu Jun 14 18:26:11 UTC 2007', 'updated_at': 'Mon Oct 28 09:34:37 UTC 2013', 'overview': '

Kyte is the online and mobile video platform for media and entertainment. The Kyte Platform combines the real-time, interactive and community building capabilities of the social web with the analytics, control, and monetization features of professional video platforms, enabling companies to converge online and mobile audiences, build community, and monetize.

', 'image': {'available_sizes': [[[116, 70], 'assets/images/resized/0000/4300/4300v2-max-150x150.png'], [[116, 70], 'assets/images/resized/0000/4300/4300v2-max-250x250.png'], [[116, 70], 'assets/images/resized/0000/4300/4300v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Kyte', 'permalink': 'kyte'}, {'name': 'Kyte Mobile Producer', 'permalink': 'kyte-mobile-producer'}], 'relationships': [{'is_past': False, 'title': 'CTO and co-founder', 'person': {'first_name': 'Erik', 'last_name': 'Abair', 'permalink': 'erik-abaic'}}, {'is_past': True, 'title': 'CEO and co-founder', 'person': {'first_name': 'Daniel', 'last_name': 'Graf', 'permalink': 'daniel-graf'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Dan', 'last_name': 'FitzSimons', 'permalink': 'dan-fitzsimons'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Barnaby', 'last_name': 'Dorfman', 'permalink': 'barnaby-dorfman'}}, {'is_past': True, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Gannon', 'last_name': 'Hall', 'permalink': 'gannon-hall'}}, {'is_past': True, 'title': 'Managing Director Europe', 'person': {'first_name': 'Peter', 'last_name': 'Schuepbach', 'permalink': 'peter-schuepbach'}}, {'is_past': True, 'title': 'Observer', 'person': {'first_name': 'Joel', 'last_name': 'Yarmon', 'permalink': 'joel-yarmon'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Iris', 'last_name': 'Pittl', 'permalink': 'iris-pittl'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Marisol', 'last_name': 'Segal', 'permalink': 'marisol-segal'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Chad', 'last_name': 'Richard', 'permalink': 'chad-richard'}}, {'is_past': True, 'title': 'Director of User Experience', 'person': {'first_name': 'Shawn', 'last_name': 'Smith', 'permalink': 'shawn-smith-3'}}], 'competitions': [{'competitor': {'name': 'Ustream', 'permalink': 'ustream'}}, {'competitor': {'name': 'Qik', 'permalink': 'qik'}}, {'competitor': {'name': 'Flixwagon', 'permalink': 'flixwagon'}}, {'competitor': {'name': 'Brightcove', 'permalink': 'brightcove'}}, {'competitor': {'name': 'Magnify', 'permalink': 'magnify'}}, {'competitor': {'name': 'Kaltura', 'permalink': 'kaltura'}}, {'competitor': {'name': 'Ooyala', 'permalink': 'ooyala'}}, {'competitor': {'name': 'Livestream', 'permalink': 'livestream'}}, {'competitor': {'name': 'VMIX Media', 'permalink': 'vmixmedia'}}, {'competitor': {'name': 'Bambuser', 'permalink': 'bambuser'}}], 'providerships': [], 'total_money_raised': '$23.4M', 'funding_rounds': [{'id': 32, 'round_code': 'a', 'source_url': 'http://www.kyte.tv/press/release/20070423.html', 'source_description': 'kyte.tv takes self expression to the next level', 'raised_amount': 2250000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Atomico', 'permalink': 'atomico'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 480, 'round_code': 'b', 'source_url': 'http://scobleizer.com/2007/12/19/kytetv-announces-funding-new-features/', 'source_description': 'Kyte announces funding, new features', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': {'name': 'Nokia', 'permalink': 'nokia'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DoCoMo Capital', 'permalink': 'docomo-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Swisscom Ventures', 'permalink': 'swisscom-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 1697, 'round_code': 'b', 'source_url': 'http://www.kyte.com/newsroom/pg/kyte_completes_211_million_of_series_b_funding_with_investments_from_steamb', 'source_description': 'Kyte press release', 'raised_amount': 6100000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 10, 'investments': [{'company': None, 'financial_org': {'name': 'Steamboat Ventures', 'permalink': 'steamboat-ventures'}, 'person': None}, {'company': {'name': 'Teliasonera', 'permalink': 'teliasonera'}, 'financial_org': None, 'person': None}]}, {'id': 52969, 'round_code': 'seed', 'source_url': '', 'source_description': 'y combinator source', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/31/exclusive-kit-digital-acquires-kickapps-kewego-and-kyte-for-77-2-million/', 'source_description': 'KIT digital Acquires KickApps, Kewego AND Kyte For $77.2 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'KIT digital', 'permalink': 'kit-digital'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '442 Post Street', 'address2': '10th Floor', 'zip_code': '94102', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.788482, 'longitude': -122.409173}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV: 8/2008

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dae'), 'name': 'Thoof', 'permalink': 'thoof', 'crunchbase_url': 'http://www.crunchbase.com/company/thoof', 'homepage_url': 'http://thoof.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2013, 'deadpooled_month': 8, 'deadpooled_day': 4, 'deadpooled_url': '', 'tag_list': 'social-news', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Sat Jun 16 05:05:50 UTC 2007', 'updated_at': 'Wed Dec 18 13:06:44 UTC 2013', 'overview': '

Thoof is a late entry to the personalized/social news arena. As many Digg clones and alternative models are failing or have failed to take hold of a substantial user base, Thoof brings a slightly new take on getting your daily stories which it hopes will attract more than a niche audience. Thoof is an automated news recommender of sorts. It works similarly to many music recommendation engines such as Last.fm and Pandora, by displaying articles you might like based upon your past reading history. Readers submit articles in a Digg-like fashion, but don’t vote to get the articles on the front page. Founder Ian Clarke, formerly of video site Revver, claims that with video as well as news, many people may read articles but few will vote on them. Clarke hints that the passivity of news and video consumption may ultimately weed out news aggregators that cannot automatically deliver customized news. However, Thoof users are allowed to edit the news by suggesting alternative links. If link changes are to stand they must get enough votes from the rest of the community. Thoof has many web 2.0 elements including article tagging, wiki features and aforementioned recommendation engine. It isn’t an exact clone of any one social news site, but can be considered a competitor to sites like Digg, Netscape and Y Combinator company Reddit.

', 'image': {'available_sizes': [[[150, 74], 'assets/images/resized/0000/4462/4462v1-max-150x150.png'], [[195, 97], 'assets/images/resized/0000/4462/4462v1-max-250x250.png'], [[195, 97], 'assets/images/resized/0000/4462/4462v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Thoof', 'permalink': 'thoof'}], 'relationships': [{'is_past': True, 'title': 'Founder and CEO', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}], 'competitions': [{'competitor': {'name': 'Last.fm', 'permalink': 'last-fm'}}, {'competitor': {'name': 'Mixx', 'permalink': 'mixx'}}], 'providerships': [], 'total_money_raised': '$1M', 'funding_rounds': [{'id': 35, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/', 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Austin Ventures', 'permalink': 'austin-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.268735, 'longitude': -97.745209}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.duraslide.com.sg/', 'title': 'Aluminium Glass Suppliers in Singapore,Stainless Steel Product Suppliers Singapore'}, {'external_url': 'http://utopia.com.sg/', 'title': 'Cleanroom Equipments Services Singapore | Construction Materials | Cleanroom Products | Cleanroom Laundry Service'}, {'external_url': 'http://www.feigeasia.com.sg/', 'title': 'Automatic Liquid Filling machine '}, {'external_url': 'http://airtech.com.sg/', 'title': 'Cleanroom Products Services In Singapore,Laboratory Equipment Suppliers In Singapore '}, {'external_url': 'http://housemaid.com.sg/', 'title': 'Singapore Maid Agency, Housemaid Agency Singapore,best maid agency in singapore '}, {'external_url': 'http://polytech.com.sg/', 'title': 'Industrial Keypad Manufacturers Singapore'}, {'external_url': 'http://futurisk.in', 'title': 'Insurance Companies in Chennai, Consulting Insurance Agency, Insurance Broking in India, General Insurance Brokers In India'}, {'external_url': 'http://www.xsreal.com/current-projects/harmony.html', 'title': 'One way to acknowledge our desires is to opt for Compact apartments and Smart Functional Homes that come equipped with every convenience and ensure safety in a secure location.'}, {'external_url': 'http://pilgg.com/', 'title': 'The Best Online Games! Awesome Play Free Online Games, Online Play Games, Free Game Online, Free Car Racing Games, Play Cricket Games, Free Kids Online Games'}, {'external_url': 'http://www.smilepublishingindia.com/', 'title': 'Buy Story for Preschool Kids, Best Books for Preschoolers, Story Book for Preschool, Buy preschool books from smile books publishers India'}, {'external_url': 'http://adcomcom.com/', 'title': ' Commercial printing remain one of the most effective ways to market your business. '}, {'external_url': 'http://chaitanyafoundations.com/', 'title': 'Chaitanya Foundations is a contemporary residential and commercial property enterprise that is rooted in old world values of fair play, personalised service, and promises that are honoured,Apartments Builders in Chennai,Best Builder in Chennai.'}, {'external_url': 'http://www.tdpplastering.co.uk/', 'title': 'Plasterers Brighton'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_doors.html', 'title': 'Auto door systems Suppliers Singapore The most common type of doors is the single-leaf door which consists of a single rigid panel that fills the doorway and the double-leaf door that have two adjacent independent panels hinged on each side of the doorway'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_railing1.html', 'title': 'Swimming Pool Glass Railing suppliers singapore Can glass be used to withstand the loading of water? Yes. It has been tested and proven.\\xa0For families with children, the transparency allows you to spot any danger from the side of the pool and react on time'}, {'external_url': 'http://www.duraslide.com.sg/product_glass_railing2.html', 'title': 'Glass Ralling Horizontal or vertical sheets of plate glass can be used either to enclose a balcony, terrace or staircase. Profiles using balustrades will add a sense of lightness, lack of materiality and a very modern touch either to your home or business'}, {'external_url': 'http://www.duraslide.com.sg/product_stainlesssteel_bbqpit.html', 'title': 'stainless steel product suppliers | stainless steel railing manufacturers Stainless steel’s resistance to corrosion and staining, low maintenance, relatively low cost, and familiar lustre make it an ideal material for many applications '}, {'external_url': 'http://www.duraslide.com.sg/product_stainlesssteel_flagpole.html', 'title': 'Stainless Steel Flagpole Stainless steel’s resistance to corrosion and staining, low maintenance, relatively low cost, and familiar lustre make it an ideal material for many applications '}, {'external_url': 'http://adcomcom.com/services_printing.html', 'title': 'Adcom being a leading commercial printing company provides a complete range of printing services. Always focused at working closely with the esteemed clients, translating their vision into reality, ensures the best possible results.'}, {'external_url': 'http://adcomcom.com/services_printing_banner.html', 'title': 'Looking for a big banner to grab attention at an event or complement an advertising campaign? Adcom offers the latest, cutting-edge banner printing technology with virtually unlimited selection of sizes'}, {'external_url': 'http://adcomcom.com/services_printing_poster.html', 'title': 'Posters are a popular way of promoting any event like arts and music festivals, charity function, concerts, rallies, including sales and advertising.\\xa0'}, {'external_url': 'http://adcomcom.com/services_printing_brouchure.html', 'title': 'Brochures advertise information about your products, pricing, services, events, etc and are usually eye-catching in design so that your company profiles and objectives are directly stated.\\xa0'}, {'external_url': 'http://adcomcom.com/services_printing_catalog.html', 'title': 'We offer to our clients high quality books printing and binding, books printing services and books binding services at the most competitive rates.\\xa0'}, {'external_url': 'http://airtech.com.sg/Stretcher_with_Physical_Containment.html', 'title': 'Airtech is one of the world leaders in the design and supply of flexible containment and integrated systems for all aspects of the containment of potent materials for the Pharmaceutical, Chemical, Medical and Food industries. '}, {'external_url': 'http://airtech.com.sg/Infections_Disease_Treatment_Room.html', 'title': 'Infectious diseases can spread from one person to another by aerosol droplets. The spread of Tuberculosis (TB), for example, occurs when an otherwise healthy individual inhales a sufficient number of tubercle bacilli that are expelled by a patient infecte'}, {'external_url': 'http://airtech.com.sg/Isolated_Treatment_Room.html', 'title': 'Isolation room equipment Services Singapore,Isolated Treatment Room Service Singapore,cleanroom products,cleanroom products in singapore,customised cleanroom equipment,hospital equipments,hospital solutions,Biosafety Level,Isolation room equipment,Operati'}, {'external_url': 'http://airtech.com.sg/Operating_Room.html', 'title': 'In the area of Operating Room, Bio-clean room and bio-hazard room construction, Airtech has developed system that offer even greater precision and efficiency that it’s earlier system and is now fully organized to meet the requirement of its customers. '}, {'external_url': 'http://utopia.com.sg/airtech_equipments.html', 'title': 'A\\xa0Cleanroom\\xa0Is An Environment, Typically Used In\\xa0Manufacturing\\xa0Or Scientific Research That Has A Low Level Of Environmental\\xa0Pollutants\\xa0Such As Dust, Airborne\\xa0Microbes,\\xa0Aerosol\\xa0Particles And Chemical Vapors. Airtech Equipments'}, {'external_url': 'http://utopia.com.sg/cleanroom_construction_material.html', 'title': 'Airtech Equipment Pte Ltd, A Joint Venture Between Utopia-Aire And Airtech Japan Ltd, Was Incorporated To Manufacture Cleanroom Equipment Of High Quality And That Meet International Standards Of Cleanroom Technology.Cleanroom Equipments'}, {'external_url': 'http://utopia.com.sg/biofit_clean_room_chairs.html', 'title': 'The Chair Is The Integral Part Of Work Place Ergonomics. Choose A Chair For What It Can Do To Make Your Employee’S Job Healthier And More Comfortable. Cleanroom Chairs & Furnitures'}, {'external_url': 'http://utopia.com.sg/hospital_equipment.html', 'title': 'The Special Purpose Of An Isolation Room Is To Protect Health Care Workers, Other Patients And Visitors In A Hospital From Exposure To An Airborne Infectious Agent In The Event That An Infectious Patient Is Staying In The Room. Hospital Ahu & Hvac Equipme'}, {'external_url': 'http://www.housemaid.com.sg/agencies_list.html', 'title': 'Online searching of a housemaid a pleasurable experience for the employer and an absolute smooth sailing for the registered Housemaid agency.,Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal '}, {'external_url': 'http://www.housemaid.com.sg/search_maid.html', 'title': 'Online searching of a housemaid a pleasurable experience for the employer and an absolute smooth sailing for the registered Housemaid agency.,Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal '}, {'external_url': 'http://www.housemaid.com.sg/services.html', 'title': 'Singapore Maid Agency,Housemaid Agency Singapore,House Maid Singapore,Housemaid Recruitment Agencies,Maid Portal Singapore,Maid Agency In Singapore,Maids Portal,Hire Maids In Singapore,Maid ,Maid Agencies Hub,Maid Agencies In Singapore,Maid Agency ,Maid S'}, {'external_url': 'http://www.mogepay.com/', 'title': 'Now no need to carry Casy, Shopping made easy with Mogepay. At Mogepay we offer a variety of products to suit your everyday needs - Online Bill Payment Service, Online Ticket Booking, Mobile Recharge, Credit Card Payment'}, {'external_url': 'http://chaitanyafoundations.com/', 'title': 'Chaitanya Foundations is a contemporary residential and commercial property enterprise that is rooted in old world values of fair play, personalised service, and promises that are honoured.'}, {'external_url': 'http://www.mogepay.com/travel.html', 'title': 'Book your instant cheapest air ticket through us. We arrange any kinds of Domestic & International Air Ticket Booking Services for you without any extra charges. '}, {'external_url': 'http://www.mogepay.com/index.html', 'title': 'At Mogepay we offer a variety of products to suit your everyday needs'}, {'external_url': 'http://www.mogepay.com/finance.html', 'title': 'Mogepay mobile financial services (MFS) products provide you with the extension you require to provide a robust financial services offering to your subscriber and merchant customers.'}, {'external_url': 'http://www.mogepay.com/billpayment.html', 'title': 'Utility Bills & Insurance Premium Payment Now, you have the luxury of paying your bills at your convenience through Internet, or Mogepay Store. Pay your Electricity, Mobile, Telephone, Insurance, Credit Card and other bills under one roof.'}, {'external_url': 'http://www.mogepay.com/about.html', 'title': 'Mogepay Technologies is a leading provider of mobile transaction infrastructure software, providing mobile operators the most efficient and cost-effective way'}, {'external_url': 'http://www.mogepay.com/mobile_recharge.html', 'title': \"Mogepay recharge services provide you with a flexible platform for your subscribers and merchants to recharge their account. Our products plug into your existing infrastructure leveraging the investment you've made in charging systems and value added serv\"}, {'external_url': 'http://www.mogepay.com/recharge.html', 'title': \"Mogepay recharge services provide you with a flexible platform for your subscribers and merchants to recharge their account. Our products plug into your existing infrastructure leveraging the investment you've made in charging systems and value added serv\"}, {'external_url': 'http://www.mogepay.com/shoponline.html', 'title': \"Mogepayonline shopping store is an online shop that provides a wide range of Grocery, Electronics, Personal, Beauty & Health products catering to different customers' needs. \"}, {'external_url': 'http://chaitanyafoundations.com/floor-plan-excellence.html', 'title': 'Floor Plan Excellence, Chaitanya Foundations designs are studies in living elegance and work flow dynamics. A large living area is separated by sliding glass doors, creating warm cosy spaces.'}, {'external_url': 'http://chaitanyafoundations.com/apartment-builders.html', 'title': 'Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai,Duplex apartments in Chenn'}, {'external_url': 'http://chaitanyafoundations.com/flat-promoters.html', 'title': 'Flat Promoters in Chennai,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai '}, {'external_url': 'http://chaitanyafoundations.com/green-design.html', 'title': 'Green Design,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders,Chennai property developers,construction companies in Chennai,Developers in Chennai,Duplex apartm'}, {'external_url': 'http://chaitanyafoundations.com/location-selection.html', 'title': 'location,Apartments Builders in Chennai,Best Builder in Chennai,Builders and Developers in Chennai,Building promoters,Chennai apartments,Chennai Builders'}, {'external_url': 'http://chaitanyafoundations.com/services.html', 'title': 'The comprehensive range of services offered by Chaitanya Foundations recognise the varied needs of landowners and customers. Experience a menu-driven host of services that best meet your needs.'}, {'external_url': 'http://chaitanyafoundations.com/uplifting-elevation.html', 'title': 'A Chaitanya project elevation immediately distinguishes itself. Stark white and earth tone exteriors. Rough stone cladding for visual relief. '}, {'external_url': 'http://www.talhunt.co.in/', 'title': 'Software Testing & Training Courses Chennai, J2ME, NS2, Embedded, VLSI, MATLAB, IEEE, Final Year Projects Chennai, JDBC, IT, Hibernate Training Institute Chennai.'}, {'external_url': 'http://futurisk.in/', 'title': 'Futurisk have the scale and expertise to Insurance Companies In India, Consulting Insurance Agency, Insurance Agency Consulting, Insurance Broking In India, General Insurance Brokers In India'}, {'external_url': 'http://futurisk.in/index.php/product-services/health-insurance', 'title': 'Employee Benifits Health Insurance, Group Health and Accident Insurance Cover, Group Health Insurance Plans, Group Insurance'}, {'external_url': 'http://futurisk.in/index.php/product-services/liability-insurance', 'title': 'Property Insurance Broking Company Chennai'}, {'external_url': 'http://futurisk.in/index.php/product-services/property-insurance', 'title': 'Liability Insurance Broking Company Chennai'}, {'external_url': 'http://futurisk.in/index.php/product-services/employee-benefits', 'title': 'Health Insurance Broking Company Chennai '}, {'external_url': 'http://www.futurisk.in/index.php/agri-insurance', 'title': 'agri insurance'}, {'external_url': 'http://futurisk.in/index.php/product-services/motor-insurance', 'title': 'insurance auto sales'}, {'external_url': 'http://www.talhunt.co.in/training/certification-programming-training-chennai.php', 'title': 'Best Certification Programming Training Institutes Chennai | Inplant Training | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/certified-ethical-hacking-certification-training-chennai.php', 'title': 'Best Certified Ethical Hacking Certification V8 Training Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/cloud-computing-training-chennai.php', 'title': 'Best Cloud Computing Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/database/oracle-training-chennai.php', 'title': 'Best Oracle Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/database/sql-training-chennai.php', 'title': 'Best Sql Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/final-year-project-training-chennai.php', 'title': 'Best Final Year Project Training Institutes in Chennai | Tnagar | Thiruvanmiyur | IEEE Final year projects centres in Chennai | IEEE Project centre in Chennai'}, {'external_url': 'http://www.talhunt.co.in/training/itil-v3-training-chennai.php', 'title': 'Best Itil V3 Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/ibm-aix-training-chennai.php', 'title': 'Best Ibm Aix Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.talhunt.co.in/training/linux-training-chennai.php', 'title': 'Best Linux Training Institutes in Chennai | Tnagar | Thiruvanmiyur'}, {'external_url': 'http://www.velsuniv.ac.in/', 'title': 'Deemed University In India'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297daf'), 'name': 'Jingle Networks', 'permalink': 'jingle-networks', 'crunchbase_url': 'http://www.crunchbase.com/company/jingle-networks', 'homepage_url': 'http://jinglenetworks.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Marchex', 'category_code': 'mobile', 'number_of_employees': 35, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'directoryassistance, advertising, mobile', 'alias_list': '', 'email_address': 'pr@jinglenetworks.com', 'phone_number': '212-481-4114 x237', 'description': 'Voice and Mobile Search', 'created_at': 'Sat Jun 16 05:53:38 UTC 2007', 'updated_at': 'Mon Jun 03 05:26:22 UTC 2013', 'overview': '

Jingle Networks is the leading provider of advertising and technology solutions for voice and mobile business search. By tapping into the thriving business search market, Jingle Networks provides a powerful new media channel to connect businesses with consumers ready to transact.

\\n\\n

Jingle Networks offers solutions that cater to carriers, network operators, adverting agencies, brand marketers and small businesses.

\\n\\n

Thousands of national brand marketers and local businesses use Jingle Network solutions to leverage brief in-call audio or text advertisements to acquire new customers via phone or during mobile app or online searches.

\\n\\n

Network operators and telecom carriers have also discovered the power of Jingle Networks technology and advertising solutions. Many select Jingle Networks as their search provider of choice.

\\n\\n

Whether you want to build a brand, create awareness or maximize business search, Jingle Networks has a solution that will guarantee success.

\\n\\n

Jingle Networks invented the free directory assistance service called 1-800-FREE411.

\\n\\n

Consumers dial 1-800-FREE411 (1-800-373-3411) from any phone in the United States to use the toll-free service, which allows callers to obtain any residential, business, or government phone number for no charge. Sponsors cover the service cost by playing short advertising messages, about 12 seconds long, customized based on the number the customer is looking up.

\\n\\n

The company was founded by veteran advertising and technology executives.

', 'image': {'available_sizes': [[[150, 24], 'assets/images/resized/0000/4474/4474v6-max-150x150.png'], [[230, 38], 'assets/images/resized/0000/4474/4474v6-max-250x250.png'], [[230, 38], 'assets/images/resized/0000/4474/4474v6-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MyFree411', 'permalink': 'myfree411'}], 'relationships': [{'is_past': False, 'title': 'Founder and CTO', 'person': {'first_name': 'Scott', 'last_name': 'Kliger', 'permalink': 'scott-kliger'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Louis', 'last_name': 'Toth', 'permalink': 'louis-toth'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Scott', 'last_name': 'Bruce', 'permalink': 'scott-bruce'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'David', 'last_name': 'Berkman', 'permalink': 'david-berkman'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Joshua', 'last_name': 'Kopelman', 'permalink': 'joshua-kopelman'}}, {'is_past': True, 'title': 'CFO and Treasurer', 'person': {'first_name': 'Joanne', 'last_name': 'Bryce', 'permalink': 'joanne-bryce'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Brian', 'last_name': 'Roberts', 'permalink': 'brian-roberts'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Greg', 'last_name': 'White', 'permalink': 'greg-white'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Chip', 'last_name': 'Hazard', 'permalink': 'chip-hazard'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Annita', 'last_name': 'Tanini', 'permalink': 'annita-tanini'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Ken', 'last_name': 'Bronfin', 'permalink': 'ken-bronfin'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'LaunchSquad', 'permalink': 'launchsquad'}}, {'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}], 'total_money_raised': '$88.7M', 'funding_rounds': [{'id': 36, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}]}, {'id': 37, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rose Tech Ventures', 'permalink': 'rose-tech-ventures'}, 'person': None}]}, {'id': 38, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2006/10/23/jingle-networks-has-now-raised-over-60-million/', 'source_description': '', 'raised_amount': 26000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}]}, {'id': 1279, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2005/10/03/1-800-free-411-free-directory-calls/', 'source_description': '', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lead Dog Ventures', 'permalink': 'lead-dog-ventures'}, 'person': None}]}, {'id': 1402, 'round_code': 'c', 'source_url': 'http://www.pehub.com/article/articledetail.php?articlepostid=9702', 'source_description': '', 'raised_amount': 13000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Flybridge Capital Partners', 'permalink': 'flybridge-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}]}, {'id': 5025, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2009/02/04/jingle-networks-keys-up-75m-for-directory-assistance/', 'source_description': ' Jingle Networks keys up $7.5M for directory assistance', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Hearst Ventures', 'permalink': 'hearst-interactive-media'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IDG Ventures', 'permalink': 'idg-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Liberty Associated Partners', 'permalink': 'liberty-associated-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comcast Ventures', 'permalink': 'comcast-interactive-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}]}, {'id': 10683, 'round_code': 'unattributed', 'source_url': 'http://sec.gov/Archives/edgar/data/1337954/000133795409000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 6751133, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 28, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 62500000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.masshightech.com/stories/2011/04/11/daily11-Jingle-Networks-bought-for-up-to-625M.html', 'source_description': 'Jingle Networks bought for up to $62.5M', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Marchex', 'permalink': 'marchex'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '475 Park Ave South', 'address2': '10th Floor', 'zip_code': '10016', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 37.480999, 'longitude': -122.173887}], 'milestones': [{'id': 6110, 'description': \"Jingle Networks named in Lead411's Hottest Boston Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.lead411.com/boston-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Boston Companies\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jingle Networks', 'permalink': 'jingle-networks'}}, {'id': 14078, 'description': 'Marchex Inc. of Seattle today said that it has acquired directory assistance provider Jingle Networks Inc., based in Billerica and New York.', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 11, 'source_url': 'http://www.masshightech.com/stories/2011/04/11/daily11-Jingle-Networks-bought-for-up-to-625M.html', 'source_text': None, 'source_description': 'Jingle Networks bought for up to $62.5M', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jingle Networks', 'permalink': 'jingle-networks'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.talkcrunch.com/2006/10/23/interview-with-jingle-ceo-and-venture-capitalist/', 'title': 'Interview With CEO And Investor - 10/06'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db5'), 'name': 'LifeLock', 'permalink': 'lifelock', 'crunchbase_url': 'http://www.crunchbase.com/company/lifelock', 'homepage_url': 'http://www.lifelock.com', 'blog_url': 'http://blog.lifelock.com', 'blog_feed_url': '', 'twitter_username': 'LifeLock', 'category_code': 'security', 'number_of_employees': 644, 'founded_year': 2005, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'member.feedback@lifelock.com', 'phone_number': '1-800-543-3562', 'description': 'Identity theft protection', 'created_at': 'Mon Jun 18 11:31:31 UTC 2007', 'updated_at': 'Thu Dec 12 12:38:35 UTC 2013', 'overview': '

LifeLock Inc., founded in 2005, is an American identity theft protection company based in Tempe, Arizona. The company charges $10 a month for the LifeLock identity theft protection intended to detect fraudulent applications for some forms of credit and non-credit related services. It also provides a $1 million guarantee in the event of identity theft to pay for fees associated with collecting on stolen funds, and the guarantee is backed by identity theft insurance to cover other losses. (Source: LifeLock)

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0000/4513/4513v1-max-150x150.png'], [[200, 66], 'assets/images/resized/0000/4513/4513v1-max-250x250.png'], [[200, 66], 'assets/images/resized/0000/4513/4513v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'LifeLock', 'permalink': 'lifelock'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Todd', 'last_name': 'Davis', 'permalink': 'todd-davis'}}, {'is_past': False, 'title': 'EVP, Chief Legal Officer and Secretary', 'person': {'first_name': 'Clarissa', 'last_name': 'Cerda', 'permalink': 'clarissa-cerda'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Marvin', 'last_name': 'Davis', 'permalink': 'marvin-davis'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Chris', 'last_name': 'Power', 'permalink': 'chris-power'}}, {'is_past': False, 'title': 'Vice President, Product', 'person': {'first_name': 'Juan Pablo', 'last_name': 'Bedoya', 'permalink': 'juan-pablo-bedoya'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Cowan', 'permalink': 'david-cowan'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Ted', 'last_name': 'Schlein', 'permalink': 'ted-schlein'}}, {'is_past': False, 'title': 'Chief Product Officer', 'person': {'first_name': 'Steve', 'last_name': 'Seoane', 'permalink': 'steve-seoane'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Governor', 'last_name': 'Tom Ridge', 'permalink': 'governor-tom-ridge'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Roy', 'last_name': 'Guthrie', 'permalink': 'roy-guthrie'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Chini', 'last_name': 'Krishnan', 'permalink': 'chini-krishnan'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Hilary', 'last_name': 'Schneider', 'permalink': 'hilary-schneider'}}, {'is_past': False, 'title': 'Chief Executive Officer, ID Analytics', 'person': {'first_name': 'Larry', 'last_name': 'McIntosh', 'permalink': 'larry-mcintosh'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Rocky', 'last_name': 'Pimentel', 'permalink': 'rocky-pimentel'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': '\"Jack\" H. Wyant', 'permalink': 'john-jack-h-wyant'}}, {'is_past': True, 'title': 'Founder, Chief Marketing Officer', 'person': {'first_name': 'Robert', 'last_name': 'Maynard', 'permalink': 'robert-maynard-2'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Prakash', 'last_name': 'Ramamurthy', 'permalink': 'prakash-ramamurthy'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Luke', 'last_name': 'Helms', 'permalink': 'luke-helms'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Jim', 'last_name': 'Greener', 'permalink': 'jim-greener'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Greener', 'permalink': 'jim-greener'}}], 'competitions': [{'competitor': {'name': 'TrustedID', 'permalink': 'trustedid'}}], 'providerships': [], 'total_money_raised': '$178M', 'funding_rounds': [{'id': 39, 'round_code': 'b', 'source_url': 'http://www.topix.net/vc/2007/04/lifelock-announces-6-85-million-series-b-funding', 'source_description': '', 'raised_amount': 6850000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}]}, {'id': 40, 'round_code': 'a', 'source_url': '', 'source_description': 'Lifelock', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 915, 'round_code': 'c', 'source_url': 'http://www.alleyinsider.com/2008/01/credit-protector-lifelock-raises-25-million-220-million-valuation.html', 'source_description': '', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}]}, {'id': 7894, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2009/08/05/symantec-pumps-20m-into-identity-theft-protection-company-lifelock/', 'source_description': 'Symantec helps pump $40M into identity theft protection company Lifelock', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 5, 'investments': [{'company': {'name': 'Symantec', 'permalink': 'symantec'}, 'financial_org': None, 'person': None}]}, {'id': 28734, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/03/15/identity-theft-protection-company-lifelock-raises-100m-from-kleiner-symantec-acquires-id-analytics/', 'source_description': 'Identity Theft Protection Company LifeLock Raises $100M From Kleiner, Symantec; Acquires ID Analytics', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}, {'company': {'name': 'Symantec', 'permalink': 'symantec'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Industry Ventures', 'permalink': 'industry-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Institutional Venture Partners', 'permalink': 'institutional-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Keating Capital', 'permalink': 'keating-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Thayer Street Partners', 'permalink': 'thayer-street-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Cross Creek Capital', 'permalink': 'cross-creek-capital'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/phoenix/news/2012/03/14/lifelock-gets-100-million-investment.html', 'source_description': 'LifeLock Strengthens Market Position Through Acquisition of ID Analytics', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': 'ID Analytics', 'permalink': 'id-analytics'}}, {'price_amount': 42600000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/12/lifelock-acquires-mobile-wallet-platform-lemon-for-42-6-million/', 'source_description': 'LifeLock Acquires Mobile Wallet Platform Lemon For $42.6 Million, Launches LifeLock Wallet ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 12, 'company': {'name': 'Lemon', 'permalink': 'lemon'}}], 'offices': [{'description': '', 'address1': '60 E. Rio Salado Pkwy, Suite 400', 'address2': '', 'zip_code': '85281', 'city': 'Tempe', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.429859, 'longitude': -111.938739}], 'milestones': [{'id': 8415, 'description': 'LifeLock recognized as one of the Hottest Southwest Companies by Lead411 ', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': 31, 'source_url': 'http://www.lead411.com/southwest-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST SOUTHWEST COMPANIES\" LIST', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'LifeLock', 'permalink': 'lifelock'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 10, 'pub_day': 4, 'stock_symbol': 'NYSE:LOCK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.bloomberg.com/news/2012-04-16/lifelock-ceo-in-talks-with-goldman-sachs-jpmorgan-about-ipo.html', 'title': 'LifeLock CEO in Talks With Goldman Sachs, JPMorgan About IPO'}, {'external_url': 'http://www.wnba.com/mercury/news/lifelock_release_090601.html', 'title': 'Mercury, LifeLock Break New Ground with Partnership'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db6'), 'name': 'Wesabe', 'permalink': 'wesabe', 'crunchbase_url': 'http://www.crunchbase.com/company/wesabe', 'homepage_url': 'http://wesabe.com', 'blog_url': 'http://blog.wesabe.com/', 'blog_feed_url': 'http://blog.wesabe.com/feed/', 'twitter_username': 'jasonlong', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 6, 'deadpooled_day': 30, 'deadpooled_url': 'http://techcrunch.com/2010/06/30/wesabe-shuts-down/', 'tag_list': 'moneymanagement, finance, money', 'alias_list': None, 'email_address': 'contact@wesabe.com', 'phone_number': None, 'description': None, 'created_at': 'Wed Jun 20 10:59:01 UTC 2007', 'updated_at': 'Fri Apr 15 01:40:13 UTC 2011', 'overview': '

JF11V8 You’ve hit the ball out the park! Inecdrible!

', 'image': {'available_sizes': [[[129, 133], 'assets/images/resized/0000/0061/61v1-max-150x150.jpg'], [[129, 133], 'assets/images/resized/0000/0061/61v1-max-250x250.jpg'], [[129, 133], 'assets/images/resized/0000/0061/61v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Wesabe', 'permalink': 'wesabe'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Marc', 'last_name': 'Hedlund', 'permalink': 'marc-hedlund'}}, {'is_past': True, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jason', 'last_name': 'Knight', 'permalink': 'jason-knight'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Tony', 'last_name': 'Stubblebine', 'permalink': 'tony-stubblebine'}}], 'competitions': [{'competitor': {'name': 'Revolution Money', 'permalink': 'revolutionmoney'}}, {'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'BillMonk', 'permalink': 'billmonk'}}, {'competitor': {'name': 'PayPal', 'permalink': 'paypal'}}, {'competitor': {'name': 'Buxfer', 'permalink': 'buxfer'}}, {'competitor': {'name': 'expensr', 'permalink': 'expensr'}}, {'competitor': {'name': 'Cake Financial', 'permalink': 'cakefinancial'}}, {'competitor': {'name': 'Thrive', 'permalink': 'thrive'}}, {'competitor': {'name': 'Jwaala', 'permalink': 'jwaala'}}, {'competitor': {'name': 'PearBudget', 'permalink': 'pearbudget'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}], 'providerships': [], 'total_money_raised': '$4.7M', 'funding_rounds': [{'id': 43, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/tag/wesabe', 'source_description': None, 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': \"O'Reilly AlphaTech Ventures\", 'permalink': 'o-reilly-alphatech-ventures'}, 'person': None}]}, {'id': 44, 'round_code': 'a', 'source_url': 'http://blog.wesabe.com/2007/06/20/wesabe-raises-4m-in-series-a-funding/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': \"O'Reilly AlphaTech Ventures\", 'permalink': 'o-reilly-alphatech-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '400 Montgomery St, Suite 900', 'address2': None, 'zip_code': '94104', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793148, 'longitude': -122.402567}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Interview with Marc Hedlund, Co-founder and CEO of Wesabe

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297db8'), 'name': 'SmugMug', 'permalink': 'smugmug', 'crunchbase_url': 'http://www.crunchbase.com/company/smugmug', 'homepage_url': 'http://www.smugmug.com', 'blog_url': 'http://blogs.smugmug.com/', 'blog_feed_url': '', 'twitter_username': 'smugmug', 'category_code': 'photo_video', 'number_of_employees': 62, 'founded_year': 2002, 'founded_month': 11, 'founded_day': 3, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'photo, photosharing, antiweb20, videosharing, h264, video', 'alias_list': '', 'email_address': 'help@smugmug.com', 'phone_number': '', 'description': 'Awesome Photo & Video Sharing', 'created_at': 'Fri Dec 07 16:02:18 UTC 2007', 'updated_at': 'Fri Oct 04 17:20:52 UTC 2013', 'overview': '

SmugMug is not your typical Web 2.0 photo sharing site. It’s not free, there are no ads, the company is self funded, and has been profitable for over three years. SmugMug is geared more towards professional photographers with features such as watermarking, selling downloads and prints, and creating galleries of photos. Users can even use their own domain names for these galleries. SmugMug still has the more typical Web 2.0 photo sharing features like RSS feeds, tags, and a public API. More recently, SmugMug has added functionality to automatically scale the size of photos to the viewing size of the browser. Smug also supports HD quality video uploading.

\\n\\n

Competitors include: Flickr, Photobucket, Webshots, Fotki, BubbleShare, Zenfolio, Zoomr, and Facebook.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/2542/2542v4-max-150x150.jpg'], [[250, 87], 'assets/images/resized/0000/2542/2542v4-max-250x250.jpg'], [[450, 158], 'assets/images/resized/0000/2542/2542v4-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'SmugMug', 'permalink': 'smugmug'}], 'relationships': [{'is_past': False, 'title': 'COO', 'person': {'first_name': 'Andy', 'last_name': 'Williams', 'permalink': 'andy-williams'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Chris', 'last_name': 'MacAskill', 'permalink': 'chris-macaskill'}}], 'competitions': [{'competitor': {'name': 'Webshots', 'permalink': 'webshots'}}, {'competitor': {'name': 'Flickr', 'permalink': 'flickr'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Zooomr', 'permalink': 'zooomr'}}, {'competitor': {'name': 'Fotomoto', 'permalink': 'fotomoto'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'Photosforyou', 'permalink': 'photosforyou'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'RLM PR', 'permalink': 'rlm-pr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '67 E. Evelyn Ave, Suite 200', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.390056, 'longitude': -122.067692}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Video interview by Robert Scoble

'}, {'embed_code': '', 'description': '

SmugMug’s pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.latimes.com/technology/la-fi-smugmug24dec24,0,7652804.story', 'title': 'A focused family business'}, {'external_url': 'http://www.businessweek.com/magazine/content/08_03/b4067202218875.htm', 'title': 'An Idea The Really Clicked'}, {'external_url': 'http://www.usatoday.com/tech/products/2008-02-19-smugmug_N.htm', 'title': 'Son rules the roost at SmugMug'}, {'external_url': 'http://dehe.com/2010/02/16/82nd-academy-awards-oscars-list-of-nominees/', 'title': '82nd Academy Awards – Oscars – List of Nominees'}, {'external_url': 'http://www.sitebuilderreport.com/reviews/smug-mug/our-review', 'title': 'SmugMug Review'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dba'), 'name': 'Google', 'permalink': 'google', 'crunchbase_url': 'http://www.crunchbase.com/company/google', 'homepage_url': 'http://google.com', 'blog_url': 'http://googleblog.blogspot.com', 'blog_feed_url': 'http://googleblog.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': 'google', 'category_code': 'search', 'number_of_employees': 28000, 'founded_year': 1998, 'founded_month': 9, 'founded_day': 7, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'search, gmail, blogger, find, information, youtube, google', 'alias_list': 'Google', 'email_address': 'google@google.com', 'phone_number': '650.253.0000', 'description': '', 'created_at': 'Sat Jun 30 22:18:12 UTC 2007', 'updated_at': 'Mon Jan 06 04:52:54 UTC 2014', 'overview': '

Google provides search and advertising services, which together aim to organize and monetize the world’s information. In addition to its dominant search engine, it offers a plethora of online tools and platforms including: Gmail, Maps, YouTube, and Google+, the company’s extension into the social space. Most of its Web-based products are free, funded by Google’s highly integrated online advertising platforms AdWords and AdSense. Google promotes the idea that advertising should be highly targeted and relevant to users thus providing them with a rich source of information.

\\n\\n

Google has also made strong moves into the web-based apps space with acquisitions of Jotspot (documents), 2Web Technologies (spreadsheets) and Zenter (presentations). The company has also made a splash with the acquisitions of YouTube, DoubleClick and Feedburner.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0002/9578/29578v31-max-150x150.png'], [[250, 85], 'assets/images/resized/0002/9578/29578v31-max-250x250.png'], [[450, 154], 'assets/images/resized/0002/9578/29578v31-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Gmail', 'permalink': 'gmail'}, {'name': 'Blogger', 'permalink': 'blogger'}, {'name': 'Google Search', 'permalink': 'google-search'}, {'name': 'Google Calendar', 'permalink': 'google-calendar'}, {'name': 'iGoogle', 'permalink': 'igoogle'}, {'name': 'Google Reader', 'permalink': 'google-reader'}, {'name': 'Google Alerts', 'permalink': 'google-alerts'}, {'name': 'Google Blog Search', 'permalink': 'google-blog-search'}, {'name': 'Google Books', 'permalink': 'google-books'}, {'name': 'Google Checkout', 'permalink': 'google-checkout'}, {'name': 'Google Desktop', 'permalink': 'google-desktop'}, {'name': 'Google Earth', 'permalink': 'google-earth'}, {'name': 'Google Finance', 'permalink': 'google-finance'}, {'name': 'Google Images', 'permalink': 'google-images'}, {'name': 'Google Maps', 'permalink': 'google-maps'}, {'name': 'Google News', 'permalink': 'google-news'}, {'name': 'Google Notebook', 'permalink': 'google-notebook'}, {'name': 'Google Patent Search', 'permalink': 'google-patent-search'}, {'name': 'Google Product Search', 'permalink': 'google-product-search'}, {'name': 'Google Scholar', 'permalink': 'google-scholar'}, {'name': 'Google Special Searches', 'permalink': 'google-special-searches'}, {'name': 'Google Toolbar', 'permalink': 'google-toolbar'}, {'name': 'Google Video', 'permalink': 'google-video'}, {'name': 'Google Code', 'permalink': 'google-code'}, {'name': 'Google Custom Search', 'permalink': 'google-custom-search'}, {'name': 'Google Labs', 'permalink': 'google-labs'}, {'name': 'Google Docs', 'permalink': 'google-docs'}, {'name': 'Google Groups', 'permalink': 'google-groups'}, {'name': 'Orkut', 'permalink': 'orkut'}, {'name': 'Picasa', 'permalink': 'picasa'}, {'name': 'Google SketchUp', 'permalink': 'google-sketchup'}, {'name': 'Google Talk', 'permalink': 'google-talk'}, {'name': 'Google Translate', 'permalink': 'google-translate'}, {'name': 'Google Social Graph API', 'permalink': 'google-social-graph-api'}, {'name': 'Google Sites', 'permalink': 'google-sites'}, {'name': 'Google Gears', 'permalink': 'google-gears'}, {'name': 'Android', 'permalink': 'android'}, {'name': 'Google Contacts Data API', 'permalink': 'google-contacts-data-api'}, {'name': 'Google App Engine', 'permalink': 'google-app-engine'}, {'name': 'Google Web Toolkit', 'permalink': 'google-web-toolkit'}, {'name': 'Google Mini Search Appliance', 'permalink': 'google-mini-search-appliance'}, {'name': 'Google Search Appliance', 'permalink': 'google-search-appliance'}, {'name': 'Google Health', 'permalink': 'google-health'}, {'name': 'Google Site Search', 'permalink': 'google-site-search'}, {'name': 'Lively', 'permalink': 'lively'}, {'name': 'Google Mobile Application', 'permalink': 'google-mobile'}, {'name': 'Knol', 'permalink': 'knol'}, {'name': 'Google Analytics', 'permalink': 'google-analytics'}, {'name': 'Google Ad Manager', 'permalink': 'google-ad-manager'}, {'name': 'Google Chrome', 'permalink': 'chrome'}, {'name': 'Google Moderator', 'permalink': 'google-moderator'}, {'name': 'Google AdSense', 'permalink': 'google-adsense'}, {'name': 'Google Friend Connect', 'permalink': 'google-friend-connect'}, {'name': 'Android G1', 'permalink': 'android-g1'}, {'name': 'Google Latitude', 'permalink': 'google-latitude'}, {'name': 'Google Wave', 'permalink': 'google-wave'}, {'name': 'Google Apps', 'permalink': 'google-apps'}, {'name': 'Google Chrome OS', 'permalink': 'google-chrome-os'}, {'name': 'Pubsubhubbub', 'permalink': 'pubsubhubbub'}, {'name': 'Google Voice', 'permalink': 'google-voice'}, {'name': 'Sidewiki', 'permalink': 'sidewiki'}, {'name': 'Google AdWords', 'permalink': 'google-adwords'}, {'name': 'Nexus One', 'permalink': 'nexus-one'}, {'name': 'Google Local', 'permalink': 'google-local'}, {'name': 'Google Buzz', 'permalink': 'google-buzz'}, {'name': 'Google Profiles', 'permalink': 'google-profiles'}, {'name': 'Google TV', 'permalink': 'google-tv'}, {'name': 'Google Places', 'permalink': 'google-places'}, {'name': 'Google eBooks', 'permalink': 'google-ebooks'}, {'name': 'Nexus S', 'permalink': 'nexus-s'}, {'name': 'Google Chromebook', 'permalink': 'google-chromebook'}, {'name': 'Google+', 'permalink': 'google-plus'}, {'name': 'Google Chromium', 'permalink': 'google-chromium'}, {'name': 'Google Chromebox', 'permalink': 'google-chromebox'}, {'name': 'Androidify', 'permalink': 'androidify'}, {'name': 'Google 3D Warehouse', 'permalink': 'google-3d-warehouse'}, {'name': 'Google Agency Edge', 'permalink': 'google-agency-edge'}, {'name': 'Google Answers', 'permalink': 'google-answers'}, {'name': 'Google Wallet', 'permalink': 'google-wallet'}, {'name': 'Google Developers', 'permalink': 'google-developers'}, {'name': 'Google Glass', 'permalink': 'google-glass'}, {'name': 'Google Play', 'permalink': 'google-play'}, {'name': 'Google Now', 'permalink': 'google-now'}, {'name': 'Nexus 7', 'permalink': 'nexus'}, {'name': 'Nexus Q', 'permalink': 'nexus-q'}, {'name': 'Google Keep', 'permalink': 'google-keep'}, {'name': 'Google Partners', 'permalink': 'google-partners'}, {'name': 'Chromecast', 'permalink': 'chromecast'}, {'name': 'Google Helpouts', 'permalink': 'google-helpouts'}, {'name': 'Google Music', 'permalink': 'google-music'}, {'name': 'Google Cultural Institute', 'permalink': 'google-cultural-institute'}], 'relationships': [{'is_past': False, 'title': 'CEO of Google Comparison Inc', 'person': {'first_name': 'Dan', 'last_name': 'Shapiro', 'permalink': 'dan-shapiro'}}, {'is_past': False, 'title': 'CEO & Co-Founder', 'person': {'first_name': 'Larry', 'last_name': 'Page', 'permalink': 'larry-page'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Eric', 'last_name': 'Schmidt', 'permalink': 'eric-schmidt'}}, {'is_past': False, 'title': 'Chief Network Engineering', 'person': {'first_name': 'Walter', 'last_name': 'Delgado', 'permalink': 'walter-delgado'}}, {'is_past': False, 'title': 'Vice President & Chief Internet Evangelist', 'person': {'first_name': 'Vinton', 'last_name': 'Cerf', 'permalink': 'vinton-cerf'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Patrick', 'last_name': 'Pichette', 'permalink': 'patrick-pichette'}}, {'is_past': False, 'title': 'Chief Economist', 'person': {'first_name': 'Hal', 'last_name': 'Varian', 'permalink': 'hal-varian'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Benjamin', 'last_name': 'Fried', 'permalink': 'benjamin-fried'}}, {'is_past': False, 'title': 'Senior Vice President - Corp Development, Chief Legal Officer', 'person': {'first_name': 'David', 'last_name': 'Drummond', 'permalink': 'david-drummond'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Nikesh', 'last_name': 'Arora', 'permalink': 'nikesh-arora'}}, {'is_past': False, 'title': 'SVP, People Operations', 'person': {'first_name': 'Laszlo', 'last_name': 'Bock', 'permalink': 'laszlo-bock'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Venkat', 'last_name': 'Panchapakesan', 'permalink': 'venkat-panchapakesan'}}, {'is_past': False, 'title': 'Vice President, Enterprise Operations', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': False, 'title': 'Google Fellow and VP', 'person': {'first_name': 'Sebastian', 'last_name': 'Thrun', 'permalink': 'sebastian-thrun'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': False, 'title': 'VP, Product, YouTube / Video', 'person': {'first_name': 'Shishir', 'last_name': 'Mehrotra', 'permalink': 'shishir-mehrotra'}}, {'is_past': False, 'title': 'Vice President, Product Management', 'person': {'first_name': 'John', 'last_name': 'Hanke', 'permalink': 'john-hanke'}}, {'is_past': False, 'title': 'Vice President, Display Advertising Products', 'person': {'first_name': 'Neal', 'last_name': 'Mohan', 'permalink': 'neal-mohan'}}, {'is_past': False, 'title': 'VP, Engineering', 'person': {'first_name': 'Brian', 'last_name': 'McClendon', 'permalink': 'brian-mcclendon'}}, {'is_past': False, 'title': 'Senior VP, Chrome', 'person': {'first_name': 'Sundar', 'last_name': 'Pichai', 'permalink': 'sundar-pichai'}}, {'is_past': False, 'title': 'Senior VP, Mobile', 'person': {'first_name': 'Andy', 'last_name': 'Rubin', 'permalink': 'andy-rubin'}}, {'is_past': False, 'title': 'Senior Vice President, Advertising & Commerce', 'person': {'first_name': 'Susan', 'last_name': 'Wojcicki', 'permalink': 'susan-wojcicki'}}, {'is_past': False, 'title': 'VP Product, Google Apps', 'person': {'first_name': 'Bradley', 'last_name': 'Horowitz', 'permalink': 'bradley-horowitz'}}, {'is_past': False, 'title': 'VP Product Management', 'person': {'first_name': 'Sundar', 'last_name': 'Pichal', 'permalink': 'sundar-pichal'}}, {'is_past': False, 'title': 'SVP Engineering', 'person': {'first_name': 'Jeff', 'last_name': 'Huberq', 'permalink': 'jeff-huberq'}}, {'is_past': False, 'title': 'SVP Engineering', 'person': {'first_name': 'W.', 'last_name': 'M. Coughran', 'permalink': 'w-m-coughran'}}, {'is_past': False, 'title': 'Senior Vice President, Social', 'person': {'first_name': 'Vic', 'last_name': 'Gundotra', 'permalink': 'vic-gundotra'}}, {'is_past': False, 'title': 'Vice President Corporate Development', 'person': {'first_name': 'David', 'last_name': 'Lawee', 'permalink': 'david-lawee'}}, {'is_past': False, 'title': 'Senior VP - Engineering and Research', 'person': {'first_name': 'Alan', 'last_name': 'Eustace', 'permalink': 'alan-eustace'}}, {'is_past': False, 'title': 'Senior VP - Global Sales & Business Dev', 'person': {'first_name': 'Omid', 'last_name': 'Kordestani', 'permalink': 'omid-kordestani'}}, {'is_past': False, 'title': 'Co-Founder, President of Technology', 'person': {'first_name': 'Sergey', 'last_name': 'Brin', 'permalink': 'sergey-brin'}}, {'is_past': False, 'title': 'Technical Sales', 'person': {'first_name': 'Mohsin', 'last_name': 'Imam', 'permalink': 'mohsin-imam'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'John', 'last_name': 'L. Hennessy', 'permalink': 'john-l-hennessy'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Paul', 'last_name': 'S. Otellini', 'permalink': 'paul-s-otellini'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Brad', 'last_name': 'Fitzpatrick', 'permalink': 'brad-fitzpatrick'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Brett', 'last_name': 'Slatkin', 'permalink': 'brett-slatkin'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Gabe', 'last_name': 'Smedresman', 'permalink': 'gabe-smedresman'}}, {'is_past': False, 'title': 'Gmail Project Manager', 'person': {'first_name': 'Keith', 'last_name': 'Coleman', 'permalink': 'keith-coleman'}}, {'is_past': False, 'title': 'Senior Policy Director', 'person': {'first_name': 'Richard', 'last_name': 'Whitt', 'permalink': 'richard-whitt'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Shuman', 'last_name': 'Ghosemajumder', 'permalink': 'shuman-ghosemajumder'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Taraneh', 'last_name': 'Razavi', 'permalink': 'taraneh-razavi'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Adam', 'last_name': 'Lasnik', 'permalink': 'adam-lasnik'}}, {'is_past': False, 'title': 'Head Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Fitzpatrick', 'permalink': 'brian-fitzpatrick'}}, {'is_past': False, 'title': 'PM, Lively', 'person': {'first_name': 'Mel', 'last_name': 'Guymon', 'permalink': 'mel-guymon'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Casey', 'last_name': 'Ho', 'permalink': 'casey-ho'}}, {'is_past': False, 'title': 'Director Global Communications', 'person': {'first_name': 'Brian', 'last_name': \"O'Shaughnessy\", 'permalink': 'brian-oshaughnessy'}}, {'is_past': False, 'title': 'Vice President, Global Communications & Public Affairs', 'person': {'first_name': 'Rachel', 'last_name': 'Whetstone', 'permalink': 'rachel-whetstone'}}, {'is_past': False, 'title': 'Director, Google Apps Channels', 'person': {'first_name': 'Stephen', 'last_name': 'Cho', 'permalink': 'stephen-cho'}}, {'is_past': False, 'title': 'President, The Americas Operation and Senior Vice President, Advertising Sales and Operations', 'person': {'first_name': 'Dennis', 'last_name': 'Woodside', 'permalink': 'dennis-woodside'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andy', 'last_name': 'Hertzfeld', 'permalink': 'andy-hertzfeld'}}, {'is_past': False, 'title': 'VP Engineering, Core Search', 'person': {'first_name': 'Udi', 'last_name': 'Manber', 'permalink': 'udi-manber'}}, {'is_past': False, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Jens', 'last_name': 'Rasmussen', 'permalink': 'jens-rasmussen'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': False, 'title': 'Director/Head of Sales Strategy', 'person': {'first_name': 'Patrick', 'last_name': 'Keane', 'permalink': 'patrick-keane'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Sami', 'last_name': 'Shalabi', 'permalink': 'sami-shalabi'}}, {'is_past': False, 'title': 'Product Management', 'person': {'first_name': 'Amit', 'last_name': 'Jain', 'permalink': 'amit-jain'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Mat', 'last_name': 'Balez', 'permalink': 'mat-balez'}}, {'is_past': False, 'title': 'Director of Product Management', 'person': {'first_name': 'Bernardo', 'last_name': 'Hernandez', 'permalink': 'bernardo-hernandez'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Don', 'last_name': 'Dodge', 'permalink': 'don-dodge'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Joseph', 'last_name': 'Smarr', 'permalink': 'joseph-smarr'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Aaron', 'last_name': 'Boodman', 'permalink': 'aaron-boodman'}}, {'is_past': False, 'title': 'Head of Google TV Distribution Partnerships', 'person': {'first_name': 'Mickey', 'last_name': 'Kim', 'permalink': 'mickey-kim'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Philip', 'last_name': 'Brittan', 'permalink': 'philip-brittan'}}, {'is_past': False, 'title': 'Open Web Advocate', 'person': {'first_name': 'Chris', 'last_name': 'Messina', 'permalink': 'chris-messina'}}, {'is_past': False, 'title': 'President, Global Sales Operations and Business Development', 'person': {'first_name': 'Nikesh', 'last_name': 'Arora', 'permalink': 'nikesh-arora'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Minnie', 'last_name': 'Ingersoll', 'permalink': 'minnie-ingersoll'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ayush', 'last_name': 'Agarwal', 'permalink': 'ayush-agarwal'}}, {'is_past': False, 'title': 'Staff Tech Lead Manager', 'person': {'first_name': 'Guy', 'last_name': 'Tavor', 'permalink': 'guy-tavor'}}, {'is_past': False, 'title': 'MTS', 'person': {'first_name': 'Michel', 'last_name': 'Weksler', 'permalink': 'michel-weksler'}}, {'is_past': False, 'title': 'Sales Strategy', 'person': {'first_name': 'Yael', 'last_name': 'Davidowitz-Neu', 'permalink': 'yael-davidowitz-neu'}}, {'is_past': False, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'Max', 'last_name': 'Luebbe', 'permalink': 'max-luebbe'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'JJ', 'last_name': 'Geewax', 'permalink': 'jj-geewax'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Gadi', 'last_name': 'Royz', 'permalink': 'gadi-royz'}}, {'is_past': False, 'title': 'M&A Lead', 'person': {'first_name': 'Neeraj', 'last_name': 'Arora', 'permalink': 'neeraj-arora'}}, {'is_past': False, 'title': 'Business Development, Google Shopping', 'person': {'first_name': 'Tim', 'last_name': 'Schulz', 'permalink': 'tim-schulz'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Ömer Özgün', 'last_name': 'IŞIKMAN', 'permalink': 'mer-zgn-ikman'}}, {'is_past': False, 'title': 'User Experience Researcher', 'person': {'first_name': 'Andrew', 'last_name': 'Warr', 'permalink': 'andrew-warr'}}, {'is_past': False, 'title': 'Product Manager, AdWords', 'person': {'first_name': 'Nick', 'last_name': 'Fox', 'permalink': 'nick-fox'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Rohan', 'last_name': 'Shah', 'permalink': 'rohan-shah'}}, {'is_past': False, 'title': 'Director, Corporate Development', 'person': {'first_name': 'David', 'last_name': 'Sobota', 'permalink': 'david-sobota'}}, {'is_past': False, 'title': 'Avalex Enterprises', 'person': {'first_name': 'Eeryn', 'last_name': 'Falk-Lubicich', 'permalink': 'eeryn-falk-lubicich'}}, {'is_past': False, 'title': 'Business Development Manager', 'person': {'first_name': 'Tushar', 'last_name': 'Trivedi', 'permalink': 'tushar-trivedi'}}, {'is_past': False, 'title': 'Product', 'person': {'first_name': 'Kurt', 'last_name': 'Wilms', 'permalink': 'kurt-wilms'}}, {'is_past': False, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Ezequiel', 'last_name': 'Vidra', 'permalink': 'ezequiel-vidra'}}, {'is_past': False, 'title': 'Engineering Director, Site Lead', 'person': {'first_name': 'Steven', 'last_name': 'Woods', 'permalink': 'steven-woods-3'}}, {'is_past': False, 'title': 'Head Up News Business', 'person': {'first_name': 'Richard', 'last_name': 'Gingras', 'permalink': 'richard-gingras'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sanaz', 'last_name': 'Ahari', 'permalink': 'sanaz-ahari'}}, {'is_past': False, 'title': 'User Experience Designer', 'person': {'first_name': 'Jonah', 'last_name': 'Jones', 'permalink': 'jonah-jones'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Chris', 'last_name': 'Lambert', 'permalink': 'chris-lambert'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Junius', 'last_name': 'Gunaratne', 'permalink': 'junius-gunaratne'}}, {'is_past': False, 'title': 'Head of Mobile Product Management, Docs', 'person': {'first_name': 'Anil', 'last_name': 'Sabharwal', 'permalink': 'anil-sabharwal'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Nicolas', 'last_name': 'Darveau-Garneau', 'permalink': 'nicolas-darveau-garneau'}}, {'is_past': False, 'title': 'Mobile, Media and Platforms', 'person': {'first_name': 'Jamie', 'last_name': 'Ferguson-Woods', 'permalink': 'jamie-ferguson-woods'}}, {'is_past': False, 'title': 'Media & Entertainment, AdWords Large Customer Sales', 'person': {'first_name': 'Erica', 'last_name': 'Nachamkin', 'permalink': 'erica-nachamkin'}}, {'is_past': False, 'title': 'Mentor, Summer of Code', 'person': {'first_name': 'AJ', 'last_name': 'Jaghori', 'permalink': 'aj-jaghori'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ginsu', 'last_name': 'Yoon', 'permalink': 'ginsu-yoon'}}, {'is_past': False, 'title': 'Business Development Manager', 'person': {'first_name': 'Eric', 'last_name': 'Mauskopf', 'permalink': 'eric-mauskopf'}}, {'is_past': False, 'title': 'Lead Product Manager, EMEA Display Ads', 'person': {'first_name': 'Rahul', 'last_name': 'Bafna', 'permalink': 'rahul-bafna'}}, {'is_past': False, 'title': 'Senior Director, Software Engineering', 'person': {'first_name': 'Peeyush', 'last_name': 'Ranjan', 'permalink': 'peeyush-ranjan'}}, {'is_past': False, 'title': 'Cloud Security and Test Manager', 'person': {'first_name': 'Anthony', 'last_name': 'Voellm', 'permalink': 'anthony-voellm'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Rose', 'permalink': 'kevin-rose'}}, {'is_past': False, 'title': 'AppEngine Consultant', 'person': {'first_name': 'Nicolas', 'last_name': 'Gunther', 'permalink': 'nicols-gunther'}}, {'is_past': False, 'title': 'Android@Home', 'person': {'first_name': 'Chris', 'last_name': 'McKillop', 'permalink': 'chris-mckillop'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Snehal', 'last_name': 'Patel', 'permalink': 'snehal-patel'}}, {'is_past': False, 'title': 'Engagement Programs Manager', 'person': {'first_name': 'Scott', 'last_name': 'Savage', 'permalink': 'scott-savage'}}, {'is_past': False, 'title': 'User Experience Designer', 'person': {'first_name': 'Chanpory', 'last_name': 'Rith', 'permalink': 'chanpory-rith'}}, {'is_past': False, 'title': 'Web Developer', 'person': {'first_name': 'Jeremy', 'last_name': 'Williams', 'permalink': 'jeremy-williams'}}, {'is_past': False, 'title': 'Business Product Manager, Google Compute Engine', 'person': {'first_name': 'Martin', 'last_name': 'Buhr', 'permalink': 'martin-buhr'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Shiva', 'last_name': 'Rajaraman', 'permalink': 'shiva-rajaraman'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Lane', 'permalink': 'rick-lane'}}, {'is_past': False, 'title': 'Engineering tech lead and manager', 'person': {'first_name': 'Sacha', 'last_name': 'Arnoud', 'permalink': 'sacha-arnoud'}}, {'is_past': False, 'title': 'Sr Designer, YouTube', 'person': {'first_name': 'Jason', 'last_name': 'Carlin', 'permalink': 'jason-carlin'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yumio', 'last_name': 'Saneyoshi', 'permalink': 'yumio-saneyoshi'}}, {'is_past': False, 'title': 'Technical Program Manager', 'person': {'first_name': 'Victor', 'last_name': 'Cheng', 'permalink': 'victor-cheng-2'}}, {'is_past': False, 'title': 'Head of EMEA Search & Google+ Partnerships', 'person': {'first_name': 'Maxim', 'last_name': 'Edelman', 'permalink': 'maxim-edelman'}}, {'is_past': False, 'title': 'Industry Analyst Travel', 'person': {'first_name': 'Andrea Roberto', 'last_name': 'Bifulco', 'permalink': 'andrea-roberto-bifulco'}}, {'is_past': False, 'title': 'Director, Google Maps', 'person': {'first_name': 'Daniel', 'last_name': 'Graf', 'permalink': 'daniel-graf'}}, {'is_past': False, 'title': 'Head of Business Development, Google Wallet and Payments', 'person': {'first_name': 'Jonathan', 'last_name': 'Weiner', 'permalink': 'jonathan-weiner'}}, {'is_past': False, 'title': 'Head of Channel Partnerships, N. America', 'person': {'first_name': 'Tae E.', 'last_name': 'Kim', 'permalink': 'tae-e-kim'}}, {'is_past': False, 'title': 'Partner Solutions', 'person': {'first_name': 'Yoav', 'last_name': 'Ben-Ari', 'permalink': 'yoav-ben-ari'}}, {'is_past': False, 'title': 'Head, Consumer Marketing', 'person': {'first_name': 'Guneet', 'last_name': 'Singh', 'permalink': 'guneet-singh'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Bigler', 'permalink': 'jason-bigler'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Sunil', 'last_name': 'James', 'permalink': 'sunil-james'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Hollingsworth', 'permalink': 'tim-hollingsworth'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Anish', 'last_name': 'Acharya', 'permalink': 'anish-acharya'}}, {'is_past': False, 'title': 'Head of Technology Partnerships', 'person': {'first_name': 'Reena', 'last_name': 'Nadkarni', 'permalink': 'reena-nadkarni'}}, {'is_past': False, 'title': 'Strategic Partner Development EMEA', 'person': {'first_name': 'Razia', 'last_name': 'Ahamed', 'permalink': 'razia-ahamed'}}, {'is_past': False, 'title': 'Consultant-Advisor', 'person': {'first_name': 'Nick', 'last_name': 'Ashton-Hart', 'permalink': 'nick-ashton-hart'}}, {'is_past': False, 'title': 'NCD On-net, Manager', 'person': {'first_name': 'Gary', 'last_name': 'Baldus', 'permalink': 'gary-baldus'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Bell', 'permalink': 'david-bell-4'}}, {'is_past': False, 'title': 'PM', 'person': {'first_name': 'Matthew', 'last_name': 'Kovinsky', 'permalink': 'matthew-kovinsky'}}, {'is_past': False, 'title': 'UI/UX Design Intern', 'person': {'first_name': 'Dillon', 'last_name': 'Grove', 'permalink': 'dillon-grove'}}, {'is_past': False, 'title': 'Head, Global Mobile Sales & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Spero', 'permalink': 'jason-spero'}}, {'is_past': False, 'title': 'Director, APAC Partnerships', 'person': {'first_name': 'Jeff', 'last_name': 'Merkel', 'permalink': 'jeff-merkel'}}, {'is_past': False, 'title': 'Senior Advisor', 'person': {'first_name': 'Al', 'last_name': 'Gore', 'permalink': 'al-gore'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Fritz', 'last_name': 'Schneider', 'permalink': 'fritz-schneider'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Winton', 'last_name': 'Davies', 'permalink': 'winton-davies'}}, {'is_past': False, 'title': 'Research Scientist', 'person': {'first_name': 'David', 'last_name': 'Reiley', 'permalink': 'david-reiley'}}, {'is_past': False, 'title': 'UX', 'person': {'first_name': 'Micah', 'last_name': 'Laaker', 'permalink': 'micah-laaker'}}, {'is_past': False, 'title': 'Head of Consumer Acquisition & Engagement, Google Commerce', 'person': {'first_name': 'Dan', 'last_name': 'Visnick', 'permalink': 'dan-visnick'}}, {'is_past': False, 'title': 'Head of Commerce Operations,, Head of Consumer Apps User Operations.', 'person': {'first_name': 'Susan', 'last_name': 'Kim', 'permalink': 'susan-kim'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Feinberg', 'permalink': 'jonathan-feinberg'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Yazdani', 'permalink': 'bobby-yazdani'}}, {'is_past': False, 'title': 'Various', 'person': {'first_name': 'Noah', 'last_name': 'J. Doyle', 'permalink': 'noah-j-doyle-2'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Dmitry', 'last_name': 'Shapiro', 'permalink': 'dmitry-shapiro'}}, {'is_past': False, 'title': 'Supply Chain', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': False, 'title': 'SWE', 'person': {'first_name': 'Daniel', 'last_name': 'Ehrenberg', 'permalink': 'daniel-ehrenberg'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Philipp', 'last_name': 'Gutheim', 'permalink': 'philipp-gutheim'}}, {'is_past': False, 'title': 'Interaction Design Director, Google Creative Lab', 'person': {'first_name': 'Matt', 'last_name': 'Jones', 'permalink': 'matt-jones'}}, {'is_past': False, 'title': 'global Product Managemen', 'person': {'first_name': 'Alok', 'last_name': 'Goel', 'permalink': 'alok-goel'}}, {'is_past': False, 'title': 'User Experience Director', 'person': {'first_name': 'Cordell', 'last_name': 'Ratzlaff', 'permalink': 'cordell-ratzlaff'}}, {'is_past': False, 'title': 'NAM Sales Director', 'person': {'first_name': 'Mark', 'last_name': 'Coleman', 'permalink': 'mark-coleman'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Torrence', 'last_name': 'Boone', 'permalink': 'torrence-boone'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Kurt', 'last_name': 'Kluever', 'permalink': 'kurt-kluever'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Imad', 'last_name': 'Jureidini', 'permalink': 'imad-jureidini'}}, {'is_past': False, 'title': 'Manager Information Security', 'person': {'first_name': 'Heather', 'last_name': 'Adkins', 'permalink': 'heather-adkins'}}, {'is_past': False, 'title': 'Recruiting Specialist', 'person': {'first_name': 'Salima', 'last_name': 'Ladha', 'permalink': 'salima-ladha'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Rich', 'last_name': 'Burdon', 'permalink': 'rich-burdon'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Elliot', 'last_name': 'Lee', 'permalink': 'elliot-lee'}}, {'is_past': False, 'title': 'Manager', 'person': {'first_name': 'Anastasia', 'last_name': 'Leng', 'permalink': 'anastasia-leng'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Nathalie', 'last_name': 'Criou', 'permalink': 'nathalie-criou'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mykhaylo', 'last_name': 'Kostandov', 'permalink': 'mykhaylo-kostandov'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Jeffrey', 'last_name': 'Morgan', 'permalink': 'jeffrey-morgan'}}, {'is_past': False, 'title': 'Developer Programs Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Dorsey', 'permalink': 'brian-dorsey'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Margaret', 'last_name': 'H. Lawrence', 'permalink': 'margaret-h-lawrence'}}, {'is_past': False, 'title': 'Co-Leader Alternative Access Group', 'person': {'first_name': 'Larry', 'last_name': 'Alder', 'permalink': 'larry-alder'}}, {'is_past': False, 'title': 'Head of Product Management', 'person': {'first_name': 'Jürgen', 'last_name': 'Galler', 'permalink': 'jrgen-galler'}}, {'is_past': False, 'title': 'Head of Google for Entrepreneurs Europe', 'person': {'first_name': 'Ezequiel', 'last_name': 'Vidra', 'permalink': 'ezequiel-vidra'}}, {'is_past': False, 'title': 'Finance Director, Northern & Central Europe Sales', 'person': {'first_name': 'Raif', 'last_name': 'Jacobs', 'permalink': 'raif-jacobs'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Brian', 'last_name': 'Kennish', 'permalink': 'brian-kennish'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Stuart', 'last_name': 'Reavley', 'permalink': 'stuart-reavley'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Blaise Agüera y', 'last_name': 'Arcas', 'permalink': 'blaise-agera-y-arcas'}}, {'is_past': False, 'title': 'Senior VP - Business Operations', 'person': {'first_name': 'Shona', 'last_name': 'Brown', 'permalink': 'shona-brown'}}, {'is_past': False, 'title': 'Vice President, New Business Development', 'person': {'first_name': 'Megan', 'last_name': 'Smith', 'permalink': 'megan-smith'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Ann', 'last_name': 'Mather', 'permalink': 'ann-mather'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Shirley', 'last_name': 'M. Tilghman', 'permalink': 'shirley-m-tilghman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Guido', 'last_name': 'van Rossum', 'permalink': 'guido-van-rossum'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Nathan', 'last_name': 'Naze', 'permalink': 'nathan-naze'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Patrick', 'last_name': 'Chanezon', 'permalink': 'patrick-chanezon'}}, {'is_past': False, 'title': 'Gmail Anti-Spam Team Lead', 'person': {'first_name': 'Brad', 'last_name': 'Taylor', 'permalink': 'brad-taylor'}}, {'is_past': False, 'title': 'Principal Research Scientist', 'person': {'first_name': 'Krishna', 'last_name': 'Bharat', 'permalink': 'krishna-bharat'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Cutts', 'permalink': 'matt-cutts'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Avinash', 'last_name': 'Kaushik', 'permalink': 'avinash-kaushik'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Luis', 'last_name': 'Sigal', 'permalink': 'luis-sigal'}}, {'is_past': False, 'title': 'Director Product Management Enterprise', 'person': {'first_name': 'Matthew', 'last_name': 'Glotzbach', 'permalink': 'matthew-glotzbach'}}, {'is_past': False, 'title': 'Strategist', 'person': {'first_name': 'Heni', 'last_name': 'Hazbay', 'permalink': 'heni-hazbay'}}, {'is_past': False, 'title': 'Director Of Engineering', 'person': {'first_name': 'Aditya', 'last_name': 'Palande', 'permalink': 'aditya-palande'}}, {'is_past': False, 'title': 'SVP Operations, Google Fellow', 'person': {'first_name': 'Urs', 'last_name': 'Holzle', 'permalink': 'urs-holzl'}}, {'is_past': False, 'title': 'Senior Product Manager, Google Apps', 'person': {'first_name': 'Rishi', 'last_name': 'Chandra', 'permalink': 'rishi-chandra'}}, {'is_past': False, 'title': 'Technology Leader of Panoramio', 'person': {'first_name': 'Joaquín', 'last_name': 'Cuenca Abela', 'permalink': 'jaoquin-cuenca-abela'}}, {'is_past': False, 'title': 'Google Country Consultant (Malaysia)', 'person': {'first_name': 'Hanson', 'last_name': 'Toh', 'permalink': 'hanson-toh'}}, {'is_past': False, 'title': 'Director Engineering, Google Labs', 'person': {'first_name': 'Radhika', 'last_name': 'Malpani', 'permalink': 'radhika-malpani'}}, {'is_past': False, 'title': 'Associate Product Manager', 'person': {'first_name': 'Alex', 'last_name': 'Komoroske', 'permalink': 'alex-komoroske'}}, {'is_past': False, 'title': 'Engineering Director Gmail', 'person': {'first_name': 'Sam', 'last_name': 'Schillace', 'permalink': 'sam-schillace'}}, {'is_past': False, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Greg', 'last_name': 'Badros', 'permalink': 'greg-badros'}}, {'is_past': False, 'title': 'Product Manager, iGoogle', 'person': {'first_name': 'Rose', 'last_name': 'Yao', 'permalink': 'rose-yao'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Fox', 'permalink': 'michael-fox-2'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Leung', 'permalink': 'patrick-leung'}}, {'is_past': False, 'title': 'Geospatial Technologist', 'person': {'first_name': 'Ed', 'last_name': 'Parsons', 'permalink': 'ed-parsons'}}, {'is_past': False, 'title': 'Fellow, Search Team', 'person': {'first_name': 'Amit', 'last_name': 'Singhal', 'permalink': 'amit-singhal'}}, {'is_past': False, 'title': 'Google Books Engineering Director', 'person': {'first_name': 'Dan', 'last_name': 'Clancy', 'permalink': 'dan-clancy'}}, {'is_past': False, 'title': 'Director of Corporate Communication', 'person': {'first_name': 'Jill', 'last_name': 'Hazelbaker', 'permalink': 'jill-hazelbaker'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Juan', 'last_name': 'Walker', 'permalink': 'juan-walker'}}, {'is_past': False, 'title': 'Developer Advocate, Android Mobile', 'person': {'first_name': 'Tim', 'last_name': 'Bray', 'permalink': 'tim-bray'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Walter', 'last_name': 'Korman', 'permalink': 'walter-korman'}}, {'is_past': False, 'title': 'Project Manager', 'person': {'first_name': 'Peter', 'last_name': 'Chane', 'permalink': 'peter-chane-2'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Brad', 'last_name': 'Adams', 'permalink': 'brad-adams'}}, {'is_past': False, 'title': 'Project Manager', 'person': {'first_name': 'Nicolas', 'last_name': 'Escudero Heiberg', 'permalink': 'nicolas-escudero-heiberg'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Emerson', 'permalink': 'jon-emerson'}}, {'is_past': False, 'title': 'Director, User Operations', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': False, 'title': 'Staff Software Engineer and Product Designer, Google[x]', 'person': {'first_name': 'Mike', 'last_name': 'LeBeau', 'permalink': 'mike-lebeau'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Steve', 'last_name': 'Olechowski', 'permalink': 'steve-olechowski'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Miron', 'last_name': 'Cuperman', 'permalink': 'miron-cuperman'}}, {'is_past': False, 'title': 'Product Manager, Google Offers', 'person': {'first_name': 'Marcus', 'last_name': 'Foster', 'permalink': 'marcus-foster'}}, {'is_past': False, 'title': 'Account Coordinator', 'person': {'first_name': 'Cem', 'last_name': 'Kansu', 'permalink': 'cem-kansu'}}, {'is_past': False, 'title': 'Associate Product Marketing Manager', 'person': {'first_name': 'Debbie', 'last_name': 'Leight', 'permalink': 'debbie-leight'}}, {'is_past': False, 'title': 'Leadership Recruiter', 'person': {'first_name': 'Sean', 'last_name': 'Splaine', 'permalink': 'sean-splaine'}}, {'is_past': False, 'title': 'Head, Content & Business Operations, YouTube', 'person': {'first_name': 'Robert', 'last_name': 'Kyncl', 'permalink': 'robert-kyncl'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ben', 'last_name': 'Eidelson', 'permalink': 'ben-eidelson'}}, {'is_past': False, 'title': 'Marketing Manager', 'person': {'first_name': 'Wael', 'last_name': 'Ghonim', 'permalink': 'wael-ghonim'}}, {'is_past': False, 'title': 'Director of Consumer Marketing, YouTube', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Phil', 'last_name': 'Mui', 'permalink': 'phil-mui'}}, {'is_past': False, 'title': 'User Experience & Visual Designer', 'person': {'first_name': 'Mary J.', 'last_name': 'Kim Diaz', 'permalink': 'mary-j-kim-diaz'}}, {'is_past': False, 'title': 'Head of Engineering, Middle East/North Africa', 'person': {'first_name': 'Ahmad', 'last_name': 'Hamzawi', 'permalink': 'ahmad-hamzawi'}}, {'is_past': False, 'title': 'Recruiting Manager', 'person': {'first_name': 'Greg', 'last_name': 'Garrison', 'permalink': 'greg-garrison'}}, {'is_past': False, 'title': 'Developer Advocate', 'person': {'first_name': 'Iein', 'last_name': 'Valdez', 'permalink': 'iein-valdez'}}, {'is_past': False, 'title': 'Program Manager', 'person': {'first_name': 'Melanie', 'last_name': 'Curtiss', 'permalink': 'melanie-curtiss'}}, {'is_past': False, 'title': 'Head of Android Partnerships, Asia Pacific', 'person': {'first_name': 'Christine', 'last_name': 'Moon', 'permalink': 'christine-moon'}}, {'is_past': False, 'title': 'Student Contract Developer', 'person': {'first_name': 'Mayank', 'last_name': 'Gupta', 'permalink': 'mayank-gupta'}}, {'is_past': False, 'title': 'Program Manager, GDL', 'person': {'first_name': 'Louis', 'last_name': 'Gray', 'permalink': 'louis-gray'}}, {'is_past': False, 'title': 'Account Manager', 'person': {'first_name': 'Eric', 'last_name': 'Kami', 'permalink': 'eric-kami'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Ryan', 'last_name': 'Snelson', 'permalink': 'ryan-snelson'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ryan', 'last_name': 'Snelson', 'permalink': 'ryan-snelson'}}, {'is_past': False, 'title': 'Search Quality Associate', 'person': {'first_name': 'Daniel', 'last_name': 'Seeff', 'permalink': 'daniel-seeff'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jared', 'last_name': 'Oberhaus', 'permalink': 'jared-oberhaus'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jared', 'last_name': 'Cohen', 'permalink': 'jared-cohen'}}, {'is_past': False, 'title': 'Web Developer', 'person': {'first_name': 'Thomas', 'last_name': 'Turnbull', 'permalink': 'thomas-turnbull'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Pep', 'last_name': 'Gomez', 'permalink': 'pep-gomez'}}, {'is_past': False, 'title': 'Group Product Manager', 'person': {'first_name': 'Ken', 'last_name': 'Norton', 'permalink': 'ken-norton'}}, {'is_past': False, 'title': 'Mobile Product Support Specialist, Google Apps', 'person': {'first_name': 'Luke', 'last_name': 'Bornheimer', 'permalink': 'luke-bornheimer'}}, {'is_past': False, 'title': 'Head of Search & Discovery, Google Play', 'person': {'first_name': 'Ankit', 'last_name': 'Jain', 'permalink': 'ankit-jain'}}, {'is_past': False, 'title': 'Business Operations', 'person': {'first_name': 'Paul', 'last_name': 'Davison', 'permalink': 'paul-davison'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Josh', 'last_name': 'Lane', 'permalink': 'joshua-lane'}}, {'is_past': False, 'title': 'Tech Lead and Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Gibbs', 'permalink': 'kevin-gibbs'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Christopher', 'last_name': 'Pedregal', 'permalink': 'christopher-pedregal'}}, {'is_past': False, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Horia', 'last_name': 'Ciurdar', 'permalink': 'horia-ciurdar'}}, {'is_past': False, 'title': 'YouTube Global Creator Development & Management Lead', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': False, 'title': 'Lead Recruiter', 'person': {'first_name': 'Jonathan', 'last_name': 'Barker', 'permalink': 'jonathan-barker'}}, {'is_past': False, 'title': 'Content Partnerships Director, YouTube', 'person': {'first_name': 'Malik', 'last_name': 'Ducard', 'permalink': 'malik-ducard'}}, {'is_past': False, 'title': 'Managing Director, Israel R&D Center', 'person': {'first_name': 'Yossi', 'last_name': 'Matias', 'permalink': 'yossi-matias'}}, {'is_past': False, 'title': 'User Interface Designer', 'person': {'first_name': 'Clement', 'last_name': 'Ng', 'permalink': 'clement-ng'}}, {'is_past': False, 'title': 'Head of Mobile Platform Sales', 'person': {'first_name': 'Marc', 'last_name': 'Theermann', 'permalink': 'marc-theermann'}}, {'is_past': False, 'title': 'Software Engineer/SRE', 'person': {'first_name': 'Serene', 'last_name': 'Han', 'permalink': 'shufeng-han'}}, {'is_past': False, 'title': 'Marketing Director, Google+', 'person': {'first_name': 'Marvin', 'last_name': 'Chow', 'permalink': 'marvin-chow'}}, {'is_past': False, 'title': 'Director, Google Giving', 'person': {'first_name': 'Jacquelline', 'last_name': 'Fuller', 'permalink': 'jacquelline-fuller'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Nafis', 'last_name': 'Zebarjadi', 'permalink': 'nafis-zebarjadi'}}, {'is_past': False, 'title': 'Strategic Partner Development Manager', 'person': {'first_name': 'Vinay', 'last_name': 'Bhargava', 'permalink': 'vinay-bhargava'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Phalgun', 'last_name': 'Raju', 'permalink': 'phalgun-raju'}}, {'is_past': False, 'title': 'Google Cultural Institute', 'person': {'first_name': 'Steve', 'last_name': 'Crossan', 'permalink': 'steve-crossan'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Beaumont', 'permalink': 'scott-beaumont'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Tzachi', 'last_name': 'Ben Ayoun', 'permalink': 'tzachi-ben-ayoun'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Sachs', 'permalink': 'eric-sachs'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Marcus', 'last_name': 'Cavanaugh', 'permalink': 'marcus-cavanaugh'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yukari', 'last_name': 'Matsuzawa', 'permalink': 'yukari-matsuzawa'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Austin', 'last_name': 'Chang', 'permalink': 'austin-chang'}}, {'is_past': False, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Philipp', 'last_name': 'Hertel', 'permalink': 'philipp-hertel'}}, {'is_past': False, 'title': 'Senior Lead | Digital Evangelist', 'person': {'first_name': 'Kevin', 'last_name': 'Foote', 'permalink': 'kevin-foote'}}, {'is_past': False, 'title': 'Sr. Strategic Consultant', 'person': {'first_name': 'Steve', 'last_name': 'Elefant', 'permalink': 'steve-elefant'}}, {'is_past': False, 'title': 'Sales Strategy & Operations Manager', 'person': {'first_name': 'Cory', 'last_name': 'Klippsten', 'permalink': 'cory-klippsten'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Philippe', 'last_name': 'Mussler', 'permalink': 'philippe-mussler'}}, {'is_past': False, 'title': 'Engineering', 'person': {'first_name': 'Chandu', 'last_name': 'Thota', 'permalink': 'chandu-thota'}}, {'is_past': False, 'title': 'Global Strategic Partnerships', 'person': {'first_name': 'Raissa', 'last_name': 'Nebie', 'permalink': 'raissa-nebie'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Dan', 'last_name': 'Raveh', 'permalink': 'dan-raveh'}}, {'is_past': False, 'title': 'Mobile Ads Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Morse', 'permalink': 'jason-morse'}}, {'is_past': False, 'title': 'Director, Android Global Partnerships', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Ray', 'last_name': 'Kurzweil', 'permalink': 'ray-kurzweil'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yoonie', 'last_name': 'Kim', 'permalink': 'yoonie-kim'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Bankhead', 'permalink': 'paul-bankhead'}}, {'is_past': False, 'title': 'Engineering lead of Personalization', 'person': {'first_name': 'Sep', 'last_name': 'Kamvar', 'permalink': 'sep-kamvar'}}, {'is_past': False, 'title': 'Head, Display Solutions, North America', 'person': {'first_name': 'Sharif', 'last_name': 'El-Badawi', 'permalink': 'sharif-el-badawi'}}, {'is_past': False, 'title': 'Director, Product Management - Google Wallet', 'person': {'first_name': 'Peter', 'last_name': 'Hazlehurst', 'permalink': 'peter-hazlehurst'}}, {'is_past': False, 'title': 'Product Marketing Manager, Chrome OS', 'person': {'first_name': 'Shahid', 'last_name': 'Hussain', 'permalink': 'shahid-hussain'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Joris', 'last_name': 'Tinbergen', 'permalink': 'joris-tinbergen'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Qasar', 'last_name': 'Younis', 'permalink': 'qasar-younis'}}, {'is_past': False, 'title': 'Head of Market Intelligence', 'person': {'first_name': 'chris', 'last_name': 'mctiernan', 'permalink': 'chris-mctiernan'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Aoun', 'permalink': 'adrian-aoun'}}, {'is_past': False, 'title': 'Senior Executive', 'person': {'first_name': 'Regina', 'last_name': 'Dugan', 'permalink': 'regina-dugan'}}, {'is_past': False, 'title': 'senior engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Dean', 'permalink': 'jeff-dean-2'}}, {'is_past': False, 'title': 'Software Engineer, Site Reliability Engineering', 'person': {'first_name': 'Ivan', 'last_name': 'Tarasov', 'permalink': 'ivan-tarasov'}}, {'is_past': False, 'title': 'Senior Director of Global Marketing, Google Enterprise', 'person': {'first_name': 'Chris', 'last_name': 'Farinacci', 'permalink': 'chris-farinacci'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Tamar', 'last_name': 'Yehoshua', 'permalink': 'tamar-yehoshua'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Nikhyl', 'last_name': 'Singhal', 'permalink': 'nikhyl-singhal'}}, {'is_past': False, 'title': 'Industry Analyst, Automotive', 'person': {'first_name': 'Daniel', 'last_name': 'Araújo', 'permalink': 'daniel-arajo'}}, {'is_past': False, 'title': 'Technical director of Google Developers Group (Greece)', 'person': {'first_name': 'George', 'last_name': 'Delaportas', 'permalink': 'george-delaportas'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Steven', 'last_name': 'Klebe', 'permalink': 'steven-klebe'}}, {'is_past': False, 'title': 'Captain of Moonshots', 'person': {'first_name': 'Astro', 'last_name': 'Teller', 'permalink': 'astro-teller'}}, {'is_past': False, 'title': 'Director, Engineering', 'person': {'first_name': 'Luc', 'last_name': 'Vincent', 'permalink': 'luc-vincent-2'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Donald', 'last_name': 'Huh', 'permalink': 'donald-huh'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Sridhar', 'last_name': 'Ramaswamy', 'permalink': 'sridhar-ramaswamy'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Victor', 'last_name': 'Koch', 'permalink': 'victor-koch'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Reza', 'last_name': 'Hussein', 'permalink': 'reza-hussein'}}, {'is_past': False, 'title': 'Head of platform marketing, Agency/Advertiser', 'person': {'first_name': 'Scott', 'last_name': 'Brown', 'permalink': 'scott-brown-5'}}, {'is_past': False, 'title': 'Manager, Partner Operations - Google Commerce', 'person': {'first_name': 'Brandon W.', 'last_name': 'Jones', 'permalink': 'brandon-w-jones'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Gary', 'last_name': 'Peck', 'permalink': 'gary-peck'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Martyn', 'last_name': 'Holman', 'permalink': 'martyn-holman'}}, {'is_past': False, 'title': 'Software Developer', 'person': {'first_name': 'Kartik', 'last_name': 'Agaram', 'permalink': 'kartik-agaram'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Basil', 'last_name': 'Horangic', 'permalink': 'basil-horangic'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Branko', 'last_name': 'Cerny', 'permalink': 'branko-cerny'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Mike', 'last_name': 'Jazayeri', 'permalink': 'mike-jazayeri'}}, {'is_past': False, 'title': 'Product Strategy', 'person': {'first_name': 'Scott', 'last_name': 'Jenson', 'permalink': 'scott-jenson'}}, {'is_past': False, 'title': 'Global Program Manager for Innovation & Creativity', 'person': {'first_name': 'Dr. Frederik G.', 'last_name': 'Pferdt', 'permalink': 'dr-frederik-g-pferdt'}}, {'is_past': False, 'title': 'Acquisitions SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': False, 'title': 'Operations / Strategy', 'person': {'first_name': 'Brandon', 'last_name': 'Simins', 'permalink': 'brandon-simins'}}, {'is_past': False, 'title': 'Engineering Director', 'person': {'first_name': 'Kurt', 'last_name': 'Brown', 'permalink': 'kurt-brown'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Eric', 'last_name': 'Schmidt', 'permalink': 'eric-schmidt'}}, {'is_past': True, 'title': 'Chief Evangelist, Wildfire by Google', 'person': {'first_name': 'Maya', 'last_name': 'Grinberg', 'permalink': 'maya-grinberg'}}, {'is_past': True, 'title': 'Chief Rocket Scientist', 'person': {'first_name': 'Ron', 'last_name': 'Garret', 'permalink': 'ron-garret-2'}}, {'is_past': True, 'title': 'VP, Treasurer and Chief Accountant', 'person': {'first_name': 'Brent', 'last_name': 'Callinicos', 'permalink': 'brent-callinicos'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Brian', 'last_name': 'Smith', 'permalink': 'brian-smith-4'}}, {'is_past': True, 'title': 'AdMob CFO', 'person': {'first_name': 'Cheryl', 'last_name': 'Dalrymple', 'permalink': 'cheryl-dalrymple'}}, {'is_past': True, 'title': 'CIO and Vice President Engineering', 'person': {'first_name': 'Douglas', 'last_name': 'Merrill', 'permalink': 'douglas-merrill'}}, {'is_past': True, 'title': 'VP, Android Product Management', 'person': {'first_name': 'Hugo', 'last_name': 'Barra', 'permalink': 'hugo-barra'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager, EMEA', 'person': {'first_name': 'Maurizio', 'last_name': 'Carli', 'permalink': 'maurizio-carli'}}, {'is_past': True, 'title': 'VP, Search Products & User Experience', 'person': {'first_name': 'Marissa', 'last_name': 'Mayer', 'permalink': 'marissa-mayer'}}, {'is_past': True, 'title': 'Vice President, Agency Sales & Partnerships, Worldwide', 'person': {'first_name': 'Penry', 'last_name': 'Price', 'permalink': 'penry-price'}}, {'is_past': True, 'title': 'VP, Eng, Architect Google Health', 'person': {'first_name': 'Adam', 'last_name': 'Bosworth', 'permalink': 'adam-bosworth'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'VP Engg & Distinguished Entrepreneur', 'person': {'first_name': 'N', 'last_name': 'Shivakumar', 'permalink': 'n-shivakumar'}}, {'is_past': True, 'title': 'VP of Legal', 'person': {'first_name': 'Ramsey', 'last_name': 'Homsany', 'permalink': 'ramsey-homsany'}}, {'is_past': True, 'title': 'VP, Global Sales Operations', 'person': {'first_name': 'Margo', 'last_name': 'Georgiadis', 'permalink': 'margo-georgiadis'}}, {'is_past': True, 'title': 'Vice President Global Online Sales & Operations', 'person': {'first_name': 'David', 'last_name': 'Fischer', 'permalink': 'david-fischer-2'}}, {'is_past': True, 'title': 'Vice President, Location & Local Services', 'person': {'first_name': 'Marissa', 'last_name': 'Mayer', 'permalink': 'marissa-mayer'}}, {'is_past': True, 'title': 'President, The Americas Operation and Senior Vice President, Advertising Sales and Operations', 'person': {'first_name': 'Tim', 'last_name': 'Armstrong', 'permalink': 'tim-armstrong'}}, {'is_past': True, 'title': 'VP Content Partnerships', 'person': {'first_name': 'David', 'last_name': 'Eun', 'permalink': 'david-eun'}}, {'is_past': True, 'title': 'Vice President of Corporate Development at Google', 'person': {'first_name': 'Salman', 'last_name': 'Ullah', 'permalink': 'salman-ullah'}}, {'is_past': True, 'title': 'Vice President, Global Communications & Public Affairs', 'person': {'first_name': 'Elliot', 'last_name': 'Schrage', 'permalink': 'elliot-schrage'}}, {'is_past': True, 'title': 'Senior Vice President, YouTube and Video', 'person': {'first_name': 'Salar', 'last_name': 'Kamangar', 'permalink': 'salar-kamangar'}}, {'is_past': True, 'title': 'VP Online Operations and Sales', 'person': {'first_name': 'Sheryl', 'last_name': 'Sandberg', 'permalink': 'sheryl-sandberg'}}, {'is_past': True, 'title': 'Senior VP - Product Management', 'person': {'first_name': 'Jonathan', 'last_name': 'Rosenberg', 'permalink': 'jonathan-rosenberg'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Arthur', 'last_name': 'D. Levinson', 'permalink': 'arthur-d-levinson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Avichal', 'last_name': 'Garg', 'permalink': 'avichal-garg'}}, {'is_past': True, 'title': 'Director of Social Media', 'person': {'first_name': 'Ethan', 'last_name': 'Beard', 'permalink': 'ethan-beard'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Justin', 'last_name': 'Rosenstein', 'permalink': 'justin-rosenstein'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Louis', 'last_name': 'Monier', 'permalink': 'louis-monier'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jason', 'last_name': 'Liebman', 'permalink': 'jason-liebman'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Daniel', 'last_name': 'Blackman', 'permalink': 'daniel-blackman'}}, {'is_past': True, 'title': 'Webmaster Central', 'person': {'first_name': 'Vanessa', 'last_name': 'Fox', 'permalink': 'vanessa-fox'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ana', 'last_name': 'Yang', 'permalink': 'ana-yang'}}, {'is_past': True, 'title': 'Product Manager, Google Maps', 'person': {'first_name': 'Jess', 'last_name': 'Lee', 'permalink': 'jess-lee'}}, {'is_past': True, 'title': 'iGoogle', 'person': {'first_name': 'Sean', 'last_name': 'Knapp', 'permalink': 'sean-knapp'}}, {'is_past': True, 'title': 'Product Manager / New Business Development Manager', 'person': {'first_name': 'Jason', 'last_name': 'Shellen', 'permalink': 'jason-shellen'}}, {'is_past': True, 'title': 'Senior Specialist, Blogger', 'person': {'first_name': 'Evan', 'last_name': 'Williams', 'permalink': 'evan-williams'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'Radez', 'permalink': 'rob-radez'}}, {'is_past': True, 'title': 'Sales', 'person': {'first_name': 'David', 'last_name': 'Hirsch', 'permalink': 'david-hirsch'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Bob', 'last_name': 'Lee', 'permalink': 'bob-lee'}}, {'is_past': True, 'title': 'User Experience Manager', 'person': {'first_name': 'Jeffrey', 'last_name': 'Veen', 'permalink': 'jeffrey-veen'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Norm', 'last_name': 'Page', 'permalink': 'norm-page'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'API evangelist', 'person': {'first_name': 'Patrick', 'last_name': 'Chanezon', 'permalink': 'patrick-chanezon'}}, {'is_past': True, 'title': 'Corporate Development & Business Product Manager', 'person': {'first_name': 'David', 'last_name': 'Friedberg', 'permalink': 'david-friedberg'}}, {'is_past': True, 'title': 'Google API Lead', 'person': {'first_name': 'Mark', 'last_name': 'Lucovsky', 'permalink': 'mark-lucovsky'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Joe', 'last_name': 'Kraus', 'permalink': 'joe-kraus'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Rudy', 'last_name': 'Winnacker', 'permalink': 'rudy-winnacker'}}, {'is_past': True, 'title': 'Regional Manager', 'person': {'first_name': 'Tim', 'last_name': 'Moynihan', 'permalink': 'tim-moynihan'}}, {'is_past': True, 'title': 'Head of Sales Finance, North America', 'person': {'first_name': 'Michael', 'last_name': 'Adair', 'permalink': 'michael-adair'}}, {'is_past': True, 'title': 'Online Operations Associate', 'person': {'first_name': 'Otilia', 'last_name': 'Otlacan', 'permalink': 'otilia-otlacan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Piaw', 'last_name': 'Na', 'permalink': 'piaw-na'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Alex', 'last_name': 'Limi', 'permalink': 'alexander-limi'}}, {'is_past': True, 'title': 'Mobile Marketing Product Manager', 'person': {'first_name': 'Ulf', 'last_name': 'Waschbusch', 'permalink': 'ulf-waschbusch'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jyri', 'last_name': 'Engestrom', 'permalink': 'jyri-engestrom'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Joshua', 'last_name': 'Schachter', 'permalink': 'joshua-schachter'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ned', 'last_name': 'Walley', 'permalink': 'ned-walley'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': 'Latin America Director', 'person': {'first_name': 'Gonzalo', 'last_name': 'Alonso', 'permalink': 'gonzalo-alonso'}}, {'is_past': True, 'title': 'Director Product Management, Google Labs', 'person': {'first_name': 'R.J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Matthew', 'last_name': 'Papakipos', 'permalink': 'matthew-papakipos'}}, {'is_past': True, 'title': 'Senior Staff Engineer', 'person': {'first_name': 'Lars', 'last_name': 'Rasmussen', 'permalink': 'lars-rasmussen'}}, {'is_past': True, 'title': 'President, Asian-Pacific and Latin American Markets', 'person': {'first_name': 'Sukhinder', 'last_name': 'Singh Cassidy', 'permalink': 'sukhinder-singh-cassidy'}}, {'is_past': True, 'title': 'Head of Corporate Development EMEA', 'person': {'first_name': 'Anil', 'last_name': 'Hansjee', 'permalink': 'anil-hansjee'}}, {'is_past': True, 'title': 'Senior Associate', 'person': {'first_name': 'Max', 'last_name': 'Ventilla', 'permalink': 'max-ventilla'}}, {'is_past': True, 'title': 'Associate General Counsel', 'person': {'first_name': 'Alexander', 'last_name': 'Macgillivray', 'permalink': 'alexander-macgillivray'}}, {'is_past': True, 'title': 'SPD', 'person': {'first_name': 'Justin', 'last_name': 'McCarthy', 'permalink': 'justin-mccarthy'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Nate', 'last_name': 'Johnson', 'permalink': 'nate-johnson'}}, {'is_past': True, 'title': 'Director, Search & Analytics', 'person': {'first_name': 'Tom', 'last_name': 'Phillips', 'permalink': 'tom-phillips'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Ethan', 'last_name': 'Anderson', 'permalink': 'ethan-anderson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tim', 'last_name': 'Maly', 'permalink': 'tim-maly'}}, {'is_past': True, 'title': 'Product Specialist', 'person': {'first_name': 'Oscar', 'last_name': 'Karlsten', 'permalink': 'oscar-karlsten'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee'}}, {'is_past': True, 'title': 'Director Product Management Search', 'person': {'first_name': 'R.J.', 'last_name': 'Pittman', 'permalink': 'r-j-pittman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Vincent', 'last_name': 'Cheung', 'permalink': 'vincent-cheung'}}, {'is_past': True, 'title': 'Principal, New Business Development', 'person': {'first_name': 'David', 'last_name': 'Lee', 'permalink': 'david-lee'}}, {'is_past': True, 'title': 'Director of Corporate Development', 'person': {'first_name': 'Jeremy', 'last_name': 'Wenokur', 'permalink': 'jeremy-wenokur'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Keval', 'last_name': 'Desai', 'permalink': 'keval-desai'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Elad', 'last_name': 'Gil', 'permalink': 'elad-gil'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Othman', 'last_name': 'Laraki', 'permalink': 'othman-laraki'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Lunt', 'permalink': 'eric-lunt'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Bradford', 'last_name': 'Cross', 'permalink': 'bradford-cross'}}, {'is_past': True, 'title': 'Retail Team Leader', 'person': {'first_name': 'Amanda', 'last_name': 'Sanguinet', 'permalink': 'amanda-sanguinet'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'Mircea', 'last_name': 'Pasoi', 'permalink': 'mircea-pasoi'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Joe', 'last_name': 'Kottke', 'permalink': 'joe-kottke'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Dan', 'last_name': 'Crow', 'permalink': 'dan-crow'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'David', 'last_name': 'King', 'permalink': 'david-king-5'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Bindu', 'last_name': 'Reddy', 'permalink': 'bindu-reddy'}}, {'is_past': True, 'title': 'Gangsta Programma', 'person': {'first_name': 'Pedram', 'last_name': 'Keyani', 'permalink': 'pedram-keyani'}}, {'is_past': True, 'title': 'SEM Channel Manager', 'person': {'first_name': 'Eric', 'last_name': 'Facas', 'permalink': 'eric-facas'}}, {'is_past': True, 'title': 'Lead Product Manager, Android', 'person': {'first_name': 'Erick', 'last_name': 'Tseng', 'permalink': 'erick-tseng'}}, {'is_past': True, 'title': 'Ad Management Consultant / Customer Solutions Consultant', 'person': {'first_name': 'Omar', 'last_name': 'Salix', 'permalink': 'omar-salix'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Waynn', 'last_name': 'Lue', 'permalink': 'waynn-lue'}}, {'is_past': True, 'title': 'Product Operations Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Schoonveld', 'permalink': 'patrick-schoonveld'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Zal', 'last_name': 'Bilimoria', 'permalink': 'zal-bilimoria'}}, {'is_past': True, 'title': 'Director, Google India', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Sean', 'last_name': 'Duffy', 'permalink': 'sean-duffy'}}, {'is_past': True, 'title': 'Strategic Partner Manager', 'person': {'first_name': 'Anshuman', 'last_name': 'Bapna', 'permalink': 'anshuman-bapna'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Joseph', 'last_name': 'Huang', 'permalink': 'joseph-huang'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Christine', 'last_name': 'Tsai', 'permalink': 'christine-tsai'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jon', 'last_name': 'Steinback', 'permalink': 'jon-steinback'}}, {'is_past': True, 'title': 'Head of Financial Services - Midwest', 'person': {'first_name': 'Brent', 'last_name': 'Hill', 'permalink': 'brent-hill'}}, {'is_past': True, 'title': 'Senior Manager, Corporate Communications', 'person': {'first_name': 'Lynn', 'last_name': 'Foxymax', 'permalink': 'lynn-fox'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joey', 'last_name': 'Liaw', 'permalink': 'joey-liaw'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Amit', 'last_name': 'Garg', 'permalink': 'amit-garg'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Lichi', 'last_name': 'Wu', 'permalink': 'lichi-wu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Larry', 'last_name': 'Gadea', 'permalink': 'larry-gadea'}}, {'is_past': True, 'title': 'Engineering Manager, Google Maps', 'person': {'first_name': 'Paul', 'last_name': 'Rademacher', 'permalink': 'paul-rademacher'}}, {'is_past': True, 'title': 'Head of New Markets', 'person': {'first_name': 'Christian', 'last_name': 'Hernandez', 'permalink': 'christian-hernandez'}}, {'is_past': True, 'title': 'Strategic Partnerships, Mobile', 'person': {'first_name': 'Jordan', 'last_name': 'Kobert', 'permalink': 'jordan-kobert'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Remi', 'last_name': 'Gabillet', 'permalink': 'rmi-gabillet'}}, {'is_past': True, 'title': 'SRE Manager', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Senior UX Researcher', 'person': {'first_name': 'Paul', 'last_name': 'Adams', 'permalink': 'paul-adams'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Bob', 'last_name': 'Zoller', 'permalink': 'bob-zoller'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Josh', 'last_name': 'Mendelsohn', 'permalink': 'josh-mendelsohn-2'}}, {'is_past': True, 'title': 'Interaction Designer', 'person': {'first_name': 'Chad', 'last_name': 'Thornton', 'permalink': 'chad-thornton'}}, {'is_past': True, 'title': 'Attorney', 'person': {'first_name': 'John', 'last_name': 'Duncan', 'permalink': 'john-duncan'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Tim', 'last_name': 'Cheadle', 'permalink': 'tim-cheadle'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gummi', 'last_name': 'Hafsteinsson', 'permalink': 'gummi-hafsteinsson'}}, {'is_past': True, 'title': 'UI Design', 'person': {'first_name': 'George', 'last_name': 'Chen', 'permalink': 'george-chen'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Danny', 'last_name': 'Lin', 'permalink': 'danny-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Chang', 'last_name': 'Kim', 'permalink': 'chang-kim'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Nate', 'last_name': 'Smith', 'permalink': 'nate-smith-2'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Brendan', 'last_name': 'Clavin', 'permalink': 'brendan-clavin'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Aman', 'last_name': 'Kumar', 'permalink': 'aman-kumar'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Sean', 'last_name': 'Owen', 'permalink': 'sean-owen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Alexander', 'last_name': 'Kleinberg', 'permalink': 'alexander-kleinberg'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Lee', 'permalink': 'ben-lee'}}, {'is_past': True, 'title': 'Sr. Web Developer', 'person': {'first_name': 'Geoff', 'last_name': 'Stearns', 'permalink': 'geoff-stearns'}}, {'is_past': True, 'title': 'Product Manager, Google Product Search', 'person': {'first_name': 'Jeff', 'last_name': 'Bartelma', 'permalink': 'jeff-bartelma'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Jag', 'last_name': 'Duggal', 'permalink': 'jag-duggal'}}, {'is_past': True, 'title': 'Business Operations Associate', 'person': {'first_name': 'Murthy', 'last_name': 'Mathiprakasam', 'permalink': 'murthy-mathiprakasam'}}, {'is_past': True, 'title': 'Director of Consumer Marketing and Brand Management', 'person': {'first_name': 'Doug', 'last_name': 'Edwards', 'permalink': 'doug-edwards'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Alexandre', 'last_name': 'Oliveira', 'permalink': 'alexandre-oliveira'}}, {'is_past': True, 'title': 'Head of Radio', 'person': {'first_name': 'Ryan', 'last_name': 'Steelberg', 'permalink': 'ryan-steelberg'}}, {'is_past': True, 'title': 'New Business Development Manager', 'person': {'first_name': 'Omid', 'last_name': 'Ashtari', 'permalink': 'omid-ashtari'}}, {'is_past': True, 'title': 'Associate, Enterprise', 'person': {'first_name': 'Alon', 'last_name': 'Bartur', 'permalink': 'alon-bartur'}}, {'is_past': True, 'title': 'GRID SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Megan', 'last_name': 'Quinn', 'permalink': 'megan-quinn'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Josh', 'last_name': 'Avant', 'permalink': 'josh-avant'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Klau', 'permalink': 'rick-klau'}}, {'is_past': True, 'title': 'President Media, Mobile & Platforms Worldwide', 'person': {'first_name': 'Henrique', 'last_name': 'De Castro', 'permalink': 'henrique-de-castro'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gregor', 'last_name': 'Hochmuth', 'permalink': 'gregor-hochmuth'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Allen', 'last_name': 'Romero', 'permalink': 'allen-romero'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Gabor', 'last_name': 'Cselle', 'permalink': 'gabor-cselle'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Ajit', 'last_name': 'Varma', 'permalink': 'ajit-varma'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Spector', 'permalink': 'david-spector'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Hutchins', 'permalink': 'chris-hutchins'}}, {'is_past': True, 'title': 'TechLead & Senior Software Engineer', 'person': {'first_name': 'Andrin', 'last_name': 'von Rechenberg', 'permalink': 'andrin-von-rechenberg'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'John', 'last_name': 'Adractas', 'permalink': 'john-adractas'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Clement', 'last_name': 'Pang', 'permalink': 'clement-pang'}}, {'is_past': True, 'title': 'Senior Partner Technology Manager', 'person': {'first_name': 'April', 'last_name': 'Underwood', 'permalink': 'april-underwood'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Matthew', 'last_name': 'Moore', 'permalink': 'matthew-moore'}}, {'is_past': True, 'title': 'Online Media Consultant', 'person': {'first_name': 'Atiq', 'last_name': 'Khan', 'permalink': 'atiq-khan'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Alex', 'last_name': 'Roetter', 'permalink': 'alex-roetter'}}, {'is_past': True, 'title': 'Search Specialist', 'person': {'first_name': 'Richard', 'last_name': 'Wan', 'permalink': 'richard-wan'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Chris', 'last_name': 'Wetherell', 'permalink': 'chris-wetherell'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Scott', 'last_name': 'Blum', 'permalink': 'scott-blum'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Linda', 'last_name': 'Tong', 'permalink': 'linda-tong'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Nemanja', 'last_name': 'Spasojevic', 'permalink': 'nemanja-spasojevic'}}, {'is_past': True, 'title': 'University Recruiter', 'person': {'first_name': 'Kinh', 'last_name': 'DeMaree', 'permalink': 'kinh-demaree'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Thomas', 'last_name': 'Arend', 'permalink': 'thomas-arend'}}, {'is_past': True, 'title': 'Director, Enterprise Operations', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': True, 'title': 'YouTube Global Creator Initiatives Manager', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Justin', 'last_name': 'Smith', 'permalink': 'justin-smith-6'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Calvin', 'last_name': 'Young', 'permalink': 'calvin-young'}}, {'is_past': True, 'title': 'Product Marketing', 'person': {'first_name': 'Brit', 'last_name': 'Morin', 'permalink': 'brit-morin'}}, {'is_past': True, 'title': 'Creative Development & Project Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Yazzie', 'permalink': 'matthew-yazzie'}}, {'is_past': True, 'title': 'Senior Designer', 'person': {'first_name': 'Leo', 'last_name': 'Baghdassarian', 'permalink': 'leo-baghdassarian'}}, {'is_past': True, 'title': 'UX Recruiter', 'person': {'first_name': 'Brian', 'last_name': 'Samson', 'permalink': 'brian-samson'}}, {'is_past': True, 'title': 'Senior Industry Analyst', 'person': {'first_name': 'Imad', 'last_name': 'Karam', 'permalink': 'imad-karam'}}, {'is_past': True, 'title': 'Software Engineer, Technical Lead', 'person': {'first_name': 'John', 'last_name': 'Jersin', 'permalink': 'john-jersin'}}, {'is_past': True, 'title': 'Corporate Operations Engineer', 'person': {'first_name': 'Rex', 'last_name': 'Pechler', 'permalink': 'rex-pechler'}}, {'is_past': True, 'title': 'Team Lead, DART Search', 'person': {'first_name': 'Geoffrey', 'last_name': 'Shenk', 'permalink': 'geoff-shenk'}}, {'is_past': True, 'title': 'Head of Acquisition Marketing, APAC', 'person': {'first_name': 'Chris', 'last_name': 'Luo', 'permalink': 'chris-luo'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Dhruv', 'last_name': 'Mehrotra', 'permalink': 'dhruv-mehrotra'}}, {'is_past': True, 'title': 'Group PM', 'person': {'first_name': 'Vincent', 'last_name': 'Paquet', 'permalink': 'vincent-paquet'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Ran', 'last_name': 'Tavory', 'permalink': 'ran-tavory'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Lin', 'permalink': 'michael-lin-4'}}, {'is_past': True, 'title': 'SRE Engineering Program manager', 'person': {'first_name': 'Bob', 'last_name': 'Sutterfield', 'permalink': 'bob-sutterfield'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Barnathan', 'permalink': 'michael-barnathan'}}, {'is_past': True, 'title': 'Technical Program Manager II', 'person': {'first_name': 'Daniel', 'last_name': 'Kornev', 'permalink': 'daniel-kornev'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Morgan', 'last_name': 'Knutson', 'permalink': 'morgan-knutson'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Nima', 'last_name': 'Rahnemoon', 'permalink': 'nima-rahnemoon'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Kenneth', 'last_name': 'Schlenker', 'permalink': 'kenneth-schlenker'}}, {'is_past': True, 'title': 'Global Head of Payments Business Development', 'person': {'first_name': 'Anil', 'last_name': 'D. Aggarwal', 'permalink': 'anil-d-aggarwal'}}, {'is_past': True, 'title': 'Android Business Development', 'person': {'first_name': 'Serge', 'last_name': 'Kassardjian', 'permalink': 'serge-kassardjian'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Tural', 'last_name': 'Badirkhanli', 'permalink': 'tural-badirkhanli'}}, {'is_past': True, 'title': 'Google Summer of Code 2008 Student', 'person': {'first_name': 'Radek', 'last_name': 'Strnad', 'permalink': 'radek-strnad'}}, {'is_past': True, 'title': 'DoubleClick Sales', 'person': {'first_name': 'Stu', 'last_name': 'Libby', 'permalink': 'stu-libby'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Peter', 'last_name': 'Edge', 'permalink': 'peter-edge'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Joel', 'last_name': 'Johnson', 'permalink': 'joel-johnson'}}, {'is_past': True, 'title': 'Developers Program Engineer', 'person': {'first_name': 'Austin', 'last_name': 'Chau', 'permalink': 'austin-chau'}}, {'is_past': True, 'title': 'Contract Developer', 'person': {'first_name': 'Abhishek', 'last_name': 'Gupta', 'permalink': 'abhishek-gupta'}}, {'is_past': True, 'title': 'Director of Recruiting and Outreach Programs - EMEA', 'person': {'first_name': 'Randy', 'last_name': 'Knaflic', 'permalink': 'randy-knaflic'}}, {'is_past': True, 'title': 'M&A Finance', 'person': {'first_name': 'Keith', 'last_name': 'Adams', 'permalink': 'keith-adams'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Shailo', 'last_name': 'Rao', 'permalink': 'shailo-rao'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Grant', 'last_name': 'Gold', 'permalink': 'grant-gold'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Christian', 'last_name': 'DiCarlo', 'permalink': 'christian-dicarlo'}}, {'is_past': True, 'title': 'Head, Mobile Solutions, North America', 'person': {'first_name': 'Eric', 'last_name': 'DeLange', 'permalink': 'eric-delange'}}, {'is_past': True, 'title': 'Head of Product Marketing and Strategy - Slide', 'person': {'first_name': 'Viva', 'last_name': 'Chu', 'permalink': 'viva-chu'}}, {'is_past': True, 'title': 'Senior Research Scientist', 'person': {'first_name': 'MartÃ\\xadn', 'last_name': 'Farach-Colton', 'permalink': 'martn-farach-colton'}}, {'is_past': True, 'title': 'Head of TV Ads, Strategic Partner Development', 'person': {'first_name': 'John', 'last_name': 'Saroff', 'permalink': 'john-saroff'}}, {'is_past': True, 'title': 'Head, Market Insights', 'person': {'first_name': 'David', 'last_name': 'Whiteman', 'permalink': 'david-whiteman'}}, {'is_past': True, 'title': 'Director of Global Public Policy', 'person': {'first_name': 'Andrew', 'last_name': 'McLaughlin', 'permalink': 'andrew-mclaughlin'}}, {'is_past': True, 'title': 'Industry Analyst Intern', 'person': {'first_name': 'Arnaud', 'last_name': 'Ferreri', 'permalink': 'arnaud-ferreri'}}, {'is_past': True, 'title': 'Head of Industry', 'person': {'first_name': 'John', 'last_name': 'Farrar', 'permalink': 'john-farrar'}}, {'is_past': True, 'title': 'Lead Sales Engineer', 'person': {'first_name': 'Piyush', 'last_name': 'Mangalick', 'permalink': 'piyush-mangalick'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'James', 'last_name': 'Gosling', 'permalink': 'james-gosling-2'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Daren', 'last_name': 'Jackson', 'permalink': 'daren-jackson'}}, {'is_past': True, 'title': 'GSOC student', 'person': {'first_name': 'Toomas', 'last_name': 'Römer', 'permalink': 'toomas-rmer'}}, {'is_past': True, 'title': 'Sales Strategy', 'person': {'first_name': 'Camille', 'last_name': 'Tyan', 'permalink': 'camille-tyan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ankur', 'last_name': 'Pansari', 'permalink': 'ankur-pansari'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jeson', 'last_name': 'Patel', 'permalink': 'jeson-patel'}}, {'is_past': True, 'title': 'Partnership/business development', 'person': {'first_name': 'Sagi', 'last_name': 'Shorrer', 'permalink': 'sagi-shorrer'}}, {'is_past': True, 'title': 'Business Associate Intern', 'person': {'first_name': 'Andre', 'last_name': 'Albuquerque', 'permalink': 'andre-albuquerque'}}, {'is_past': True, 'title': 'Sr Engineering Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Swerdlow', 'permalink': 'andrew-swerdlow'}}, {'is_past': True, 'title': 'Program Manager for Advanced Projects', 'person': {'first_name': 'Edward', 'last_name': 'T. Lu', 'permalink': 'edward-t-lu'}}, {'is_past': True, 'title': 'Director of Vertical Markets Group', 'person': {'first_name': 'David', 'last_name': 'Scacco', 'permalink': 'david-scacco'}}, {'is_past': True, 'title': 'Business Product Manager, Localization', 'person': {'first_name': 'Luis', 'last_name': 'Garcia', 'permalink': 'luis-garcia'}}, {'is_past': True, 'title': 'Staff Designer', 'person': {'first_name': 'Kevin', 'last_name': 'Ho', 'permalink': 'kevin-ho'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Krishna', 'last_name': 'Yeshwant', 'permalink': 'krishna-yeshwant'}}, {'is_past': True, 'title': 'Senior User Experience Designer', 'person': {'first_name': 'Braden', 'last_name': 'Kowitz', 'permalink': 'braden-kowitz'}}, {'is_past': True, 'title': 'Staff UX Designer', 'person': {'first_name': 'Jake', 'last_name': 'Knapp', 'permalink': 'jake-knapp'}}, {'is_past': True, 'title': 'Associate, Global Communications and Public Affairs', 'person': {'first_name': 'Chris', 'last_name': 'Schreiber', 'permalink': 'chris-schreiber'}}, {'is_past': True, 'title': 'Embedded', 'person': {'first_name': 'Maximos', 'last_name': 'Lih', 'permalink': 'maximos-lih'}}, {'is_past': True, 'title': 'Human Resources Business Partner', 'person': {'first_name': 'Brad', 'last_name': 'Strader', 'permalink': 'brad-strader'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Alex', 'last_name': 'Kinnier', 'permalink': 'alex-kinnier'}}, {'is_past': True, 'title': 'Staff UX Researcher and UX Manager (Seattle/Kirkland)', 'person': {'first_name': 'Michael', 'last_name': 'Margolis', 'permalink': 'michael-margolis-2'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ben', 'last_name': 'Davenport', 'permalink': 'ben-davenport'}}, {'is_past': True, 'title': 'Vertical Markets', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Monali', 'last_name': 'Narayanswami', 'permalink': 'monali-narayanswami'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel'}}, {'is_past': True, 'title': 'Head of Strategic Partnerships', 'person': {'first_name': 'Rob', 'last_name': 'Macdonald', 'permalink': 'rob-macdonald'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Pupius', 'permalink': 'dan-pupius'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Karl', 'last_name': 'Rosaen', 'permalink': 'karl-rosaen'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Matt', 'last_name': 'Zitzmann', 'permalink': 'matt-zitzmann'}}, {'is_past': True, 'title': 'Head of Affiliate Sales', 'person': {'first_name': 'Jim', 'last_name': 'Robinson', 'permalink': 'jim-robinson'}}, {'is_past': True, 'title': 'Tech Lead/Manager in Platforms', 'person': {'first_name': 'Henry', 'last_name': 'Green', 'permalink': 'henry-green'}}, {'is_past': True, 'title': 'Software Engineering Intern, Privacy Team', 'person': {'first_name': 'Craig', 'last_name': 'Younkins', 'permalink': 'craig-younkins'}}, {'is_past': True, 'title': 'Sr. Director, Engineering', 'person': {'first_name': 'Kevin', 'last_name': 'Scott', 'permalink': 'kevin-scott'}}, {'is_past': True, 'title': 'Director, AdMob Japan and Korea', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': True, 'title': 'Director of Engineering Finance', 'person': {'first_name': 'Kim', 'last_name': 'Jabal', 'permalink': 'kim-jabal'}}, {'is_past': True, 'title': 'Manager of Global Datacenter Operations', 'person': {'first_name': 'Keith', 'last_name': 'Kleiner', 'permalink': 'keith-kleiner'}}, {'is_past': True, 'title': 'Director, Ad Exchange', 'person': {'first_name': 'Michael', 'last_name': 'Rubenstein', 'permalink': 'michael-rubenstein'}}, {'is_past': True, 'title': 'Senior Director, Staffing and HR', 'person': {'first_name': 'ARNNON', 'last_name': 'GESHURI', 'permalink': 'arnnon-geshuri'}}, {'is_past': True, 'title': 'Adwords Coordinator', 'person': {'first_name': 'Greg', 'last_name': 'Strickland', 'permalink': 'greg-strickland'}}, {'is_past': True, 'title': 'Head of Global Leadership Development', 'person': {'first_name': 'Evan', 'last_name': 'Wittenberg', 'permalink': 'evan-wittenberg'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dhanji', 'last_name': 'Prasanna', 'permalink': 'dhanji-prasanna'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Jason', 'last_name': 'Crain', 'permalink': 'jason-crain'}}, {'is_past': True, 'title': 'Product Director, Advertiser Products', 'person': {'first_name': 'Ari', 'last_name': 'Paparo', 'permalink': 'ari-paparo'}}, {'is_past': True, 'title': 'Director, Product Management, YouTube / Video', 'person': {'first_name': 'Shishir', 'last_name': 'Mehrotra', 'permalink': 'shishir-mehrotra'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Horia', 'last_name': 'Ciurdar', 'permalink': 'horia-ciurdar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Chetan', 'last_name': 'Ahuja', 'permalink': 'chetan-ahuja'}}, {'is_past': True, 'title': 'Sales Manager, Strategic Accounts', 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'is_past': True, 'title': 'Head of Mobile Business, Japan & Asia-Pacific, Head of Business Development, India', 'person': {'first_name': 'Atul', 'last_name': 'Satija', 'permalink': 'atul-satija'}}, {'is_past': True, 'title': 'Senior Director, Product Management of Search Products and Local Business Products', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'Software Engineer (Intern)', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Pete', 'last_name': 'Koomen', 'permalink': 'pete-koomen'}}, {'is_past': True, 'title': 'Keeper of Insectivores', 'person': {'first_name': 'Nathan', 'last_name': 'Stoll', 'permalink': 'nathan-stoll'}}, {'is_past': True, 'title': 'Business Operations', 'person': {'first_name': 'Adam', 'last_name': 'Cahan', 'permalink': 'adam-cahan'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Siraj', 'last_name': 'Khaliq', 'permalink': 'siraj-khaliq'}}, {'is_past': True, 'title': 'Head of Experience - Google X', 'person': {'first_name': 'Tom', 'last_name': 'Chi', 'permalink': 'tom-chi'}}, {'is_past': True, 'title': 'Head of Privacy & Policy - Google+', 'person': {'first_name': 'Anne', 'last_name': 'Toth', 'permalink': 'anne-toth'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Robby', 'last_name': 'Walker', 'permalink': 'robby-walker'}}, {'is_past': True, 'title': 'Senior Software Engineering Manager', 'person': {'first_name': 'Tom', 'last_name': 'Annau', 'permalink': 'tom-annau'}}, {'is_past': True, 'title': 'AdMob Evangelist', 'person': {'first_name': 'Russell', 'last_name': 'Buckley', 'permalink': 'russell-buckley'}}, {'is_past': True, 'title': 'Key Account Sales', 'person': {'first_name': 'Ella', 'last_name': 'Zhang', 'permalink': 'ella-zhang'}}, {'is_past': True, 'title': 'AdWords Representative', 'person': {'first_name': 'Lichi', 'last_name': 'Wu', 'permalink': 'lichi-wu'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'Ashutosh', 'last_name': 'Garg', 'permalink': 'ashutosh-garg'}}, {'is_past': True, 'title': 'Technical Lead/Manager', 'person': {'first_name': 'Vinodh', 'last_name': 'Kumar', 'permalink': 'vinodh-kumar-2'}}, {'is_past': True, 'title': 'Coordinator', 'person': {'first_name': 'Kassidee', 'last_name': 'Kipp', 'permalink': 'kassidee-kipp'}}, {'is_past': True, 'title': 'Product Manager, Android Voice UI', 'person': {'first_name': 'Marcus', 'last_name': 'Foster', 'permalink': 'marcus-foster'}}, {'is_past': True, 'title': 'Country Marketing Manager, Korea', 'person': {'first_name': 'Jiyoung', 'last_name': 'Choi', 'permalink': 'jiyoung-choi'}}, {'is_past': True, 'title': 'Sr. Product Manager - Google Voice', 'person': {'first_name': 'Craig', 'last_name': 'Walker', 'permalink': 'craig-walker'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Tudor', 'last_name': 'Bosman', 'permalink': 'tudor-bosman'}}, {'is_past': True, 'title': 'Open Web Advocate', 'person': {'first_name': 'Dion', 'last_name': 'Almaer', 'permalink': 'dion-almaer'}}, {'is_past': True, 'title': 'Group Product Marketing Manager EMEA', 'person': {'first_name': 'Sean', 'last_name': 'Cornwell', 'permalink': 'sean-cornwell'}}, {'is_past': True, 'title': 'Summer of Code 2008 Participant', 'person': {'first_name': 'Erik', 'last_name': 'Hazzard', 'permalink': 'erik-hazzard'}}, {'is_past': True, 'title': 'Head of YouTube Marketing, Product Marketing Manager, Vertical Markets Manager', 'person': {'first_name': 'Jennifer', 'last_name': 'Hyman', 'permalink': 'jennifer-hyman-2'}}, {'is_past': True, 'title': 'Product Marketing Manager,,,,Account Executive - Tech Industry', 'person': {'first_name': 'Aaron', 'last_name': 'Weissman', 'permalink': 'aaron-weissman'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Matt', 'last_name': 'Nichols', 'permalink': 'matt-nichols'}}, {'is_past': True, 'title': 'Field Marketing Manager', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Director of Emerging Platforms', 'person': {'first_name': 'Vince', 'last_name': 'Monical', 'permalink': 'vince-monical'}}, {'is_past': True, 'title': 'Account Executive, Online Sales', 'person': {'first_name': 'Kris', 'last_name': 'Davis', 'permalink': 'kris-davis'}}, {'is_past': True, 'title': 'Director National Brand Advertising', 'person': {'first_name': 'Jeff', 'last_name': 'Mayo', 'permalink': 'jeff-mayo'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'John', 'last_name': 'Rector', 'permalink': 'john-rector'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Casey', 'last_name': 'Saran', 'permalink': 'casey-saran'}}, {'is_past': True, 'title': 'Head, DoubleClick Communications', 'person': {'first_name': 'Lynn', 'last_name': 'Tornabene', 'permalink': 'lynn-tornabene'}}, {'is_past': True, 'title': 'Mobile Head of Display Technology Vertical, Mobile', 'person': {'first_name': 'Jen', 'last_name': 'Bennett', 'permalink': 'jen-bennett'}}, {'is_past': True, 'title': 'Industry Manager', 'person': {'first_name': 'Johannes', 'last_name': 'Bruder', 'permalink': 'johannes-bruder'}}, {'is_past': True, 'title': 'Visiting Research Scientist', 'person': {'first_name': 'Vijay', 'last_name': 'Karamcheti', 'permalink': 'vijay-karamcheti'}}, {'is_past': True, 'title': 'Group Product Manager, Google AdWords Keyword Recommendations', 'person': {'first_name': 'Amit', 'last_name': 'Somani', 'permalink': 'amit-somani'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Daniel', 'last_name': 'Loreto', 'permalink': 'daniel-loreto'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'M.C.', 'last_name': 'Srivas', 'permalink': 'm-c-srivas'}}, {'is_past': True, 'title': 'Hardware Corp Systems', 'person': {'first_name': 'Gavino', 'last_name': 'Felix', 'permalink': 'gavino-felix'}}, {'is_past': True, 'title': 'Associate Technology Manager Intern', 'person': {'first_name': 'George', 'last_name': 'Tang', 'permalink': 'george-tang'}}, {'is_past': True, 'title': 'Director, Agency and Advertiser Sales', 'person': {'first_name': 'Andrew', 'last_name': 'Rutledge', 'permalink': 'andrew-rutledge'}}, {'is_past': True, 'title': 'Legal Director', 'person': {'first_name': 'David', 'last_name': 'Estrada', 'permalink': 'david-estrada'}}, {'is_past': True, 'title': 'Product Management Director - Payments', 'person': {'first_name': 'Puneet', 'last_name': 'Agarwal', 'permalink': 'puneet-agarwal'}}, {'is_past': True, 'title': 'product manager', 'person': {'first_name': 'Song', 'last_name': 'Jie', 'permalink': 'song-jie'}}, {'is_past': True, 'title': 'Ambassador', 'person': {'first_name': 'Leore', 'last_name': 'Avidar', 'permalink': 'leore-avidar'}}, {'is_past': True, 'title': 'Member, Technical Staff (MTS)', 'person': {'first_name': 'David', 'last_name': 'Franke', 'permalink': 'david-franke'}}, {'is_past': True, 'title': 'Financial Analyst Revenue Operations', 'person': {'first_name': 'César', 'last_name': 'Mozo', 'permalink': 'csar-mozo'}}, {'is_past': True, 'title': 'Associate Product Manager - Google+ Mobile', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Summer of Code Mentor', 'person': {'first_name': 'Dario', 'last_name': 'Freddi', 'permalink': 'dario-freddi'}}, {'is_past': True, 'title': 'software engineer', 'person': {'first_name': 'Naoki', 'last_name': 'Hiroshima', 'permalink': 'naoki-hiroshima'}}, {'is_past': True, 'title': 'he led the engineering team responsible for the creation of the Android mobile operating system and platform for the first three years.', 'person': {'first_name': 'Steve', 'last_name': 'Horowitz', 'permalink': 'steve-horowitz-2'}}, {'is_past': True, 'title': 'UX Design Lead', 'person': {'first_name': 'Dave', 'last_name': 'Young', 'permalink': 'dave-young'}}, {'is_past': True, 'title': 'Security Enginee', 'person': {'first_name': 'Rastislav', 'last_name': 'Turek', 'permalink': 'rastislav-turek'}}, {'is_past': True, 'title': 'Programmer', 'person': {'first_name': 'Joe', 'last_name': 'Doliner', 'permalink': 'joe-doliner'}}, {'is_past': True, 'title': 'Director of Strategic Accounts', 'person': {'first_name': 'Seph', 'last_name': 'Zdarko', 'permalink': 'seph-zdarko'}}, {'is_past': True, 'title': 'Finance Controller, G&A', 'person': {'first_name': 'Roy', 'last_name': 'Rong', 'permalink': 'roy-rong'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Brown', 'permalink': 'andrew-brown-4'}}, {'is_past': True, 'title': 'Global Team Manager', 'person': {'first_name': 'Thomas', 'last_name': 'Korte', 'permalink': 'thomas-korte'}}, {'is_past': True, 'title': 'Strategy and Integration Team Intern', 'person': {'first_name': 'Tanya', 'last_name': 'Menendez', 'permalink': 'tanya-menendez'}}, {'is_past': True, 'title': 'Director Product Management - AdSense, PicasaWeb', 'person': {'first_name': 'Brian', 'last_name': 'Axe', 'permalink': 'brian-axe-2'}}, {'is_past': True, 'title': 'Director - Security Engineering', 'person': {'first_name': 'Stephen', 'last_name': 'McHenry', 'permalink': 'stephen-mchenry'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jason', 'last_name': 'Arbon', 'permalink': 'jason-arbon'}}, {'is_past': True, 'title': 'Yield Team Lead', 'person': {'first_name': 'Nicholas', 'last_name': 'Gammell', 'permalink': 'nicholas-gammell'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Huang', 'permalink': 'michael-huang'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Aaron', 'last_name': 'Iba', 'permalink': 'aaron-iba'}}, {'is_past': True, 'title': 'Sr. Consultant', 'person': {'first_name': 'Ari', 'last_name': 'Jacoby', 'permalink': 'ari-jacoby'}}, {'is_past': True, 'title': 'Engineering Ambassador , Germany', 'person': {'first_name': 'Piaw', 'last_name': 'Na', 'permalink': 'piaw-na'}}, {'is_past': True, 'title': 'Product Marketing Lead, Consumer Search', 'person': {'first_name': 'Missy', 'last_name': 'Krasner', 'permalink': 'missy-krasner'}}, {'is_past': True, 'title': 'Strategic Partnerships & Special Projects', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'eCommerce Project Manager', 'person': {'first_name': 'Graham', 'last_name': 'Cooke', 'permalink': 'graham-cooke'}}, {'is_past': True, 'title': 'Web Solutions Engineer', 'person': {'first_name': 'Leah', 'last_name': 'Jones', 'permalink': 'leah-jones'}}, {'is_past': True, 'title': 'Global Head of Product Marketing', 'person': {'first_name': 'Sanjeev', 'last_name': 'Agrawal', 'permalink': 'sanjeev-agrawal'}}, {'is_past': True, 'title': 'Network engineer, Network tools', 'person': {'first_name': 'Vadim', 'last_name': 'Kurland', 'permalink': 'vadim-kurland'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sergey', 'last_name': 'Surkov', 'permalink': 'sergey-surkov'}}, {'is_past': True, 'title': 'Director of Sales Ops', 'person': {'first_name': 'Charley', 'last_name': 'Cassell', 'permalink': 'charley-cassell-2'}}, {'is_past': True, 'title': 'Senior Software Engineer - Android, Tech Lead / Software Engineer - International', 'person': {'first_name': 'Nicolas', 'last_name': 'Sallembien', 'permalink': 'nicolas-sallembien'}}, {'is_past': True, 'title': 'Industry Manager, Multi-Channel', 'person': {'first_name': 'STEPHANIE', 'last_name': 'EMMANOUEL', 'permalink': 'stephanie-emmanouel'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Wan', 'last_name': 'Li Zhu', 'permalink': 'wan-li-zhu'}}, {'is_past': True, 'title': 'Customer Insights', 'person': {'first_name': 'Nitesh', 'last_name': 'Banta', 'permalink': 'nitesh-banta'}}, {'is_past': True, 'title': 'Associate Product Manager Intern', 'person': {'first_name': 'Danny', 'last_name': 'Crichton', 'permalink': 'danny-crichton'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Manish', 'last_name': 'Patel', 'permalink': 'manish-patel'}}, {'is_past': True, 'title': 'Software Engineering Intern (Systems Infrastructure)', 'person': {'first_name': 'John', 'last_name': 'Giacomoni', 'permalink': 'john-giacomoni'}}, {'is_past': True, 'title': 'Process Excellence Specialist', 'person': {'first_name': 'Naz', 'last_name': 'Ozertugrul', 'permalink': 'naz-ozertugrul'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Googler', 'person': {'first_name': 'Nicholas', 'last_name': 'Gilman', 'permalink': 'nicholas-gilman'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Aditya', 'last_name': 'Panda', 'permalink': 'aditya-panda'}}, {'is_past': True, 'title': 'MBA Intern', 'person': {'first_name': 'Avin', 'last_name': 'Bansal', 'permalink': 'avin-bansal'}}, {'is_past': True, 'title': 'HR', 'person': {'first_name': 'Barbara', 'last_name': 'Jobs', 'permalink': 'barbara-jobs'}}, {'is_past': True, 'title': 'Google News UX Lead Designer / Manager', 'person': {'first_name': 'Jasson', 'last_name': 'Schrock', 'permalink': 'jasson-schrock'}}, {'is_past': True, 'title': 'Interaction Designer, Google+', 'person': {'first_name': 'Srividya', 'last_name': 'Sriram', 'permalink': 'srividya-sriram'}}, {'is_past': True, 'title': 'Senior Software Engineer/Engineering Manager', 'person': {'first_name': 'Jason', 'last_name': 'Bennett', 'permalink': 'jason-bennett-2'}}, {'is_past': True, 'title': 'Global Online Content Acquisition & Partnerships Manager, AdSense Online', 'person': {'first_name': 'Uri', 'last_name': 'Lancry', 'permalink': 'uri-lancry'}}, {'is_past': True, 'title': 'Director - Finance', 'person': {'first_name': 'Jillian', 'last_name': 'Gillespie', 'permalink': 'jillian-gillespie'}}, {'is_past': True, 'title': 'Regional Director UK, Ireland Benelux', 'person': {'first_name': 'Kate', 'last_name': 'Burns', 'permalink': 'kate-burns'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Deng-Kai', 'last_name': 'Chen', 'permalink': 'deng-kai-chen'}}, {'is_past': True, 'title': 'Strategist, Online Operations', 'person': {'first_name': 'Jassim', 'last_name': 'Latif', 'permalink': 'jassim-latif'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Maneesh', 'last_name': 'Arora', 'permalink': 'maneesh-k-arora'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Bill', 'last_name': 'Hudak', 'permalink': 'bill-hudak'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Igor', 'last_name': 'Grinkin', 'permalink': 'igor-grinkin'}}, {'is_past': True, 'title': 'Online Help Manager', 'person': {'first_name': 'Morten', 'last_name': 'Lundsby Jensen', 'permalink': 'morten-lundsby-jensen'}}, {'is_past': True, 'title': 'AdWords Domain Expert', 'person': {'first_name': 'Sam', 'last_name': 'Mazaheri', 'permalink': 'sam-mazaheri'}}, {'is_past': True, 'title': 'European Marketing Director', 'person': {'first_name': 'Rikard', 'last_name': 'Steiber', 'permalink': 'rikard-steiber'}}, {'is_past': True, 'title': 'Product Management Positions', 'person': {'first_name': 'Jorge', 'last_name': 'Zapata', 'permalink': 'jorge-zapata'}}, {'is_past': True, 'title': 'Strategic Business Development Manager', 'person': {'first_name': 'Renu', 'last_name': 'Gupta', 'permalink': 'renu-gupta'}}, {'is_past': True, 'title': 'Associate Product Marketing Manager', 'person': {'first_name': 'Chris', 'last_name': 'Sell', 'permalink': 'chris-sell-2'}}, {'is_past': True, 'title': 'AdWords Account Strategist', 'person': {'first_name': 'Carla', 'last_name': 'Swiryn', 'permalink': 'carla-swiryn'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Manav', 'last_name': 'Mishra', 'permalink': 'manav-mishra'}}, {'is_past': True, 'title': 'User experience designer', 'person': {'first_name': 'Adam', 'last_name': 'Baker', 'permalink': 'adam-baker-3'}}, {'is_past': True, 'title': 'Advisory Boards', 'person': {'first_name': 'Misty', 'last_name': 'Locke', 'permalink': 'misty-locke'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Maarten', 'last_name': \"'t Hooft\", 'permalink': 'maarten-t-hooft'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Glick', 'permalink': 'brian-glick'}}, {'is_past': True, 'title': 'Senior Director of New Business Development', 'person': {'first_name': 'Jack', 'last_name': 'Ancone', 'permalink': 'jack-ancone'}}, {'is_past': True, 'title': 'Global Staffing Manager for Search and Executive Recruiting', 'person': {'first_name': 'Jon', 'last_name': 'LoCurto', 'permalink': 'jon-locurto'}}, {'is_past': True, 'title': 'Product Specialist', 'person': {'first_name': 'Scott', 'last_name': 'Hartley', 'permalink': 'scott-hartley'}}, {'is_past': True, 'title': 'Cloud Evangelist', 'person': {'first_name': 'Daniel', 'last_name': 'Rongo', 'permalink': 'daniel-rongo'}}, {'is_past': True, 'title': 'Technical Programs Manager', 'person': {'first_name': 'Jason', 'last_name': 'Costa', 'permalink': 'jason-costa'}}, {'is_past': True, 'title': 'Senior Manager, Communications', 'person': {'first_name': 'Larry', 'last_name': 'Yu', 'permalink': 'larry-yu'}}, {'is_past': True, 'title': 'Products Counsel', 'person': {'first_name': 'Glenn', 'last_name': 'Otis Brown', 'permalink': 'glenn-otis-brown'}}, {'is_past': True, 'title': 'Product Manager (APM program)', 'person': {'first_name': 'Gaurav', 'last_name': 'Jain', 'permalink': 'gaurav-jain-2'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Daniel', 'last_name': 'Borok', 'permalink': 'daniel-borok'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Neil', 'last_name': 'Kandalgaonkar', 'permalink': 'neil-kandalgaonkar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gabor', 'last_name': 'Cselle', 'permalink': 'gabor-cselle'}}, {'is_past': True, 'title': 'Director, Brand Advertising', 'person': {'first_name': 'Ash', 'last_name': 'ElDifrawi', 'permalink': 'ash-eldifrawi'}}, {'is_past': True, 'title': 'Product Management Director, Adsense', 'person': {'first_name': 'Gokul', 'last_name': 'Rajaram', 'permalink': 'gokul-rajaram'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Russell', 'last_name': 'Power', 'permalink': 'russell-power'}}, {'is_past': True, 'title': 'Product Manager, Google Apps', 'person': {'first_name': 'Sanjay', 'last_name': 'Raman', 'permalink': 'sanjay-raman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Steffen', 'last_name': 'Mueller', 'permalink': 'steffen-mueller-2'}}, {'is_past': True, 'title': 'Senior User Experience Design Lead', 'person': {'first_name': 'Kevin', 'last_name': 'Fox', 'permalink': 'kevin-fox'}}, {'is_past': True, 'title': 'Strategic Partner Development', 'person': {'first_name': 'Brian', 'last_name': 'Dick', 'permalink': 'brian-dick'}}, {'is_past': True, 'title': 'Senior Product Manager, AdSense', 'person': {'first_name': 'Bismarck', 'last_name': 'Lepe', 'permalink': 'bismarck-lepe'}}, {'is_past': True, 'title': 'Systems Engineer', 'person': {'first_name': 'Belsasar', 'last_name': 'Lepe', 'permalink': 'belsasar-lepe'}}, {'is_past': True, 'title': 'Senior Specialist, Blogger', 'person': {'first_name': 'Biz', 'last_name': 'Stone', 'permalink': 'biz-stone'}}, {'is_past': True, 'title': 'Blogger', 'person': {'first_name': 'Jason', 'last_name': 'Goldman', 'permalink': 'jason-goldman'}}, {'is_past': True, 'title': 'Online Operations Coordinator, Google Base', 'person': {'first_name': 'Clint', 'last_name': 'Guerrero', 'permalink': 'clint-guerrero'}}, {'is_past': True, 'title': 'Product Manager, AdWords', 'person': {'first_name': 'Dominic', 'last_name': 'Preuss', 'permalink': 'dominic-preuss'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Tom', 'last_name': 'Stocky', 'permalink': 'tom-stocky'}}, {'is_past': True, 'title': 'Gmail', 'person': {'first_name': 'Aaron', 'last_name': 'Dunn', 'permalink': 'aaron-dunn'}}, {'is_past': True, 'title': 'Director of Engineering, Friend Connect', 'person': {'first_name': 'David', 'last_name': 'Glazer', 'permalink': 'david-glazer'}}, {'is_past': True, 'title': 'Network Engineer/Manager', 'person': {'first_name': 'Jack', 'last_name': 'Levin', 'permalink': 'jack-levin'}}, {'is_past': True, 'title': 'Product Lead for Web Search', 'person': {'first_name': 'Shashi', 'last_name': 'Seth', 'permalink': 'shashi-seth'}}, {'is_past': True, 'title': 'Group Product Manager, Gmail', 'person': {'first_name': 'Todd', 'last_name': 'Jackson', 'permalink': 'todd-jackson'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Tony', 'last_name': 'Pribyl', 'permalink': 'tony-pribyl'}}, {'is_past': True, 'title': 'Developer Advocate', 'person': {'first_name': 'Kevin', 'last_name': 'Marks', 'permalink': 'kevin-marks'}}, {'is_past': True, 'title': 'Intranet Web Developer', 'person': {'first_name': 'Ted', 'last_name': 'Dziuba', 'permalink': 'ted-dziuba'}}, {'is_past': True, 'title': 'Sales and Operations Manager', 'person': {'first_name': 'Dan', 'last_name': 'Daugherty', 'permalink': 'dan-daugherty'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Patrick', 'last_name': 'Li', 'permalink': 'patrick-li'}}, {'is_past': True, 'title': 'Managing Director for South East Asia', 'person': {'first_name': 'Richard', 'last_name': 'Kimber', 'permalink': 'richard-kimber'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Niniane', 'last_name': 'Wang', 'permalink': 'niniane-wang'}}, {'is_past': True, 'title': 'Country Director, Netherlands', 'person': {'first_name': 'Marc', 'last_name': 'Duijndam', 'permalink': 'marc-duijndam'}}, {'is_past': True, 'title': 'Director, Display Advertising', 'person': {'first_name': 'David', 'last_name': 'Rosenblatt', 'permalink': 'david-rosenblatt'}}, {'is_past': True, 'title': 'Senior Director, Product Management', 'person': {'first_name': 'Deep', 'last_name': 'Nishar', 'permalink': 'deep-nishar'}}, {'is_past': True, 'title': 'President, Enterprise', 'person': {'first_name': 'Dave', 'last_name': 'Girouard', 'permalink': 'dave-girouard'}}, {'is_past': True, 'title': 'Product Manager, Google Finance', 'person': {'first_name': 'Katie', 'last_name': 'Jacobs Stanton', 'permalink': 'katie-jacobs-stanton'}}, {'is_past': True, 'title': 'Eng Director', 'person': {'first_name': 'Christopher', 'last_name': 'Nguyen', 'permalink': 'christopher-nguyen'}}, {'is_past': True, 'title': 'Group Product Manager: Google Voice, Google Talk, Google Talk Video', 'person': {'first_name': 'Craig', 'last_name': 'Walker', 'permalink': 'craig-walker'}}, {'is_past': True, 'title': 'Marketing and Sales, Americas', 'person': {'first_name': 'Jeff', 'last_name': 'Levick', 'permalink': 'jeff-levick'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brittany', 'last_name': 'Bohnet', 'permalink': 'brittany-bohnet'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Stephanie', 'last_name': 'Hannon', 'permalink': 'stephanie-hannon'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dennis', 'last_name': 'Crowley', 'permalink': 'dennis-crowley'}}, {'is_past': True, 'title': 'Product Manager (AdSense)', 'person': {'first_name': 'Rob', 'last_name': 'Kniaz', 'permalink': 'rob-kniaz'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Ronny', 'last_name': 'Conway', 'permalink': 'ronny-conway'}}, {'is_past': True, 'title': 'Technical Director', 'person': {'first_name': 'Derek', 'last_name': 'Collison', 'permalink': 'derek-collison'}}, {'is_past': True, 'title': 'Group Manager, Mobile Platforms', 'person': {'first_name': 'Rich', 'last_name': 'Miner', 'permalink': 'rich-miner'}}, {'is_past': True, 'title': 'Manager - OSO', 'person': {'first_name': 'Santosh', 'last_name': 'Jayaram', 'permalink': 'santosh-jayaram'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'Joey', 'last_name': 'Primiani', 'permalink': 'joey-primiani'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Yaron', 'last_name': 'Binur', 'permalink': 'yaron-binur'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Knapp', 'permalink': 'mike-knapp'}}, {'is_past': True, 'title': 'Strategic Partner Development Manager, Local Markets', 'person': {'first_name': 'Jon', 'last_name': 'Steinberg', 'permalink': 'jon-steinberg'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Daniel', 'last_name': 'Tunkelang', 'permalink': 'daniel-tunkelang'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Hunter', 'last_name': 'Walk', 'permalink': 'hunter-walk'}}, {'is_past': True, 'title': 'Group Product Manager, Ads', 'person': {'first_name': 'Dick', 'last_name': 'Costolo', 'permalink': 'dick-costolo'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Siobhan', 'last_name': 'Quinn', 'permalink': 'siobhan-quinn'}}, {'is_past': True, 'title': 'Product Evangelist', 'person': {'first_name': 'Thomas', 'last_name': 'Korte', 'permalink': 'thomas-korte'}}, {'is_past': True, 'title': 'Strategic Partner Manager', 'person': {'first_name': 'Natala', 'last_name': 'Menezes', 'permalink': 'natala-menezes'}}, {'is_past': True, 'title': 'Senior Designer', 'person': {'first_name': 'Jason', 'last_name': 'Morrow', 'permalink': 'jason-morrow'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Amit', 'last_name': 'Paunikar', 'permalink': 'amit-paunikar'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jonathan', 'last_name': 'Betz', 'permalink': 'jonathan-betz'}}, {'is_past': True, 'title': 'Head of Affiliate Network', 'person': {'first_name': 'Chris', 'last_name': 'Henger', 'permalink': 'chris-henger'}}, {'is_past': True, 'title': 'Content Acquisition Associate', 'person': {'first_name': 'Brian', 'last_name': 'Pokorny', 'permalink': 'brian-pokorny'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jeff', 'last_name': 'Huber', 'permalink': 'jeff-huber'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Bret', 'last_name': 'Taylor', 'permalink': 'bret-taylor'}}, {'is_past': True, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Arvind', 'last_name': 'Sundararajan', 'permalink': 'arvind-sundararajan'}}, {'is_past': True, 'title': 'Director, Global Communications and Public Affairs', 'person': {'first_name': 'David', 'last_name': 'Krane', 'permalink': 'david-krane'}}, {'is_past': True, 'title': 'Online Sales and Operations', 'person': {'first_name': 'Daniel', 'last_name': 'Franz', 'permalink': 'daniel-franz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Eric', 'last_name': 'Facas', 'permalink': 'eric-facas'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Siobhan', 'last_name': 'Quinn', 'permalink': 'siobhan-quinn'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Morgan', 'last_name': 'Missen', 'permalink': 'morgan-missentzis'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Harry', 'last_name': 'Heymann', 'permalink': 'harry-heymann'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Amund', 'last_name': 'Tveit', 'permalink': 'amund-tveit'}}, {'is_past': True, 'title': 'Member of Technical Staff - Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Krulewitz', 'permalink': 'steve-krulewitz'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Abhishek', 'last_name': 'Amit', 'permalink': 'abhishek-amit'}}, {'is_past': True, 'title': 'Sr. Software Engineer & Technical Lead', 'person': {'first_name': 'Peter', 'last_name': 'Szulczewski', 'permalink': 'peter-szulczewski'}}, {'is_past': True, 'title': 'Product Quality Operations', 'person': {'first_name': 'Cristina', 'last_name': 'Cordova', 'permalink': 'cristina-cordova'}}, {'is_past': True, 'title': 'PR Specialist', 'person': {'first_name': 'Daniel', 'last_name': 'Lemin', 'permalink': 'daniel-lemin'}}, {'is_past': True, 'title': 'Head, Mobile Applications Partnerships', 'person': {'first_name': 'Charles', 'last_name': 'Yim', 'permalink': 'charles-yim'}}, {'is_past': True, 'title': 'Corporate Development Associate', 'person': {'first_name': 'Kevin', 'last_name': 'Systrom', 'permalink': 'kevin-systrom'}}, {'is_past': True, 'title': 'Head of Marketing, Jambool / Social Gold', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Amin', 'last_name': 'Zoufonoun', 'permalink': 'amin-zoufonoun'}}, {'is_past': True, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'David', 'last_name': 'Barksdale', 'permalink': 'david-barksdale'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Amit', 'last_name': 'Garg', 'permalink': 'amit-garg'}}, {'is_past': True, 'title': 'EMEA Maps Partnerships', 'person': {'first_name': 'Bart', 'last_name': 'Denny', 'permalink': 'bart-denny'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Art', 'last_name': 'Leyzerovich', 'permalink': 'art-leyzerovich'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Rademacher', 'permalink': 'paul-rademacher'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Turitzin', 'permalink': 'mike-turitzin'}}, {'is_past': True, 'title': 'Associate, Risk Operations', 'person': {'first_name': 'Jason', 'last_name': 'Wang', 'permalink': 'jason-wang'}}, {'is_past': True, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Kevin', 'last_name': 'Donahue', 'permalink': 'kevin-donahue'}}, {'is_past': True, 'title': 'Strategic Partnerships, AdMob', 'person': {'first_name': 'Aunkur', 'last_name': 'Arya', 'permalink': 'aunkur-arya'}}, {'is_past': True, 'title': 'Adsense Associate', 'person': {'first_name': 'Pedro', 'last_name': 'Cruz', 'permalink': 'pedro-cruz'}}, {'is_past': True, 'title': 'Business Analytics', 'person': {'first_name': 'Korey', 'last_name': 'Lee', 'permalink': 'korey-lee'}}, {'is_past': True, 'title': 'Google Places Lead', 'person': {'first_name': 'Lior', 'last_name': 'Ron', 'permalink': 'lior-ron'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sandra Liu', 'last_name': 'Huang', 'permalink': 'sandra-liu-huang'}}, {'is_past': True, 'title': 'Site Reliability Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Cheadle', 'permalink': 'tim-cheadle'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Darren', 'last_name': 'Lewis', 'permalink': 'darren-lewis-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Thai', 'last_name': 'Tran', 'permalink': 'thai-tran'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Dan', 'last_name': 'Engel', 'permalink': 'dan-engel'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Elliot', 'last_name': 'Kroo', 'permalink': 'elliot-kroo'}}, {'is_past': True, 'title': 'Senior Technical Recruiter', 'person': {'first_name': 'Joe', 'last_name': 'Cheung', 'permalink': 'joseph-cheung'}}, {'is_past': True, 'title': 'Global Marketing Director - Mobile & Social Advertising', 'person': {'first_name': 'Rikard', 'last_name': 'Steiber', 'permalink': 'rikard-steiber'}}, {'is_past': True, 'title': 'Software Engineer, Partner Solutions', 'person': {'first_name': 'Ian', 'last_name': 'Langworth', 'permalink': 'ian-langworth'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Tyma', 'permalink': 'paul-tyma'}}, {'is_past': True, 'title': 'UX Manager/Designer', 'person': {'first_name': 'Graham', 'last_name': 'Jenkin', 'permalink': 'graham-jenkin'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Simon', 'last_name': 'Favreau-Lessard', 'permalink': 'simon-favreau-lessard'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Benjy', 'last_name': 'Weinberger', 'permalink': 'benjy-weinberger'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Vida', 'last_name': 'Ha', 'permalink': 'vida-ha'}}, {'is_past': True, 'title': 'Sr Director', 'person': {'first_name': 'Marc', 'last_name': 'Leibowitz', 'permalink': 'marc-leibowitz'}}, {'is_past': True, 'title': 'VP, Commerce and Payments', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Joshua', 'last_name': 'To', 'permalink': 'joshua-to'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Isabel', 'last_name': 'Mattos', 'permalink': 'isabel-mattos'}}, {'is_past': True, 'title': 'New Initiatives Manager (Google/YouTube/DoubleClick)', 'person': {'first_name': 'Daniel', 'last_name': 'Maloney', 'permalink': 'daniel-maloney'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Sam', 'last_name': 'Johnston', 'permalink': 'sam-johnston'}}, {'is_past': True, 'title': 'Lead Sales Engineer', 'person': {'first_name': 'Amit', 'last_name': 'Sangani', 'permalink': 'amit-sangani'}}, {'is_past': True, 'title': 'Manager, Engineering', 'person': {'first_name': 'David', 'last_name': 'Aubespin', 'permalink': 'david-aubespin'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Joe', 'last_name': 'Sriver', 'permalink': 'joe-sriver'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Brotzman', 'permalink': 'michael-brotzman'}}, {'is_past': True, 'title': 'Head of Office', 'person': {'first_name': 'Kevin', 'last_name': 'Willer', 'permalink': 'kevin-willer'}}, {'is_past': True, 'title': 'Software Developer In Test, Intern', 'person': {'first_name': 'Barbara', 'last_name': 'Macdonald', 'permalink': 'barbara-macdonald'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Shaun', 'last_name': 'Modi', 'permalink': 'shaun-modi'}}, {'is_past': True, 'title': 'Associate, Strategy & Business Operations', 'person': {'first_name': 'Clara', 'last_name': 'Shih', 'permalink': 'clara-shih'}}, {'is_past': True, 'title': 'Strategic Partner Management', 'person': {'first_name': 'Ben', 'last_name': 'Smith', 'permalink': 'ben-smith-4'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Zubin', 'last_name': 'Chagpar', 'permalink': 'zubin-chagpar'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Mikko', 'last_name': 'Järvenpää', 'permalink': 'mikko-jrvenp-2'}}, {'is_past': True, 'title': 'Agency Sales', 'person': {'first_name': 'Kamal', 'last_name': 'Taylor', 'permalink': 'kamal-taylor'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Tommaso', 'last_name': 'Cacurio', 'permalink': 'tommaso-cacurio'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Jacquie', 'last_name': 'Phillips', 'permalink': 'jacquie-phillips'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'James', 'last_name': 'Kelm', 'permalink': 'james-kelm'}}, {'is_past': True, 'title': 'Head of Domain Channel', 'person': {'first_name': 'Eytan', 'last_name': 'Elbaz', 'permalink': 'eytan-elbaz'}}, {'is_past': True, 'title': 'Senior Visual Designer', 'person': {'first_name': 'Jamie', 'last_name': 'Divine', 'permalink': 'jamie-divine'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ori', 'last_name': 'Allon', 'permalink': 'ori-allon'}}, {'is_past': True, 'title': 'Senior Manager, Websearch & Syndication', 'person': {'first_name': 'Aydin', 'last_name': 'Senkut', 'permalink': 'aydin-senkut'}}, {'is_past': True, 'title': 'Manager, Strategy & Operations', 'person': {'first_name': 'Gavin', 'last_name': 'Walsh', 'permalink': 'gavin-walsh'}}, {'is_past': True, 'title': 'Sr Product Manager', 'person': {'first_name': 'Emre', 'last_name': 'Baran', 'permalink': 'emre-baran'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ryo', 'last_name': 'Chijiiwa', 'permalink': 'ryo-chijiiwa'}}, {'is_past': True, 'title': 'Account Strategist - Technology and Retail', 'person': {'first_name': 'Vitor', 'last_name': 'de Mesquita', 'permalink': 'vitor-de-mesquita'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Patrick', 'last_name': 'Campbell', 'permalink': 'patrick-campbell-3'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mohit', 'last_name': 'Mittal', 'permalink': 'mohit-mittal'}}, {'is_past': True, 'title': 'Principal, New Business Development', 'person': {'first_name': 'Robert', 'last_name': 'Swerling', 'permalink': 'robert-swerling'}}, {'is_past': True, 'title': 'Head of Local Marketing', 'person': {'first_name': 'Jeff', 'last_name': 'Aguero', 'permalink': 'jeff-aguero'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Sohail', 'last_name': 'Prasad', 'permalink': 'sohail-prasad'}}, {'is_past': True, 'title': 'Google.org Marketing', 'person': {'first_name': 'Bing', 'last_name': 'Chen', 'permalink': 'bing-chen'}}, {'is_past': True, 'title': 'AdWords', 'person': {'first_name': 'Esther', 'last_name': 'Park', 'permalink': 'esther-park'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Noah', 'last_name': 'Ready-Campbell', 'permalink': 'noah-ready-campbell'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Charlie', 'last_name': 'Liang', 'permalink': 'charlie-liang'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Rich', 'last_name': 'Wan', 'permalink': 'rich-wan'}}, {'is_past': True, 'title': 'Head of Mobile', 'person': {'first_name': 'Leon', 'last_name': 'Zhao', 'permalink': 'leon-zhao'}}, {'is_past': True, 'title': 'Industry Director', 'person': {'first_name': 'Russ', 'last_name': 'Laraway', 'permalink': 'russ-laraway'}}, {'is_past': True, 'title': 'Ad Operations Analyst', 'person': {'first_name': 'Rich', 'last_name': 'Armstrong', 'permalink': 'rich-armstrong'}}, {'is_past': True, 'title': 'Marketing Director, Asia Pacific', 'person': {'first_name': 'Marvin', 'last_name': 'Chow', 'permalink': 'marvin-chow'}}, {'is_past': True, 'title': 'Product Lead', 'person': {'first_name': 'Chris', 'last_name': 'Shepard', 'permalink': 'chris-shepard'}}, {'is_past': True, 'title': 'Managing Director, Google.org', 'person': {'first_name': 'Gregory', 'last_name': 'Miller', 'permalink': 'gregory-miller'}}, {'is_past': True, 'title': 'Head of Android Product Marketing, APAC', 'person': {'first_name': 'Jonathan', 'last_name': 'Matus', 'permalink': 'joanthan-matus'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Justin', 'last_name': 'Abrahms', 'permalink': 'justin-abrahms'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'Cameron', 'last_name': 'Adams', 'permalink': 'cameron-adams'}}, {'is_past': True, 'title': 'Group Product Manager, Places for Business', 'person': {'first_name': 'Joe', 'last_name': 'Wolf', 'permalink': 'joe-wolf'}}, {'is_past': True, 'title': 'Search Engineer', 'person': {'first_name': 'David', 'last_name': 'Leach', 'permalink': 'david-leach'}}, {'is_past': True, 'title': 'Search Quality specialist', 'person': {'first_name': 'Andre', 'last_name': 'Weyher', 'permalink': 'andre-weyher'}}, {'is_past': True, 'title': 'Engineering Intern', 'person': {'first_name': 'Aravinth', 'last_name': 'Bheemaraj', 'permalink': 'aravinth-bheemaraj'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Jared', 'last_name': 'Fliesler', 'permalink': 'jared-fliesler'}}, {'is_past': True, 'title': 'Senior Account Strategist', 'person': {'first_name': 'Joaquin', 'last_name': 'Muro', 'permalink': 'joaquin-muro'}}, {'is_past': True, 'title': 'Head of Search Solutions, Americas', 'person': {'first_name': 'Paul', 'last_name': 'Sternhell', 'permalink': 'paul-sternhell'}}, {'is_past': True, 'title': 'Staff Software Engineer / TLM', 'person': {'first_name': 'Jeff', 'last_name': 'Raubitschek', 'permalink': 'jeff-raubitschek'}}, {'is_past': True, 'title': 'New Business Development Manager', 'person': {'first_name': 'Charles', 'last_name': 'Hudson', 'permalink': 'charles-hudson'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Nassar', 'last_name': 'Stoertz', 'permalink': 'nassar-stoertz'}}, {'is_past': True, 'title': 'Industry Leader Media & Entertainment', 'person': {'first_name': 'Joel', 'last_name': 'Berger', 'permalink': 'joel-berger'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Neeraj', 'last_name': 'Agrawal', 'permalink': 'neeraj-agrawal'}}, {'is_past': True, 'title': 'Engagement Team Manager', 'person': {'first_name': 'Michael', 'last_name': 'Powers', 'permalink': 'michael-powers'}}, {'is_past': True, 'title': 'Researcher, Manager', 'person': {'first_name': 'Amit', 'last_name': 'Singh', 'permalink': 'amit-singh-4'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Abraham', 'last_name': 'Shafi', 'permalink': 'abraham-shafi'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Boris', 'last_name': 'Babenko', 'permalink': 'boris-babenko'}}, {'is_past': True, 'title': 'Consumer Operations Intern', 'person': {'first_name': 'Michael', 'last_name': 'Schrader', 'permalink': 'michael-schrader'}}, {'is_past': True, 'title': 'Engineering Intern', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian-2'}}, {'is_past': True, 'title': 'Business Manager', 'person': {'first_name': 'Shawn', 'last_name': 'Lim', 'permalink': 'shawn-lim'}}, {'is_past': True, 'title': 'Offboarding', 'person': {'first_name': 'Scott', 'last_name': 'Becker', 'permalink': 'scott-becker'}}, {'is_past': True, 'title': 'Head of SMB Acquisition Marketing, APAC', 'person': {'first_name': 'Daisuke', 'last_name': 'Sasaki', 'permalink': 'daisuke-sasaki'}}, {'is_past': True, 'title': 'Head of Revenue Operations, Youtube and Google, JAPAC', 'person': {'first_name': 'Anna', 'last_name': 'Nguyen', 'permalink': 'anna-nguyen-2'}}, {'is_past': True, 'title': 'Team Lead - CPG', 'person': {'first_name': 'Rob', 'last_name': 'Sprungman', 'permalink': 'rob-sprungman'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Elizabeth', 'last_name': 'Yin', 'permalink': 'elizabeth-yin'}}, {'is_past': True, 'title': 'Lead Recruiter', 'person': {'first_name': 'Mike', 'last_name': 'Smith', 'permalink': 'mike-smith-7'}}, {'is_past': True, 'title': 'Group Product Manager, Personalized Products', 'person': {'first_name': 'Dan', 'last_name': 'Cohen', 'permalink': 'dan-cohen'}}, {'is_past': True, 'title': 'Director Engineering', 'person': {'first_name': 'Glenn', 'last_name': 'Morten', 'permalink': 'glenn-morten'}}, {'is_past': True, 'title': 'Global Head of Product Management, Shopping & Product Ads', 'person': {'first_name': 'Jennifer', 'last_name': 'Dulski', 'permalink': 'jennifer-dulski'}}, {'is_past': True, 'title': 'Strategic Product Partnerships Manager', 'person': {'first_name': 'Karishma', 'last_name': 'Shah', 'permalink': 'karishma-shah-2'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Paul', 'last_name': 'Rogers', 'permalink': 'paul-rogers-7'}}, {'is_past': True, 'title': 'Senior Technology Program Manager & Product Manager', 'person': {'first_name': 'Piyush', 'last_name': 'Mangalick', 'permalink': 'piyush-mangalick'}}, {'is_past': True, 'title': 'Head, VAS Partnerships - Google Wallet', 'person': {'first_name': 'Aunkur', 'last_name': 'Arya', 'permalink': 'aunkur-arya'}}, {'is_past': True, 'title': 'Contract Recruiter', 'person': {'first_name': 'KYLENE', 'last_name': 'BARKER', 'permalink': 'kylene-barker'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'John', 'last_name': 'Giacamoni', 'permalink': 'john-giacamoni'}}, {'is_past': True, 'title': 'Staff Software Engineer', 'person': {'first_name': 'Justin', 'last_name': 'Legakis', 'permalink': 'justin-legakis'}}, {'is_past': True, 'title': 'Senior Account Manager', 'person': {'first_name': 'KR', 'last_name': 'Song', 'permalink': 'kr-song'}}, {'is_past': True, 'title': 'Head of User Experience', 'person': {'first_name': 'Irene', 'last_name': 'Au', 'permalink': 'irene-au'}}, {'is_past': True, 'title': 'PMM', 'person': {'first_name': 'Raj', 'last_name': 'Sarkar', 'permalink': 'raj-sarkar'}}, {'is_past': True, 'title': 'Mobile Partnership Intern', 'person': {'first_name': 'Andre', 'last_name': 'Albuquerque', 'permalink': 'andre-albuquerque'}}, {'is_past': True, 'title': 'AdWords Representative', 'person': {'first_name': 'Saad', 'last_name': 'Munif', 'permalink': 'saad-munif'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Tali', 'last_name': 'Saar', 'permalink': 'tali-saar'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Terry (Qing)', 'last_name': 'Li', 'permalink': 'terry-qing-li'}}, {'is_past': True, 'title': 'Business Product Manager, Localization', 'person': {'first_name': 'Ignacio', 'last_name': 'Salas', 'permalink': 'ignacio-salas'}}, {'is_past': True, 'title': 'Team Manager, Commerce and Analytics', 'person': {'first_name': 'Bill', 'last_name': 'Masterson', 'permalink': 'bill-masterson-2'}}, {'is_past': True, 'title': 'Director, Predicitve Modeling - Ads', 'person': {'first_name': 'Adam', 'last_name': 'Ghobarah', 'permalink': 'adam-ghobarah'}}, {'is_past': True, 'title': 'Quantitative Marketing Manager', 'person': {'first_name': 'Choongsoon', 'last_name': 'Bae', 'permalink': 'choongsoon-bae'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'John', 'last_name': 'Zeratsky', 'permalink': 'john-zeratsky'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Lem', 'last_name': 'Diaz', 'permalink': 'lem-diaz'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Reuben', 'last_name': 'Antman', 'permalink': 'reuben-antman'}}, {'is_past': True, 'title': 'Global People Operations', 'person': {'first_name': 'Carrie', 'last_name': 'Farrell', 'permalink': 'carrie-farrell'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Stritar', 'permalink': 'jon-stritar'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Lucy', 'last_name': 'Zhang', 'permalink': 'lucy-zhang'}}, {'is_past': True, 'title': 'Senior Staff Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Perlow', 'permalink': 'jonathan-perlow'}}, {'is_past': True, 'title': 'advertising sales team', 'person': {'first_name': 'Shital', 'last_name': 'Chheda', 'permalink': 'shital-chheda'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Mandal', 'permalink': 'rishi-mandal'}}, {'is_past': True, 'title': 'UX Manager', 'person': {'first_name': 'Scott', 'last_name': 'Jenson', 'permalink': 'scott-jenson'}}, {'is_past': True, 'title': 'Datacenter Site Director', 'person': {'first_name': 'Jeff', 'last_name': 'Layton', 'permalink': 'jeff-layton'}}, {'is_past': True, 'title': 'New Business Development', 'person': {'first_name': 'Petteri', 'last_name': 'Koponen', 'permalink': 'petteri-koponen'}}, {'is_past': True, 'title': 'Director, Global Sales & Operations Strategy', 'person': {'first_name': 'John', 'last_name': 'Barabino', 'permalink': 'john-barabino'}}, {'is_past': True, 'title': 'TL', 'person': {'first_name': 'Wayne', 'last_name': 'Pan', 'permalink': 'wayne-pan'}}, {'is_past': True, 'title': 'Senior Visual Designer', 'person': {'first_name': 'Kai', 'last_name': 'Gradert', 'permalink': 'kai-gradert-2'}}, {'is_past': True, 'title': 'Head of Mobile Advertising Platform Strategy and Sales', 'person': {'first_name': 'Clay', 'last_name': 'Kellogg', 'permalink': 'clay-kellogg'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Rod', 'last_name': 'Begbie', 'permalink': 'rod-begbie'}}, {'is_past': True, 'title': 'Director, Mobile', 'person': {'first_name': 'Jason', 'last_name': 'Spero', 'permalink': 'jason-spero'}}, {'is_past': True, 'title': 'Director, Mobile', 'person': {'first_name': 'Jeff', 'last_name': 'Merkel', 'permalink': 'jeff-merkel'}}, {'is_past': True, 'title': 'Corporate Development', 'person': {'first_name': 'Chi-Hua', 'last_name': 'Chien', 'permalink': 'chi-hua-chien'}}, {'is_past': True, 'title': 'Search Quality', 'person': {'first_name': 'Adi', 'last_name': 'Goradia', 'permalink': 'adi-goradia'}}, {'is_past': True, 'title': 'Communications, Public Affairs, Public Relations', 'person': {'first_name': 'Ricardo', 'last_name': 'Reyes', 'permalink': 'ricardo-reyes'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Jen', 'last_name': 'Grant', 'permalink': 'jen-grant'}}, {'is_past': True, 'title': 'Senior Engineering Director', 'person': {'first_name': 'Sam', 'last_name': 'Schillace', 'permalink': 'sam-schillace'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Khaitan', 'permalink': 'rishi-khaitan'}}, {'is_past': True, 'title': 'User Interface Designer', 'person': {'first_name': 'Cameron', 'last_name': 'Adams', 'permalink': 'cameron-adams'}}, {'is_past': True, 'title': 'Tech Lead', 'person': {'first_name': 'Jochen', 'last_name': 'Bekmann', 'permalink': 'jochen-bekmann'}}, {'is_past': True, 'title': 'Global Industry Relations', 'person': {'first_name': 'Jonathan', 'last_name': 'Perelman', 'permalink': 'jonathan-perelman'}}, {'is_past': True, 'title': 'Customer Insights Analyst', 'person': {'first_name': 'Amy', 'last_name': 'Kiefer', 'permalink': 'amy-kiefer'}}, {'is_past': True, 'title': 'Global Head, Content Operations at YouTube', 'person': {'first_name': 'Tom', 'last_name': 'Pickett', 'permalink': 'tom-pickett'}}, {'is_past': True, 'title': 'EMEA Founding Member', 'person': {'first_name': 'Rohit', 'last_name': 'Kumar', 'permalink': 'rohit-kumar'}}, {'is_past': True, 'title': 'Site Director', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'Software Engineer Intern', 'person': {'first_name': 'David', 'last_name': 'Richardson', 'permalink': 'david-richardson'}}, {'is_past': True, 'title': 'Director of Strategic Partnerships, Director of New Media', 'person': {'first_name': 'Crid', 'last_name': 'Yu', 'permalink': 'crid-yu'}}, {'is_past': True, 'title': 'Senior Director, Product Management and Engineering, Mobile Applications Lab', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Dan', 'last_name': 'Siroker', 'permalink': 'dan-siroker'}}, {'is_past': True, 'title': 'Managing Director - Media and Platforms Market Development', 'person': {'first_name': 'Matt', 'last_name': 'Ackley', 'permalink': 'matt-ackley'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Spiro', 'permalink': 'rob-spiro'}}, {'is_past': True, 'title': 'Sales Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Pickhardt', 'permalink': 'jeff-pickhardt'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Florence', 'last_name': 'Thinh', 'permalink': 'florence-thinh'}}, {'is_past': True, 'title': 'Director, Sales Strategy & Operations, Americas', 'person': {'first_name': 'Patricia', 'last_name': 'Severynse', 'permalink': 'patricia-severynse'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Birken', 'permalink': 'dan-birken'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Michael', 'last_name': 'Todd', 'permalink': 'michael-todd'}}, {'is_past': True, 'title': 'Googler', 'person': {'first_name': 'Chuck', 'last_name': 'McManis', 'permalink': 'chuck-mcmanis'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Kevin', 'last_name': 'Scott', 'permalink': 'kevin-scott'}}, {'is_past': True, 'title': 'Strategic Partner Development Manager', 'person': {'first_name': 'John', 'last_name': 'Lagerling', 'permalink': 'john-lagerling'}}, {'is_past': True, 'title': 'Senior Scientist', 'person': {'first_name': 'Vibhu', 'last_name': 'Mittal', 'permalink': 'vibhu-mittal'}}, {'is_past': True, 'title': 'Senior Product Manager, Google Talk', 'person': {'first_name': 'Chris', 'last_name': 'Szeto', 'permalink': 'chris-szeto'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Amit', 'last_name': 'Aggarwal', 'permalink': 'amit-aggarwal'}}, {'is_past': True, 'title': 'Head of Product, YouTube on TV', 'person': {'first_name': 'Thomas', 'last_name': 'Purnell-Fisher', 'permalink': 'thomas-purnell-fisher'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Geir', 'last_name': 'Engdahl', 'permalink': 'geir-engdahl'}}, {'is_past': True, 'title': 'Strategic Partner Development, Content Acquisition', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sanjeev', 'last_name': 'Singh', 'permalink': 'sanjeev-singh'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Haley', 'last_name': 'Barrile', 'permalink': 'haley-barrile'}}, {'is_past': True, 'title': 'Head of Mobile Partnerships', 'person': {'first_name': 'Laurence', 'last_name': 'Aderemi', 'permalink': 'laurence-aderemi'}}, {'is_past': True, 'title': 'Product Guy', 'person': {'first_name': 'Mohammed', 'last_name': 'Abdoolcarim', 'permalink': 'mohammed-abdoolcarim'}}, {'is_past': True, 'title': 'Director, Sales Operations, North America, Director, Global Sales & Operations Strategy, Director, Content Media Group', 'person': {'first_name': 'Kurt', 'last_name': 'Abrahamson', 'permalink': 'kurt-abrahamson'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Deborah', 'last_name': 'Powsner', 'permalink': 'deborah-powsner'}}, {'is_past': True, 'title': 'Global Communications and Public Affairs', 'person': {'first_name': 'Steffi', 'last_name': 'Wu', 'permalink': 'steffi-wu'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Wells', 'permalink': 'mike-wells'}}, {'is_past': True, 'title': 'Senior Sales Manager', 'person': {'first_name': 'Derek', 'last_name': 'Kuhl', 'permalink': 'derek-kuhl'}}, {'is_past': True, 'title': 'Senior Business Analyst MBA Intern', 'person': {'first_name': 'Jonathan', 'last_name': 'Taqqu', 'permalink': 'jonathan-taqqu'}}, {'is_past': True, 'title': 'Strategic Publishing Manager France', 'person': {'first_name': 'Stefan', 'last_name': 'Lechere', 'permalink': 'stefan-lechere'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Peterson', 'permalink': 'brian-peterson'}}, {'is_past': True, 'title': 'Manager, Partnership Development', 'person': {'first_name': 'Steve', 'last_name': 'Roach', 'permalink': 'steve-roach'}}, {'is_past': True, 'title': 'Principle Technology Specialist', 'person': {'first_name': 'Jason', 'last_name': 'Hines', 'permalink': 'jason-hines'}}, {'is_past': True, 'title': 'Emerging Business Lead, GeoCommerce', 'person': {'first_name': 'Jeremy', 'last_name': 'Arnon', 'permalink': 'jeremy-arnon'}}, {'is_past': True, 'title': 'Online Sales & Operations MBA Intern', 'person': {'first_name': 'Kent', 'last_name': 'Bennett', 'permalink': 'kent-bennett'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Hisham', 'last_name': 'Zarka', 'permalink': 'hisham-zarka'}}, {'is_past': True, 'title': 'Sales & Marketing Consultant', 'person': {'first_name': 'Hristo', 'last_name': 'Odiseev', 'permalink': 'hristo-odiseev'}}, {'is_past': True, 'title': 'Monetization Specialist', 'person': {'first_name': 'Adam', 'last_name': 'Klee', 'permalink': 'adam-klee'}}, {'is_past': True, 'title': 'Online Operations Associate', 'person': {'first_name': 'Mike', 'last_name': 'Winters', 'permalink': 'mike-winters'}}, {'is_past': True, 'title': 'Business Associate (MBA Intern), Advertising Monetization Strategy', 'person': {'first_name': 'Randall', 'last_name': 'Lloyd', 'permalink': 'randall-lloyd'}}, {'is_past': True, 'title': 'Student Developer', 'person': {'first_name': 'Tim', 'last_name': 'Jurka', 'permalink': 'tim-jurka'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Ian', 'last_name': 'MacKinnon', 'permalink': 'ian-mackinnon-2'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Farooq', 'last_name': 'Mela', 'permalink': 'farooq-mela'}}, {'is_past': True, 'title': 'senior marketing positions', 'person': {'first_name': 'Yvonne', 'last_name': 'Chien', 'permalink': 'yvonne-chien'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Axel', 'last_name': 'Hansen', 'permalink': 'axel-hansen'}}, {'is_past': True, 'title': 'Search', 'person': {'first_name': 'Bruce', 'last_name': 'Witz', 'permalink': 'bruce-witz-2'}}, {'is_past': True, 'title': 'Technical Lead', 'person': {'first_name': 'Mike', 'last_name': 'Sego', 'permalink': 'mike-sego'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Michael', 'last_name': 'Barrett', 'permalink': 'michael-barrett'}}, {'is_past': True, 'title': 'Member Technical Staff', 'person': {'first_name': 'Bruce', 'last_name': 'Karsh', 'permalink': 'bruce-karsh'}}, {'is_past': True, 'title': 'Associate Product Manager - Google API Infrastructure', 'person': {'first_name': 'Anton', 'last_name': 'Lopyrev', 'permalink': 'anton-lopyrev'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Prabhdeep', 'last_name': 'Gill', 'permalink': 'prabhdeep-gill'}}, {'is_past': True, 'title': 'Sales Finance Development Manager', 'person': {'first_name': 'Randy', 'last_name': 'Meech', 'permalink': 'randy-meech'}}, {'is_past': True, 'title': 'Data Acquisition Representative for Google Earth', 'person': {'first_name': 'Lily', 'last_name': 'Cheng', 'permalink': 'lily-cheng'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Douwe', 'last_name': 'Osinga', 'permalink': 'douwe-osinga'}}, {'is_past': True, 'title': 'Web Specialist', 'person': {'first_name': 'Thomas', 'last_name': 'Leidinger', 'permalink': 'thomas-leidinger'}}, {'is_past': True, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Scott', 'last_name': 'Crosby', 'permalink': 'scott-crosby'}}, {'is_past': True, 'title': 'Western Advertising Director', 'person': {'first_name': 'Peter', 'last_name': \"O'Sullivan\", 'permalink': 'peter-osullivan'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Ryan', 'last_name': 'Rawson', 'permalink': 'ryan-rawson'}}, {'is_past': True, 'title': 'User Experience Designer', 'person': {'first_name': 'Willem', 'last_name': 'Van Lancker', 'permalink': 'willem-van-lancker'}}, {'is_past': True, 'title': 'Account Manager', 'person': {'first_name': 'Soo', 'last_name': 'Jin Oh', 'permalink': 'soo-jin-oh'}}, {'is_past': True, 'title': 'eCommerce GM / Product Management Director', 'person': {'first_name': 'Ben', 'last_name': 'Ling', 'permalink': 'ben-ling'}}, {'is_past': True, 'title': 'OSO', 'person': {'first_name': 'Tal', 'last_name': 'Riesenfeld', 'permalink': 'tal-riesenfeld'}}, {'is_past': True, 'title': 'Finance Manager', 'person': {'first_name': 'Eric', 'last_name': 'Kim', 'permalink': 'eric-kim-3'}}, {'is_past': True, 'title': 'Head of Consumer Payments', 'person': {'first_name': 'Vikas', 'last_name': 'Gupta', 'permalink': 'vikas-gupta'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Adam', 'last_name': 'Wooley', 'permalink': 'adam-wooley'}}, {'is_past': True, 'title': 'Product Manager, Google Chrome', 'person': {'first_name': 'Nick', 'last_name': 'Baum', 'permalink': 'nick-baum'}}, {'is_past': True, 'title': 'Associate Program Manager', 'person': {'first_name': 'Maria', 'last_name': 'Ly', 'permalink': 'maria-ly'}}, {'is_past': True, 'title': 'Executive Assistant to Executive Director', 'person': {'first_name': 'Sadie', 'last_name': 'Ferguson', 'permalink': 'sadie-ferguson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Eric', 'last_name': 'Peng', 'permalink': 'eric-peng'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Adam', 'last_name': 'Smith', 'permalink': 'adam-smith-9'}}, {'is_past': True, 'title': 'Product Lead International Search and Search Quality', 'person': {'first_name': 'Sakina', 'last_name': 'Arsiwala', 'permalink': 'sakina-arsiwala'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Robert', 'last_name': 'Moffat', 'permalink': 'robert-moffat'}}, {'is_past': True, 'title': 'eCommerce Senior Project Manager, EMEA', 'person': {'first_name': 'Graham', 'last_name': 'Cooke', 'permalink': 'graham-cooke'}}, {'is_past': True, 'title': 'Web Solutions Engineer', 'person': {'first_name': 'Russell', 'last_name': 'Middleton', 'permalink': 'russell-middleton'}}, {'is_past': True, 'title': 'Managing Director, Enterprise Marketing Strategy', 'person': {'first_name': 'Brian', 'last_name': 'Giacomin', 'permalink': 'brian-giacomin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Abhishek', 'last_name': 'Poddar', 'permalink': 'abhishek-poddar'}}, {'is_past': True, 'title': 'Investments Principal, Google.org, Head of Business Development, China, Head of Patents', 'person': {'first_name': 'Karl', 'last_name': 'Sun', 'permalink': 'karl-sun'}}, {'is_past': True, 'title': 'Key Account Manager', 'person': {'first_name': 'Adrian', 'last_name': 'Cernat', 'permalink': 'adrian-cernat'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Adam', 'last_name': 'Hilss', 'permalink': 'adam-hills'}}, {'is_past': True, 'title': \"Men's Clothing, Style, & Fashion Consultant\", 'person': {'first_name': 'Antonio', 'last_name': 'Centeno', 'permalink': 'antonio-centeno'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'Teo', 'permalink': 'jonathan-teo-2'}}, {'is_past': True, 'title': 'Lead Product Manager, Google+ Mobile', 'person': {'first_name': 'Anish', 'last_name': 'Acharya', 'permalink': 'anish-acharya'}}, {'is_past': True, 'title': 'UX Manager', 'person': {'first_name': 'Jake', 'last_name': 'Knapp', 'permalink': 'jake-knapp'}}, {'is_past': True, 'title': 'Associate Product Manager Intern', 'person': {'first_name': 'RJ', 'last_name': 'Walsh', 'permalink': 'rj-walsh'}}, {'is_past': True, 'title': 'Strategist', 'person': {'first_name': 'Naz', 'last_name': 'Ozertugrul', 'permalink': 'naz-ozertugrul'}}, {'is_past': True, 'title': 'Head of Career Development & Mobility - Global Sales', 'person': {'first_name': 'Dan', 'last_name': 'Hynes', 'permalink': 'dan-hynes'}}, {'is_past': True, 'title': 'Policy Manager Africa', 'person': {'first_name': 'Ory', 'last_name': 'Okolloh', 'permalink': 'ory-okolloh'}}, {'is_past': True, 'title': 'Principal', 'person': {'first_name': 'David', 'last_name': 'Lee', 'permalink': 'david-lee'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Suken', 'last_name': 'Vakil', 'permalink': 'suken-vakil'}}, {'is_past': True, 'title': 'Global Head of Product, Google Ads Measurement', 'person': {'first_name': 'Amy', 'last_name': 'Chang', 'permalink': 'amy-chang'}}, {'is_past': True, 'title': 'Software Engineer in Test', 'person': {'first_name': 'Venkatesan', 'last_name': 'Sundramurthy', 'permalink': 'venkatesan-sundramurthy'}}, {'is_past': True, 'title': 'Business Product Management, Google Earth / Maps', 'person': {'first_name': 'Noah', 'last_name': 'Doyle', 'permalink': 'noah-doyle'}}, {'is_past': True, 'title': 'Interaction Designer, Google News', 'person': {'first_name': 'Srividya', 'last_name': 'Sriram', 'permalink': 'srividya-sriram'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Navneet', 'last_name': 'Loiwal', 'permalink': 'navneet-loiwal'}}, {'is_past': True, 'title': 'MD Media Platforms (EMEA)', 'person': {'first_name': 'Ben', 'last_name': 'Regensburger', 'permalink': 'ben-regensburger'}}, {'is_past': True, 'title': 'Head of Platforms - JAPAC', 'person': {'first_name': 'Kaylie', 'last_name': 'Smith', 'permalink': 'kaylie-smith'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Mukund', 'last_name': 'Jha', 'permalink': 'mukund-jha'}}, {'is_past': True, 'title': 'Corporate Controller', 'person': {'first_name': 'Pietro', 'last_name': 'Dova', 'permalink': 'pietro-dova'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Jassim', 'last_name': 'Latif', 'permalink': 'jassim-latif'}}, {'is_past': True, 'title': 'Counsel for Advanced Networks', 'person': {'first_name': 'Kenneth', 'last_name': 'Carter', 'permalink': 'kenneth-carter-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Shannon', 'last_name': 'Bauman', 'permalink': 'shannon-bauman'}}, {'is_past': True, 'title': 'Quality rater', 'person': {'first_name': 'Roberto', 'last_name': 'Chibbaro', 'permalink': 'roberto-chibbaro'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Sadik', 'last_name': 'Kapadia', 'permalink': 'sadik-kapadia'}}, {'is_past': True, 'title': 'Associate Product Manager', 'person': {'first_name': 'Shaun', 'last_name': 'Seo', 'permalink': 'shaun-seo'}}, {'is_past': True, 'title': 'Product Manager and Engineer', 'person': {'first_name': 'Jamie', 'last_name': 'Davidson', 'permalink': 'jamie-davidson-2'}}, {'is_past': True, 'title': 'Recruiting', 'person': {'first_name': 'Ying', 'last_name': 'Fu', 'permalink': 'ying-fu'}}, {'is_past': True, 'title': 'Various Senior Finance Management Roles', 'person': {'first_name': 'Pinakin', 'last_name': 'Sheth', 'permalink': 'pinakin-sheth'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Gareth Paul', 'last_name': 'Jones', 'permalink': 'gareth-paul-jones'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Francis', 'last_name': 'Pedraza', 'permalink': 'francis-pedraza'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': 'Strategy Analyst', 'person': {'first_name': 'Jamie', 'last_name': 'Shah', 'permalink': 'jamie-shah'}}, {'is_past': True, 'title': 'APMM', 'person': {'first_name': 'Chris', 'last_name': 'Sell', 'permalink': 'chris-sell'}}, {'is_past': True, 'title': 'Business Product Manager', 'person': {'first_name': 'Jack', 'last_name': 'Russell', 'permalink': 'jack-russell'}}, {'is_past': True, 'title': 'Global Marketing Director', 'person': {'first_name': 'Patrick', 'last_name': 'Mork', 'permalink': 'patrick-mork'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Oliver', 'last_name': 'Deighton', 'permalink': 'oliver-deighton'}}, {'is_past': True, 'title': 'Bandaid SRE', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'Ex-Product Manager', 'person': {'first_name': 'Pierre', 'last_name': 'Lebeau', 'permalink': 'pierre-lebeau'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Byttow', 'permalink': 'david-byttow'}}, {'is_past': True, 'title': 'Director of Emerging Business', 'person': {'first_name': 'Emily', 'last_name': 'White', 'permalink': 'emily-white'}}, {'is_past': True, 'title': 'Member, Google Docs Team', 'person': {'first_name': 'Anthony', 'last_name': 'Glenning', 'permalink': 'anthony-glenning'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Matt', 'last_name': 'Mohebbi', 'permalink': 'matt-mohebbi'}}, {'is_past': True, 'title': 'Product', 'person': {'first_name': 'Henry', 'last_name': 'Modisett', 'permalink': 'henry-modisett'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Luanne', 'last_name': 'Calvert', 'permalink': 'luanne-calvert'}}], 'competitions': [{'competitor': {'name': 'Technorati', 'permalink': 'technorati'}}, {'competitor': {'name': 'IceRocket', 'permalink': 'icerocket'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Aductions', 'permalink': 'aductions'}}, {'competitor': {'name': 'Zoho', 'permalink': 'zoho'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Danger', 'permalink': 'danger'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'SlideRocket', 'permalink': 'sliderocket'}}, {'competitor': {'name': 'EveryScape', 'permalink': 'everyscape'}}, {'competitor': {'name': 'Jivox', 'permalink': 'jivox'}}, {'competitor': {'name': 'Tencent', 'permalink': 'tencent'}}, {'competitor': {'name': 'PriorSmart', 'permalink': 'priorsmart'}}, {'competitor': {'name': 'Hurdan', 'permalink': 'better-searcher'}}, {'competitor': {'name': 'Powerset', 'permalink': 'powerset'}}, {'competitor': {'name': 'Baidu', 'permalink': 'baidu'}}, {'competitor': {'name': 'Zenbe', 'permalink': 'zenbe'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'Nordic River', 'permalink': 'textflow'}}, {'competitor': {'name': 'Pixsta', 'permalink': 'pixsta'}}, {'competitor': {'name': 'JellyCloud', 'permalink': 'jellycloud'}}, {'competitor': {'name': 'Yandex', 'permalink': 'yandex'}}, {'competitor': {'name': 'Thinkfree', 'permalink': 'thinkfree'}}, {'competitor': {'name': 'Twitoosearch', 'permalink': 'twitoosearch'}}, {'competitor': {'name': 'Discovery Mining', 'permalink': 'discovery-mining'}}, {'competitor': {'name': 'AdECN', 'permalink': 'adecn'}}, {'competitor': {'name': 'Kedrix', 'permalink': 'kedrix'}}, {'competitor': {'name': 'fefoo', 'permalink': 'fefoo'}}, {'competitor': {'name': '280 North', 'permalink': '280-north'}}, {'competitor': {'name': 'Collecta', 'permalink': 'collecta'}}, {'competitor': {'name': 'Rocket Fuel', 'permalink': 'rocket-fuel'}}, {'competitor': {'name': 'SachaWorld', 'permalink': 'sachaworld'}}, {'competitor': {'name': 'HipChat', 'permalink': 'hipchat'}}, {'competitor': {'name': 'Mail.com Media Corporation', 'permalink': 'mail-com-media-corporation'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Rockmelt', 'permalink': 'rockmelt'}}, {'competitor': {'name': 'Ness Computing', 'permalink': 'ness-computing'}}, {'competitor': {'name': 'just.me', 'permalink': 'justme'}}, {'competitor': {'name': 'Twiddle', 'permalink': 'twiddle'}}, {'competitor': {'name': 'Cybozu, Inc.', 'permalink': 'cybozu-inc'}}, {'competitor': {'name': 'MapQuest', 'permalink': 'mapquest'}}], 'providerships': [{'title': 'Public Relations (APAC)', 'is_past': False, 'provider': {'name': 'The Hoffman Agency', 'permalink': 'the-hoffman-agency'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Simple IT', 'permalink': 'simple-it'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Baker & McKenzie', 'permalink': 'baker-mckenzie'}}, {'title': '', 'is_past': False, 'provider': {'name': 'btrax', 'permalink': 'btrax'}}], 'total_money_raised': '$555M', 'funding_rounds': [{'id': 380, 'round_code': 'angel', 'source_url': 'http://www.google.com/corporate/history.html', 'source_description': '', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 1998, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Andy', 'last_name': 'Bechtolsheim', 'permalink': 'andy-bechtolsheim'}}]}, {'id': 381, 'round_code': 'a', 'source_url': 'http://www.google.com/corporate/history.html', 'source_description': '', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 6, 'funded_day': 7, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 59722, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1288776/000128877610000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 530082792, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 8, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://23andme.com/press.html', 'source_description': '', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': 1, 'company': {'name': '23andMe', 'permalink': '23andme'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.teslamotors.com/media/press_room.php?id=54', 'source_description': '', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Tesla Motors', 'permalink': 'tesla-motors'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.lightreading.com/document.asp?doc_id=88186', 'source_description': 'LightReading', 'raised_amount': 18000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 6, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://english.martinvarsavsky.net/fon/fon-has-raised-another-10-million-euros-to-grow-its-wifi-community-around-the-world.html', 'source_description': \"Founder's Blog\", 'raised_amount': 10000000, 'raised_currency_code': 'EUR', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 7, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.marketwatch.com/News/Story/Story.aspx?guid={BDC943CA-1936-4F19-9FDE-1DDC4D648178}', 'source_description': 'MarketWatch', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 6, 'funded_day': 18, 'company': {'name': 'Baidu', 'permalink': 'baidu'}}}, {'funding_round': {'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 6000000, 'raised_currency_code': 'EUR', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 10, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'post_ipo_equity', 'source_url': 'http://www.google.com/press/pressrel/twaol_expanded.html', 'source_description': \"Time Warner's AOL and Google to Expand Strategic Alliance \", 'raised_amount': 1000000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'AOL', 'permalink': 'aol'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://news.cnet.com/Google-invests-in-power-line-broadband/2100-1036_3-5777917.html', 'source_description': 'Google invests in power-line broadband', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 7, 'funded_day': 6, 'company': {'name': 'Current Communications Group', 'permalink': 'current-communications-group'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.nytimes.com/2007/01/05/technology/06googlecnd.html', 'source_description': 'Google Acquires Stake in Chinese Web Site', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 5, 'company': {'name': 'kankan', 'permalink': 'kankan'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2006/12/01/google-invests-less-than-1m-in-meraki-for-indoor-wifi/', 'source_description': 'http://venturebeat.com/2006/11/14/phonezoo-offers-free-extensive-ringtone-download-service/', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'Meraki', 'permalink': 'meraki'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2009/06/18/all-in-the-family-sergey-brin-loans-23andme-10-million-and-google-ponies-up-26-million/', 'source_description': 'All In the Family: Sergey Brin Loans 23andme $10 Million And Google Ponies Up $2.6 Million', 'raised_amount': 12600000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 18, 'company': {'name': '23andMe', 'permalink': '23andme'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://green.venturebeat.com/2008/08/23/makani-power-takes-in-5m-for-high-altitude-wind-energy/', 'source_description': 'Makani Power takes in $5M for high-altitude wind energy', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Makani Power', 'permalink': 'makani-power'}}}, {'funding_round': {'round_code': 'grant', 'source_url': 'http://venturebeat.com/2008/08/28/android-developer-challenge-i-winners-nary-a-big-name-in-sight', 'source_description': 'Android Developer Challenge 1 Winners ', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 4, 'company': {'name': 'Life360', 'permalink': 'life360'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.actacell.com/pressrelease', 'source_description': 'ActaCell Closes $5.8 Million Series A Financing; Investment Consortium Led By DFJ Mercury Includes Google.org, Applied Ventures and Good Energies ', 'raised_amount': 5800000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 22, 'company': {'name': 'Actacell', 'permalink': 'actacell'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://earth2tech.com/2008/07/25/aptera-raises-24m-for-electric-car-production/', 'source_description': 'Aptera Raises $24M for Electric Car Production', 'raised_amount': 24000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 25, 'company': {'name': 'Aptera', 'permalink': 'aptera'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.ubiquisys.com/ubiquisys3/pressreleases.php?id=42', 'source_description': ' Ubiquisys Secures B Round Funding for Breakthrough Femtocell Technology', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 20, 'company': {'name': 'Ubiquisys', 'permalink': 'ubiquisys'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://venturebeat.com/2007/11/07/navigenics-raises-more-than-25m-for-personal-genetics/', 'source_description': 'Navigenics raises more than $25M for personal genetics', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 7, 'company': {'name': 'Navigenics', 'permalink': 'navigenics'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/02/trialpay_backed.html', 'source_description': 'TrialPay Backed By Investors of Skype, Google, and Akamai For Payment Platform', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 20, 'company': {'name': 'TrialPay', 'permalink': 'trialpay'}}}, {'funding_round': {'round_code': 'post_ipo_equity', 'source_url': 'http://www.techcrunch.com/2008/05/06/32-billion-wimax-deal-goes-through-take-cover/', 'source_description': '$3.2 Billion WiMax Deal Goes Through. Take Cover.', 'raised_amount': 3200000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 6, 'company': {'name': 'Clearwire', 'permalink': 'clearwire'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.nytimes.com/2010/07/25/business/25zynga.html?_r=1&partner=rss&emc=rss&pagewanted=all', 'source_description': '', 'raised_amount': 300000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 14, 'company': {'name': 'Zynga', 'permalink': 'zynga'}}}, {'funding_round': {'round_code': 'grant', 'source_url': 'http://www.naturebridge.org/news/google-holiday-giving-includes-4-million-naturebridge-environmental-education', 'source_description': 'Google Holiday Giving Includes $4 Million to NatureBridge for Environmental Education', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 4, 'company': {'name': 'NatureBridge', 'permalink': 'naturebridge'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2011/04/11/brightsource-ivanpah-168-million-goog/', 'source_description': 'BrightSource Nabs $168 Million From Google To Develop Ivanpah Solar Power Plant In The Mojave', 'raised_amount': 168000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 11, 'company': {'name': 'BrightSource Energy', 'permalink': 'brightsource-energy'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/06/22/google-invests-102-million-more-into-californias-alta-wind-energy-center/', 'source_description': 'Google Invests $102 Million More Into California’s Alta Wind Energy Center', 'raised_amount': 102000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 22, 'company': {'name': 'Alta Wind Energy Center', 'permalink': 'alta-wind-energy-center'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://spacenews.com/satellite_telecom/101129-financing-o3b-constellation-closer.html', 'source_description': 'With $1.2B in Financing, O3b Constellation Closer to Reality', 'raised_amount': 410000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 30, 'company': {'name': 'O3b Networks', 'permalink': 'o3b-networks'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/05/21/machinima-youtube-35m/', 'source_description': 'Machinima Gets $35M In Funding, Led By Google', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 21, 'company': {'name': 'Machinima', 'permalink': 'machinima'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.bandwidthblog.com/2012/04/18/talking-to-google-umbono-funded-pashash-co-founder-faheem-kajee/', 'source_description': 'Talking to Google Umbono funded Pashash co-founder Faheem Kajee', 'raised_amount': 50000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Foundshopping.com', 'permalink': 'found-3'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2013/01/edf-renewable-energy-receives-approximately-200m-equity-investment-google.html', 'source_description': 'EDF Renewable Energy Receives Approximately $200M Equity Investment from Google', 'raised_amount': 200000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 10, 'company': {'name': 'EDF Renewable Energy', 'permalink': 'edf-renewable-energy'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://allthingsd.com/20130116/exclusive-surveymonkey-raises-850-million-in-debt-and-equity-for-tender-offer-including-new-investment-from-googles-new-late-stage-unit/', 'source_description': ' Exclusive: SurveyMonkey Raises $850 Million in Debt and Equity for Tender Offer — Including New Investment From Google’s New Late-Stage Unit', 'raised_amount': 450000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 16, 'company': {'name': 'SurveyMonkey', 'permalink': 'surveymonkey'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/05/01/readying-for-an-ipo-peer-to-peer-lending-marketplace-lending-club-raises-125m-from-google-and-others-at-1-6b-valuation/', 'source_description': 'Readying For An IPO, Peer-To-Peer Lending Marketplace Lending Club Raises $125M From Google And Others At $1.6B Valuation', 'raised_amount': 125000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Lending Club', 'permalink': 'lendingclub'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/12/retrofit-raises-additional-5m-financing.html', 'source_description': ' \\tRetrofit Raises Additional $5M in Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 20, 'company': {'name': 'Retrofit', 'permalink': 'retrofit'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 60000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/02/deal-is-confirmed-google-acquired-grandcentral/', 'source_description': 'Deal is Confirmed: Google Acquired GrandCentral', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'GrandCentral', 'permalink': 'grandcentral'}}, {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2007/05/23/100-million-payday-for-feedburner-this-deal-is-confirmed/', 'source_description': '$100 Million Payday For Feedburner – This Deal Is Confirmed', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'FeedBurner', 'permalink': 'feedburner'}}, {'price_amount': 102000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.clickz.com/showPage.html?page=3577791', 'source_description': 'Google Buys Into Radio', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'dMarc Broadcasting', 'permalink': 'dmarcbroadcasting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.infoworld.com/article/07/05/29/Google-buys-into-security_1.html', 'source_description': 'Google buys into security, acquires GreenBorder', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 29, 'company': {'name': 'GreenBorder', 'permalink': 'greenborder'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/10/09/google-takes-jaiku-to-the-altar/', 'source_description': 'Google buys Jaiku, Twitter losing ground', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 9, 'company': {'name': 'Jaiku', 'permalink': 'jaiku'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2006/10/31/google-acquires-wiki-company-jotspot/', 'source_description': 'Google Acquires Wiki Collaboration Company Jotspot', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.technewsworld.com/story/49851.html', 'source_description': 'Google Acquires Orion Search Algorithm', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 9, 'company': {'name': 'Orion', 'permalink': 'orion'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/List_of_Google_acquisitions', 'source_description': 'Wikipedia', 'acquired_year': 2003, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Neotonic Software', 'permalink': 'neotonic-software'}}, {'price_amount': 3100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://googleblog.blogspot.com/2008/03/weve-officially-acquired-doubleclick.html', 'source_description': \"We've officially acquired DoubleClick\", 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 11, 'company': {'name': 'DoubleClick', 'permalink': 'doubleclick'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.gizmodo.com.au/2011/08/googles-16-biggest-acquisitions-so-far-and-what-happened-to-them/', 'source_description': 'Android mobile platform, “up to” $US50 million (estimated)', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'Android', 'permalink': 'android'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2006/02/14/google-buys-measuremap/', 'source_description': 'Google Buys Measure Map', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 14, 'company': {'name': 'Measure Map', 'permalink': 'measure-map'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2007/05/31/google-to-buy-geo-tagging-site-panoramio/', 'source_description': ' Google to Buy Geo-Tagging Site Panoramio', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Panoramio', 'permalink': 'panoramio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 27, 'company': {'name': 'Keyhole.co', 'permalink': 'keyhole-co'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blog.quintura.com/2008/05/22/mangrove-capital-bets-on-russian-in-game-advertising/', 'source_description': 'Google acquired in-game advertising company Adscape for $23 million in February 2007.', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Adscape', 'permalink': 'adscape'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2007/06/19/google-acquires-zenter-to-fill-out-coming-powerpoint-application/', 'source_description': 'Google Acquires Zenter; Y Combinator Gets Another Payday', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Zenter', 'permalink': 'zenter'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.google.com/press/pressrel/pressrelease48.html', 'source_description': 'Google Acquires Usenet Discussion Service and Significant Assets from Deja.com', 'acquired_year': 2001, 'acquired_month': 2, 'acquired_day': 12, 'company': {'name': 'Deja', 'permalink': 'deja'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2001_Sept_20/ai_78429980', 'source_description': \"Google Acquires Technology Assets of Outride Inc.; Transaction Complements Google's Technology Development To Provide Search Results with Greater Relevance\", 'acquired_year': 2001, 'acquired_month': 9, 'acquired_day': 20, 'company': {'name': 'Outride', 'permalink': 'outride'}}, {'price_amount': 102000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://newsbreaks.infotoday.com/nbreader.asp?ArticleID=16713', 'source_description': 'Google Buys Applied Semantics ', 'acquired_year': 2003, 'acquired_month': 4, 'acquired_day': 23, 'company': {'name': 'Applied Semantics', 'permalink': 'applied-semantics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2003_Sept_30/ai_108316401', 'source_description': 'Google Acquires Kaltix Corp.; New Technologies and Engineering Team Complement Google Search Engine', 'acquired_year': 2003, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Kaltix', 'permalink': 'kaltix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.webpronews.com/topnews/2003/11/05/google-acquires-sprinks', 'source_description': 'Google Acquires Sprinks', 'acquired_year': 2003, 'acquired_month': 11, 'acquired_day': 5, 'company': {'name': 'Sprinks', 'permalink': 'sprinks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 10, 'acquired_day': 10, 'company': {'name': 'Genius Labs', 'permalink': 'genius-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.webpronews.com/topnews/2004/05/10/google-quietly-acquires-ignite-logic', 'source_description': 'Google Quietly Acquires Ignite Logic', 'acquired_year': 2004, 'acquired_month': 5, 'acquired_day': 10, 'company': {'name': 'Ignite Logic', 'permalink': 'ignite-logic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.clickz.com/showPage.html?page=3380451', 'source_description': 'Google Acquires Picasa', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 13, 'company': {'name': 'Picasa', 'permalink': 'picasa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.siliconbeat.com/entries/2005/03/30/google_acquires_traffic_info_startup_zipdash.html', 'source_description': 'Google acquires traffic info start-up Zipdash', 'acquired_year': 2004, 'acquired_month': 9, 'acquired_day': 10, 'company': {'name': 'ZipDash', 'permalink': 'zipdash'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blogs.smh.com.au/mashup/archives/010257.html', 'source_description': 'Google innovations, made in Australia', 'acquired_year': 2004, 'acquired_month': 10, 'acquired_day': 9, 'company': {'name': 'Where2', 'permalink': 'where2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.nytimes.com/2005/03/29/technology/29urchin.html', 'source_description': 'Google Acquires Urchin Software', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': 29, 'company': {'name': 'Urchin Software', 'permalink': 'urchin-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.informationweek.com/news/management/showArticle.jhtml?articleID=163101669', 'source_description': 'Google Acquires Mobile Social-Networking Company Dodgeball.com', 'acquired_year': 2005, 'acquired_month': 5, 'acquired_day': 11, 'company': {'name': 'Dodgeball', 'permalink': 'dodgeball'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/8301-10784_3-6024842-7.html', 'source_description': 'Google buys Canadian wireless-software company', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'Reqwireless', 'permalink': 'reqwireless'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://localtechwire.com/business/local_tech_wire/news/story/1126258/', 'source_description': 'Google Comes Out of the Shadows in N.C.: Search Engine Giant Has Software Operation in Chapel Hill', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Skia', 'permalink': 'skia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.google.com/press/pressrel/latam_office.html', 'source_description': 'Google Continues International Expansion, Opens Offices in Latin America', 'acquired_year': 2005, 'acquired_month': 11, 'acquired_day': 17, 'company': {'name': 'Akwan Information Technologies', 'permalink': 'akwan-information-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://digg.com/software/Google_acquires_Widget_Engine', 'source_description': 'Google acquires Widget Engine', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 27, 'company': {'name': 'Phatbits', 'permalink': 'phatbits'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'allPAY', 'permalink': 'allpay'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'bruNET', 'permalink': 'brunet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.infoworld.com/article/06/03/10/76316_HNgooglebuysupstartle_1.html', 'source_description': 'Google acquires online word processing app provider', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 9, 'company': {'name': 'Upstartle', 'permalink': 'upstartle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/Google-acquires-Last-Software/2100-1030_3-6049511.html', 'source_description': 'Google has acquired @Last Software, a 3D-design toolmaker and developer of the SketchUp software, the start-up announced Tuesday.', 'acquired_year': 2006, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': '@Last Software', 'permalink': 'last-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Pyra Labs', 'permalink': 'pyra-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businessreviewonline.com/os/archives/2006/06/google_acquires.html', 'source_description': 'Google acquires XL2Web, launches Google Spreadsheets', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': '2Web Technologies', 'permalink': '2web-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.seobythesea.com/?p=267', 'source_description': 'Google Acquires Neven Vision', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Neven Vision', 'permalink': 'neven-vision'}}, {'price_amount': 28000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://googlesystem.blogspot.com/2006/12/google-buys-endoxon.html', 'source_description': 'Google Buys Endoxon', 'acquired_year': 2006, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Endoxon', 'permalink': 'endoxon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://infosthetics.com/archives/2007/03/google_acquires_trendalyzer_gapminder.html', 'source_description': 'Google acquires Trendalyzer', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Trendalyzer', 'permalink': 'trendalyzer'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/04/17/googles-office-suite-complete-google-powerpoint-confirmed/', 'source_description': \"Google's Office Suite Complete: Google “PowerPointâ€\\x9d Confirmed\", 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 17, 'company': {'name': 'Tonic Systems', 'permalink': 'tonic-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/04/20/google-acquires-marratech-gets-into-webex-territory/', 'source_description': 'Google Acquires Marratech; Gets Into WebEx Territory', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Marratech', 'permalink': 'marratech'}}, {'price_amount': 20300000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.washingtonpost.com/wp-dyn/content/article/2008/03/25/AR2008032502201.html', 'source_description': 'Proxy Watch: Google: $1 Million Stake In Comsenz; $20 Million For Peakstream; Salaries; Human Rights', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'PeakStream', 'permalink': 'peakstream'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/21/google-acquires-imageamerica/', 'source_description': 'Google Acquires ImageAmerica', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'Image America, Inc.', 'permalink': 'image-america-inc'}}, {'price_amount': 625000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'source_description': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'Postini', 'permalink': 'postini'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/09/27/google-acquires-mobile-platform-operator-zingku/', 'source_description': 'Google Acquires Mobile Platform Operator Zingku', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 27, 'company': {'name': 'Zingku', 'permalink': 'zingku'}}, {'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/07/30/google-acquires-omnisio-to-spice-up-youtube/', 'source_description': 'Google Acquires Omnisio To Spice Up YouTube', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 30, 'company': {'name': 'Omnisio', 'permalink': 'omnisio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/09/12/google-buys-foothold-in-korea-with-acquisition-of-blog-platform-tnc/', 'source_description': 'TechCrunch', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'TNC', 'permalink': 'tnc'}}, {'price_amount': 1650000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2006/10/09/google-has-acquired-youtube/', 'source_description': 'Google has acquired YouTube', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'YouTube', 'permalink': 'youtube'}}, {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.washingtonpost.com/wp-dyn/content/article/2009/08/05/AR2009080501579.html', 'source_description': 'Google To Acquire Video Compression Developer On2 For $106.5 Million', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 19, 'company': {'name': 'On2 Technologies', 'permalink': 'on2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2009/09/16/google-acquires-recaptcha-to-power-scanning-for-google-books-and-google-news/', 'source_description': 'Google Acquires reCaptcha To Power Scanning For Google Books And Google News', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'reCAPTCHA', 'permalink': 'recaptcha'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/8301-13577_3-10040228-36.html', 'source_description': 'Google buys Korean blog platform TNC', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'TNC', 'permalink': 'tnc'}}, {'price_amount': 750000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2009/11/09/google-acquires-admob/', 'source_description': 'Google Acquires AdMob For $750 Million', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'AdMob', 'permalink': 'admob'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/11/09/exclusive-google-has-acquired-gizmo5/', 'source_description': 'Exclusive: Google Has Acquired Gizmo5', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 9, 'company': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://googleblog.blogspot.com/2009/11/displaying-best-display-ad-with.html', 'source_description': 'Google', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 23, 'company': {'name': 'Teracent', 'permalink': 'teracent'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/12/04/google-acquires-etherpad/', 'source_description': 'Confirmed: Google Acquires AppJet, The Maker Of EtherPad', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 4, 'company': {'name': 'AppJet', 'permalink': 'appjet'}}, {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/12/19/google-to-acquire-docverse-office-war-heats-up/', 'source_description': 'Google To Acquire DocVerse; Office War Heats Up', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 5, 'company': {'name': 'DocVerse', 'permalink': 'docverse'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/02/11/google-acquires-aardvark-for-50-million/', 'source_description': 'Google Acquires Aardvark For $50 million', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 11, 'company': {'name': 'Aardvark', 'permalink': 'aardvark'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2010/02/17/remail-google/', 'source_description': 'Venturebeat', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 17, 'company': {'name': 'reMail', 'permalink': 'remail'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-google-buys-photo-editing-site-picnik/', 'source_description': 'Google Buys Photo-Editing Site Picnik ', 'acquired_year': 2010, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Picnik', 'permalink': 'picnik'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/04/02/google-acquires-online-video-hosting-platform-episodic/', 'source_description': 'Google Acquires Online Video Hosting Platform Episodic ', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 2, 'company': {'name': 'Episodic', 'permalink': 'episodic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://deals.venturebeat.com/2010/04/12/google-acquires-uk-mobile-visual-search-company-plink-to-bolster-goggles/', 'source_description': 'Google acquires UK mobile visual search company Plink to bolster Goggles', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Plink Solutions', 'permalink': 'plink-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/04/20/google-agnilux-apple/#ixzz0lhB4jfk6', 'source_description': 'Battle Cry? Google Buys Stealth Company Founded By Guys That Spurned Apple ', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Agnilux', 'permalink': 'agnilux'}}, {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/04/27/labpixies-google-25-million/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 27, 'company': {'name': 'LabPixies', 'permalink': 'labpixies'}}, {'price_amount': 35000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/02/bumptop-possible-google-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 2, 'company': {'name': 'BumpTop', 'permalink': 'bumptop'}}, {'price_amount': 68200000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/05/18/google-to-buy-global-ip-solutions-for-68-2-million-in-cash/', 'source_description': 'Google To Buy Global IP Solutions For $68.2 Million In Cash', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 18, 'company': {'name': 'Global IP Solutions', 'permalink': 'global-ip-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/20/google-buys-simplify-media-to-power-music-syncing-for-new-itunes-competitor/', 'source_description': 'Google Buys Simplify Media To Power Music Syncing For New iTunes Competitor', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'Simplify Media', 'permalink': 'simplify-media'}}, {'price_amount': 80000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://mediamemo.allthingsd.com/20100609/googles-final-price-tag-for-invite-media-81-million/', 'source_description': 'Google Paid $81 Million for Invite Media', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 2, 'company': {'name': 'Invite Media', 'permalink': 'invitemedia'}}, {'price_amount': 700000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/04/13/after-agreeing-to-doj-settlement-google-closes-700m-acquisition-of-ita-software/', 'source_description': 'After Agreeing To DOJ Settlement, Google Closes $700M Acquisition Of ITA Software', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'ITA Software', 'permalink': 'ita-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/16/google-acquires-metaweb-to-make-search-smarter/', 'source_description': 'Google Acquires Metaweb To Make Search Smarter', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Metaweb Technologies', 'permalink': 'metawebtechnologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/04/google-instantiations/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 4, 'company': {'name': 'Instantiations', 'permalink': 'instantiations'}}, {'price_amount': 182000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/06/google-confirms-slide-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 6, 'company': {'name': 'Slide', 'permalink': 'slide'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/09/google-aquires-jambool-social-gold/', 'source_description': \"Another Piece To Google's Social Puzzle: To Acquire Jambool For $70 Million\", 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Jambool', 'permalink': 'jambool'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/20/its-official-google-acquires-like-com/', 'source_description': \"It's Official: Google Acquires Like.com\", 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 20, 'company': {'name': 'Like.com', 'permalink': 'like'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/27/google-buys-angstro-as-it-furthers-social-strategy/', 'source_description': 'Google Buys Angstro As It Furthers Social Strategy', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 27, 'company': {'name': 'Angstro', 'permalink': 'angstro'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.insidesocialgames.com/2010/08/30/google-buys-mobile-social-game-developer-socialdeck/', 'source_description': 'Google Buys Mobile Social Game Developer SocialDeck', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 30, 'company': {'name': 'SocialDeck', 'permalink': 'socialdeck'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.haaretz.com/print-edition/business/google-buying-second-israeli-startup-quiksee-1.313483', 'source_description': 'Haaretz', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 12, 'company': {'name': 'MentorWave Technologies', 'permalink': 'mentorwave-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-confirmed-google-buys-video-tour-startup-quiksee/', 'source_description': ' Confirmed: Google Buys Video Tour Startup Quiksee ', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 14, 'company': {'name': 'Quiksee', 'permalink': 'quiksee'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/28/google-plannr/', 'source_description': 'Google Buys Schedule Management Startup Plannr', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 28, 'company': {'name': 'Plannr', 'permalink': 'plannr'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/10/01/google-acquires-impressive-touchscreen-keyboard-startup-blindtype/', 'source_description': 'Google Acquires Impressive Touchscreen Keyboard Startup BlindType', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 1, 'company': {'name': 'BlindType', 'permalink': 'blindtype'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.freebase.com/2010/07/16/metaweb-joins-google/', 'source_description': 'Metaweb joins Google', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 16, 'company': {'name': 'Freebase', 'permalink': 'freebase'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eyefortravel.com/news/north-america/google-acquires-ruba-com', 'source_description': 'Google acquires Ruba.com', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Ruba', 'permalink': 'ruba'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/03/google-acquires-phonetic-arts/', 'source_description': 'Google Acquires Phonetic Arts To Make Robo-Voices Sound Human', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Phonetic Arts', 'permalink': 'phonetic-arts'}}, {'price_amount': 160000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/12/03/google-buys-on-demand-video-startup-widevine-to-bolster-its-own-tv-efforts/', 'source_description': 'Google Buys On Demand Video Service Widevine To Bolster Its Own TV Efforts', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Widevine Technologies', 'permalink': 'widevine'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.the451group.com/techdeals/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 13, 'company': {'name': 'Zetawire', 'permalink': 'zetawire'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/12/google-acquires-ebook-technologies/', 'source_description': 'Google Acquires eBook Technologies', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 12, 'company': {'name': 'eBook Technologies', 'permalink': 'ebook-technologies'}}, {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/25/google-to-acquire-fflick-for-10-million/', 'source_description': 'Google To Acquire fflick For $10 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'fflick', 'permalink': 'fflick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/25/google-buys-voice-messaging-startup-saynow/', 'source_description': 'Google Buys Voice Messaging Application Developer SayNow', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 25, 'company': {'name': 'SayNow', 'permalink': 'saynow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/01/google-buys-security-analytics-startup-zynamics/', 'source_description': 'Google Buys Security Analytics Software Developer Zynamics', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'zynamics', 'permalink': 'zynamics'}}, {'price_amount': 37700000, 'price_currency_code': 'GBP', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/03/07/beat-that-google-acquires-the-uks-beatthatquote-com-for-37-7m/', 'source_description': \"Beat That! Google Acquires The UK's BeatThatQuote.com For £37.7M\", 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 7, 'company': {'name': 'BeatThatQuote.com', 'permalink': 'beatthatquote-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/08/google-buys-mobile-entertainment-platform-pushlife/', 'source_description': 'Google Buys Mobile Music And Entertainment Platform PushLife', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 8, 'company': {'name': 'PushLife', 'permalink': 'pushlife'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/25/google-acquires-talkbin-a-feedback-platform-for-businesses-thats-only-five-months-old/', 'source_description': \"Google Acquires TalkBin, A Feedback Platform For Businesses That's Only Five Months Old\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'TalkBin', 'permalink': 'talkbin'}}, {'price_amount': 4900000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/05/20/google-spends-4-9-million-on-modu-patent-portfolio/', 'source_description': 'Google Spends $4.9 Million On Modu Patent Portfolio', 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'modu', 'permalink': 'modu'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/03/google-acquires-postrank-an-analytics-service-for-the-social-web/', 'source_description': 'Google Acquires PostRank, An Analytics Service For The Social Web', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 3, 'company': {'name': 'PostRank', 'permalink': 'aiderss'}}, {'price_amount': 400000000, 'price_currency_code': 'CAD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/09/google-acquires-admeld-for-400-million/', 'source_description': '', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Admeld', 'permalink': 'admeld'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/google-sage-tv-2011-6', 'source_description': 'Google Acquires Slingbox-Style Tech Company Sage TV', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 19, 'company': {'name': 'SageTV', 'permalink': 'sagetv'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/11/google-confirms-that-it-has-acquired-digital-loyalty-startup-punchd/', 'source_description': 'Google Confirms That It Has Acquired Digital Loyalty Startup Punchd', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 11, 'company': {'name': 'Punchd', 'permalink': 'punchd'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/google-makes-its-first-aquisition-and-buys-social-group-startup-fridge-2011-7', 'source_description': 'Google+ Makes Its First Acquisition And Buys Social Group Startup Fridge', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 21, 'company': {'name': 'Fridge', 'permalink': 'the-fridge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/22/google-acquires-facial-recognition-software-company-pittpatt/', 'source_description': 'Google Acquires Facial Recognition Software Company PittPatt', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'PittPatt', 'permalink': 'pittpatt'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': '', 'source_description': 'http://techcrunch.com/2011/08/01/google-scoops-up-daily-deal-aggregator-the-dealmap/', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'The Dealmap', 'permalink': 'the-dealmap'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/05/23/google-acquires-kayak-for-consumer-electronics-sparkbuy/', 'source_description': \"Google Acquires 'Kayak For Consumer Electronics' Sparkbuy\", 'acquired_year': 2011, 'acquired_month': 5, 'acquired_day': 23, 'company': {'name': 'Sparkbuy', 'permalink': 'sparkbuy'}}, {'price_amount': 12500000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/05/22/google-closes-acquisition-of-motorola-woodside-to-lead-page-focuses-on-mobile-announcing-deal/', 'source_description': 'Google Closes Acquisition Of Motorola: Woodside To Lead; Page Pushes Mobile Aspect', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 22, 'company': {'name': 'Motorola Mobility', 'permalink': 'motorola-mobility'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/02/google-zave-networks/', 'source_description': 'Google Acquires Digital Coupons/Incentives Platform Zave Networks To Bulk Up Commerce', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Zave Networks', 'permalink': 'zave-networks'}}, {'price_amount': 151000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/10/26/report-puts-googles-zagat-purchase-at-151-million/', 'source_description': \"Report Puts Google's Zagat Purchase At $151 Million\", 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 26, 'company': {'name': 'Zagat', 'permalink': 'zagat'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/19/google-buys-german-groupon-clone-dailydeal/', 'source_description': 'Google Buys German Groupon Clone DailyDeal', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 19, 'company': {'name': 'DailyDeal', 'permalink': 'dailydeal'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/10/10/google-acquires-socialgrapple/', 'source_description': 'Google acquires social analytics startup SocialGrapple', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 10, 'company': {'name': 'SocialGrapple', 'permalink': 'socialgrapple'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.privco.com/mergers-acquisitions/google-inc-acquires-katango-november-11th-2011', 'source_description': 'Google Acquires Katango, The Automatic Friend Sorter', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Katango', 'permalink': 'katango'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-google-takes-two-buys-apture-to-enhance-chrome-katango-to-beef-up-googl/', 'source_description': 'Google Takes Two: Buys Apture To Enhance Chrome, Katango To Beef Up Google+ ', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 10, 'company': {'name': 'Apture', 'permalink': 'apture'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://online.wsj.com/article/SB10001424052970203501304577088781618116446.html', 'source_description': 'Google Acquires Music Royalty Manager RightsFlow ', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 9, 'company': {'name': 'RightsFlow', 'permalink': 'rightsflow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/03/15/winning-a-bidding-war-with-facebook-google-picks-up-the-entire-milk-team/?grcc=33333Z98', 'source_description': 'Winning A Bidding War With Facebook, Google Picks Up The Milk Product Team', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'Milk', 'permalink': 'milk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/04/02/google-buys-txvia-banking-on-better-payment-tech-and-100m-customers-for-google-wallet/', 'source_description': 'Google Buys TxVia, Banks On Better Payment Technology (And 100M Customers) For Google Wallet', 'acquired_year': 2012, 'acquired_month': 4, 'acquired_day': 2, 'company': {'name': 'TxVia', 'permalink': 'txvia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siliconvalleywire.com/svw/2012/06/mountain-view-based-google-acquires-trust-score-service-kikscore.html', 'source_description': 'Mountain View-Based Google Acquires Trust-Score Service KikScore', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'KikScore', 'permalink': 'kikscore'}}, {'price_amount': 100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/04/confirmed-google-is-buying-meebo-the-startup-that-turned-chat-into-a-business/', 'source_description': 'Confirmed: Google Is Buying Meebo, The Startup That Turned Chat Into A Business [Updated]', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Meebo', 'permalink': 'meebo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/13/google-acquires-clever-sense-creator-of-local-recommendations-app-alfred/', 'source_description': 'Google Acquires Clever Sense, Creator Of Local Recommendations App Alfred', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': None, 'company': {'name': 'Clever Sense', 'permalink': 'cellixis'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/05/google-acquires-mobile-productivity-company-quickoffice/', 'source_description': 'Google Acquires Mobile Productivity Company Quickoffice', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 5, 'company': {'name': 'Quickoffice', 'permalink': 'quickoffice'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/20/google-acquires-iosmac-email-client-sparrow/', 'source_description': 'Google Acquires iOS/Mac Email Client Sparrow, Apps To Remain Available But Development Stopped', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'Sparrow', 'permalink': 'sparrow'}}, {'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/31/google-acquires-wildfire/', 'source_description': 'Google Acquires Wildfire, Will Now Sell Facebook And Twitter Marketing Services [Update: $350M Price]', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 31, 'company': {'name': 'Wildfire, a division of Google', 'permalink': 'wildfire-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/13/google-acquiring-frommers-travel-brand-more-google-improvements-likely-to-follow/', 'source_description': 'Google Acquiring Frommer’s Travel Brand: Zagat Integration, Google+ Improvements To Follow', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 13, 'company': {'name': \"Frommer's\", 'permalink': 'frommers'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/07/google-acquires-online-virus-malware-and-url-scanner-virustotal/', 'source_description': 'Google Acquires Online Virus, Malware and URL Scanner VirusTotal', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'VirusTotal', 'permalink': 'virustotal'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/17/google-acquires-nik-software-the-company-behind-the-popular-snapseed-photo-editing-app-for-ios/', 'source_description': 'Google Acquires Nik Software, The Company Behind The Popular Snapseed Photo Editing App For iOS', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 17, 'company': {'name': 'Nik Software', 'permalink': 'nik-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/11/28/google-acquires-incentive-targeting-to-power-targeted-coupon-programs/', 'source_description': 'Confirmed: Google Acquires Incentive Targeting To Power Super Targeted, Personalized Coupon Programs', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 28, 'company': {'name': 'Incentive Targeting', 'permalink': 'incentive-targeting'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/11/30/google-acquires-waterloo-based-e-commerce-startup-amazon-locker-competitor-and-yc-graduate-bufferbox/', 'source_description': 'Google Acquires Waterloo-Based E-Commerce Startup, Amazon Locker Competitor And YC Graduate BufferBox', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'BufferBox', 'permalink': 'bufferbox'}}, {'price_amount': 125000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/02/06/google-acquires-channel-intelligence-to-boost-product-recommendations-and-e-commer-with-users/', 'source_description': 'Google Acquires Channel Intelligence For $125M To Boost Product Referrals And E-Commerce With Users', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'company': {'name': 'Channel Intelligence', 'permalink': 'channel-intelligence'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/20/google-justspotted/', 'source_description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 20, 'company': {'name': 'JustSpotted', 'permalink': 'justspotted'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/15/google-acquires-web-application-server-talaria-to-enhance-its-cloud-platform/', 'source_description': 'Google Acquires Web Application Server Talaria To Enhance Its Cloud Platform', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 15, 'company': {'name': 'Talaria', 'permalink': 'talaria'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/23/google-buys-wavii-for-north-of-30-million/', 'source_description': 'Google Buys Wavii For North Of $30 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 23, 'company': {'name': 'Wavii', 'permalink': 'wavii'}}, {'price_amount': 1100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/11/its-official-google-buys-waze-giving-a-social-data-boost-to-its-location-and-mapping-business/?utm_source=dlvr.it&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Google Bought Waze For $1.1B, Giving A Social Data Boost To Its Mapping Business', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 11, 'company': {'name': 'Waze', 'permalink': 'waze'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/article/google-acquires-startup-behavio-analyst-blog-cm238247', 'source_description': 'Google Acquires Startup Behavio', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Behavio', 'permalink': 'behavio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/31/google-acquires-wimm-labs/', 'source_description': 'Google Confirms It Has Acquired Android Smartwatch Maker WIMM Labs', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'WIMM Labs', 'permalink': 'wimm-labs'}}, {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iphoneincanada.ca/news/google-discontinue-bump-flock-jan-2014/', 'source_description': ' Google to Discontinue Sharing App Bump and Flock on Jan. 31, 2014 ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'Bump Technologies', 'permalink': 'bump-technologies'}}, {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/02/google-acquires-yc-backed-flutter-a-gesture-recognition-technology-startup/', 'source_description': 'Google Acquires YC-Backed Flutter, A Gesture Recognition Technology Startup', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'Flutter', 'permalink': 'flutter-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ft.com/cms/s/2/1ea6fba2-462a-11df-8769-00144feab49a.html#axzz2gO4mC3kT', 'source_description': 'Google buys UK visual search engine', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 10, 'company': {'name': 'Plink Search', 'permalink': 'plink-search'}}, {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/google-flexycore/', 'source_description': 'Google Acquires Android Performance Startup FlexyCore For A Reported $23 Million', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'FlexyCore', 'permalink': 'flexycore'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/14/google-buys-boston-dynamics-creator-of-big-dog/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Google Buys Boston Dynamics, Creator Of Big Dog', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 13, 'company': {'name': 'Boston Dynamics', 'permalink': 'boston-dynamics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.androidheadlines.com/2014/01/google-acquires-bitspin-makers-timely-app-purchases-now-free.html?utm_source=dlvr.it&utm_medium=twitter', 'source_description': 'Google Acquires Bitspin, Makers of Timely – All In-App Purchases are Now Free!', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'Bitspin', 'permalink': 'bitspin'}}], 'offices': [{'description': 'Google Headquarters', 'address1': '1600 Amphitheatre Parkway', 'address2': '', 'zip_code': '', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.421972, 'longitude': -122.084143}, {'description': 'Google Ann Arbor', 'address1': '112 S. Main St.', 'address2': '2nd Floor', 'zip_code': '48104', 'city': 'Ann Arbor', 'state_code': 'MI', 'country_code': 'USA', 'latitude': 42.280988, 'longitude': -83.748882}, {'description': 'Google Atlanta', 'address1': '10 10th Street NE', 'address2': 'Suite 600', 'zip_code': '30309', 'city': 'Atlanta', 'state_code': 'GA', 'country_code': 'USA', 'latitude': 33.781466, 'longitude': -84.387519}, {'description': 'Google Austin', 'address1': 'Plaza 7000', 'address2': '7000 North MoPac Expressway, 2nd Floor', 'zip_code': '78731', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.351416, 'longitude': -97.751382}, {'description': 'Google Boulder', 'address1': '2590 Pearl Street', 'address2': 'Suite 100', 'zip_code': '80302', 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.021416, 'longitude': -105.260931}, {'description': 'Google Cambridge', 'address1': '5 Cambridge Center', 'address2': 'Floors 3-6', 'zip_code': '02142', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.36305, 'longitude': -71.087478}, {'description': 'Google Chicago', 'address1': '20 West Kinzie St.', 'address2': '', 'zip_code': '60610', 'city': 'Chicago', 'state_code': 'IL', 'country_code': 'USA', 'latitude': 41.889474, 'longitude': -87.628912}, {'description': 'Google Coppell', 'address1': '701 Canyon Drive', 'address2': 'Suite 120', 'zip_code': '75019', 'city': 'Coppell', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.981465, 'longitude': -97.018196}, {'description': 'Google Dallas', 'address1': '3102 Oak Lawn', 'address2': 'Suite 200', 'zip_code': '75219', 'city': 'Dallas', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.809161, 'longitude': -96.807693}, {'description': 'Google Denver', 'address1': '4600 S. Syracuse St.', 'address2': '8th Floor', 'zip_code': '80237', 'city': 'Denver', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 39.62919, 'longitude': -104.898419}, {'description': 'Google Detroit', 'address1': '114 Willits Street', 'address2': '', 'zip_code': '48009', 'city': 'Birmingham', 'state_code': 'MI', 'country_code': 'USA', 'latitude': 42.547807, 'longitude': -83.215498}, {'description': 'Google Irvine', 'address1': '19540 Jamboree Road', 'address2': '2nd Floor', 'zip_code': '92612', 'city': 'Irvine', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 33.658331, 'longitude': -117.861817}, {'description': 'Google Kirkland', 'address1': 'Central Way Plaza', 'address2': '720 4th Avenue, Ste 400', 'zip_code': '98033', 'city': 'Kirkland', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google New York', 'address1': '76 Ninth Avenue', 'address2': '4th Floor', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.74222, 'longitude': -74.004489}, {'description': 'Google Phoenix', 'address1': '1551 S. Rural Road', 'address2': '2nd floor', 'zip_code': '85281', 'city': 'Tempe', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.411898, 'longitude': -111.926263}, {'description': 'Google Pittsburgh', 'address1': '4720 Forbes Avenue', 'address2': 'Lower Level', 'zip_code': '15213', 'city': 'Pittsburgh', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.444528, 'longitude': -79.946269}, {'description': 'Google San Francisco', 'address1': '345 Spear Street', 'address2': '4th Floor', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.789803, 'longitude': -122.389757}, {'description': 'Google Santa Monica', 'address1': '604 Arizona Avenue', 'address2': '', 'zip_code': '90401', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.019282, 'longitude': -118.494288}, {'description': 'Google Seattle', 'address1': 'Evanston Building', 'address2': '501 N. 34th Street, Suite 300', 'zip_code': '98103', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.675326, 'longitude': -122.351397}, {'description': 'Google Seattle', 'address1': '651 N. 34th St.', 'address2': '', 'zip_code': '98103', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.649701, 'longitude': -122.350592}, {'description': 'Google Washington DC', 'address1': '1101 New York Avenue, N.W.', 'address2': 'Second Floor', 'zip_code': '20005', 'city': 'Washington', 'state_code': 'DC', 'country_code': 'USA', 'latitude': 38.901113, 'longitude': -77.027101}, {'description': 'Google Melbourne', 'address1': 'Rialto South Tower, Level 27', 'address2': '525 Collins Street', 'zip_code': '3000', 'city': 'Melbourne', 'state_code': None, 'country_code': 'AUS', 'latitude': -37.879234, 'longitude': 145.073608}, {'description': 'Google Sydney', 'address1': 'Levels 11 & 18, Tower 1, Darling Park', 'address2': '201 Sussex St.', 'zip_code': '2000', 'city': 'Sydney', 'state_code': None, 'country_code': 'AUS', 'latitude': -34.822723, 'longitude': 138.612396}, {'description': 'Google Beijing', 'address1': 'Tsinghua Science Park Bldg 6', 'address2': 'No. 1 Zhongguancun East Road', 'zip_code': '100084', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Guangzhou', 'address1': 'Tower A, 23/F, Center Plaza', 'address2': '161 Lin he Xi Lu, Tian He District', 'zip_code': '510620', 'city': 'Guangzhou', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Shanghai', 'address1': '16F, Raffles City', 'address2': 'No.268 Xizang Zhong Road, Huangpu District', 'zip_code': '200001', 'city': 'Shanghai', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'Google Hong Kong', 'address1': 'One IFC - 18/F', 'address2': '1 Harbour View Street', 'zip_code': '', 'city': 'Central', 'state_code': None, 'country_code': 'HKG', 'latitude': None, 'longitude': None}, {'description': 'Google Bangalore', 'address1': 'Prestige Sigma, No. 3, 1st Floor', 'address2': 'Vittal Mallya Road (Grant Road)', 'zip_code': '560 001', 'city': 'Bangalore', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Delhi', 'address1': 'Tower C, Level 9', 'address2': 'Building No. 8', 'zip_code': '122002', 'city': 'Gurgaon', 'state_code': None, 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google Delhi (Honeybee)', 'address1': 'No. B1/A6, First Floor', 'address2': 'Mohan Co-operative Industrial Estate Mathura Road', 'zip_code': '110044', 'city': 'New Delhi', 'state_code': None, 'country_code': 'IND', 'latitude': 28.86999, 'longitude': 77.122261}, {'description': 'Google Hyderabad', 'address1': 'BLOCK A, Fourth Floor', 'address2': 'Plot No. 14, Road NO 2', 'zip_code': '500 081', 'city': 'Hyderabad', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Mumbai', 'address1': '264-265 Vasvani Chambers', 'address2': 'Dr Annie Besant Road', 'zip_code': '400 025', 'city': 'Mumbai', 'state_code': None, 'country_code': 'IND', 'latitude': None, 'longitude': None}, {'description': 'Google Japan Headquarters', 'address1': '6F Cerulean Tower', 'address2': '26-1 Sakuragaoka-cho', 'zip_code': '150-8512', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}, {'description': 'Google Osaka', 'address1': '9F, Edobori Center Building', 'address2': '2-1-1 Edobori', 'zip_code': '550-0002', 'city': 'Osaka', 'state_code': None, 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'Google Seoul', 'address1': '22nd Floor, Gangnam Finance Center', 'address2': '737 Yeoksam-dong', 'zip_code': '135 984', 'city': 'Seoul', 'state_code': None, 'country_code': 'PRK', 'latitude': None, 'longitude': None}, {'description': 'Google Singapore', 'address1': 'Level 25 North Tower', 'address2': 'One Raffles Quay', 'zip_code': '048583', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': None, 'longitude': None}, {'description': 'Google Taipei', 'address1': 'Level 73, Taipei 101 Tower', 'address2': '7 Xinyi Road, Sec. 5,', 'zip_code': '110', 'city': 'Taipei', 'state_code': None, 'country_code': 'TWN', 'latitude': None, 'longitude': None}, {'description': 'Google Aarhus', 'address1': 'Aabogade 15', 'address2': '8200 Aarhus N', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'DNK', 'latitude': 56.171882, 'longitude': 10.187799}, {'description': 'Google Copenhagen', 'address1': 'Larsbjornsstraede 3', 'address2': '1454 Copenhagen K.', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'DNK', 'latitude': None, 'longitude': None}, {'description': 'Google Helsinki', 'address1': 'Luna House', 'address2': 'Mannerheimintie 12 B', 'zip_code': '', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': None, 'longitude': None}, {'description': 'Google Paris', 'address1': \"38 avenue de l'Opéra\", 'address2': '', 'zip_code': '75002', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.869606, 'longitude': 2.332749}, {'description': 'Google Hamburg', 'address1': 'ABC-Strasse 19', 'address2': '', 'zip_code': '20354', 'city': 'Hamburg', 'state_code': None, 'country_code': 'DEU', 'latitude': 53.554052, 'longitude': 9.985266}, {'description': 'Google Dublin', 'address1': 'Gordon House', 'address2': 'Barrow Street', 'zip_code': '4', 'city': 'Dublin', 'state_code': None, 'country_code': 'IRL', 'latitude': 53.339914, 'longitude': -6.234424}, {'description': 'Google Italy', 'address1': 'Corso Europa 2', 'address2': '', 'zip_code': '20122', 'city': 'Milan', 'state_code': None, 'country_code': 'ITA', 'latitude': 45.46381, 'longitude': 9.195978}, {'description': 'Google Amsterdam', 'address1': 'Claude Debussylaan 34', 'address2': 'Vinoly Mahler 4', 'zip_code': '1082', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.337495, 'longitude': 4.871464}, {'description': 'Google Oslo', 'address1': 'C.J. Hambros plass 2C', 'address2': '', 'zip_code': 'N-0164', 'city': 'Oslo', 'state_code': None, 'country_code': 'NOR', 'latitude': 59.915848, 'longitude': 10.741047}, {'description': 'Google Trondheim', 'address1': 'Beddingen 10', 'address2': '', 'zip_code': '7014', 'city': 'Trondheim', 'state_code': None, 'country_code': 'NOR', 'latitude': 63.435324, 'longitude': 10.412428}, {'description': 'Google Kraków', 'address1': 'ul. Krupnicza 16', 'address2': '', 'zip_code': '31-123', 'city': 'Kraków', 'state_code': None, 'country_code': 'POL', 'latitude': 50.063281, 'longitude': 19.929806}, {'description': 'Google WrocÅ‚aw', 'address1': 'Bema Plaza, V pietro', 'address2': 'Plac Gen. Jozefa Bema nr 2', 'zip_code': '50-265', 'city': 'Wroclaw', 'state_code': None, 'country_code': 'POL', 'latitude': 51.116574, 'longitude': 17.041942}, {'description': 'Google Moscow', 'address1': '7 Balchug st.', 'address2': '', 'zip_code': '115035', 'city': 'Moscow', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Google St. Petersburg', 'address1': 'Nevsky 25', 'address2': 'Nevsky Prospect 25', 'zip_code': '191186', 'city': 'St. Petersburg', 'state_code': None, 'country_code': 'RUS', 'latitude': None, 'longitude': None}, {'description': 'Google Madrid', 'address1': 'Torre Picasso', 'address2': 'Plaza Pablo Ruiz Picasso 1', 'zip_code': '28020', 'city': 'Madrid', 'state_code': None, 'country_code': 'ESP', 'latitude': None, 'longitude': None}, {'description': 'Google LuleÃ¥ Sweden', 'address1': 'Aurorum 2', 'address2': '', 'zip_code': '977 75', 'city': 'LuleÃ¥', 'state_code': None, 'country_code': 'SWE', 'latitude': 65.617491, 'longitude': 22.126255}, {'description': 'Google Stockholm', 'address1': 'Mäster Samuelsgatan 60', 'address2': '', 'zip_code': '111 21', 'city': 'Stockholm', 'state_code': None, 'country_code': 'SWE', 'latitude': 59.332344, 'longitude': 18.060162}, {'description': 'Google Zürich', 'address1': 'Brandschenkestrasse 110', 'address2': '', 'zip_code': '8002', 'city': 'Zürich', 'state_code': None, 'country_code': 'CHE', 'latitude': 47.36554, 'longitude': 8.524864}, {'description': 'Google London', 'address1': 'Belgrave House', 'address2': '76 Buckingham Palace Road', 'zip_code': 'SW1W 9TQ', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': 'Google Manchester', 'address1': 'Peter House', 'address2': 'Oxford Street', 'zip_code': 'M1 5AN', 'city': 'Manchester', 'state_code': None, 'country_code': 'GBR', 'latitude': 53.473606, 'longitude': -2.250166}, {'description': 'Google Montreal', 'address1': '1000 rue de la Gauchetiere Ouest', 'address2': 'Suite 2449', 'zip_code': 'H3B4W5', 'city': 'Montreal', 'state_code': None, 'country_code': 'CAN', 'latitude': 45.498588, 'longitude': -73.567044}, {'description': 'Google Toronto', 'address1': 'BCE Place, TD Canada Trust Tower', 'address2': '161 Bay Street, 27th Floor', 'zip_code': 'M5J 2S1', 'city': 'Toronto', 'state_code': None, 'country_code': 'CAN', 'latitude': None, 'longitude': None}, {'description': 'Google Waterloo', 'address1': '340 Hagey Blvd', 'address2': '2nd Floor', 'zip_code': 'N2L 6R6', 'city': 'Waterloo', 'state_code': None, 'country_code': 'CAN', 'latitude': 43.474704, 'longitude': -80.546381}, {'description': 'Google Buenos Aires', 'address1': 'Alicia M. De Justo 350, 2º', 'address2': 'Puerto Madero', 'zip_code': 'C1107AAH', 'city': 'Buenos Aires', 'state_code': None, 'country_code': 'ARG', 'latitude': None, 'longitude': None}, {'description': 'Google Sao Paulo', 'address1': 'Av. Brigadeiro Faria Lima', 'address2': 'nº 3900 5th floor, Itaim', 'zip_code': '04538-132', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.590463, 'longitude': -46.681494}, {'description': 'Google Mexico', 'address1': 'Blvd. Manuel Avila Camacho #36', 'address2': 'Torre Esmeralda 2, Piso 12, Lomas de Chapultepec', 'zip_code': '1100', 'city': 'Mexico', 'state_code': None, 'country_code': 'MEX', 'latitude': 19.507519, 'longitude': -99.030156}, {'description': 'Google Haifa', 'address1': 'Building 30, MATAM, Advanced Technology Center', 'address2': 'PO Box 15096', 'zip_code': '31905', 'city': 'Haifa', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}, {'description': 'Google Tel Aviv', 'address1': 'Levinstein Tower', 'address2': '23 Menachem Begin Road', 'zip_code': '66183', 'city': 'Tel-Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}, {'description': 'Google Istanbul', 'address1': 'Kanyon Ofis Binasi Kat. 6', 'address2': 'Buyukdere Cad. No. 185', 'zip_code': '34394', 'city': 'Istanbul', 'state_code': None, 'country_code': 'TUR', 'latitude': None, 'longitude': None}, {'description': 'Google Dubai', 'address1': 'First Floor, Building No 17', 'address2': 'Dubai Internet City', 'zip_code': '1', 'city': 'Dubai', 'state_code': None, 'country_code': 'ARE', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3, 'description': 'More than 4 Billion videos viewed at Google Sites, 37.9% according to comScore', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': 'http://www.comscore.com/press/release.asp?press=2268', 'source_text': None, 'source_description': '11 Billion Videos Viewed Online in the U.S. in April 2008', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 429, 'description': 'Google Sinks $10 Million Into New Geothermal Technologies', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 19, 'source_url': 'http://www.techcrunch.com/2008/08/19/google-sinks-10-million-into-new-geothermal-technologies/', 'source_text': '', 'source_description': 'Google Sinks $10 Million Into New Geothermal Technologies', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 1857, 'description': 'Google sells its stake in AOL back to Time Warner for about 1/4 of what it paid for it in 2006.', 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 27, 'source_url': 'http://www.businessinsider.com/google-sells-aol-stake-back-to-time-warner-for-283-million-2009-7', 'source_text': '', 'source_description': 'Google Sells AOL Stake Back To Time Warner For $283 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 2267, 'description': 'iLike and LaLa music services to be integrated into Google to stream song directly from search. iLike was acquired by MySpace in August 2009', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 21, 'source_url': 'http://www.techcrunch.com/2009/10/21/google-to-partner-with-ilike-and-lala-for-new-music-service/', 'source_text': '', 'source_description': 'Google To Partner With iLike And LaLa For New Music Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 6929, 'description': 'Google Buys Wind Power, First Deal for “Google Energyâ€\\x9d', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 20, 'source_url': '', 'source_text': '', 'source_description': 'Google Buys Wind Power, First Deal for “Google Energyâ€\\x9d', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 9633, 'description': 'Google To Give $5 Million To Journalism Non-Profits; $3 Million Outside US ', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://paidcontent.org/article/419-google-to-give-5-million-to-journalism-non-profits-3-million-outside-us/', 'source_text': '', 'source_description': 'Google To Give $5 Million To Journalism Non-Profits; $3 Million Outside US ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10152, 'description': 'Google To Enter Fashion Shopping Territory With Launch Of Boutiques.com?', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2010/11/15/google-to-enter-fashion-shopping-territory-with-launch-of-boutiques-com/', 'source_text': '', 'source_description': 'Google To Enter Fashion Shopping Territory With Launch Of Boutiques.com?', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10288, 'description': \"Google: Now We're Investing In A Huge Wind Farm Off New Jersey That Will Power 2 Million Homes\", 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 12, 'source_url': 'http://www.businessinsider.com/google-wind-farm-2010-10', 'source_text': '', 'source_description': \"Google: Now We're Investing In A Huge Wind Farm Off New Jersey That Will Power 2 Million Homes\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 10647, 'description': 'Tracked Down: Google Just Quietly Launched An Official Latitude iPhone App', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2010/12/07/google-latitude-iphone-app/', 'source_text': '', 'source_description': 'Tracked Down: Google Just Quietly Launched An Official Latitude iPhone App', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11665, 'description': 'Big Bang At Google: Larry Page To Replace Eric Schmidt As CEO On April 4', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/01/20/google-ceo-change/', 'source_text': '', 'source_description': 'Big Bang At Google: Larry Page To Replace Eric Schmidt As CEO On April 4', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11686, 'description': 'Schmidt Files To Sell $334 Million Of Google Stock ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://paidcontent.org/article/419-schmidt-files-to-sell-334-million-of-google-stock/', 'source_text': '', 'source_description': 'Schmidt Files To Sell $334 Million Of Google Stock ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 11792, 'description': 'Google Gives Schmidt A $100 Million Equity Award ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 24, 'source_url': 'http://paidcontent.org/article/419-google-gives-schmidt-a-100-million-equity-award/', 'source_text': '', 'source_description': 'Google Gives Schmidt A $100 Million Equity Award ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 12778, 'description': 'Google Grants $2.7 Million To IPI To Promote Innovation In Online Journalism', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/02/23/google-grants-2-7-million-to-ipi-to-promote-innovation-in-online-journalism/', 'source_text': '', 'source_description': 'Google Grants $2.7 Million To IPI To Promote Innovation In Online Journalism', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 13946, 'description': 'Larry Page Takes Over Google, Spends $900 Million On His First Day ', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://www.businessinsider.com/larry-page-takes-over-google-spends-900-million-on-his-first-day-2011-4', 'source_text': '', 'source_description': 'Larry Page Takes Over Google, Spends $900 Million On His First Day ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14011, 'description': 'Google Invests $5 Million In German Solar Power Plant', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2011/04/07/google-invests-5-million-in-german-solar-power-plant/', 'source_text': '', 'source_description': 'Google Invests $5 Million In German Solar Power Plant', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14228, 'description': 'Google Invests $100M in (Another!) Wind Farm', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 18, 'source_url': 'http://gigaom.com/cleantech/google-invests-100m-in-another-wind-farm/', 'source_text': '', 'source_description': 'Google Invests $100M in (Another!) Wind Farm', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 14750, 'description': 'Google Announces 160 Million Chrome Users, Massive Improvements Coming', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 11, 'source_url': 'http://techcrunch.com/2011/05/11/google-announces-160-million-chrome-users-massive-improvements-coming/', 'source_text': '', 'source_description': 'Google Announces 160 Million Chrome Users, Massive Improvements Coming', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 16732, 'description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 21, 'source_url': 'http://www.washingtonpost.com/business/technology/google-hires-justspottedscoopler-team-to-work-on-google/2011/07/20/gIQA9WNiQI_story.html', 'source_text': '', 'source_description': 'Google Hires JustSpotted/Scoopler Team To Work On Google+', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 17495, 'description': 'Google to Settle with U.S. Government for $500 Million', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 24, 'source_url': 'http://techcrunch.com/2011/08/24/google-to-settle-with-u-s-government-for-500-million/', 'source_text': '', 'source_description': 'Google to Settle with U.S. Government for $500 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 22985, 'description': 'Google Wins $35 Million U.S. Government Contract Over Microsoft', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 1, 'source_url': 'http://techcrunch.com/2012/05/01/google-wins-35-million-u-s-government-contract-over-microsoft/', 'source_text': '', 'source_description': 'Google Wins $35 Million U.S. Government Contract Over Microsoft', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 23504, 'description': 'Google Closes The $12.5 Billion Deal To Own Motorola', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 22, 'source_url': 'http://www.businessinsider.com/google-now-officially-owns-motorola-2012-5', 'source_text': '', 'source_description': 'Google Closes The $12.5 Billion Deal To Own Motorola', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 26264, 'description': 'Google Now Lets Businesses Rent Chromebooks For $30 Per Month', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2012/09/05/google-now-lets-businesses-rent-chromebooks-for-30-per-month/', 'source_text': '', 'source_description': 'Google Now Lets Businesses Rent Chromebooks For $30 Per Month', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 27920, 'description': 'Google Invests $75M In Iowa Wind Farm, Bringing Its Total Green Energy Investments To Almost $1B', 'stoned_year': 2012, 'stoned_month': 11, 'stoned_day': 16, 'source_url': 'http://techcrunch.com/2012/11/15/google-invests-75m-in-iowa-wind-farm-bringing-its-total-green-energy-investments-to-almost-1b/', 'source_text': '', 'source_description': 'Google Invests $75M In Iowa Wind Farm, Bringing Its Total Green Energy Investments To Almost $1B', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 30629, 'description': 'Google.org Provides $4.4M In Grants To The Internet Society And NSRC To Improve Internet Access In Sub-Saharan Africa', 'stoned_year': 2013, 'stoned_month': 2, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2013/02/25/google-org-provides-4-4m-in-grants-to-the-internet-society-and-nsrc-to-improve-internet-access-in-sub-saharan-africa/', 'source_text': '', 'source_description': 'Google.org Provides $4.4M In Grants To The Internet Society And NSRC To Improve Internet Access In Sub-Saharan Africa', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 34478, 'description': 'Google Makes Its First Renewable Energy Investment In Africa, Puts $12M Toward South African Solar Plant\\r\\n', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2013/05/30/google-makes-its-first-renewable-energy-investment-in-africa-puts-12m-toward-south-african-solar-plant/', 'source_text': '', 'source_description': 'Google Makes Its First Renewable Energy Investment In Africa, Puts $12M Toward South African Solar Plant', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 34915, 'description': 'Report: Google Is Close To Buying Mapping Startup Waze For $1.3 Billion', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 9, 'source_url': 'http://www.businessinsider.com/google-close-to-buying-waze-2013-6', 'source_text': '', 'source_description': 'Report: Google Is Close To Buying Mapping Startup Waze For $1.3 Billion', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 35336, 'description': 'Google Pledges $5M To Fight Online Child Exploitation', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2013/06/16/google-pledges-5m-to-fight-online-child-exploitation/', 'source_text': '', 'source_description': 'Google Pledges $5M To Fight Online Child Exploitation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 36185, 'description': 'Google grants $1.2 million for Natural Language Research\\r\\n', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 7, 'source_url': 'http://www.gabblet.com/post/2013/07/07/google-grants-1-2-million-for-natural-language-research-13053.aspx', 'source_text': '', 'source_description': ' Google grants $1.2 million for Natural Language Research', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 36195, 'description': 'Racing Google To Bring Driverless Cars To The Road, Mobileye Valued At $1.5B As Investors Take $400M Stake', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://techcrunch.com/2013/07/07/racing-google-to-bring-affordable-driverless-cars-to-the-road-mobileye-valued-at-1-5b-as-investors-take-400m-stake/', 'source_text': '', 'source_description': 'Racing Google To Bring Driverless Cars To The Road, Mobileye Valued At $1.5B As Investors Take $400M Stake', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 39942, 'description': 'Google launches €60m fund to help French media sites', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 20, 'source_url': 'http://www.telegraph.co.uk/technology/google/10321166/Google-launches-60m-fund-to-help-French-media-sites.html', 'source_text': '', 'source_description': 'Google launches €60m fund to help French media sites', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}, {'id': 42098, 'description': 'Google invests €450m in Finnish data centre ', 'stoned_year': 2013, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://www.stuff.co.nz/technology/digital-living/30002847/Google-invests-450m-in-Finnish-data-centre', 'source_text': '', 'source_description': 'Google invests €450m in Finnish data centre ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Google', 'permalink': 'google'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 8, 'pub_day': 25, 'stock_symbol': 'NASDAQ:GOOG'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': [{'partner_name': 'AngelList', 'homepage_url': 'http://google.com', 'link_1_url': 'https://angel.co/just-us-2-dunrs-roxy?utm_source=crunchbase&utm_medium=link&utm_content=profile&utm_term=google&utm_campaign=crunchbase', 'link_2_url': None, 'link_3_url': None, 'link_1_name': 'AngelList Page', 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297dbc'), 'name': 'Skype', 'permalink': 'skype', 'crunchbase_url': 'http://www.crunchbase.com/company/skype', 'homepage_url': 'http://www.skype.com', 'blog_url': 'http://blogs.skype.com', 'blog_feed_url': 'http://feeds.feedburner.com/shareskypeen', 'twitter_username': 'skype', 'category_code': 'software', 'number_of_employees': 0, 'founded_year': 2003, 'founded_month': 8, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'phone, voip, sweden, skype', 'alias_list': '', 'email_address': '', 'phone_number': '94117733', 'description': 'VoIP Software ', 'created_at': 'Tue Jul 03 05:20:31 UTC 2007', 'updated_at': 'Wed Dec 11 13:03:57 UTC 2013', 'overview': '

Skype is a software application that allows users to make voice and video calls and chats over the Internet. Calls to other users within the Skype service are free, while calls to both traditional landline telephones and mobile phones can be made for a fee using a debit-based user account system. Skype was founded by Niklas Zennstrom and Janus Friis who were also the founders of the file sharing application Kazaa.

\\n\\n

Skype has also become popular for its additional features which include instant messaging, file transfer, and video conferencing. Skype has 663 million registered users as of 2010.

\\n\\n

Unlike other VoIP services, Skype is a peer-to-peer system rather than a client-server system, and makes use of background processing on computers running Skype software; the original name proposed “Sky peer-to-peer” reflects this.

\\n\\n

Some network administrators have banned Skype on corporate, government, home, and education networks, citing reasons such as inappropriate usage of resources, excessive bandwidth usage, and security concerns.

\\n\\n

On 10 May 2011, Microsoft Corporation agreed to acquire Skype Communications, US$8.5 billion. The company is to be incorporated as a division of Microsoft, and Microsoft will acquire all of the company’s technologies, including Skype, with the purchase.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/1387/1387v12-max-150x150.jpg'], [[250, 110], 'assets/images/resized/0000/1387/1387v12-max-250x250.jpg'], [[315, 139], 'assets/images/resized/0000/1387/1387v12-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Skype', 'permalink': 'skype'}, {'name': 'SkypeOut', 'permalink': 'skypeout'}, {'name': 'Skype Online Numbers (formerly SkypeIn)', 'permalink': 'skypein'}, {'name': 'Skype Voicemail', 'permalink': 'skype-voicemail'}, {'name': 'Skype Mobile', 'permalink': 'skype-mobile'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tony', 'last_name': 'Bates', 'permalink': 'tony-bates'}}, {'is_past': False, 'title': 'Chief Architect Consumer Mobile Video', 'person': {'first_name': 'Alexey', 'last_name': 'Timanovskiy', 'permalink': 'alexey-timanovskiy'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Mark', 'last_name': 'Gillett', 'permalink': 'mark-gillett'}}, {'is_past': False, 'title': 'Vice President, Product Management & Design', 'person': {'first_name': 'Rick', 'last_name': 'Osterloh', 'permalink': 'rick-osterloh'}}, {'is_past': False, 'title': 'Vice President of Advertising and Monetization', 'person': {'first_name': 'Sandhya', 'last_name': 'Venkatachalam', 'permalink': 'sandhya-venkatachalam'}}, {'is_past': False, 'title': 'VP, GM Products & Marketing', 'person': {'first_name': 'Neil', 'last_name': 'Stevens', 'permalink': 'neil-stevens'}}, {'is_past': False, 'title': 'Vice President of Finance', 'person': {'first_name': 'Laura', 'last_name': 'Shesgreen', 'permalink': 'laura-shesgreen'}}, {'is_past': False, 'title': 'Business Development Director', 'person': {'first_name': 'Enrico', 'last_name': 'Noseda', 'permalink': 'enrico-noseda'}}, {'is_past': False, 'title': 'Mac Product Engineering Manager', 'person': {'first_name': 'Janno', 'last_name': 'Teelem', 'permalink': 'janno-teelem'}}, {'is_past': False, 'title': 'Senior Product Manager - Consumer Mobile Video', 'person': {'first_name': 'Rishi', 'last_name': 'Mallik', 'permalink': 'rishi-mallik'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Elisa', 'last_name': 'Steele', 'permalink': 'elisa-steele'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Marco', 'last_name': 'Wolfsheimer', 'permalink': 'marco-wolfsheimer'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Charles', 'last_name': 'Giancarlo', 'permalink': 'charles-giancarlo-3'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Enlai', 'last_name': 'Chu', 'permalink': 'enlai-chu'}}, {'is_past': False, 'title': 'Head of Communications', 'person': {'first_name': 'Brian', 'last_name': \"O'Shaughnessy\", 'permalink': 'brian-oshaughnessy'}}, {'is_past': False, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'Jennifer', 'last_name': 'Caukin', 'permalink': 'jennifer-caukin'}}, {'is_past': False, 'title': 'Senior Product Engineering Manager', 'person': {'first_name': 'Rain', 'last_name': 'Johanson', 'permalink': 'rain-johanson'}}, {'is_past': False, 'title': 'Director Consumer Video Technology', 'person': {'first_name': 'Nikolay', 'last_name': 'Abkairov', 'permalink': 'nikolay-abkairov'}}, {'is_past': False, 'title': 'Director, Program Management - Mobile', 'person': {'first_name': 'David', 'last_name': 'Still', 'permalink': 'david-still'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Davidson', 'permalink': 'jim-davidson-2'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Chao', 'permalink': 'bobby-chao'}}, {'is_past': True, 'title': 'Co-Founder, Chief Engineer', 'person': {'first_name': 'Toivo', 'last_name': 'Annus', 'permalink': 'toivo-annus'}}, {'is_past': True, 'title': 'Interim CEO', 'person': {'first_name': 'Michael', 'last_name': 'van Swaaij', 'permalink': 'michael-van-swaaij'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Niklas', 'last_name': 'Zennström', 'permalink': 'niklas-zennstrom'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Geoffrey', 'last_name': 'Prentice', 'permalink': 'geoffrey-prentice'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Jonathan', 'last_name': 'Chadwick', 'permalink': 'jonathan-chadwick'}}, {'is_past': True, 'title': 'Founding Engineer, Chief Technical Architect', 'person': {'first_name': 'Ahti', 'last_name': 'Heinla', 'permalink': 'ahti-heinla'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Doug', 'last_name': 'Bewsher', 'permalink': 'doug-bewsher'}}, {'is_past': True, 'title': 'Chief Financial and Administration Officer', 'person': {'first_name': 'Adrian', 'last_name': 'T. Dillon', 'permalink': 'adrian-t-dillon'}}, {'is_past': True, 'title': 'Chief Development Officer', 'person': {'first_name': 'Madhu', 'last_name': 'Yarlagadda', 'permalink': 'madhu-yarlagadda'}}, {'is_past': True, 'title': 'COO/VP & Director of Paid Services', 'person': {'first_name': 'Michael', 'last_name': 'Jackson', 'permalink': 'michael-jackson'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Daniel', 'last_name': 'Berg', 'permalink': 'daniel-berg'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Scott', 'last_name': 'Durchslag', 'permalink': 'scott-durchslag'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Josh', 'last_name': 'Silverman', 'permalink': 'josh-silverman'}}, {'is_past': True, 'title': 'VP&GM Skype for Business', 'person': {'first_name': 'David', 'last_name': 'Gurle', 'permalink': 'david-gurle'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Saul', 'last_name': 'Klein', 'permalink': 'saul-klein'}}, {'is_past': True, 'title': 'VP, Mobile video', 'person': {'first_name': 'Vijay', 'last_name': 'Tella', 'permalink': 'vijay-tella'}}, {'is_past': True, 'title': 'VP & GM, Americas and Advertising', 'person': {'first_name': 'Don', 'last_name': 'Albert', 'permalink': 'don-albert'}}, {'is_past': True, 'title': 'Vice President & General Manager, Skype Enterprise', 'person': {'first_name': 'David', 'last_name': 'Gurle', 'permalink': 'david-gurl'}}, {'is_past': True, 'title': 'VP & General Manager, Platform', 'person': {'first_name': 'Jonathan', 'last_name': 'Christensen', 'permalink': 'jonathan-christensen'}}, {'is_past': True, 'title': 'VP Business Development/GM Europe', 'person': {'first_name': 'James', 'last_name': 'Bilefield', 'permalink': 'james-bilefield'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Janus', 'last_name': 'Friis', 'permalink': 'janus-friis'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Henry', 'last_name': 'Gomez', 'permalink': 'henry-gomez'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Robert', 'last_name': 'Miller', 'permalink': 'robert-miller'}}, {'is_past': True, 'title': 'Director of Consumer Engineering', 'person': {'first_name': 'Ott', 'last_name': 'Kaukver', 'permalink': 'ott-kaukver'}}, {'is_past': True, 'title': 'International Marketing', 'person': {'first_name': 'Melany', 'last_name': 'Libraro', 'permalink': 'melany-libraro'}}, {'is_past': True, 'title': 'Manager, Business Development and Marketing, North America', 'person': {'first_name': 'Tristen', 'last_name': 'Langley', 'permalink': 'tristen-langley'}}, {'is_past': True, 'title': 'Product Manager, Devices', 'person': {'first_name': 'Liz', 'last_name': 'Rice', 'permalink': 'liz-rice'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Morten', 'last_name': 'Lund', 'permalink': 'morten-lund'}}, {'is_past': True, 'title': 'Creative Designer', 'person': {'first_name': 'Malthe', 'last_name': 'Sigurdsson', 'permalink': 'malthe-sigurdsson'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Mark', 'last_name': 'Dyne', 'permalink': 'mark-dyne'}}, {'is_past': True, 'title': 'Marketer', 'person': {'first_name': 'Andrus', 'last_name': 'Purde', 'permalink': 'andrus-purde'}}, {'is_past': True, 'title': 'Chief Legal and Regulatory Officer', 'person': {'first_name': 'Neal', 'last_name': 'Goldman', 'permalink': 'neal-goldman'}}, {'is_past': True, 'title': '(interim) Director of CRM', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Director, Strategy', 'person': {'first_name': 'Taavet', 'last_name': 'Hinrikus', 'permalink': 'taavet-hinrikus'}}, {'is_past': True, 'title': 'Head of Business Development', 'person': {'first_name': 'Bob', 'last_name': 'Rosin', 'permalink': 'bob-rosin'}}, {'is_past': True, 'title': 'Reseach Lead, Data Analytics', 'person': {'first_name': 'André', 'last_name': 'Karpištšenko', 'permalink': 'andr-karpitenko'}}, {'is_past': True, 'title': 'associate general counsel', 'person': {'first_name': 'Susan', 'last_name': 'Stick', 'permalink': 'susan-stick'}}, {'is_past': True, 'title': 'Head of Qik Products', 'person': {'first_name': 'Bhaskar', 'last_name': 'Roy', 'permalink': 'bhaskar-roy'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Alistair', 'last_name': 'Shrimpton', 'permalink': 'alistair-shrimpton'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Simon', 'last_name': 'Patterson', 'permalink': 'simon-patterson'}}, {'is_past': True, 'title': 'Executive Advisor', 'person': {'first_name': 'Ed', 'last_name': 'Gillis', 'permalink': 'ed-gillis'}}, {'is_past': True, 'title': 'Operations Change Management, Lead', 'person': {'first_name': 'Kaili', 'last_name': 'Kleemeier', 'permalink': 'kaili-kleemeier'}}, {'is_past': True, 'title': 'Director / Advisor', 'person': {'first_name': 'Hiro', 'last_name': 'Tamura', 'permalink': 'hiro-tamura'}}, {'is_past': True, 'title': 'Head of Business Development - Qik', 'person': {'first_name': 'Bob', 'last_name': 'Rosin', 'permalink': 'bob-rosin'}}, {'is_past': True, 'title': 'Country Manager, Greater China', 'person': {'first_name': 'Kelly', 'last_name': 'Poon', 'permalink': 'kelly-poon'}}, {'is_past': True, 'title': 'Strategy & Asia', 'person': {'first_name': 'Geoffery', 'last_name': 'Prentice', 'permalink': 'geoffery-prentice'}}, {'is_past': True, 'title': 'Telecoms', 'person': {'first_name': 'Stefan', 'last_name': 'Oberg', 'permalink': 'stefan-oberg'}}, {'is_past': True, 'title': 'HR', 'person': {'first_name': 'Annemie', 'last_name': 'Jense Van Rensburg', 'permalink': 'annemie-jense-van-rensburg'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Sten', 'last_name': 'Tamkivi', 'permalink': 'sten-kamkivi'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Christopher', 'last_name': 'Dean', 'permalink': 'christopher-dean'}}, {'is_past': True, 'title': 'Head of Web Backend Team', 'person': {'first_name': 'Martin', 'last_name': 'Villig', 'permalink': 'martin-villig'}}, {'is_past': True, 'title': 'General Manager, Mobile and Hardware Devices', 'person': {'first_name': 'Gareth', 'last_name': \"O'Loughlin\", 'permalink': 'gareth-oloughlin'}}, {'is_past': True, 'title': 'GM Desktop Products', 'person': {'first_name': 'Carter', 'last_name': 'Adamson', 'permalink': 'carter-adamson'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Klaus', 'last_name': 'Hommels', 'permalink': 'klaus-hommels'}}, {'is_past': True, 'title': 'Director and Principal Architect', 'person': {'first_name': 'Matthew', 'last_name': 'Kaufman', 'permalink': 'matthew-kaufman'}}, {'is_past': True, 'title': 'Vice President & General Manager, Mobile', 'person': {'first_name': 'Russ', 'last_name': 'Shaw', 'permalink': 'russ-shaw'}}, {'is_past': True, 'title': 'Product Strategy', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'David', 'last_name': 'Litwak', 'permalink': 'david-litwak'}}, {'is_past': True, 'title': 'Interaction designer', 'person': {'first_name': 'Baldvin Mar', 'last_name': 'Smarason', 'permalink': 'baldvin-smarason-2'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Jason', 'last_name': 'Fischl', 'permalink': 'jason-fischl'}}, {'is_past': True, 'title': 'Mobile Video Deployments', 'person': {'first_name': 'Ramu', 'last_name': 'Sunkara', 'permalink': 'ramu-sunkara'}}, {'is_past': True, 'title': 'Head of Mobile Partnerships', 'person': {'first_name': 'Tony', 'last_name': 'Saigh', 'permalink': 'tony-saigh'}}, {'is_past': True, 'title': 'Director - Skype Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Lagier', 'permalink': 'eric-lagier'}}, {'is_past': True, 'title': 'Board Member / Venture Investor', 'person': {'first_name': 'Rob', 'last_name': 'Stavis', 'permalink': 'rob-stavis'}}, {'is_past': True, 'title': 'Operations Manager', 'person': {'first_name': 'Kaili', 'last_name': 'Kleemeier', 'permalink': 'kaili-kleemeier'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Pooj', 'last_name': 'Preena', 'permalink': 'pooj-preena'}}, {'is_past': True, 'title': 'Director of Global Partnerships, Mobile', 'person': {'first_name': 'Tony', 'last_name': 'Saigh', 'permalink': 'tony-saigh'}}, {'is_past': True, 'title': 'Strategic Partnership and ODM ecosystem consultant', 'person': {'first_name': 'Andy', 'last_name': 'Chen', 'permalink': 'andy-chen-6'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Eugene', 'last_name': 'Mizin', 'permalink': 'eugene-mizin'}}], 'competitions': [{'competitor': {'name': 'fring Ltd', 'permalink': 'fring'}}, {'competitor': {'name': 'Yeigo', 'permalink': 'yeigo'}}, {'competitor': {'name': 'barablu', 'permalink': 'barablu'}}, {'competitor': {'name': 'TokBox', 'permalink': 'tokbox'}}, {'competitor': {'name': 'Truphone', 'permalink': 'truphone'}}, {'competitor': {'name': 'Mobivox', 'permalink': 'mobivox'}}, {'competitor': {'name': 'Rebtel', 'permalink': 'rebtel'}}, {'competitor': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'competitor': {'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere'}}, {'competitor': {'name': 'PeerMe', 'permalink': 'peerme'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'TalkShoe', 'permalink': 'talkshoe'}}, {'competitor': {'name': 'iSkoot', 'permalink': 'iskoot'}}, {'competitor': {'name': 'Talkonaut', 'permalink': 'talkonaut'}}, {'competitor': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'competitor': {'name': 'Goober Networks', 'permalink': 'goober-networks'}}, {'competitor': {'name': 'Teleo', 'permalink': 'teleo-inc'}}, {'competitor': {'name': 'InfoInterActive', 'permalink': 'infointeractive'}}, {'competitor': {'name': 'VoxOx', 'permalink': 'voxox'}}, {'competitor': {'name': 'Foonz', 'permalink': 'foonz'}}, {'competitor': {'name': 'Banckle Customer Service 2.0', 'permalink': 'banckle'}}, {'competitor': {'name': 'FaceFlow', 'permalink': 'faceflow'}}, {'competitor': {'name': 'iCall', 'permalink': 'icall'}}, {'competitor': {'name': 'Hall', 'permalink': 'hall-com'}}, {'competitor': {'name': 'Streamup', 'permalink': 'streamup'}}, {'competitor': {'name': 'Glip', 'permalink': 'glip'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Brinkwire ', 'permalink': 'brinkwire'}}, {'title': 'Digital Acquisition', 'is_past': False, 'provider': {'name': 'Jellyfish', 'permalink': 'jellyfish'}}, {'title': '', 'is_past': True, 'provider': {'name': 'Six Degrees', 'permalink': 'six-degrees'}}, {'title': '', 'is_past': True, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}], 'total_money_raised': '$76.8M', 'funding_rounds': [{'id': 79, 'round_code': 'b', 'source_url': 'http://www.prnewswire.co.uk/cgi/news/release?id=119130', 'source_description': '', 'raised_amount': 18800000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}, {'id': 2119, 'round_code': 'a', 'source_url': 'http://www.vcgate.com/Bessemer_Venture_Partners.asp', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 10623, 'round_code': 'debt_round', 'source_url': 'http://www.techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_description': 'eBay Completes Skype Sale at $2.75 Billion Valuation', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 19, 'investments': [{'company': {'name': 'eBay', 'permalink': 'ebay'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Andreessen Horowitz', 'permalink': 'andreessen-horowitz'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Silver Lake Partners', 'permalink': 'silver-lake-partners'}, 'person': None}]}, {'id': 33585, 'round_code': 'angel', 'source_url': 'http://www.efinancialnews.com/story/2005-09-19/skype-provides-record-return-on-capital', 'source_description': '', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 57737, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1489709/000148970910000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 7755032, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 16, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://www.lightreading.com/document.asp?doc_id=88186', 'source_description': 'LightReading', 'raised_amount': 18000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 6, 'company': {'name': 'Fon', 'permalink': 'fon'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/02/trialpay_backed.html', 'source_description': 'TrialPay Backed By Investors of Skype, Google, and Akamai For Payment Platform', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 20, 'company': {'name': 'TrialPay', 'permalink': 'trialpay'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/10/14/skype-founders-take-a-break-from-starting-lawsuits-to-start-music-company/', 'source_description': 'Skype Founders Take A Break From Starting Lawsuits To Start Music Company', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 10, 'funded_day': 14, 'company': {'name': 'Rdio', 'permalink': 'rdio'}}}], 'acquisition': {'price_amount': 2600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/122516/ebay_buys_skype_for_26_billion.html', 'source_description': 'EBay Buys Skype for $2.6 Billion', 'acquired_year': 2005, 'acquired_month': 9, 'acquired_day': 12, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/skype-to-acquire-qik-for-100-million-says-reliable-source-2011-1', 'source_description': 'CONFIRMED: Skype To Acquire Qik For $150 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 6, 'company': {'name': 'Qik', 'permalink': 'qik'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/23/what-skype-really-paid-for-groupme/', 'source_description': 'What Skype Really Paid For GroupMe', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 21, 'company': {'name': 'GroupMe', 'permalink': 'groupme'}}], 'offices': [{'description': 'Global HQ', 'address1': '23-29 Rives de Clausen', 'address2': '', 'zip_code': 'L-2165', 'city': 'Luxembourg City', 'state_code': None, 'country_code': 'LUX', 'latitude': 51.518132, 'longitude': -0.131916}, {'description': 'US office', 'address1': '3210 Porter Drive', 'address2': '', 'zip_code': '94304', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'London Office', 'address1': '2 Stephen Street', 'address2': '', 'zip_code': 'W1T 1AN', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 552, 'description': 'Skype released publicly', 'stoned_year': 2003, 'stoned_month': 8, 'stoned_day': 29, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 553, 'description': '1.5 million downloads and 100,000 concurrent users', 'stoned_year': 2003, 'stoned_month': 10, 'stoned_day': 22, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 554, 'description': 'SkypeOut launched', 'stoned_year': 2004, 'stoned_month': 7, 'stoned_day': 27, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 555, 'description': 'One million concurrent Skype users', 'stoned_year': 2004, 'stoned_month': 10, 'stoned_day': 20, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 556, 'description': '100 Billion free skype-to-skype minutes served.', 'stoned_year': 2008, 'stoned_month': 2, 'stoned_day': 22, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 557, 'description': '338 million registered Skype users', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 30, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 558, 'description': '100 million registered skype users', 'stoned_year': 2006, 'stoned_month': 4, 'stoned_day': 28, 'source_url': '', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 1231, 'description': 'Skype reaches more than 400 mio users.\\r\\nUSD 145 mio revenue in Q1 2009', 'stoned_year': 2009, 'stoned_month': 1, 'stoned_day': 31, 'source_url': 'http://investor.ebay.com/common/download/download.cfm?companyid=ebay&fileid=266606&filekey=581a206a-78df-4c3c-81c4-4a8b57e62440&filename=eBay_FINALQ42008EarningsRelease.pdf', 'source_text': '', 'source_description': 'Ebay Investor relations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 1285, 'description': 'Skype releases corporate Session-Internet-Protocol communications', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': 23, 'source_url': 'http://about.skype.com/2009/03/skype_opens_up_to_corporate_si.html', 'source_text': '', 'source_description': 'Skype opens up to corporate SIP communications', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 2271, 'description': 'Skype hits 521 million users and $175 million in Q3', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 21, 'source_url': 'http://www.techcrunch.com/2009/10/21/skype-hits-521-million-users-and-185-million-in-quarterly-revenue/', 'source_text': '', 'source_description': 'Skype Hits 521 Million Users And $185 Million In Quarterly Revenue', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 4335, 'description': 'eBay completes Skype sale to Silver Lake Partners, Andreessen Horowitz, Joltid, and the Canada Pension Plan Investment Board. ', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2009/11/19/ebay-skype-sale/', 'source_text': '', 'source_description': 'Breaking: eBay Completes Skype Sale At $2.75 Billion Valuation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 11953, 'description': 'Skype says new CEO, shaky market will delay its IPO until at least July', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://venturebeat.com/2011/01/26/skype-delays-ipo/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Venturebeat_deals+(VentureBeat+%C2%BB+Deals+%26+More)', 'source_text': '', 'source_description': 'Skype says new CEO, shaky market will delay its IPO until at least July', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 13070, 'description': 'Skype Revenue Up 20 Percent To $860M In 2010; Paid Users Up 19 Percent', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2011/03/07/skype-revenue-up-20-percent-to-860m-in-2010-paid-users-up-19-percent/', 'source_text': '', 'source_description': 'Skype Revenue Up 20 Percent To $860M In 2010; Paid Users Up 19 Percent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 15453, 'description': 'Skype reverse-engineered by Russian geek', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.ewdn.com/2011/06/04/skype-reverse-engineered-by-russian-geek/', 'source_text': None, 'source_description': 'Skype reverse-engineered by Russian geek', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}, {'id': 16364, 'description': 'Facebook Skype released', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 6, 'source_url': 'http://techcrunch.com/2011/07/06/facebook-launches-skype-powered-video-calling/', 'source_text': '', 'source_description': 'Facebook Launches Skype-Powered Video Calling', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Skype', 'permalink': 'skype'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 130], 'assets/images/resized/0019/7978/197978v1-max-150x150.png'], [[250, 217], 'assets/images/resized/0019/7978/197978v1-max-250x250.png'], [[450, 390], 'assets/images/resized/0019/7978/197978v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.ewdn.com/2011/06/05/ewdn-exclusive-an-interview-with-efim-bushmanov/', 'title': 'Interview with Efim Bushmanov, Skype reverse engineer'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc3'), 'name': 'Pando Networks', 'permalink': 'pando-networks', 'crunchbase_url': 'http://www.crunchbase.com/company/pando-networks', 'homepage_url': 'http://pandonetworks.com', 'blog_url': 'http://www.pandonetworks.com/blog', 'blog_feed_url': 'http://blog.pando.com/?feed=rss2', 'twitter_username': 'pandonetworks', 'category_code': 'games_video', 'number_of_employees': 23, 'founded_year': 2004, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'p2p, video, streaming, download, cdn', 'alias_list': '', 'email_address': 'info@pando.com', 'phone_number': '212-343-8800', 'description': 'Accelerating large media delivery', 'created_at': 'Tue Feb 05 22:28:14 UTC 2008', 'updated_at': 'Thu Aug 15 12:52:39 UTC 2013', 'overview': '

Pando Networks (www.pandonetworks.com) improves the delivery performance of online media assets. Pando accelerates content delivery, increases download completion and provides detailed performance data. Pando technology currently accelerates the delivery of more than 200 million media downloads around the world each year. Pando is funded by Intel Capital, BRM Capital and Wheatley Partners.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0000/0406/406v1-max-150x150.png'], [[200, 67], 'assets/images/resized/0000/0406/406v1-max-250x250.png'], [[200, 67], 'assets/images/resized/0000/0406/406v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Pando', 'permalink': 'pando'}, {'name': 'Pando Publisher', 'permalink': 'pando-publisher'}], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Robert', 'last_name': 'Levitan', 'permalink': 'robert-levitan'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Avi', 'last_name': 'Cohen', 'permalink': 'avi-cohen'}}, {'is_past': False, 'title': 'VP Product Management', 'person': {'first_name': 'Narkis', 'last_name': 'Engler', 'permalink': 'narkis-engler'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Eli', 'last_name': 'Barkat', 'permalink': 'eli-barkat'}}, {'is_past': True, 'title': 'Founder & CMO', 'person': {'first_name': 'Yaron', 'last_name': 'Samid', 'permalink': 'yaron-samid'}}, {'is_past': True, 'title': 'Founder & CTO', 'person': {'first_name': 'Laird', 'last_name': 'Popkin', 'permalink': 'laird-popkin'}}, {'is_past': True, 'title': 'VP BD', 'person': {'first_name': 'David', 'last_name': 'Buckland', 'permalink': 'david-buckland'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Deanna', 'last_name': 'Vincent', 'permalink': 'deanna-vincent'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'RLM PR', 'permalink': 'rlm-pr'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'TriplePoint', 'permalink': 'triplepoint'}}], 'total_money_raised': '$11M', 'funding_rounds': [{'id': 1750, 'round_code': 'a', 'source_url': '', 'source_description': 'SEC D', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': []}, {'id': 13587, 'round_code': 'b', 'source_url': 'http://www.pando.com/pr-intel', 'source_description': 'INTEL CAPITAL LEADS INVESTMENT IN PANDO NETWORKS’ SECOND FUNDING ROUND OF $7 MILLION', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'BRM Capital', 'permalink': 'brm-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Wheatley Partners', 'permalink': 'wheatley-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '520 Broadway', 'address2': '10th Floor', 'zip_code': '10012', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.722655, 'longitude': -73.99873}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc6'), 'name': 'Ikan', 'permalink': 'ikan', 'crunchbase_url': 'http://www.crunchbase.com/company/ikan', 'homepage_url': 'http://www.ikan.net', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 5, 'founded_year': 2003, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'scan, groceries', 'alias_list': None, 'email_address': 'customerservice@ikan.net', 'phone_number': '887.365.4526', 'description': None, 'created_at': 'Tue Jun 26 09:30:55 UTC 2007', 'updated_at': 'Mon Jul 28 19:53:41 UTC 2008', 'overview': '

Ikan is a countertop unit that allows you to keep track of groceries you’ll need on your next trip. You simply scan the products as you finish them and it’s automatically added to your online shopping cart. When you’re ready to order your groceries you’ll know exactly what you need. If you’re the forgetful type, then the e-mail reminders will keep you abreast of your diminishing food supply. The voice recorder also lets you tack on products when there isn’t a barcode available for scanning.

', 'image': {'available_sizes': [[[150, 88], 'assets/images/resized/0000/0466/466v1-max-150x150.png'], [[159, 94], 'assets/images/resized/0000/0466/466v1-max-250x250.png'], [[159, 94], 'assets/images/resized/0000/0466/466v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'ikan', 'permalink': 'ikan'}], 'relationships': [{'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Fred', 'last_name': 'Wagner', 'permalink': 'fred-wagner'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Fabio', 'last_name': 'Zsigmond', 'permalink': 'fabio-zsigmond'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Geraldo', 'last_name': 'Yoshizawa', 'permalink': 'geraldo-yoshizawa'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '2001 West Main St., Suite 255', 'address2': None, 'zip_code': '06902', 'city': 'Stamford', 'state_code': 'CT', 'country_code': 'USA', 'latitude': 41.049051, 'longitude': -73.563878}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dc7'), 'name': 'delicious', 'permalink': 'delicious', 'crunchbase_url': 'http://www.crunchbase.com/company/delicious', 'homepage_url': 'http://delicious.com', 'blog_url': 'http://blog.delicious.com/', 'blog_feed_url': 'http://blog.delicious.com/blog/feed', 'twitter_username': 'Delicious', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2003, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'taxna', 'alias_list': 'de.licio.us', 'email_address': 'contact@avos.com', 'phone_number': '18873654526', 'description': 'Social Bookmarking', 'created_at': 'Tue Jun 26 10:03:51 UTC 2007', 'updated_at': 'Mon Oct 07 17:17:01 UTC 2013', 'overview': '

Delicious is a social bookmarking website – the primary use of Delicious is to store your bookmarks online, which allows you to access the same bookmarks from any computer and add bookmarks from anywhere, too. On Delicious, you can use tags to organize and remember your bookmarks, which is a much more flexible system than folders.

\\n\\n

You can also use del.icio.us to see the interesting links that your friends and other people bookmark, and share links with them in return. You can even browse and search Delicious to discover the cool and useful bookmarks that everyone else has saved – which is made easy with tags.

\\n\\n

Delicious was acquired by Yahoo on December 9, 2005. No formal acquisition price was disclosed, though it has been speculated at $10 to $15 million. Early seed round investors include Marc Andreessen, Tim O’Reilly, Esther Dyson, Josh Kopelman, Bob Young, Seth Goldstein and Howard Morgan.

\\n\\n

In September 2007 Delicious showed an upcoming version 2 to the public, along with the announcement of a complete re-write of the code base.

\\n\\n

In April 2011, Delicious was acquired by Chad Hurley and Steve Chen’s AVOS Systems. Since the acquisition, Delicious has undergone several redesigns.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0000/0499/499v2-max-150x150.jpg'], [[247, 68], 'assets/images/resized/0000/0499/499v2-max-250x250.jpg'], [[247, 68], 'assets/images/resized/0000/0499/499v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'del.icio.us', 'permalink': 'del-icio-us'}], 'relationships': [{'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Thomas', 'last_name': 'Gieselmann', 'permalink': 'thomas-gieselmann'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Joshua', 'last_name': 'Schachter', 'permalink': 'joshua-schachter'}}, {'is_past': True, 'title': 'Lead Engineer', 'person': {'first_name': 'Josh', 'last_name': 'Whiting', 'permalink': 'josh-whiting'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Dan', 'last_name': 'Kantor', 'permalink': 'dan-kantor'}}, {'is_past': True, 'title': 'Product team lead', 'person': {'first_name': 'Stephen', 'last_name': 'Hood', 'permalink': 'stephen-hood'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nick', 'last_name': 'Nguyen', 'permalink': 'nick-nguyen'}}], 'competitions': [{'competitor': {'name': 'Faves', 'permalink': 'faves'}}, {'competitor': {'name': 'ZapNat', 'permalink': 'zapnat'}}, {'competitor': {'name': 'Diigo', 'permalink': 'diigo'}}, {'competitor': {'name': 'Zigtag', 'permalink': 'zigtag'}}, {'competitor': {'name': 'Skewz', 'permalink': 'skewz'}}, {'competitor': {'name': 'Xerpi', 'permalink': 'xerpi'}}, {'competitor': {'name': 'DeliciousSafari', 'permalink': 'delicioussafari'}}, {'competitor': {'name': 'link-together', 'permalink': 'link-together'}}, {'competitor': {'name': 'Antstorm', 'permalink': 'antstorm'}}, {'competitor': {'name': 'ma.gnolia', 'permalink': 'magnolia'}}, {'competitor': {'name': 'Pinboard', 'permalink': 'pinboard'}}, {'competitor': {'name': 'Clipboard', 'permalink': 'clipboard'}}, {'competitor': {'name': 'Kippt', 'permalink': 'kippt'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 53, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/?p=23', 'source_description': 'Profile: Del.icio.us', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': {'name': 'Amazon', 'permalink': 'amazon'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'e.ventures', 'permalink': 'e-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Josh', 'last_name': 'Kopelman', 'permalink': 'josh-kopelman'}}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/27/yahoo-sells-delicious-to-youtube-founders/', 'source_description': 'Yahoo Sells Delicious To YouTube Founders', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 27, 'acquiring_company': {'name': 'AVOS Systems', 'permalink': 'avos'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Mateo', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 13, 'description': 'Joshua Schachter resigns from the company he started.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 19, 'source_url': 'http://www.techcrunch.com/2008/06/19/it-gets-worse-for-yahoo-delicious-founder-leaving/', 'source_text': None, 'source_description': 'It Gets Worse: Joshua Schachter Leaving Yahoo', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 320, 'description': 'Delicious 2.0 enters private beta', 'stoned_year': 2007, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://www.techcrunch.com/2007/09/06/exclusive-screen-shots-and-feature-overview-of-delicious-20-preview/', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 346, 'description': 'Delicious 2.0 launches', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 31, 'source_url': 'http://www.techcrunch.com/2008/07/31/delicious-20-launches-really-it-totally-launched/', 'source_text': '', 'source_description': 'Delicious 2.0 Launches. Really. It Totally Launched.', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 14503, 'description': 'Delicious acquired by AVOS', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/04/27/yahoo-sells-delicious-to-youtube-founders/', 'source_text': None, 'source_description': 'Yahoo Sells Delicious To YouTube Founders', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}, {'id': 18122, 'description': 'Delicious 3.0 launches', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 27, 'source_url': 'http://www.whatissixsigma.net/delicious-3-0-the-end-of-del-icio-us/', 'source_text': None, 'source_description': 'Delicious 3.0 – The End of Del.icio.us', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'delicious', 'permalink': 'delicious'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 111], 'assets/images/resized/0015/5793/155793v2-max-150x150.png'], [[250, 186], 'assets/images/resized/0015/5793/155793v2-max-250x250.png'], [[450, 335], 'assets/images/resized/0015/5793/155793v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.whatissixsigma.net/delicious-3-0-the-end-of-del-icio-us/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dcc'), 'name': 'AllPeers', 'permalink': 'allpeers', 'crunchbase_url': 'http://www.crunchbase.com/company/allpeers', 'homepage_url': 'http://www.allpeers.com', 'blog_url': 'http://www.allpeers.com/blog/', 'blog_feed_url': 'http://www.allpeers.com/blog/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 3, 'deadpooled_day': 3, 'deadpooled_url': 'http://www.techcrunch.com/2008/03/03/much-hyped-allpeers-to-deadpool/', 'tag_list': 'allpeers', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Thu Jun 28 07:47:43 UTC 2007', 'updated_at': 'Sat Mar 06 00:28:43 UTC 2010', 'overview': '

AllPeers is a simple, persistent buddy list in the browser. Initially, interaction with those buddies will be limited to discovering and sharing files - If you choose to, you can share any file on your network with one or more of your friends. They will be able to see what files you choose to share (even getting an RSS feed of new files you include), and with a single click download it to their own hard drive.

\\n\\n

AllPeers will work even when the sharer is offline - AllPeers is a bittorent client, and will allow files to be pulled from multiple sources. When downloading, the file may be grabbed partially or fully from others you have shared it with (or who shared it with you). So a user just clicks on a file, and waits for it to eventually download.

', 'image': {'available_sizes': [[[150, 58], 'assets/images/resized/0000/0985/985v1-max-150x150.jpg'], [[175, 68], 'assets/images/resized/0000/0985/985v1-max-250x250.jpg'], [[175, 68], 'assets/images/resized/0000/0985/985v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'AllPeers', 'permalink': 'allpeers'}], 'relationships': [{'is_past': None, 'title': 'Chief Software Architect', 'person': {'first_name': 'Jan', 'last_name': 'Odvarko', 'permalink': 'jan-odvarko'}}, {'is_past': None, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Louis', 'last_name': 'Letourneau', 'permalink': 'louis-letourneau'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Cedric', 'last_name': 'Maloux', 'permalink': 'cedric-maloux'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Matthew', 'last_name': 'Gertner', 'permalink': 'matthew-gertner'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Gerard', 'last_name': 'Lopez', 'permalink': 'gerard-lopez'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 64, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2006/03/06/allpeers-nails-series-a-funding/', 'source_description': 'AllPeers Nails Series A Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Oxford', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.752276, 'longitude': -1.255824}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dd0'), 'name': 'Wize', 'permalink': 'wize', 'crunchbase_url': 'http://www.crunchbase.com/company/wize', 'homepage_url': 'http://wize.com', 'blog_url': 'http://blog.wize.com/', 'blog_feed_url': 'http://blog.wize.com/my_weblog/index.rdf', 'twitter_username': 'WizeDotCom', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'reviews, shopping, search', 'alias_list': '', 'email_address': '', 'phone_number': '650-312-1017', 'description': 'eCommerce Product Reviews', 'created_at': 'Thu Jun 28 09:08:16 UTC 2007', 'updated_at': 'Wed May 15 05:12:51 UTC 2013', 'overview': '

Finding the products that are right for you and within your budget is a tough task, but Wize has a solution. Wize is simplifying the shopping experience for you by centralizing all of the important information about products and allowing you to easily navigate through product reviews. We understand how hard it is to find the best products specific to your needs and have built Wize.com to help you shop with confidence. Using our proprietary technology, we analyze content around the web and generate Wize product recommendations specific to how people intend to use them.

\\n\\n

Are you looking for the best digital cameras for your upcoming vacation? Or maybe you’re interested in finding the best stroller for twins? Simply tell us what you are looking for and we’ll do the rest! Let us help you so that you can be sure you are getting the best product at the best price for you!

', 'image': {'available_sizes': [[[90, 60], 'assets/images/resized/0000/1156/1156v4-max-150x150.png'], [[90, 60], 'assets/images/resized/0000/1156/1156v4-max-250x250.png'], [[90, 60], 'assets/images/resized/0000/1156/1156v4-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Head of Product', 'person': {'first_name': 'Ethan', 'last_name': 'Smith', 'permalink': 'ethan-smith'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Stephanie', 'last_name': 'Quay', 'permalink': 'stephanie-quay'}}, {'is_past': True, 'title': 'Sr. Engineer', 'person': {'first_name': 'Stefan', 'last_name': 'Antonowicz', 'permalink': 'stefan-antonowicz'}}], 'competitions': [{'competitor': {'name': 'PowerReviews', 'permalink': 'powerreviews'}}, {'competitor': {'name': 'Retrevo', 'permalink': 'retrevo'}}, {'competitor': {'name': 'Testseek', 'permalink': 'testseek'}}, {'competitor': {'name': 'SmartRatings', 'permalink': 'smartratings'}}, {'competitor': {'name': 'utoopia', 'permalink': 'utoopia'}}, {'competitor': {'name': 'Reviewgist', 'permalink': 'reviewgist'}}, {'competitor': {'name': 'TestFreaks', 'permalink': 'testfreaks'}}, {'competitor': {'name': 'Pluribo', 'permalink': 'pluribo'}}], 'providerships': [], 'total_money_raised': '$4.99M', 'funding_rounds': [{'id': 70, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/01/21/four-month-old-wize-gets-4-million/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 5291, 'round_code': 'b', 'source_url': 'http://www.bayareanewsgroup.com/multimedia/mn/biz/specialreport/vcchart_q42008.htm', 'source_description': 'VC Funding, Fourth Quarter 2008 ', 'raised_amount': 988000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/07/comparison-shopping-site-nextag-acquires-product-review-engine-wize/', 'source_description': 'Comparison Shopping Site NexTag Acquires Product Review Engine Wize', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 7, 'acquiring_company': {'name': 'NexTag', 'permalink': 'nextag'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1110 Burlingame Ave', 'address2': 'Suite 300', 'zip_code': '94010', 'city': 'Burlingame', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.559287, 'longitude': -122.302262}], 'milestones': [{'id': 6600, 'description': 'NexTag acquires Wize', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://techcrunch.com/2010/07/07/comparison-shopping-site-nextag-acquires-product-review-engine-wize/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wize', 'permalink': 'wize'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
\\r\\n', 'description': ''}, {'embed_code': '
See this video on Vator.tv »
', 'description': ''}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV: 4/2008

'}], 'screenshots': [{'available_sizes': [[[120, 150], 'assets/images/resized/0003/7874/37874v1-max-150x150.png'], [[200, 250], 'assets/images/resized/0003/7874/37874v1-max-250x250.png'], [[361, 450], 'assets/images/resized/0003/7874/37874v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dd7'), 'name': 'SellABand', 'permalink': 'sellaband', 'crunchbase_url': 'http://www.crunchbase.com/company/sellaband', 'homepage_url': 'http://sellaband.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'sellaband', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 2, 'deadpooled_day': 23, 'deadpooled_url': 'http://thenextweb.com/eu/2010/02/23/sellaband-deadpool-files-bankruptcy/', 'tag_list': 'musicmonetizatoin, music, bands', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Fund raising for bands', 'created_at': 'Wed Jul 04 05:29:56 UTC 2007', 'updated_at': 'Thu Apr 29 21:39:39 UTC 2010', 'overview': '

SellaBand.com first launched in August 2006. The new SellaBand Fan Funding model launched 1st October 2009 and allows artists to raise any budget for any project. Artists are in control and retain all rights. Revenue Share is optional.

\\n\\n

Artists that sign up to SellaBand have the freedom to choose:\\nTarget budget: Starting at $10,000 up to $100,000\\nThey can set their own Incentives for the Believers: The minimum incentive is a download\\nRevenue share is now optional and Artists can set the Percentage of revenues they wish to share between the Artist and the Believers\\nArtists will always own the master recordings and keep 100% of publishing rights.\\nIf Artists go ‘Custom’, they can adapt it all: Budgets, part prices, incentives, currencies, even use the funds for touring or promotion… You name it! Initially, Custom is by invitation only.

\\n\\n

SellaBand is the Fan Funding engine for the music industry.

', 'image': {'available_sizes': [[[150, 27], 'assets/images/resized/0000/1741/1741v1-max-150x150.png'], [[235, 43], 'assets/images/resized/0000/1741/1741v1-max-250x250.png'], [[235, 43], 'assets/images/resized/0000/1741/1741v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SellABand', 'permalink': 'sellaband'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Johan', 'last_name': 'Vosmeijer', 'permalink': 'johan-vosmeijer'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Pim', 'last_name': 'Betist', 'permalink': 'pim-betist'}}, {'is_past': False, 'title': 'Music Director', 'person': {'first_name': 'Dagmar', 'last_name': 'Heijmans', 'permalink': 'dagmar-heijmans'}}], 'competitions': [{'competitor': {'name': 'Amie Street', 'permalink': 'amiestreet'}}, {'competitor': {'name': 'Slice The Pie', 'permalink': 'slice-the-pie'}}, {'competitor': {'name': 'amazingtunes', 'permalink': 'amazingtunes'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 1989, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2008/04/08/sellaband-wins-5-million-in-further-funding/', 'source_description': 'SellaBand wins $5 million in further funding', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 8, 'investments': [{'company': None, 'financial_org': {'name': 'Prime Ventures', 'permalink': 'prime-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Harderhook 22', 'address2': None, 'zip_code': None, 'city': '46395 Bocholt', 'state_code': None, 'country_code': 'DEU', 'latitude': 51.808933, 'longitude': 6.553452}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'permalink': 'icontact', 'crunchbase_url': 'http://www.crunchbase.com/company/icontact', 'homepage_url': 'http://icontact.com', 'blog_url': 'http://icontact.com/blog', 'blog_feed_url': '', 'twitter_username': 'icontact', 'category_code': 'messaging', 'number_of_employees': 300, 'founded_year': 2003, 'founded_month': 7, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'icontact, blogs, rss, surveys, community, newsletters, email-marketing, email-marketing-software, email-marketing-social-media-marketing, social-media-marketing', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'email marketing software', 'created_at': 'Sat Jul 07 07:53:12 UTC 2007', 'updated_at': 'Fri Dec 27 21:08:43 UTC 2013', 'overview': '

iContact is the largest private provider of email marketing and social media marketing software and services to small and mid-sized companies globally. It is based in Morrisville, NC. iContact makes it easy to create, send, and track email newsletters, surveys, autoresponders. iContact’s products include iContact, iContact Enterprise, iContact Agency, iContact for Salesforce, iContact Free Edition and Ettend.com.

\\n\\n

As a B Corporation, iContact utilizes the 4-1s Corporate Social Responsibility Model, donating 1% of employee time to community volunteering, 1% of payroll, 1% of equity, and 1% of product to its local and global community as part of its social mission. iContact works hard to maintain a fun, creative, energetic, challenging, and community-oriented company culture.

\\n\\n

iContact was founded in 2003 by Ryan Allis and Aaron Houghton in Chapel Hill, NC.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/1954/1954v3-max-150x150.png'], [[219, 76], 'assets/images/resized/0000/1954/1954v3-max-250x250.png'], [[219, 76], 'assets/images/resized/0000/1954/1954v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'iContact', 'permalink': 'icontact'}, {'name': 'iContact Plus', 'permalink': 'icontactplus'}, {'name': 'iContact Enterprise', 'permalink': 'icontact-enterprise'}, {'name': 'iContact Agency', 'permalink': 'icontact-agency'}, {'name': 'iContact for Salesforce', 'permalink': 'icontact-for-salesforce'}], 'relationships': [{'is_past': False, 'title': 'Chairman and Co-Founder', 'person': {'first_name': 'Aaron', 'last_name': 'Houghton', 'permalink': 'aaron-houghton'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Ralph', 'last_name': 'Kasuba', 'permalink': 'ralph-kasuba-2'}}, {'is_past': False, 'title': 'Chief Architect', 'person': {'first_name': 'David', 'last_name': 'Rasch', 'permalink': 'david-rasch'}}, {'is_past': False, 'title': 'SVP of Sales & BD', 'person': {'first_name': 'Kevin', 'last_name': 'Fitzgerald', 'permalink': 'kevin-fitzgerald-3'}}, {'is_past': False, 'title': 'SVP Customer Support', 'person': {'first_name': 'Sarah', 'last_name': 'Stealey', 'permalink': 'sarah-stealey'}}, {'is_past': False, 'title': 'investments', 'person': {'first_name': 'Bob', 'last_name': 'Nye', 'permalink': 'bob-nye'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Bradford D.', 'last_name': 'Woloson', 'permalink': 'bradford-d-woloson'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Carter', 'last_name': 'Griffin', 'permalink': 'carter-griffin'}}, {'is_past': True, 'title': 'Co-Founder/CEO', 'person': {'first_name': 'Ryan', 'last_name': 'Allis', 'permalink': 'ryan-allis'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Keith', 'last_name': 'Moore', 'permalink': 'keith-moore'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Tim', 'last_name': 'Oakley', 'permalink': 'tim-oakley'}}, {'is_past': True, 'title': 'Vice President of Marketing', 'person': {'first_name': 'Brandon', 'last_name': 'Milford', 'permalink': 'brandon-milford'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Taylor', 'last_name': 'Barr', 'permalink': 'taylor-barr'}}, {'is_past': True, 'title': 'Chief Product and Marketing Officer', 'person': {'first_name': 'Jeff', 'last_name': 'Revoy', 'permalink': 'jeff-revoy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Alan', 'last_name': 'Cox', 'permalink': 'alan-cox'}}, {'is_past': True, 'title': 'Creative Director / Senior Manager of User Experience and Design', 'person': {'first_name': 'Jeff', 'last_name': 'Wright', 'permalink': 'jeff-wright'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Ken', 'last_name': \"O'Berry\", 'permalink': 'ken-oberry'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Arie', 'last_name': 'Abecassis', 'permalink': 'arie-abecassis'}}, {'is_past': True, 'title': 'Early Employee', 'person': {'first_name': 'Erik', 'last_name': 'Severinghaus', 'permalink': 'erik-severinghaus'}}, {'is_past': True, 'title': 'UX Designer', 'person': {'first_name': 'Dan', 'last_name': 'Auer', 'permalink': 'dan-auer'}}], 'competitions': [{'competitor': {'name': 'Mad Mimi', 'permalink': 'mad-mimi'}}, {'competitor': {'name': 'AWeber Communications', 'permalink': 'aweber-communications'}}, {'competitor': {'name': 'VerticalResponse', 'permalink': 'vertical-response'}}, {'competitor': {'name': 'Constant Contact', 'permalink': 'constant-contact'}}, {'competitor': {'name': 'MailChimp', 'permalink': 'mailchimp'}}, {'competitor': {'name': 'Freshview', 'permalink': 'freshview'}}, {'competitor': {'name': 'MailerMailer', 'permalink': 'mailermailer'}}], 'providerships': [{'title': 'Accounting', 'is_past': False, 'provider': {'name': 'Hughes Pittman & Gupton LLP', 'permalink': 'hughes-pittman-gupton'}}], 'total_money_raised': '$53.4M', 'funding_rounds': [{'id': 92, 'round_code': 'a', 'source_url': 'http://www.ryanallis.com/blog/archives/000227.html', 'source_description': '', 'raised_amount': 5350000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 29, 'investments': [{'company': None, 'financial_org': {'name': 'IDEA Fund Partners', 'permalink': 'idea-fund-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Updata Partners', 'permalink': 'updata-partners'}, 'person': None}]}, {'id': 3705, 'round_code': 'debt_round', 'source_url': 'http://localtechwire.com/business/local_tech_wire/venture/story/3788893/', 'source_description': 'iContact closes on $5M in new funding', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'North Atlantic Capital', 'permalink': 'north-atlantic-capital'}, 'person': None}]}, {'id': 17944, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/419-e-mail-marketer-icontact-raises-40-million/', 'source_description': 'E-Mail Marketer iContact Raises $40 Million', 'raised_amount': 40000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 30, 'investments': [{'company': None, 'financial_org': {'name': 'JMI Equity', 'permalink': 'jmi-equity'}, 'person': None}]}, {'id': 18060, 'round_code': 'debt_round', 'source_url': '', 'source_description': '', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 2, 'investments': []}, {'id': 28787, 'round_code': 'seed', 'source_url': 'http://www.prleap.com/pr/35747/', 'source_description': 'Broadwick Set to Expand With $500,000 of Funding from NC IDEA', 'raised_amount': 500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'IDEA Fund Partners', 'permalink': 'idea-fund-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/02/28/vocus-buys-email-marketing-company-icontact-for-169-million/', 'source_description': 'Vocus Buys Email Marketing Company iContact For $169 Million', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 28, 'acquiring_company': {'name': 'Vocus', 'permalink': 'vocus'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.icontact.com/blog/announcing-icontact%E2%80%99s-series-b-investment/', 'source_description': 'Announcing iContact’s Series B Investment', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Ettend', 'permalink': 'ettend'}}], 'offices': [{'description': 'iContact', 'address1': '5221 Paramount Parkway', 'address2': '', 'zip_code': '27560', 'city': 'Morrisville', 'state_code': 'NC', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://email-marketing-services.bestreviews.net/interview-with-icontact-vocus-marketing-strategist-john-hayes/', 'title': \"iContact's John Hayes on iContact and Vocus' Marketing Suite\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddb'), 'name': 'MeeVee', 'permalink': 'meevee', 'crunchbase_url': 'http://www.crunchbase.com/company/meevee', 'homepage_url': 'http://meevee.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2000, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tvguide, video', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Personalized TV Guide', 'created_at': 'Sat Jul 07 07:59:25 UTC 2007', 'updated_at': 'Sun Apr 26 05:09:47 UTC 2009', 'overview': '

The experience is centered on the personalized TV guide. On MeeVee, you select from a list of favorite actors, genres, subjects, or enter keyword interests (e.g. “golf”). The guide then finds upcoming programming based on those interests. It’s a saved search so it’ll keep looking for those programs for you until you remove the interests. If you love “Jennifer Aniston”, you can add her as a favorite actress or keyword and, until you delete her, all shows or movies on TV with Jennifer Aniston showing through your cable or satellite provider will populate your guide. If you are willing to invest the time, you can build a totally customized TV guide and ditch the universal grid completely. It’s an easy-to-use application and it’s a nice model for building a personalized web experience. The TV listings widget (called “MeeVee Guide”) they’ve built shows your personal guide to visitors of your pages on other sites. You can add to a page by pasting a snippet of code to it.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0000/1960/1960v1-max-150x150.png'], [[176, 80], 'assets/images/resized/0000/1960/1960v1-max-250x250.png'], [[176, 80], 'assets/images/resized/0000/1960/1960v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MeeVee', 'permalink': 'meevee'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Ian', 'last_name': 'Aaron', 'permalink': 'ian-aaron'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Brian', 'last_name': 'Steel', 'permalink': 'brian-steel-2'}}, {'is_past': True, 'title': 'Co-founder; EVP Business Development', 'person': {'first_name': 'Jonathan', 'last_name': 'Barker', 'permalink': 'jonathan-barker-2'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Raneri', 'permalink': 'michael-raneri'}}, {'is_past': True, 'title': 'VP of Engineering and Products', 'person': {'first_name': 'Shampa', 'last_name': 'Banerjee', 'permalink': 'shampa-banerjee'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Larry', 'last_name': 'Kubal', 'permalink': 'larry-kubal'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Ido', 'last_name': 'Shilon', 'permalink': 'ido-shilon'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'PerkettPR', 'permalink': 'perkettpr'}}], 'total_money_raised': '$25M', 'funding_rounds': [{'id': 90, 'round_code': 'b', 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2006_Feb_27/ai_n16085490', 'source_description': '', 'raised_amount': 6500000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Labrador Ventures', 'permalink': 'labrador-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}, {'id': 91, 'round_code': 'c', 'source_url': 'http://www.econtentmag.com/Articles/ArticleReader.aspx?ArticleID=17395', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DBL Investors', 'permalink': 'dbl-investors'}, 'person': None}]}, {'id': 398, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}, {'id': 704, 'round_code': 'd', 'source_url': 'http://venturebeat.com/2007/09/20/meevee-for-online-video-search-and-sharing-raises-35-million/', 'source_description': 'Meevee, for online video search and sharing, raises $3.5 million', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'DEFTA Partners', 'permalink': 'defta-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Edmond de Rothschild Venture Capital', 'permalink': 'edmond-de-rothschild-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'FCPR Israel Discovery Fund', 'permalink': 'fcpr-israel-discovery-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Labrador Ventures', 'permalink': 'labrador-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DBL Investors', 'permalink': 'dbl-investors'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/05/07/meevee-acquired-by-live-universe/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'acquiring_company': {'name': 'LiveUniverse', 'permalink': 'liveuniverse'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '500 Airport Blvd., Suite 400', 'address2': None, 'zip_code': '94010', 'city': 'Burlingame', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.590339, 'longitude': -122.341715}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddc'), 'name': 'blinkx', 'permalink': 'blinkx', 'crunchbase_url': 'http://www.crunchbase.com/company/blinkx', 'homepage_url': 'http://www.blinkx.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'blinkxdotcom', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'videosearch, search, multimediasearch', 'alias_list': '', 'email_address': 'feedback@blinkx.com', 'phone_number': '+1 415 848 2986', 'description': '', 'created_at': 'Sat Jul 07 10:51:42 UTC 2007', 'updated_at': 'Wed Dec 04 03:54:40 UTC 2013', 'overview': '

blinkx is an Internet Media platform that connects online video viewers with content publishers and distributors, utilizing advertising to monetize those interactions. blinkx has an index of over 35 million hours of video and 800 media partnerships; 111 patents preserve the site’s proprietary search engine technology, which is known as CORE.

\\n\\n

Founded in 2004, blinkx went public on the London Stock Exchange (AIM) in May, 2007. The company is headquartered in San Francisco, CA and London, England.

\\n\\n

blinkx powers video search for sites such as AOL and ask.com. In addition, blinkx has expanded into mobile video and Connected TV through partnerships with Samsung, Sony, Roku, Orb Networks and other companies.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0000/2068/2068v3-max-150x150.png'], [[158, 72], 'assets/images/resized/0000/2068/2068v3-max-250x250.png'], [[158, 72], 'assets/images/resized/0000/2068/2068v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Blinkx', 'permalink': 'blinkx'}], 'relationships': [{'is_past': False, 'title': 'CEO & Executive Director', 'person': {'first_name': 'S.', 'last_name': 'Brian Mukherjee', 'permalink': 's-brian-mukherjee'}}, {'is_past': False, 'title': 'Founder And President', 'person': {'first_name': 'Suranga', 'last_name': 'Chandratillake', 'permalink': 'suranga-chandratillake'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Julia', 'last_name': 'Blystone', 'permalink': 'julia-blystone'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Matthew', 'last_name': 'Scheybeler', 'permalink': 'matthew-scheybeler'}}, {'is_past': False, 'title': 'Vice President of Product', 'person': {'first_name': 'Robert', 'last_name': 'McDaniel', 'permalink': 'robert-mcdaniel'}}, {'is_past': False, 'title': 'Executive Vice President, Business Affairs and General Counsel', 'person': {'first_name': 'Frank', 'last_name': 'Pao', 'permalink': 'frank-pao'}}, {'is_past': False, 'title': 'Finance Director', 'person': {'first_name': 'Frances', 'last_name': 'Smith', 'permalink': 'frances-smith'}}, {'is_past': False, 'title': 'Senior Vice President, Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Slivhanovski', 'permalink': 'dan-slivhanovski'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Suranga', 'last_name': 'Chandratillake', 'permalink': 'suranga-chandratillake'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'S.', 'last_name': 'Brian Mukherjee', 'permalink': 's-brian-mukherjee'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Jonathan', 'last_name': 'Spira', 'permalink': 'jonathan-spira'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Matthew', 'last_name': 'Service', 'permalink': 'matthew-service'}}, {'is_past': True, 'title': 'Senior Vice President - Group Controller', 'person': {'first_name': 'Edward', 'last_name': 'Reginelli', 'permalink': 'edward-reginelli'}}, {'is_past': True, 'title': 'SVP - Business Development', 'person': {'first_name': 'Federico', 'last_name': 'Grosso', 'permalink': 'federico-grosso'}}, {'is_past': True, 'title': 'engineer', 'person': {'first_name': 'Gene', 'last_name': 'Tsai', 'permalink': 'gene-tsai'}}, {'is_past': True, 'title': 'President/General Manager Desktop Division', 'person': {'first_name': 'Jamie', 'last_name': 'Miller', 'permalink': 'jamie-miller-2'}}, {'is_past': True, 'title': 'Special Advisor - Business Development', 'person': {'first_name': 'Federico', 'last_name': 'Grosso', 'permalink': 'federico-grosso'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Tim', 'last_name': 'Hanlon', 'permalink': 'tim-hanlon'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Matthew', 'last_name': 'Service', 'permalink': 'matthew-service'}}], 'competitions': [{'competitor': {'name': 'Truveo', 'permalink': 'truveo'}}, {'competitor': {'name': 'Pixsy Image Search', 'permalink': 'pixsy-image-search'}}, {'competitor': {'name': 'CastTV', 'permalink': 'casttv'}}, {'competitor': {'name': 'Dabble', 'permalink': 'dabble'}}, {'competitor': {'name': 'RAMP Holdings', 'permalink': 'ramp'}}, {'competitor': {'name': 'MeFeedia', 'permalink': 'mefeedia'}}, {'competitor': {'name': 'Medioh!', 'permalink': 'medioh'}}, {'competitor': {'name': 'VideoSurf', 'permalink': 'videosurf'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 18500000, 'price_currency_code': 'GBP', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/04/08/video-ads-roll-up-as-blinkx-buys-burst-media-for-18-5-million/', 'source_description': 'Video Ads Roll-Up as Blinkx Buys Burst Media for £18.5 million', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 8, 'company': {'name': 'Burst Media', 'permalink': 'burstmedia'}}, {'price_amount': 36000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.mediapost.com/publications/article/162099/blinkx-buys-pvmg-for-engine-and-agency.html#axzz2KABoDYc3', 'source_description': 'Blinkx Buys PVMG For Engine And Agency ', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': None, 'company': {'name': 'Prime Visibility Media Group', 'permalink': 'prime-visibility-media-group'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/05/grab-media-grabbed-by-blinkx/', 'source_description': 'Amid Speculation That Yahoo Was Sniffing Around, Blinkx Acquires Video Content Syndication And Ad Platform Grab Media', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'Grab Media', 'permalink': 'grab-networks'}}, {'price_amount': 65000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mediapost.com/publications/article/214672/blinkx-acquires-mobile-video-ad-platform-rhythm-ne.html', 'source_description': 'Blinkx Acquires Mobile Video Ad Platform Rhythm NewMedia', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Rhythm NewMedia', 'permalink': 'rhythm-newmedia'}}], 'offices': [{'description': None, 'address1': '1 Market Street', 'address2': '19th Floor, Spear Tower', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793819, 'longitude': -122.395089}], 'milestones': [{'id': 30219, 'description': 'blinkx announces the blinkx app is available on Roku.', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 30, 'source_url': 'http://sip-trunking.tmcnet.com/news/2011/05/30/5542619.htm', 'source_text': None, 'source_description': 'blinkx Provides Content to Roku With New App ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30220, 'description': 'blinkx Appoints Frank Pao Executive Vice President of Business Affairs and General Counsel', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/blinkx-appoints-frank-pao-executive-vice-president-of-business-affairs-and-general-counsel-131130298.html', 'source_text': None, 'source_description': 'blinkx Appoints Frank Pao Executive Vice President of Business Affairs and General Counsel', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30221, 'description': 'blinkx Announces Partnership With Orb Networks', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 1, 'source_url': 'http://betanews.com/newswire/2011/11/01/blinkx-announces-partnership-with-orb-networks-to-bring-35-million-hours-of-tv-video-and-audio-to-orb-tv-and-orb-br-users/', 'source_text': None, 'source_description': 'blinkx Announces Partnership With Orb Networks to Bring 35 Million Hours of TV, Video and Audio to Orb TV and Orb BR Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30471, 'description': 'blinkx receives U.S. Patent for \"Moving Thumbnails\" technology', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://www.prnewswire.com/news-releases/blinkx-receives-us-patent-grant-for-moving-thumbnails-technology-138115278.html', 'source_text': None, 'source_description': 'blinkx Receives U.S. Patent Grant for Moving Thumbnails Technology ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30472, 'description': 'blinkx CEO Suranga Chandratillake Selected for San Francisco Business Times 40 Under 40', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 24, 'source_url': 'http://www.bizjournals.com/sanfrancisco/print-edition/2012/02/24/suranga-chandratillake.html', 'source_text': None, 'source_description': 'Forty Under 40: Suranga Chandratillake', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30473, 'description': 'blinkx reaches 100 million user milestone', 'stoned_year': 2012, 'stoned_month': 3, 'stoned_day': 27, 'source_url': 'http://mandmglobal.com/news/27-03-12/blinkx-reaches-100-million-users-milestone.aspx', 'source_text': None, 'source_description': 'Blinkx reaches 100 million users milestone', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30474, 'description': 'blinkx founder Suranga Chandratillake moves to role of President/Chief Strategy Officer. ', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 20, 'source_url': 'http://www.broadbandtvnews.com/2012/07/20/blinkx-founder-becomes-chief-strategy-officer/', 'source_text': None, 'source_description': 'Blinkx founder becomes chief strategy officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30475, 'description': 'blinkx founder Suranga Chandratillake elected Fellow of the Royal Academy of Engeneering', 'stoned_year': 2012, 'stoned_month': 7, 'stoned_day': 25, 'source_url': 'http://www.reuters.com/article/2012/07/25/idUS150801+25-Jul-2012+PRN20120725', 'source_text': None, 'source_description': \" Follow Reuters Facebook Twitter RSS YouTube RECOMMENDED VIDEO Assad's forces battle rebels closing in on Damascus… Market Pulse: Gold bugs to jitter bugs - $1,500/oz… New video of Russian meteorite emerges (1:22) Ask E. Jean: Three Occasions on \", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30476, 'description': 'Next-generation blinkx site goes into open beta', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 18, 'source_url': 'http://www.connectedworld.tv/articles/blinkx-opens-up-beta-of-next-gen-video-search-and-discovery-site/8121', 'source_text': None, 'source_description': 'BLINKX OPENS UP BETA OF NEXT-GEN VIDEO SEARCH AND DISCOVERY SITE', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}, {'id': 30477, 'description': 'Next-generation blinkx site goes global with full availability', 'stoned_year': 2013, 'stoned_month': 1, 'stoned_day': 22, 'source_url': 'http://www.prnewswire.com/news-releases/blinkxs-next-generation-video-search-and-discovery-site-goes-global-with-full-availability-187859371.html', 'source_text': None, 'source_description': \"blinkx's Next Generation Video Search And Discovery Site Goes Global With Full Availability\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'blinkx', 'permalink': 'blinkx'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 6, 'pub_day': 22, 'stock_symbol': 'BLNX'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/10/blinkxcom-is-fastest-growing-video-site-in-us-and-uk/', 'title': 'blinkx.com is Fastest Growing Video Site in U.S. and U.K.'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ddf'), 'name': 'Zlio', 'permalink': 'zlio', 'crunchbase_url': 'http://www.crunchbase.com/company/zlio', 'homepage_url': 'http://zlio.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 9, 'deadpooled_day': 20, 'deadpooled_url': '', 'tag_list': 'ecommerce', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Tue Jul 10 06:07:25 UTC 2007', 'updated_at': 'Wed Dec 04 22:47:22 UTC 2013', 'overview': '

Zlio gives users the ability to create their own shops and sell goods from other e-commerce services. Users can stock their store with over three million products and earn commissions on every item bought from their Zlio Shop in a similar fashion to a regular affiliate program.

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/2248/2248v1-max-150x150.png'], [[200, 63], 'assets/images/resized/0000/2248/2248v1-max-250x250.png'], [[200, 63], 'assets/images/resized/0000/2248/2248v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Zlio', 'permalink': 'zlio'}], 'relationships': [{'is_past': False, 'title': 'President/CEO', 'person': {'first_name': 'Jeremie', 'last_name': 'Berrebi', 'permalink': 'jeremie-berrebi'}}], 'competitions': [{'competitor': {'name': 'Lemonade', 'permalink': 'lemonade'}}], 'providerships': [], 'total_money_raised': '$4M', 'funding_rounds': [{'id': 94, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2007/07/09/zlio-secures-4-million-in-series-a-funding/', 'source_description': 'Zlio Secures $4 million In Series A Funding', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '55 rue Servan', 'address2': '', 'zip_code': '75011', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.862825, 'longitude': 2.381836}], 'milestones': [{'id': 17364, 'description': 'Zlio Exits', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 19, 'source_url': 'http://blog-money-wiki.com/blog/2011/08/alert-zlio-is-closing-its-doors.php', 'source_text': None, 'source_description': 'ALERT : Zlio is Closing Its Doors', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zlio', 'permalink': 'zlio'}}, {'id': 17365, 'description': 'Zlio joins the deadpool.', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 11, 'source_url': 'http://twitter.com/#!/zlio/status/103806720589049857', 'source_text': None, 'source_description': 'Zlio Twitter', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zlio', 'permalink': 'zlio'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de0'), 'name': 'Yelp', 'permalink': 'yelp', 'crunchbase_url': 'http://www.crunchbase.com/company/yelp', 'homepage_url': 'http://yelp.com', 'blog_url': 'http://officialblog.yelp.com/', 'blog_feed_url': 'http://naturallylindy.com', 'twitter_username': 'Yelp', 'category_code': 'search', 'number_of_employees': 800, 'founded_year': 2004, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'localsearch, localreviews, reviews, avriette', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Local search and review site', 'created_at': 'Tue Jul 10 06:21:37 UTC 2007', 'updated_at': 'Wed Nov 13 09:32:29 UTC 2013', 'overview': '

Yelp (NYSE: YELP) connects people with great local businesses. Yelp was founded in San Francisco in July 2004. Since then, Yelp communities have taken root in major metros across the US, Canada, UK, Ireland, France, Germany, Austria, The Netherlands, Spain, Italy, Switzerland, Belgium, Australia, Sweden, Denmark, Norway, Finland, Singapore, Poland and Turkey. Yelp had a monthly average of 86 million unique visitors in Q4 2012*. By the end of Q4 2012, Yelpers had written more than 36 million rich, local reviews, making Yelp the leading local guide for real word-of-mouth on everything from boutiques and mechanics to restaurants and dentists. Yelp’s mobile application was used on 9.2 million unique mobile devices on a monthly average basis during Q4 2012.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/2263/2263v12-max-150x150.png'], [[250, 103], 'assets/images/resized/0000/2263/2263v12-max-250x250.png'], [[435, 180], 'assets/images/resized/0000/2263/2263v12-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Slimak', 'permalink': 'jonathan-slimak'}}, {'is_past': False, 'title': 'Chairman & Board Director', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': False, 'title': 'Co-founder and CEO', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Rob', 'last_name': 'Krolik', 'permalink': 'rob-krolic'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Geoff', 'last_name': 'Donaker', 'permalink': 'geoff-donaker'}}, {'is_past': False, 'title': 'Vice President, Local Sales', 'person': {'first_name': 'Erica', 'last_name': 'Galos Alioto', 'permalink': 'erica-galos-alioto'}}, {'is_past': False, 'title': 'Vice President, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Vice President of New Markets', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': False, 'title': 'Vice President, North American Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': False, 'title': 'VP of Corporate Communic', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': False, 'title': 'Senior Vice President of Global Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Laurence', 'last_name': 'Wilson', 'permalink': 'laurence-wilson-2'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Peter', 'last_name': 'Fenton', 'permalink': 'peter-fenton'}}, {'is_past': False, 'title': 'Vice President of Business and Corporate Development', 'person': {'first_name': 'Mike', 'last_name': 'Ghaffary', 'permalink': 'mike-ghaffary'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': False, 'title': 'VP, Revenue & Analytics', 'person': {'first_name': 'Matt', 'last_name': 'Halprin', 'permalink': 'matt-halprin-3'}}, {'is_past': False, 'title': 'Director, Business Products', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel-2'}}, {'is_past': False, 'title': 'Android Developer', 'person': {'first_name': 'Alexander', 'last_name': 'Davis', 'permalink': 'alexander-davis-2'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeremy', 'last_name': 'Levine', 'permalink': 'jeremy-levine'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': False, 'title': 'Tech Lead', 'person': {'first_name': 'Ken', 'last_name': 'Struys', 'permalink': 'ken-struys'}}, {'is_past': False, 'title': 'Vice President, Consumer & Mobile Productser and Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': False, 'title': 'Global Head of Human Resources', 'person': {'first_name': 'Jose', 'last_name': 'Martin', 'permalink': 'jose-martin-3'}}, {'is_past': False, 'title': 'Sales Account Executive', 'person': {'first_name': 'Clement', 'last_name': 'Bazan', 'permalink': 'clement-bazan'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Vlado', 'last_name': 'Herman', 'permalink': 'vlado-herman'}}, {'is_past': True, 'title': 'Vice President of European Marketing', 'person': {'first_name': 'Miriam', 'last_name': 'Warren', 'permalink': 'miriam-warren'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Jed', 'last_name': 'Nachman', 'permalink': 'jed-nachman'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Neil', 'last_name': 'Kumar', 'permalink': 'neil-kumar'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Sales Director', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Marketing Consultant', 'person': {'first_name': 'Jeremy', 'last_name': 'Krantz', 'permalink': 'jeremy-krantz'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Emile', 'last_name': 'Petrone', 'permalink': 'emile-petrone'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Jae', 'last_name': 'Kwon', 'permalink': 'jae-kwon'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jason', 'last_name': 'Mueller', 'permalink': 'jason-mueller'}}, {'is_past': True, 'title': 'Senior Business Intelligence Analyst', 'person': {'first_name': 'Nikhil', 'last_name': 'Nirmel', 'permalink': 'nikhil-nirmel-2'}}, {'is_past': True, 'title': 'Regional Marketing Director', 'person': {'first_name': 'Andrea', 'last_name': 'Rubin', 'permalink': 'andrea-rubin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Bob', 'last_name': 'Goodson', 'permalink': 'bob-goodson'}}, {'is_past': True, 'title': 'Key Account Executive', 'person': {'first_name': 'Stephen', 'last_name': 'Smith', 'permalink': 'stephen-smith-2'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Brad', 'last_name': 'Porteus', 'permalink': 'brad-porteus'}}, {'is_past': True, 'title': 'Director of Sales / West', 'person': {'first_name': 'Amanda', 'last_name': 'Levy', 'permalink': 'amanda-levy'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mamoon', 'last_name': 'Hamid', 'permalink': 'mamoon-hamid'}}, {'is_past': True, 'title': 'Senior Account Executive', 'person': {'first_name': 'Kenji', 'last_name': 'Kaneko', 'permalink': 'kenji-kaneko'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kyle', 'last_name': 'Killion', 'permalink': 'kyle-killion'}}, {'is_past': True, 'title': 'Senior Engineer', 'person': {'first_name': 'Tim', 'last_name': 'Robertson', 'permalink': 'tim-robertson'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Stoppelman', 'permalink': 'michael-stoppelman'}}, {'is_past': True, 'title': 'Director of Consumer & Mobile Products', 'person': {'first_name': 'Eric', 'last_name': 'Singley', 'permalink': 'eric-singley'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Sam', 'last_name': 'Sheldon', 'permalink': 'sam-sheldon'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'John', 'last_name': 'Lin', 'permalink': 'john-lin-2'}}], 'competitions': [{'competitor': {'name': 'Insider Pages', 'permalink': 'insiderpages'}}, {'competitor': {'name': 'Viewpoints', 'permalink': 'viewpoints'}}, {'competitor': {'name': 'Judys Book', 'permalink': 'judysbook'}}, {'competitor': {'name': 'LocoGopher', 'permalink': 'locogopher'}}, {'competitor': {'name': 'Citysearch', 'permalink': 'citysearch'}}, {'competitor': {'name': 'Zvents', 'permalink': 'zvents'}}, {'competitor': {'name': 'Upcoming', 'permalink': 'upcoming'}}, {'competitor': {'name': 'Tipped', 'permalink': 'tipped'}}, {'competitor': {'name': 'GenieTown', 'permalink': 'genietown'}}, {'competitor': {'name': 'YellowPages', 'permalink': 'yellowpages'}}, {'competitor': {'name': 'YellowBot', 'permalink': 'yellowbot'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'CitySquares', 'permalink': 'citysquares'}}, {'competitor': {'name': 'Loladex', 'permalink': 'loladex'}}, {'competitor': {'name': 'Pelago', 'permalink': 'pelago'}}, {'competitor': {'name': 'Notches', 'permalink': 'notches'}}, {'competitor': {'name': 'Kudzu', 'permalink': 'kudzu'}}, {'competitor': {'name': 'TriValleyBook', 'permalink': 'trivalleybook'}}, {'competitor': {'name': 'BooRah', 'permalink': 'boorah'}}, {'competitor': {'name': 'TrustedPlaces', 'permalink': 'trustedplaces'}}, {'competitor': {'name': 'Smalltown', 'permalink': 'smalltown'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'Outalot', 'permalink': 'outalot'}}, {'competitor': {'name': 'Tupalo', 'permalink': 'tupalo'}}, {'competitor': {'name': 'RateItAll', 'permalink': 'rateitall'}}, {'competitor': {'name': 'ApartmentRatings', 'permalink': 'apartmentratings'}}, {'competitor': {'name': 'Zagat', 'permalink': 'zagat'}}, {'competitor': {'name': 'AroundMe', 'permalink': 'aroundme'}}, {'competitor': {'name': 'LocalPrice', 'permalink': 'localprice'}}, {'competitor': {'name': 'burrp!', 'permalink': 'burrp'}}, {'competitor': {'name': 'Shustir', 'permalink': 'shustir'}}, {'competitor': {'name': 'Koko', 'permalink': 'koko'}}, {'competitor': {'name': 'Redbeacon', 'permalink': 'redbeacon'}}, {'competitor': {'name': 'Thumbtack', 'permalink': 'thumbtack'}}, {'competitor': {'name': 'Tellmewhere', 'permalink': 'tellmewhere'}}, {'competitor': {'name': 'Trusted Opinion', 'permalink': 'trustedopinion'}}, {'competitor': {'name': 'Geodruid', 'permalink': 'geodruid'}}, {'competitor': {'name': 'Foursquare', 'permalink': 'foursquare'}}, {'competitor': {'name': 'Explore.To Yellow Pages', 'permalink': 'explore-to-yellow-pages'}}, {'competitor': {'name': 'FindAPro.com', 'permalink': 'findapro'}}, {'competitor': {'name': 'Dish.fm', 'permalink': 'dish-fm'}}, {'competitor': {'name': 'Compass (by Hugleberry Corp.)', 'permalink': 'hugleberry'}}, {'competitor': {'name': 'AlterGeo', 'permalink': 'altergeo'}}, {'competitor': {'name': 'Semadic', 'permalink': 'semadic-com'}}, {'competitor': {'name': 'DinnDinn', 'permalink': 'dinndinn'}}, {'competitor': {'name': 'ComplaintsBoard.com', 'permalink': 'complaintsboard-com'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The Local Data Company', 'permalink': 'the-local-data-company'}}, {'title': '', 'is_past': False, 'provider': {'name': 'RatePoint', 'permalink': 'ratepoint'}}], 'total_money_raised': '$90M', 'funding_rounds': [{'id': 95, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2006/10/04/local-review-site-yelp-raises-10-million-from-benchmark/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 96, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}, {'id': 293, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}]}, {'id': 1648, 'round_code': 'd', 'source_url': 'http://www.paidcontent.org/entry/419-user-reviews-site-yelp-raises-15-million', 'source_description': 'User Reviews Site Yelp Raises $15 Million Fourth Round', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}]}, {'id': 11626, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2010/01/27/update-elevation-to-invest-as-much-as-100-million-in-yelp/', 'source_description': 'TechCrunch', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Elevation Partners', 'permalink': 'elevation-partners'}, 'person': None}]}, {'id': 42197, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864912000008/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 25250029, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 11, 'funded_day': 7, 'investments': []}, {'id': 44472, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1345016/000128864913000003/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 8719311, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 31, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/10/24/yelp-pays-50m-to-acquire-its-big-european-rival-qype/', 'source_description': 'Yelp Pays $50M To Acquire Its Big European Rival, Qype, To Beef Up Its Recommendations And Listings Business', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 25, 'company': {'name': 'Qype', 'permalink': 'qype'}}, {'price_amount': 12700000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/18/yelp-acquires-online-reservation-service-seatme/', 'source_description': 'Yelp To Acquire Online Reservation Service SeatMe For Up To $12.7M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'SeatMe', 'permalink': 'seatme'}}], 'offices': [{'description': '', 'address1': '706 Mission Street', 'address2': '7th Floor', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.786183, 'longitude': -122.402195}], 'milestones': [{'id': 5336, 'description': 'Yelp Launches in France\\r\\n', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 5, 'source_url': 'http://www.prnewswire.com/news-releases/yelp-launches-in-france-92908424.html', 'source_text': 'AN FRANCISCO, May 5 /PRNewswire/ -- Yelp (http://www.yelp.com), the community-led local search site, today announced the availability of Yelp France (http://www.yelp.fr). Representing its first non-English speaking country, people in France can now use Yelp.fr to read and share reviews about great local businesses in their native language. Additionally, Yelp users everywhere will have the option to view Yelp\\'s interface in French or English, as well as write and access reviews in these supported languages via a link at the bottom of any business listing.\\r\\n(Logo: http://www.newscom.com/cgi-bin/prnh/20050511/SFW134LOGO)\\r\\n\\r\\n\"France is a country steeped in rich culinary, artistic and cultural traditions. Considering this heritage, it represents the next logical destination for Yelp, which is all about connecting people with great local businesses,\" said Jeremy Stoppelman, co-founder and CEO. \"Today\\'s launch represents an exciting step for us and we are committed to making Yelp France the go-to resource for locals to share their knowledge and opinions with one another.\"\\r\\n\\r\\nThe launch of Yelp France underscores the site\\'s increased effort towards broader availability in Europe. In April 2010, one million unique visitors consulted Yelp UK and Yelp Ireland, with the vast majority of that traffic coming from London. Reaching one million unique visitors after 16 months is an even faster growth rate than Yelp experienced in its first U.S. market of San Francisco and a strong indicator that Yelp is poised to gain the same type of traction in Europe.\\r\\n\\r\\nYelp for iPhone and Yelp for Business Owners will be available shortly after the launch of Yelp.fr.\\r\\n\\r\\nAbout Yelp! Inc.', 'source_description': 'Yelp Launches in France ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 8051, 'description': \"Yelp named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 13945, 'description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 4, 'source_url': 'http://techcrunch.com/2011/04/04/yelp-now-drawing-50-million-users-a-month-to-its-17-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Drawing 50 Million Users A Month To Its 17 Million Reviews', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 16471, 'description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://techcrunch.com/2011/07/15/yelp-20-million-reviews/', 'source_text': '', 'source_description': 'Yelp Now Has 20 Million Reviews Under Its Belt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 19293, 'description': 'Yelp Files For IPO To Raise $100 Million', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/11/17/yelp-files-for-100-million-ipo/', 'source_text': '', 'source_description': 'Yelp Files For IPO To Raise $100 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}, {'id': 21391, 'description': 'Yelp sets terms for $93 mil IPO', 'stoned_year': 2012, 'stoned_month': 2, 'stoned_day': 16, 'source_url': 'http://www.renaissancecapital.com/ipohome/news/Reviews-website-Yelp-sets-IPO-terms-seeking-$93-million-11067.html', 'source_text': None, 'source_description': 'Reviews website Yelp sets IPO terms, seeking $93 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Yelp', 'permalink': 'yelp'}}], 'ipo': {'valuation_amount': 1300000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 3, 'pub_day': 2, 'stock_symbol': 'NYSE:YELP'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 75], 'assets/images/resized/0024/5749/245749v2-max-150x150.png'], [[250, 125], 'assets/images/resized/0024/5749/245749v2-max-250x250.png'], [[450, 226], 'assets/images/resized/0024/5749/245749v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Yelp,_Inc.', 'title': 'Wikipedia page'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de1'), 'name': 'Jaiku', 'permalink': 'jaiku', 'crunchbase_url': 'http://www.crunchbase.com/company/jaiku', 'homepage_url': 'http://www.jaiku.com', 'blog_url': 'http://www.jaiku.com/blog', 'blog_feed_url': 'http://jaikido.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'mobile', 'number_of_employees': 8, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2012, 'deadpooled_month': 1, 'deadpooled_day': 15, 'deadpooled_url': 'http://googleblog.blogspot.com/2011/10/fall-sweep.html', 'tag_list': 'mobil, mobile', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Jul 10 08:51:57 UTC 2007', 'updated_at': 'Wed Jun 13 18:24:06 UTC 2012', 'overview': '

Founded in July 2006 by Jyri Engestrom and Petteri Kopponen, Jaiku is a micro-blogging and social networking site based in Finland. As a free service, it allows users to post thoughts, or “Jaikus,” via the web or using the Nokia S60 mobile phone. Users’ “stream” of Jaikus can be made either public or private. By allowing people to check their friends’ posts or to update their own micro-blog stream, Jaiku can be used as a way for individuals to remain in constant contact with others. Both Twitter and Pownce can be identified as close competitors to Jaiku.

\\n\\n

In 2007 Jaiku was acquired by Google.

', 'image': {'available_sizes': [[[150, 106], 'assets/images/resized/0001/3579/13579v6-max-150x150.jpg'], [[250, 178], 'assets/images/resized/0001/3579/13579v6-max-250x250.jpg'], [[450, 320], 'assets/images/resized/0001/3579/13579v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Jaiku', 'permalink': 'jaiku'}], 'relationships': [{'is_past': True, 'title': 'Co-Founder & Chairman', 'person': {'first_name': 'Jyri', 'last_name': 'Engestrom', 'permalink': 'jyri-engestrom'}}, {'is_past': True, 'title': 'Co - Founder / CEO', 'person': {'first_name': 'Petteri', 'last_name': 'Koponen', 'permalink': 'petteri-koponen'}}], 'competitions': [{'competitor': {'name': 'Twitter', 'permalink': 'twitter'}}, {'competitor': {'name': 'Pownce', 'permalink': 'pownce'}}, {'competitor': {'name': 'Loopt', 'permalink': 'loopt'}}, {'competitor': {'name': 'trymehere', 'permalink': 'trymehere'}}, {'competitor': {'name': 'spotengine', 'permalink': 'spotengine-inc'}}, {'competitor': {'name': 'Shoutitout', 'permalink': 'shoutitout'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/10/09/google-takes-jaiku-to-the-altar/', 'source_description': 'Google buys Jaiku, Twitter losing ground', 'acquired_year': 2007, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Lannrotinkatu 32 D 51, 00180', 'address2': '', 'zip_code': '', 'city': 'Helsinki', 'state_code': None, 'country_code': 'FIN', 'latitude': 60.16377, 'longitude': 24.93105}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3549/43549v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3549/43549v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3549/43549v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de4'), 'name': 'Yapta', 'permalink': 'yapta', 'crunchbase_url': 'http://www.crunchbase.com/company/yapta', 'homepage_url': 'http://www.yapta.com', 'blog_url': 'http://blog.yapta.com/', 'blog_feed_url': '', 'twitter_username': 'yapta', 'category_code': 'travel', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'travel, airfare, airline', 'alias_list': '', 'email_address': 'info@yapta.com', 'phone_number': '', 'description': 'Flight Price Tracking Service', 'created_at': 'Wed Jul 11 07:30:01 UTC 2007', 'updated_at': 'Thu Dec 26 03:51:43 UTC 2013', 'overview': '

Yapta is a travel Website and browser add-on that lets you track flight prices as they change and alerts you when the price for a particular flight drops. It also helps you get a refund or credit from airlines with guaranteed low-price policies.

', 'image': {'available_sizes': [[[150, 57], 'assets/images/resized/0000/2395/2395v1-max-150x150.png'], [[200, 77], 'assets/images/resized/0000/2395/2395v1-max-250x250.png'], [[200, 77], 'assets/images/resized/0000/2395/2395v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Yapta Tagger', 'permalink': 'yapta-tagger'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'James', 'last_name': 'Filsinger', 'permalink': 'james-filsinger'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Jerry', 'last_name': 'McGuire', 'permalink': 'jerry-mcguire'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Valerie', 'last_name': 'Layman', 'permalink': 'valerie-layman'}}, {'is_past': False, 'title': 'Vice President of Sales', 'person': {'first_name': 'Roger', 'last_name': 'Gould', 'permalink': 'roger-gould'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Matt', 'last_name': 'Hulett', 'permalink': 'matt-hulett'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'Hilton', 'permalink': 'mike-hilton'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Andy', 'last_name': 'Chen', 'permalink': 'andy-chen'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Alan', 'last_name': 'Lippman', 'permalink': 'alan-lippman'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Bill', 'last_name': 'McAleer', 'permalink': 'bill-mcaleer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Falter', 'permalink': 'david-falter'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Wilson', 'permalink': 'scott-wilson'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Tom', 'last_name': 'Kippola', 'permalink': 'tom-kippola'}}, {'is_past': False, 'title': 'Board of advisors', 'person': {'first_name': 'Rob', 'last_name': 'Solomon', 'permalink': 'rob-solomon'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'John', 'last_name': 'Lusk', 'permalink': 'john-lusk'}}, {'is_past': True, 'title': 'Vice President, Products & Engineering', 'person': {'first_name': 'Karim', 'last_name': 'Meghji', 'permalink': 'karim-meghji'}}, {'is_past': True, 'title': 'Marketing & Strategy Executive / Advisor', 'person': {'first_name': 'Julie', 'last_name': 'McGinnis', 'permalink': 'julie-mcginnis'}}, {'is_past': True, 'title': 'Senior Consultant / Advisory Board Member', 'person': {'first_name': 'Dave', 'last_name': 'Pelter', 'permalink': 'dave-pelter'}}], 'competitions': [{'competitor': {'name': 'Farecast', 'permalink': 'farecast'}}, {'competitor': {'name': 'airfarewatchdog.com', 'permalink': 'airfarewatchdog-com'}}], 'providerships': [], 'total_money_raised': '$24.3M', 'funding_rounds': [{'id': 112, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 2300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Voyager Capital', 'permalink': 'voyager-capital'}, 'person': None}]}, {'id': 113, 'round_code': 'seed', 'source_url': 'http://www.techflash.com/venture/Yapta_raises_27_million_to_develop_new_airfare_tracking_features36080544.html', 'source_description': 'Yapta raises $2.7 million to develop new airfare tracking features', 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': []}, {'id': 4139, 'round_code': 'b', 'source_url': 'http://www.techflash.com/venture/Yapta_raises_27_million_to_develop_new_airfare_tracking_features36080544.html', 'source_description': 'Yapta raises $2.7 million to develop new airfare tracking features', 'raised_amount': 2700000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 12, 'funded_day': 12, 'investments': []}, {'id': 6925, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2009/06/25/yapta-lands-2m-to-track-airfare-and-hotel-prices/', 'source_description': 'Yapta lands $2M to track airfare and hotel prices', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Voyager Capital', 'permalink': 'voyager-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Swiftsure Capital', 'permalink': 'swiftsure-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'W Media Ventures', 'permalink': 'w-media-ventures'}, 'person': None}]}, {'id': 13698, 'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1377299/000137729910000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 700000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 28, 'investments': []}, {'id': 20706, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/12/29/flight-and-hotel-price-tracking-startup-yapta-is-raising-a-6-4-million-round/', 'source_description': 'Flight And Hotel Price Tracking Startup Yapta Is Raising A $6.4 Million Round', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 29, 'investments': []}, {'id': 24280, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/07/20/tripit-owner-concur-invests-5-million-in-flight-price-tracker-yapta/', 'source_description': 'TripIt Owner Concur Invests $5 Million In Flight Price Tracker Yapta', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 20, 'investments': [{'company': {'name': 'Concur Technologies', 'permalink': 'concur-technologies'}, 'financial_org': None, 'person': None}]}, {'id': 41163, 'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1377299/000137729913000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 1150000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 4, 'investments': []}, {'id': 43437, 'round_code': 'd', 'source_url': 'http://www.finsmes.com/2013/07/yapta-raises-4-2m-series-funding.html', 'source_description': 'Yapta Raises $4.2M In Series D Funding', 'raised_amount': 4220000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 22, 'investments': []}, {'id': 54596, 'round_code': 'd', 'source_url': 'http://www.finsmes.com/2013/11/yapta-raises-additional-2m-series-financing.html', 'source_description': 'Yapta Raises Additional $2M in Series D Financing', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'investments': [{'company': {'name': 'Concur Technologies', 'permalink': 'concur-technologies'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Amadeus', 'permalink': 'amadeus'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '315 1st Avenue S', 'address2': 'Floor 3', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.599925, 'longitude': -122.334264}, {'description': '', 'address1': '159 Jackson Street', 'address2': '', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator TV: 10/2008

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3550/43550v1-max-150x150.png'], [[250, 155], 'assets/images/resized/0004/3550/43550v1-max-250x250.png'], [[450, 280], 'assets/images/resized/0004/3550/43550v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297de7'), 'name': 'Fleck', 'permalink': 'fleck', 'crunchbase_url': 'http://www.crunchbase.com/company/fleck', 'homepage_url': 'http://www.fleck.com', 'blog_url': 'http://blog.fleck.com', 'blog_feed_url': 'http://blog.fleck.com/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 3, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 10, 'deadpooled_day': 16, 'deadpooled_url': 'http://www.techcrunch.com/2008/10/16/fleck-headed-to-the-deadpool-because-nobody-wants-to-annotate-the-web/', 'tag_list': 'fleck, notes, annotations', 'alias_list': None, 'email_address': 'fleckhelp@gmail.com', 'phone_number': '+31621811784', 'description': None, 'created_at': 'Tue Feb 05 22:28:16 UTC 2008', 'updated_at': 'Wed May 12 20:25:36 UTC 2010', 'overview': '

Based in The Netherlands, Fleck is a simple service that lets users post public or private text notes on webpages. Notes can be posted by using a browser plugin or by ajax when Fleck feeds web pages through its servers and adds the necessary annotation code. Permalinks to annotated pages can be emailed to friends and posted to blogs.

\\n\\n

Other web annotation services include Trailfire, Diigo and ShiftSpace

', 'image': {'available_sizes': [[[104, 100], 'assets/images/resized/0000/2515/2515v1-max-150x150.png'], [[104, 100], 'assets/images/resized/0000/2515/2515v1-max-250x250.png'], [[104, 100], 'assets/images/resized/0000/2515/2515v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Fleck.com', 'permalink': 'fleck-com'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Boris', 'last_name': 'Veldhuijzen van Zanten', 'permalink': 'boris-veldhuijzen-van-zanten'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Arjen', 'last_name': 'Schat', 'permalink': 'arjen-schat'}}], 'competitions': [{'competitor': {'name': 'Reframe It', 'permalink': 'reframe-it'}}, {'competitor': {'name': 'ShiftSpace', 'permalink': 'shiftspace'}}, {'competitor': {'name': 'Trailfire', 'permalink': 'trailfire'}}, {'competitor': {'name': 'Stickis', 'permalink': 'stickis'}}], 'providerships': [], 'total_money_raised': '€225k', 'funding_rounds': [{'id': 101, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 225000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Oosterdokskade 5', 'address2': None, 'zip_code': '1017TE', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.375595, 'longitude': 4.908556}], 'milestones': [{'id': 5232, 'description': 'Discontinued May 2010', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 10, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Fleck', 'permalink': 'fleck'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297deb'), 'name': 'SideStep', 'permalink': 'sidestep', 'crunchbase_url': 'http://www.crunchbase.com/company/sidestep', 'homepage_url': 'http://www.sidestep.com', 'blog_url': None, 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 75, 'founded_year': 1999, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'deals, travel, flights, hotels, tickets, vacation, travel-comparison, travel-search', 'alias_list': None, 'email_address': None, 'phone_number': '408-235-1700', 'description': None, 'created_at': 'Wed Jul 11 02:50:10 UTC 2007', 'updated_at': 'Thu Jan 13 02:41:17 UTC 2011', 'overview': '

SideStep is a metasearch engine for travel which makes money through advertising and referral fees. It searches more than 200 websites looking for the best travel deals.

\\n\\n

SideStep has recently been aggressive in building up its offerings. They acquired TripUp (a social network focused on travel) and TravelPost.com (a hotel ratings site) with the goal of becoming “the leader in online travel related information.” In addition, they have launched two Facebook applications. The Trips Facebook application provides a trip planning service that currently has over 150,000 users. The Extended Info application allows users to add fields and categories of their own choice to a Facebook profile. SideStep is also developing a Facebook App for TripUp that should be launched later in the year.

\\n\\n

SideStep was acquired in December 2007 by their nearest competitor Kayak for roughly $180,000,000.

\\n\\n

Other popular travel metasearch sites and SideStep competitors include Cheapflights, Farechase, Mobissimo and Qixo.

', 'image': {'available_sizes': [[[150, 52], 'assets/images/resized/0000/2569/2569v1-max-150x150.png'], [[168, 59], 'assets/images/resized/0000/2569/2569v1-max-250x250.png'], [[168, 59], 'assets/images/resized/0000/2569/2569v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SideStep', 'permalink': 'sidestep'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Brian', 'last_name': 'Barth', 'permalink': 'brian-barth'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Robert', 'last_name': 'Soloman', 'permalink': 'robert-soloman'}}, {'is_past': True, 'title': 'President & Chief Executive Officer', 'person': {'first_name': 'Rob', 'last_name': 'Solomon', 'permalink': 'rob-solomon'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Eric', 'last_name': 'Rosenzweig', 'permalink': 'eric-rosenzweig'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Sam', 'last_name': 'Shank', 'permalink': 'sam-shank'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Natraj', 'last_name': 'Gujran', 'permalink': 'natraj-gujran'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'Robert', 'last_name': 'Abbott', 'permalink': 'robert-abbott'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Khaitan', 'permalink': 'rishi-khaitan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Johnson', 'permalink': 'mark-johnson-4'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Ian', 'last_name': 'White', 'permalink': 'ian-white-2'}}, {'is_past': True, 'title': 'Board member', 'person': {'first_name': 'Woody', 'last_name': 'Marshall', 'permalink': 'woody-marshall'}}], 'competitions': [{'competitor': {'name': 'Mobissimo', 'permalink': 'mobissimo'}}, {'competitor': {'name': 'TripUp', 'permalink': 'tripup'}}, {'competitor': {'name': 'Farecast', 'permalink': 'farecast'}}, {'competitor': {'name': 'Orbitz Worldwide', 'permalink': 'orbitz'}}, {'competitor': {'name': 'Cheapflights', 'permalink': 'cheapflights'}}], 'providerships': [], 'total_money_raised': '$32M', 'funding_rounds': [{'id': 105, 'round_code': 'c', 'source_url': 'http://news.com.com/2110-1038_3-6156937.html?part=rss', 'source_description': None, 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Leader Ventures', 'permalink': 'leader-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Norwest Venture Partners', 'permalink': 'norwest-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Saints Capital', 'permalink': 'saints-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Trident Capital', 'permalink': 'trident-capital'}, 'person': None}]}, {'id': 107, 'round_code': 'b', 'source_url': 'http://www.sidestep.com/html/press_center/press_releases/2004/pr_010604.html', 'source_description': None, 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Trident Capital', 'permalink': 'trident-capital'}, 'person': None}]}, {'id': 226, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 2200000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}, {'id': 227, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 6800000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 180000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.xconomy.com/2007/12/21/kayak-sidestep-will-travel-together-in-rare-east-buys-west-acquisition/', 'source_description': 'xconomy', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': 1, 'acquiring_company': {'name': 'KAYAK', 'permalink': 'kayak'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '2980 Bowers Ave.', 'address2': None, 'zip_code': '95051', 'city': 'Santa Clara', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.374998, 'longitude': -121.977853}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df0'), 'name': 'RockYou', 'permalink': 'rockyou', 'crunchbase_url': 'http://www.crunchbase.com/company/rockyou', 'homepage_url': 'http://www.rockyou.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'rockyoulive', 'category_code': 'games_video', 'number_of_employees': 106, 'founded_year': 2005, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'widgets, photos, avatars, countdown, horoscope, voicemail, rockyou, facebook, highoktane', 'alias_list': 'netpickle', 'email_address': '', 'phone_number': '650-344-4016', 'description': 'Social Gaming Company', 'created_at': 'Wed Jul 11 09:27:43 UTC 2007', 'updated_at': 'Tue Dec 03 09:30:43 UTC 2013', 'overview': '

RockYou® is committed to defining the future of social gaming, creating products intended to serve players, advertisers, and developers alike. The company has dedicated itself to the development of high-quality games, including the award-nominated Gourmet Ranchâ„¢ and the celebrated Zoo Worldâ„¢ franchise. With advertising products that offer brands more meaningful interactions with players, RockYou creates an unmatched value-per-engagement for both brands and users. RockYou’s partnerships with world-class talent are part of their steadfast commitment to working with the next generation of social game developers. \\nFounded in 2005 and headquartered in Redwood City, California, RockYou is funded by Sequoia Capital, Partech International, Lightspeed Venture Partners, DCM and Softbank. More information at www.rockyou.com.

', 'image': {'available_sizes': [[[141, 36], 'assets/images/resized/0009/0962/90962v1-max-150x150.png'], [[141, 36], 'assets/images/resized/0009/0962/90962v1-max-250x250.png'], [[141, 36], 'assets/images/resized/0009/0962/90962v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'RockYou', 'permalink': 'rockyou'}, {'name': 'Studio Partners', 'permalink': 'studio-partners'}], 'relationships': [{'is_past': False, 'title': 'CEO, RockYou Asia', 'person': {'first_name': 'Jia', 'last_name': 'Shen', 'permalink': 'jia-shen'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lisa', 'last_name': 'Marino', 'permalink': 'lisa-marino'}}, {'is_past': False, 'title': 'SVP and General Manager of Rewards Based Games', 'person': {'first_name': 'Manu', 'last_name': 'Gambhir', 'permalink': 'manu-gambhir'}}, {'is_past': False, 'title': 'SVP of Corporate Development & Strategy', 'person': {'first_name': 'Josh', 'last_name': 'Grant', 'permalink': 'josh-grant'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lehmann', 'permalink': 'john-lehmann'}}, {'is_past': False, 'title': 'Business Development/Marketing', 'person': {'first_name': 'Karina', 'last_name': 'Paje', 'permalink': 'karina-paje'}}, {'is_past': False, 'title': 'VP of Product for RockYou Media', 'person': {'first_name': 'Peter', 'last_name': 'Everett', 'permalink': 'peter-everett'}}, {'is_past': False, 'title': 'Advisor / Angel Investor', 'person': {'first_name': 'Saar', 'last_name': 'Gur', 'permalink': 'saar-gur'}}, {'is_past': True, 'title': 'CEO & Co-Founder', 'person': {'first_name': 'Lance', 'last_name': 'Tokuda', 'permalink': 'lance-tokuda'}}, {'is_past': True, 'title': 'CRO', 'person': {'first_name': 'Ro', 'last_name': 'Choy', 'permalink': 'ro-choy'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Steven', 'last_name': 'Van Horne', 'permalink': 'steven-van-horne'}}, {'is_past': True, 'title': 'SVP RockYou Media', 'person': {'first_name': 'Sandy', 'last_name': 'Diep', 'permalink': 'sandy-diep'}}, {'is_past': True, 'title': 'SVP of Technology', 'person': {'first_name': 'Greg', 'last_name': 'Kearney', 'permalink': 'greg-kearney'}}, {'is_past': True, 'title': 'SVP of Games', 'person': {'first_name': 'Jonathan', 'last_name': 'Knight', 'permalink': 'jonathan-knight'}}, {'is_past': True, 'title': 'Vice President, Ad Network Sales ,,, Senior Director, International', 'person': {'first_name': 'Randall', 'last_name': 'Lloyd', 'permalink': 'randall-lloyd'}}, {'is_past': True, 'title': 'SVP of Technology', 'person': {'first_name': 'Rogelio', 'last_name': 'Choy', 'permalink': 'rogelio-choy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Poler', 'permalink': 'ariel-poler'}}, {'is_past': True, 'title': 'VP Ad Network', 'person': {'first_name': 'Mihir', 'last_name': 'Shah', 'permalink': 'mihir-shah'}}, {'is_past': True, 'title': 'SVP/General Counsel', 'person': {'first_name': 'Allyson', 'last_name': 'Willoughby', 'permalink': 'allyson-willoughby'}}, {'is_past': True, 'title': 'Head of HR', 'person': {'first_name': 'Kelli', 'last_name': 'Dragovich', 'permalink': 'kelli-dragovich'}}, {'is_past': True, 'title': 'Art Director', 'person': {'first_name': 'Ryan', 'last_name': 'Kirkman', 'permalink': 'ryan-kirkman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Greg', 'last_name': 'McAdoo', 'permalink': 'greg-mcadoo'}}, {'is_past': True, 'title': 'Facebook Platform Architect', 'person': {'first_name': 'ibrahim', 'last_name': 'okuyucu', 'permalink': 'ibrahim-okuyucu'}}, {'is_past': True, 'title': 'GM/SVP of RockYou Media', 'person': {'first_name': 'Julie', 'last_name': 'Shumaker', 'permalink': 'julie-shumaker'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Tim', 'last_name': 'Clarke', 'permalink': 'tim-clarke'}}, {'is_past': True, 'title': 'GM, Publishing Manager, Senior Developer', 'person': {'first_name': 'Tong', 'last_name': 'Xu', 'permalink': 'tong-xu'}}], 'competitions': [{'competitor': {'name': 'Slide', 'permalink': 'slide'}}, {'competitor': {'name': 'Flektor', 'permalink': 'flektor'}}, {'competitor': {'name': 'PlayFirst', 'permalink': 'playfirst'}}, {'competitor': {'name': 'Widgetbox', 'permalink': 'widgetbox'}}, {'competitor': {'name': 'Mixercast', 'permalink': 'mixercast'}}, {'competitor': {'name': 'Lindotiger', 'permalink': 'lindotiger'}}, {'competitor': {'name': 'Oosah', 'permalink': 'oosah'}}, {'competitor': {'name': 'Mugsho', 'permalink': 'mugsho'}}, {'competitor': {'name': 'LabPixies', 'permalink': 'labpixies'}}, {'competitor': {'name': 'Capzles', 'permalink': 'capzles'}}, {'competitor': {'name': 'Animoto', 'permalink': 'animoto'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Raj Abhyanker LLP', 'permalink': 'raj-abhyanker-llp'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'TriplePoint', 'permalink': 'triplepoint'}}], 'total_money_raised': '$136M', 'funding_rounds': [{'id': 115, 'round_code': 'a', 'source_url': 'http://www.siliconbeat.com/entries/2006/06/19/sequoia_invests_15_in_slideshow_startup_rockyou_other_valley_news.html', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'First Round Capital', 'permalink': 'first-round-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 116, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2007/03/05/more-information-on-rockyou-financing/', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Partech Ventures', 'permalink': 'partech-international'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 2539, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/06/09/slide-got-theirs-now-rockyou-gets-some-too/', 'source_description': 'Slide Got Theirs, Now RockYou Gets Some Too', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'DCM', 'permalink': 'dcm'}, 'person': None}]}, {'id': 3789, 'round_code': 'c', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 11, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'SK Telecom Ventures', 'permalink': 'sk-telecom-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 9592, 'round_code': 'd', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 16129, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/06/07/rockyou-raises-another-10-million-to-expand-presence-in-asia/', 'source_description': 'RockYou Raises Another $10 Million To Expand Presence In Asia', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 7, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}]}, {'id': 36295, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 45110, 'round_code': 'e', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1439538/000143953812000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 6755336, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 6, 'funded_day': 22, 'investments': []}, {'id': 53462, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'VC Funding: Q4 2012', 'raised_amount': 1210000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Partech Ventures', 'permalink': 'partech-international'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DCM', 'permalink': 'dcm'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Shawn V.', 'last_name': 'Gruver', 'permalink': 'shawn-gruver'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/13/rockyou-playdemic/', 'source_description': 'RockYou Buys UK-Based Social Gaming Startup Playdemic', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 13, 'company': {'name': 'Playdemic', 'permalink': 'playdemic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/06/01/rockyou-buys-developer-studio-3-blokes-to-build-social-combat-games-on-facebook/', 'source_description': 'RockYou Buys Studio 3 Blokes To Build Social Combat Games On Facebook', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': '3 Blokes Studios', 'permalink': '3-blokes-studios'}}], 'offices': [{'description': '', 'address1': '585 Broadway', 'address2': 'Suite A', 'zip_code': '94063', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.484619, 'longitude': -122.206893}], 'milestones': [{'id': 837, 'description': 'Japanese mobile giant SoftBank and Korean telecom investment company SK Telecom Ventures have invested $17 million to create a new joint venture to build apps for the Asia-Pacific market.', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 3, 'source_url': 'http://news.cnet.com/8301-13577_3-10080841-36.html?tag=mncol;title', 'source_text': '', 'source_description': 'RockYou looks to Asia with new $17 million investment', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'id': 3147, 'description': 'RockYou is hit with a Class Action Lawsuit for poor security measures', 'stoned_year': 2009, 'stoned_month': 12, 'stoned_day': 30, 'source_url': 'http://www.wired.com/threatlevel/2009/12/facebook-app-data-breach/', 'source_text': '', 'source_description': 'Facebook App Maker Hit With Data-Breach Class Action', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'id': 15377, 'description': 'RockYou announced the acquisition of social game developer 3 Blokes. Based in Brisbane, Australia, 3 Blokes will operate independently as a RockYou studio and develop strategy and combat-driven Facebook games. RockYou is expanding its studio system to sup', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 1, 'source_url': 'http://verticalwire.com/releases/2208-rockyou-acquires-social-game-developer-playdemic', 'source_text': None, 'source_description': 'RockYou® Acquires 3 Blokes Game Development Studio', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'RockYou', 'permalink': 'rockyou'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Robert Scoble interviews RockYou

'}, {'embed_code': '', 'description': '

FaceReviews - CEO Lance Toduka - Part 1

'}, {'embed_code': '', 'description': '

FaceReviews - CEO Lance Toduka - Part 2 man superslow painfull interviewer. wow bad

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 82], 'assets/images/resized/0009/4029/94029v1-max-150x150.jpg'], [[250, 138], 'assets/images/resized/0009/4029/94029v1-max-250x250.jpg'], [[450, 248], 'assets/images/resized/0009/4029/94029v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://venturebeat.com/2008/05/21/rockyou-between-a-funding-rock-and-an-acquisition/', 'title': 'RockYou between a funding rock and an acquisition'}, {'external_url': 'http://www.socialgamesobserver.com/rockyou-acquires-tirnua-3383', 'title': 'RockYou Acquires TirNua'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df3'), 'name': 'Instructables', 'permalink': 'instructables', 'crunchbase_url': 'http://www.crunchbase.com/company/instructables', 'homepage_url': 'http://www.instructables.com', 'blog_url': 'http://www.instructables.com/news', 'blog_feed_url': '', 'twitter_username': 'instructables', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 8, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@instructables.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 11 11:48:08 UTC 2007', 'updated_at': 'Fri Mar 15 19:37:01 UTC 2013', 'overview': '

Instructables is a site developed by Squid Labs, a lab whose focus is on technical innovation and whose founders were once part of the MIT Media Lab. Instructables provides a forum for personal creativity, as it allows users to post instructions to describe how they created something. The concept of Instructables has been in the works for over five years, and has evolved from a platform initally called iFabricate that was developed in late 2004.

', 'image': {'available_sizes': [[[150, 48], 'assets/images/resized/0001/1058/11058v2-max-150x150.jpg'], [[250, 80], 'assets/images/resized/0001/1058/11058v2-max-250x250.jpg'], [[250, 80], 'assets/images/resized/0001/1058/11058v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Instructables', 'permalink': 'instructables'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Eric', 'last_name': 'Wilhelm', 'permalink': 'eric-wilhelm'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Jeff', 'last_name': 'Feldman', 'permalink': 'jeff-feldman'}}, {'is_past': False, 'title': 'Interaction Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Nguyen', 'permalink': 'eric-nguyen'}}, {'is_past': False, 'title': 'Head of Production', 'person': {'first_name': 'Noah', 'last_name': 'Weinstein', 'permalink': 'noah-weinstein'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Poler', 'permalink': 'ariel-poler'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Christy', 'last_name': 'Canida', 'permalink': 'christy-canida'}}, {'is_past': False, 'title': 'Senior Software Developer', 'person': {'first_name': 'Rachel', 'last_name': 'McConnell', 'permalink': 'rachel-mcconnell'}}, {'is_past': False, 'title': 'Director of Products', 'person': {'first_name': 'Cloude', 'last_name': 'Porteus', 'permalink': 'cloude-porteus'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Mark', 'last_name': 'Jacobsen', 'permalink': 'mark-jacobsen'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Lisa', 'last_name': 'Gansky', 'permalink': 'lisa-gansky'}}], 'competitions': [{'competitor': {'name': 'SuTree', 'permalink': 'sutree'}}, {'competitor': {'name': 'Expert Village', 'permalink': 'expertvillage'}}, {'competitor': {'name': '5min Media', 'permalink': '5min'}}, {'competitor': {'name': 'Howcast', 'permalink': 'howcast'}}, {'competitor': {'name': 'Monkeysee', 'permalink': 'monkeysee'}}, {'competitor': {'name': 'WonderHowTo', 'permalink': 'wonderhowto'}}, {'competitor': {'name': 'FindHow.com', 'permalink': 'findhow'}}, {'competitor': {'name': 'wikiHow', 'permalink': 'wikihow'}}, {'competitor': {'name': 'About.com', 'permalink': 'about-com'}}, {'competitor': {'name': 'Tipstrs', 'permalink': 'tipstrs'}}, {'competitor': {'name': 'eHow', 'permalink': 'ehow'}}, {'competitor': {'name': 'HowStuffWorks', 'permalink': 'howstuffworks'}}, {'competitor': {'name': 'WatchDoit', 'permalink': 'watchdoit'}}, {'competitor': {'name': 'NeedInstructions.com', 'permalink': 'need-instructions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/01/autodesk-acquires-diy-community-instructables/', 'source_description': 'Autodesk Acquires DIY Community Instructables', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 1, 'acquiring_company': {'name': 'Autodesk', 'permalink': 'autodesk'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '489 Clementina St.', 'address2': '', 'zip_code': '94103', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7791761, 'longitude': -122.4058887}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'permalink': 'netvibes', 'crunchbase_url': 'http://www.crunchbase.com/company/netvibes', 'homepage_url': 'http://www.netvibes.com', 'blog_url': 'http://blog.netvibes.com/', 'blog_feed_url': 'http://blog.netvibes.com//rss.php', 'twitter_username': 'netvibes', 'category_code': 'web', 'number_of_employees': 35, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'homepage, ajaxhomepage, ajax, startpage, pageflakes, france', 'alias_list': '', 'email_address': 'feedback@netvibes.com', 'phone_number': '', 'description': 'Dashboard Everything', 'created_at': 'Wed Jul 11 16:05:32 UTC 2007', 'updated_at': 'Sat Mar 16 06:11:13 UTC 2013', 'overview': '

Netvibes Dashboard platforms transform browsing, sharing, and tagging into tangible business data to share, analyze, and act on in real-time.\\nListen to Everything. Learn from Everyone. Act in Real-Time. This is Dashboard Intelligence, the evolution of Business Intelligence.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/2974/2974v8-max-150x150.png'], [[223, 59], 'assets/images/resized/0000/2974/2974v8-max-250x250.png'], [[223, 59], 'assets/images/resized/0000/2974/2974v8-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Netvibes Mobile', 'permalink': 'netvibes-mobile'}, {'name': 'netvibes', 'permalink': 'netvibes'}], 'relationships': [{'is_past': False, 'title': 'Chief Finance Officer', 'person': {'first_name': 'Annabelle', 'last_name': 'Malherbe', 'permalink': 'annabelle-malherbe'}}, {'is_past': False, 'title': 'VP, Business Development Europe', 'person': {'first_name': 'Stefan', 'last_name': 'Lechere', 'permalink': 'stefan-lechere'}}, {'is_past': False, 'title': 'VP, Product Development', 'person': {'first_name': 'Franck', 'last_name': 'Mahon', 'permalink': 'franck-mahon'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Damsen', 'permalink': 'chris-damsen'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Neil', 'last_name': 'Rimer', 'permalink': 'neil-rimer'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Annabelle', 'last_name': 'Malherbe', 'permalink': 'annabelle-malherbe'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Freddy', 'last_name': 'Mini', 'permalink': 'freddy-mini'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Tariq', 'last_name': 'Krim', 'permalink': 'tariq-krim'}}, {'is_past': True, 'title': 'Business Development Manager Europe', 'person': {'first_name': 'Michael', 'last_name': 'Cohen', 'permalink': 'michael-cohen-2'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Victor', 'last_name': 'Cerutti', 'permalink': 'victor-cerutti'}}, {'is_past': True, 'title': 'System Engineer', 'person': {'first_name': 'Charles', 'last_name': 'Viard', 'permalink': 'charles-viard'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Hubert', 'last_name': 'Michaux', 'permalink': 'hubert-michaux'}}, {'is_past': True, 'title': 'Director of Netvibes Professional Services', 'person': {'first_name': 'Charles', 'last_name': 'Viard', 'permalink': 'charles-viard'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Franck', 'last_name': 'Mahon', 'permalink': 'franck-mahon'}}], 'competitions': [{'competitor': {'name': 'iGoogle', 'permalink': 'igoogle'}}, {'competitor': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'competitor': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'competitor': {'name': 'uberVU', 'permalink': 'ubervu'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Elevate Recruiting Group', 'permalink': 'elevate-recruiting-group'}}, {'title': 'Hosting', 'is_past': False, 'provider': {'name': 'Typhon', 'permalink': 'typhon'}}], 'total_money_raised': '$16M', 'funding_rounds': [{'id': 119, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2006/03/22/netvibes-to-announce-seed-financing-today/', 'source_description': 'Netvibes to Announce Seed Financing Today', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Neil', 'last_name': 'Rimer', 'permalink': 'neil-rimer'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Pierre', 'last_name': 'Chappaz', 'permalink': 'pierre-chappaz'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Martin', 'last_name': 'Varsavsky', 'permalink': 'martin-varsavsky'}}]}, {'id': 120, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/08/13/netvibes-secures-a-15million-investment/', 'source_description': 'Netvibes secures a $15 million investment', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/dassault-systemes-acquires-netvibes-2012-02-09', 'source_description': 'Dassault Systemes Acquires Netvibes', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 9, 'acquiring_company': {'name': 'Dassault Systemes', 'permalink': 'dassault'}}, 'acquisitions': [], 'offices': [{'description': 'Paris', 'address1': '114, rue Cardinet', 'address2': '', 'zip_code': '75017', 'city': 'Paris', 'state_code': None, 'country_code': 'FRA', 'latitude': 48.870806, 'longitude': 2.34668}, {'description': 'San Francisco', 'address1': '49 Geary', 'address2': 'Suite 234', 'zip_code': '94108', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Netvibes’ pitch from TechCrunch Elevator Pitches

'}, {'embed_code': '

Netvibes Dashboard Intelligence from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboard Intelligence

'}, {'embed_code': '

Netvibes Dashboard Intelligence from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboard Intelligence

'}, {'embed_code': '

Netvibes Showcase from Netvibes on Vimeo.

', 'description': '

Netvibes Dashboards

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df5'), 'name': 'Swivel', 'permalink': 'swivel', 'crunchbase_url': 'http://www.crunchbase.com/company/swivel', 'homepage_url': 'http://www.swivel.com', 'blog_url': 'http://blog.swivel.com/', 'blog_feed_url': 'http://blog.swivel.com/weblog/index.rdf', 'twitter_username': 'teamswivel', 'category_code': 'search', 'number_of_employees': 1, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2010, 'deadpooled_month': 7, 'deadpooled_day': None, 'deadpooled_url': 'http://eagereyes.org/criticism/the-rise-and-fall-of-swivel', 'tag_list': 'data, research, graphs, swivel', 'alias_list': '', 'email_address': 'support@swivel.com', 'phone_number': '415-680-3641', 'description': '', 'created_at': 'Thu Jul 12 01:06:29 UTC 2007', 'updated_at': 'Wed Aug 21 20:08:41 UTC 2013', 'overview': '

Described by its founders as “YouTube for Data” Swivel offers users a unique way to visually share data. You no longer have to freeze data in a document or presentation. By using Swivel, data can be shared with friends who can then easily explore it themselves. In a world where most news is pure spin and opinion, Swivel is trying to apply the power of the Web to dig up the facts. By making it easy for people to explore data themselves, biased news sources no longer have to be relied on.

\\n\\n

Public accounts are free. However, for those interested in examining their business data Swivel will eventually offer private and secure accounts for a fee.

\\n\\n

Swivel is already making a splash after announcing The Organization for Economic Cooperation and Development (OECD) is making its 2007 OECD Fact book available on Swivel.

\\n\\n

Swivel’s competitors in the “data organization” business include\\nFreebase and IBM.

\\n\\n

Swivel ceased operations in Q3 2010.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/3013/3013v1-max-150x150.jpg'], [[250, 65], 'assets/images/resized/0000/3013/3013v1-max-250x250.jpg'], [[275, 72], 'assets/images/resized/0000/3013/3013v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Swivel', 'permalink': 'swivel'}], 'relationships': [{'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Visnu', 'last_name': 'Pitiyanuvath', 'permalink': 'visnu-pitiyanuvath'}}, {'is_past': True, 'title': 'Co-Founder & Product Chief', 'person': {'first_name': 'Dmitry', 'last_name': 'Dimov', 'permalink': 'dmitry-dimov'}}, {'is_past': True, 'title': 'VP & Chief Data Officer', 'person': {'first_name': 'Sara', 'last_name': 'Wood', 'permalink': 'sara-wood'}}, {'is_past': True, 'title': 'Co-Founder & CEO', 'person': {'first_name': 'Brian', 'last_name': 'Mulloy', 'permalink': 'brian-mulloy'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Ron', 'last_name': 'Palmeri', 'permalink': 'ron-palmeri'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Tao', 'last_name': 'Ge', 'permalink': 'tao-ge'}}, {'is_past': True, 'title': 'Design Chief', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Jesse', 'last_name': 'Robbins', 'permalink': 'jesse-robbins'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$2M', 'funding_rounds': [{'id': 125, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Minor Ventures', 'permalink': 'minor-ventures'}, 'person': None}]}, {'id': 126, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Minor Ventures', 'permalink': 'minor-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '199 Fremont St.', 'address2': '12th Floor', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.789268, 'longitude': -122.395184}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297df6'), 'name': 'Slide', 'permalink': 'slide', 'crunchbase_url': 'http://www.crunchbase.com/company/slide', 'homepage_url': 'http://www.slide.com', 'blog_url': 'http://blog.slide.com/', 'blog_feed_url': 'http://blog.slide.com/slide_blog/index.rdf', 'twitter_username': 'SlideInc', 'category_code': 'public_relations', 'number_of_employees': 64, 'founded_year': 2005, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 8, 'deadpooled_day': None, 'deadpooled_url': 'http://techcrunch.com/2011/08/25/slide-google-bloodbath/', 'tag_list': 'widgets, slideshows, expression, guestbook, screensaver, personalize, photos, myspace, flash', 'alias_list': '', 'email_address': 'feedback@slide.com', 'phone_number': '', 'description': 'Develops self-expression widgets', 'created_at': 'Thu Jul 12 03:03:08 UTC 2007', 'updated_at': 'Wed Jun 26 21:10:33 UTC 2013', 'overview': '

Slide, founded by PayPal co-founder Max Levchin, makes widgets that help people express themselves. The company took a big risk in 2006 when they gave users the ability to auto-insert slide shows into their MySpace pages and blasting bulletins out to all their friends. They did this by asking users to hand over their MySpace credentials, and doing all the hard work for them. This is a clear violation of MySpace’s terms of service, though, and most people expected Slide to receive a cease and desist letter and/or get access turned off. But that never happened, and Slide’s big bet has paid off. Slide has since evolved to offer a number of widgets. Users create and personalize widgets on Slide.com and can then use them on social networks, blogs and desktops.

\\n\\n

According to comScore Slide has more than 117 million unique monthly viewers. Slide also claims more than 200,000 new Slide Shows are added to the Slide Network each day.

', 'image': {'available_sizes': [[[108, 40], 'assets/images/resized/0004/5997/45997v1-max-150x150.png'], [[108, 40], 'assets/images/resized/0004/5997/45997v1-max-250x250.png'], [[108, 40], 'assets/images/resized/0004/5997/45997v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Slide', 'permalink': 'slide'}], 'relationships': [{'is_past': True, 'title': 'Founder / CEO / Chairman', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Jeremiah', 'last_name': 'Robison', 'permalink': 'jeremiah-robison'}}, {'is_past': True, 'title': 'VP, Finance & Business Operations', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'VP Virtual Worlds', 'person': {'first_name': 'Viva', 'last_name': 'Chu', 'permalink': 'viva-chu'}}, {'is_past': True, 'title': 'EVP of Strategy & Business Development', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Director of Advertising', 'person': {'first_name': 'Sonya', 'last_name': 'Chawla', 'permalink': 'sonya-chawla'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Nikil', 'last_name': 'Gandhy', 'permalink': 'nikil-gandhy'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Vineet', 'last_name': 'Buch', 'permalink': 'vineet-buch'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'James', 'last_name': 'Hong', 'permalink': 'james-hong'}}, {'is_past': True, 'title': 'Director of East Coast Sales', 'person': {'first_name': 'Jason', 'last_name': 'Bitensky', 'permalink': 'jason-bitensky'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Philipp', 'last_name': 'Pfeiffenberger', 'permalink': 'philipp-pfeiffenberger'}}, {'is_past': True, 'title': 'Board of Advisors', 'person': {'first_name': 'Michael', 'last_name': 'Wolf', 'permalink': 'michael-wolf'}}, {'is_past': True, 'title': 'General Manager, Social Media', 'person': {'first_name': 'Shravan', 'last_name': 'Goli', 'permalink': 'shravan-goli'}}, {'is_past': True, 'title': 'Advisor & Investor', 'person': {'first_name': 'Lisa', 'last_name': 'Gansky', 'permalink': 'lisa-gansky'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Sergei', 'last_name': 'Sorokin', 'permalink': 'sergei-sorokin'}}, {'is_past': True, 'title': 'Business Development & Marketing Manager', 'person': {'first_name': 'Vivek', 'last_name': 'Patel', 'permalink': 'vivek-patel'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Suhail', 'last_name': 'Doshi', 'permalink': 'suhail-doshi'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Lead Data Admin/Architect', 'person': {'first_name': 'Taso', 'last_name': 'Du Val', 'permalink': 'taso-du-val'}}, {'is_past': True, 'title': 'Vice President, Product', 'person': {'first_name': 'Mike', 'last_name': 'Huang', 'permalink': 'mike-huang'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'John', 'last_name': 'Duncan', 'permalink': 'john-duncan'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jared', 'last_name': 'Kopf', 'permalink': 'jared-kopf'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'William', 'last_name': 'Liu', 'permalink': 'william-liu'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Weiden', 'permalink': 'david-weiden'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Jared', 'last_name': 'Fliesler', 'permalink': 'jared-fliesler'}}, {'is_past': True, 'title': 'PR Manager', 'person': {'first_name': 'Ryan', 'last_name': 'Sommer', 'permalink': 'ryan-sommer'}}, {'is_past': True, 'title': 'Director of Design', 'person': {'first_name': 'Kevin', 'last_name': 'Ho', 'permalink': 'kevin-ho'}}, {'is_past': True, 'title': 'investor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}, {'is_past': True, 'title': 'Director of Advertising Operations', 'person': {'first_name': 'Veronica', 'last_name': 'Tegen', 'permalink': 'veronica-tegen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Rishi', 'last_name': 'Mandal', 'permalink': 'rishi-mandal'}}, {'is_past': True, 'title': 'Engineering Manager & Dragon Tamer', 'person': {'first_name': 'Rod', 'last_name': 'Begbie', 'permalink': 'rod-begbie'}}, {'is_past': True, 'title': 'Director, Corporate Communications', 'person': {'first_name': 'Tammy', 'last_name': 'H. Nam', 'permalink': 'tammy-h-nam'}}, {'is_past': True, 'title': 'Engineering Development Manager', 'person': {'first_name': 'Matt', 'last_name': 'Rowe', 'permalink': 'matt-rowe'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Krane', 'permalink': 'aaron-krane'}}], 'competitions': [{'competitor': {'name': 'RockYou', 'permalink': 'rockyou'}}, {'competitor': {'name': 'Mixercast', 'permalink': 'mixercast'}}, {'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'Gydget', 'permalink': 'gydget'}}, {'competitor': {'name': 'Animoto', 'permalink': 'animoto'}}, {'competitor': {'name': 'Flektor', 'permalink': 'flektor'}}, {'competitor': {'name': 'Widgetbox', 'permalink': 'widgetbox'}}, {'competitor': {'name': 'Lindotiger', 'permalink': 'lindotiger'}}, {'competitor': {'name': 'Oosah', 'permalink': 'oosah'}}, {'competitor': {'name': 'Mugsho', 'permalink': 'mugsho'}}, {'competitor': {'name': 'LabPixies', 'permalink': 'labpixies'}}], 'providerships': [{'title': 'Marketing', 'is_past': True, 'provider': {'name': 'Rassak Experience', 'permalink': 'rassak-experience'}}, {'title': 'talent', 'is_past': False, 'provider': {'name': 'Elevate Recruiting Group', 'permalink': 'elevate-recruiting-group'}}], 'total_money_raised': '$78M', 'funding_rounds': [{'id': 122, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/01/06/rumor-slides-venture-round-was-20-million/', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Khosla Ventures', 'permalink': 'khosla-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}]}, {'id': 123, 'round_code': 'b', 'source_url': 'http://mashable.com/2006/11/15/slidecom-gets-funding-for-myspace-slide-shows/', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Founders Fund', 'permalink': 'founders-fund'}, 'person': None}]}, {'id': 582, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}]}, {'id': 1388, 'round_code': 'd', 'source_url': 'http://bits.blogs.nytimes.com/2008/01/18/slide-slides-into-some-cash/index.html?ref=technology', 'source_description': '', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'T. Rowe Price', 'permalink': 't-rowe-price'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Fidelity Investments', 'permalink': 'fidelity-investments'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 182000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/08/06/google-confirms-slide-acquisition/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 6, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '301 Brannan Street', 'address2': '6th Floor', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.781427, 'longitude': -122.392144}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.TV Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dfd'), 'name': 'CrowdVine', 'permalink': 'crowdvine', 'crunchbase_url': 'http://www.crunchbase.com/company/crowdvine', 'homepage_url': 'http://www.crowdvine.com', 'blog_url': 'http://blog.crowdvine.com', 'blog_feed_url': 'http://blog.crowdvine.com/feed/', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 10, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 6, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialnetworks, conferences', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Conference Social Networks', 'created_at': 'Thu Jul 12 08:45:03 UTC 2007', 'updated_at': 'Thu Apr 11 18:09:51 UTC 2013', 'overview': '

CrowdVine provides social networks for conferences and other professional communities.

\\n\\n

Conference attendees are looking for a tool to help them make contacts at the event. CrowdVine for Conferences is a hosted social network package that’s tailored specifically for conferences. Rather than being yet another place to manage your friends, it helps you organize a want-to-meet list, see which sessions your friends are going to, and when the conference is over, export your new contacts to your permanent social network (LinkedIn, Facebook, email).

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3193/3193v3-max-150x150.png'], [[250, 61], 'assets/images/resized/0000/3193/3193v3-max-250x250.png'], [[319, 79], 'assets/images/resized/0000/3193/3193v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'CrowdVine', 'permalink': 'crowdvine'}], 'relationships': [{'is_past': False, 'title': 'General Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Koumarianos', 'permalink': 'andrew-koumarianos'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Tony', 'last_name': 'Stubblebine', 'permalink': 'tony-stubblebine'}}], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'EventVue', 'permalink': 'eventvue'}}, {'competitor': {'name': 'Groupsite', 'permalink': 'collectivex'}}, {'competitor': {'name': 'Skalfa', 'permalink': 'skalfa'}}, {'competitor': {'name': 'Pathable', 'permalink': 'pathable'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '53 S Knoll Rd', 'address2': '', 'zip_code': '94941-2464', 'city': 'Mill Valley', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.90077, 'longitude': -122.511687}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297dff'), 'name': 'TheFind', 'permalink': 'thefind', 'crunchbase_url': 'http://www.crunchbase.com/company/thefind', 'homepage_url': 'http://www.thefind.com', 'blog_url': 'http://blog.thefind.com/', 'blog_feed_url': 'http://blog.thefind.com/feed/', 'twitter_username': 'thefind', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'thefind, shopping, search, glimpse, thefindgreen, local', 'alias_list': '', 'email_address': 'talk@thefind.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 12 12:13:51 UTC 2007', 'updated_at': 'Sun Jul 07 11:38:57 UTC 2013', 'overview': '

TheFind’s patented search, browse and discovery technology is expanding the eCommerce landscape through social, mobile and tablet commerce innovations. TheFind.com is a search destination where millions of shoppers are finding the best products from every online and local store. Leveraging the company’s unique ability to surface and categorize more than 500 million product offers from 500,000 stores along with their identifying attributes, TheFind is building the only comprehensive map of the merchandise, stores and brands that people “Like”. The result is Glimpse by TheFind, a new way to discover products that is instantly personal and socially curated using Facebook’s OpenGraph and other signals. TheFind Mobile empowers smart phone equipped shoppers with a powerful in-store companion that combines barcode scanning and text search to surface local and online prices and availability for nearly any product imaginable. A pioneer and market leader in the tablet commerce space, TheFind revolutionized catalog shopping with the launch of Catalogue by TheFind, a shopping app for the iPad, Kindle Fire, Android tablets and large screen smart phones, where you can browse more than 170 popular catalog titles. Ranked number 12 on the 2010 Inc. 500 list of fastest growing private companies, TheFind was founded in 2005, venture funded by Bain Capital Ventures, Lightspeed Venture Partners and Redpoint Ventures and is a San Francisco and Silicon Valley-based company.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0000/3307/3307v10-max-150x150.png'], [[250, 60], 'assets/images/resized/0000/3307/3307v10-max-250x250.png'], [[450, 109], 'assets/images/resized/0000/3307/3307v10-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'TheFind.com', 'permalink': 'thefind-com'}], 'relationships': [{'is_past': False, 'title': 'Co - Founder & CEO', 'person': {'first_name': 'Siva', 'last_name': 'Kumar', 'permalink': 'siva-kumar'}}, {'is_past': False, 'title': 'Co-founder, CTO', 'person': {'first_name': 'Shashikant', 'last_name': 'Khandelwal', 'permalink': 'shashikant-khandelwal'}}, {'is_past': False, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Dave', 'last_name': 'Cook', 'permalink': 'dave-cook-2'}}, {'is_past': False, 'title': 'VP of Business Development', 'person': {'first_name': 'Rob', 'last_name': 'Ulveling', 'permalink': 'rob-ulveling'}}, {'is_past': False, 'title': 'VP Engg', 'person': {'first_name': 'Zoran', 'last_name': 'Dukic', 'permalink': 'zoran-dukic'}}, {'is_past': False, 'title': 'Board/Advisor', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': False, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'Usher', 'last_name': 'Lieberman', 'permalink': 'usher-lieberman'}}, {'is_past': False, 'title': 'Vice President & General Manager Mobile', 'person': {'first_name': 'Ramneek', 'last_name': 'Bhasin', 'permalink': 'ramneek-bhasin'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Tim', 'last_name': 'Haley', 'permalink': 'tim-haley'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Scott', 'last_name': 'Friend', 'permalink': 'scott-friend'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Ravi', 'last_name': 'Mhatre', 'permalink': 'ravi-mhatre'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Prasanth', 'last_name': 'Madhavan', 'permalink': 'prasanth-madhavan'}}, {'is_past': True, 'title': 'Co-Founder & CEO', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': True, 'title': 'Co-Founder, Director of Engineering', 'person': {'first_name': 'Ranjit', 'last_name': 'Padmanabhan', 'permalink': 'ranjit-padmanabhan'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Trey', 'last_name': 'Pruitt', 'permalink': 'trey-pruitt'}}, {'is_past': True, 'title': 'VP of B2B Marketing [Interim]', 'person': {'first_name': 'Darby', 'last_name': 'Williams', 'permalink': 'darby-williams'}}, {'is_past': True, 'title': 'VP Products', 'person': {'first_name': 'Ron', 'last_name': 'Levi', 'permalink': 'ron-levi'}}, {'is_past': True, 'title': 'Product Development', 'person': {'first_name': 'Namita', 'last_name': 'Bhasin', 'permalink': 'namita-bhasin'}}, {'is_past': True, 'title': 'Senior Director, Business Development', 'person': {'first_name': 'Rob', 'last_name': 'Ulveling', 'permalink': 'rob-ulveling'}}, {'is_past': True, 'title': 'Operating & Consulting roles', 'person': {'first_name': 'Bill', 'last_name': 'Youstra', 'permalink': 'bill-youstra'}}, {'is_past': True, 'title': 'iOS Developer', 'person': {'first_name': 'Adam', 'last_name': 'Talcott', 'permalink': 'adam-talcott'}}, {'is_past': True, 'title': 'Senior Research Engineer', 'person': {'first_name': 'Michael', 'last_name': 'Tung', 'permalink': 'michael-tung'}}], 'competitions': [{'competitor': {'name': 'Twenga', 'permalink': 'twenga'}}, {'competitor': {'name': 'Become', 'permalink': 'become'}}, {'competitor': {'name': 'ShopWiki', 'permalink': 'shopwiki'}}, {'competitor': {'name': 'NexTag', 'permalink': 'nextag'}}, {'competitor': {'name': 'Bing Shopping', 'permalink': 'bing-shopping'}}, {'competitor': {'name': 'Devtap', 'permalink': 'devtap'}}, {'competitor': {'name': 'SearcHub.com', 'permalink': 'searchub-com'}}], 'providerships': [], 'total_money_raised': '$26M', 'funding_rounds': [{'id': 132, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}, {'id': 133, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}, {'id': 134, 'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Lightspeed Venture Partners', 'permalink': 'lightspeed-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bain Capital Ventures', 'permalink': 'bain-capital-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'Glimpse', 'permalink': 'glimpse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/09/01/thefind-acquires-istorezcom-to-help-consumers-find-deals-while-shopping/', 'source_description': 'TheFind Acquires iStorez.com To Help Consumers Find Deals While Shopping', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 1, 'company': {'name': 'iStorez', 'permalink': 'istorez'}}], 'offices': [{'description': '', 'address1': '310 Villa Street', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.391502, 'longitude': -122.073463}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://ideamensch.com/siva-kumar/', 'title': 'Ideamensch.com Interview'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e04'), 'name': 'Sway', 'permalink': 'sway', 'crunchbase_url': 'http://www.crunchbase.com/company/sway', 'homepage_url': 'http://www.swayonline.com', 'blog_url': 'http://www.sparkeffect.com', 'blog_feed_url': 'http://www.sparkeffect.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'advertising', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 3, 'deadpooled_year': 2012, 'deadpooled_month': 12, 'deadpooled_day': 2, 'deadpooled_url': '', 'tag_list': 'socialmedia, marketing, onlinemarketing, advertising', 'alias_list': None, 'email_address': 'info@swayonline.com', 'phone_number': '608-833-0088', 'description': None, 'created_at': 'Fri Feb 01 10:33:22 UTC 2008', 'updated_at': 'Wed Oct 09 06:00:12 UTC 2013', 'overview': '

Headquartered in the Silicon Prairie of Madison, Wisconsin, Shoutlet, Inc. was a privately held technology firm that developed tools to help global brands, small businesses, and marketing agencies build, engage, and measure social media communication via one affordable, easy-to-use, multi-user application.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0000/3370/3370v1-max-150x150.png'], [[184, 42], 'assets/images/resized/0000/3370/3370v1-max-250x250.png'], [[184, 42], 'assets/images/resized/0000/3370/3370v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Research : Social Media Map', 'permalink': 'research-social-media-map'}], 'relationships': [{'is_past': False, 'title': 'CEO and Chief Marketing Strategist', 'person': {'first_name': 'Jason', 'last_name': 'Weaver', 'permalink': 'jason-weaver'}}, {'is_past': None, 'title': 'COO and CFO', 'person': {'first_name': 'Edward', 'last_name': 'Muir', 'permalink': 'edward-muir'}}, {'is_past': None, 'title': 'Creative Director', 'person': {'first_name': 'Ann', 'last_name': 'Edmunds', 'permalink': 'ann-edmunds'}}, {'is_past': None, 'title': 'Shoutlet Product Marketing Manager', 'person': {'first_name': 'Jason', 'last_name': 'Konz', 'permalink': 'jason-konz'}}, {'is_past': None, 'title': 'Marketing Research Manager', 'person': {'first_name': 'Milissa', 'last_name': 'Rick', 'permalink': 'milissa-rick'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Leah', 'last_name': 'Clevenger', 'permalink': 'leah-clevenger'}}], 'competitions': [{'competitor': {'name': 'Trendpedia', 'permalink': 'trenpedia'}}], 'providerships': [], 'total_money_raised': '$2M', 'funding_rounds': [{'id': 11292, 'round_code': 'a', 'source_url': 'http://www.finsmes.com/2010/01/sway-raises-2m-in-series-funding-round.html', 'source_description': 'Sway Raises $2M in Series A Funding Round', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Origin Ventures', 'permalink': 'origin-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Leo Capital Holdings', 'permalink': 'leo-capital-holdings'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '8313 Greenway Blvd Suite 100', 'address2': '', 'zip_code': '53562', 'city': 'Middleton', 'state_code': 'WI', 'country_code': 'USA', 'latitude': 43.090756, 'longitude': -89.522805}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 82], 'assets/images/resized/0007/4016/74016v1-max-150x150.jpg'], [[250, 137], 'assets/images/resized/0007/4016/74016v1-max-250x250.jpg'], [[450, 246], 'assets/images/resized/0007/4016/74016v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e05'), 'name': 'CornerWorld', 'permalink': 'cornerworld', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerworld', 'homepage_url': 'http://www.cornerworld.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'public_relations', 'number_of_employees': None, 'founded_year': 2002, 'founded_month': 9, 'founded_day': 30, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'marketing, socialnetworking, telecommunication, applicationserviceprovider', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': 'Marketing and Technology Services', 'created_at': 'Fri Feb 01 10:36:13 UTC 2008', 'updated_at': 'Mon Sep 21 21:22:53 UTC 2009', 'overview': '

CornerWorld Corporation [OTCBB: CWRL] is a marketing and technology services company creating opportunities from the increased accessibility of content across mobile, television and internet platforms. The key asset is the patented 611 Roaming Service™ from RANGER Wireless Solutions®, which generates revenue by processing over 14 million calls from roaming wireless customers per year and seamlessly transferring them to their service providers.

\\n\\n

Mission Statement- Building on its current assets, CornerWorld is developing an ecosystem of direct marketing, telecommunication and technology companies that is uniquely positioned to capitalize on industry evolutions as an advertiser, content creator and service provider.

\\n\\n

CornerWorld’s holdings include:

\\n\\n

Dial611, a site for 611 Roaming Serviceâ„¢, the customer service short code for over 30 mobile carriers.

\\n\\n

Encontent Networkâ„¢, magazine-style destination web sites designed to drive prospects to request information.

\\n\\n

Enversa, a leading marketing communications provider offering a full menu of services for brand and direct response customer acquisition campaigns including media buying and planning for online and mobile media.

\\n\\n

RANGER Wireless Solutions® is a wireless shortcodes and application development company supporting over 30 carriers in North America. RANGER®’s core service is 611 Roaming Service™, which provides a seamless means for wireless subscribers to reach their home provider’s customer service call center.

\\n\\n

SocialUr.com (formerly CornerWorld.com) is a soon to be relaunched business management and social networking platform that empowers independent content creators to share and profit from their skills.

\\n\\n

T² Communications is a next-generation telecommunications and entertainment service provider that uses a portfolio of industry-leading technology to deliver phone, television and internet products for homes and businesses.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0000/3373/3373v1-max-150x150.png'], [[151, 30], 'assets/images/resized/0000/3373/3373v1-max-250x250.png'], [[151, 30], 'assets/images/resized/0000/3373/3373v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'SocialUr', 'permalink': 'cornerworld'}], 'relationships': [{'is_past': False, 'title': 'Chairman and CEO', 'person': {'first_name': 'Scott', 'last_name': 'Beck', 'permalink': 'scott-beck'}}, {'is_past': False, 'title': 'Director and Chief Operating Officer-Woodland Holdings', 'person': {'first_name': 'Ned', 'last_name': 'Timmer', 'permalink': 'ned-timmer'}}, {'is_past': False, 'title': 'Secretary and Public Relations', 'person': {'first_name': 'Kelly', 'last_name': 'Larabee', 'permalink': 'kelly-larabee'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Marc', 'last_name': 'Blumberg', 'permalink': 'marc-blumberg'}}, {'is_past': False, 'title': 'Chief Marketing Officer and President-Enversa Companies', 'person': {'first_name': 'Marc', 'last_name': 'Pickren', 'permalink': 'marc-pickren'}}, {'is_past': True, 'title': 'VP of sales and marketing', 'person': {'first_name': 'Michael', 'last_name': 'Caranfa', 'permalink': 'michael-caranfa'}}], 'competitions': [{'competitor': {'name': 'Gydget', 'permalink': 'gydget'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '12222 Merit Drive Suite 120', 'address2': '', 'zip_code': '75251', 'city': 'Dallas', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 32.914662, 'longitude': -96.771281}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e0d'), 'name': 'FlickIM', 'permalink': 'flickim', 'crunchbase_url': 'http://www.crunchbase.com/company/flickim', 'homepage_url': 'http://www.outfittershaven.com', 'blog_url': 'http://www.outfittershaven.com', 'blog_feed_url': 'http://www.outfittershaven.com', 'twitter_username': 'HabbibalZaker', 'category_code': 'mobile', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobileim, chat, im, andreshmt', 'alias_list': 'NextThree', 'email_address': 'habbibalzaker@yahoo.com', 'phone_number': '', 'description': 'chat programs', 'created_at': 'Tue Jul 17 05:23:38 UTC 2007', 'updated_at': 'Sat Feb 02 02:45:48 UTC 2013', 'overview': '

FlickIM is a chat program designed specifically for the iPhone. The application is made entirely in javascript; however, you cannot access the service if you are not on the iPhone. The product currently only supports AIM.

\\n\\n

FlickIM is a product of NextThree, which is currently in stealth mode. NextThree is currently based in Berkeley.

', 'image': {'available_sizes': [[[150, 45], 'assets/images/resized/0000/3451/3451v1-max-150x150.png'], [[200, 60], 'assets/images/resized/0000/3451/3451v1-max-250x250.png'], [[200, 60], 'assets/images/resized/0000/3451/3451v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'FlickIM', 'permalink': 'flickim'}], 'relationships': [{'is_past': False, 'title': 'Co-founder/CEO', 'person': {'first_name': 'David', 'last_name': 'Shirazi', 'permalink': 'david-shirazi'}}, {'is_past': False, 'title': 'Co-founder/Chief Software Architect', 'person': {'first_name': 'Max', 'last_name': 'Crane', 'permalink': 'max-crane'}}, {'is_past': True, 'title': 'VP Business Operations & Strategy', 'person': {'first_name': 'Tyler', 'last_name': 'Dikman', 'permalink': 'tyler-dikman'}}, {'is_past': True, 'title': 'Eng', 'person': {'first_name': 'David', 'last_name': 'McIntosh', 'permalink': 'david-mcintosh'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Ross', 'last_name': 'Rudd', 'permalink': 'ross-rudd'}}], 'competitions': [{'competitor': {'name': 'eBuddy', 'permalink': 'ebuddy'}}], 'providerships': [], 'total_money_raised': '$1.6M', 'funding_rounds': [{'id': 155, 'round_code': 'a', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Alsop Louie Partners', 'permalink': 'alsop-louie-partners'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '2030 Addison St.', 'address2': 'Suite 620', 'zip_code': '', 'city': 'Berkeley', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.870744, 'longitude': -122.269259}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e0f'), 'name': 'Terabitz', 'permalink': 'terabitz', 'crunchbase_url': 'http://www.crunchbase.com/company/terabitz', 'homepage_url': 'http://www.terabitz.com', 'blog_url': 'http://www.terabitzblog.com/', 'blog_feed_url': '', 'twitter_username': 'TheTerabitz', 'category_code': 'web', 'number_of_employees': 12, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'realstate', 'alias_list': '', 'email_address': '', 'phone_number': '650-320-9000', 'description': '', 'created_at': 'Tue Jul 17 08:58:01 UTC 2007', 'updated_at': 'Thu May 16 04:04:40 UTC 2013', 'overview': '

Terabitz is a personalized page service for real estate applications. It was founded in July 2006 by father and son co-founders Ashfaq Munshi and Kamran Munshi and is headquartered in Palo Alto, CA. Terabitz recently raised $10 million in Series A funding from Tudor Investments in February 2007.

\\n\\n

Terabitz allows users to gather all their important real estate tools, apps and data to one page that they can further personalize. Users are able to drag and drop their apps for Craigslist listings, Trulia listings, Google Maps, schools, restaurants, etc. Once they’ve created a page for a real estate market they’re interested in they can then share it with others.

', 'image': {'available_sizes': [[[136, 46], 'assets/images/resized/0000/3469/3469v2-max-150x150.jpg'], [[136, 46], 'assets/images/resized/0000/3469/3469v2-max-250x250.jpg'], [[136, 46], 'assets/images/resized/0000/3469/3469v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Terabitz', 'permalink': 'terabitz'}], 'relationships': [{'is_past': False, 'title': 'VP of Sales', 'person': {'first_name': 'Chris', 'last_name': 'Kosloski', 'permalink': 'chris-kosloski'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Charles', 'last_name': 'Cotton', 'permalink': 'charles-cotton'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Carl', 'last_name': 'Fantasia', 'permalink': 'carl-fantasia'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Ron', 'last_name': 'Wohl', 'permalink': 'ron-wohl'}}, {'is_past': True, 'title': 'Co-founder, CTO', 'person': {'first_name': 'Kamran', 'last_name': 'Munshi', 'permalink': 'kamran-munshi'}}, {'is_past': True, 'title': 'VP of Marketing & Business Development', 'person': {'first_name': 'Kevin', 'last_name': 'Akeroyd', 'permalink': 'kevin-akeroyd'}}, {'is_past': True, 'title': 'VP of Product', 'person': {'first_name': 'Travis', 'last_name': 'Chow', 'permalink': 'travis-chow'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Vishal', 'last_name': 'vyas', 'permalink': 'vishal-vyas'}}], 'competitions': [{'competitor': {'name': 'Cyberhomes', 'permalink': 'cyberhomes'}}, {'competitor': {'name': 'Trulia', 'permalink': 'trulia'}}, {'competitor': {'name': 'Zillow', 'permalink': 'zillow'}}, {'competitor': {'name': 'Redfin', 'permalink': 'redfin'}}, {'competitor': {'name': 'HotPads', 'permalink': 'hotpads-com'}}], 'providerships': [], 'total_money_raised': '$10M', 'funding_rounds': [{'id': 162, 'round_code': 'a', 'source_url': 'http://www.inman.com/news/2007/07/2/another-venture-backed-startup-lands-in-real-estate', 'source_description': 'Another venture-backed startup lands in real estate', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Tudor Investments', 'permalink': 'tudor-investments'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '5 Palo Alto Sq Ste 220', 'address2': '', 'zip_code': '94306-2123', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.437328, 'longitude': -122.159928}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e17'), 'name': 'Kaboodle', 'permalink': 'kaboodle', 'crunchbase_url': 'http://www.crunchbase.com/company/kaboodle', 'homepage_url': 'http://www.kaboodle.com', 'blog_url': 'http://blog.kaboodle.com', 'blog_feed_url': 'http://blog.kaboodle.com/kaboodleblog/index.rdf', 'twitter_username': 'kaboodle', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'shopping, kaboodle', 'alias_list': '', 'email_address': 'info@kaboodle-inc.com', 'phone_number': '408-492-0028', 'description': '', 'created_at': 'Wed Jul 18 06:01:15 UTC 2007', 'updated_at': 'Tue Jul 02 22:44:20 UTC 2013', 'overview': '

Launched in October 2005, Kaboodle offers an easy way to collect information from the web and also search for things you may be interested in. Kaboodle can be used to collect and share information for shopping, travel, research, or just about anything else. With over 35,000 users, Kaboodle’s user base is relatively small, but the site is young and has much room to grow.

\\n\\n

The company has received funding and strong support from such investors as Kanwal Rekhi of Inventus Capital, Junglee founder Ashish Gupta, and co-author of Google’s early search algorithm research Rajeev Motwani.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/6674/16674v3-max-150x150.jpg'], [[171, 171], 'assets/images/resized/0001/6674/16674v3-max-250x250.jpg'], [[171, 171], 'assets/images/resized/0001/6674/16674v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Kaboodle', 'permalink': 'kaboodle'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Anne', 'last_name': 'Zehren', 'permalink': 'ann-zehren'}}, {'is_past': True, 'title': 'Co-founder & VP of Engineering', 'person': {'first_name': 'Chetan', 'last_name': 'Pungaliya', 'permalink': 'chetan-pungaliya'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Manish', 'last_name': 'Chandra', 'permalink': 'manish-chandra'}}, {'is_past': True, 'title': 'Co-founder & CTO', 'person': {'first_name': 'Keiron', 'last_name': 'McCammon', 'permalink': 'keiron-mccammon'}}, {'is_past': True, 'title': 'VP Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Hansen', 'permalink': 'brian-hansen'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Namita', 'last_name': 'Bhasin', 'permalink': 'namita-bhasin'}}], 'competitions': [{'competitor': {'name': 'Crowdstorm USA', 'permalink': 'crowdstorm'}}, {'competitor': {'name': 'ThisNext', 'permalink': 'thisnext'}}, {'competitor': {'name': 'ShopWiki', 'permalink': 'shopwiki'}}, {'competitor': {'name': 'Open Fashion', 'permalink': 'open-fashion'}}, {'competitor': {'name': 'iliketotallyloveit', 'permalink': 'iliketotallyloveit'}}, {'competitor': {'name': 'Savvy Circle', 'permalink': 'savvy-circle'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 176, 'round_code': 'a', 'source_url': 'http://www.news.com/2110-1025_3-6061513.html', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Garage Technology Ventures', 'permalink': 'garage-technology-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kanwal', 'last_name': 'Rekhi', 'permalink': 'kanwal-rekhi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rajeev', 'last_name': 'Motwani', 'permalink': 'rajeev-motwani'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Iggy', 'last_name': 'Fanlo', 'permalink': 'iggy-fanlo'}}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Clavier', 'permalink': 'jeff-clavier'}}]}, {'id': 318, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}]}, {'id': 319, 'round_code': 'c', 'source_url': '', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Shea Ventures', 'permalink': 'shea-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 1, 'acquiring_company': {'name': 'Hearst Corporation', 'permalink': 'hearstcorporation'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '640 W. California Ave.', 'address2': 'Suite 220', 'zip_code': '94041', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.382162, 'longitude': -122.036301}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 80], 'assets/images/resized/0003/2056/32056v1-max-150x150.jpg'], [[250, 133], 'assets/images/resized/0003/2056/32056v1-max-250x250.jpg'], [[450, 240], 'assets/images/resized/0003/2056/32056v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e18'), 'name': 'GigaOM', 'permalink': 'gigaom', 'crunchbase_url': 'http://www.crunchbase.com/company/gigaom', 'homepage_url': 'http://gigaom.com', 'blog_url': '', 'blog_feed_url': 'http://feeds.feedburner.com/ommalik', 'twitter_username': 'gigaom', 'category_code': 'news', 'number_of_employees': 75, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'blog, web2-0', 'alias_list': 'Giga Omni Media', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 09:08:31 UTC 2007', 'updated_at': 'Thu Oct 24 00:02:03 UTC 2013', 'overview': '

Gigaom provides intelligent, credible analysis of emerging technologies. More than 5.5 million monthly unique readers turn to Gigaom to better understand major technology disruptions and the new business opportunities they are creating.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0001/1380/11380v5-max-150x150.jpg'], [[250, 83], 'assets/images/resized/0001/1380/11380v5-max-250x250.jpg'], [[450, 150], 'assets/images/resized/0001/1380/11380v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'GigaOm', 'permalink': 'gigaom'}, {'name': 'Gigaom Research', 'permalink': 'gigaom-pro'}, {'name': 'GigaOM Events', 'permalink': 'gigaom-events'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Paul', 'last_name': 'Walborsky', 'permalink': 'paul-walborsky'}}, {'is_past': False, 'title': 'Founder and Senior Writer', 'person': {'first_name': 'Om', 'last_name': 'Malik', 'permalink': 'om-malik'}}, {'is_past': False, 'title': 'VP, Product', 'person': {'first_name': 'Raza', 'last_name': 'Zaidi', 'permalink': 'raza-zaidi-2'}}, {'is_past': False, 'title': 'VP, Operations and Sales', 'person': {'first_name': 'Asanka', 'last_name': 'de Mel', 'permalink': 'asanka-de-mel'}}, {'is_past': False, 'title': 'VP, Marketing', 'person': {'first_name': 'Andrea', 'last_name': 'Abegglen', 'permalink': 'andrea-abegglen'}}, {'is_past': False, 'title': 'VP, Business Development', 'person': {'first_name': 'Alison', 'last_name': 'Murdock', 'permalink': 'alison-murdock'}}, {'is_past': False, 'title': 'VP, Sales', 'person': {'first_name': 'Mike', 'last_name': 'Sly', 'permalink': 'mike-sly'}}, {'is_past': False, 'title': 'Senior Writer and Features Editor', 'person': {'first_name': 'Katie', 'last_name': 'Fehrenbacher', 'permalink': 'katie-fehrenbacher'}}, {'is_past': False, 'title': 'Senior Writer', 'person': {'first_name': 'Stacey', 'last_name': 'Higginbotham', 'permalink': 'stacey-higginbotham'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Ammar', 'last_name': 'Hanafi', 'permalink': 'ammar-hanafi'}}, {'is_past': False, 'title': 'Sr. Sales Director', 'person': {'first_name': 'Nick', 'last_name': 'Basso', 'permalink': 'nick-basso'}}, {'is_past': False, 'title': 'Executive Editor', 'person': {'first_name': 'Ernie', 'last_name': 'Sander', 'permalink': 'ernie-sander'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Josh', 'last_name': 'Stevens', 'permalink': 'josh-stevens'}}, {'is_past': False, 'title': 'Staff Writer', 'person': {'first_name': 'Janko', 'last_name': 'Roettgers', 'permalink': 'janko-roettgers'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Callahan', 'permalink': 'john-callahan'}}, {'is_past': False, 'title': 'Director of Product', 'person': {'first_name': 'Ian', 'last_name': 'Kennedy', 'permalink': 'ian-kennedy'}}, {'is_past': False, 'title': 'VP, Research', 'person': {'first_name': 'David', 'last_name': 'Card', 'permalink': 'david-card'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Kevin', 'last_name': 'Brown', 'permalink': 'kevin-brown-5'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Ivan', 'last_name': 'Koon', 'permalink': 'ivan-koon'}}, {'is_past': True, 'title': 'SVP, Product & Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Silmore', 'permalink': 'dan-silmore'}}, {'is_past': True, 'title': 'VP, Editorial', 'person': {'first_name': 'Nicole', 'last_name': 'Solis', 'permalink': 'nicole-solis'}}, {'is_past': True, 'title': 'VP, Research', 'person': {'first_name': 'Michael', 'last_name': 'Wolf', 'permalink': 'michael-wolf-2'}}, {'is_past': True, 'title': 'VP, Events', 'person': {'first_name': 'Surj', 'last_name': 'Patel', 'permalink': 'surj-patel'}}, {'is_past': True, 'title': 'Editor of NewTeeVee.com', 'person': {'first_name': 'Liz', 'last_name': 'Gannes', 'permalink': 'liz-gannes'}}, {'is_past': True, 'title': 'Writer Web Worker Daily', 'person': {'first_name': 'Judi', 'last_name': 'Sohn', 'permalink': 'judi-sohn'}}, {'is_past': True, 'title': 'Writer NewTeeVee', 'person': {'first_name': 'Karina', 'last_name': 'Longworth', 'permalink': 'karina-longworth'}}, {'is_past': True, 'title': 'Manager, Business Development', 'person': {'first_name': 'Joanne \"Joey\"', 'last_name': 'Wan', 'permalink': 'joanne-wan'}}, {'is_past': True, 'title': 'Special Projects Editor', 'person': {'first_name': 'Celeste', 'last_name': 'LeCompte', 'permalink': 'celeste-lecompte'}}, {'is_past': True, 'title': 'Editor of Ostatic.com', 'person': {'first_name': 'Sam', 'last_name': 'Dean', 'permalink': 'sam-dean'}}, {'is_past': True, 'title': 'Editor of TheAppleBlog', 'person': {'first_name': 'Josh', 'last_name': 'Pigford', 'permalink': 'josh-pigford'}}, {'is_past': True, 'title': 'National Account Manager for GigaOM Pro', 'person': {'first_name': 'Nathan', 'last_name': 'Entrekin', 'permalink': 'nathan-entrekin'}}, {'is_past': True, 'title': 'Staff Writer', 'person': {'first_name': 'Ryan', 'last_name': 'Lawler', 'permalink': 'ryan-lawler'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Dan', 'last_name': 'Burke', 'permalink': 'dan-burke-2'}}, {'is_past': True, 'title': 'Writer', 'person': {'first_name': 'Wagner James', 'last_name': 'Au', 'permalink': 'wagner-james-au'}}, {'is_past': True, 'title': 'Writer Web Worker Daily', 'person': {'first_name': 'Mike', 'last_name': 'Gunderloy', 'permalink': 'mike-gunderloy'}}, {'is_past': True, 'title': 'Writer Earth2Tech & NewTeeVee', 'person': {'first_name': 'Craig', 'last_name': 'Rubens', 'permalink': 'craig-rubens'}}, {'is_past': True, 'title': 'Managing Editor', 'person': {'first_name': 'Carolyn', 'last_name': 'Pritchard', 'permalink': 'carolyn-pritchard'}}, {'is_past': True, 'title': 'Editor of FoundRead', 'person': {'first_name': 'Carleen', 'last_name': 'Hawn', 'permalink': 'carleen-hawn'}}, {'is_past': True, 'title': 'Writer NewTeeVee.com', 'person': {'first_name': 'Liz', 'last_name': 'Shannon Miller', 'permalink': 'liz-shannon-miller'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Brad', 'last_name': \"O'Neill\", 'permalink': 'brad-oneill'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Ryan', 'last_name': 'Freitas', 'permalink': 'ryan-freitas'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Askew', 'permalink': 'tony-askew'}}, {'is_past': True, 'title': 'Blogger', 'person': {'first_name': 'Jessica', 'last_name': 'Stillman', 'permalink': 'jessica-stillman'}}], 'competitions': [{'competitor': {'name': 'iamweb2.0', 'permalink': 'iamweb2'}}], 'providerships': [{'title': 'PR', 'is_past': False, 'provider': {'name': 'Mercury Global Partners', 'permalink': 'mercury-global-partners'}}, {'title': 'Event management', 'is_past': False, 'provider': {'name': 'Magnify Communications', 'permalink': 'magnify-communications'}}], 'total_money_raised': '$14.3M', 'funding_rounds': [{'id': 184, 'round_code': 'a', 'source_url': 'http://gigaom.com/2006/06/12/its-time-to-transition/', 'source_description': '', 'raised_amount': 325000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jon', 'last_name': 'Callaghan', 'permalink': 'jon-callaghan'}}]}, {'id': 1502, 'round_code': 'b', 'source_url': 'http://gigaom.com/2007/11/15/a-small-note-about-our-series-b-funding/', 'source_description': 'GigaOm', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rakesh', 'last_name': 'Mathur', 'permalink': 'rakesh-mathur'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Venky', 'last_name': 'Harinarayan', 'permalink': 'venky-harinarayan'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Anand', 'last_name': 'Rajaraman', 'permalink': 'anand-rajaraman'}}]}, {'id': 3593, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2008/10/06/gigaom-ignores-my-advice-raises-another-45-million/', 'source_description': 'GigaOm Ignores My Advice, Raises Another $4.5 Million', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}]}, {'id': 19456, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2010/10/22/looks-like-our-friends-over-at-gigaom-just-raised-another-2-5-million/', 'source_description': 'Looks Like Our Friends Over At GigaOm Just Raised Another $2.5 Million', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}]}, {'id': 23187, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/05/25/gigaom-raises-another-6-million-at-40-million-valuation/', 'source_description': '', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Reed Elsevier Ventures', 'permalink': 'reed-elsevier'}, 'person': None}, {'company': None, 'financial_org': {'name': 'True Ventures', 'permalink': 'true-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Alloy Ventures', 'permalink': 'alloy-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2008/07/22/gigaom-acquires-jkontherun/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'jkOnTheRun', 'permalink': 'jkontherun'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2008/09/15/gigaom-acquires-theappleblog/', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': None, 'company': {'name': 'TheAppleBlog', 'permalink': 'theappleblog'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2012/02/08/why-we-are-buying-paidcontent/', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'paidContent', 'permalink': 'paidcontent'}}], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.775196, 'longitude': -122.419204}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.7143528, 'longitude': -74.0059731}], 'milestones': [{'id': 8100, 'description': \"Giga Omni Media named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'GigaOM', 'permalink': 'gigaom'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Gigaom CEO Paul Walborsky explains the company and our branding refresh.

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e19'), 'name': 'Redfin', 'permalink': 'redfin', 'crunchbase_url': 'http://www.crunchbase.com/company/redfin', 'homepage_url': 'http://redfin.com', 'blog_url': 'http://blog.redfin.com/', 'blog_feed_url': 'http://feeds2.feedburner.com/redfin_corporate?format=xml', 'twitter_username': 'Redfin', 'category_code': 'real_estate', 'number_of_employees': 100, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'realestate, hybrid-business, rental', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Online Real Estate ', 'created_at': 'Wed Jul 18 09:13:16 UTC 2007', 'updated_at': 'Thu Nov 21 18:28:24 UTC 2013', 'overview': '

Redfin is an online real estate company that provides real estate search and brokerage services. Redfin uses an interesting combination of online real estate search and access to live agents. They employ their agents so they can better control customer satisfaction; traditional brokerage firms license their name to independent agents. Redfin claims to save homebuyers on average $7,500 by reimbursing roughly 1/2 of the buy-side real estate fee directly on closing. Redfin also pays bonuses to agents when they receive high customer satisfaction.

\\n\\n

The service launched in February 2006.

\\n\\n

Redfin’s main competitors include real estate search services like Trulia, Zillow, Estately and Realtor.com. None of their competitors combine online real estate search and brokerage services.

\\n\\n

On their site, Redfin combines MLS listing information with historical data into a single map. You can search for homes by neighborhood, city or MLS number, or you can refine results using detailed parameters like price and number of beds or baths. As of July 2007, users can look for homes in Chicago, Washington, D.C. area, including Central Maryland and Northern Virginia, Greater Boston, the San Francisco Bay Area, Greater Seattle and Southern California, including Los Angeles, Orange County, the Inland Empire and San Diego.

\\n\\n

The company was founded by David Eraker and is based out of Seattle; there is also a San Francisco engineering office, and local agents in each of the markets Redfin serves.

', 'image': {'available_sizes': [[[117, 39], 'assets/images/resized/0020/4948/204948v1-max-150x150.png'], [[117, 39], 'assets/images/resized/0020/4948/204948v1-max-250x250.png'], [[117, 39], 'assets/images/resized/0020/4948/204948v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Redfin', 'permalink': 'redfin'}], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Glenn', 'last_name': 'Kelman', 'permalink': 'glenn-kelman'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Chris', 'last_name': 'Nielsen', 'permalink': 'chris-nielsen'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Sasha', 'last_name': 'Aickin', 'permalink': 'sasha-aickin'}}, {'is_past': False, 'title': 'Chief of Real Estate Operationsons', 'person': {'first_name': 'Scott', 'last_name': 'Nagel', 'permalink': 'scot-nagel'}}, {'is_past': False, 'title': 'Vice President, Marketing Operations', 'person': {'first_name': 'Matt', 'last_name': 'Goyer', 'permalink': 'matt-goyer'}}, {'is_past': False, 'title': 'Vice President, Public Relations', 'person': {'first_name': 'Jani', 'last_name': 'Strand', 'permalink': 'jani-strand'}}, {'is_past': False, 'title': 'Vice President, Seattle Engineering', 'person': {'first_name': 'Bridget', 'last_name': 'Frey', 'permalink': 'bridget-frey'}}, {'is_past': False, 'title': 'Vice President, Products', 'person': {'first_name': 'Bryan', 'last_name': 'Selner', 'permalink': 'bryan-selner'}}, {'is_past': False, 'title': 'Board member', 'person': {'first_name': 'James', 'last_name': 'Slavet', 'permalink': 'james-slavet'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Josh', 'last_name': 'Stein', 'permalink': 'josh-stein'}}, {'is_past': False, 'title': 'Vice President, Analytics & New Business', 'person': {'first_name': 'Adam', 'last_name': 'Wiener', 'permalink': 'adam-wiener'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Paul', 'last_name': 'Goodrich', 'permalink': 'paul-goodrich'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'William', 'last_name': 'Meurer', 'permalink': 'william-meurer'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Tom', 'last_name': 'Vogl', 'permalink': 'tom-vogl'}}, {'is_past': False, 'title': 'Board Observer', 'person': {'first_name': 'Scott', 'last_name': 'Jacobson', 'permalink': 'scott-jacobson-2'}}, {'is_past': False, 'title': 'Vice President, Real Estate Operations', 'person': {'first_name': 'Karen', 'last_name': 'Krupsaw', 'permalink': 'karen-krupsaw'}}, {'is_past': True, 'title': 'CTO & Co-Founder', 'person': {'first_name': 'David', 'last_name': 'Selinger', 'permalink': 'david-selinger'}}, {'is_past': True, 'title': 'Vice President, Engineering,, Engineering Manager, Search Team.', 'person': {'first_name': 'Sasha', 'last_name': 'Aickin', 'permalink': 'sasha-aickin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Young', 'permalink': 'michael-young'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lehmann', 'permalink': 'john-lehmann'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Bryan', 'last_name': 'Selner', 'permalink': 'bryan-selner'}}, {'is_past': True, 'title': 'Director of Analytics Engineering', 'person': {'first_name': 'Bridget', 'last_name': 'Frey', 'permalink': 'bridget-frey'}}, {'is_past': True, 'title': 'Real Estate Scientist', 'person': {'first_name': 'Tim', 'last_name': 'Ellis', 'permalink': 'tim-ellis-4'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Leo', 'last_name': 'Shklovskii', 'permalink': 'leo-shklovskii'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Michelle', 'last_name': 'Broderick', 'permalink': 'michelle-broderick'}}, {'is_past': True, 'title': 'Director, Partner Programs & New Products,, Lead Product Manager.', 'person': {'first_name': 'Adam', 'last_name': 'Wiener', 'permalink': 'adam-wiener'}}, {'is_past': True, 'title': 'UI Graphic Designer', 'person': {'first_name': 'Stuart', 'last_name': 'Norrie', 'permalink': 'stuart-norrie'}}], 'competitions': [{'competitor': {'name': 'Cyberhomes', 'permalink': 'cyberhomes'}}, {'competitor': {'name': 'Trulia', 'permalink': 'trulia'}}, {'competitor': {'name': 'Zillow', 'permalink': 'zillow'}}, {'competitor': {'name': 'Terabitz', 'permalink': 'terabitz'}}, {'competitor': {'name': 'HotPads', 'permalink': 'hotpads-com'}}, {'competitor': {'name': 'HouseSpin', 'permalink': 'housespin'}}, {'competitor': {'name': 'findwell', 'permalink': 'findwell'}}, {'competitor': {'name': 'Metropolitan Regional Information Systems', 'permalink': 'metropolitan-regional-information-systems'}}, {'competitor': {'name': 'The Housing Block', 'permalink': 'the-housing-block'}}, {'competitor': {'name': 'Movoto', 'permalink': 'movoto-online-real-estate'}}, {'competitor': {'name': 'Estately', 'permalink': 'estately'}}], 'providerships': [], 'total_money_raised': '$96.8M', 'funding_rounds': [{'id': 185, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/07/17/redfin-takes-12-million-series-c-financing-amid-realtor-war/', 'source_description': '', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BEV Capital', 'permalink': 'bev-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 187, 'round_code': 'b', 'source_url': 'http://www.redfin.com/stingray/do/landing-page?uid=pr-funding', 'source_description': '', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BEV Capital', 'permalink': 'bev-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 188, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 770000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}]}, {'id': 9502, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 11, 'funded_day': 12, 'investments': [{'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}]}, {'id': 14113, 'round_code': 'unattributed', 'source_url': 'http://360digest.com/real-estate-opinion/redfin-gets-125-million/', 'source_description': 'Redfin Gets $1.25 Million', 'raised_amount': 1250000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}]}, {'id': 26203, 'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/10/27/redfin-raises-14-85-million-in-funding/', 'source_description': 'Redfin Raises Another $14.8 Million To Reinvent The Real Estate Market', 'raised_amount': 14800000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CrunchFund', 'permalink': 'crunchfund'}, 'person': None}]}, {'id': 54672, 'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/11/13/online-real-estate-veteran-redfin-lands-50m-from-tiger-global-investment-giant-t-rowe-price-as-it-looks-to-gain-market-share-in-the-u-s/', 'source_description': 'Online Real Estate Veteran Redfin Lands $50M From Tiger Global, Investment Giant T. Rowe Price As It Looks To Gain Market Share In The U.S.', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Tiger Global Management', 'permalink': 'tiger-global'}, 'person': None}, {'company': None, 'financial_org': {'name': 'T. Rowe Price', 'permalink': 't-rowe-price'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Madrona Venture Group', 'permalink': 'madrona-venture-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Vulcan Capital', 'permalink': 'vulcan-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Hillman Company', 'permalink': 'the-hillman-company'}, 'person': None}, {'company': None, 'financial_org': {'name': 'CrunchFund', 'permalink': 'crunchfund'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2025 1st Ave', 'address2': 'Suite 600', 'zip_code': '98121', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.603122, 'longitude': -122.333253}], 'milestones': [{'id': 5930, 'description': \"Redfin named in Lead411's Hottest Seattle Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 8, 'source_url': 'http://www.lead411.com/seattle-companies.html', 'source_text': None, 'source_description': \" Lead411's Hottest Seattle Companies list\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Redfin', 'permalink': 'redfin'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1a'), 'name': 'Wink', 'permalink': 'wink', 'crunchbase_url': 'http://www.crunchbase.com/company/wink', 'homepage_url': 'http://Wink.com', 'blog_url': 'http://blog.wink.com/', 'blog_feed_url': 'http://blog.wink.com/feed/', 'twitter_username': '', 'category_code': 'search', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 19, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'facebook-lesly-cordon-1832476690', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 12:16:09 UTC 2007', 'updated_at': 'Mon Mar 18 11:21:35 UTC 2013', 'overview': '

Wink is a people search engine that searches for profiles across the Web.

\\n\\n

Wink began in 2004 as a social search engine to use input from other people to influence the relevance of Web pages. But in 2006 Wink changed directions to become a people search engine. At the time there were numerous growing social networks and other places online with limited ability to search. Serving those looking to find old friends or anyone with an active online life, Wink searches about one billion profiles across popular social networks and other destinations.

\\n\\n

Wink merged with Reunion.com in November, 2008.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0000/3538/3538v1-max-150x150.png'], [[200, 67], 'assets/images/resized/0000/3538/3538v1-max-250x250.png'], [[200, 67], 'assets/images/resized/0000/3538/3538v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wink', 'permalink': 'wink'}], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Michael', 'last_name': 'Tanne', 'permalink': 'michael-tanne'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'David', 'last_name': 'Beach', 'permalink': 'david-beach'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'David', 'last_name': 'Koblas', 'permalink': 'david-koblas'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Bruce', 'last_name': 'Karsh', 'permalink': 'bruce-karsh'}}, {'is_past': True, 'title': 'Investment', 'person': {'first_name': 'William', 'last_name': 'Stewart', 'permalink': 'william-stewart'}}], 'competitions': [{'competitor': {'name': 'LinkedIn', 'permalink': 'linkedin'}}, {'competitor': {'name': 'WikiYou', 'permalink': 'wikiyou'}}, {'competitor': {'name': 'PeekYou', 'permalink': 'peekyou'}}, {'competitor': {'name': 'Bigsight Media Group', 'permalink': 'bigsight-media-group'}}, {'competitor': {'name': 'Biographicon', 'permalink': 'biographicon'}}, {'competitor': {'name': 'Spock', 'permalink': 'spock'}}, {'competitor': {'name': 'ZoomInfo', 'permalink': 'zoominfo'}}], 'providerships': [], 'total_money_raised': '$6.2M', 'funding_rounds': [{'id': 186, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2006/11/10/wink-now-searches-myspace-linkedin-and-beebo/', 'source_description': None, 'raised_amount': 6200000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Cambrian Ventures', 'permalink': 'cambrian-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Greylock Partners', 'permalink': 'greylock'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2008/11/03/old-friends-wink-and-reunioncom-reconnect-merge/', 'source_description': 'Old Friends Wink And Reunion.com Reconnect, Merge', 'acquired_year': 2008, 'acquired_month': 11, 'acquired_day': None, 'acquiring_company': {'name': 'MyLife', 'permalink': 'mylife-com'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '94041', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.40047, 'longitude': -122.072981}], 'milestones': [{'id': 1602, 'description': 'Wink People Search Reaches 500 Million People Worldwide', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 24, 'source_url': '', 'source_text': 'Wink People Search Reaches 500 Million People Worldwide', 'source_description': 'Wink People Search Reaches 500 Million People Worldwide', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wink', 'permalink': 'wink'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.sociableblog.com/2008/09/25/wink-people-search-reaches-500-million-people-worldwide/', 'title': 'Wink People Search Reaches 500 Million People Worldwide'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1b'), 'name': 'Go2Web20', 'permalink': 'go2web20', 'crunchbase_url': 'http://www.crunchbase.com/company/go2web20', 'homepage_url': 'http://www.go2web20.net', 'blog_url': 'http://scoutness.com/', 'blog_feed_url': 'http://feeds.feedburner.com/go2web20net', 'twitter_username': 'Go2web20', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'go2web20, web2-0, flash, ajax, logos, directory', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Jul 18 12:59:44 UTC 2007', 'updated_at': 'Tue Mar 12 17:46:10 UTC 2013', 'overview': '

Started in mid 2006, Go2Web20.net is a directory of web 2.0 applications and services. Israeli founders Orli Yakuel and Eyal Shahar started the site as a side project to show off their passion for Flash. Their directory of new web startup logos and basic information is nicely designed and fun to navigate. The site has proved to be popular (thousands of visitors every day), which has led the founders to add more logos and upgrade the site.

\\n\\n

In early 2007 the site began to take on advertisers (TechCrunch is advertising on the site to support the project).

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0000/3541/3541v2-max-150x150.jpg'], [[177, 35], 'assets/images/resized/0000/3541/3541v2-max-250x250.jpg'], [[177, 35], 'assets/images/resized/0000/3541/3541v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Go2Web20', 'permalink': 'go2web20'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Orli', 'last_name': 'Yakuel', 'permalink': 'orli-yakuel'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Eyal', 'last_name': 'Shahar', 'permalink': 'eyal-shahar'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Tel Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': 32.0554, 'longitude': 34.7595}], 'milestones': [{'id': 2412, 'description': '?', 'stoned_year': 1991, 'stoned_month': 2, 'stoned_day': 2, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Go2Web20', 'permalink': 'go2web20'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e1e'), 'name': 'TechnologyGuide', 'permalink': 'technologyguide', 'crunchbase_url': 'http://www.crunchbase.com/company/technologyguide', 'homepage_url': 'http://www.technologyguide.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 10, 'founded_year': 2001, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Thu Aug 23 12:33:07 UTC 2007', 'updated_at': 'Fri Jul 11 21:08:47 UTC 2008', 'overview': None, 'image': None, 'products': [], 'relationships': [], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 1, 'acquiring_company': {'name': 'TechTarget', 'permalink': 'techtarget'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '7420 Jager Ct', 'address2': '', 'zip_code': '45230', 'city': 'Cincinnati', 'state_code': 'OH', 'country_code': 'USA', 'latitude': 39.06685, 'longitude': -84.351532}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e22'), 'name': 'Techmeme', 'permalink': 'techmeme', 'crunchbase_url': 'http://www.crunchbase.com/company/techmeme', 'homepage_url': 'http://techmeme.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'techmeme', 'category_code': 'web', 'number_of_employees': 11, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'techmeme, aggregator, news, technology, tech', 'alias_list': None, 'email_address': 'questionsorcomments@techmeme.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 19 05:06:39 UTC 2007', 'updated_at': 'Wed May 08 06:09:21 UTC 2013', 'overview': '

Techmeme, “the favorite news website of technology industry insiders” (Bloomberg) and “one of the first Web sites loaded on Silicon Valley’s laptops and iPhones each morning” (NYT), is the tech industry’s leading news aggregator. Introduced in 2005, the company added Mediagazer in 2010 to track media news. Other verticals include memeorandum (politics) and WeSmirch (celebrity news).

\\n\\n

Operating originally as Google News-style fully-automated news aggregators, the company blended in human editors to the curation process at Techmeme and Mediagazer beginning in 2008. Its staff now includes nine news editors.

\\n\\n

Techmeme has taken no outside investment, and is supported through revenues from sponsored blog posts, hiring promos, and event listings.

\\n\\n

Techmeme won two Crunchies (2007 and 2012), both for “Best Bootstrapped Startup”.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0000/3553/3553v1-max-150x150.jpg'], [[250, 66], 'assets/images/resized/0000/3553/3553v1-max-250x250.jpg'], [[281, 75], 'assets/images/resized/0000/3553/3553v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'TechMeme', 'permalink': 'techmeme'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Gabe', 'last_name': 'Rivera', 'permalink': 'gabe-rivera'}}, {'is_past': True, 'title': 'Editor', 'person': {'first_name': 'E.J', 'last_name': 'Kalafarski', 'permalink': 'e-j-kalafarski'}}], 'competitions': [{'competitor': {'name': 'Spinn3r', 'permalink': 'tailrank'}}, {'competitor': {'name': 'BuzzFeed', 'permalink': 'buzzfeed'}}, {'competitor': {'name': 'Silobreaker', 'permalink': 'silobreaker'}}, {'competitor': {'name': 'Newspond', 'permalink': 'newspond'}}, {'competitor': {'name': 'Pressflip', 'permalink': 'pressflip'}}, {'competitor': {'name': 'Naubo', 'permalink': 'naubo'}}, {'competitor': {'name': 'iKnowlej', 'permalink': 'iknowlej'}}, {'competitor': {'name': 'nobosh', 'permalink': 'nobosh'}}, {'competitor': {'name': 'Feedego', 'permalink': 'feedego'}}, {'competitor': {'name': 'RatherGather', 'permalink': 'rathergather'}}, {'competitor': {'name': 'OneSpot', 'permalink': 'onespot'}}, {'competitor': {'name': 'TechFuga', 'permalink': 'techfuga'}}, {'competitor': {'name': 'Newser', 'permalink': 'newser'}}, {'competitor': {'name': 'LAUNCH Ticker', 'permalink': 'launch-ticker'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7618242, 'longitude': -122.3985871}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://go.bloomberg.com/tech-deals/2012-12-04-no-vc-why-techmemes-gabe-rivera-resists-investors/', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2b'), 'name': 'Ujogo', 'permalink': 'ujogo', 'crunchbase_url': 'http://www.crunchbase.com/company/ujogo', 'homepage_url': 'http://ujogo.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'ujogo', 'category_code': 'web', 'number_of_employees': 6, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2012, 'deadpooled_month': 1, 'deadpooled_day': 11, 'deadpooled_url': '', 'tag_list': 'ujogo', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Fri Jul 20 01:57:42 UTC 2007', 'updated_at': 'Mon Oct 07 09:11:55 UTC 2013', 'overview': '

Founded in 2006, Ujogo.com is a rewards-based free online games site. They’re trying to differentiate themselves from other free game sites by giving users points for time spent playing, which can later be redeemed for prizes. Ujogo can afford to give away these prizes due to money made from ads shown during games.

\\n\\n

Jul 19, 2007 was a big day for the San Francisco based site. They announced the launch of their public beta, a round of Series A funding and the acquisition of game developer Gaming Everywhere.

\\n\\n

It is unknown how long the site will be in public beta. Ujogo still has a long way to go with only one game currently available and no way to redeem points yet.

', 'image': {'available_sizes': [[[150, 76], 'assets/images/resized/0000/3610/3610v1-max-150x150.jpg'], [[165, 84], 'assets/images/resized/0000/3610/3610v1-max-250x250.jpg'], [[165, 84], 'assets/images/resized/0000/3610/3610v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Ujogo', 'permalink': 'ujogo'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder & COO', 'person': {'first_name': 'Steven', 'last_name': 'Sheinfield', 'permalink': 'steven-sheinfield'}}, {'is_past': False, 'title': 'Co-Founder & CIO', 'person': {'first_name': 'Doug', 'last_name': 'Sheppard', 'permalink': 'doug-sheppard'}}, {'is_past': False, 'title': 'VP, Sales and Marketing', 'person': {'first_name': 'Don', 'last_name': 'Cerullo', 'permalink': 'don-cerullo'}}, {'is_past': True, 'title': 'Founder, President & CEO', 'person': {'first_name': 'Eric', 'last_name': 'Gonzales', 'permalink': 'eric-gonzales'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 200, 'round_code': 'a', 'source_url': 'http://www.marketwirecanada.com/2.0/release.do?id=752801', 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.76785, 'longitude': -122.392861}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': ''}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2c'), 'name': 'Recipezaar', 'permalink': 'recipezaar', 'crunchbase_url': 'http://www.crunchbase.com/company/recipezaar', 'homepage_url': 'http://www.recipezaar.com', 'blog_url': 'http://www.recipezaar.com/sitenews/', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 5, 'founded_year': 1999, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'recipes, recipezaar, cooking, cookpoint', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Jul 20 03:47:19 UTC 2007', 'updated_at': 'Tue Feb 14 08:27:43 UTC 2012', 'overview': '

Launched in December 1999, Recipezaar (originally Cookpoint.com) is an online community for people who like to cook. The site was started by two former Microsoft employees in Seattle. Users have posted hundreds of thousands of recipes to the site and hundreds more are added each day.

\\n\\n

The company has been profitable since 2002 and never took outside funding. On July 19, 2007 Recipezaar was acquired by Scripps Networks (a division of the The E.W. Scripps Company) for a rumored $25 million. Scripps is the company behind HGTV and the Food Network. They’ve said that Recipezaar will function separate from, but as a complement to FoodNetwork.com.

\\n\\n

Recipezaar reported 2.3 million unique visitors in June 2007, which combined with FoodNetwork.com’s visitors will increase Scripps Networks’ audience share to 19 percent.

\\n\\n

In 2010, Scripps Networks rebranded RecipeZaar as Food.com, and phased out the RecipeZaar.com brand. RecipeZaar now redirects to Food.com.

\\n\\n

Other cooking/recipe sites include AllRecipes, Snacksby and Google Recipes (part of Google Base).

', 'image': {'available_sizes': [[[147, 100], 'assets/images/resized/0000/3613/3613v1-max-150x150.jpg'], [[147, 100], 'assets/images/resized/0000/3613/3613v1-max-250x250.jpg'], [[147, 100], 'assets/images/resized/0000/3613/3613v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Recipezaar', 'permalink': 'recipezaar'}], 'relationships': [{'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Gay', 'last_name': 'Gilmore', 'permalink': 'gay-gilmore'}}, {'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Troy', 'last_name': 'Hakala', 'permalink': 'troy-hakala'}}], 'competitions': [{'competitor': {'name': 'Cookthink', 'permalink': 'cookthink'}}, {'competitor': {'name': 'FamilyOven', 'permalink': 'familyoven'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://blog.seattlepi.nwsource.com/venture/archives/118242.asp', 'source_description': 'seatlepi.com', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'Scripps Networks Interactive', 'permalink': 'scripps-networks-interactive'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'P.O. Box 1749', 'address2': None, 'zip_code': '98070', 'city': 'Vashon', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.420728, 'longitude': -122.450942}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2d'), 'name': 'Gumiyo', 'permalink': 'gumiyo', 'crunchbase_url': 'http://www.crunchbase.com/company/gumiyo', 'homepage_url': 'http://www.gumiyo.com', 'blog_url': 'http://blog.gumiyo.com', 'blog_feed_url': 'http://blog.gumiyo.com/feeds/posts/default?alt=rss', 'twitter_username': 'Gumiyo', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, publishing, platform, saas, cloud', 'alias_list': '', 'email_address': 'contact@gumiyo.com', 'phone_number': '8184714000', 'description': '', 'created_at': 'Tue Feb 05 22:28:18 UTC 2008', 'updated_at': 'Sat May 18 10:02:02 UTC 2013', 'overview': '

Gumiyo enables publishers and businesses to connect with consumers on any device. The company’s cloud-hosted platform includes authoring tools that power more than 45,000 mobile sites, apps, and messaging programs for leading publishers, media companies, and software vendors worldwide. Integrating over 6,000 separate data sources including inventory systems, content management systems, CRM and ERP systems, Gumiyo’s platform enables its customers to build and distribute private label mobile solutions to over 150,000 small- and medium-sized businesses in a scalable and cost-effective way.

\\n\\n

Gumiyo operates across a number of industries, including traditional and digital publishers, broadcast media, automotive, real estate, local business and brand marketing.

\\n\\n

The company was founded in 2006 with corporate headquarters in Woodland Hills, CA.

', 'image': {'available_sizes': [[[150, 64], 'assets/images/resized/0000/3616/3616v6-max-150x150.jpg'], [[250, 107], 'assets/images/resized/0000/3616/3616v6-max-250x250.jpg'], [[342, 147], 'assets/images/resized/0000/3616/3616v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Gumiyo.com', 'permalink': 'gumiyo-com'}], 'relationships': [{'is_past': False, 'title': 'Board Chairman', 'person': {'first_name': 'Chuck', 'last_name': 'Abronson', 'permalink': 'chuck-abronson'}}, {'is_past': False, 'title': 'Co - Founder & CEO', 'person': {'first_name': 'Shuki', 'last_name': 'Lehavi', 'permalink': 'shuki-lehavi'}}, {'is_past': False, 'title': 'Co - Founder & VP, Marketing', 'person': {'first_name': 'Richard', 'last_name': 'Abronson', 'permalink': 'richard-abronson'}}, {'is_past': False, 'title': 'Director, Sales', 'person': {'first_name': 'Tim', 'last_name': 'Repsher', 'permalink': 'tim-repsher'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Harvey', 'last_name': 'Olifson', 'permalink': 'harvey-olifson'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bob', 'last_name': 'Hawk', 'permalink': 'bob-hawk'}}, {'is_past': False, 'title': 'Director, Account Management', 'person': {'first_name': 'Jim', 'last_name': 'Justinich', 'permalink': 'jim-justinich'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Yuri', 'last_name': 'Pikover', 'permalink': 'yuri-pikover'}}, {'is_past': True, 'title': 'VP, Operations', 'person': {'first_name': 'Fabian', 'last_name': 'Schonholz', 'permalink': 'fabian-schonholz'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 1011, 'round_code': 'seed', 'source_url': 'http://biz.yahoo.com/bw/071030/20071030005082.html?.v=1', 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '21021 Ventura Blvd.', 'address2': 'Suite 220', 'zip_code': '91364', 'city': 'Woodland Hills', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.184598, 'longitude': -118.601532}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e2e'), 'name': 'stylediary', 'permalink': 'stylediary', 'crunchbase_url': 'http://www.crunchbase.com/company/stylediary', 'homepage_url': 'http://www.stylediary.net', 'blog_url': 'http://www.industrygirlblog.com', 'blog_feed_url': 'http://www.industrygirlblog.com/?feed=rss2', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2004, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Feb 05 22:28:18 UTC 2008', 'updated_at': 'Sat May 09 19:34:01 UTC 2009', 'overview': '

Niche fashion social media company.

', 'image': {'available_sizes': [[[150, 45], 'assets/images/resized/0000/3619/3619v1-max-150x150.png'], [[250, 75], 'assets/images/resized/0000/3619/3619v1-max-250x250.png'], [[265, 80], 'assets/images/resized/0000/3619/3619v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'stylediary', 'permalink': 'stylediary'}], 'relationships': [{'is_past': None, 'title': 'founder/ceo', 'person': {'first_name': 'Patricia', 'last_name': 'Handschiegel', 'permalink': 'patricia-handschiegel'}}, {'is_past': True, 'title': 'Partner', 'person': {'first_name': 'William', 'last_name': 'Wicks', 'permalink': 'william-kapke'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'JMP Securities', 'acquired_year': 2007, 'acquired_month': 12, 'acquired_day': None, 'acquiring_company': {'name': 'Stylehive', 'permalink': 'stylehive'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': None, 'zip_code': '90036', 'city': '', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.070436, 'longitude': -118.350486}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3560/43560v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3560/43560v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3560/43560v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e34'), 'name': 'Piczo', 'permalink': 'piczo', 'crunchbase_url': 'http://www.crunchbase.com/company/piczo', 'homepage_url': 'http://www.piczo.com', 'blog_url': 'http://officialpiczoblog.piczo.com/', 'blog_feed_url': 'http://officialpiczoblog.piczo.com/', 'twitter_username': 'piczo', 'category_code': 'network_hosting', 'number_of_employees': None, 'founded_year': 1990, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialnetwork, teenagers, uk, tevinakahypo, playboy, sarse, xxhollienkeeleyxx-piczo-com, www-ilovejayloads-piczo-com', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Fri Jul 20 06:52:48 UTC 2007', 'updated_at': 'Tue Mar 19 10:26:22 UTC 2013', 'overview': '

Few websites can say that they emerged from 100 emails sent to potential users and word of mouth. Even fewer can say that from those 100 emails came 10 million unique visitors a day. Such is the story of the creation of Piczo.com, a social networking site aimed at young teens. Piczo presents itself as the safer alternative to other social networking sites like Facebook, Myspace, and Friendster. This emphasis on safety is due to heavy involvement by WiredSafety and the Child Exploiation and Online Protection Agency. In 2007, Piczo announced $11 Million in Series C funding, primarily by U.S. Venture Partners and Mangrove Capital. In September 2009 Piczo changed is design to a more girlish design thinking that it would increase it’s users, but it only made things worse, both sex’s rebelled against this change and still to this day Piczo hasn’t regretted changing although many of it’s users are now switching to alternatives such as Weebly and Webs.

\\n\\n

(Updated on 1st September 2010 by Mongrels

', 'image': {'available_sizes': [[[130, 95], 'assets/images/resized/0002/7314/27314v45-max-150x150.png'], [[130, 95], 'assets/images/resized/0002/7314/27314v45-max-250x250.png'], [[130, 95], 'assets/images/resized/0002/7314/27314v45-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Piczo', 'permalink': 'piczo'}], 'relationships': [{'is_past': True, 'title': 'Founder, CTO, VP Engineering', 'person': {'first_name': 'Jim', 'last_name': 'Conning', 'permalink': 'jim-conning'}}, {'is_past': True, 'title': 'CEO and President', 'person': {'first_name': 'Jeremy', 'last_name': 'Verba', 'permalink': 'jeremy-verba'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Sandy', 'last_name': 'Khaund', 'permalink': 'sandy-khaund'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Peter', 'last_name': 'Van Pruissen', 'permalink': 'peter-van-pruissen'}}, {'is_past': True, 'title': 'VP of Products and Marketing', 'person': {'first_name': 'Jeanine', 'last_name': 'LeFlore', 'permalink': 'jeanine-leflore'}}, {'is_past': True, 'title': 'VP North American Sales', 'person': {'first_name': 'Derek', 'last_name': 'Rudd', 'permalink': 'derek-rudd'}}, {'is_past': True, 'title': 'CRO', 'person': {'first_name': 'Geoff', 'last_name': 'Judge', 'permalink': 'geoff-judge'}}, {'is_past': True, 'title': 'Creative / UX Lead', 'person': {'first_name': 'Joel', 'last_name': 'Marsh', 'permalink': 'joel-marsh'}}, {'is_past': True, 'title': 'Advisory Board Member', 'person': {'first_name': 'Jeanine', 'last_name': 'LeFlore', 'permalink': 'jeanine-leflore'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Bryan', 'last_name': 'Bennett', 'permalink': 'bryan-bennett'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Peter', 'last_name': 'Van Pruissen', 'permalink': 'peter-van-pruissen'}}], 'competitions': [{'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}, {'competitor': {'name': 'hi5', 'permalink': 'hi5'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Friendster', 'permalink': 'friendster'}}], 'providerships': [], 'total_money_raised': '$11M', 'funding_rounds': [{'id': 1476, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2007/01/17/piczo-raises-11-million/', 'source_description': 'Piczo Raises $11 million', 'raised_amount': 11000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'US Venture Partners', 'permalink': 'us-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.marketingvox.com/stardoll-piczo-to-merge-operations-043443/', 'source_description': 'Stardoll, Piczo to Merge Operations', 'acquired_year': None, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'Stardoll', 'permalink': 'stardoll'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '150 California Street', 'address2': 'Suite 1000', 'zip_code': '94111', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.793703, 'longitude': -122.398479}], 'milestones': [{'id': 18113, 'description': 'Piczo merges with Stardoll.', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.marketingvox.com/stardoll-piczo-to-merge-operations-043443/', 'source_text': '', 'source_description': 'Stardoll, Piczo to Merge Operations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Piczo', 'permalink': 'piczo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0010/0245/100245v2-max-150x150.png'], [[250, 156], 'assets/images/resized/0010/0245/100245v2-max-250x250.png'], [[450, 281], 'assets/images/resized/0010/0245/100245v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e37'), 'name': 'Cyworld', 'permalink': 'cyworld', 'crunchbase_url': 'http://www.crunchbase.com/company/cyworld', 'homepage_url': 'http://us.cyworld.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'cyworld', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Social Network', 'created_at': 'Fri Jul 20 09:34:30 UTC 2007', 'updated_at': 'Fri Mar 15 21:08:14 UTC 2013', 'overview': '

South Korea’s most popular social networking site, Cyworld, has now brought a version of its site to the US. Founded in 1999, Cyworld was bought in 2003 by SK Telecom, Korea’s primary provider of mobile telecommunications. Since then Cyworld has experienced rapid growth, becoming a social networking phenomenon in South Korea. In fact, Cyworld has claimed more than one third of Korea’s entire population as members, while achieving incredible penetration of Korea’s young adult market: 90% of Koreans in their 20s are members of Cyworld.

\\n\\n

Cyworld - US version - lets users sign up and create their own profile (called a Minihome in Cyworld) and their own avatar (Minime) for free. You can then personalize your avatar, design a Miniroom, meet new people, stay in touch with friends, send messages, upload photos, exchange gifts, and more. Essentially, Cyworld allows users to create their own personalized cyber-lives through which they can live vicariously, express themselves, and connect with friends.

\\n\\n

The company has recently expanded its social networking site to other countries including China, Taiwan, Japan, and now the US. It is sure to face steep competition from US social networking giants MySpace and Facebook, and will face difficulty luring away US users who have been long-entrenched in their familiar social networks. It will be interesting to see whether Cyworld’s great success in Asia can translate to success in the US.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0002/2359/22359v3-max-150x150.jpg'], [[250, 68], 'assets/images/resized/0002/2359/22359v3-max-250x250.jpg'], [[294, 81], 'assets/images/resized/0002/2359/22359v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Cyworld', 'permalink': 'cyworld'}], 'relationships': [{'is_past': True, 'title': 'Board, CEO', 'person': {'first_name': 'Henry', 'last_name': 'Chon', 'permalink': 'henry-chon'}}], 'competitions': [{'competitor': {'name': 'Linden Lab', 'permalink': 'secondlife'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'competitor': {'name': 'Xiaonei', 'permalink': 'xiaonei'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 7140000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessweek.com/magazine/content/05_39/b3952405.htm', 'source_description': 'E-Society: My World Is Cyworld', 'acquired_year': 2003, 'acquired_month': 8, 'acquired_day': 5, 'acquiring_company': {'name': 'SK Telecom', 'permalink': 'sktelecom'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'Lim Kwang B/D, 257', 'address2': 'Migeun-dong, Seodaemun-gu', 'zip_code': '120-020', 'city': 'Seoul', 'state_code': None, 'country_code': 'KOR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 243, 'description': 'muvee and Cyworld Announce Collaboration and New Service', 'stoned_year': 2008, 'stoned_month': 7, 'stoned_day': 18, 'source_url': 'http://www.socialmediaportal.com/PressReleases/2008/07/muvee-and-Cyworld-Announce-Collaboration-and-New-Service.aspx', 'source_text': ' Singapore, Korea, and San Francisco (PRWEB) -- muvee Technologies Pte Ltd, the pioneer and leader in automatic video editing, and Cyworld, South Korea\\'s largest social networking site, today announced a new video editing service for Cyworld members. This new offering, which puts the power of muvee\\'s patented technology in the hands of Cyworld\\'s more than 20 million users, allows consumers to add music and unique styles to their videos and photos and create emotionally engaging muvees to share with their online friends and family. Cyworld users will ultimately have access to hundreds of online editing styles, which they can use with Cyworld credits called dotoris to automatically create muvees and then easily display on their mini Hompy (Home Pages).\\r\\n\\r\\n\"Years before the term \\'Web 2.0\\' was coined in the West, Korea had already been at the forefront of what we now call social media and virtual worlds,\" said Terence Swee, CEO of muvee. \"muvee is proud to be Cyworld\\'s chosen platform provider for a service that can both satisfy the ease of use and interactivity demands of discerning Korean internet consumers, and match the scale of Cyworld\\'s service level requirements. This partnership is a strategic addition to our internet business, which complements global partners we have in the PC and mobile space.\"\\r\\n\\r\\nmuvee\\'s goal is to help people to relive and share their special moments -- the planned, the unexpected, and everything in between. While Cyworld members can already share their personal media in its original form, they now have the opportunity to create something fun and new that will add an exciting twist and change the way they can express themselves.\\r\\n\\r\\nA recent study by the Organization for Economic Co-Operation and Development (OEDC) found that South Korea has the world\\'s highest household broadband penetration. South Korea is also known to have the most advanced mobile cellular network in the world. This has helped the South Korean population to become the most advanced consumers of social networking services both online and on mobile wireless networks.\\r\\n\\r\\nThe muvee making service is available today at www.cyworld.com.\\r\\n\\r\\nAbout muvee\\r\\nmuvee\\'s software and services feature patented technology that lets people create and share professional-quality instant home movies out of unedited video, digital pictures and music. muvee develops consumer products for a range of platforms and devices including PCs, digital cameras, mobile phones and photo kiosks. muvee\\'s global customers include HP, Dell, Nokia, LG, Sony, Olympus, Nikon and Creative Technology. Visit www.muvee.com for more information. ', 'source_description': 'muvee and Cyworld Announce Collaboration and New Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cyworld', 'permalink': 'cyworld'}}, {'id': 2462, 'description': 'Cyworld Shutting Down U.S. Service; So Much For $110 Million Earmark', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 5, 'source_url': 'http://paidcontent.org/article/419-cyworld-shutting-down-u.s.-service-so-much-for-110-million-earmark/', 'source_text': '', 'source_description': 'paidContent', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cyworld', 'permalink': 'cyworld'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 143], 'assets/images/resized/0013/6309/136309v2-max-150x150.jpg'], [[250, 239], 'assets/images/resized/0013/6309/136309v2-max-250x250.jpg'], [[450, 430], 'assets/images/resized/0013/6309/136309v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://anonymx.com/category/0DAY/', 'title': '0DAY'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e3b'), 'name': 'Socialtext', 'permalink': 'socialtext', 'crunchbase_url': 'http://www.crunchbase.com/company/socialtext', 'homepage_url': 'http://www.socialtext.com', 'blog_url': 'http://www.socialtext.com/blog', 'blog_feed_url': '', 'twitter_username': 'Socialtext', 'category_code': 'enterprise', 'number_of_employees': 50, 'founded_year': 2002, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'wiki, socialsoftware, socialnetworking, social-networking, social-software, collaboration, enterprise2-0', 'alias_list': '', 'email_address': 'sales@socialtext.com', 'phone_number': '650-323-0800', 'description': 'Enterprise Social Software/Collaboration', 'created_at': 'Fri Jul 20 12:39:45 UTC 2007', 'updated_at': 'Tue Dec 31 13:29:04 UTC 2013', 'overview': '

Established in 2002, Socialtext, a Bedford Funding portfolio company, was the first company to deliver social software to businesses. By unlocking knowledge, expertise, ideas and data, Socialtext eliminates information silos across the enterprise to drive superior business performance. Socialtext’s enterprise social networking products — including microblogging, blogs, wikis, profiles and social spreadsheets — provide simpler ways for employees to share vital information and work together in real-time. Delivered in a variety of hosted cloud services, as well as on-site appliances, enterprise customers are provided with flexible deployment options that meet their security requirements. Built on a flexible, web-oriented architecture, Socialtext integrates with virtually any traditional system of record, such as CRM and ERP, enabling companies to discuss, collaborate, and take action on key business processes. More than 6,500 businesses worldwide have accelerated their business performance with Socialtext, including Getty Images, Symantec, Meredith Corporation, NYU Stern, OSIsoft, and Epitaph Records.

', 'image': {'available_sizes': [[[150, 34], 'assets/images/resized/0000/3673/3673v1-max-150x150.png'], [[165, 38], 'assets/images/resized/0000/3673/3673v1-max-250x250.png'], [[165, 38], 'assets/images/resized/0000/3673/3673v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Socialtext Workspaces', 'permalink': 'socialtext'}, {'name': 'Socialtext People', 'permalink': 'socialtext-people'}, {'name': 'Socialtext Dashboard', 'permalink': 'socialtext-dashboard'}, {'name': 'Socialtext Desktop', 'permalink': 'socialtext-desktop'}, {'name': 'Socialcalc', 'permalink': 'socialcalc'}, {'name': 'Socialtext Signals (Microblogging)', 'permalink': 'socialtext-signals-microblogging'}], 'relationships': [{'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Doug', 'last_name': 'Ring', 'permalink': 'doug-ring'}}, {'is_past': False, 'title': 'VP Engineering', 'person': {'first_name': 'Shampa', 'last_name': 'Banerjee', 'permalink': 'shampa-banerjee'}}, {'is_past': False, 'title': 'SocialCalc Product Lead', 'person': {'first_name': 'Dan', 'last_name': 'Bricklin', 'permalink': 'dan-bricklin'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Mike', 'last_name': 'Lewis', 'permalink': 'mike-lewis-6'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Timothy', 'last_name': 'Draper', 'permalink': 'timothy-draper'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Eugene', 'last_name': 'Lee', 'permalink': 'eugene-lee'}}, {'is_past': True, 'title': 'Co-founder/VP of Products', 'person': {'first_name': 'Adina', 'last_name': 'Levin', 'permalink': 'adina-levin'}}, {'is_past': True, 'title': 'Co-founder/Chairman/President', 'person': {'first_name': 'Ross', 'last_name': 'Mayfield', 'permalink': 'ross-mayfield'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Britta', 'last_name': 'Meyer', 'permalink': 'britta-meyer'}}, {'is_past': True, 'title': 'General Manager and Chief Customer Officer', 'person': {'first_name': 'Michael', 'last_name': 'Idinopulos', 'permalink': 'michael-idinopolus'}}, {'is_past': True, 'title': 'Co-founder/CTO', 'person': {'first_name': 'Peter', 'last_name': 'Kaminski', 'permalink': 'peter-kaminski'}}, {'is_past': True, 'title': 'VP of Sales', 'person': {'first_name': 'Brian', 'last_name': 'Bailard', 'permalink': 'brian-bailard'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Peter', 'last_name': 'Allen', 'permalink': 'peter-allen'}}, {'is_past': True, 'title': 'VP of Sales', 'person': {'first_name': 'Kris', 'last_name': 'Duggan', 'permalink': 'kris-duggan'}}, {'is_past': True, 'title': 'VP of Business Development', 'person': {'first_name': 'Paul', 'last_name': 'Wescott', 'permalink': 'paul-wescott'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jimmy', 'last_name': 'Wales', 'permalink': 'jimmy-wales-2'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Alan', 'last_name': 'Lepofsky', 'permalink': 'alan-lepofsky'}}, {'is_past': True, 'title': 'Advisory Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Gruber', 'permalink': 'tom-gruber'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Joi', 'last_name': 'Ito', 'permalink': 'joi-ito'}}, {'is_past': True, 'title': 'Board or Directors', 'person': {'first_name': 'Julie', 'last_name': 'Hanna', 'permalink': 'julie-hanna-ferris'}}, {'is_past': True, 'title': 'Observer', 'person': {'first_name': 'Joel', 'last_name': 'Yarmon', 'permalink': 'joel-yarmon'}}, {'is_past': True, 'title': 'Director, Marketing', 'person': {'first_name': 'Sandra', 'last_name': 'Ponce De Leon', 'permalink': 'sandra-ponce-de-leon'}}], 'competitions': [{'competitor': {'name': 'PBworks', 'permalink': 'pbworks'}}, {'competitor': {'name': 'JotSpot', 'permalink': 'jotspot'}}, {'competitor': {'name': 'Wetpaint', 'permalink': 'wetpaint'}}, {'competitor': {'name': 'Yammer', 'permalink': 'yammer'}}, {'competitor': {'name': 'Jive Software', 'permalink': 'jive-software'}}, {'competitor': {'name': 'Qontext', 'permalink': 'qontext'}}, {'competitor': {'name': 'Hall', 'permalink': 'hall-com'}}, {'competitor': {'name': 'Optini', 'permalink': 'optini'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'AIIM', 'permalink': 'aiim'}}], 'total_money_raised': '$46.8M', 'funding_rounds': [{'id': 212, 'round_code': 'angel', 'source_url': 'http://www.forbes.com/forbes/2004/0621/062a_print.html', 'source_description': 'Veni, Vidi ...Wiki?', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 213, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/socialtext-raised-31-million-in-series-b-funding/', 'source_description': 'Socialtext Raised $3.1 Million In Series B Funding ', 'raised_amount': 3100000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SAP Ventures', 'permalink': 'sap-ventures'}, 'person': None}]}, {'id': 1025, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/11/04/socialtext-offers-social-software-to-big-companies-raises-cash/', 'source_description': '', 'raised_amount': 9500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SAP Ventures', 'permalink': 'sap-ventures'}, 'person': None}]}, {'id': 5510, 'round_code': 'd', 'source_url': 'http://www.pehub.com/36250/socialtext-raises-fourth-round/', 'source_description': 'Socialtext Raises Fourth Round', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Omidyar Network', 'permalink': 'omidyar-network'}, 'person': None}, {'company': None, 'financial_org': {'name': 'University of Utah Endowment', 'permalink': 'university-of-utah-endowment'}, 'person': None}]}, {'id': 9137, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'Draper via TC', 'raised_amount': 1700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}]}, {'id': 29673, 'round_code': 'unattributed', 'source_url': 'http://www.marketwatch.com/story/bedford-funding-invests-in-socialtext-2012-05-01', 'source_description': 'Bedford Funding Invests in Socialtext', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': {'name': 'Bedford Funding', 'permalink': 'bedford-funding'}, 'financial_org': None, 'person': None}]}, {'id': 59670, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1454103/000145410310000004/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 27670000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 7, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '655 High Street', 'address2': None, 'zip_code': '94301', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.442949, 'longitude': -122.1615}], 'milestones': [{'id': 733, 'description': 'Launched Socialtext 3.0', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 30, 'source_url': 'http://www.socialtext.com/blog/2008/09/introducing-socialtext-30.html', 'source_text': None, 'source_description': 'Introducing Socialtext 3.0', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1795, 'description': 'Socialtext Unveils Free Enterprise 2.0 Offering Aimed at Mainstream Use; Social Spreadsheet Enters Public Beta', 'stoned_year': 2009, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://www.socialtext.com/blog/2009/06/socialtext-unveils-free-enterp.html', 'source_text': None, 'source_description': 'Free Enterprise 2.0 Offering, Social Spreadsheet', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1815, 'description': 'Launched Microblogging Appliance and Desktop Download', 'stoned_year': 2009, 'stoned_month': 3, 'stoned_day': 3, 'source_url': 'http://www.techcrunch.com/2009/03/03/socialtext-adds-twitter-like-signals-and-a-desktop-air-app/', 'source_text': None, 'source_description': 'Socialtext Adds Twitter-like “Signalsâ€\\x9d And a Desktop AIR App', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1816, 'description': 'Socialtext hires CEO Eugene Lee', 'stoned_year': 2007, 'stoned_month': 11, 'stoned_day': 6, 'source_url': 'http://www.venturedeal.com/News/2007/11/6/SocialText-Raises-New-Funding-And-Hires-CEO', 'source_text': None, 'source_description': 'SocialText Raises New Funding And Hires CEO', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}, {'id': 1817, 'description': 'Socialtext Releases Signals Micro-blogging Application for the Enterprise', 'stoned_year': 2009, 'stoned_month': 7, 'stoned_day': 14, 'source_url': 'http://www.socialtext.com/news/pressrelease_2009.03.03.php', 'source_text': None, 'source_description': 'Socialtext Releases Signals Micro-blogging Application for the Enterprise', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Socialtext', 'permalink': 'socialtext'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Overview of Socialtext enterprise social software platform.

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0011/0307/110307v2-max-150x150.png'], [[250, 157], 'assets/images/resized/0011/0307/110307v2-max-250x250.png'], [[450, 284], 'assets/images/resized/0011/0307/110307v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 94], 'assets/images/resized/0011/0349/110349v2-max-150x150.png'], [[250, 157], 'assets/images/resized/0011/0349/110349v2-max-250x250.png'], [[450, 284], 'assets/images/resized/0011/0349/110349v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e41'), 'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere', 'crunchbase_url': 'http://www.crunchbase.com/company/connectmeanywhere', 'homepage_url': 'http://www.connectmeanywhere.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Sat Jul 21 09:25:55 UTC 2007', 'updated_at': 'Fri May 23 23:50:30 UTC 2008', 'overview': '

Husband and Wife team Ryan and Melinda Gallagher founded ConnectMeAnywhere.com, a VOIP service which launched in September of 2006. CMA provides users with a list of locally accessed VOIP access numbers, enabling calls all over the world to be treated as local calls with VOIP connections.

', 'image': {'available_sizes': [[[150, 19], 'assets/images/resized/0000/3691/3691v1-max-150x150.jpg'], [[250, 32], 'assets/images/resized/0000/3691/3691v1-max-250x250.jpg'], [[348, 45], 'assets/images/resized/0000/3691/3691v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'ConnectMeAnywhere', 'permalink': 'connectmeanywhere'}], 'relationships': [{'is_past': None, 'title': 'Founder & Communications Director', 'person': {'first_name': 'Bellinda', 'last_name': 'Gallagher', 'permalink': 'bellinda-gallagher'}}, {'is_past': None, 'title': 'Business Development Director', 'person': {'first_name': 'Andrew', 'last_name': 'Skates', 'permalink': 'andrew-skates'}}, {'is_past': True, 'title': 'Founder & CEO', 'person': {'first_name': 'Ryan', 'last_name': 'Gallagher', 'permalink': 'ryan-gallagher'}}, {'is_past': True, 'title': 'Development and Architecture', 'person': {'first_name': 'Mark', 'last_name': 'Carbonaro', 'permalink': 'mark-carbonaro'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Donegan', 'permalink': 'dan-donegan'}}], 'competitions': [{'competitor': {'name': 'barablu', 'permalink': 'barablu'}}, {'competitor': {'name': 'Gizmo5', 'permalink': 'gizmofive'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Skype', 'permalink': 'skype'}}, {'competitor': {'name': 'Truphone', 'permalink': 'truphone'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '14 Elgin Crescent', 'address2': None, 'zip_code': None, 'city': 'London W11 2HX', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.514935, 'longitude': -0.205349}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e44'), 'name': 'hi5', 'permalink': 'hi5', 'crunchbase_url': 'http://www.crunchbase.com/company/hi5', 'homepage_url': 'http://hi5.com', 'blog_url': 'http://www.hi5networks.com/blog/', 'blog_feed_url': 'http://feeds.feedburner.com/Hi5Blog', 'twitter_username': 'hi5', 'category_code': 'games_video', 'number_of_employees': 100, 'founded_year': 2003, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'hi5, socialnetworking, musicnetwork, youyu', 'alias_list': '', 'email_address': 'info@hi5.com', 'phone_number': '415.404.6094', 'description': '', 'created_at': 'Mon Jul 23 14:18:40 UTC 2007', 'updated_at': 'Tue Mar 12 06:47:55 UTC 2013', 'overview': '

Founded in 2003, hi5 today is one of the largest social entertainment\\nsites in the world, with approximately 50 million monthly unique\\nvisitors who use the site to stay connected to friends, meet new people,\\nshare photos, and play games. Available in over 50 languages, hi5\\ncombines ad-supported social networking features with payment-based\\npremium content to deliver a user experience focused on self-expression\\nand interactivity that appeals to the site’s young demographic (67% of\\nusers are age 18-34). Social games, virtual goods, and other premium\\ncontent on the site is monetized through hi5 Coins, a virtual currency\\nsupporting over 60 payment methods and 30 currencies worldwide. The site\\nalso supports third-party games and other applications through its\\nOpenSocial platform.

', 'image': {'available_sizes': [[[150, 76], 'assets/images/resized/0001/5722/15722v71-max-150x150.jpg'], [[250, 127], 'assets/images/resized/0001/5722/15722v71-max-250x250.jpg'], [[305, 156], 'assets/images/resized/0001/5722/15722v71-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'hi5', 'permalink': 'hi5'}], 'relationships': [{'is_past': False, 'title': 'Founder & Director', 'person': {'first_name': 'Ramu', 'last_name': 'Yalamanchi', 'permalink': 'ramu-yalamanchi'}}, {'is_past': False, 'title': 'President & CTO', 'person': {'first_name': 'Alex', 'last_name': 'St. John', 'permalink': 'alex-st-john'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Jeff', 'last_name': 'Stephens', 'permalink': 'jeff-stephens'}}, {'is_past': False, 'title': 'VP Marketing', 'person': {'first_name': 'Michael', 'last_name': 'Trigg', 'permalink': 'michael-trigg'}}, {'is_past': False, 'title': 'Co-Founder & Director', 'person': {'first_name': 'Akash', 'last_name': 'Garg', 'permalink': 'akash-garg'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Karen', 'last_name': 'Richardson', 'permalink': 'karen-richardson'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bill', 'last_name': 'Gossman', 'permalink': 'bill-gossman'}}, {'is_past': True, 'title': 'VP hi5 Mobile', 'person': {'first_name': 'Noelia', 'last_name': 'Amoedo', 'permalink': 'noelia-amoedo'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Anil', 'last_name': 'Dharni', 'permalink': 'anil-dharni'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Brett', 'last_name': 'Blair', 'permalink': 'brett-blair'}}, {'is_past': True, 'title': 'Director, User Experience and Front End Engineering', 'person': {'first_name': 'Michael', 'last_name': 'Holzer', 'permalink': 'michael-holzer'}}, {'is_past': True, 'title': 'Executive Producer', 'person': {'first_name': 'Andrew', 'last_name': 'Sheppard', 'permalink': 'andrew-sheppard'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Kate', 'last_name': 'Pietrelli', 'permalink': 'kate-pietrelli'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Charles', 'last_name': 'Ying', 'permalink': 'charles-ying'}}, {'is_past': True, 'title': 'Senior Interaction Designer / Design Lead', 'person': {'first_name': 'Michael', 'last_name': 'Owens', 'permalink': 'michael-owens'}}, {'is_past': True, 'title': 'Online Community', 'person': {'first_name': 'Siko', 'last_name': 'Bouterse', 'permalink': 'siko-bouterse'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Nuno', 'last_name': 'Peralta', 'permalink': 'nuno-peralta'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Fabio', 'last_name': 'Serpa', 'permalink': 'fabio-serpa'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Basel', 'last_name': 'Nimer', 'permalink': 'basel-nimer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Anurag (Anu)', 'last_name': 'Nigam', 'permalink': 'anurag-nigam'}}, {'is_past': True, 'title': 'Director, Global Communications', 'person': {'first_name': 'Adriana', 'last_name': 'Gascoigne', 'permalink': 'adriana-gascioigne'}}, {'is_past': True, 'title': 'VP, Engineering', 'person': {'first_name': 'Ram', 'last_name': 'Gudavalli', 'permalink': 'ram-gudavalli'}}, {'is_past': True, 'title': 'Database Architect / DBA Team Manager', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}, {'is_past': True, 'title': 'Official Community Support Moderator', 'person': {'first_name': 'Andrew', 'last_name': 'Davis', 'permalink': 'andrew-davis-2'}}, {'is_past': True, 'title': 'Official Moderator', 'person': {'first_name': 'Marco', 'last_name': 'Pinheiro', 'permalink': 'marco-pinheiro'}}], 'competitions': [{'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'Piczo', 'permalink': 'piczo'}}, {'competitor': {'name': 'Tagged', 'permalink': 'tagged'}}, {'competitor': {'name': 'Badoo', 'permalink': 'badoo'}}, {'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}, {'competitor': {'name': 'Xanga', 'permalink': 'xanga'}}, {'competitor': {'name': 'VK.com', 'permalink': 'vk'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Atomic PR', 'permalink': 'atomic-pr'}}], 'total_money_raised': '$52M', 'funding_rounds': [{'id': 220, 'round_code': 'a', 'source_url': 'http://www.hi5networks.com/prs/0724070.html', 'source_description': 'hi5', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mohr Davidow Ventures', 'permalink': 'mohr-davidow-ventures'}, 'person': None}]}, {'id': 1539, 'round_code': 'debt_round', 'source_url': 'http://biz.yahoo.com/bw/080129/20080129005384.html?.v=1', 'source_description': 'Hercules Technology Growth Capital Press Release', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Hercules Technology Growth Capital', 'permalink': 'hercules-technology-growth'}, 'person': None}]}, {'id': 13690, 'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2010/04/01/social-network-hi5-raises-23-million-in-funding/', 'source_description': 'TechCrunch', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Mohr Davidow Ventures', 'permalink': 'mohr-davidow-ventures'}, 'person': None}]}, {'id': 16939, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/07/13/gaming-social-network-hi5-raises-14-million/', 'source_description': 'Gaming-Focused Social Network hi5 Raises $14 Million', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Crosslink Capital', 'permalink': 'crosslink-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/14/facebooks-leftovers-social-network-tagged-acquires-hi5/', 'source_description': 'Facebook’s Leftovers? Social Network Tagged Acquires hi5', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 14, 'acquiring_company': {'name': 'Tagged', 'permalink': 'tagged'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/article/articledetail.php?articlepostid=13019', 'source_description': 'hi5 Networks Enhances Real-Time User Interaction with Acquisition of PixVerse ', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'PixVerse', 'permalink': 'pixverse'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/02/24/hi5-acquires-social-gaming-company-big-six/', 'source_description': 'hi5 Acquires Social Gaming Company Big Six', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 24, 'company': {'name': 'Big Six', 'permalink': 'big-six'}}], 'offices': [{'description': '', 'address1': '55 Second Street', 'address2': 'Suite 400', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.788668, 'longitude': -122.400558}], 'milestones': [{'id': 1607, 'description': 'hi5 Launches Language Translation on OpenSocial v0.8', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 25, 'source_url': '', 'source_text': 'hi5 Networks, one of the world’s largest and fastest-growing social networks, today announced the availability of a language translation tool fully compliant with the recently released OpenSocial v0.8 standard. This translation tool, available immediately, allows users around the globe to enjoy a more seamlessly localized experience – interacting in their preferred language not only on hi5.com but when using third-party applications available through the hi5 Platform as well.', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'hi5', 'permalink': 'hi5'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e45'), 'name': 'Clipperz', 'permalink': 'clipperz', 'crunchbase_url': 'http://www.crunchbase.com/company/clipperz', 'homepage_url': 'http://www.clipperz.com', 'blog_url': 'http://www.clipperz.com/blog', 'blog_feed_url': '', 'twitter_username': 'Clipperz', 'category_code': 'web', 'number_of_employees': 2, 'founded_year': 2005, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'marco@clipperz.com', 'phone_number': '+393482476970', 'description': '', 'created_at': 'Tue Feb 05 22:28:19 UTC 2008', 'updated_at': 'Tue Apr 02 08:21:50 UTC 2013', 'overview': '

Clipperz solves the “password fatigue” problem and provides an online digital vault for confidential data.

\\n\\n

Clipperz was established on 4 November\\n2005 by Marco Barulli and Giulio Cesare Solaroli. The company’s legal headquarters is in the municipality of Bagnacavallo, northern Italy.

', 'image': {'available_sizes': [[[131, 62], 'assets/images/resized/0000/3703/3703v2-max-150x150.jpg'], [[131, 62], 'assets/images/resized/0000/3703/3703v2-max-250x250.jpg'], [[131, 62], 'assets/images/resized/0000/3703/3703v2-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Clipperz', 'permalink': 'clipperz'}], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Marco', 'last_name': 'Barulli', 'permalink': 'marco-barulli'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Giulio Cesare', 'last_name': 'Solaroli', 'permalink': 'giulio-cesare-solaroli'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'Via Berti 137', 'address2': None, 'zip_code': '48012', 'city': 'Bagnacavallo', 'state_code': None, 'country_code': 'ITA', 'latitude': 44.418166, 'longitude': 11.978686}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e46'), 'name': 'Tagged', 'permalink': 'tagged', 'crunchbase_url': 'http://www.crunchbase.com/company/tagged', 'homepage_url': 'http://www.tagged.com', 'blog_url': 'http://about.tagged.com/blogs/', 'blog_feed_url': '', 'twitter_username': 'Tagged', 'category_code': 'social', 'number_of_employees': 162, 'founded_year': 2004, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'tagged', 'alias_list': '', 'email_address': ' ', 'phone_number': '415-946-1850', 'description': '', 'created_at': 'Tue Jul 24 01:57:36 UTC 2007', 'updated_at': 'Tue Sep 17 18:06:55 UTC 2013', 'overview': '

Tagged is a social network designed for meeting new people. The company was founded in October 2004 by Greg Tseng and Johann Schleier-Smith. While other social networks focus on existing relationships, Tagged has established the category of social discovery.

\\n\\n

Tagged has over 300 million members in 220 countries. The company’s service is designed to enable anyone to meet and socialize with new people through social games, customized profiles, virtual gifts, advanced browsing features and more.

\\n\\n

Co-founders Greg and Johann met at Harvard and after moving to California to pursue their PhDs at Stanford, they took a leave of absence to focus full-time on Tagged.

\\n\\n

Tagged was originally a teen-only social network and opened up to all ages 13+ in October 2006.The company pivoted to its current social discovery focus in late-2007 and has been profitable since 2008.

', 'image': {'available_sizes': [[[150, 26], 'assets/images/resized/0013/1226/131226v1-max-150x150.jpg'], [[250, 44], 'assets/images/resized/0013/1226/131226v1-max-250x250.jpg'], [[450, 80], 'assets/images/resized/0013/1226/131226v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co - Founder & Chief Executive Officer & Chairman Of The Board', 'person': {'first_name': 'Greg', 'last_name': 'Tseng', 'permalink': 'greg-tseng'}}, {'is_past': False, 'title': 'Chief Customer Officer', 'person': {'first_name': 'Tish', 'last_name': 'Whitcraft', 'permalink': 'tish-whitcraft'}}, {'is_past': False, 'title': 'Co - Founder & Chief Technology Officer & Board Member', 'person': {'first_name': 'Johann', 'last_name': 'Schleier-Smith', 'permalink': 'johann-schleier-smith'}}, {'is_past': False, 'title': 'Vice President of Product', 'person': {'first_name': 'Bjorn', 'last_name': 'Laurin', 'permalink': 'bjorn-laurin'}}, {'is_past': False, 'title': 'SVP, Engineering', 'person': {'first_name': 'Eyal', 'last_name': 'Shavit', 'permalink': 'eyal-shavit'}}, {'is_past': False, 'title': 'SVP, Legal & Head, Corporate Development', 'person': {'first_name': 'Louis', 'last_name': 'Willacy', 'permalink': 'louis-willacy'}}, {'is_past': False, 'title': 'VP, Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Sarner', 'permalink': 'steve-sarner'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Jared', 'last_name': 'Kim', 'permalink': 'jared-kim'}}, {'is_past': False, 'title': 'Director of Strategic Development', 'person': {'first_name': 'Peter', 'last_name': 'Berger', 'permalink': 'peter-berger-3'}}, {'is_past': False, 'title': 'Member Of The Board Of Directors', 'person': {'first_name': 'Raj', 'last_name': 'Kapoor', 'permalink': 'raj-kapoor'}}, {'is_past': False, 'title': 'Member Of The Board Of Directors', 'person': {'first_name': 'Allen', 'last_name': 'Morgan', 'permalink': 'allen-morgan'}}, {'is_past': False, 'title': 'Head of Mobile Product', 'person': {'first_name': 'Matthew', 'last_name': 'Wardenaar', 'permalink': 'matthew-wardenaar'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Karen', 'last_name': 'Cassel', 'permalink': 'karen-cassel-2'}}, {'is_past': True, 'title': 'VP & General Manager, Social Games', 'person': {'first_name': 'Andrew', 'last_name': 'Pedersen', 'permalink': 'andrew-pedersen'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'is_past': True, 'title': 'Sr. Unix Admin', 'person': {'first_name': 'Joshua', 'last_name': 'Miller', 'permalink': 'joshua-miller'}}, {'is_past': True, 'title': 'VP of People Operations', 'person': {'first_name': 'James', 'last_name': 'Takazawa', 'permalink': 'james-takazawa'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Prabhdeep', 'last_name': 'Gill', 'permalink': 'prabhdeep-gill'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'Vladimir', 'last_name': 'Giverts', 'permalink': 'vladimir-giverts'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Director of Product', 'person': {'first_name': 'Steve', 'last_name': 'Shapiro', 'permalink': 'steve-shapiro'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Shepard', 'permalink': 'chris-shepard'}}, {'is_past': True, 'title': 'Senior Product Designer', 'person': {'first_name': 'Dan', 'last_name': 'Auer', 'permalink': 'dan-auer'}}], 'competitions': [{'competitor': {'name': 'LinkedIn', 'permalink': 'linkedin'}}, {'competitor': {'name': 'hi5', 'permalink': 'hi5'}}, {'competitor': {'name': 'Friendster', 'permalink': 'friendster'}}], 'providerships': [], 'total_money_raised': '$28.7M', 'funding_rounds': [{'id': 221, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2007/07/23/big-money-for-tagged-too/', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 222, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/07/23/big-money-for-tagged-too/', 'source_description': '', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 4167, 'round_code': 'debt_round', 'source_url': 'http://www.sociableblog.com/2008/12/18/tagged-secures-5-million-in-venture-debt/', 'source_description': 'Tagged Secures $5 Million in Venture Debt', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 12, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Horizon Technology Finance Management LLC', 'permalink': 'horizon-technology-finance'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Leader Ventures', 'permalink': 'leader-ventures'}, 'person': None}]}, {'id': 11646, 'round_code': 'unattributed', 'source_url': 'http://www.techcrunch.com/2010/01/29/tagged-erik-vogeler/', 'source_description': 'Tagged.com Wins $201,975 In Default Judgment Against Spammer', 'raised_amount': 201975, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 29, 'investments': []}, {'id': 32089, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/08/22/social-network-tagged-raises-15m-revenue-grew-35-percent-to-43m-in-2011/', 'source_description': 'Social Network Tagged Raises $15M; Revenue Grew 35 Percent To $43M In 2011', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'Lighthouse Capital Partners', 'permalink': 'lighthouse-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comerica Bank', 'permalink': 'comerica-bank'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/19/tagged-buys-popular-socialinstant-messaging-client-digsby/', 'source_description': 'Tagged Buys Popular Social/Instant Messaging Client Digsby', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 19, 'company': {'name': 'dotSyntax', 'permalink': 'dotsyntax'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/09/tagged-acquires-topicmarks/', 'source_description': 'Tagged Acquires Topicmarks To Improve Friend Suggestions With Natural Language Processing', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 7, 'company': {'name': 'Topicmarks', 'permalink': 'topicmarks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/14/facebooks-leftovers-social-network-tagged-acquires-hi5/', 'source_description': 'Facebook’s Leftovers? Social Network Tagged Acquires hi5', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 14, 'company': {'name': 'hi5', 'permalink': 'hi5'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/09/21/tagged-wegame/', 'source_description': 'Social Discovery Meets Gaming Discovery: Tagged Buys WeGame', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 21, 'company': {'name': 'WeGame', 'permalink': 'wegame'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/10/16/tagged-urbantag/', 'source_description': 'Social Network Tagged’s Fifth Acquisition: Location-Based Mobile Discovery App Urbantag', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 16, 'company': {'name': 'urbantag', 'permalink': 'urbantag'}}], 'offices': [{'description': 'San Francisco, USA', 'address1': 'P.O. Box 193152', 'address2': '', 'zip_code': '94119-3152', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.7753, 'longitude': -122.4186}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 114], 'assets/images/resized/0016/3660/163660v1-max-150x150.jpg'], [[250, 190], 'assets/images/resized/0016/3660/163660v1-max-250x250.jpg'], [[450, 342], 'assets/images/resized/0016/3660/163660v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[93, 150], 'assets/images/resized/0016/3661/163661v1-max-150x150.jpg'], [[155, 250], 'assets/images/resized/0016/3661/163661v1-max-250x250.jpg'], [[279, 450], 'assets/images/resized/0016/3661/163661v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.tagged.com/batu10', 'title': 'Tagged Secures $5 Million in Venture Debt'}, {'external_url': 'http://mashable.com/2011/05/17/tagged-game-studio/', 'title': 'Tagged Opens Its Own Social Game Studio'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e49'), 'name': 'Nintendo', 'permalink': 'nintendo', 'crunchbase_url': 'http://www.crunchbase.com/company/nintendo', 'homepage_url': 'http://nintendo.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'NintendoAmerica', 'category_code': 'games_video', 'number_of_employees': 5080, 'founded_year': 1889, 'founded_month': 9, 'founded_day': 23, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'games, console', 'alias_list': '', 'email_address': 'noalegal@noa.nintendo.com', 'phone_number': '1-800-255-3700 ', 'description': '', 'created_at': 'Sat Dec 22 13:27:00 UTC 2007', 'updated_at': 'Thu Sep 05 12:41:16 UTC 2013', 'overview': '

Nintendo, a technology company widely known for its line of game consoles, was actually founded in 1889 by Fusajiro Yamauchi. It began as a card game company and evolved into one of the largest Japanese companies with a Market Capitalization of over $85 billion.

', 'image': {'available_sizes': [[[150, 41], 'assets/images/resized/0000/2869/2869v3-max-150x150.jpg'], [[250, 69], 'assets/images/resized/0000/2869/2869v3-max-250x250.jpg'], [[450, 125], 'assets/images/resized/0000/2869/2869v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Wii', 'permalink': 'wii'}], 'relationships': [{'is_past': False, 'title': 'President', 'person': {'first_name': 'Satoru', 'last_name': 'Iwata', 'permalink': 'satoru-iwata'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'John', 'last_name': 'H. Bauer', 'permalink': 'john-h-bauer'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mark', 'last_name': 'Proffit', 'permalink': 'mark-frazier'}}, {'is_past': True, 'title': 'European Brand Manager', 'person': {'first_name': 'Cornelius', 'last_name': 'Rost', 'permalink': 'cornelius-rost'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': 'Training Coordinator / Lead / Developer', 'person': {'first_name': 'Scott', 'last_name': 'Sullivan', 'permalink': 'scott-sullivan'}}, {'is_past': True, 'title': 'Lead Tester', 'person': {'first_name': 'Jesse', 'last_name': 'Hayes', 'permalink': 'jesse-hayes'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'John', 'last_name': 'H. Bauer', 'permalink': 'john-h-bauer'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'JPN', 'latitude': 36.204824, 'longitude': 138.252924}], 'milestones': [{'id': 17591, 'description': '3D For Everyone! Get The Nintendo 3DS For $150', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2011/08/29/get-the-nintendo-3ds-150/', 'source_text': '', 'source_description': '3D For Everyone! Get The Nintendo 3DS For $150', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nintendo', 'permalink': 'nintendo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4a'), 'name': 'Indeed', 'permalink': 'indeed', 'crunchbase_url': 'http://www.crunchbase.com/company/indeed', 'homepage_url': 'http://www.indeed.com', 'blog_url': 'http://blog.indeed.com/', 'blog_feed_url': 'http://blog.indeed.com/feed/', 'twitter_username': 'indeed', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'Job Search Portal', 'created_at': 'Tue Jul 24 08:10:32 UTC 2007', 'updated_at': 'Fri Aug 30 19:13:39 UTC 2013', 'overview': '

Indeed is the #1 job site worldwide, available in more than 50 countries and 26 languages, and covering 94% of global GDP. With more than 100 million monthly unique visitors, Indeed has double the traffic of the next leading job site. According to a recent study, Indeed is the #1 source of external hire for employers (SilkRoad, 2013).

\\n\\n

Since 2004, Indeed has given job seekers free access to millions of jobs from thousands of company websites and job boards. As the leading pay for performance recruitment advertising network, Indeed drives millions of targeted applicants to jobs in every field and is the most cost-effective source of candidates for thousands of companies.

\\n\\n

Founded by Paul Forster and Rony Kahan, Indeed has over 800 employees with offices in Austin, Dublin, London, San Mateo, New York and Stamford.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0000/3721/3721v5-max-150x150.png'], [[250, 93], 'assets/images/resized/0000/3721/3721v5-max-250x250.png'], [[250, 93], 'assets/images/resized/0000/3721/3721v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Indeed', 'permalink': 'indeed'}], 'relationships': [{'is_past': False, 'title': 'Senior Advisor and Co-founder', 'person': {'first_name': 'Paul', 'last_name': 'Forster', 'permalink': 'paul-forster'}}, {'is_past': False, 'title': 'Co-founder & CEO', 'person': {'first_name': 'Rony', 'last_name': 'Kahan', 'permalink': 'rony-kahan'}}, {'is_past': False, 'title': 'VP of Business Development', 'person': {'first_name': 'Matthew', 'last_name': 'Molinari', 'permalink': 'matthew-molinari'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Doug', 'last_name': 'Gray', 'permalink': 'doug-gray'}}, {'is_past': False, 'title': 'VP of Product', 'person': {'first_name': 'Chris', 'last_name': 'Hyams', 'permalink': 'chris-hyams'}}, {'is_past': False, 'title': 'Director of Employer Product Marketing', 'person': {'first_name': 'Olga', 'last_name': 'Kazakova', 'permalink': 'olga-kazakova'}}, {'is_past': False, 'title': 'SVP, Marketing', 'person': {'first_name': 'Paul', 'last_name': \"D'Arcy\", 'permalink': 'paul-darcy'}}, {'is_past': False, 'title': 'Sr. Director, Demand Generation', 'person': {'first_name': 'James', 'last_name': 'Boye-Doe', 'permalink': 'james-boye-doe'}}, {'is_past': True, 'title': 'Acting CFO', 'person': {'first_name': 'Mike', 'last_name': 'Majors', 'permalink': 'mike-majors'}}, {'is_past': True, 'title': 'Software Architect', 'person': {'first_name': 'Chris', 'last_name': 'Lamprecht', 'permalink': 'chris-lamprecht'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Zito', 'permalink': 'brian-zito'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Paolo', 'last_name': 'Maioli', 'permalink': 'paolo-maioli'}}], 'competitions': [{'competitor': {'name': 'Simply Hired', 'permalink': 'simply-hired'}}, {'competitor': {'name': 'Monster', 'permalink': 'monster'}}, {'competitor': {'name': 'Vast', 'permalink': 'vast'}}, {'competitor': {'name': 'Workcircle', 'permalink': 'workcircle'}}, {'competitor': {'name': 'Trovit', 'permalink': 'trovit'}}, {'competitor': {'name': 'Nushio', 'permalink': 'nushio'}}, {'competitor': {'name': 'JobSphere', 'permalink': 'jobsphere'}}, {'competitor': {'name': 'Juju.com', 'permalink': 'juju-com'}}, {'competitor': {'name': 'FINS.com', 'permalink': 'fins-com'}}, {'competitor': {'name': 'Careerjet', 'permalink': 'careerjet'}}, {'competitor': {'name': 'Recruit.net', 'permalink': 'recruit-net'}}, {'competitor': {'name': 'Neekanee', 'permalink': 'neekanee'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'LinkUp', 'permalink': 'linkup'}}, {'competitor': {'name': 'Adzuna', 'permalink': 'adzuna'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 229, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2005/08/08/update-indeed-raised-money/', 'source_description': None, 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Allen & Company', 'permalink': 'allen-and-company'}, 'person': None}, {'company': {'name': 'New York Times', 'permalink': 'newyorktimes'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Union Square Ventures', 'permalink': 'union-square-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/25/japans-recruit-co-acquires-indeed-com-to-extend-jobs-reach-from-us-to-asia/', 'source_description': 'Japan’s Recruit Co. Acquires Indeed.com To Extend Jobs Reach From US To Asia', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'Recruit Co., Ltd', 'permalink': 'recruit'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '177 Broad St. 6th Floor', 'address2': '', 'zip_code': '06901', 'city': 'Stamford', 'state_code': 'CT', 'country_code': 'USA', 'latitude': 41.038155, 'longitude': -73.558082}, {'description': 'Headquarters', 'address1': '7501 N. Capital of Texas Hwy', 'address2': 'Building B', 'zip_code': '78731', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 901, 'description': 'Indeed launches Job Search for Canada', 'stoned_year': 2005, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://blog.indeed.com/2005/11/', 'source_text': None, 'source_description': 'Indeed Canada', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 902, 'description': 'Indeed launches Job Search for UK', 'stoned_year': 2007, 'stoned_month': 7, 'stoned_day': 17, 'source_url': 'http://blog.indeed.com/2007/07/17/indeedcouk-launched/', 'source_text': None, 'source_description': 'Indeed.co.uk launched', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 903, 'description': 'Indeed launches Job Search for India', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 1, 'source_url': 'http://blog.indeed.com/2008/09/01/indeedcoin-india-job-search-launched/', 'source_text': None, 'source_description': 'Indeed.co.in (India) job search launched', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}, {'id': 904, 'description': 'Indeed Launches Job Search for France, Germany, and Spain.', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 18, 'source_url': 'http://blog.indeed.com/2008/11/18/bonjour-hallo-hola/', 'source_text': None, 'source_description': 'Bonjour, Hallo, Hola', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Indeed', 'permalink': 'indeed'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4b'), 'name': 'Jaxtr', 'permalink': 'jaxtr', 'crunchbase_url': 'http://www.crunchbase.com/company/jaxtr', 'homepage_url': 'http://www.jaxtr.com', 'blog_url': 'http://jaxtr.blogspot.com', 'blog_feed_url': 'http://jaxtr.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': None, 'category_code': 'mobile', 'number_of_employees': 30, 'founded_year': 2005, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'voip, calls', 'alias_list': '', 'email_address': 'webmaster@jaxtr.com', 'phone_number': '650-327-9300', 'description': 'VOIP phone calls to mobile phones', 'created_at': 'Tue Jul 24 08:33:34 UTC 2007', 'updated_at': 'Fri Nov 25 09:02:45 UTC 2011', 'overview': '

Jaxtr first launched in March 2007 with a widget that enables users to receive calls from their friends through a VOIP connection and keep their personal phone numbers private.

\\n\\n

In the past year, jaxtr has introduced a number of additional services in the attempt to monetize the company’s 10 million users:

\\n\\n

-Jaxtr helps users bypass expensive international phone charges by giving them free local numbers in the countries that they’re calling to and charges a nominal fee for connection and the ability to call from a mobile phone. As a marketing ploy, the company permits free calls to other members.\\n-Jaxtr uses cafe jaxtr, a social network in which people call one another to discuss similar interests, and free global SMS to attract activity on its website and generate advertising revenue.

\\n\\n

The company maintains an advantage over competitors such as Skype by allowing customers to use any phone - mobile or landline - without the need to download software or maintain Internet access, and calling cards by eliminating the need to dial additional numbers and PIN codes.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0000/3724/3724v1-max-150x150.jpg'], [[190, 63], 'assets/images/resized/0000/3724/3724v1-max-250x250.jpg'], [[190, 63], 'assets/images/resized/0000/3724/3724v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Jaxtr', 'permalink': 'jaxtr'}, {'name': 'JaxtrSMS', 'permalink': 'jaxtrsms'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Bahman', 'last_name': 'Koohestani', 'permalink': 'bahman-koohestani'}}, {'is_past': False, 'title': 'Co-Founder & CTO', 'person': {'first_name': 'Phillip', 'last_name': 'Mobin', 'permalink': 'phillip-mobin'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Bill', 'last_name': 'Keating', 'permalink': 'bill-keating'}}, {'is_past': False, 'title': 'Check', 'person': {'first_name': 'Ron', 'last_name': 'Conway', 'permalink': 'ron-conway'}}, {'is_past': True, 'title': 'Co-Founder, Chief Architect', 'person': {'first_name': 'Eugene', 'last_name': 'Mandel', 'permalink': 'eugene-mandel'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Konstantin', 'last_name': 'Guericke', 'permalink': 'konstantin-guericke'}}, {'is_past': True, 'title': 'Co-Founder & COO', 'person': {'first_name': 'Touraj', 'last_name': 'Parang', 'permalink': 'touraj-parang'}}, {'is_past': True, 'title': 'VP, Product & Analytics', 'person': {'first_name': 'Chung', 'last_name': 'Meng Cheong', 'permalink': 'chung-meng-cheong'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Steve', 'last_name': 'Newcomb', 'permalink': 'steve-newcomb'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Benjamin', 'last_name': 'Boyer', 'permalink': 'benjamin-boyer-2'}}, {'is_past': True, 'title': 'Director, Customer Support, Billing and Fraud', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'is_past': True, 'title': 'Product Manager, Designer, Engineer', 'person': {'first_name': 'Jeff', 'last_name': 'Seibert', 'permalink': 'jeff-seibert'}}, {'is_past': True, 'title': 'Senior Customer Service Representative', 'person': {'first_name': 'Jennifer', 'last_name': 'Ringquist', 'permalink': 'jennifer-ringquist'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Taneli', 'last_name': 'Otala', 'permalink': 'taneli-otala'}}], 'competitions': [{'competitor': {'name': 'GrandCentral', 'permalink': 'grandcentral'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Jangl SMS', 'permalink': 'jangl-sms'}}, {'competitor': {'name': 'Snapvine', 'permalink': 'snapvine'}}], 'providerships': [], 'total_money_raised': '$21.5M', 'funding_rounds': [{'id': 241, 'round_code': 'angel', 'source_url': 'http://www.businessweek.com/technology/content/apr2007/tc20070402_747117.htm?chan=search', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}]}, {'id': 537, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/27/jaxtr-closes-10-million-a-1-million-users/', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'August Capital', 'permalink': 'august-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mangrove Capital Partners', 'permalink': 'mangrove-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mayfield Fund', 'permalink': 'mayfield-fund'}, 'person': None}]}, {'id': 2738, 'round_code': 'b', 'source_url': 'http://www.techcrunch.com/?p=19260', 'source_description': 'Jaxtr Finally Enables Out-of-Network Calling, Raises $10 Million', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 23, 'investments': [{'company': None, 'financial_org': {'name': 'Lehman Brothers', 'permalink': 'lehman-brothers'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/41663/jaxtr-sells-to-sabse-technologies/', 'source_description': 'Jaxtr Sells to Sabeer Bhatia’s Newest Company: Sabse Technologies', 'acquired_year': 2009, 'acquired_month': 6, 'acquired_day': None, 'acquiring_company': {'name': 'Sabse Technologies', 'permalink': 'sabse-technologies'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '855 Oak Grove Ave.', 'address2': 'Suite 100', 'zip_code': '94025', 'city': 'Menlo Park', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.451026, 'longitude': -122.18676}], 'milestones': [{'id': 646, 'description': 'Jaxtr Launches Version 2.0 with Premium Memberships', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 30, 'source_url': '', 'source_text': 'MENLO PARK, CA – (September 30, 2008) –* Jaxtr, the company that\\r\\n> links your phone to the Web, today launched premium memberships\\r\\n> featuring jaxtr’s best rates for international calls, priority\\r\\n> customer service, personalized contact pages, global online voicemail\\r\\n> with customizable greetings and the ability to forward voicemails via\\r\\n> email.\\r\\n>\\r\\n> “In the three months since launching out-of-network calling, we\\r\\n> learned that our members are very talkative and on average go through\\r\\n> $10 worth of jax calling credits in just nine days, so a\\r\\n> subscription-based offering is a natural next step,â€\\x9d said jaxtr CEO\\r\\n> Konstantin Guericke. “We know from our more than 10 million users that\\r\\n> consumers select international calling providers based on four key\\r\\n> factors: price, convenience, coverage and quality. Premium memberships\\r\\n> deliver on all four factors.â€\\x9d\\r\\n>\\r\\n> The premium membership offering adds a subscription revenue stream to\\r\\n> jaxtr’s existing revenue lines from advertising (café jaxtr) and\\r\\n> transactions (cheap and convenient international calling). Jaxtr is\\r\\n> backed by three of the original Skype investors and has raised $20\\r\\n> million in funding. The company expects to reach breakeven during the\\r\\n> second half of 2009.\\r\\n>\\r\\n> Premium memberships are available at different levels depending on\\r\\n> one’s international calling needs: $2.95 for up to 350 minutes per\\r\\n> month, $7.95 for up to 1,000 minutes per month and $19.95 for up to\\r\\n> 2,500 minutes per month. Premium memberships include all of the\\r\\n> features offered in jaxtr’s basic membership such as:\\r\\n>\\r\\n> · international SMS\\r\\n> · phone widgets for social networking profiles, Web sites and\\r\\n> blogs\\r\\n> · call screening and forwarding\\r\\n> · phone number anonymity, and\\r\\n> · café jaxtr—a social network for people who like to talk on\\r\\n> the phone\\r\\n>\\r\\n> Jaxtr’s basic membership will continue to be free, and new members\\r\\n> receive a trial premium membership when they first join the service.\\r\\n> The monthly program does not require a contract.\\r\\n>\\r\\n> With the release of jaxtr 2.0, jaxtr becomes the most comprehensive\\r\\n> social communications solution for mobile phone users around the\\r\\n> world—whether they are using jaxtr to stay in touch with friends,\\r\\n> conduct business or meet people with shared interests.', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jaxtr', 'permalink': 'jaxtr'}}, {'id': 19447, 'description': 'Jaxtr Launches free mobile texting app JaxtrSMS', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 22, 'source_url': 'http://www.sociableblog.com/2011/11/24/sabeer-bhatia-launches-jaxtrsms/', 'source_text': None, 'source_description': 'Jaxtr Launches JaxtrSMS App, Lets You Send Free SMS Worldwide', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Jaxtr', 'permalink': 'jaxtr'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.socialnetworkingwatch.com/2007/07/jaxtr-ceo-konst.html', 'title': 'CEO Konstantin Guericke 07/07'}, {'external_url': 'http://www.sociableblog.com/2011/11/24/sabeer-bhatia-launches-jaxtrsms/', 'title': 'Sabeer Bhatia Launches JaxtrSMS App, Lets You Send Free SMS Worldwide'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4c'), 'name': 'Cerado', 'permalink': 'cerado', 'crunchbase_url': 'http://www.crunchbase.com/company/cerado', 'homepage_url': 'http://www.cerado.com', 'blog_url': 'http://www.socialcustomer.com', 'blog_feed_url': 'http://www.socialcustomer.com/index.rdf', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2002, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': 'info@cerado.com', 'phone_number': '1-650-346-4406', 'description': None, 'created_at': 'Tue Jul 24 12:08:09 UTC 2007', 'updated_at': 'Mon Nov 19 06:56:12 UTC 2012', 'overview': '

Cerado is the provider of the Haystack social networking platform.\\nCerado Ventana connects multiple social networks, web sites, and mobile web services. It is a web-based service that connects people, information and commerce via an interface that is optimized for the iPhone.

\\n\\n

View a chartthat TechCrunch compiled in Summer 2007 that compares this company’s social networking product to others.

', 'image': {'available_sizes': [[[150, 53], 'assets/images/resized/0000/3733/3733v1-max-150x150.png'], [[151, 54], 'assets/images/resized/0000/3733/3733v1-max-250x250.png'], [[151, 54], 'assets/images/resized/0000/3733/3733v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Law Projects Center UN NGO', 'permalink': 'haystack'}, {'name': 'Ventana', 'permalink': 'ventana'}], 'relationships': [{'is_past': False, 'title': '', 'person': {'first_name': 'Leif', 'last_name': 'Chastaine', 'permalink': 'leif-chastaine'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Christopher', 'last_name': 'Carfi', 'permalink': 'christopher-carfi'}}], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Skalfa', 'permalink': 'skalfa'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2225 E. Bayshore Rd.', 'address2': 'Suite 200', 'zip_code': '94303', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.774321, 'longitude': -122.415375}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e4e'), 'name': 'ONEsite', 'permalink': 'onesite', 'crunchbase_url': 'http://www.crunchbase.com/company/onesite', 'homepage_url': 'http://www.onesite.com', 'blog_url': 'http://www.onesite.com/go/view/ideas', 'blog_feed_url': '', 'twitter_username': 'onesite', 'category_code': 'other', 'number_of_employees': 50, 'founded_year': 2005, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-platform, social-networking-software, mobile-platform', 'alias_list': None, 'email_address': 'sales@onesite.com', 'phone_number': '405.753.9300', 'description': 'Social Networking Software Platform', 'created_at': 'Tue Jul 24 12:22:34 UTC 2007', 'updated_at': 'Mon Nov 19 06:55:26 UTC 2012', 'overview': '

ONEsite, a subsidiary of the hosting company Catalog.com, provides a hybrid social networking / CMS platform. The ONEsite Platform includes custom profiles, user generated content (blogs, photos, videos, forums), activity streams, groups, calendars and a points and rewards system.

\\n\\n

ONEsite includes hosted Software as a Service components as well as APIs and Widgets that can be integrated into external systems.

\\n\\n

ONEsite provides in-house professional services for the implementation and integration of its platforms. The company also includes an in-house technical support and moderation group.

\\n\\n

ONEsite was started in 2004. Catalog.com has been providing internet services and technology since 1994.

\\n\\n

View a chart that TechCrunch compiled in Summer 2007 that compares this company’s social networking product to others.

', 'image': {'available_sizes': [[[150, 62], 'assets/images/resized/0000/3742/3742v16-max-150x150.png'], [[157, 65], 'assets/images/resized/0000/3742/3742v16-max-250x250.png'], [[157, 65], 'assets/images/resized/0000/3742/3742v16-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'facelook', 'permalink': 'www-mymimo-tk'}, {'name': 'Single Sign-On', 'permalink': 'single-sign-on'}, {'name': 'Social Software', 'permalink': 'social-software'}, {'name': 'ONEsite LIVE', 'permalink': 'onesite-live'}, {'name': 'Hosting Platform', 'permalink': 'hosting-platform'}, {'name': 'ONEsite CMS', 'permalink': 'onesite-cms'}], 'relationships': [], 'competitions': [{'competitor': {'name': 'Ning by Glam Media', 'permalink': 'ning'}}, {'competitor': {'name': 'Bright Things', 'permalink': 'bright-things'}}, {'competitor': {'name': 'Pluck', 'permalink': 'pluck'}}, {'competitor': {'name': 'KickApps', 'permalink': 'kickapps'}}, {'competitor': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'competitor': {'name': 'AwarenessHub', 'permalink': 'awareness'}}, {'competitor': {'name': 'Powered', 'permalink': 'powered'}}, {'competitor': {'name': 'Mzinga [Prospero Technologies]', 'permalink': 'prosperotechnologies'}}, {'competitor': {'name': 'Jive Software', 'permalink': 'jive-software'}}, {'competitor': {'name': 'Lithium Technologies', 'permalink': 'lithiumtechnologies'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [{'title': 'Public Relations, Social Marketing', 'is_past': False, 'provider': {'name': 'PerkettPR', 'permalink': 'perkettpr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://gigaom.com/2008/02/20/social-platform-shakeout-begins/', 'source_description': 'Social Platform Shakeout Begins', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 20, 'company': {'name': 'Social Platform', 'permalink': 'social-platform'}}], 'offices': [{'description': None, 'address1': '14000 Quail Springs Parkway, Suite 3600', 'address2': None, 'zip_code': '73134', 'city': 'Oklahoma City', 'state_code': 'OK', 'country_code': 'USA', 'latitude': 35.612679, 'longitude': -97.5736}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 71], 'assets/images/resized/0009/0295/90295v2-max-150x150.jpg'], [[250, 118], 'assets/images/resized/0009/0295/90295v2-max-250x250.jpg'], [[450, 213], 'assets/images/resized/0009/0295/90295v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e53'), 'name': 'Wallhogs', 'permalink': 'wallhogs', 'crunchbase_url': 'http://www.crunchbase.com/company/wallhogs', 'homepage_url': 'http://wallhogs.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'wallhogs', 'category_code': 'public_relations', 'number_of_employees': 52, 'founded_year': 2006, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'prints, photo', 'alias_list': '', 'email_address': '', 'phone_number': '877-900-HOGS(4647)', 'description': '', 'created_at': 'Wed Jul 25 05:41:17 UTC 2007', 'updated_at': 'Tue Apr 09 06:02:00 UTC 2013', 'overview': '

Wallhogs is a digital printing company that lets you make large prints of your favorite photos or digital images. Founded by Mark Seremet, an experienced internet entrepreneur, Wallhogs takes aim at the custom print market by introducing specialty oversize prints. Traditionally, oversize prints have only been available to businesses or clients who want large quantities. Wallhogs, however, is offering prints up to 7 feet tall and 4 feet wide, on vinyl, glossy poster paper or canvas.Prints range in price from $20 to $75 but do not come framed. Users are required to upload images of at least 2048x1536 resolution, otherwise larger prints will appear pixilated.Other companies in the digital print market are CafePress, Zazzle, FatHead and Photoways(Europe). Mark Seremet was formerly the CEO of Spreadshirt, a custom T-shirt printing company.

', 'image': {'available_sizes': [[[146, 38], 'assets/images/resized/0000/3760/3760v1-max-150x150.png'], [[146, 38], 'assets/images/resized/0000/3760/3760v1-max-250x250.png'], [[146, 38], 'assets/images/resized/0000/3760/3760v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Mark', 'last_name': 'Seremet', 'permalink': 'mark-seremet'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Paul', 'last_name': 'Conklin', 'permalink': 'paul-conklin'}}], 'competitions': [{'competitor': {'name': 'Zazzle', 'permalink': 'zazzle'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '2217 Longview Dr.', 'address2': '', 'zip_code': '15601', 'city': 'Greensburg', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.30305, 'longitude': -79.462703}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3604/43604v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3604/43604v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3604/43604v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e58'), 'name': 'eBuddy', 'permalink': 'ebuddy', 'crunchbase_url': 'http://www.crunchbase.com/company/ebuddy', 'homepage_url': 'http://www.ebuddy.com', 'blog_url': 'http://blog.ebuddy.com/', 'blog_feed_url': 'http://blog.ebuddy.com/index.php/feed/', 'twitter_username': 'ebuddy', 'category_code': 'messaging', 'number_of_employees': 90, 'founded_year': 2003, 'founded_month': 9, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'ebuddy, crunchbase, techcrunch, im, mobile-im, mim, web-based-messenger, www-msn-com-br, aol, open-aim-2-0, windows-live-messenger, yahoo-messenger, myspace-im, googletalk, xms, mobile-messaging', 'alias_list': '', 'email_address': 'feedback@ebuddy.com', 'phone_number': '+31 20 514 1420', 'description': 'Web and mobile messaging', 'created_at': 'Wed Jul 25 11:48:02 UTC 2007', 'updated_at': 'Tue Oct 01 12:55:24 UTC 2013', 'overview': '

eBuddy created the world’s first, independent, web browser-based instant messaging service as e-Messenger in 2003. The company was rebranded in 2006 from e-Messenger to eBuddy. eBuddy currently offers two products: eBuddy Chat and XMS.

\\n\\n

eBuddy Chat enables millions of monthly global users with Facebook Chat, MSN, Google Talk, Yahoo Messenger, ICQ and AOL accounts to chat free of charge in one aggregated interface. eBuddy Chat is currently available on the Web and offers free mobile solutions for iOS, Android, J2ME and mobile Web-enabled devices.

\\n\\n

XMS is a free, real-time messaging app for smartphones. Launched in March 2011, XMS offers unlimited smartphone messaging through one’s Internet connection. XMS is currently available for iOS, Android, BlackBerry, Nokia and Windows Phone 7 devices.

\\n\\n

eBuddy processes over 17 billion messages per month and enables more than 30 million unique monthly users to exchange messages through its services.

\\n\\n

eBuddy is a privately-held company backed by Prime Technology Ventures and Lowland Capital Partners. eBuddy is headquartered in Amsterdam and has local offices in San Francisco and Singapore.

', 'image': {'available_sizes': [[[150, 35], 'assets/images/resized/0000/3781/3781v41-max-150x150.png'], [[250, 59], 'assets/images/resized/0000/3781/3781v41-max-250x250.png'], [[251, 60], 'assets/images/resized/0000/3781/3781v41-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'COO, Co-founder', 'person': {'first_name': 'Onno', 'last_name': 'Bakker', 'permalink': 'onno-bakker'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Paulo', 'last_name': 'Taylor', 'permalink': 'paulo-taylor'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Sytse', 'last_name': 'Zuidema', 'permalink': 'sytse-zuidema'}}, {'is_past': False, 'title': 'CEO, Co-founder', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Rueb', 'permalink': 'jan-joost-rueb'}}, {'is_past': False, 'title': 'Strategic Partnership Director', 'person': {'first_name': 'Jonie', 'last_name': 'Oostveen', 'permalink': 'jonie-oostveen'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}, {'is_past': True, 'title': 'Chief Commercial Officer (CCO)', 'person': {'first_name': 'Rogier', 'last_name': 'van den Heuvel', 'permalink': 'rogier-van-den-heuvel'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Wijnand', 'last_name': 'van de Calseijde', 'permalink': 'wijnand-van-de-calseijde'}}, {'is_past': True, 'title': 'VP Products and Marketing', 'person': {'first_name': 'Martijn', 'last_name': 'Jansen', 'permalink': 'martijn-jansen'}}, {'is_past': True, 'title': 'VP Products & Marketing', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Kraal', 'permalink': 'jan-joost-kraal'}}, {'is_past': True, 'title': 'Sales and Channel Development', 'person': {'first_name': 'Marc', 'last_name': 'Duijndam', 'permalink': 'marc-duijndam'}}, {'is_past': True, 'title': 'Director Mobile', 'person': {'first_name': 'Jan-Joost', 'last_name': 'Kraal', 'permalink': 'jan-joost-kraal'}}, {'is_past': True, 'title': 'Board of Director', 'person': {'first_name': 'Sake', 'last_name': 'Bosch', 'permalink': 'sake-bosch'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ruben', 'last_name': 'Heerdink', 'permalink': 'ruben-heerdink'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Alex', 'last_name': 'Mashinsky', 'permalink': 'alex-mashinsky'}}], 'competitions': [{'competitor': {'name': 'KoolIM', 'permalink': 'koolim'}}, {'competitor': {'name': 'Heysan', 'permalink': 'heysan'}}, {'competitor': {'name': 'EQO', 'permalink': 'eqo'}}, {'competitor': {'name': 'WhatsApp', 'permalink': 'whatsapp'}}, {'competitor': {'name': 'Viber', 'permalink': 'viber'}}, {'competitor': {'name': 'KakaoTalk', 'permalink': 'kakaotalk'}}, {'competitor': {'name': 'Wechat', 'permalink': 'wechat-2'}}], 'providerships': [{'title': 'Marketing and PR', 'is_past': True, 'provider': {'name': 'Mercury Global Partners', 'permalink': 'mercury-global-partners'}}], 'total_money_raised': '€11.5M', 'funding_rounds': [{'id': 239, 'round_code': 'a', 'source_url': 'http://www.ebuddy.com/press/eBuddy_Lowland_Capital.pdf', 'source_description': 'EBUDDY Secures 5 Million Euro In Series A Funding', 'raised_amount': 5000000, 'raised_currency_code': 'EUR', 'funded_year': 2006, 'funded_month': 10, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'Lowland Capital Partners', 'permalink': 'lowland-capital-partners'}, 'person': None}]}, {'id': 1863, 'round_code': 'b', 'source_url': 'http://www.ebuddy.com/press/eBuddy_PTV_Press_Release_05Feb2008.pdf', 'source_description': 'eBuddy secures €6.5 million Series B funding', 'raised_amount': 6500000, 'raised_currency_code': 'EUR', 'funded_year': 2008, 'funded_month': 2, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Prime Ventures', 'permalink': 'prime-technology-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Global Headquarters', 'address1': 'Keizersgracht 585', 'address2': '', 'zip_code': '1017 DR', 'city': 'Amsterdam', 'state_code': None, 'country_code': 'NLD', 'latitude': 52.3640933, 'longitude': 4.8919457}, {'description': 'US Headquarters', 'address1': '555 Post St.', 'address2': '', 'zip_code': '94102', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.787683, 'longitude': -122.410943}, {'description': 'Singapore office', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Singapore', 'state_code': None, 'country_code': 'SGP', 'latitude': 51.500152, 'longitude': -0.126236}], 'milestones': [{'id': 324, 'description': 'eBuddy Processing 1 billion Messages per Month for 2M Unique Mobile Users', 'stoned_year': 2008, 'stoned_month': 4, 'stoned_day': 30, 'source_url': 'http://news.yahoo.com/s/prweb/20080725/bs_prweb/prweb1141594_1', 'source_text': ' eBuddy, the world\\'s leading independent provider of web and mobile messaging (IM), announced today that it has surpassed 5M downloads of its mobile IM client in its first year. The company is now processing over 1 billion messages per month on its mobile platform and counts more than 2 million unique monthly mobile users. eBuddy also announced updated releases and redesiged user interfaces for both of their popular mobile IM clients.\\r\\nADVERTISEMENT\\r\\n\\r\\nSan Francisco, CA (PRWEB) July 25, 2008 -- eBuddy, the world\\'s leading independent provider of web and mobile instant messaging (IM), announced today that it has experienced explosive mobile IM growth, surpassing 5 million downloads of its mobile IM client since its launch in June 2007.\\r\\n\\r\\nJan-Joost Rueb, eBuddy CEO and founder commented, \"We are now processing over 1 billion messages per month on our mobile platform for more than 2 million unique monthly users. The fast pace at which our application is being picked up shows how much people want a high quality, easy-to-use, intuitive IM application like eBuddy.\"\\r\\n\\r\\neBuddy also announced updated releases for both of its mobile clients, the popular J2ME client and the mobile Internet browser version, Lite Messenger. The latest J2ME release features a redesigned and improved user interface and the addition of the eBuddy ID (which already exists on eBuddy\\'s web browser version) and allows the user to create a single, unique ID which can then be used to log-in and access all of their IM accounts simultaneously. The latest Lite Messenger release includes new features, extra networks and specific design functionality for iPhone, including the new 3G version released worldwide on July 11.\\r\\n\\r\\nResearch analysts at Informa estimate the global market for mobile IM will become an $11 billion (€7.4bn) industry by 2011. eBuddy\\'s VP of Mobile, Jan-Joost Kraal adds, \"eBuddy has become one of the most downloaded mobile applications worldwide within a year due to rapid adoption, ramped up channel distribution and the help of partners like GetJar. Mobile Internet usage on a global scale is only going to increase, and with a single user average of 30 log-ins per month, eBuddy is an excellent reason for customers to buy a flat-fee data bundle from their mobile carrier.\"\\r\\n\\r\\nAbout eBuddy\\r\\neBuddy created the world\\'s first, independent, web browser-based instant messaging service in 2003. Its patent-pending technology enables 16M+ monthly global visitors with AIM, GoogleTalk, MSN, MySpace and Yahoo! IM accounts to chat free of charge in one, aggregated interface without having to download or install any application on their computer. Supporting 550+ different mobile devices, eBuddy\\'s mobile IM solution - m.ebuddy.com -- offers both a J2ME and browser-based IM service and allows 2M+ unique monthly user\\'s access on their mobile phone, independent of carrier or device via WAP or mobile Internet browser. eBuddy is a privately held, Amsterdam-based company with additional offices in London and San Francisco, and is backed by Prime Technology Ventures and Lowland Capital Partners. ', 'source_description': 'Hungry mobile IM users consume 5M downloads in first year eBuddy processing 1 billion messages per month for 2M unique mobile users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 17617, 'description': 'Mobile Messaging Platform eBuddy Raising Money At $100 Million Valuation', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 30, 'source_url': 'http://www.businessinsider.com/ebuddy-2011-8', 'source_text': '', 'source_description': 'Mobile Messaging Platform eBuddy Raising Money At $100 Million Valuation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40174, 'description': 'Japanese gaming company GREE acquired a minority stake in eBuddy', 'stoned_year': 2012, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://techcrunch.com/2012/10/15/ebuddy-gree-stake-sale/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40299, 'description': 'eBuddy receives Mashable award for the Best Mobile App.', 'stoned_year': 2009, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://mashable.com/2009/12/16/open-web-awards-2009-50-winners/', 'source_text': None, 'source_description': 'Mashable', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40300, 'description': 'eBuddy receives Mashable award for the Best Mobile User Experience.', 'stoned_year': 2010, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://mashable.com/2011/01/06/mashable-awards-2010-announcing-the-winners/', 'source_text': None, 'source_description': 'Mashable', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40301, 'description': 'eBuddy receives Crunchies award for the Best International Startup.', 'stoned_year': 2008, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://crunchies2008.techcrunch.com/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40302, 'description': 'eBuddy launched XMS.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://techcrunch.com/2011/03/17/sms-on-steroids-ebuddy-debuts-realtime-cross-platform-messaging-app/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40303, 'description': 'eBuddy achieved over 100 million downloads.', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2010/09/30/ebuddys-mobile-applications-downloaded-more-than-100-million-times/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}, {'id': 40304, 'description': 'eBuddy exceeded 250 million user accounts.', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2011/09/21/ebuddy-blows-through-250-million-user-accounts-android-up-300/', 'source_text': None, 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'eBuddy', 'permalink': 'ebuddy'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 55], 'assets/images/resized/0033/4855/334855v2-max-150x150.jpg'], [[250, 92], 'assets/images/resized/0033/4855/334855v2-max-250x250.jpg'], [[450, 166], 'assets/images/resized/0033/4855/334855v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 79], 'assets/images/resized/0033/4865/334865v2-max-150x150.png'], [[250, 132], 'assets/images/resized/0033/4865/334865v2-max-250x250.png'], [[450, 238], 'assets/images/resized/0033/4865/334865v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.ebuddy.com/2008/08/23/ebuddy-taps-former-google-executive-marc-duijndam/', 'title': 'eBuddy Taps Former Google Executive, Marc Duijndam'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e5a'), 'name': 'Grockit', 'permalink': 'grockit', 'crunchbase_url': 'http://www.crunchbase.com/company/grockit', 'homepage_url': 'http://grockit.com', 'blog_url': 'http://blog.grockit.com', 'blog_feed_url': '', 'twitter_username': 'grockit', 'category_code': 'social', 'number_of_employees': 25, 'founded_year': 2006, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'techcrunch50, tc50, learning, grockit, gmat, mmol, mmo, children, education, testprep, testing, gaming', 'alias_list': '', 'email_address': 'grockit@cutline.com', 'phone_number': '', 'description': 'Online social learning games', 'created_at': 'Thu Jul 26 04:44:29 UTC 2007', 'updated_at': 'Wed Dec 19 10:39:37 UTC 2012', 'overview': '

Grockit is a pioneering online social learning company. Grockit has proven that people learn more, faster through combining social learning mechanics and multi-media learning content to help people teach and learn from others.

\\n\\n

Learnist is Grockit’s broadest learning service, launched in May of 2012. At Learnist, expert members curate the web’s content to create simple explanations on virtually anything using open content and rich multimedia.

\\n\\n

Grockit.com offers Test Prep services for GMAT, IIM CAT, LSAT, GRE, ACT, SAT and AP Calculus and AP History tests. \\nGrockit has built a social learning test prep platform for license and direct-to-consumer products. Florida Virtual Schools, KIPP Schools, Georgetown University and other schools have deployed Grockit services.

', 'image': {'available_sizes': [[[150, 140], 'assets/images/resized/0000/3787/3787v4-max-150x150.png'], [[247, 232], 'assets/images/resized/0000/3787/3787v4-max-250x250.png'], [[247, 232], 'assets/images/resized/0000/3787/3787v4-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Grockit', 'permalink': 'gmat'}, {'name': 'Learnist', 'permalink': 'learnist'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Roy', 'last_name': 'Gilbert', 'permalink': 'roy-gilbert'}}, {'is_past': False, 'title': 'Founder, President, chief product officer, and chairman', 'person': {'first_name': 'Farbood', 'last_name': 'Nivi', 'permalink': 'farbood-nivi'}}, {'is_past': False, 'title': 'VP of Marketing', 'person': {'first_name': 'Aaron', 'last_name': 'Burcell', 'permalink': 'aaron-burcell'}}, {'is_past': False, 'title': 'Member, Board of Directors', 'person': {'first_name': 'Mitch', 'last_name': 'Lasky', 'permalink': 'mitch-lasky'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Chris', 'last_name': 'Henley', 'permalink': 'chris-henley'}}, {'is_past': False, 'title': 'Director of Customer Success', 'person': {'first_name': 'David', 'last_name': 'Marino', 'permalink': 'david-marino'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Jeff', 'last_name': 'Fagnan', 'permalink': 'jeff-fagnan'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Michael', 'last_name': 'Buffington', 'permalink': 'michael-buffington'}}, {'is_past': True, 'title': 'Chief Learning Architect', 'person': {'first_name': 'Ari', 'last_name': 'Bader-Natal', 'permalink': 'ari-bader-natal'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Betty', 'last_name': 'Kayton', 'permalink': 'betty-kayton'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Babak', 'last_name': 'Nivi', 'permalink': 'babak-nivi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kunal', 'last_name': 'Anand', 'permalink': 'kunal-anand'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Michael', 'last_name': 'Moe', 'permalink': 'michael-moe'}}, {'is_past': True, 'title': 'Director of Academics', 'person': {'first_name': 'Heather', 'last_name': 'Gilchrist', 'permalink': 'heather-gilchrist'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Brian', 'last_name': 'Buser', 'permalink': 'brian-buser'}}], 'competitions': [{'competitor': {'name': 'PrepMe', 'permalink': 'prepme'}}, {'competitor': {'name': 'Brightstorm', 'permalink': 'brightstorm'}}, {'competitor': {'name': 'Princeton Review', 'permalink': 'princeton-review'}}, {'competitor': {'name': 'Kaplan', 'permalink': 'kaplan'}}, {'competitor': {'name': 'Top Test Prep', 'permalink': 'top-test-prep'}}, {'competitor': {'name': '2U', 'permalink': '2u'}}, {'competitor': {'name': 'Udemy', 'permalink': 'udemy'}}, {'competitor': {'name': 'Cramster', 'permalink': 'cramster'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Brew Media Relations', 'permalink': 'brew-media-relations'}}, {'title': 'Public Relations', 'is_past': False, 'provider': {'name': 'Cutline Communications', 'permalink': 'cutline-communications'}}], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 240, 'round_code': 'a', 'source_url': 'http://venturebeat.com/2007/07/24/grockit-raises-23m-for-online-test-preparation/', 'source_description': 'Grockit raises $2.3M for online test preparation', 'raised_amount': 2300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 1614, 'round_code': 'angel', 'source_url': 'http://www.techcrunch.com/2007/07/24/grockit-raises-cash-prepares-massive-multiplayer-online-learning-product/', 'source_description': 'Grockit Raises Cash, Prepares \"Massive Multiplayer Online Learning\"\\x9d Product.', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Mark', 'last_name': 'Pincus', 'permalink': 'mark-pincus'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Rob', 'last_name': 'Lord', 'permalink': 'rob-lord'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Reid', 'last_name': 'Hoffman', 'permalink': 'reid-hoffman'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marc', 'last_name': 'Hustvedt', 'permalink': 'marc-hustvedt'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Tom', 'last_name': 'Ryan', 'permalink': 'tom-ryan'}}]}, {'id': 2440, 'round_code': 'b', 'source_url': 'http://venturebeat.com/2008/06/02/stealth-educational-startup-grockit-raises-8m-more/', 'source_description': 'Stealth educational startup Grockit raises $8M more', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 30, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}]}, {'id': 15598, 'round_code': 'c', 'source_url': 'http://techcrunch.com/2010/05/14/grockit-7-million-academy/', 'source_description': 'TechCrunch', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 5, 'funded_day': 14, 'investments': [{'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}]}, {'id': 25987, 'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/10/17/grockit-7-million-answers/', 'source_description': 'Grockit Gets A $7 Million Venture Infusion And Launches Video Q&A Site Grockit Answers', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'GSV Capital', 'permalink': 'gsv-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'New Schools Venture Fund', 'permalink': 'new-schools-venture-fund'}, 'person': None}]}, {'id': 34414, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2012/12/18/grockit-lands-20m-from-discovery-to-bring-its-new-pinterest-for-education-to-the-masses/', 'source_description': 'Grockit Lands $20M From Discovery, Benchmark & Others To Bring Its New “Pinterest For Education” To The Masses ', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 19, 'investments': [{'company': {'name': 'Discovery Communications', 'permalink': 'discoverycommunications'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Atlas Venture', 'permalink': 'atlas-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'GSV Capital', 'permalink': 'gsv-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/07/kaplan-acquires-grockit-platform-test-prep-assets.html', 'source_description': 'Kaplan Acquires Grockit Platform And Test Prep Assets', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 31, 'acquiring_company': {'name': 'Kaplan', 'permalink': 'kaplan'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '500 Third Street', 'address2': 'Suite 260', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.775196, 'longitude': -122.419204}], 'milestones': [{'id': 7936, 'description': \"Grockit named in Lead411's Hottest San Francisco Companies list\", 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': ' Lead411 launches \"Hottest Companies in San Francisco\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Grockit', 'permalink': 'grockit'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

tc50

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e5d'), 'name': 'Adobe Systems', 'permalink': 'adobe-systems', 'crunchbase_url': 'http://www.crunchbase.com/company/adobe-systems', 'homepage_url': 'http://www.adobe.com', 'blog_url': 'http://blogs.adobe.com/', 'blog_feed_url': 'http://blogs.adobe.com/index.xml', 'twitter_username': 'Adobe', 'category_code': 'software', 'number_of_employees': 7173, 'founded_year': 1982, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'adobe, flash, illustrator, creative, photoshop, design, imaging, editing', 'alias_list': '', 'email_address': '', 'phone_number': '408-536-6000', 'description': '', 'created_at': 'Thu Aug 09 01:22:40 UTC 2007', 'updated_at': 'Fri Aug 09 22:20:08 UTC 2013', 'overview': '

Adobe Systems Incorporated is a diversified software company. The Company offers a line of business and mobile software and services used by professionals, designers, knowledge workers, high-end consumers, original equipment manufacturer (OEM) partners, developers and enterprises for creating, managing, delivering and engaging with compelling content and experiences across multiple operating systems, devices and media. Adobe distributes its products through a network of distributors and dealers, value-added resellers (VARs), systems integrators, independent software vendors (ISVs) and OEMs, direct to end users and through its own Website at www.adobe.com. The Company also licenses its technology to hardware manufacturers, software developers and service providers, and it offers integrated software solutions to businesses of all sizes. Adobe has operations in the Americas, Europe, Middle East and Africa (EMEA) and Asia.

\\n\\n

Adobe added Flash to its technology portfolio after acquisition of Macromedia in 2005.

', 'image': {'available_sizes': [[[109, 150], 'assets/images/resized/0001/3687/13687v3-max-150x150.png'], [[181, 250], 'assets/images/resized/0001/3687/13687v3-max-250x250.png'], [[327, 450], 'assets/images/resized/0001/3687/13687v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'photoshop.com', 'permalink': 'photoshop-com'}, {'name': 'Adobe AIR', 'permalink': 'adobe-air'}, {'name': 'Buzzword', 'permalink': 'buzzword'}, {'name': 'Adobe Flash', 'permalink': 'adobe-flash'}], 'relationships': [{'is_past': False, 'title': 'Co-founder, Co-Chairman of the Board', 'person': {'first_name': 'John', 'last_name': 'Warnock', 'permalink': 'john-warnock'}}, {'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Kevin', 'last_name': 'Lynch', 'permalink': 'kevin-lynch'}}, {'is_past': False, 'title': 'Vice President, Products', 'person': {'first_name': 'Jeffrey', 'last_name': 'Veen', 'permalink': 'jeffrey-veen'}}, {'is_past': False, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Joshua', 'last_name': 'G. James', 'permalink': 'joshua-g-james'}}, {'is_past': False, 'title': 'SVP, Media & Advertising Solutions', 'person': {'first_name': 'David', 'last_name': 'Karnstedt', 'permalink': 'david-karnstedt'}}, {'is_past': False, 'title': 'VP, Communications', 'person': {'first_name': 'Christine', 'last_name': 'Castro', 'permalink': 'christine-castro'}}, {'is_past': False, 'title': 'Co-founder, Co-Chairman of the Board', 'person': {'first_name': 'Charles', 'last_name': 'Geschke', 'permalink': 'charles-geschke'}}, {'is_past': False, 'title': 'Engineering Manager', 'person': {'first_name': 'Kevin', 'last_name': 'Goldsmith', 'permalink': 'kevin-goldsmith'}}, {'is_past': False, 'title': 'Senior Vice President, Worldwide Field Operations', 'person': {'first_name': 'Matt', 'last_name': 'Thompson', 'permalink': 'matt-thompson'}}, {'is_past': False, 'title': 'Senior Manager, Professional Services', 'person': {'first_name': 'Ben', 'last_name': 'Seymour', 'permalink': 'ben-seymour'}}, {'is_past': False, 'title': 'MTS', 'person': {'first_name': 'Saurabh', 'last_name': 'Kumar', 'permalink': 'saurabh-kumar'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Steven', 'last_name': 'Palmer', 'permalink': 'steven-palmer-3'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Evan', 'last_name': 'Kirchhoff', 'permalink': 'evan-kirchhoff'}}, {'is_past': False, 'title': 'Lead Product Designer – Head of Discovery, Behance', 'person': {'first_name': 'Clément', 'last_name': 'Faydi', 'permalink': 'clment-faydi'}}, {'is_past': False, 'title': 'Senior Vice President, Technology and Corporate Development', 'person': {'first_name': 'Bryan', 'last_name': 'Lamkin', 'permalink': 'bryan-lamkin'}}, {'is_past': False, 'title': 'Director and Member of Audit Committee', 'person': {'first_name': 'Frank', 'last_name': 'Calderoni', 'permalink': 'frank-calderoni'}}, {'is_past': False, 'title': 'Sr Director, Creative Cloud', 'person': {'first_name': 'Bryan', 'last_name': 'Mason', 'permalink': 'bryan-mason'}}, {'is_past': False, 'title': 'Principal Scientist', 'person': {'first_name': 'Walter', 'last_name': 'Chang', 'permalink': 'walter-chang'}}, {'is_past': False, 'title': 'Computer Scientist, Intern', 'person': {'first_name': 'Mohamed', 'last_name': 'El-Zohairy', 'permalink': 'mohamed-el-zohairy'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Vlad', 'last_name': 'Margulis', 'permalink': 'vlad-margulis'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ben', 'last_name': 'Forta', 'permalink': 'ben-forta'}}, {'is_past': False, 'title': 'Principal, Customer Experience', 'person': {'first_name': 'Ben', 'last_name': 'Watson', 'permalink': 'ben-watson'}}, {'is_past': False, 'title': 'Enterprise Mobile Architect', 'person': {'first_name': 'Stacy', 'last_name': 'Young', 'permalink': 'stacy-young'}}, {'is_past': False, 'title': 'Network Engineer', 'person': {'first_name': 'Luke', 'last_name': 'Marrott', 'permalink': 'luke-marrott'}}, {'is_past': False, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Dan', 'last_name': 'Silmore', 'permalink': 'dan-silmore'}}, {'is_past': False, 'title': 'Technical Delivery Manager', 'person': {'first_name': 'Joe', 'last_name': 'Cicchetto', 'permalink': 'joe-cicchetto'}}, {'is_past': False, 'title': 'product management and marketing', 'person': {'first_name': 'Aline', 'last_name': 'Yu', 'permalink': 'aline-yu'}}, {'is_past': False, 'title': 'Principal Scientist - Adobe Research Labs', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Amy', 'last_name': 'Banse', 'permalink': 'amy-banse'}}, {'is_past': False, 'title': 'Director of Software Engineering', 'person': {'first_name': 'David', 'last_name': 'Sliwa', 'permalink': 'david-sliwa'}}, {'is_past': False, 'title': 'Senior Computer Scientist II, Lead', 'person': {'first_name': 'Matthew', 'last_name': 'Albright', 'permalink': 'matthew-albright'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Cheryl', 'last_name': 'Kellond', 'permalink': 'cheryl-kellond-2'}}, {'is_past': False, 'title': 'Senior Innovator', 'person': {'first_name': 'Michael', 'last_name': 'Rubin', 'permalink': 'michael-rubin-2'}}, {'is_past': True, 'title': 'Senior Director, Business Operations, Office of the CEO', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Bruce', 'last_name': 'Chizen', 'permalink': 'bruce-chizen'}}, {'is_past': True, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Mark', 'last_name': 'Garrett', 'permalink': 'mark-garrett'}}, {'is_past': True, 'title': 'President / COO', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': True, 'title': 'CFO Day Software', 'person': {'first_name': 'Richard', 'last_name': 'Francis', 'permalink': 'richard-francis-3'}}, {'is_past': True, 'title': 'EVP, Worldwide Products', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Karen', 'last_name': 'Catlin', 'permalink': 'karen-catlin-2'}}, {'is_past': True, 'title': 'Executive VP', 'person': {'first_name': 'Derek', 'last_name': 'Gray', 'permalink': 'derek-gray'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Todd', 'last_name': 'Rowe', 'permalink': 'todd-rowe'}}, {'is_past': True, 'title': 'Senior Vice President and General Manager of Digital Media and Creative Solutions businesses', 'person': {'first_name': 'John', 'last_name': 'Loiacono', 'permalink': 'john-loiacono'}}, {'is_past': True, 'title': 'EVP, Product Divisions', 'person': {'first_name': 'Ross', 'last_name': 'Bott', 'permalink': 'ross-bott'}}, {'is_past': True, 'title': 'SVP,,SVP Intelligent Documents Business Unit', 'person': {'first_name': 'Ivan', 'last_name': 'Koon', 'permalink': 'ivan-koon'}}, {'is_past': True, 'title': 'SVP Business Productivity Business Unit', 'person': {'first_name': 'David', 'last_name': 'Mendels', 'permalink': 'david-mendels'}}, {'is_past': True, 'title': 'SVP and GM, Knowledge Worker Business Unit', 'person': {'first_name': 'Tom', 'last_name': 'Hale', 'permalink': 'tom-hale'}}, {'is_past': True, 'title': 'Vice President and General Manager, Media Solutions', 'person': {'first_name': 'Todd', 'last_name': 'Teresi', 'permalink': 'todd-teresi'}}, {'is_past': True, 'title': 'Vice President of Sales- Digital Marketing: Commercial West,,,Vice President of Sales- Digital Marketing: Conversion & Acquisition Products.', 'person': {'first_name': 'Darren', 'last_name': 'Johnson', 'permalink': 'darren-johnson'}}, {'is_past': True, 'title': 'VP Sales, Americas', 'person': {'first_name': 'Wolfgang', 'last_name': 'Maasberg', 'permalink': 'wolfgang-maasberg'}}, {'is_past': True, 'title': 'VP, Web UX and Engineering Group', 'person': {'first_name': 'Robin', 'last_name': 'Ducot', 'permalink': 'robin-ducot'}}, {'is_past': True, 'title': 'VP Sales Retail, Digital Marketing', 'person': {'first_name': 'Bill', 'last_name': 'Kiriakis', 'permalink': 'bill-kiriakis'}}, {'is_past': True, 'title': 'SVP, Enterprise and Developer BU', 'person': {'first_name': 'David', 'last_name': 'Mendels', 'permalink': 'david-mendels'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'Chris', 'last_name': 'Castro', 'permalink': 'chris-castro'}}, {'is_past': True, 'title': 'VP, Worldwide Services', 'person': {'first_name': 'James', 'last_name': 'Henry', 'permalink': 'james-henry'}}, {'is_past': True, 'title': 'VP Sales West, Omniture Business Unit', 'person': {'first_name': 'Bill', 'last_name': 'Kiriakis', 'permalink': 'bill-kiriakis'}}, {'is_past': True, 'title': 'North American VP of Sales and Operations, Financial Services and Insurance', 'person': {'first_name': 'Thomas', 'last_name': 'Padgett', 'permalink': 'thomas-padgett'}}, {'is_past': True, 'title': 'VP of Marketing and Prod Managment', 'person': {'first_name': 'Stephen', 'last_name': 'Saylor', 'permalink': 'stephen-saylor'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'David', 'last_name': 'Halpin', 'permalink': 'david-halpin'}}, {'is_past': True, 'title': 'Vice President, Product Group', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'VP Core Technologies', 'person': {'first_name': 'Frits', 'last_name': 'Habermann', 'permalink': 'frits-habermann'}}, {'is_past': True, 'title': 'VP Vertical and Solutions Marketing', 'person': {'first_name': 'Eugene', 'last_name': 'Lee', 'permalink': 'eugene-lee'}}, {'is_past': True, 'title': 'Vice President Product', 'person': {'first_name': 'Michele', 'last_name': 'Turner', 'permalink': 'michele-turner'}}, {'is_past': True, 'title': 'VP of Marketing & Business Development', 'person': {'first_name': 'Jeff', 'last_name': 'Whatcott', 'permalink': 'jeff-whatcott'}}, {'is_past': True, 'title': 'Principal Scientist', 'person': {'first_name': 'Gary', 'last_name': 'Grossman', 'permalink': 'gary-grossman'}}, {'is_past': True, 'title': 'President, Worldwide Field Operations', 'person': {'first_name': 'Stephen', 'last_name': 'Elop', 'permalink': 'stephen-elop'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'John', 'last_name': 'Shapiro', 'permalink': 'john-shapiro'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Fitzpatrick', 'permalink': 'michael-fitzpatrick'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Prod Mkt Mgr, Engr Mgr.', 'person': {'first_name': 'Mitch', 'last_name': 'Stein', 'permalink': 'mitch-stein'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'James', 'last_name': 'Alexander', 'permalink': 'james-alexander'}}, {'is_past': True, 'title': 'EIR', 'person': {'first_name': 'Steve', 'last_name': 'Yankovich', 'permalink': 'steve-yankovich'}}, {'is_past': True, 'title': 'Staff Consultant, Omniture', 'person': {'first_name': 'Pablo', 'last_name': 'Cohan', 'permalink': 'pablo-cohan'}}, {'is_past': True, 'title': 'APAC Education Director', 'person': {'first_name': 'John', 'last_name': 'Treloar', 'permalink': 'john-treloar'}}, {'is_past': True, 'title': 'Senior Computer Scientist', 'person': {'first_name': 'Stacy', 'last_name': 'Young', 'permalink': 'stacy-young'}}, {'is_past': True, 'title': 'Controller WW Sales Operations', 'person': {'first_name': 'Ron', 'last_name': 'Sorisho', 'permalink': 'ron-sorisho-2'}}, {'is_past': True, 'title': 'Experience Designer', 'person': {'first_name': 'Marcos', 'last_name': 'Weskamp', 'permalink': 'marcos-weskamp'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Rodrigo', 'last_name': 'Lopez', 'permalink': 'rodrigo-lopez'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'David', 'last_name': 'Yun', 'permalink': 'david-yun'}}, {'is_past': True, 'title': 'Lead Architect (Mobile and Devices), Computer Scientist', 'person': {'first_name': 'Walter', 'last_name': 'Luh', 'permalink': 'walter-luh'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Ned', 'last_name': 'Hayes', 'permalink': 'ned-hayes'}}, {'is_past': True, 'title': 'Product Specialist - Flex/AIR', 'person': {'first_name': 'Nikhil', 'last_name': 'Wason', 'permalink': 'nikhil-wason'}}, {'is_past': True, 'title': 'Senior Director, Customer Experience Management Product & Strategy', 'person': {'first_name': 'Erik', 'last_name': 'Larson', 'permalink': 'erik-larson'}}, {'is_past': True, 'title': 'Mobile QE Lead', 'person': {'first_name': 'Badi', 'last_name': 'Azad', 'permalink': 'badi-azad'}}, {'is_past': True, 'title': 'General Manager, Emerging Markets', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'Senior Product Manager - Mobile / Pervasive Publishing / Adobe Creative Suite', 'person': {'first_name': 'George', 'last_name': 'Arriola', 'permalink': 'george-arriola'}}, {'is_past': True, 'title': 'Sr. Director & Entrepreneur in Residence, Hosted Services', 'person': {'first_name': 'Keith', 'last_name': 'Kitani', 'permalink': 'keith-kitani'}}, {'is_past': True, 'title': 'National Account Manager', 'person': {'first_name': 'Greg', 'last_name': 'Riley', 'permalink': 'greg-riley'}}, {'is_past': True, 'title': 'Product Marketing Intern', 'person': {'first_name': 'Mehrshad', 'last_name': 'Mansouri', 'permalink': 'mehrshad-mansouri'}}, {'is_past': True, 'title': 'Country Manager - Russia & CIS', 'person': {'first_name': 'Pavel', 'last_name': 'Cherkashin', 'permalink': 'pavel-cherkashin'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Chris', 'last_name': 'Hock', 'permalink': 'chris-hock'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Brian', 'last_name': 'Frank', 'permalink': 'brian-frank'}}, {'is_past': True, 'title': 'Sr Director Dynamic Media', 'person': {'first_name': 'Simon', 'last_name': 'Hayhurst', 'permalink': 'simon-hayhurst'}}, {'is_past': True, 'title': 'Vice President, Product Development', 'person': {'first_name': 'Ed', 'last_name': 'Rowe', 'permalink': 'ed-rowe'}}, {'is_past': True, 'title': 'Group Manager, Alliances', 'person': {'first_name': 'Kevin', 'last_name': 'Henshaw', 'permalink': 'kevin-henshaw'}}, {'is_past': True, 'title': 'Entrepreneur in Residence', 'person': {'first_name': 'John', 'last_name': 'Mracek', 'permalink': 'john-mracek'}}, {'is_past': True, 'title': 'QA Engineer', 'person': {'first_name': 'Brian', 'last_name': 'Acton', 'permalink': 'brian-acton'}}, {'is_past': True, 'title': 'Senior Director Core Technologies', 'person': {'first_name': 'Jerry', 'last_name': 'Barber', 'permalink': 'jerry-barber'}}, {'is_past': True, 'title': 'Software Developer (Contract)', 'person': {'first_name': 'Ayan', 'last_name': 'Ray', 'permalink': 'ayan-ray'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kakul', 'last_name': 'Srivastava', 'permalink': 'kakul-srivastava'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Anand', 'last_name': '\"TM\" Taralika', 'permalink': 'anand-tm-taralika'}}, {'is_past': True, 'title': 'Sr. Member, Technical Staff', 'person': {'first_name': 'Peter', 'last_name': 'deVroede', 'permalink': 'peter-devroede'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Varun', 'last_name': 'Parmar', 'permalink': 'varun-parmar'}}, {'is_past': True, 'title': 'Strategic Partner', 'person': {'first_name': 'Brian', 'last_name': 'Maffitt Brian Maffitt', 'permalink': 'brian-maffitt-brian-maffitt'}}, {'is_past': True, 'title': 'Senior Director and General Manager, Acrobat.com', 'person': {'first_name': 'Erik', 'last_name': 'Larson', 'permalink': 'erik-larson'}}, {'is_past': True, 'title': 'senior management positions', 'person': {'first_name': 'John', 'last_name': 'Brennan', 'permalink': 'john-brennan'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Matt', 'last_name': 'Douglas', 'permalink': 'matt-douglas'}}, {'is_past': True, 'title': 'Head of Platform Services', 'person': {'first_name': 'Eric', 'last_name': 'Wittman', 'permalink': 'eric-wittman'}}, {'is_past': True, 'title': 'Sales Representative', 'person': {'first_name': 'Bill', 'last_name': 'Bradford', 'permalink': 'bill-bradford-2'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Susan', 'last_name': 'Spencer', 'permalink': 'susan-spencer'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Danielle', 'last_name': 'Deibler', 'permalink': 'danielle-deibler'}}, {'is_past': True, 'title': 'Art Director', 'person': {'first_name': 'Boris', 'last_name': 'Soliz', 'permalink': 'boris-soliz'}}, {'is_past': True, 'title': 'Worldwide Operations Controller', 'person': {'first_name': 'Edward', 'last_name': 'Brennan', 'permalink': 'edward-brennan'}}, {'is_past': True, 'title': 'Sr. Systems Engineer', 'person': {'first_name': 'Brandon', 'last_name': 'Mcintyre', 'permalink': 'brandon-mcintyre'}}, {'is_past': True, 'title': 'Video Systems Architect, Advanced Technology Labs (ATL)', 'person': {'first_name': 'Andrey', 'last_name': 'Yruski', 'permalink': 'andrey-yruski'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Shai', 'last_name': 'Geva', 'permalink': 'shai-geva'}}, {'is_past': True, 'title': 'DRM/Security Architect and Engineering Manager', 'person': {'first_name': 'Sunil', 'last_name': 'Agrawal', 'permalink': 'sunil-agrawal'}}, {'is_past': True, 'title': 'Computer Scientist - Flash Video DRM, Computer Scientist - VoIP Security, Computer Scientist - Acrobat Security', 'person': {'first_name': 'Andrei', 'last_name': 'Sheretov', 'permalink': 'andrei-sheretov'}}, {'is_past': True, 'title': 'Senior Computer Scientist', 'person': {'first_name': 'Chris', 'last_name': 'Bailey', 'permalink': 'chris-bailey'}}, {'is_past': True, 'title': 'Regional Manager, Russia & CIS', 'person': {'first_name': 'Alexander', 'last_name': 'Potapov', 'permalink': 'alexander-potapov'}}, {'is_past': True, 'title': 'Director - Consumer Products', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'CHANNEL & WWFO COMMUNICATIONS (Contract)', 'person': {'first_name': 'Ashlea', 'last_name': 'Owen', 'permalink': 'ashlea-owen'}}, {'is_past': True, 'title': 'Director, Flash Platform Product Marketing', 'person': {'first_name': 'Bryant', 'last_name': 'Macy', 'permalink': 'bryant-macy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Ritesh', 'last_name': 'Banglani', 'permalink': 'ritesh-banglani'}}, {'is_past': True, 'title': 'Software Engineering Intern', 'person': {'first_name': 'Jeremy', 'last_name': 'Karmel', 'permalink': 'jeremy-karmel'}}, {'is_past': True, 'title': 'Sales and Senior Management and Information Management Software', 'person': {'first_name': 'Rich', 'last_name': 'Kennewick', 'permalink': 'rich-kennewick'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Lauren', 'last_name': 'Nham', 'permalink': 'lauren-nham'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Gunawan', 'last_name': 'Herri', 'permalink': 'gunawan-herri'}}, {'is_past': True, 'title': 'Technical Leadership Positions', 'person': {'first_name': 'Yu-Kai', 'last_name': 'Ng', 'permalink': 'yu-kai-ng'}}, {'is_past': True, 'title': 'Entrepreneur In Residence', 'person': {'first_name': 'Kurt', 'last_name': 'Garbe', 'permalink': 'kurt-garbe'}}, {'is_past': True, 'title': 'SVP, Worldwide Product Development', 'person': {'first_name': 'Shantanu', 'last_name': 'Narayen', 'permalink': 'shantanu-narayen'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Anna', 'last_name': 'Ullrich', 'permalink': 'anna-ullrich'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Robert', 'last_name': 'Tatsumi', 'permalink': 'robert-tatsumi'}}, {'is_past': True, 'title': 'Director of Product Managment', 'person': {'first_name': 'Tapan', 'last_name': 'Bhat', 'permalink': 'tapan-bhat'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sri', 'last_name': 'Chilukuri', 'permalink': 'sri-chilukuri'}}, {'is_past': True, 'title': 'Research Scientist', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': True, 'title': 'Lead Quality Engineer', 'person': {'first_name': 'Dom', 'last_name': 'Sagolla', 'permalink': 'dom-sagolla'}}, {'is_past': True, 'title': 'Sr. Engineering Manager', 'person': {'first_name': 'Carlos', 'last_name': 'M. Icaza', 'permalink': 'carlos-m-icaza'}}, {'is_past': True, 'title': 'Director, Technical Evangelism', 'person': {'first_name': 'Ben', 'last_name': 'Watson', 'permalink': 'ben-watson'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Jon', 'last_name': 'Emerson', 'permalink': 'jon-emerson'}}, {'is_past': True, 'title': 'Senior Computer Scientist / Project Lead', 'person': {'first_name': 'Matthew', 'last_name': 'Kaufman', 'permalink': 'matthew-kaufman'}}, {'is_past': True, 'title': 'Senior Manager, Flash Engineering Team', 'person': {'first_name': 'Gilles', 'last_name': 'Drieu', 'permalink': 'gilles-drieu'}}, {'is_past': True, 'title': 'General Manager, Mobile', 'person': {'first_name': 'Gary', 'last_name': 'Kovacs', 'permalink': 'gary-kovacs'}}, {'is_past': True, 'title': 'VAR Channel Manager', 'person': {'first_name': 'Todd', 'last_name': 'Morris', 'permalink': 'todd-morris'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sean', 'last_name': 'Nichols', 'permalink': 'sean-nichols'}}, {'is_past': True, 'title': 'Senior Technology Strategist, Worldwide Evangelist', 'person': {'first_name': 'Jonathan', 'last_name': 'Knowles', 'permalink': 'jonathan-knowles'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Brendan', 'last_name': 'Clavin', 'permalink': 'brendan-clavin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'MTS', 'person': {'first_name': 'Gaurav', 'last_name': 'Vaish', 'permalink': 'gaurav-vaish'}}, {'is_past': True, 'title': 'Business Development Director', 'person': {'first_name': 'Brian', 'last_name': 'Carman', 'permalink': 'brian-carman'}}, {'is_past': True, 'title': 'Business Operations Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Sr Computer Scientist', 'person': {'first_name': 'Satyajit', 'last_name': 'Sahu', 'permalink': 'satyajit-sahu'}}, {'is_past': True, 'title': 'Senior Manager, Corporate Development', 'person': {'first_name': 'Christian', 'last_name': 'DiCarlo', 'permalink': 'christian-dicarlo'}}, {'is_past': True, 'title': 'Senior Product Manager - Mobile Development / Adobe GoLive', 'person': {'first_name': 'George', 'last_name': 'Arriola', 'permalink': 'george-arriola'}}, {'is_past': True, 'title': 'Manager FP&A', 'person': {'first_name': 'Jeff', 'last_name': 'Baeth', 'permalink': 'jeff-baeth'}}, {'is_past': True, 'title': 'Product Manager, Emerging Technologies', 'person': {'first_name': 'Irv', 'last_name': 'Remedios', 'permalink': 'irv-remedios'}}, {'is_past': True, 'title': 'QA Engineer', 'person': {'first_name': 'Konstantin', 'last_name': 'Martynenko', 'permalink': 'konstantin-martynenko'}}, {'is_past': True, 'title': 'Algorithmist', 'person': {'first_name': 'Bill', 'last_name': 'Softky', 'permalink': 'bill-softky'}}, {'is_past': True, 'title': 'Senior User Interface Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'Vice President & General Manager, Digital Imaging and Dynamic Media', 'person': {'first_name': 'Doug', 'last_name': 'Mack', 'permalink': 'doug-mack'}}, {'is_past': True, 'title': 'Global Alliance Manager', 'person': {'first_name': 'Atul', 'last_name': 'Satija', 'permalink': 'atul-satija'}}, {'is_past': True, 'title': 'Director, Corporate Development', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': True, 'title': 'OEM Sales Business Manager', 'person': {'first_name': 'David', 'last_name': 'Barsocchini', 'permalink': 'david-barsocchini'}}, {'is_past': True, 'title': 'Director of Engineering, Platform Services', 'person': {'first_name': 'Mike', 'last_name': 'Melnicki', 'permalink': 'mike-melnicki'}}, {'is_past': True, 'title': 'VP of Corporate Strategy and Finance', 'person': {'first_name': 'Joe', 'last_name': 'Nemeth', 'permalink': 'joe-nemeth'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Andy', 'last_name': 'Keidel', 'permalink': 'andy-keidel'}}, {'is_past': True, 'title': 'Lead Computer Scientist/Architect', 'person': {'first_name': 'Greg', 'last_name': 'Burch', 'permalink': 'gregory-burch'}}, {'is_past': True, 'title': 'VP, WW Education Vertical Business', 'person': {'first_name': 'Peter', 'last_name': 'Isaacson', 'permalink': 'peter-isaacson'}}, {'is_past': True, 'title': 'Senior Product Marketing Manager', 'person': {'first_name': 'Paul', 'last_name': 'Kim', 'permalink': 'paul-kim-3'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Geoff', 'last_name': 'Greene', 'permalink': 'geoff-greene'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Randy', 'last_name': 'Adams', 'permalink': 'randy-adams'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Eswar', 'last_name': 'Priyadarshan', 'permalink': 'eswar-priyadarshan'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Sumeer', 'last_name': 'Goyal', 'permalink': 'sumeer-goyal'}}, {'is_past': True, 'title': 'Director, Mobile Product Experience', 'person': {'first_name': 'Rhett', 'last_name': 'Woods', 'permalink': 'rhett-woods'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Dave', 'last_name': 'Corboy', 'permalink': 'dave-corboy'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Koblas', 'permalink': 'david-koblas'}}, {'is_past': True, 'title': 'Computer Scientist', 'person': {'first_name': 'Matt', 'last_name': 'Ramme', 'permalink': 'matt-ramme'}}, {'is_past': True, 'title': 'Director, WW Channel & Licensing Operations', 'person': {'first_name': 'Julio', 'last_name': 'Tapia', 'permalink': 'julio-tapia'}}, {'is_past': True, 'title': 'VP Web Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Young', 'permalink': 'andy-young-3'}}, {'is_past': True, 'title': 'Manager Pacific Rim Display Products', 'person': {'first_name': 'John', 'last_name': 'Nogrady', 'permalink': 'john-nogrady'}}, {'is_past': True, 'title': 'Product Management', 'person': {'first_name': 'Alok', 'last_name': 'Goel', 'permalink': 'alok-goel'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Aditya', 'last_name': 'Bansod', 'permalink': 'aditya-bansod'}}, {'is_past': True, 'title': 'Intern Product Manager & Developer', 'person': {'first_name': 'Ayden', 'last_name': 'Ye', 'permalink': 'ayden-ye'}}, {'is_past': True, 'title': 'Director, Customer Experience Management,,,Director, North America Customer Care,,, Director, Enterprise & Developer Support ,,, Director, Solution Services (Pre-Sales),,,, Project Manager/Director Solution Delivery', 'person': {'first_name': 'Carol', 'last_name': 'Richardson', 'permalink': 'carol-richardson'}}, {'is_past': True, 'title': 'GM Worldwide Anti-Piracy', 'person': {'first_name': 'Suresh', 'last_name': 'Balasubramanian', 'permalink': 'suresh-balasubramanian'}}, {'is_past': True, 'title': 'Software Engineer, Acrobat', 'person': {'first_name': 'Amer', 'last_name': 'Deeba', 'permalink': 'amer-deeba'}}, {'is_past': True, 'title': 'Vice President, Global Client Services', 'person': {'first_name': 'Steve', 'last_name': 'Wellen', 'permalink': 'steve-wellen'}}, {'is_past': True, 'title': 'Head of sales in Russia and CIS', 'person': {'first_name': 'Alexander', 'last_name': 'Potapov', 'permalink': 'alexander-potapov'}}, {'is_past': True, 'title': 'Lead Computer Scientist', 'person': {'first_name': 'Todd', 'last_name': 'Zino', 'permalink': 'todd-zino'}}, {'is_past': True, 'title': 'Contractor - Product Manager for Privacy', 'person': {'first_name': 'Lucas', 'last_name': 'Nelson', 'permalink': 'lucas-nelson'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Jon', 'last_name': 'Melamut', 'permalink': 'jon-melamut'}}, {'is_past': True, 'title': 'SVP and GM of Digital Enterprise Solutions Business Unit, Sr. VP of Corp Development', 'person': {'first_name': 'Rob', 'last_name': 'Tarkoff', 'permalink': 'rob-tarkoff'}}, {'is_past': True, 'title': 'Adobe Ventures Associate', 'person': {'first_name': 'Stephen', 'last_name': 'Henkenmeier', 'permalink': 'stephen-henkenmeier'}}, {'is_past': True, 'title': 'Head of Marketing, Adobe Marketing Cloud, EMEA', 'person': {'first_name': 'Neil', 'last_name': 'Morgan', 'permalink': 'neil-morgan'}}, {'is_past': True, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Greg', 'last_name': 'Wrenn', 'permalink': 'greg-wrenn'}}, {'is_past': True, 'title': 'Bilingual Consultant', 'person': {'first_name': 'Jordan', 'last_name': 'Davis', 'permalink': 'jordan-davis-3'}}, {'is_past': True, 'title': 'Senior Software Engineer and Manager', 'person': {'first_name': 'Mark', 'last_name': 'Hagerty', 'permalink': 'mark-hagerty'}}, {'is_past': True, 'title': 'Principal Scientist', 'person': {'first_name': 'Scott', 'last_name': 'Kleper', 'permalink': 'scott-kleper'}}, {'is_past': True, 'title': 'Management Positions', 'person': {'first_name': 'Niall', 'last_name': \"O'Driscoll\", 'permalink': 'niall-o-driscoll'}}], 'competitions': [{'competitor': {'name': 'Apple', 'permalink': 'apple'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Sun Microsystems', 'permalink': 'sun-microsystems'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Metacafe', 'permalink': 'metacafe'}}, {'competitor': {'name': 'Transcensus', 'permalink': 'transcensus'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Conjungo', 'permalink': 'conjungo'}}, {'title': 'IT Hosting', 'is_past': False, 'provider': {'name': 'Silverthorn Networks Incorporated', 'permalink': 'silverthorn-networks-incorporated'}}, {'title': 'Property Tax', 'is_past': False, 'provider': {'name': 'Haws Consulting Group', 'permalink': 'haws-consulting-group'}}, {'title': '', 'is_past': False, 'provider': {'name': 'btrax', 'permalink': 'btrax'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': None, 'source_description': None, 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 1, 'company': {'name': '56.com', 'permalink': '56-com'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://www.techcrunch.com/2008/06/03/veoh-raises-another-30-million-from-intel-capital-adobe-and-gordon-crawford/', 'source_description': 'Veoh Raises Another $30 Million From Intel Capital, Adobe, and Gordon Crawford', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 3, 'company': {'name': 'Veoh', 'permalink': 'veoh'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2008/08/24/demandbase-raises-8-million-for-online-lead-generation-platform/', 'source_description': 'Demandbase Raises $8 Million For Online Lead Generation Platform', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 25, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://venturebeat.com/2007/03/22/scanr-a-cross-device-scanner-company-raises-8m-more/', 'source_description': 'ScanR, a cross-device scanner company, raises $8M more', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 3, 'funded_day': 22, 'company': {'name': 'scanR', 'permalink': 'scanr'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/05/12/demandbase-raises-10-million-for-b2b-marketing-software/', 'source_description': 'Demandbase Raises $10 Million For B2B Marketing Software', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 12, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2013/03/27/demandbase-raises-15m-more-from-scale-adobe-and-others-for-b2b-marketing-software/', 'source_description': 'Demandbase Raises $15M More From Scale, Adobe And Others For B2B Marketing Services', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 28, 'company': {'name': 'Demandbase', 'permalink': 'demandbase'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://marketbrief.com/scrybe-corp-form-d-sec-filng-000001', 'source_description': 'New $1M round raised by Scrybe Corp', 'raised_amount': 1009000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Scrybe', 'permalink': 'scrybe'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 3400000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://en.wikipedia.org/wiki/Macromedia', 'source_description': 'Wikipedia', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'Macromedia', 'permalink': 'macromedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/Adobe-buys-Web-word-processor-Buzzword/2100-1014_3-6210746.html', 'source_description': 'Adobe buys web word processor Buzzword', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Virtual Ubiquity', 'permalink': 'virtual-ubiquity'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2006/10/20/adobe-acquires-serious-magic-to-push-flash-video/', 'source_description': 'Adobe acquires Serious Magic to push Flash video', 'acquired_year': 2006, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Serious Magic', 'permalink': 'serious-magic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/05/adobe_buys_rich.html', 'source_description': 'Alarm:Clock', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 3, 'company': {'name': 'Adobe Scene7', 'permalink': 'sence7'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/08/31/adobe-buys-business-catalyst-goodbarry/', 'source_description': 'Adobe Buys Business Catalyst / GoodBarry', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'GoodBarry', 'permalink': 'goodbarry'}}, {'price_amount': 1800000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://paidcontent.org/article/419-adobe-offers-1.8-billion-to-merge-with-audience-analytics-provider-omni/', 'source_description': 'Adobe Buys Omniture For $1.8 Billion', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 23, 'company': {'name': 'Omniture', 'permalink': 'omniture'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Amicima', 'permalink': 'amicima'}}, {'price_amount': 240000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/07/27/adobe-buys-day-software-240-million/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Day Software', 'permalink': 'day-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_OCR_Systems_Inc-261876020', 'source_description': 'Adobe Systems Inc acquires OCR Systems Inc', 'acquired_year': 1992, 'acquired_month': 6, 'acquired_day': 29, 'company': {'name': 'OCR Systems', 'permalink': 'ocr-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Emerald_City_Software-162639020', 'source_description': 'Adobe Systems Inc acquires Emerald City Software', 'acquired_year': 1990, 'acquired_month': 3, 'acquired_day': 19, 'company': {'name': 'Emerald City Software', 'permalink': 'emerald-city-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_BluePoint_Technologies-167911020', 'source_description': 'Adobe Systems Inc acquires BluePoint Technologies Inc', 'acquired_year': 1990, 'acquired_month': 6, 'acquired_day': 20, 'company': {'name': 'BluePoint Technologies', 'permalink': 'bluepoint-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Aldus_Corp-395638020', 'source_description': 'Adobe Systems Inc acquires Aldus Corp', 'acquired_year': 1994, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'Aldus Corp', 'permalink': 'aldus-corp'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://news.cnet.com/2300-10798_3-10002523.html', 'source_description': 'Adobe Systems Inc acquires Photoshop', 'acquired_year': 1995, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Photoshop', 'permalink': 'photoshop'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Frame_Technology_Corp-475603020', 'source_description': 'Adobe Systems Inc acquires Frame Technology Corp', 'acquired_year': 1995, 'acquired_month': 10, 'acquired_day': 30, 'company': {'name': 'Frame Technology', 'permalink': 'frame-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/ADOBE+SYSTEMS+ACQUIRES+ARES+SOFTWARE-a018302704', 'source_description': 'ADOBE SYSTEMS ACQUIRES ARES SOFTWARE', 'acquired_year': 1996, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'Ares Software', 'permalink': 'ares-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Sandcastle_Inc-672845020', 'source_description': 'Adobe Systems Inc acquires Sandcastle Inc', 'acquired_year': 1997, 'acquired_month': 3, 'acquired_day': 14, 'company': {'name': 'Sandcastle', 'permalink': 'sandcastle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_HyWay_Ferranti-693250040', 'source_description': 'Adobe Systems Inc acquires HyWay Ferranti', 'acquired_year': 1997, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'HyWay Ferranti', 'permalink': 'hyway-ferranti'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_DigiDox_Inc-695591020', 'source_description': 'Adobe Systems Inc acquires DigiDox Inc', 'acquired_year': 1997, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'DigiDox', 'permalink': 'digidox'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_GoLive_Systems_Inc-830160020', 'source_description': 'Adobe Systems Inc acquires GoLive Systems Inc', 'acquired_year': 1999, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'GoLive Systems', 'permalink': 'golive-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Fotiva_Inc-1250063020', 'source_description': 'Adobe Systems Inc acquires Fotiva Inc', 'acquired_year': 2001, 'acquired_month': 12, 'acquired_day': 5, 'company': {'name': 'Fotiva', 'permalink': 'fotiva'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Accelio_Corp_from_Adobe_Systems_Canada_Inc-1267643040', 'source_description': 'Adobe Systems Inc acquires Accelio Corp from Adobe Systems Canada Inc', 'acquired_year': 2002, 'acquired_month': 4, 'acquired_day': 15, 'company': {'name': 'Accelio Corporation', 'permalink': 'accelio-corporation'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_OKYZ_SA-1648209040', 'source_description': 'Adobe Systems Inc acquires OKYZ SA', 'acquired_year': 2004, 'acquired_month': 12, 'acquired_day': 7, 'company': {'name': 'OKYZ', 'permalink': 'okyz'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Navisware-1724617020', 'source_description': 'Adobe Systems Inc acquires Navisware', 'acquired_year': 2005, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Navisware', 'permalink': 'navisware'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://designorati.com/articles/t1/graphic-design/793/adobe-acquires-trade-and-technologies-france.php', 'source_description': 'Adobe Acquires Trade and Technologies France', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Trade and Technologies France', 'permalink': 'trade-and-technologies-france'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Pixmantec_ApS-1771752040', 'source_description': 'Adobe Systems Inc acquires Pixmantec ApS', 'acquired_year': 2006, 'acquired_month': 6, 'acquired_day': 26, 'company': {'name': 'Pixmantec', 'permalink': 'pixmantec'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_InterAKT-1790890040', 'source_description': 'Adobe Systems Inc acquires InterAKT', 'acquired_year': 2006, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'InterAKT', 'permalink': 'interakt'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.yawah.com/en/company/news/2008/9/15/adobe-systems-acquires-yawah-aps', 'source_description': 'Adobe Systems acquires YaWah', 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 15, 'company': {'name': 'YaWah', 'permalink': 'yawah'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/01/18/adobe-demdex-acquisition/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe beefs up its ad targeting by acquiring Demdex', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Demdex', 'permalink': 'demdex'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/18/adobe-acquires-electronic-signature-startup-echosign/', 'source_description': 'Adobe Acquires Electronic Signature Startup EchoSign', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 18, 'company': {'name': 'EchoSign', 'permalink': 'echosign'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/543838/adobe-acquires-iridas-technology', 'source_description': 'ADOBE ACQUIRES IRIDAS TECHNOLOGY', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 7, 'company': {'name': 'IRIDAS', 'permalink': 'iridas'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/10/03/adobe-acquires-developer-of-html5-mobile-app-framework-phonegap-nitobi/', 'source_description': 'Adobe Acquires Developer Of HTML5 Mobile App Framework PhoneGap Nitobi', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Nitobi Software', 'permalink': 'nitobi-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/10/03/adobe-acquires-cloud-font-site-typekit-as-part-of-larger-creative-cloud-service-offering/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe acquires cloud font site Typekit as part of larger creative cloud service offering', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 3, 'company': {'name': 'Typekit', 'permalink': 'typekit'}}, {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2011/11/01/adobe-buys-auditude/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Adobe acquires video ad platform Auditude for $120M (updated)', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 1, 'company': {'name': 'Auditude', 'permalink': 'auditude'}}, {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/11/30/adobe-acquires-efficient-frontier-to-boost-its-digital-marketing-solutions/', 'source_description': 'Adobe Acquires Efficient Frontier To Boost Its Digital Marketing Solutions', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Efficient Frontier', 'permalink': 'efficient-frontier'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2012/12/20/adobe-acquires-behance/', 'source_description': 'Adobe acquires Behance to bring more community into Creative Cloud', 'acquired_year': 2012, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'Behance', 'permalink': 'behance'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/adobe-acqui-hires-thumb-labs-to-make-mobile-apps-for-behance-and-its-new-creative-cloud/', 'source_description': 'Adobe Acqui-hires Thumb Labs To Make Mobile Apps For Behance And Its New Creative Cloud', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'company': {'name': 'Thumb Labs', 'permalink': 'thumb-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/28/adobe-acquires-creative-consultancy-ideacodes-names-co-founders-as-creative-directors-of-creative-cloud/', 'source_description': 'Adobe Acqui-hires Creative Consultancy Ideacodes, Names Co-Founders As Creative Directors Of Creative Cloud', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'company': {'name': 'Ideacodes', 'permalink': 'ideacodes'}}, {'price_amount': 600000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/27/adobe-acquires-conversational-marketing-platform-neolane-for-600m-in-cash/', 'source_description': 'Adobe Acquires Conversational Marketing Platform Neolane For $600M In Cash To Bolster Its Marketing Cloud', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'Neolane', 'permalink': 'neolane'}}], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.320052, 'longitude': -121.877636}], 'milestones': [{'id': 6, 'description': 'Adobe announced new content from MTV Networks, Comedy Central and CBS will be added to Adobe Media Player. The Adobe Media Player now features 15,000 pieces of content with more than 400 shows provided from major broadcasters and content publishers.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 8642, 'description': 'Adobe Posts Record Revenue, Up 42 Percent To $990 Million', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2010/09/21/adobe-posts-record-revenue-up-42-percent-to-990-million/', 'source_text': '', 'source_description': 'Adobe Posts Record Revenue, Up 42 Percent To $990 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 9999, 'description': 'Adobe Systems Inc acquires LaserTools-Language Tech from LaserTools Corp', 'stoned_year': 1992, 'stoned_month': 6, 'stoned_day': 1, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_LaserTools_Language_Tech_from_LaserTools_Corp-257051020', 'source_text': '', 'source_description': 'Adobe Systems Inc acquires LaserTools-Language Tech from LaserTools Corp', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}, {'id': 10015, 'description': 'Adobe Systems Inc acquires Yellow Dragon Software-Tech from Yellow Dragon Software Corp', 'stoned_year': 2003, 'stoned_month': 11, 'stoned_day': 10, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/Adobe_Systems_Inc_acquires_Yellow_Dragon_Software_Tech_from_Yellow_Dragon_Software_Corp-1449344040', 'source_text': '', 'source_description': 'Adobe Systems Inc acquires Yellow Dragon Software-Tech from Yellow Dragon Software Corp', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Adobe Systems', 'permalink': 'adobe-systems'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1986, 'pub_month': 8, 'pub_day': 22, 'stock_symbol': 'NASDAQ:ADBE'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

Adobe demoing at FinovateSpring 2011

'}, {'embed_code': ' ', 'description': '

Adobe demoing at FinovateSpring 2013

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3606/43606v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3606/43606v1-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/3606/43606v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.crunchbase.com/financial-organization/adobe-ventures', 'title': 'Adobe Ventures'}, {'external_url': 'http://video.marketwatch.com/market/business/fortune/companies/adobe-systems.htm?cpg=1', 'title': 'Adobe Systems Video and Audio on MarketWatch'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e62'), 'name': 'JumpBox', 'permalink': 'jumpbox', 'crunchbase_url': 'http://www.crunchbase.com/company/jumpbox', 'homepage_url': 'http://www.jumpbox.com', 'blog_url': 'http://blog.jumpbox.com', 'blog_feed_url': 'http://www.jumpbox.com/syndicate.xml', 'twitter_username': 'jumpbox', 'category_code': 'software', 'number_of_employees': 5, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 27, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'serversoftware, virtualization, cloudcomputing, virtualappliances', 'alias_list': '', 'email_address': 'info@jumpbox.com', 'phone_number': '602.492.4218', 'description': 'Open Source as a service', 'created_at': 'Thu Jul 26 11:17:35 UTC 2007', 'updated_at': 'Thu Jul 29 02:51:22 UTC 2010', 'overview': '

JumpBox is a server software management company. It’s focused on easing the deployment and management of various different softwares for collaborative projects. Initially inspired by collaboration in the open source world, JumpBox makes collaborative tools easier to use by making them easier to install on servers.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0000/3820/3820v1-max-150x150.png'], [[200, 42], 'assets/images/resized/0000/3820/3820v1-max-250x250.png'], [[200, 42], 'assets/images/resized/0000/3820/3820v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'JumpBox', 'permalink': 'jumpbox'}, {'name': 'Virtual Movable Type', 'permalink': 'virtual-movable-type'}], 'relationships': [{'is_past': None, 'title': 'CEO', 'person': {'first_name': 'Kimbro', 'last_name': 'Staken', 'permalink': 'kimbro-staken'}}, {'is_past': None, 'title': 'COO', 'person': {'first_name': 'Sean', 'last_name': 'Tierney', 'permalink': 'sean-tierney'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': 'PO Box 15265', 'address2': '', 'zip_code': '85060', 'city': 'Phoenix', 'state_code': 'AZ', 'country_code': 'USA', 'latitude': 33.429864, 'longitude': -111.944967}], 'milestones': [{'id': 143, 'description': 'JumpBox Releases 12 Updated Production JumpBoxes that Work with Amazon EC2', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://www.jumpbox.com/node/1244', 'source_text': \"Fifteen minutes from now you could be running any of the JumpBoxes that are now available as public beta AMI's on Amazon's EC2 service. As the least technical person in our office, I've known what EC2 is in the abstract sense for awhile now. Let me say it was extremely satisfying to finally fire up a JumpBox on EC2 and see how that service works first hand. I took screenshots of the entire process start to finish (which took just under 15min) in order to share here for anyone else who might be as daunted by EC2 as I was.\\r\\n\\r\\nIt should be noted that EC2 as a web hosting mechanism has some flaws (no persistent disk storage so if you're node dies you can lose data not to mention your app can come back up under another IP address and disappear from its domain- this is not a hosting substitute for critical apps at this point). But this is a very slick way to get a public instance of a JumpBox running quickly for a non-critical application. It's perfect for a scenario where you need to evaluate an application with a distributed team or proof a job for a remote client.\\r\\n\\r\\nHere are the steps that I took to get the MarKamp.org wiki working yesterday:\\r\\n# First you'll need to setup an account on Amazon Webservices if you don't already have one. Go to aws.amazon.com, complete their application process and specify your payment details.\", 'source_description': \"A Beginner's Guide to running a JumpBox on Amazon's EC2 service\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}, {'id': 602, 'description': 'Six Apart and JumpBox Launch Virtual Movable Type', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.sixapart.com/about/press/2008/09/six-apart-and-jumpbox-announce.html', 'source_text': '', 'source_description': 'Six Apart and JumpBox Announce Virtual Movable Type ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}, {'id': 4490, 'description': 'JumpBox unveils \"Open Source as a service\"', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 23, 'source_url': 'http://blog.jumpbox.com/2010/03/23/presenting-open-source-as-a-service/', 'source_text': None, 'source_description': 'JumpBox Blog', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'JumpBox', 'permalink': 'jumpbox'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e63'), 'name': 'Phonezoo', 'permalink': 'phonezoo', 'crunchbase_url': 'http://www.crunchbase.com/company/phonezoo', 'homepage_url': 'http://www.phonezoo.com', 'blog_url': 'http://phonezoo.wordpress.com/', 'blog_feed_url': 'http://blog.phonezoo.com/feed/', 'twitter_username': 'phonezoo', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'phonezoo, ringtones, crunchbase, techcrunch', 'alias_list': '', 'email_address': 'info@phonezoo.com', 'phone_number': '', 'description': '', 'created_at': 'Thu Jul 26 11:33:04 UTC 2007', 'updated_at': 'Fri Nov 01 23:27:58 UTC 2013', 'overview': '

Phonezoo is a Silicon Valley based company focused on creating world class mobile products and applications.

\\n\\n

Our newest product offering, Streamzoo, helps you share and discover streams of mobile photos and videos. With mobile phone cameras getting sophisticated, there is an explosion of mobile media around us. Finding & sharing mobile photos and videos is becoming challenging - enter Streamzoo - perfect for sharing moments and experiences with the world or just your friends. Search for streams, see what’s trending now, and stay up to date with your friends’ streams.

\\n\\n

Introduced in 2006, Phonezoo.com has become the leading mobile entertainment website in the US. Its free to the end-users, ad-supported and profitable. Phonezoo is a ringtone service that lets you make your own ringtones, download them to your phone and share them with your friends. The site smartly gets around copyright issues by having users create ringtones using songs that they upload.

\\n\\n

Phonezoo has received an undisclosed amount of angel funding led by Tim Draper.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0000/3823/3823v1-max-150x150.png'], [[210, 44], 'assets/images/resized/0000/3823/3823v1-max-250x250.png'], [[210, 44], 'assets/images/resized/0000/3823/3823v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'PhoneZoo', 'permalink': 'phonezoo'}, {'name': 'Streamzoo', 'permalink': 'streamzoo'}], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Ram', 'last_name': 'Ramkumar', 'permalink': 'ram-ramkumar'}}, {'is_past': False, 'title': 'Founder & VP of Product Management', 'person': {'first_name': 'Manish', 'last_name': 'Vaidya', 'permalink': 'manish-vaidya'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Bipin', 'last_name': 'Parmar', 'permalink': 'bipin-parmar'}}], 'competitions': [{'competitor': {'name': 'Zedge', 'permalink': 'zedge'}}, {'competitor': {'name': 'Myxer', 'permalink': 'myxer'}}, {'competitor': {'name': 'Thumbplay', 'permalink': 'thumbplay'}}, {'competitor': {'name': 'PlayPhone', 'permalink': 'playphone'}}, {'competitor': {'name': 'Bongotones.com', 'permalink': 'bongotones-com'}}], 'providerships': [], 'total_money_raised': '$2.06M', 'funding_rounds': [{'id': 259, 'round_code': 'a', 'source_url': 'http://venturebeat.com/2006/11/14/phonezoo-offers-free-extensive-ringtone-download-service/', 'source_description': 'Phonezoo offers free, extensive ringtone download service', 'raised_amount': 560000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Timothy', 'last_name': 'Draper', 'permalink': 'timothy-draper'}}]}, {'id': 260, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1270 Oakmead Pkwy, Suite 214', 'address2': '', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.386376, 'longitude': -121.991471}], 'milestones': [{'id': 14481, 'description': 'Announced new mobile application - Streamzoo', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 27, 'source_url': 'http://www.prweb.com/releases/2011/03/prweb5200084.htm', 'source_text': None, 'source_description': 'Make Room On Your Phone’s Home Screen, Streamzoo is Here ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Phonezoo', 'permalink': 'phonezoo'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e64'), 'name': 'LongJump', 'permalink': 'longjump', 'crunchbase_url': 'http://www.crunchbase.com/company/longjump', 'homepage_url': 'http://longjump.com', 'blog_url': 'http://www.longjumpblog.com/blog/', 'blog_feed_url': 'http://www.longjumpblog.com/blog/feed/', 'twitter_username': 'longjump', 'category_code': 'enterprise', 'number_of_employees': 30, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'application, customapplications, crm, customer-relationship-management, cloud, paas, platform-as-a-service, saas, software-as-a-service', 'alias_list': None, 'email_address': '', 'phone_number': '408.774.9474 x350', 'description': 'Cloud Application Platform', 'created_at': 'Thu Jul 26 13:33:50 UTC 2007', 'updated_at': 'Sat Apr 27 07:08:55 UTC 2013', 'overview': '

LongJump provides easily customizable Web applications for managing and coordinating businesses, teams, and information. LongJump provides Platform as a Service (PaaS) which allows non-programmers to design their own applications.

\\n\\n

Ideally, no programming skills would be needed to make a program such as a shared contact and calendar resource for a small business. Still, users must be technically savvy. LongJump offers a large catalog of pre-made applications which a user may browse and chose from. Chosen applications can be customized to suit the needs of the user or business. Customization is claimed to be as easy as dragging and dropping new fields or extensions into the base application. If this is the case then expect to see many businesses adopt LongJump in the near future.

\\n\\n

Completed applications can be shared amongst LongJump users to facilitate easier application building for others. Of course, sharing your applications is optional, however, if you decided to share, your data will be kept private. Competitors include Dabble DB, Zoho Creator, WyaWorks and Coghead.

', 'image': {'available_sizes': [[[150, 89], 'assets/images/resized/0000/3829/3829v1-max-150x150.png'], [[200, 119], 'assets/images/resized/0000/3829/3829v1-max-250x250.png'], [[200, 119], 'assets/images/resized/0000/3829/3829v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'LongJump', 'permalink': 'longjump'}], 'relationships': [{'is_past': False, 'title': 'Founder, CEO & CTO', 'person': {'first_name': 'Pankaj', 'last_name': 'Malviya', 'permalink': 'pankaj-malviya'}}], 'competitions': [{'competitor': {'name': 'Zoho', 'permalink': 'zoho'}}, {'competitor': {'name': 'Dabble DB', 'permalink': 'dabbledb'}}, {'competitor': {'name': 'Coghead', 'permalink': 'coghead'}}, {'competitor': {'name': 'Rollbase', 'permalink': 'rollbase'}}, {'competitor': {'name': 'Iceberg', 'permalink': 'iceberg'}}, {'competitor': {'name': 'Ragic', 'permalink': 'ragic'}}, {'competitor': {'name': 'Wolf Frameworks', 'permalink': 'wolf-frameworks'}}, {'competitor': {'name': 'Viravis', 'permalink': 'viravis'}}, {'competitor': {'name': 'Eccentex Corporation', 'permalink': 'eccentex-corporation'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/software-ag-acquires-cloud-platform-152000989.html', 'source_description': 'Software AG acquires Cloud Platform vendor LongJump', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '1230 Midas Way, Ste 210', 'address2': '', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.384651, 'longitude': -121.992132}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 73], 'assets/images/resized/0010/7879/107879v2-max-150x150.png'], [[250, 122], 'assets/images/resized/0010/7879/107879v2-max-250x250.png'], [[450, 220], 'assets/images/resized/0010/7879/107879v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 122], 'assets/images/resized/0014/0117/140117v2-max-150x150.png'], [[250, 204], 'assets/images/resized/0014/0117/140117v2-max-250x250.png'], [[450, 367], 'assets/images/resized/0014/0117/140117v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e65'), 'name': 'Relationals', 'permalink': 'relationals', 'crunchbase_url': 'http://www.crunchbase.com/company/relationals', 'homepage_url': 'http://relationals.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': None, 'email_address': '', 'phone_number': '408.774.9474', 'description': None, 'created_at': 'Thu Jul 26 14:20:44 UTC 2007', 'updated_at': 'Tue Feb 10 21:27:11 UTC 2009', 'overview': '

Relationals is a CRM and SFA (Sales Force Automation) software set.

', 'image': {'available_sizes': [[[150, 28], 'assets/images/resized/0001/9702/19702v1-max-150x150.png'], [[201, 38], 'assets/images/resized/0001/9702/19702v1-max-250x250.png'], [[201, 38], 'assets/images/resized/0001/9702/19702v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '1230 Midas Way', 'address2': 'Ste 210', 'zip_code': '94085', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.384651, 'longitude': -121.992132}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

Vator.tv Interview

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e66'), 'name': 'Wishpot', 'permalink': 'wishpot', 'crunchbase_url': 'http://www.crunchbase.com/company/wishpot', 'homepage_url': 'http://www.wishpot.com', 'blog_url': 'http://blogs.wishpot.com', 'blog_feed_url': 'http://blogs.wishpot.com/wishpot/index.rdf', 'twitter_username': 'wishpot', 'category_code': 'ecommerce', 'number_of_employees': 10, 'founded_year': 2006, 'founded_month': 11, 'founded_day': 9, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social, shopping', 'alias_list': '', 'email_address': 'feedback@wishpot.com', 'phone_number': '(888) 763-3169', 'description': 'Social shopping service', 'created_at': 'Thu Jul 26 16:22:41 UTC 2007', 'updated_at': 'Mon Jun 17 16:38:11 UTC 2013', 'overview': '

Wishpot is a social shopping service that lets you collect and and share information about items you find online and in stores. By creating a common space in which users can browse, recommend products, get advice, and find new items they’re interested in, Wishpot seeks to simplify shopping. Wishpot is free, and offers a service nearly identical to the social shopping site Kaboodle. The company allows users to post interesting items in “Wish Lists” that can either be made public or private, where details like product image, price, and other personal notes can be added. New or interesting items can be added to Wishpot from any online source by clicking a browser button that can be downloaded from the company’s website. Interestingly, Wishpot also lets you add items to the site by sending a text message or picture from your mobile phone when shopping in an actual store. The site also boasts a product search across thousands of stores powered by Shopping.com with which you can search products, prices, and reviews. Founded in 2006, the company is backed by angel investors including Adrian Hanauer of Curious Office Partners.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0001/7829/17829v3-max-150x150.png'], [[250, 111], 'assets/images/resized/0001/7829/17829v3-max-250x250.png'], [[316, 141], 'assets/images/resized/0001/7829/17829v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wishpot', 'permalink': 'wishpot'}], 'relationships': [{'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Tom', 'last_name': 'Lianza', 'permalink': 'tom-lianza'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Max', 'last_name': 'Ciccotosto', 'permalink': 'max-ciccotosto'}}, {'is_past': True, 'title': 'VP of Sales & Business Development', 'person': {'first_name': 'Matthew', 'last_name': 'Matsudaira', 'permalink': 'matthew-matsudaira'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Alexis', 'last_name': 'Campailla', 'permalink': 'alexis-campailla'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Steven', 'last_name': 'Ashby', 'permalink': 'steven-ashby'}}], 'competitions': [{'competitor': {'name': 'Deal Comet', 'permalink': 'deal-comet'}}, {'competitor': {'name': 'Savvy Circle', 'permalink': 'savvy-circle'}}], 'providerships': [], 'total_money_raised': '$1.3M', 'funding_rounds': [{'id': 250, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Adrian', 'last_name': 'Hanauer', 'permalink': 'adrian-hanauer'}}]}, {'id': 2140, 'round_code': 'a', 'source_url': '', 'source_description': 'email from company', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 4, 'funded_day': 29, 'investments': [{'company': None, 'financial_org': {'name': 'Monster Venture Partners', 'permalink': 'monster-venture-partners'}, 'person': None}]}, {'id': 39302, 'round_code': 'unattributed', 'source_url': '', 'source_description': 'H-Farm Source', 'raised_amount': 300000, 'raised_currency_code': 'EUR', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': {'name': 'H-FARM Ventures', 'permalink': 'h-farm'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.h-farmventures.com/en/news/wishpot_becomes_the_sixth_exit', 'source_description': 'Wishpot becomes the Sixth Exit', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 6, 'acquiring_company': {'name': 'ADOR', 'permalink': 'ador'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.wishlisting.com/2008/08/18/wishlisting-acquired-by-wishpotcom/', 'source_description': 'Wishlisting Acquired by Wishpot.com', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 18, 'company': {'name': 'WishListing', 'permalink': 'wishlisting-com'}}], 'offices': [{'description': 'Headquarters', 'address1': '911 Western Ave.', 'address2': 'Suite 420', 'zip_code': '98104', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.620716, 'longitude': -122.347533}], 'milestones': [{'id': 35293, 'description': 'Exit: Wishpot has been acquired by Lockerz', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 6, 'source_url': 'http://www.h-farmventures.com/en/news/wishpot_becomes_the_sixth_exit', 'source_text': None, 'source_description': 'Wishpot becomes the Sixth Exit', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Wishpot', 'permalink': 'wishpot'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3607/43607v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3607/43607v1-max-250x250.png'], [[450, 283], 'assets/images/resized/0004/3607/43607v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e71'), 'name': 'Forbes', 'permalink': 'forbes', 'crunchbase_url': 'http://www.crunchbase.com/company/forbes', 'homepage_url': 'http://www.forbes.com', 'blog_url': 'http://blogs.forbes.com/people/booze/', 'blog_feed_url': '', 'twitter_username': 'Forbes', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '(212) 366-8900', 'description': '', 'created_at': 'Wed Aug 08 12:12:23 UTC 2007', 'updated_at': 'Fri Nov 15 06:16:55 UTC 2013', 'overview': '

Forbes is a media company that produces both Forbes Magazine, and Forbes.com.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0001/9704/19704v1-max-150x150.png'], [[150, 49], 'assets/images/resized/0001/9704/19704v1-max-250x250.png'], [[150, 49], 'assets/images/resized/0001/9704/19704v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Mike', 'last_name': 'Perlis', 'permalink': 'mike-perlis'}}, {'is_past': False, 'title': 'Associate Editor', 'person': {'first_name': 'Victoria', 'last_name': 'Barret', 'permalink': 'victoria-barret'}}, {'is_past': False, 'title': 'Columnist', 'person': {'first_name': 'Ilya', 'last_name': 'Pozin', 'permalink': 'ilya-pozin'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Micha', 'last_name': 'Kaufman', 'permalink': 'micha-kaufman'}}, {'is_past': False, 'title': 'Blogger, ForbesWoman', 'person': {'first_name': 'Sabrina', 'last_name': 'Parsons', 'permalink': 'sabrina-parsons'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Kelly', 'last_name': 'Reid', 'permalink': 'kelly-reid'}}, {'is_past': False, 'title': 'Managing Editor', 'person': {'first_name': 'Bruce', 'last_name': 'Upbin', 'permalink': 'bruce-upbin'}}, {'is_past': False, 'title': 'Writes a Column', 'person': {'first_name': 'Chris', 'last_name': 'Kreinczes', 'permalink': 'chris-kreinczes'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Erica', 'last_name': 'Swallow', 'permalink': 'erica-swallow'}}, {'is_past': False, 'title': 'Contributor', 'person': {'first_name': 'Dan', 'last_name': 'Munro', 'permalink': 'dan-munro-3'}}, {'is_past': False, 'title': 'Board member', 'person': {'first_name': 'Ted', 'last_name': 'Meisel', 'permalink': 'ted-meisel'}}, {'is_past': False, 'title': 'Your Most Productive Resolution 2013: Embrace Uncertainty(Link)', 'person': {'first_name': 'Janesse', 'last_name': 'Thaw Bruce', 'permalink': 'janesse-thaw-bruce'}}, {'is_past': False, 'title': 'Senior Editor', 'person': {'first_name': 'Zack', 'last_name': 'Greenburg', 'permalink': 'zack-greenburg'}}, {'is_past': False, 'title': 'Reporter', 'person': {'first_name': 'J.J.', 'last_name': 'Colao', 'permalink': 'j-j-colao'}}, {'is_past': True, 'title': 'European Bureau Chief', 'person': {'first_name': 'John', 'last_name': 'E. Marcom, Jr.', 'permalink': 'john-e-marcom-jr'}}, {'is_past': True, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Jim', 'last_name': 'Spanfeller', 'permalink': 'jim-spanfeller'}}, {'is_past': True, 'title': 'Vice President, Audience Monetization', 'person': {'first_name': 'Matt', 'last_name': 'Barash', 'permalink': 'matt-barash'}}, {'is_past': True, 'title': 'Associate Editor', 'person': {'first_name': 'Josh', 'last_name': 'McHugh', 'permalink': 'josh-mchugh'}}, {'is_past': True, 'title': 'leading all West Coast sales', 'person': {'first_name': 'Lauren', 'last_name': 'Wray', 'permalink': 'lauren-wray'}}, {'is_past': True, 'title': 'Product & Creative Director', 'person': {'first_name': 'Jeff', 'last_name': 'Bauer', 'permalink': 'jeff-bauer'}}, {'is_past': True, 'title': 'New York Sales Director', 'person': {'first_name': 'Andrew', 'last_name': 'Gorenstein', 'permalink': 'andrew-gorenstein'}}, {'is_past': True, 'title': 'Brand Manager', 'person': {'first_name': 'Ksenia', 'last_name': 'Ryzhkova', 'permalink': 'ksenia-ryzhkova'}}, {'is_past': True, 'title': 'Anchor Reporter, Forbes Video Online', 'person': {'first_name': 'Evelyn', 'last_name': 'Rusli', 'permalink': 'evelyn-rusli'}}, {'is_past': True, 'title': 'Director , Human Resources', 'person': {'first_name': 'Sharon', 'last_name': 'Jautz', 'permalink': 'sharon-jautz'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Bradford', 'last_name': 'Campeau-Laurion', 'permalink': 'bradford-campeau-laurion'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ralph', 'last_name': 'Sabin', 'permalink': 'ralph-sabin'}}, {'is_past': True, 'title': 'Widely Read Stock Market Weblogs of TraderMike.net', 'person': {'first_name': 'Michael', 'last_name': 'Seneadza', 'permalink': 'michael-seneadza'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/08/07/forbes-buys-social-bookmarking-site-clipmarks/', 'source_description': 'Forbes buys social bookmarking site Clipmarks', 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': 7, 'company': {'name': 'Clipmarks', 'permalink': 'clipmarks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-forbes-buys-online-photo-distributor-flipgloss/', 'source_description': ' Forbes Buys Online Photo Platform FlipGloss ', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 12, 'company': {'name': 'FlipGloss', 'permalink': 'flipgloss'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-forbes-acquires-true-slant/', 'source_description': 'Forbes Acquires Freelance Journalism Site TrueSlant', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 25, 'company': {'name': 'True/Slant', 'permalink': 'trueslant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.canada.com/edmontonjournal/news/business/story.html?id=511a0931-546f-43c1-a22e-cb1e18e731b8', 'source_description': 'Forbes Inc. has bought Investopedia', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 17, 'company': {'name': 'Investopedia', 'permalink': 'investopedia'}}], 'offices': [{'description': '', 'address1': '60 5th Avenue', 'address2': '', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.736416, 'longitude': -73.993302}], 'milestones': [{'id': 10155, 'description': 'Forbes Names Softbank’s Perlis As President, CEO Of Forbes Media ', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 15, 'source_url': 'http://paidcontent.org/article/419-forbes-names-softbanks-perlis-as-president-ceo-of-forbes-media/', 'source_text': '', 'source_description': 'Forbes Names Softbank’s Perlis As President, CEO Of Forbes Media ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Forbes', 'permalink': 'forbes'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 91], 'assets/images/resized/0004/3611/43611v1-max-150x150.png'], [[250, 152], 'assets/images/resized/0004/3611/43611v1-max-250x250.png'], [[450, 275], 'assets/images/resized/0004/3611/43611v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e73'), 'name': 'Boonex', 'permalink': 'boonex', 'crunchbase_url': 'http://www.crunchbase.com/company/boonex', 'homepage_url': 'http://www.boonex.com', 'blog_url': 'http://boonex.com/notes', 'blog_feed_url': 'http://www.boonex.org/feed/', 'twitter_username': 'boonex', 'category_code': 'software', 'number_of_employees': 16, 'founded_year': 2000, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'community, software, video, chat, unity, im, standalone, hosted, mp3, player, ray, orca, dolphin, shark, barracuda, boonex, dating, free, messanger', 'alias_list': '', 'email_address': 'business@boonex.com', 'phone_number': '', 'description': 'General Info', 'created_at': 'Wed Aug 08 11:15:37 UTC 2007', 'updated_at': 'Fri Mar 22 17:58:07 UTC 2013', 'overview': '

Boonex provides free, open-source, downloadable community-building software for websites. BoonEx mission is to Unite People. BoonEx products are used by over 50,000 community websites worldwide.

\\n\\n

BoonEx Unity is a community of BoonEx customers and 3rd party professionals working on their community sites. Unity provides free platform for business discussion, advertisement, extensions trading, jobs and ideas sharing.

\\n\\n

BoonEx is based in Sydney, Australia.

\\n\\n

The flagship product - Dolphin Smart Community Builder is a feature-packed CMS for dating sites, social networks and niche communities. Dolphin includes flash video player, music player, video chat, groups, events, photo-sharing, statuses, geo-location, matchmaking, advanced search, mailbox, mini-chat and many other features.

\\n\\n

Dolphin is paired with an iPhone application and with an AdobeAIR application for desktops. Dolphin is a free, open-source, downloadable script based on PHP, MySQL, AJAX and XHTML. Dolphin can run both on Linux and Windows servers and supports server clusters.

', 'image': {'available_sizes': [[[150, 30], 'assets/images/resized/0000/4123/4123v5-max-150x150.png'], [[155, 32], 'assets/images/resized/0000/4123/4123v5-max-250x250.png'], [[155, 32], 'assets/images/resized/0000/4123/4123v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'BoonEx Dolphin Smart Community Builder', 'permalink': 'boonex-dolphin-smart-community-builder'}], 'relationships': [{'is_past': False, 'title': 'General Director and Co-Founder', 'person': {'first_name': 'Andrew', 'last_name': 'Boon', 'permalink': 'andrew-boon'}}], 'competitions': [{'competitor': {'name': 'Webligo Developments', 'permalink': 'webligo'}}, {'competitor': {'name': 'SocialEngine', 'permalink': 'socialengine'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '10 Cedar Grove', 'address2': 'Castle Hill', 'zip_code': '2154', 'city': 'Sydney', 'state_code': None, 'country_code': 'AUS', 'latitude': -33.722577, 'longitude': 150.981801}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 142], 'assets/images/resized/0004/4401/44401v2-max-150x150.jpg'], [[250, 237], 'assets/images/resized/0004/4401/44401v2-max-250x250.jpg'], [[450, 427], 'assets/images/resized/0004/4401/44401v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.onlinepersonalswatch.com/news/2009/05/andrew-boon-director-and-cofounder-of-boonex.html', 'title': 'Director and co-Founder Interview 05/09'}, {'external_url': 'http://trokus.fr/site', 'title': 'Trokus community networking'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e75'), 'name': 'IntenseDebate', 'permalink': 'intensedebate', 'crunchbase_url': 'http://www.crunchbase.com/company/intensedebate', 'homepage_url': 'http://intensedebate.com', 'blog_url': 'http://intensedebate.com/blog/', 'blog_feed_url': 'http://blog.intensedebate.com/feed/', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 4, 'founded_year': 2006, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'commenting-system, blog, comments, techstars, debate, threaded, vote, reputation, techstars-boulder-2007', 'alias_list': 'Intense Debate', 'email_address': 'support@intensedebate.com', 'phone_number': '', 'description': 'Blog commenting system', 'created_at': 'Wed Aug 08 11:50:36 UTC 2007', 'updated_at': 'Mon Oct 14 17:33:42 UTC 2013', 'overview': '

Intense Debate is a blog commenting system that supports Typepad, Blogger and Wordpress blogs. The system allows blog owners to track and moderate comments from one place with features like threading, comment analytics, user reputation and comment aggregation.

\\n\\n

Intense Debate offers blog readers a powerful networking system to establish reputations, link their profiles, make friends and syndicate their comments. It will create a “mini-blogging platform” that will hold commenters responsible for their comments across various blogs. I’m sure the service will help jumpstart a couple superstar commenter careers.

\\n\\n

The company is currently in private beta mode. It is also an incubating startup for TechStars. Competitors include CoComment, JS-Kit, SezWho and Tangler.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/4126/4126v3-max-150x150.png'], [[150, 51], 'assets/images/resized/0000/4126/4126v3-max-250x250.png'], [[150, 51], 'assets/images/resized/0000/4126/4126v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Tom', 'last_name': 'Keller', 'permalink': 'tom-keller'}}, {'is_past': True, 'title': 'CTO / Co - Founder', 'person': {'first_name': 'Jon', 'last_name': 'Fox', 'permalink': 'jon-fox'}}, {'is_past': True, 'title': 'Co-Founder, User Interface Designer', 'person': {'first_name': 'Isaac', 'last_name': 'Keyet', 'permalink': 'isaac-keyet'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'is_past': True, 'title': 'Director Marketing', 'person': {'first_name': 'Michael', 'last_name': 'Koenig', 'permalink': 'michael-koenig'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Austin', 'last_name': 'Hallock', 'permalink': 'austin-hallock'}}], 'competitions': [{'competitor': {'name': 'SezWho', 'permalink': 'sezwho'}}, {'competitor': {'name': 'Disqus', 'permalink': 'disqus'}}, {'competitor': {'name': 'Echo', 'permalink': 'echo'}}, {'competitor': {'name': 'uberVU', 'permalink': 'ubervu'}}, {'competitor': {'name': 'Livefyre', 'permalink': 'livefyre'}}, {'competitor': {'name': 'Viafoura', 'permalink': 'viafoura'}}, {'competitor': {'name': 'Moot', 'permalink': 'moot'}}], 'providerships': [], 'total_money_raised': '$515k', 'funding_rounds': [{'id': 316, 'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': {'name': 'Techstars', 'permalink': 'techstars'}, 'financial_org': None, 'person': None}]}, {'id': 11664, 'round_code': 'angel', 'source_url': 'http://www.davidgcohen.com/investing/', 'source_description': 'David Cohen', 'raised_amount': 500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Tom', 'last_name': 'Keller', 'permalink': 'tom-keller'}}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/', 'source_description': \"Automattic Has Acquired IntenseDebate's Enhanced Comment System\", 'acquired_year': 2008, 'acquired_month': 9, 'acquired_day': 23, 'acquiring_company': {'name': 'Automattic', 'permalink': 'automattic'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.010492, 'longitude': -105.276843}], 'milestones': [{'id': 600, 'description': 'Acquired by Automattic for an undisclosed amount', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': 23, 'source_url': 'http://www.techcrunch.com/2008/09/23/automattic-has-acquired-intensedebates-enhanced-comment-system/', 'source_text': '', 'source_description': 'TechCrunch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'IntenseDebate', 'permalink': 'intensedebate'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
See this video on Vator.tv »
', 'description': '

VatorTV Interview: 6/08

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e78'), 'name': 'Rebtel', 'permalink': 'rebtel', 'crunchbase_url': 'http://www.crunchbase.com/company/rebtel', 'homepage_url': 'http://www.rebtel.com', 'blog_url': 'http://blog.rebtel.com', 'blog_feed_url': 'http://feeds.feedburner.com/rebtel/qiRS', 'twitter_username': 'Rebtel', 'category_code': 'mobile', 'number_of_employees': 75, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'voip, mvoip', 'alias_list': None, 'email_address': 'feedback@rebtel.com', 'phone_number': '+46851906100', 'description': 'Talk More With Your Loved Ones', 'created_at': 'Tue Jul 31 06:10:43 UTC 2007', 'updated_at': 'Tue Dec 17 11:09:07 UTC 2013', 'overview': '

As the name suggests, Rebtel was founded with one very specific goal in mind, which was, and still is, to rebel and fundamentally disrupt the telecommunications industry as we know it.

\\n\\n

We provide international calling apps for iPhone, Android, Windows Phone and PC, with a host of innovative products in the pipeline. As more and more companies are realizing the value of open source models, the Rebtel Voice platform has been allowing developers to integrate our tried and tested technology into their products for free!

\\n\\n

Our head office, located in Nacka Strand, offers stunning views of Stockholm and we pride ourselves on offering a wonderful work environment with a multinational workforce.

\\n\\n

Think it sounds like something you want to be a part of? In that case, we’d love to hear from you

', 'image': {'available_sizes': [[[141, 30], 'assets/images/resized/0003/7859/37859v1-max-150x150.png'], [[141, 30], 'assets/images/resized/0003/7859/37859v1-max-250x250.png'], [[141, 30], 'assets/images/resized/0003/7859/37859v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Rebtel 2.0 for iPhone', 'permalink': 'rebtel-2-0-for-iphone'}, {'name': 'Rebtel 2.0 PC', 'permalink': 'rebtel-2-0-pc'}, {'name': 'Rebtel for Mobile or Landline', 'permalink': 'rebtel-for-mobile-or-landline'}, {'name': 'Sendly', 'permalink': 'sendly'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board & Co-Founder', 'person': {'first_name': 'Hjalmar', 'last_name': 'Winbladh', 'permalink': 'hjalmar-winbladh'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Andreas', 'last_name': 'Bernstrom', 'permalink': 'andreas-bernstrom'}}, {'is_past': False, 'title': 'VP of Product', 'person': {'first_name': 'Daniel', 'last_name': 'Forsman', 'permalink': 'daniel-forsman'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Jonas', 'last_name': 'Lindroth', 'permalink': 'jonas-lindroth'}}, {'is_past': False, 'title': 'Head of Marketing', 'person': {'first_name': 'Peter', 'last_name': 'Bäckström', 'permalink': 'peter-bckstrm'}}, {'is_past': False, 'title': 'Head of Finance', 'person': {'first_name': 'Michael', 'last_name': 'Hedman', 'permalink': 'michael-hedman'}}, {'is_past': False, 'title': 'Head of Communication', 'person': {'first_name': 'Anna', 'last_name': 'Ålenius Mathson', 'permalink': 'anna-lenius-mathson'}}, {'is_past': True, 'title': 'Head of Marketing', 'person': {'first_name': 'Patric', 'last_name': 'Blixt', 'permalink': 'patric-blixt'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Jesper', 'last_name': 'von Bahr', 'permalink': 'jesper-von-bahr'}}, {'is_past': True, 'title': 'Head of Product Management', 'person': {'first_name': 'Björn', 'last_name': 'Alberts', 'permalink': 'bjrn-alberts'}}, {'is_past': True, 'title': 'Head of Operations', 'person': {'first_name': 'Jakob', 'last_name': 'Borgstrom', 'permalink': 'jakob-borgstrom'}}, {'is_past': True, 'title': 'Head of Product', 'person': {'first_name': 'Maja', 'last_name': 'Lindstrom', 'permalink': 'maja-lindstrom'}}], 'competitions': [{'competitor': {'name': 'Skype', 'permalink': 'skype'}}, {'competitor': {'name': 'Jajah', 'permalink': 'jajah'}}, {'competitor': {'name': 'Verizon Communications, Inc.', 'permalink': 'verizon'}}, {'competitor': {'name': 'Localphone', 'permalink': 'localphone'}}, {'competitor': {'name': 'Vox Call', 'permalink': 'voxcall-com'}}, {'competitor': {'name': 'SpeedyPin', 'permalink': 'speedypin'}}], 'providerships': [], 'total_money_raised': '$20M', 'funding_rounds': [{'id': 264, 'round_code': 'a', 'source_url': 'http://startupsquad.com/2006/09/24/funding-rebtel-gets-20-million/', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 9, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Index Ventures', 'permalink': 'index-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Balderton Capital', 'permalink': 'balderton-capital'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': 'Fabrikorvagen 4', 'address2': '', 'zip_code': '131 52', 'city': 'Nacka Strand', 'state_code': None, 'country_code': 'SWE', 'latitude': 59.3167843, 'longitude': 18.1582777}], 'milestones': [{'id': 19112, 'description': 'Rebtel was registered in 2005 by serial entrepreneurs Hjalmar Winbladh and Jonas Lindroth.', 'stoned_year': 2005, 'stoned_month': None, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rebtel', 'permalink': 'rebtel'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Talk More with your Loved Ones

'}], 'screenshots': [{'available_sizes': [[[150, 55], 'assets/images/resized/0037/7646/377646v2-max-150x150.png'], [[250, 92], 'assets/images/resized/0037/7646/377646v2-max-250x250.png'], [[450, 166], 'assets/images/resized/0037/7646/377646v2-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://techcrunch.com/2012/05/31/rebtel-hits-the-ipad/', 'title': 'Now At 17M+ Users, Rebtel Brings Cheap VoIP Calls, Texts To The iPad'}, {'external_url': 'http://techcrunch.com/2011/06/08/rebtel-ceo-voip-is-just-a-glorified-fixed-line-mobile-is-where-its-at/', 'title': \"Rebtel CEO: VoIP Is Just A Glorified Fixed Line, Mobile Is Where It's At\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e7d'), 'name': 'Buxfer', 'permalink': 'buxfer', 'crunchbase_url': 'http://www.crunchbase.com/company/buxfer', 'homepage_url': 'http://www.buxfer.com', 'blog_url': 'https://blog.buxfer.com', 'blog_feed_url': 'http://www.buxfer.com/blog/feed/', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': 4, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'money, moneymanagement, socialmoney', 'alias_list': None, 'email_address': 'support@buxfer.com', 'phone_number': '', 'description': '', 'created_at': 'Tue Jul 31 10:23:00 UTC 2007', 'updated_at': 'Thu Nov 19 06:52:55 UTC 2009', 'overview': '

Buxfer is the next-generation personal finance solution, taking money management to the web. Buxfer lets you monitor all your bank and credit card accounts at one single place. Transactions are automatically downloaded every night and categorized. Buxfer’s spending reports let you dig into your past spending, drill down into different categories and analyze spending trends. To plan future spending, you can create budgets, bill reminders and forecast your monthly cashflow. Buxfer integrates with your mobile device, letting you check account balances or add cash expenses while you are on the go.

\\n\\n

Co-founder Ashwin Bharambe got the idea for Buxfer after becoming frustrated with the swarm of IOUs pasted up on his refrigerator while he was at Carnegie Mellon University working towards his PH.D. Without a great way to track what he owed and what others owed him, Ashwin wrote a program to solve his problems that would eventually become social money website, Buxfer.

\\n\\n

Buxfer allows its users to track their personal finances as well as regulate and organize loans and IOUs to friends. It lets you keep totals of what you owe and what is owed to you, as well as divide bills.As an added bonus, users can log on to Buxfer using their Google, Yahoo, Facebook, AIM or Open ID logins to eliminate the account creation hassle. Buxfer also displays your spending habits in the form of a pie chart with slices designated to categories like food, leisure, rent or whatever you want. It has auto tagging which places your bills in the correct category. Buxfer is something of a Quicken for a younger generation, especially after it launched its Facebook application. As of August 2007 Buxfer offers payment integration through Amazon payment’s site.

\\n\\n

Competitors, Wesabe and Billmonk also have payment integration while PayPal is the clear leader in online transactions and transactions made between friends. Buxfer is a Y Combinator company which has grown since its launch to include some impressive data visuals. As of November 2009, Buxfer had tracked $1.66 billion in over 10.33 million transactions.

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3907/3907v1-max-150x150.png'], [[161, 40], 'assets/images/resized/0000/3907/3907v1-max-250x250.png'], [[161, 40], 'assets/images/resized/0000/3907/3907v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Buxfer', 'permalink': 'buxfer'}, {'name': 'Buxfer Facebook Widget', 'permalink': 'buxfer-facebook-widget'}], 'relationships': [{'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Shashank', 'last_name': 'Pandit', 'permalink': 'shashank-pandit'}}, {'is_past': True, 'title': 'CEO, Founder', 'person': {'first_name': 'Ashwin', 'last_name': 'Bharambe', 'permalink': 'ashwin-bharambe'}}], 'competitions': [{'competitor': {'name': 'BillMonk', 'permalink': 'billmonk'}}, {'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Scred', 'permalink': 'scred'}}, {'competitor': {'name': 'Thrive', 'permalink': 'thrive'}}, {'competitor': {'name': 'Jwaala', 'permalink': 'jwaala'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}, {'competitor': {'name': 'manageME7', 'permalink': 'manageme7'}}, {'competitor': {'name': 'Yodle', 'permalink': 'yodle'}}, {'competitor': {'name': 'Yodlee', 'permalink': 'yodlee'}}], 'providerships': [], 'total_money_raised': '$315k', 'funding_rounds': [{'id': 269, 'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2007/03/02/billmonk-has-a-half-brother/', 'source_description': 'Billmonk Has A Half Brother', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}, {'id': 1312, 'round_code': 'angel', 'source_url': 'http://venturebeat.com/2008/01/04/buxfer-is-giving-mint-other-personal-finance-sites-a-run-for-their-money/', 'source_description': 'Buxfer is giving Mint, other personal finance sites, a run for their money', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Eric', 'last_name': 'Cooper', 'permalink': 'eric-cooper'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Georges', 'last_name': 'Harik', 'permalink': 'georges-harik'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.400465, 'longitude': -122.073003}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e7e'), 'name': 'boo-box', 'permalink': 'boo-box', 'crunchbase_url': 'http://www.crunchbase.com/company/boo-box', 'homepage_url': 'http://boo-box.com', 'blog_url': 'http://boo-box.com/en/blog', 'blog_feed_url': '', 'twitter_username': 'booboxbr', 'category_code': 'advertising', 'number_of_employees': 50, 'founded_year': 2007, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-media, advertising, ad, ad-system, technology, merb, ruby, brazil', 'alias_list': '', 'email_address': 'contact@boo-box.com', 'phone_number': '+55 11 3853-9598', 'description': 'blogs, niche websites & social profiles', 'created_at': 'Wed Nov 07 05:31:13 UTC 2007', 'updated_at': 'Thu Sep 05 18:50:34 UTC 2013', 'overview': '

boo-box is the first ad tech & social media player in Brazil, TechCrunch described them as “the Brazil’s Web 2.0 Ad Network”

\\n\\n

Every month boo-box displays 1 billion ads with product offers and display advertising campaigns for 60 million people in Brazil spread across 430,000 blogs and websites, the company is quickly getting traction among renowned publishers and ad agencies.

\\n\\n

For the publisher, boo-box provides better control over ad inventory, access to premium campaigns, the possibility to explore differentiated formats, and higher profitability. Because boo-box is the only Ad Network that treats publishers as customers (vs. suppliers), it is clearly the preferred solution. The company has received countless positive user feedback, which it leverages as a powerful promotion tool.

\\n\\n

For the advertiser, boo-box is the only provider of scalable and effective advertising in social media that fully integrates with ad agencies’ modus operandi. The value proposition is fairly simple, yet compelling: a large ad-inventory in social media websites that can be purchased adopting standard market pricing and procedures, with control over category, keyword and geolocation targeting and full reporting. Today boo-box’s Social Media Ad System enjoys increasing acceptance, as reflected by positive feedback, a strong sales pipeline and growing revenues.

\\n\\n

Besides the display advertising inventory, the company is able to develop innovative rich media ad formats, behavioral targeting for retargeting campaigns, interest and demographic profiling. Some of those products are already gaining traction, such as a Twitter based advertising solution called boo-box Seeding, first used by Ogilvy Interactive, and became an international award winning advertising case.

', 'image': {'available_sizes': [[[150, 37], 'assets/images/resized/0000/3910/3910v5-max-150x150.png'], [[250, 63], 'assets/images/resized/0000/3910/3910v5-max-250x250.png'], [[450, 113], 'assets/images/resized/0000/3910/3910v5-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'boo-box Social Media Ad System', 'permalink': 'boo-box'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Pedro', 'last_name': 'Moraes', 'permalink': 'pedro-moraes'}}, {'is_past': False, 'title': 'Chief Innovation Officer', 'person': {'first_name': 'Santiago', 'last_name': 'Siri', 'permalink': 'santiago-siri-3'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Marco', 'last_name': 'Gomes', 'permalink': 'marco-gomes'}}, {'is_past': False, 'title': 'VP of Sales', 'person': {'first_name': 'Sergio', 'last_name': 'Sacchi', 'permalink': 'sergio-sacchi'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Thyago', 'last_name': 'Liberalli', 'permalink': 'thyago-literalli'}}, {'is_past': False, 'title': 'VP of Publishers', 'person': {'first_name': 'Edney', 'last_name': 'Souza', 'permalink': 'edney-souza'}}, {'is_past': False, 'title': 'Ad/Publisher Operations', 'person': {'first_name': 'Denis', 'last_name': 'Rodrigues', 'permalink': 'denis-rodrigues'}}, {'is_past': False, 'title': 'board of directors', 'person': {'first_name': 'Eric', 'last_name': 'Acher', 'permalink': 'eric-acher'}}, {'is_past': False, 'title': 'Director Latinamerica', 'person': {'first_name': 'Sebastian', 'last_name': 'Yoffe', 'permalink': 'sebastian-yoffe'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Pedro Paulo', 'last_name': 'Oliveira de Moraes', 'permalink': 'pedro-paulo-oliveira-de-moraes'}}, {'is_past': True, 'title': 'Comercial Director', 'person': {'first_name': 'Fred', 'last_name': 'Pacheco', 'permalink': 'fred-pacheco'}}, {'is_past': True, 'title': 'IT Coordinator', 'person': {'first_name': 'Felipe', 'last_name': 'Vieira', 'permalink': 'felipe-vieira'}}, {'is_past': True, 'title': 'UX Designer', 'person': {'first_name': 'Thiago', 'last_name': 'Vian', 'permalink': 'thiago-vian'}}, {'is_past': True, 'title': 'Senior Web Developer', 'person': {'first_name': 'Alexandre', 'last_name': 'Ferreira', 'permalink': 'alexandre-ferreira'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$300k', 'funding_rounds': [{'id': 270, 'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/11/16/intel-capital-invests-77-million-in-18-startups-worldwide/', 'source_description': 'Intel Capital Invests $77 Million in 18 Startups\\xa0Worldwide', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Monashees Capital', 'permalink': 'monashees-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 20122, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Monashees Capital', 'permalink': 'monashees-capital'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Marcos', 'last_name': 'Tanaka', 'permalink': 'marcos-tanaka'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'boo-land', 'address1': 'Av. Faria Lima, 2631', 'address2': 'Pinheiros', 'zip_code': '', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': -23.558584, 'longitude': -46.679287}], 'milestones': [{'id': 21769, 'description': 'Series A Investment', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://oglobo.globo.com/economia/intel-capital-amplia-portfolio-de-investimentos-no-brasil-2923209', 'source_text': None, 'source_description': 'Intel Capital amplia portfólio de investimentos no Brasil', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'boo-box', 'permalink': 'boo-box'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

boo-box

'}, {'embed_code': '', 'description': '

boo-box in portuguese

'}], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0010/9685/109685v2-max-150x150.jpg'], [[250, 202], 'assets/images/resized/0010/9685/109685v2-max-250x250.jpg'], [[450, 365], 'assets/images/resized/0010/9685/109685v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 128], 'assets/images/resized/0010/9686/109686v2-max-150x150.jpg'], [[250, 213], 'assets/images/resized/0010/9686/109686v2-max-250x250.jpg'], [[450, 385], 'assets/images/resized/0010/9686/109686v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[133, 150], 'assets/images/resized/0010/9687/109687v2-max-150x150.jpg'], [[222, 250], 'assets/images/resized/0010/9687/109687v2-max-250x250.jpg'], [[400, 450], 'assets/images/resized/0010/9687/109687v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://techcrunch.com/2010/11/16/intel-capital-invests-77-million-in-18-startups-worldwide/', 'title': 'Intel Capital Invests $77 Million in 18 Startups Worldwide'}, {'external_url': 'http://techcrunch.com/2007/01/21/boobox-to-help-bloggers-sell-stuff/', 'title': 'booBox To Help Bloggers Sell Stuff'}], 'partners': [{'partner_name': 'AngelList', 'homepage_url': 'http://boo-box.com', 'link_1_url': 'https://angel.co/boo-box?utm_source=crunchbase&utm_medium=link&utm_content=profile&utm_term=boo-box&utm_campaign=crunchbase', 'link_2_url': None, 'link_3_url': None, 'link_1_name': 'AngelList Page', 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297e85'), 'name': 'TextPayMe', 'permalink': 'textpayme', 'crunchbase_url': 'http://www.crunchbase.com/company/textpayme', 'homepage_url': 'http://www.textpayme.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'media@textpayme.com', 'phone_number': None, 'description': None, 'created_at': 'Wed Aug 01 05:56:53 UTC 2007', 'updated_at': 'Fri Oct 18 05:07:04 UTC 2013', 'overview': '

Founded in 2005, TextPayMe is an SMS payment service that lets you send money to other people using cell phone text messaging. TextPayMe lets you send money to anyone else in the US with an SMS-capable cell phone, and while phone carriers may charge for the actual text message sent/received, sending and receiving money is free while TextPayMe remains in Beta.

\\n\\n

In July 2006, the TextPayMe team started working for Amazon and, as of 2011, the site redirects to an Amazon’s mobile payment website. There was no press release related to this event but it’s assumed the company was acquired.

\\n\\n

Sending and receiving payments through TextPayMe is easy: simply write a text message to SMS@TextPayMe.com with “pay amount phonenumber” in the body (i.e. to send $5 to 123-456-7890, text “pay 5 1234567890”). The service is secure as well, as each payment needs to be confirmed by a user-created PIN. To fund your transactions, TextPayMe lets you add money directly from your bank account and now also lets you link your credit card as well. Currently, the maximum amount that can be sent or received per month is $500.

\\n\\n

TextPayMe’s service is both useful and easy-to-use. However, the company’s future success is directly dependent on how well they can compete with other rivals such as KushCash, Obopay, and the formidable Paypal Mobile.

', 'image': {'available_sizes': [[[150, 121], 'assets/images/resized/0001/9258/19258v5-max-150x150.jpg'], [[250, 201], 'assets/images/resized/0001/9258/19258v5-max-250x250.jpg'], [[389, 314], 'assets/images/resized/0001/9258/19258v5-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'TextPayMe', 'permalink': 'textpayme'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Gerald', 'last_name': 'Yuen', 'permalink': 'gerald-yuen'}}, {'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Philip', 'last_name': 'Yuen', 'permalink': 'philip-yuen'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'CJ', 'last_name': 'Huang', 'permalink': 'cj-huang'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'PayPal', 'permalink': 'paypal'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'mBlox', 'permalink': 'mblox'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 282, 'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.infosources.org/what_is/Amazon_Payments.html', 'source_description': 'Amazon Payments', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Redmond', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.672229, 'longitude': -122.115633}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://blog.seattlepi.nwsource.com/venture/archives/101538.asp', 'title': 'Inside look at TextPayMe'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e88'), 'name': 'BillMonk', 'permalink': 'billmonk', 'crunchbase_url': 'http://www.crunchbase.com/company/billmonk', 'homepage_url': 'http://www.billmonk.com', 'blog_url': 'http://billmonk.wordpress.com/', 'blog_feed_url': 'http://billmonk.wordpress.com/feed/', 'twitter_username': 'BillmonkFriends', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'socialmoney, moneymanagement', 'alias_list': '', 'email_address': 'company@billmonk.com', 'phone_number': '', 'description': '', 'created_at': 'Wed Aug 01 07:22:43 UTC 2007', 'updated_at': 'Tue Mar 19 04:27:05 UTC 2013', 'overview': '

Because borrowing money from friends can be “awkward”, BillMonk keeps track of all your friends’ IOUs and debts so you don’t have to remind them that they owe you. BillMonk is a social money management tool that allows a group of friends to keep running tabs on who owes who how much and for what. Users collaborate online deciding how to split past and current bills such as taxi fares or restaurant bills. BillMonk calculates how much you owe (or are owed) and then lets you pay online or by mobile phone through parent company obopay’s payment services. With obopay, BillMonk users can record bills on their account immediately after getting them by sending a text message to BillMonk. This feature will save those of us who loose receipts or forget how much we owe even before the night is over.Mobile (and online) payment integration is the killer app and differentiating feature for BillMonk, as competitor Buxfer lacks any type of payment tools and Wesabe does not have a mobile payment option. Both competitors offer a product more in tune with Quicken that helps you to understand how you spend your money through trend analysis and data visuals.

\\n\\n

BillMonk focuses solely on helping you pay and receive money from friends and settling informal debts. In addition to monetary debts, Billmonk can track things you borrow or loan to friends like a movie or a jacket even. A useful tool, BillMonk also enjoys being one of the first companies to tap the $103 billion market of social money traded each year. BillMonk has a Facebook application in addition to its mobile and browser products.

', 'image': {'available_sizes': [[[124, 55], 'assets/images/resized/0000/3940/3940v1-max-150x150.png'], [[124, 55], 'assets/images/resized/0000/3940/3940v1-max-250x250.png'], [[124, 55], 'assets/images/resized/0000/3940/3940v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'BillMonk', 'permalink': 'billmonk'}], 'relationships': [{'is_past': None, 'title': 'VP Product Development, Consumer Applications', 'person': {'first_name': 'Gaurav', 'last_name': 'Oberoi', 'permalink': 'gaurav-oberoi'}}, {'is_past': None, 'title': 'VP Product Development, Customer Experience', 'person': {'first_name': 'Chuck', 'last_name': 'Groom', 'permalink': 'chuck-groom'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Guarav', 'last_name': 'Oberoi', 'permalink': 'guarav-oberoi'}}], 'competitions': [{'competitor': {'name': 'Mint.com', 'permalink': 'mint'}}, {'competitor': {'name': 'Buxfer', 'permalink': 'buxfer'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Scred', 'permalink': 'scred'}}, {'competitor': {'name': 'GreenSherpa', 'permalink': 'green-sherpa'}}, {'competitor': {'name': 'BillShrink', 'permalink': 'billshrink'}}, {'competitor': {'name': 'SplitMyBill', 'permalink': 'splitmybill'}}, {'competitor': {'name': 'BillPin', 'permalink': 'billpin'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://billmonk.wordpress.com/2007/01/30/billmonk-is-now-an-obopay-company-settle-up-online/', 'source_description': 'BillMonk is now an Obopay company! Settle up online.', 'acquired_year': 2007, 'acquired_month': 1, 'acquired_day': 30, 'acquiring_company': {'name': 'obopay', 'permalink': 'obopay'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.620716, 'longitude': -122.347533}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e8e'), 'name': 'The Walt Disney Company', 'permalink': 'the-walt-disney-company', 'crunchbase_url': 'http://www.crunchbase.com/company/the-walt-disney-company', 'homepage_url': 'http://thewaltdisneycompany.com', 'blog_url': 'http://thewaltdisneycompany.com/blog', 'blog_feed_url': '', 'twitter_username': 'DisneyPost', 'category_code': 'games_video', 'number_of_employees': 25000, 'founded_year': 1923, 'founded_month': 10, 'founded_day': 16, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'disney, media, entertainment, movies', 'alias_list': 'Disney', 'email_address': '', 'phone_number': '818-560-1000', 'description': '', 'created_at': 'Thu Aug 02 09:08:05 UTC 2007', 'updated_at': 'Mon Nov 18 17:26:25 UTC 2013', 'overview': '

The Walt Disney Company is a media and entertainment corporation. The corporation is broken up into 5 parts - Studio Entertainment, Parks and Resorts, Consumer Products, Media Networks and interactive Media.

', 'image': {'available_sizes': [[[150, 78], 'assets/images/resized/0001/0929/10929v3-max-150x150.jpg'], [[200, 105], 'assets/images/resized/0001/0929/10929v3-max-250x250.jpg'], [[200, 105], 'assets/images/resized/0001/0929/10929v3-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Robert', 'last_name': 'A. Iger', 'permalink': 'robert-a-iger'}}, {'is_past': False, 'title': 'Chairman, The Walt Disney Studios', 'person': {'first_name': 'Rich', 'last_name': 'Ross', 'permalink': 'rich-ross'}}, {'is_past': False, 'title': 'Chairman, Disney Consumer Products', 'person': {'first_name': 'Andrew', 'last_name': 'P. Mooney', 'permalink': 'andrew-p-mooney'}}, {'is_past': False, 'title': 'Co-Chairman, Disney Media Networks, President, ESPN, Inc. and ABC Sports, Chairman, ESPN Board of Directors', 'person': {'first_name': 'George', 'last_name': 'W. Bodenheimer', 'permalink': 'george-w-bodenheimer'}}, {'is_past': False, 'title': 'Chairman, Walt Disney International', 'person': {'first_name': 'Andy', 'last_name': 'Bird', 'permalink': 'andy-bird'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Human Resources Officer', 'person': {'first_name': 'Jayne', 'last_name': 'Parker', 'permalink': 'jayne-parker'}}, {'is_past': False, 'title': 'Executive Vice President, and Chief Human Resources Officer, The Walt Disney Company', 'person': {'first_name': 'Dennis', 'last_name': 'W Shuler', 'permalink': 'dennis-w-shuler'}}, {'is_past': False, 'title': 'Senior Vice President Innovation', 'person': {'first_name': 'Michael', 'last_name': 'Abrams', 'permalink': 'michael-abrams'}}, {'is_past': False, 'title': 'VP Productions - Disney Interactive', 'person': {'first_name': 'Chris', 'last_name': 'Cunningham', 'permalink': 'chris-cunningham'}}, {'is_past': False, 'title': 'Executive Vice President', 'person': {'first_name': 'Charlie', 'last_name': 'Nooney', 'permalink': 'charlie-nooney'}}, {'is_past': False, 'title': 'Senior Executive Vice President and Chief Financial Officer, The Walt Disney Company', 'person': {'first_name': 'Thomas', 'last_name': 'O. Staggs', 'permalink': 'thomas-o-staggs'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Communications, The Walt Disney Company', 'person': {'first_name': 'Zenia', 'last_name': 'Mucha', 'permalink': 'zenia-mucha'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Strategy, Business Development and Technology Group, The Walt Disney Company', 'person': {'first_name': 'Kevin', 'last_name': 'Mayer', 'permalink': 'kevin-mayer'}}, {'is_past': False, 'title': 'Senior Executive Vice President, General Counsel and Secretary, The Walt Disney Company', 'person': {'first_name': 'Alan', 'last_name': 'Braverman', 'permalink': 'alan-braverman-2'}}, {'is_past': False, 'title': 'Senior Vice President, Security, The Walt Disney Company', 'person': {'first_name': 'Ronald', 'last_name': 'L. Iden', 'permalink': 'ronald-l-iden'}}, {'is_past': False, 'title': 'Executive Vice President Government Relations, The Walt Disney Company', 'person': {'first_name': 'Preston', 'last_name': 'Padden', 'permalink': 'preston-padden'}}, {'is_past': False, 'title': 'President, ABC Owned Television Stations', 'person': {'first_name': 'Walter', 'last_name': 'C. Liss', 'permalink': 'walter-c-liss'}}, {'is_past': False, 'title': 'Co-Chair Disney Media Networks and President, Disney-ABC Television Group', 'person': {'first_name': 'Anne', 'last_name': 'Sweeney', 'permalink': 'anne-sweeney'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rich', 'last_name': 'Hull', 'permalink': 'rich-hull'}}, {'is_past': False, 'title': 'Online Producer', 'person': {'first_name': 'Sean', 'last_name': 'Spector', 'permalink': 'sean-spector'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Susan', 'last_name': 'Arnold', 'permalink': 'susan-arnold'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Judith', 'last_name': 'L. Estrin', 'permalink': 'judith-l-estrin'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Aylwin', 'last_name': 'B. Lewis', 'permalink': 'aylwin-b-lewis'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'W. Matschullat', 'permalink': 'robert-w-matschullat'}}, {'is_past': False, 'title': 'Senior Manager Commercial Marketing, Disneymedia+, UK & Ireland, EMEA', 'person': {'first_name': 'Lucy', 'last_name': 'Burton', 'permalink': 'lucy-burton'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Paula', 'last_name': 'Cutuli', 'permalink': 'paula-cutuli'}}, {'is_past': False, 'title': 'Executive Vice President, Corporate Real Estate, Sourcing, Alliances & Treasurer, Executive Vice President, Corporate Finance, Real Estate & Treasurer, Senior Vice President & Treasurer', 'person': {'first_name': 'Christine', 'last_name': 'M. McCarthy', 'permalink': 'christine-m-mccarthy'}}, {'is_past': False, 'title': 'Senior Vice President, Planning and Control, The Walt Disney Company', 'person': {'first_name': 'Brent', 'last_name': 'Woodford', 'permalink': 'brent-woodford'}}, {'is_past': False, 'title': 'Chairman, Walt Disney Parks and Resorts', 'person': {'first_name': 'Jay', 'last_name': 'Rasulo', 'permalink': 'jay-rasulo'}}, {'is_past': False, 'title': 'President, Walt Disney Internet Group', 'person': {'first_name': 'Steve', 'last_name': 'Wadsworth', 'permalink': 'steve-wadsworth'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Sheryl', 'last_name': 'Sandberg', 'permalink': 'sheryl-sandberg'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Andrea', 'last_name': 'Stanford', 'permalink': 'andrea-stanford'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'S. Chen', 'permalink': 'john-s-chen'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Fred', 'last_name': 'H. Langhammer', 'permalink': 'fred-h-langhammer'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Monica', 'last_name': 'C. Lozano', 'permalink': 'monica-c-lozano'}}, {'is_past': False, 'title': 'Co-President, Disney Interactive', 'person': {'first_name': 'James', 'last_name': 'Pitaro', 'permalink': 'james-pitaro'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Karim', 'last_name': 'Chehade', 'permalink': 'karim-chehade'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Jack', 'last_name': 'Dorsey', 'permalink': 'jack-dorsey'}}, {'is_past': True, 'title': 'Senior Executive Vice President, Chief Strategic Officer, Senior Advisor to the Ceo, a Member of The Company’s Executive Management Committee', 'person': {'first_name': 'Peter', 'last_name': 'E. Murphy', 'permalink': 'peter-e-murphy'}}, {'is_past': True, 'title': 'Chairman of the company’s Global Theme Park and Resorts Division', 'person': {'first_name': 'Paul', 'last_name': 'Pressler', 'permalink': 'paul-pressler-2'}}, {'is_past': True, 'title': 'Chairman Disney Internet Group', 'person': {'first_name': 'Jake', 'last_name': 'Winebaum', 'permalink': 'jake-winebaum'}}, {'is_past': True, 'title': 'Chairman, The Walt Disney Studios', 'person': {'first_name': 'Richard', 'last_name': 'Cook', 'permalink': 'richard-cook'}}, {'is_past': True, 'title': 'CIO', 'person': {'first_name': 'Tony', 'last_name': 'Scott', 'permalink': 'tony-scott'}}, {'is_past': True, 'title': 'Vice President, Egineering and Chief Scientist', 'person': {'first_name': 'Edmond', 'last_name': 'Mesrobian', 'permalink': 'edmond-mesrobian'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Michael', 'last_name': 'Eisner', 'permalink': 'michael-eisner'}}, {'is_past': True, 'title': 'Executive Vice President for Engineering, Manufacturing, and Program Management', 'person': {'first_name': 'Gilbert', 'last_name': 'F. Decker', 'permalink': 'gilbert-f-decker'}}, {'is_past': True, 'title': 'Vice President, Disney Research', 'person': {'first_name': 'Tom', 'last_name': 'Ngo', 'permalink': 'tom-ngo'}}, {'is_past': True, 'title': 'SVP, Human Resources, Disney Consumer Products', 'person': {'first_name': 'Eva', 'last_name': 'Sage-Gavin', 'permalink': 'eva-sage-gavin'}}, {'is_past': True, 'title': 'President, ABC Entertainment, EVP, ABC Entertainment, Movies and Miniseries, EVP, Development and New Business', 'person': {'first_name': 'Susan', 'last_name': 'Lyne', 'permalink': 'susan-lyne'}}, {'is_past': True, 'title': 'Senior Vice President, Brand Franchise and Customer Relationship Management', 'person': {'first_name': 'Matthew', 'last_name': 'Ryan', 'permalink': 'matthew-ryan'}}, {'is_past': True, 'title': 'VP, Corporate Strategic Planning', 'person': {'first_name': 'Edward', 'last_name': 'Lenk', 'permalink': 'edward-lenk'}}, {'is_past': True, 'title': 'SVP, Corporate Strategic Planning', 'person': {'first_name': 'Eric', 'last_name': 'W. Muhlheim', 'permalink': 'eric-w-muhlheim'}}, {'is_past': True, 'title': 'Senior Vice President & General Manager', 'person': {'first_name': 'Bernard', 'last_name': 'Gershon', 'permalink': 'bernard-gershon'}}, {'is_past': True, 'title': 'VP Operations - Disney Interactive', 'person': {'first_name': 'Chris', 'last_name': 'Cunningham', 'permalink': 'chris-cunningham'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Brian', 'last_name': 'McAndrews', 'permalink': 'brian-mcandrews'}}, {'is_past': True, 'title': 'SVP of Corporate Communications', 'person': {'first_name': 'Jonathan', 'last_name': 'Friedland', 'permalink': 'jonathan-friedland'}}, {'is_past': True, 'title': 'Vice President & General Manager, ABCNews.com', 'person': {'first_name': 'Jonathan', 'last_name': 'Dube', 'permalink': 'jonathan-dube'}}, {'is_past': True, 'title': 'VP, Business Development', 'person': {'first_name': 'Keyvan', 'last_name': 'Peymani', 'permalink': 'keyvan-peymani'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Gideon', 'last_name': 'Yu', 'permalink': 'gideon-yu'}}, {'is_past': True, 'title': 'Director, Enterprise IT', 'person': {'first_name': 'Alejandro', 'last_name': 'Mainetto', 'permalink': 'alejandro-mainetto'}}, {'is_past': True, 'title': 'Entrepreneur in Residence', 'person': {'first_name': 'Roberto', 'last_name': 'Aiello', 'permalink': 'roberto-aiello'}}, {'is_past': True, 'title': 'President, ABC Entertainment', 'person': {'first_name': 'Susan', 'last_name': 'Lyne', 'permalink': 'susan-lyne'}}, {'is_past': True, 'title': 'Multimedia Producer', 'person': {'first_name': 'Matthew', 'last_name': 'Gallagher', 'permalink': 'matthew-gallagher'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Toby', 'last_name': 'Northcote-Smith', 'permalink': 'toby-northcote-smith'}}, {'is_past': True, 'title': 'VP of Strategic Communications, Radio Disney', 'person': {'first_name': 'Jonathan', 'last_name': 'Friedland', 'permalink': 'jonathan-friedland'}}, {'is_past': True, 'title': 'Marketing Manager', 'person': {'first_name': 'Ali', 'last_name': 'Pincus', 'permalink': 'ali-pincus'}}, {'is_past': True, 'title': 'Country Manager France - The Disney Store', 'person': {'first_name': 'Bernard', 'last_name': 'Louvat', 'permalink': 'bernard-louvat'}}, {'is_past': True, 'title': 'National Publicity Associate - Major Motion Pictures', 'person': {'first_name': 'Emily', 'last_name': 'Eldridge', 'permalink': 'emily-eldridge'}}, {'is_past': True, 'title': 'Senior Analyst, Strategic Planning Department', 'person': {'first_name': 'Galyn', 'last_name': 'Bernard', 'permalink': 'galyn-bernard'}}, {'is_past': True, 'title': 'Business Development and Digital Strategy Consultant', 'person': {'first_name': 'Christina', 'last_name': 'DiLaura', 'permalink': 'christina-dilaura'}}, {'is_past': True, 'title': 'Director, Public Relations', 'person': {'first_name': 'Michelle', 'last_name': 'Cox', 'permalink': 'michelle-cox'}}, {'is_past': True, 'title': 'Treasury Analyst', 'person': {'first_name': 'Adriel', 'last_name': 'Lares', 'permalink': 'adriel-lares'}}, {'is_past': True, 'title': 'Senior Analyst Strategic Planning & Development', 'person': {'first_name': 'Michael', 'last_name': 'Dearing', 'permalink': 'michael-dearing'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Daizo', 'last_name': 'Nishitani', 'permalink': 'daizo-nishitani'}}, {'is_past': True, 'title': 'Director, Business Planning and Finance', 'person': {'first_name': 'Jonathan', 'last_name': 'Spira', 'permalink': 'jonathan-spira'}}, {'is_past': True, 'title': 'Market Development Supervisor', 'person': {'first_name': 'Marc', 'last_name': 'Wolfe', 'permalink': 'marc-wolfe'}}, {'is_past': True, 'title': 'Marketing Associate', 'person': {'first_name': 'Rodrigo', 'last_name': 'Santibanez', 'permalink': 'rodrigo-santibanez'}}, {'is_past': True, 'title': 'Senior Manager, Business Development', 'person': {'first_name': 'Eugene', 'last_name': 'Youn', 'permalink': 'eugene-youn'}}, {'is_past': True, 'title': 'Trade Marketing Manager - Walt Disney Records', 'person': {'first_name': 'Jeanne', 'last_name': 'Dyer', 'permalink': 'jeanne-dyer'}}, {'is_past': True, 'title': 'Lead Developer (Consulting)', 'person': {'first_name': 'femi', 'last_name': 'fashakin', 'permalink': 'femi-fashakin'}}, {'is_past': True, 'title': 'Manager, Business Development', 'person': {'first_name': 'Carolyn', 'last_name': 'Everson', 'permalink': 'carolyn-everson'}}, {'is_past': True, 'title': 'vice president and treasurer', 'person': {'first_name': 'Michael', 'last_name': 'Montgomery', 'permalink': 'michael-montgomery'}}, {'is_past': True, 'title': 'Executive Director, International Licensing (Saban International / Fox Family Worldwide)', 'person': {'first_name': 'Eric', 'last_name': 'Karp', 'permalink': 'eric-karp'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Alex', 'last_name': 'Hoye', 'permalink': 'alex-hoye'}}, {'is_past': True, 'title': 'Undergraduate Associate / Consultant', 'person': {'first_name': 'Alex', 'last_name': 'Kaminski', 'permalink': 'alex-kaminski'}}, {'is_past': True, 'title': 'President, Walt Disney Television', 'person': {'first_name': 'David', 'last_name': 'Neuman', 'permalink': 'david-neuman'}}, {'is_past': True, 'title': 'Managing Director (Digital)', 'person': {'first_name': 'Samir', 'last_name': 'Bangara', 'permalink': 'samir-bangara'}}, {'is_past': True, 'title': 'Executive Director, Distribution Strategy - Disney/ABC Cable Networks', 'person': {'first_name': 'John', 'last_name': 'Gentry', 'permalink': 'john-gentry-2'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mary', 'last_name': 'Rafferty', 'permalink': 'mary-rafferty'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'Chere', 'last_name': 'Heintzmann', 'permalink': 'chere-heintzmann'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Erick', 'last_name': 'Miller', 'permalink': 'erick-miller'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Christin', 'permalink': 'michael-christin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Rachel', 'last_name': 'Glaser', 'permalink': 'rachel-glaser'}}, {'is_past': True, 'title': 'Brand Manager', 'person': {'first_name': 'Mike', 'last_name': 'Quiqley', 'permalink': 'mike-quiqley'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Juan', 'last_name': 'Fernandez', 'permalink': 'juan-fernandez-2'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Andrew', 'last_name': 'Shin', 'permalink': 'andrew-shin'}}, {'is_past': True, 'title': 'Strategy, Consumer Products', 'person': {'first_name': 'Lori', 'last_name': 'Goler', 'permalink': 'lori-goler'}}, {'is_past': True, 'title': 'Screenwriter', 'person': {'first_name': 'Richard', 'last_name': 'Janes', 'permalink': 'richard-janes'}}, {'is_past': True, 'title': 'Manager - Technology', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Director, Business Development and Marketing', 'person': {'first_name': 'Mitch', 'last_name': 'Feinman', 'permalink': 'mitch-feinman'}}, {'is_past': True, 'title': 'President E-Commerce, Disney Internet Group', 'person': {'first_name': 'Chuck', 'last_name': 'Davis', 'permalink': 'chuck-davis'}}, {'is_past': True, 'title': 'Sr Project Manager', 'person': {'first_name': 'Keff', 'last_name': 'Ratcliffe', 'permalink': 'keff-ratcliffe'}}, {'is_past': True, 'title': 'Executive Level Positions', 'person': {'first_name': 'Meg', 'last_name': 'Whitman', 'permalink': 'meg-whitman'}}, {'is_past': True, 'title': 'Director, Finance - Disney Publishing Worldwide', 'person': {'first_name': 'Adrienne', 'last_name': 'Vaughan', 'permalink': 'adrienne-vaughan'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications', 'person': {'first_name': 'Chris', 'last_name': 'Castro', 'permalink': 'chris-castro'}}, {'is_past': True, 'title': 'Director of Corporate Development and Strategic Planning.', 'person': {'first_name': 'David', 'last_name': 'Maisel', 'permalink': 'david-maisel'}}, {'is_past': True, 'title': 'Senior Analyst, Corporate Strategic Planning', 'person': {'first_name': 'Qasim', 'last_name': 'Saifee', 'permalink': 'qasim-saifee'}}, {'is_past': True, 'title': 'Various', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director Corporate Controllership', 'person': {'first_name': 'Scott', 'last_name': 'Southron', 'permalink': 'scott-southron'}}, {'is_past': True, 'title': 'Senior Financial & Marketing Analyst', 'person': {'first_name': 'Jennifer', 'last_name': 'Lee', 'permalink': 'jennifer-lee'}}, {'is_past': True, 'title': 'Software Engineer, Walt Disney Feature Animation', 'person': {'first_name': 'Michael', 'last_name': 'Deerkoski', 'permalink': 'michael-deerkoski'}}, {'is_past': True, 'title': 'Strategic Planning Senior Analyst', 'person': {'first_name': 'David', 'last_name': 'Travers', 'permalink': 'david-travers'}}, {'is_past': True, 'title': 'Worldwide Business Development Manager', 'person': {'first_name': 'Roy', 'last_name': 'Malkin', 'permalink': 'roy-malkin'}}, {'is_past': True, 'title': 'Business Planning Analyst Intern', 'person': {'first_name': 'Eric', 'last_name': 'H C Pang', 'permalink': 'eric-h-c-pang'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Scott', 'last_name': 'Walters', 'permalink': 'scott-walters-3'}}, {'is_past': True, 'title': 'Intern & Consultant', 'person': {'first_name': 'Michelle', 'last_name': 'Crames', 'permalink': 'michelle-crames'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Turetzky', 'permalink': 'matt-turetzky'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Andy', 'last_name': 'Kleinman', 'permalink': 'andy-kleinman'}}, {'is_past': True, 'title': 'Finance Manager', 'person': {'first_name': 'Jake', 'last_name': 'Odden', 'permalink': 'jake-odden'}}, {'is_past': True, 'title': 'Analyst', 'person': {'first_name': 'Lisa', 'last_name': 'Bridgett', 'permalink': 'lisa-bridgett'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Steve', 'last_name': 'Tomlin', 'permalink': 'steve-tomlin'}}, {'is_past': True, 'title': 'Corporate Executive', 'person': {'first_name': 'David', 'last_name': 'Billstrom', 'permalink': 'david-billstrom'}}, {'is_past': True, 'title': 'Animator', 'person': {'first_name': 'Irina', 'last_name': 'Golina', 'permalink': 'irina-golina'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Domenico', 'last_name': 'D’Avirro', 'permalink': 'domenico-davirro'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'Aldo', 'last_name': 'Manzini', 'permalink': 'aldo-manzini'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2009/04/30/disney-buys-into-hulu-youtube-should-be-worried/', 'source_description': 'TechCrunch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 30, 'company': {'name': 'hulu', 'permalink': 'hulu'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 350000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://online.wsj.com/article/SB118599768804085026.html', 'source_description': \" Disney Buys Kids' Social-Network Site \", 'acquired_year': 2007, 'acquired_month': 8, 'acquired_day': None, 'company': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://news.cnet.com/8301-13577_3-9967176-36.html', 'source_description': 'cnet.com', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 12, 'company': {'name': 'Ideal Bite', 'permalink': 'ideal-bite'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/02/19/disney-acquires-kerpoofs-kid-friendly-creative-suite/', 'source_description': 'Disney Acquires Kerpoof’s Kid-Friendly Creative Suite', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 19, 'company': {'name': 'Kerpoof', 'permalink': 'kerpoof'}}, {'price_amount': 18400000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2009/04/01/disney-online-buys-kaboose-assets-for-184-million/', 'source_description': 'Disney Online Buys Kaboose Assets For $18.4 Million, Barclays Private Equity Limited Acquires Its UK Operations', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Kaboose', 'permalink': 'kaboose'}}, {'price_amount': 4000000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.techcrunch.com/2009/08/31/breaking-disney-to-acquire-marvel-entertainment-for-4-billion/', 'source_description': 'Disney To Acquire Marvel Entertainment For $4 Billion', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 31, 'company': {'name': 'Marvel Entertainment', 'permalink': 'marvel-entertainment'}}, {'price_amount': 7400000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.pixar.com/companyinfo/about_us/overview.htm', 'source_description': 'Pixar About Page', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'Pixar', 'permalink': 'pixar'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/01/tapulous-acquired-by-disney/', 'source_description': 'Breaking: Tapulous Acquired By Disney', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Tapulous', 'permalink': 'tapulous'}}, {'price_amount': 763200000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/07/27/playdom-acquired-by-disney-for-up-to-763-2-million/', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 27, 'company': {'name': 'Playdom', 'permalink': 'playdom'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.highbeam.com/doc/1G1-17110099.html', 'source_description': 'Walt Disney Co. buys Capital Cities ABC', 'acquired_year': 1995, 'acquired_month': 8, 'acquired_day': 5, 'company': {'name': 'Capital Cities ABC', 'permalink': 'capital-cities-abc'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.newbusinessnews.com/story/10240101.html', 'source_description': 'Walt Disney Company Buys Fox Family Worldwide, Inc.', 'acquired_year': 2001, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Fox Family Worldwide', 'permalink': 'fox-family-worldwide'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://eu.techcrunch.com/2011/03/03/disney-acquires-gaming-engine-startup-to-build-html5-games-outside-of-app-stores/', 'source_description': 'Disney acquires gaming engine startup to build HTML5 games outside of App stores', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 3, 'company': {'name': 'Rocket Pack', 'permalink': 'rocket-pack'}}, {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/disney-spends-40-million-to-reach-hipster-parents-2011-11', 'source_description': 'Disney Buys Babble For ~$40 Million To Reach Hipster Parents', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 14, 'company': {'name': 'Babble', 'permalink': 'babble'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1998, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Infoseek Inc.', 'permalink': 'infoseek-inc'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1996, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Jumbo Pictures', 'permalink': 'jumbo-pictures'}}], 'offices': [{'description': None, 'address1': '500 S. Buena Vista St.', 'address2': '', 'zip_code': '91521', 'city': 'Burbank', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.156802, 'longitude': -118.324987}], 'milestones': [{'id': 6970, 'description': 'Disney About To Acquire Playdom', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 22, 'source_url': 'http://techcrunch.com/2010/07/22/disney-acquire-playdom/', 'source_text': '', 'source_description': 'Disney About To Acquire Playdom', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'The Walt Disney Company', 'permalink': 'the-walt-disney-company'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1969, 'pub_month': 6, 'pub_day': 9, 'stock_symbol': 'NYSE:DIS'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 92], 'assets/images/resized/0004/3617/43617v1-max-150x150.png'], [[250, 154], 'assets/images/resized/0004/3617/43617v1-max-250x250.png'], [[450, 277], 'assets/images/resized/0004/3617/43617v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://jobs.disney.corp.go.com/', 'title': 'Corporate Jobs at The Walt Disney Company'}, {'external_url': 'http://careers.disneyparks.jobs/', 'title': 'Hospitality Jobs'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e91'), 'name': 'WebbAlert', 'permalink': 'webbalert', 'crunchbase_url': 'http://www.crunchbase.com/company/webbalert', 'homepage_url': 'http://www.webbalert.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2009, 'deadpooled_month': 1, 'deadpooled_day': 25, 'deadpooled_url': 'http://www.techcrunch.com/2009/01/26/webbalert-is-no-more/', 'tag_list': 'webbalert, blog, video, vlog, technology, gaming, news, bebospy-com', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Aug 03 04:51:02 UTC 2007', 'updated_at': 'Mon Jan 26 13:46:51 UTC 2009', 'overview': '

WebbAlert is a daily (Monday - Thursday) video news show hosted by X-Play’s Morgan Webb. Launched in August of 2007, the site’s focus is on major breaking technology and gaming news of the day. Like Rocketboom, each show is no more than 5 minutes long, for easy consumption.

\\n\\n

This is mostly a one-woman show. Webb writes, creates and produces the content, even doing her own camera work. She works out of her at-home studio. Her husband Rob Reid (founder of Listen.com, exec at Rhapsody) is co-founder and handles the business side of things.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/3976/3976v1-max-150x150.png'], [[200, 89], 'assets/images/resized/0000/3976/3976v1-max-250x250.png'], [[200, 89], 'assets/images/resized/0000/3976/3976v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'WebbAlert', 'permalink': 'webbalert'}], 'relationships': [{'is_past': None, 'title': 'Co-Founder, Host & Producer', 'person': {'first_name': 'Morgan', 'last_name': 'Webb', 'permalink': 'morgan-webb'}}, {'is_past': None, 'title': 'Co-Founder', 'person': {'first_name': 'Rob', 'last_name': 'Reid', 'permalink': 'rob-reid'}}], 'competitions': [{'competitor': {'name': 'WallStrip', 'permalink': 'wallstrip'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': 'Los Angeles', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.052187, 'longitude': -118.243425}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e92'), 'name': 'Rocketboom', 'permalink': 'rocketboom', 'crunchbase_url': 'http://www.crunchbase.com/company/rocketboom', 'homepage_url': 'http://rocketboom.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Rocketboom', 'category_code': 'news', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'hi@rocketboom.com', 'phone_number': '', 'description': '', 'created_at': 'Fri Aug 03 05:28:02 UTC 2007', 'updated_at': 'Thu Apr 04 03:29:13 UTC 2013', 'overview': '

Rocketboom is one of the most popular video blogs on the web today. Every Monday through Friday in the morning, Rocketboom releases a new episode. The low-cost operation, which requires only a video camera, a Mac pro, three lights and a map with very little additional overhead or costs. Topics of Rocketboom videos typically cover top news stories of the day, international arts and business, technology news, and a quirky section of internet culture and weblog drama. Rocketboom uses RSS feeds to provide the segments on-demand and easily available to viewers. Sticking to their low cost high output plan, Rocketboom spends $0 on promotion, relying solely on word-of-mouth. Rocketboom is based in New York, New York.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0000/3979/3979v1-max-150x150.jpg'], [[250, 63], 'assets/images/resized/0000/3979/3979v1-max-250x250.jpg'], [[327, 83], 'assets/images/resized/0000/3979/3979v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Rocketboom', 'permalink': 'rocketboom'}], 'relationships': [{'is_past': False, 'title': 'Creator, Producer', 'person': {'first_name': 'Andrew', 'last_name': 'Baron', 'permalink': 'andrew-baron'}}, {'is_past': True, 'title': 'Host', 'person': {'first_name': 'Amanda', 'last_name': 'Congdon', 'permalink': 'amanda-congdon'}}, {'is_past': True, 'title': 'Internet Scientist', 'person': {'first_name': 'Jamie', 'last_name': 'Wilkinson', 'permalink': 'jamie-wilkinson'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Joshua', 'last_name': 'Kinberg', 'permalink': 'joshua-kinberg'}}, {'is_past': True, 'title': 'Host', 'person': {'first_name': 'Joanne', 'last_name': 'Colan', 'permalink': 'joanne-colan'}}, {'is_past': True, 'title': 'Director of Research & Development', 'person': {'first_name': 'Greg', 'last_name': 'Leuch', 'permalink': 'greg-leuch'}}], 'competitions': [{'competitor': {'name': 'WallStrip', 'permalink': 'wallstrip'}}], 'providerships': [], 'total_money_raised': '$1.5M', 'funding_rounds': [{'id': 20943, 'round_code': 'seed', 'source_url': 'http://dembot.com/post/2735076710/rocketboom-update', 'source_description': 'Rocketboom', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Andrew', 'last_name': 'Baron', 'permalink': 'andrew-baron'}}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': 'PO Box 804', 'address2': 'Planetarium Station', 'zip_code': '10024', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.797364, 'longitude': -73.97785}], 'milestones': [{'id': 13753, 'description': 'Sold Know Your Meme.', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 22, 'source_url': 'http://www.techmeme.com/110328/p41#a110328p41', 'source_text': None, 'source_description': 'Know Your Meme Acquired By Cheezburger in Seven-Figure Deal', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rocketboom', 'permalink': 'rocketboom'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://dembot.com/post/66244565/rocketboom-and-lisa-nova-join-forces', 'title': ''}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e93'), 'name': 'WallStrip', 'permalink': 'wallstrip', 'crunchbase_url': 'http://www.crunchbase.com/company/wallstrip', 'homepage_url': 'http://wallstrip.com', 'blog_url': '', 'blog_feed_url': None, 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'videoblog, financialnews', 'alias_list': None, 'email_address': None, 'phone_number': None, 'description': None, 'created_at': 'Fri Aug 03 05:34:16 UTC 2007', 'updated_at': 'Mon Aug 24 21:02:26 UTC 2009', 'overview': '

A financial news video blog hosted by perky actress Lindsay Campbell, Wallstrip went strong for 8 months or so before being acquired by media giant CBS. Taking a non-traditional approach to the news, Campbell tells stories and inserts humor whenever possible. In ways similar ways to John Stewart’s Daily Show, Wallstrip appeals to an audience of knowledgeable viewers who would like to be entertained. Competitors include other video blogs such as RocketBoom, WebbAlert and TeXtra.

', 'image': {'available_sizes': [[[150, 42], 'assets/images/resized/0000/3982/3982v1-max-150x150.png'], [[200, 57], 'assets/images/resized/0000/3982/3982v1-max-250x250.png'], [[200, 57], 'assets/images/resized/0000/3982/3982v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Wallstrip', 'permalink': 'wallstrip'}], 'relationships': [{'is_past': False, 'title': 'Creator', 'person': {'first_name': 'Howard', 'last_name': 'Lindzon', 'permalink': 'howard-lindzon'}}, {'is_past': None, 'title': 'Producer', 'person': {'first_name': 'Jeff', 'last_name': 'Marks', 'permalink': 'jeff-marks'}}, {'is_past': False, 'title': 'Investor, Board Member', 'person': {'first_name': 'Roger', 'last_name': 'Ehrenberg', 'permalink': 'roger-ehrenberg'}}, {'is_past': False, 'title': 'Producer', 'person': {'first_name': 'Adam', 'last_name': 'Elend', 'permalink': 'adam-elend'}}, {'is_past': None, 'title': 'Host', 'person': {'first_name': 'Lindsay', 'last_name': 'Campbell', 'permalink': 'lindsay-campbell'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Michael', 'last_name': 'Seneadza', 'permalink': 'michael-seneadza'}}, {'is_past': True, 'title': 'Producer, Shooter, Editor', 'person': {'first_name': 'Jon', 'last_name': 'Labes', 'permalink': 'jon-labes'}}], 'competitions': [{'competitor': {'name': 'WebbAlert', 'permalink': 'webbalert'}}, {'competitor': {'name': 'Rocketboom', 'permalink': 'rocketboom'}}], 'providerships': [], 'total_money_raised': '$600k', 'funding_rounds': [{'id': 296, 'round_code': 'angel', 'source_url': 'http://newteevee.com/2007/05/21/cbs-does-indeed-scoop-up-wallstrip/', 'source_description': '', 'raised_amount': 600000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Fred', 'last_name': 'Wilson', 'permalink': 'fred-wilson'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Brad', 'last_name': 'Feld', 'permalink': 'brad-feld'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Roger', 'last_name': 'Ehrenberg', 'permalink': 'roger-ehrenberg'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Stewart', 'permalink': 'jeff-stewart'}}]}], 'investments': [], 'acquisition': {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/05/13/cbs-acquires-wallstrip-for-5-million/', 'source_description': 'CBS Acquires WallStrip for $5 million', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 1, 'acquiring_company': {'name': 'CBS', 'permalink': 'cbs'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e95'), 'name': 'IAC', 'permalink': 'iac', 'crunchbase_url': 'http://www.crunchbase.com/company/iac', 'homepage_url': 'http://www.iac.com', 'blog_url': 'http://iac.com/about/blog/', 'blog_feed_url': '', 'twitter_username': 'iac', 'category_code': 'news', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'conglomerate, ask, match-com', 'alias_list': '', 'email_address': 'info@iac.com', 'phone_number': '', 'description': 'media conglomerate', 'created_at': 'Fri Aug 03 06:08:44 UTC 2007', 'updated_at': 'Mon Aug 05 17:09:10 UTC 2013', 'overview': '

IAC is a media conglomerate with a wide range of online assets. In November 2007, announced they would be separating IAC into 5 public companies. IAC will consist of: Ask.com, Bloglines, CitySearch, Evite, Excite, InsiderPages, iWon, My Fun Cards, My Way, Popular Screensaver, Smiley Central, Match.com, chemistry.com, ServiceMagic, Shoebuy.com, BustedTees, CollegeHumor, Garage Games, Gifts.com, Green.com, Instant Action, Very Short List, Vimeo, 23/6. IAC is also an investor in Active.com, Brightcove, FiLife, Medem, Merchant Circle, OpenTable, Points.com and SHOP channel.

\\n\\n

The 5 spun off companies were Home Shopping Network, Ticketmaster, Interval International, LendingTree and expedia.com.

\\n\\n

IAC’s notable acquisitions included:

\\n\\n', 'image': {'available_sizes': [[[150, 65], 'assets/images/resized/0000/4000/4000v1-max-150x150.png'], [[150, 65], 'assets/images/resized/0000/4000/4000v1-max-250x250.png'], [[150, 65], 'assets/images/resized/0000/4000/4000v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'gifts.com', 'permalink': 'gifts-com'}], 'relationships': [{'is_past': False, 'title': 'CEO HomeAdvisor.com', 'person': {'first_name': 'Chirs', 'last_name': 'Terill', 'permalink': 'chirs-terill'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Joey', 'last_name': 'Levin', 'permalink': 'joey-levin'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jeff', 'last_name': 'Kip', 'permalink': 'jeff-kip'}}, {'is_past': False, 'title': 'Chairman & Senior Executive', 'person': {'first_name': 'Barry', 'last_name': 'Diller', 'permalink': 'barry-diller'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Daniel', 'last_name': 'Fossner', 'permalink': 'daniel-fossner'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'Sam', 'last_name': 'Yagan', 'permalink': 'sam-yagan'}}, {'is_past': False, 'title': 'Chief Strategy Officer, IAC Search', 'person': {'first_name': 'Mark', 'last_name': 'Stein', 'permalink': 'mark-stein'}}, {'is_past': False, 'title': 'Chief Information Officer', 'person': {'first_name': 'Vincent', 'last_name': 'Luciani', 'permalink': 'vincent-luciani'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Greg', 'last_name': 'Blatt', 'permalink': 'greg-blatt'}}, {'is_past': False, 'title': 'Group VP, Head of Mobile', 'person': {'first_name': 'Dinesh', 'last_name': 'Moorjani', 'permalink': 'dinesh-moorjani'}}, {'is_past': False, 'title': 'Senior Vice President, Business Development', 'person': {'first_name': 'Andrew', 'last_name': 'Moers', 'permalink': 'andrew-moers'}}, {'is_past': False, 'title': 'Senior Vice President, Investor Relations and Treasurer', 'person': {'first_name': 'Nick', 'last_name': 'Stoumpas', 'permalink': 'nick-stoumpas'}}, {'is_past': False, 'title': 'Senior Vice President and Controller', 'person': {'first_name': 'Michael', 'last_name': 'Schwerdtman', 'permalink': 'michael-schwerdtman'}}, {'is_past': False, 'title': 'SVP & General Counsel', 'person': {'first_name': 'Gregg', 'last_name': 'winiarski', 'permalink': 'gregg-winiarski'}}, {'is_past': False, 'title': 'Vice President, Sales', 'person': {'first_name': 'Shannon', 'last_name': 'Rock', 'permalink': 'shannon-rock'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Rosenblatt', 'permalink': 'david-rosenblatt'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Stephanie J.', 'last_name': 'Neill', 'permalink': 'stephannie-neill'}}, {'is_past': False, 'title': 'Advertising Sales Manager', 'person': {'first_name': 'Matthew', 'last_name': 'Haugen', 'permalink': 'matthew-haugen'}}, {'is_past': False, 'title': 'Senior Vice President and Deputy General Counsel', 'person': {'first_name': 'Joanne', 'last_name': 'Hawkins', 'permalink': 'joane-hawkins'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Administrative Officer', 'person': {'first_name': 'Jason', 'last_name': 'Stewart', 'permalink': 'jason-stewart-3'}}, {'is_past': False, 'title': 'Business Intelligence Director', 'person': {'first_name': 'Mandy', 'last_name': 'Ginsberg', 'permalink': 'mandy-ginsberg'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Doug', 'last_name': 'Leeds', 'permalink': 'doug-leeds'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Andy', 'last_name': 'Smith', 'permalink': 'andy-smith-4'}}, {'is_past': False, 'title': 'President, Match North America', 'person': {'first_name': 'Amarnath', 'last_name': 'Thombre', 'permalink': 'amarnath-thombre'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Ricky', 'last_name': 'Van Veen', 'permalink': 'ricky-van-veen'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Chelsea', 'last_name': 'Clinton', 'permalink': 'chelsea-clinton'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Donald', 'last_name': 'Keough', 'permalink': 'donald-keough'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Arthur', 'last_name': 'Martinez', 'permalink': 'arthur-martinez-2'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Richard', 'last_name': 'Zannio', 'permalink': 'richard-zannio'}}, {'is_past': False, 'title': 'Operating Business', 'person': {'first_name': 'Eric', 'last_name': 'Esterlis', 'permalink': 'eric-esterlis'}}, {'is_past': False, 'title': 'Business Management', 'person': {'first_name': 'Chris', 'last_name': 'Terrill', 'permalink': 'chris-terrill'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Richard', 'last_name': 'F. Zannino', 'permalink': 'richard-f-zannino'}}, {'is_past': False, 'title': 'Director, Business Development', 'person': {'first_name': 'Jamal', 'last_name': 'Hamou', 'permalink': 'jamal-hamou'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Alan', 'last_name': 'Spoon', 'permalink': 'alan-spoon'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Michael', 'last_name': 'Eisner', 'permalink': 'michael-eisner'}}, {'is_past': False, 'title': 'Managing Director of Mergers & Acquisitions', 'person': {'first_name': 'Rich', 'last_name': 'Nelson', 'permalink': 'rich-nelson'}}, {'is_past': False, 'title': 'Asociate', 'person': {'first_name': 'Tina', 'last_name': 'Brown', 'permalink': 'tina-brown-2'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Paul', 'last_name': 'Greenberg', 'permalink': 'paul-greenberg'}}, {'is_past': False, 'title': 'Business Intelligence Director', 'person': {'first_name': 'Ben', 'last_name': 'Silverman', 'permalink': 'ben-silverman'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Mike', 'last_name': 'Sorabella', 'permalink': 'mike-sorabella'}}, {'is_past': False, 'title': 'Business Intelligence director', 'person': {'first_name': 'Kerry', 'last_name': 'Trainor', 'permalink': 'kerry-trainor'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Edgar', 'last_name': 'Bronfman, Jr', 'permalink': 'edgar-bronfman-jr'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Alexander', 'last_name': 'Von Furstenberg', 'permalink': 'alexander-von-furstenberg'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Bryan', 'last_name': 'Lourd', 'permalink': 'bryan-leough'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Sonali', 'last_name': 'De Rycker', 'permalink': 'sonali-de-rycker'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Victor', 'last_name': 'Kaufman', 'permalink': 'victor-kaufman'}}, {'is_past': False, 'title': 'Corporate Development', 'person': {'first_name': 'Bryan', 'last_name': 'Ciambella', 'permalink': 'bryan-ciambella'}}, {'is_past': False, 'title': 'Business Management', 'person': {'first_name': 'Michele', 'last_name': 'Turner', 'permalink': 'michele-turner'}}, {'is_past': True, 'title': 'Chairman / CEO', 'person': {'first_name': 'Barry', 'last_name': 'Diller', 'permalink': 'barry-diller'}}, {'is_past': True, 'title': 'CEO, IAC Media and Advertising', 'person': {'first_name': 'Peter', 'last_name': 'Horan', 'permalink': 'peter-horan'}}, {'is_past': True, 'title': 'CEO Entertainment Publications', 'person': {'first_name': 'Alan', 'last_name': 'Bittker', 'permalink': 'alan-bittker'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jason', 'last_name': 'Rapp', 'permalink': 'jason-rapp'}}, {'is_past': True, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Dara', 'last_name': 'Khosrowshahi', 'permalink': 'dara-khosrowshahi'}}, {'is_past': True, 'title': 'EVP & CFO', 'person': {'first_name': 'Thomas', 'last_name': 'McInerney', 'permalink': 'thomas-mcinerney'}}, {'is_past': True, 'title': 'Chief Business Officer', 'person': {'first_name': 'Julius', 'last_name': 'Genachowski', 'permalink': 'julius-genachowski'}}, {'is_past': True, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Scott', 'last_name': 'Mitchell', 'permalink': 'scott-mitchell'}}, {'is_past': True, 'title': 'SVP, Product & Marketing', 'person': {'first_name': 'Tim', 'last_name': 'Allen', 'permalink': 'tim-allen'}}, {'is_past': True, 'title': 'VP, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Primiani', 'permalink': 'michael-primiani'}}, {'is_past': True, 'title': 'Senior Vice President, Mergers and Acquisitions', 'person': {'first_name': 'Jason', 'last_name': 'Rapp', 'permalink': 'jason-rapp'}}, {'is_past': True, 'title': 'VP, Finance & Systems', 'person': {'first_name': 'Dan', 'last_name': 'Rowley', 'permalink': 'dan-rowley'}}, {'is_past': True, 'title': 'SVP of IT and Ops', 'person': {'first_name': 'Dayne', 'last_name': 'Sampson', 'permalink': 'dayne-sampson'}}, {'is_past': True, 'title': 'Senior Vice President, Corporate and Interactive Development', 'person': {'first_name': 'Dan', 'last_name': 'Marriott', 'permalink': 'dan-marriott'}}, {'is_past': True, 'title': 'VP M&A', 'person': {'first_name': 'Kara', 'last_name': 'Nortman', 'permalink': 'kara-nortman'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Justin', 'last_name': 'Squezello', 'permalink': 'justin-squezello'}}, {'is_past': True, 'title': 'Assistant to the SVP of Strategy and M&A', 'person': {'first_name': 'Dan', 'last_name': 'Martin', 'permalink': 'dan-martin-2'}}, {'is_past': True, 'title': 'Senior Vice President, M&A and Strategy', 'person': {'first_name': 'Shana', 'last_name': 'Fisher', 'permalink': 'shana-fisher'}}, {'is_past': True, 'title': 'Sr. Director of Sales, Western Region', 'person': {'first_name': 'Jim', 'last_name': 'Benton', 'permalink': 'jim-benton'}}, {'is_past': True, 'title': 'Director, Programming & Development Groups', 'person': {'first_name': 'Jonathan', 'last_name': 'Marcus', 'permalink': 'jonathan-marcus'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Annelise', 'last_name': 'Pruitt', 'permalink': 'annelise-pruitt'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Megu', 'last_name': 'Kobayashi', 'permalink': 'megu-kobayashi'}}, {'is_past': True, 'title': 'Director, Programming Group', 'person': {'first_name': 'Jonathan', 'last_name': 'Marcus', 'permalink': 'jonathan-marcus'}}, {'is_past': True, 'title': 'Software Engineering Manager', 'person': {'first_name': 'Benjamin', 'last_name': 'Trent', 'permalink': 'benjamin-trent'}}, {'is_past': True, 'title': 'Executive Vice President and General Counsel', 'person': {'first_name': 'Greg', 'last_name': 'Blatt', 'permalink': 'greg-blatt'}}, {'is_past': True, 'title': 'COO, Pronto Division', 'person': {'first_name': 'Matt', 'last_name': 'Feierstein', 'permalink': 'matt-feierstein'}}, {'is_past': True, 'title': 'Director of Sales & Operations', 'person': {'first_name': 'Ivonne', 'last_name': 'Marie Orillac', 'permalink': 'ivonne-marie-orillac'}}, {'is_past': True, 'title': 'Sr. Director of Engineering', 'person': {'first_name': 'Elaine', 'last_name': 'Zhou', 'permalink': 'elaine-zhou'}}, {'is_past': True, 'title': 'Engineering Manager | Citysearch, Technology Implementation Manager | Citysearch, Operations Manager | Citysearch', 'person': {'first_name': 'Gregory', 'last_name': 'Boudewijn', 'permalink': 'gregory-boudewijn'}}, {'is_past': True, 'title': 'Director Central & Eastern Europe', 'person': {'first_name': 'Dimo', 'last_name': 'Velev', 'permalink': 'dimo-velev'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Michael', 'last_name': 'Calleia', 'permalink': 'michael-calleia'}}, {'is_past': True, 'title': 'Member', 'person': {'first_name': 'JEANNE', 'last_name': 'D. LEFEVRE', 'permalink': 'jeanne-d-lefevre'}}, {'is_past': True, 'title': 'VP, Business Development - TheDailyBeast.com', 'person': {'first_name': 'Brian', 'last_name': 'Dick', 'permalink': 'brian-dick'}}, {'is_past': True, 'title': 'Strategic Account Manager', 'person': {'first_name': 'Aaron', 'last_name': 'Goldman', 'permalink': 'aaron-goldman'}}, {'is_past': True, 'title': 'Vice President, Programming', 'person': {'first_name': 'Mo', 'last_name': 'Koyfman', 'permalink': 'mo-koyfman'}}, {'is_past': True, 'title': 'Sr. Director, Strategy and M&A', 'person': {'first_name': 'Kai', 'last_name': 'Bond', 'permalink': 'kai-bond'}}, {'is_past': True, 'title': 'Architect', 'person': {'first_name': 'David', 'last_name': 'Wolfe', 'permalink': 'david-wolfe'}}, {'is_past': True, 'title': 'Manager/Associate Director', 'person': {'first_name': 'Brian', 'last_name': 'Doxtator', 'permalink': 'brian-doxtator'}}, {'is_past': True, 'title': 'Marketing Director', 'person': {'first_name': 'Alexis', 'last_name': 'Ferraro', 'permalink': 'alexis-ferraro'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'John', 'last_name': 'C. Malone', 'permalink': 'john-c-malone'}}, {'is_past': True, 'title': 'Deputy General Counsel and other senior executive roles', 'person': {'first_name': 'Deirdre', 'last_name': 'Stanley', 'permalink': 'deirdre-stanley'}}, {'is_past': True, 'title': 'Senior Vice President, Sales and Account Management', 'person': {'first_name': 'Jeff', 'last_name': 'Shioya', 'permalink': 'jeff-shioya'}}, {'is_past': True, 'title': 'VP & Assoc. General Counsel', 'person': {'first_name': 'Adam', 'last_name': 'Agensky', 'permalink': 'adam-agensky'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Kevin', 'last_name': 'McFall', 'permalink': 'kevin-mcfall'}}, {'is_past': True, 'title': 'Designer & Illustrator', 'person': {'first_name': 'Hilli', 'last_name': 'Kushnir', 'permalink': 'hilli-kushnir'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunch.com/2006/10/29/brightcove-launches-its-network-for-small-video-publishers/', 'source_description': '', 'raised_amount': 16200000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Brightcove', 'permalink': 'brightcove'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://publications.mediapost.com/index.cfm?fuseaction=Articles.showArticle&art_aid=46849', 'source_description': None, 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'CollegeHumor', 'permalink': 'collegehumor'}}}, {'funding_round': {'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'InstantAction', 'permalink': 'garagegames'}}}, {'funding_round': {'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'MerchantCircle', 'permalink': 'merchantcircle'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.paidcontent.org/entry/419-iac-buying-major-chunk-in-healthcentral-carlyle-sequoia-polaris-also-in/', 'source_description': 'IAC Buying Major Chunk In HealthCentral; Carlyle, Sequoia & Polaris Also Investing; Total $50M', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'HealthCentral', 'permalink': 'healthcentral'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2012/02/aereo-raises-20-5m-series-financing.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Aereo Raises $20.5M in Series A Financing', 'raised_amount': 20500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 2, 'funded_day': 14, 'company': {'name': 'Aereo', 'permalink': 'aereo'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.paidcontent.org/entry/brightcove-raises-another-595-million-in-thrd-round-nytco-among-new-investo/', 'source_description': 'Brightcove Raises Another $59.5 Million In Third Round; NYTCO Among New Investors', 'raised_amount': 59500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Brightcove', 'permalink': 'brightcove'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'Match', 'permalink': 'match'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.iac.com/index/news/press/IAC/press_release_detail.htm?id=7822', 'source_description': 'IAC Acquires Controlling Interest in Connected Ventures, LLC, Parent of Leading Comedy Site CollegeHumor.com', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'Connected Ventures', 'permalink': 'connectedventures'}}, {'price_amount': 1850000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Ask.com', 'permalink': 'ask-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iac.com/index/overview/overview_history.html', 'source_description': '', 'acquired_year': 2003, 'acquired_month': 1, 'acquired_day': None, 'company': {'name': 'Ticketmaster', 'permalink': 'ticketmaster'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.paidcontent.org/entry/419-iac-acquires-girlsensecom-parent-starnet/', 'source_description': 'IAC Acquires GirlSense.com Parent StarNet; Targeting Tweens', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': 20, 'company': {'name': 'StarNet Interactive', 'permalink': 'starnet-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://web2.commongate.com/tag/interactivecorp', 'source_description': 'CollegeHumor.com Sells Out - for at least $20 Million', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 15, 'company': {'name': 'CollegeHumor', 'permalink': 'collegehumor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/cgi-bin/stories.pl?ACCT=109&STORY=/www/story/07-22-2004/0002216555&EDATE=', 'source_description': 'http://www.facebook.com/CBSNewYork#!/pages/Dumpster-newark-nj-908-313-9888/177688148917858', 'acquired_year': 2004, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'HomeAdvisor', 'permalink': 'homeadvisor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/04/29/iac-buys-urbanspoon-based-on-good-recommendations/', 'source_description': 'IAC Buys UrbanSpoon Based On Good Recommendations', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 29, 'company': {'name': 'Urbanspoon', 'permalink': 'urbanspoon'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2006, 'acquired_month': 12, 'acquired_day': 20, 'company': {'name': 'llike.com', 'permalink': 'llike-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thedatingassociation.org/match_acquires_companies.html', 'source_description': 'Match.com Acquires Leading Online Dating and Relationship Companies in France and China', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'Edodo Interactive', 'permalink': 'edodo-interactive'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thedatingassociation.org/match_acquires_companies.html', 'source_description': 'Match.com Acquires Leading Online Dating and Relationship Companies in France and China', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 1, 'company': {'name': 'NetClub', 'permalink': 'netclub'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ticketnews.com/IAC-Buys-Into-Front-Line-Management51527', 'source_description': 'IAC/InterActiveCorp. Buys into Front Line Management', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 17, 'company': {'name': 'Frontline Management', 'permalink': 'frontline-management'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 24, 'company': {'name': 'Emma Entertainment', 'permalink': 'emma-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/InterActiveCorp+Completes+Acquisition+of+Hotels.Com.-a0103980391', 'source_description': 'InterActiveCorp Completes Acquisition of Hotels.Com', 'acquired_year': 2003, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'Hotels.com', 'permalink': 'hotels-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://findarticles.com/p/articles/mi_m0EIN/is_2003_August_8/ai_106445213/', 'source_description': 'IAC Completes Acquisition of Expedia, Inc', 'acquired_year': 2003, 'acquired_month': 8, 'acquired_day': 8, 'company': {'name': 'Expedia', 'permalink': 'expedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://iac.mediaroom.com/index.php?s=43&item=138', 'source_description': 'IAC Completes Acquisition of LendingTree', 'acquired_year': 2003, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'LendingTree', 'permalink': 'lendingtree'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.hospitalitynet.org/news//4017128.html', 'source_description': 'IAC/InterActiveCorp to Acquire Hotwire', 'acquired_year': 2003, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'Hotwire', 'permalink': 'hotwire'}}, {'price_amount': 210000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://goliath.ecnext.com/coms2/gi_0199-3979814/IAC-Acquires-TripAdvisor-Inc-Leading.html', 'source_description': 'IAC Acquires TripAdvisor, Inc. ', 'acquired_year': 2004, 'acquired_month': 3, 'acquired_day': 16, 'company': {'name': 'TripAdvisor', 'permalink': 'tripadvisor'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.allbusiness.com/retail-trade/miscellaneous-retail/4436344-1.html', 'source_description': 'IAC completes acquisition of Cornerstone Brands', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 1, 'company': {'name': 'Cornerstone Brands', 'permalink': 'cornerstone-brands'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.internetretailer.com/2006/01/31/iac-interactive-to-acquire-shoebuy-com', 'source_description': 'AC/InterActive to acquire ShoeBuy.com', 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Shoebuy', 'permalink': 'shoebuy'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/08/26/iac-is-buying-about-com-from-nyt-for-300m-deal-coming-either-tonight-or-tomorrow-source/', 'source_description': 'Confirmed: IAC Has Bought About.com From The New York Times For $300M In Cash', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 27, 'company': {'name': 'About.com', 'permalink': 'about-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/07/iac-acquires-tutor-com-to-add-an-education-string-to-its-consumer-web-portfolio/', 'source_description': 'IAC Acquires Tutor.com To Add An Education String To Its Consumer Web Portfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'Tutor', 'permalink': 'tutor'}}], 'offices': [{'description': 'HQ', 'address1': '555 West 18th Street', 'address2': '', 'zip_code': '10011', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.745172, 'longitude': -74.007646}], 'milestones': [], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1993, 'pub_month': 3, 'pub_day': 4, 'stock_symbol': 'NASDAQ:IACI'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3619/43619v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3619/43619v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3619/43619v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e9c'), 'name': 'Techstars', 'permalink': 'techstars', 'crunchbase_url': 'http://www.crunchbase.com/company/techstars', 'homepage_url': 'http://techstars.com', 'blog_url': 'http://techstars.com/blog', 'blog_feed_url': 'http://feeds.feedburner.com/TechstarsBlog', 'twitter_username': 'techstars', 'category_code': 'finance', 'number_of_employees': 30, 'founded_year': 2006, 'founded_month': 10, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'seed-fund, techstars, accelerator, techstars-nyc-winter-2011, techstars-boston-2011, techstars-boulder-2011, techstars-seattle-2011, techstars-nyc-summer-2011, techstars-cloud-2012, techstars-boston-2012, techstars-nyc-2012', 'alias_list': '', 'email_address': 'david@techstars.com', 'phone_number': '', 'description': 'Seed fund + accelerator', 'created_at': 'Sat Aug 04 06:45:20 UTC 2007', 'updated_at': 'Wed Nov 06 18:33:23 UTC 2013', 'overview': '

Techstars is the #1 startup accelerator in the world. We’re very selective. Although thousands of companies apply each year, we only invest our money and time in about ten companies per program location. We have selection rates lower than the Ivy League, so you have to be among the best of the best to earn investment.

', 'image': {'available_sizes': [[[150, 99], 'assets/images/resized/0000/4033/4033v6-max-150x150.png'], [[250, 165], 'assets/images/resized/0000/4033/4033v6-max-250x250.png'], [[450, 297], 'assets/images/resized/0000/4033/4033v6-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-Founder & General Partner', 'person': {'first_name': 'Sam', 'last_name': 'Yagan', 'permalink': 'sam-yagan'}}, {'is_past': False, 'title': 'Co - Founder TechStars NYC', 'person': {'first_name': 'David', 'last_name': 'Tisch', 'permalink': 'david-tisch'}}, {'is_past': False, 'title': 'Founder, Blue Mountain', 'person': {'first_name': 'Jared', 'last_name': 'Polis', 'permalink': 'jared-polis'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'David', 'last_name': 'Cohen', 'permalink': 'david-cohen'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Brad', 'last_name': 'Feld', 'permalink': 'brad-feld'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Simeon', 'last_name': 'Simeonov', 'permalink': 'simeon-simeonov'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Micah', 'last_name': 'Baldwin', 'permalink': 'micah-baldwin'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Wayne', 'last_name': 'Chang', 'permalink': 'wayne-chang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Joshua', 'last_name': 'Stylman', 'permalink': 'joshua-stylman'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Nicole', 'last_name': 'Glaros', 'permalink': 'nicole-glaros'}}, {'is_past': False, 'title': 'Mentor NYC', 'person': {'first_name': 'Bob', 'last_name': 'Pasker', 'permalink': 'bob-pasker'}}, {'is_past': False, 'title': 'Director, Finance', 'person': {'first_name': 'Tony', 'last_name': 'Shouse', 'permalink': 'tony-shouse'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Raj', 'last_name': 'Ramanandi', 'permalink': 'raj-ramanandi'}}, {'is_past': False, 'title': 'mentor', 'person': {'first_name': 'Will', 'last_name': 'Herman', 'permalink': 'will-herman'}}, {'is_past': False, 'title': 'Managing Director, TechStars Chicago', 'person': {'first_name': 'Troy', 'last_name': 'Henikoff', 'permalink': 'troy-henikoff'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Rebecca', 'last_name': 'Lovell', 'permalink': 'rebecca-lovell'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Suaad', 'last_name': 'Sait', 'permalink': 'suaad-sait'}}, {'is_past': False, 'title': 'Program Lead, TechStars Boston', 'person': {'first_name': 'Rohit', 'last_name': 'Gupta', 'permalink': 'rohit-gupta-9'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Josh', 'last_name': 'Kerr', 'permalink': 'josh-kerr'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Naveen', 'last_name': 'Gupta', 'permalink': 'naveen-gupta-2'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Adam', 'last_name': 'Singolda', 'permalink': 'adam-singolda'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Shayne', 'last_name': 'Higdon', 'permalink': 'shayne-higdon'}}, {'is_past': False, 'title': 'Nike+ Accelerator Mentor', 'person': {'first_name': 'Andrew', 'last_name': 'Mager', 'permalink': 'andrew-mager'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Geva', 'last_name': 'Perry', 'permalink': 'geva-perry'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Vikram', 'last_name': 'Dendi', 'permalink': 'vikram-dendi'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Tom', 'last_name': 'Egan', 'permalink': 'tom-egan'}}, {'is_past': False, 'title': 'Participating Company Summer 2013', 'person': {'first_name': 'Stan', 'last_name': 'Bokov', 'permalink': 'stan-bokov'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Dave', 'last_name': 'Malcolm', 'permalink': 'dave-malcolm'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Robert', 'last_name': 'Pease', 'permalink': 'robert-pease'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Dan', 'last_name': 'Ratner', 'permalink': 'dan-ratner'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Chris', 'last_name': 'Moody', 'permalink': 'chris-moody'}}, {'is_past': False, 'title': 'President, ZOLL data systems', 'person': {'first_name': 'David', 'last_name': 'Brown', 'permalink': 'david-brown'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Jeff', 'last_name': 'Bennett', 'permalink': 'jeff-bennett'}}, {'is_past': False, 'title': 'Business Development Consultant', 'person': {'first_name': 'Matt', 'last_name': 'Galligan', 'permalink': 'matt-galligan'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Bill', 'last_name': 'Boebel', 'permalink': 'bill-boebel'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Don', 'last_name': 'Loeb', 'permalink': 'don-loeb'}}, {'is_past': False, 'title': 'Managing Director, Boston', 'person': {'first_name': 'Katie', 'last_name': 'Rae', 'permalink': 'katie-rae'}}, {'is_past': False, 'title': 'Executive Director, TechStars Seattle', 'person': {'first_name': 'Andy', 'last_name': 'Sack', 'permalink': 'andy-sack'}}, {'is_past': False, 'title': 'Network Catalyst', 'person': {'first_name': 'Ari', 'last_name': 'Newman', 'permalink': 'ari-newman'}}, {'is_past': False, 'title': 'Software Developer', 'person': {'first_name': 'Dan', 'last_name': 'Andrews', 'permalink': 'daniel-andrews'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Eugene', 'last_name': 'Chung', 'permalink': 'eugene-chung'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Jon', 'last_name': 'Bradford', 'permalink': 'jon-bradford'}}, {'is_past': False, 'title': 'Mentor for Boston Program', 'person': {'first_name': 'Claire', 'last_name': 'Wadlington', 'permalink': 'claire-wadlington'}}, {'is_past': False, 'title': 'Investor, TechStars Boston', 'person': {'first_name': 'Shereen', 'last_name': 'Shermak', 'permalink': 'shereen-shermak'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Kristin', 'last_name': 'McDonnell', 'permalink': 'kristin-mcdonnell'}}, {'is_past': False, 'title': 'Associate', 'person': {'first_name': 'Zach', 'last_name': 'Noorani', 'permalink': 'zachary-j-noorani'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Justin', 'last_name': 'Sigal', 'permalink': 'justin-sigal'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Joel', 'last_name': 'Spolsky', 'permalink': 'joel-spolsky'}}, {'is_past': False, 'title': 'Analyst', 'person': {'first_name': 'Brandon', 'last_name': 'Marker', 'permalink': 'brandon-marker'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Chris', 'last_name': 'Hollindale', 'permalink': 'chris-hollindale-2'}}, {'is_past': False, 'title': 'Managing Director', 'person': {'first_name': 'Reed', 'last_name': 'Sturtevant', 'permalink': 'reed-sturtevant'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Frederick', 'last_name': '\"Suizo\" Mendler', 'permalink': 'frederick-suizo-mendler'}}, {'is_past': False, 'title': 'Advisor', 'person': {'first_name': 'Mark', 'last_name': 'Tortorella', 'permalink': 'mark-tortorella'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'John', 'last_name': 'Ives', 'permalink': 'john-ives'}}, {'is_past': False, 'title': 'Mentor', 'person': {'first_name': 'Joel', 'last_name': 'Espelien', 'permalink': 'joel-espelien'}}, {'is_past': False, 'title': 'Managing Director of Techstars Cloud', 'person': {'first_name': 'Jason', 'last_name': 'Seats', 'permalink': 'jason-seats'}}, {'is_past': False, 'title': 'Managing Director, NYC', 'person': {'first_name': 'Alex', 'last_name': 'Iskold', 'permalink': 'alex-iskold'}}, {'is_past': False, 'title': 'Mentoring', 'person': {'first_name': 'Cyril', 'last_name': 'Ebersweiler', 'permalink': 'cyril-ebersweiler'}}, {'is_past': True, 'title': 'Participant Founder', 'person': {'first_name': 'Jeremy', 'last_name': 'Fisher', 'permalink': 'jeremy-fisher'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Jeff', 'last_name': 'Widman', 'permalink': 'jeff-widman'}}, {'is_past': True, 'title': 'Summer Intern', 'person': {'first_name': 'Cory', 'last_name': 'Levy', 'permalink': 'cory-levy'}}, {'is_past': True, 'title': 'Director, NYC', 'person': {'first_name': 'Adam', 'last_name': 'Rothenberg', 'permalink': 'adam-rothenberg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lexi', 'last_name': 'Lewtan', 'permalink': 'lexi-lewtan'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Max', 'last_name': 'Bennett', 'permalink': 'max-bennett'}}, {'is_past': True, 'title': 'Hacker in Residence (HackStar)', 'person': {'first_name': 'Myles', 'last_name': 'Recny', 'permalink': 'myles-recny'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'San', 'last_name': 'Kim', 'permalink': 'san-kim'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Eric', 'last_name': 'Olden', 'permalink': 'eric-olden'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Shaun', 'last_name': 'Johnson', 'permalink': 'shaun-johnson'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Bob', 'last_name': 'Frankston', 'permalink': 'bob-frankston'}}, {'is_past': True, 'title': 'Managing Director - NYC', 'person': {'first_name': 'David', 'last_name': 'Tisch', 'permalink': 'david-tisch'}}, {'is_past': True, 'title': 'Community Director', 'person': {'first_name': 'Andrew', 'last_name': 'Hyde', 'permalink': 'andrew-hyde'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Dave', 'last_name': 'Morin', 'permalink': 'dave-morin'}}, {'is_past': True, 'title': 'VC', 'person': {'first_name': 'Miguel', 'last_name': 'Galvez', 'permalink': 'miguel-galvez'}}, {'is_past': True, 'title': 'Boston 2009 Company', 'person': {'first_name': 'Ajay', 'last_name': 'Kulkarni', 'permalink': 'ajay-kulkarni'}}, {'is_past': True, 'title': 'Hackstar', 'person': {'first_name': 'Andrew', 'last_name': 'Nalband', 'permalink': 'andrew-nalband'}}, {'is_past': True, 'title': 'Summer Intern', 'person': {'first_name': 'Catalin', 'last_name': 'Dumitru', 'permalink': 'catalin-dumitru'}}, {'is_past': True, 'title': 'NYC 2012 Participant', 'person': {'first_name': 'Adam', 'last_name': 'Saint', 'permalink': 'adam-saint'}}, {'is_past': True, 'title': 'Mentor', 'person': {'first_name': 'Steve', 'last_name': 'Sachs', 'permalink': 'steve-sachs'}}, {'is_past': True, 'title': 'Advisor & Investor', 'person': {'first_name': 'Tim', 'last_name': \"O'Shea\", 'permalink': 'tim-oshea'}}, {'is_past': True, 'title': 'Associate', 'person': {'first_name': 'Geoffrey', 'last_name': 'Weg', 'permalink': 'geoffrey-weg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Jenny', 'last_name': 'Lam', 'permalink': 'jenny-lam'}}], 'competitions': [{'competitor': {'name': 'Seedcamp', 'permalink': 'seedcamp'}}, {'competitor': {'name': 'Y Combinator', 'permalink': 'y-combinator'}}, {'competitor': {'name': 'Bootup Labs', 'permalink': 'bootup-labs'}}, {'competitor': {'name': 'NextStart', 'permalink': 'nextstart'}}, {'competitor': {'name': 'i/o Ventures', 'permalink': 'ventures'}}], 'providerships': [], 'total_money_raised': '$34M', 'funding_rounds': [{'id': 21407, 'round_code': 'unattributed', 'source_url': 'http://www.masshightech.com/stories/2011/02/07/daily50-TechStars-incubator-raises-2M-for-four-years.html', 'source_description': 'TechStars incubator raises $2M for four years', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 2, 'funded_day': 10, 'investments': []}, {'id': 22167, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/03/29/startup-incubator-techstars-raises-8-million/', 'source_description': 'Startup Incubator TechStars Raises $8 Million', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 29, 'investments': []}, {'id': 25521, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/09/21/startup-incubator-techstars-raises-24m-increases-funding-for-each-company-by-100k/', 'source_description': 'Startup Incubator TechStars Raises $24M, Increases Funding For Each Company By $100K', 'raised_amount': 24000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 21, 'investments': [{'company': None, 'financial_org': {'name': 'Foundry Group', 'permalink': 'foundry-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IA Ventures', 'permalink': 'ia-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Avalon Ventures', 'permalink': 'avalon-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mercury Fund', 'permalink': 'dfj-mercury'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SVB Financial Group', 'permalink': 'svb-financial-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'RRE Ventures', 'permalink': 'rre-ventures'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'madKast', 'permalink': 'madkast'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Brightkite', 'permalink': 'brightkite'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'KB Labs', 'permalink': 'kblabs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Filtrbox', 'permalink': 'filtrbox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Localcents, Inc. (Villij.com)', 'permalink': 'villij'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Search to Phone', 'permalink': 'searchtophone'}}}, {'funding_round': {'round_code': 'seed', 'source_url': None, 'source_description': None, 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'J Squared Media', 'permalink': 'jsquaredmedia'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2007/04/18/techstars-makes-selections-start-up-summer-camp-for-10-teams/', 'source_description': 'TechCrunch post on TechStars', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Socialthing', 'permalink': 'socialthing'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/', 'source_description': 'TechStars', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'EventVue', 'permalink': 'eventvue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2007/08/17/techstars-demo-day-class-of-2007/', 'source_description': 'TechStars Demo Day – Class of 2007', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'IntenseDebate', 'permalink': 'intensedebate'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Foodzie', 'permalink': 'foodzie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Devver', 'permalink': 'devver'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'UsingMiles', 'permalink': 'usingmiles'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'DailyBurn', 'permalink': 'dailyburn'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 15000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Occipital', 'permalink': 'occipital'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Next Big Sound', 'permalink': 'next-big-sound'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 350000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Everlater', 'permalink': 'everlater'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Vanilla Forums', 'permalink': 'vanilla-forums'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Graphicly', 'permalink': 'graphicly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Rezora', 'permalink': 'rezora'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'ReTel Technologies', 'permalink': 'retel-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'TimZon', 'permalink': 'timzon'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Mailana', 'permalink': 'mailana'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/08/06/techstars-incubator-hatches-10-new-companies/', 'source_description': 'TechStars Incubator Hatches 10 New Companies', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'Spry', 'permalink': 'spry'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 11, 'company': {'name': 'TempMine', 'permalink': 'tempmine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 11, 'company': {'name': 'LangoLab', 'permalink': 'langolab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'AmpIdea', 'permalink': 'ampidea'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'HaveMyShift', 'permalink': 'havemyshift'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'AccelGolf', 'permalink': 'accelgolf'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'SocialSci', 'permalink': 'socialsci'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Loudcaster', 'permalink': 'loudcaster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Mogotest', 'permalink': 'mogotest'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Marginize', 'permalink': 'marginize'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars 2010 Review Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ADstruc', 'permalink': 'adstruc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'StatsMix', 'permalink': 'statsmix'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Highlighter', 'permalink': 'highlighter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'Techcrunch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'RewardsForce', 'permalink': 'rewardsforce'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Thinkfuse', 'permalink': 'thinkfuse'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ToVieFor', 'permalink': 'toviefor'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Nestio', 'permalink': 'nestio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ShuttleCloud', 'permalink': 'shuttlecloud'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'ThinkNear', 'permalink': 'thinknear'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'Observer', 'raised_amount': 418000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Red Rover', 'permalink': 'red-rover'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'ScriptPad', 'permalink': 'scriptpad'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/?y=2009', 'source_description': 'TechStars', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Sensobi', 'permalink': 'sensobi'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 16000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'Deal Co-op', 'permalink': 'deal-co-op'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/articles/2011/03/28/techstars_new_galaxy_of_start_ups/', 'source_description': \"TechStars' new galaxy of start-ups\", 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'The Tap Lab', 'permalink': 'the-tap-lab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Promoboxx', 'permalink': 'promoboxx'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Kinvey', 'permalink': 'kinvey'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/whos-in-the-bunker/', 'source_description': \"Who's in the bunker in 2011?\", 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'SocialEngine', 'permalink': 'socialengine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Wantworthy', 'permalink': 'wantworthy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/whos-in-the-bunker/', 'source_description': \"Who's in the bunker?\", 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'FullContact', 'permalink': 'fullcontact'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/09/13/simple-energy-raises-900000-in-seed-funding/', 'source_description': 'Simple Energy Raises $900,000 In Seed Funding', 'raised_amount': 900000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'Simple Energy', 'permalink': 'simple-energy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Ambassador', 'permalink': 'ambassador'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/09/22/piictu-launches-grabs-seed-funding-to-grow-its-game-ified-photo-sharing-app/', 'source_description': 'TechCrunch', 'raised_amount': 730000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 22, 'company': {'name': 'Piictu', 'permalink': 'piictu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/the-31-best-new-founders-in-nyc-2011-7', 'source_description': 'The 31 Best New Tech Founders In NYC', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Urtak', 'permalink': 'urtak'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/techstars-summer-2011-2011-7', 'source_description': 'TechStars', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 7, 'funded_day': 11, 'company': {'name': 'Spontaneously', 'permalink': 'spontaneously'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/techstars-summer-2011-2011-7', 'source_description': 'TechStars', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'ChatID', 'permalink': 'chatid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://nyconvergence.com/2011/07/techstars-nyc-announces-new-startups-debuting-this-summer.html', 'source_description': 'Techstars NYC Announces New Startups Debuting This Summer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'Dispatch', 'permalink': 'dispatch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'mobintent', 'permalink': 'mobintent'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.geekwire.com/2011/meet-lucky-percent-peek-stealthy-startups-techstars-seattle', 'source_description': 'Meet the lucky two percent: A peek at the startups that just entered TechStars Seattle', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Vizify', 'permalink': 'vizify'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'TechStars', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'EverTrue', 'permalink': 'evertrue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 13000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Lumatic', 'permalink': 'lumatic'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/09/15/kapost-raises-1-1-million-to-help-publishers-manage-an-army-of-contributors/', 'source_description': 'Kapost Raises $1.1 Million To Help Publishers Manage An Army Of Contributors', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 9, 'funded_day': 15, 'company': {'name': 'Kapost', 'permalink': 'kapost'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2011/09/19/social-loyalty-and-rewards-platform-crowdtwist-raises-6m-from-softbank-and-others/', 'source_description': 'Social Loyalty And Rewards Platform CrowdTwist Raises $6M From SoftBank And Others', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'CrowdTwist', 'permalink': 'crowdtwist'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2011/09/19/inspired-by-minority-report-immersive-labs-raises-810k-for-digital-display-recognition/', 'source_description': 'Inspired By \"Minority Report,\" Immersive Labs Raises $810K For Digital Display Recognition', 'raised_amount': 810000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'IMRSV', 'permalink': 'immersive-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techstars.com', 'source_description': 'TechStars ', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 16, 'company': {'name': 'Senexx', 'permalink': 'senexx'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Zagster', 'permalink': 'zagster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Keen IO', 'permalink': 'keen'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Meal Ticket', 'permalink': 'meal-ticket'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Smallknot', 'permalink': 'smallknot'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Pickie', 'permalink': 'pickie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Bench', 'permalink': 'bench'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Canary Calendar', 'permalink': 'laveem'}}}, {'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 12, 'funded_day': 6, 'company': {'name': 'Libboo', 'permalink': 'libboo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Classtivity', 'permalink': 'classtivity'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.org/', 'source_description': 'TechStars', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 2, 'company': {'name': 'TutorialTab', 'permalink': 'tutorialtab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential ', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'EveryMove', 'permalink': 'everymove'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'TempoDB', 'permalink': 'tempo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://ordr.me/obhk5A', 'source_description': 'TechStars Launches Second Class with Tons of Local Content ', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 7, 'company': {'name': 'Ordr.in', 'permalink': 'ordr-in'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Precog', 'permalink': 'precog'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2012/03/12/techstars-ny-announces-its-latest-class-of-startups-featuring-6-female-founders/', 'source_description': 'TechStars NY announces its latest class of startups', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': 14, 'company': {'name': 'Karma Mobility', 'permalink': 'karma-2'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/01/24/timehop-a-time-machine-for-your-social-media-updates-gets-1-1-from-foursquare-founders-and-others/', 'source_description': 'Timehop, A Time Machine For Your Social Media Updates, Gets $1.1M From Foursquare Founders And Others', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Timehop', 'permalink': 'timehop'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/27/coursekit-1-million-seed', 'source_description': 'Penn Students Leave School to Launch CourseKit With $1 Million Seed Round', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 27, 'company': {'name': 'Lore', 'permalink': 'lore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/congratulations-to-the-techstars-nyc-2011-companies/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Lore', 'permalink': 'lore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'IMRSV', 'permalink': 'immersive-labs'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/04/20/sendgrid-raises-5-million-sends-a-bajillion-e-mails/#ixzz0lhCvoYyB', 'source_description': 'SendGrid Raises $5 Million, Sends A Bajillion E-mails ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 20, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/01/17/bessemer-leads-21m-round-in-cloud-based-email-delivery-and-management-service-sendgrid/', 'source_description': 'Bessemer Leads $21M Round In Cloud-Based Email Delivery And Management Service SendGrid', 'raised_amount': 21600000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 17, 'company': {'name': 'SendGrid', 'permalink': 'sendgrid'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/05/16/hipster-raises-1m-from-google-ventures-lightbank-and-500-startups/', 'source_description': 'Local Q&A Site Hipster Raises $1M From Google Ventures, Lightbank, 500 Startups And More', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 16, 'company': {'name': 'Hipster', 'permalink': 'hipster'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/give-a-warm-welcome-to-the-techstars-boulder-2012-class/', 'source_description': 'Give a warm welcome to the TechStars Boulder 2012 Class!', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'SalesLoft', 'permalink': 'salesloft'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2008/09/23/techstars-demo-day-acquisitions-galore-as-twelve-companies-strut-their-stuff/', 'source_description': 'TechStars Demo Day: Acquisitions Galore As Twelve Companies Strut Their Stuff', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'Application Experts', 'permalink': 'application-experts'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcocktail.com/techstars-boulder-startups-tech-cocktail-2008-08#.T-nC7r9SmTg', 'source_description': 'TechStars Demo Day and Tech Cocktail Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'BuyPlayWin', 'permalink': 'buyplaywin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/stats', 'source_description': 'TechStars Stats Page', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': \"People's Software Company\", 'permalink': 'peoples-software-company'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2008/08/20/ten-startups-debut-at-techstars-demo-day/', 'source_description': 'Ten Startups Debut At TechStars Demo Day', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2008, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'The Highway Girl', 'permalink': 'the-highway-girl'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Baydin', 'permalink': 'baydin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'VerbalizeIt', 'permalink': 'verbalizeit'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Localytics', 'permalink': 'localytics'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2009/09/10/techstars-debuts-nine-startups-in-boston/', 'source_description': 'TechStars Debuts Nine Startups In Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'oneforty', 'permalink': 'oneforty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Monkey Analytics', 'permalink': 'monkey-analytics'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Sparkcloud', 'permalink': 'sparkcloud'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'InvitedHome', 'permalink': 'invitedhome'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'RentMonitor', 'permalink': 'rentmonitor'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'RoundPegg', 'permalink': 'roundpegg'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Spot Influence', 'permalink': 'spot-influence'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Kapost', 'permalink': 'kapost'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'RentMatch', 'permalink': 'rentmatch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'The Shared Web', 'permalink': 'the-shared-web'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'World Blender', 'permalink': 'world-blender'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/11/11/techstars-launches-ten-new-startups-in-seattle/', 'source_description': 'TechStars Launches Ten New Startups In Seattle', 'raised_amount': 12000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 1, 'company': {'name': 'GoMiles', 'permalink': 'gomiles'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://observer.com/2011/01/techstars-ny-announces-inaugural-class/', 'source_description': 'Techstars NY Announces Inaugural Class', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'CrowdTwist', 'permalink': 'crowdtwist'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.businessinsider.com/the-11-promising-techstar-startups-that-beat-out-600-other-applicants-2011-4?op=1', 'source_description': 'The 11 Techstars NYC Startups You Need To Know About Read more: http://www.businessinsider.com/the-11-promising-techstar-startups-that-beat-out-600-other-applicants-2011-4?op=1#ixzz1zkdJRsBu', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Shelby.tv', 'permalink': 'shelby-tv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/give-a-warm-welcome-to-the-techstars-boulder-2012-class/', 'source_description': 'Give a warm welcome to the TechStars Boulder 2012 Class!', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'ReplySend', 'permalink': 'replysend'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': '27 Perry', 'permalink': '27-perry'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/08/05/techstars-2010-boulder/', 'source_description': 'TechStars Launches 11 New Startups In Boulder', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2010, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Captimo', 'permalink': 'captimo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2012/08/techstars_boston_announces_sta.html', 'source_description': 'TechStars Boston announces startups accepted into its fall 2012 class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'BetterFit Technologies', 'permalink': 'betterfit-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Zeppelin', 'permalink': 'zeppelin'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Bizible', 'permalink': 'bizible'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boston-fall-2012/', 'source_description': 'TechStars Demo Day: Boston Fall 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'CartCrunch', 'permalink': 'cartcrunch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2012/08/techstars_boston_announces_sta.html', 'source_description': 'TechStars Boston announces startups accepted into its fall 2012 class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'BookingMarkets (Dashbell)', 'permalink': 'bookingmarkets-dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/', 'source_description': 'TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'StarStreet', 'permalink': 'starstreet'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'Investors Flock To Boston To See TechStars’ 12 Cool New Startups (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Ginger.io', 'permalink': 'ginger-io'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/06/15/investors-flock-to-boston-to-see-techstars%E2%80%99-12-cool-new-startups-here%E2%80%99s-a-peek/', 'source_description': 'Investors Flock To Boston To See TechStars’ 12 Cool New Startups (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'GrabCAD', 'permalink': 'grabcad'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Help Scout', 'permalink': 'brightwurks'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://articles.boston.com/2011-03-28/business/29360529_1_start-ups-products-mechanical-engineers/2', 'source_description': \"TechStars' new galaxy of start-ups\", 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Memrise', 'permalink': 'memrise'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.boston.com/business/technology/innoeco/2011/03/techstars_boston_2011_who_got.html', 'source_description': 'TechStars Boston 2011: Who Got In', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 3, 'funded_day': 1, 'company': {'name': 'Spill Inc', 'permalink': 'spillnow'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://techcrunch.com/2013/02/13/leanplum-raises-825k-angel-round-for-its-mobile-ab-testing-and-optimization-tool/', 'source_description': 'Leanplum Raises $825K Angel Round For Its Mobile A/B Testing And Optimization Tool', 'raised_amount': 825000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 13, 'company': {'name': 'Leanplum', 'permalink': 'leanplum'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.businessinsider.com/meet-11-startups-that-beat-out-1700-others-for-spots-in-new-yorks-hottest-accelerator-program-techstars-2013-4?nr_email_referer=1&utm_source=Triggermail&utm_medium=email&utm_term=SAI%20Select&utm_campaign=SAI%20Select%202013', 'source_description': 'Techstars NY Selection Spring 2013', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Placemeter', 'permalink': 'placemeter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/04/29/techstars-boston-alum-placester-raises-2-5-million-for-its-professional-website-builder-for-realtors/', 'source_description': 'TechStars Boston Alum Placester Raises $2.5 Million For Its Professional Website Builder For Realtors', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 29, 'company': {'name': 'Placester', 'permalink': 'placester'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Drifty', 'permalink': 'drifty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/companies/stats/', 'source_description': 'TechStars Stats', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'ParLevel Systems', 'permalink': 'parlevel-systems'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/05/09/plated-funding-meal-delivery-social-recipe-pages/', 'source_description': 'Backed With $1.4 Million, Plated Adds A Social Spin To Its Ready-To-Cook Meal Delivery Service', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'Plated', 'permalink': 'plated'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/postmaster-simple-shipping-for-e-commerce-businesses/', 'source_description': 'Techstars Blog', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 15, 'company': {'name': 'Postmaster', 'permalink': 'postmaster-io'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Creative Brain Studios', 'permalink': 'creative-brain-studios'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Flextrip', 'permalink': 'flextrip'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Rapt Media', 'permalink': 'rapt-media'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'GoSpotCheck', 'permalink': 'gospotcheck'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'InboxFever', 'permalink': 'inboxfever'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Mocavo', 'permalink': 'mocavo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Simple Energy', 'permalink': 'simple-energy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/08/04/startup-accelerator-techstars-hatches-12-new-companies-in-boulder-heres-a-peek/', 'source_description': 'Startup Accelerator TechStars Hatches 12 New Companies In Boulder (Here’s A Peek)', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'TruantToday', 'permalink': 'truanttoday'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Remitly', 'permalink': 'remitly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Bluebox Now!', 'permalink': 'bluebox-now'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'FlexMinder', 'permalink': 'flexminder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'GoChime', 'permalink': 'gochime'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'GroupTalent', 'permalink': 'grouptalent'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'LikeBright', 'permalink': 'likebright'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Romotive', 'permalink': 'romotive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.xconomy.com/seattle/2011/11/03/techstars-seattle-demos-one-room-10-startups-tons-of-potential/?single_page=true', 'source_description': 'TechStars Seattle Demos: One Room, 10 Startups, Tons of Potential', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': None, 'company': {'name': 'Smore', 'permalink': 'smore'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Blog', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Fancred', 'permalink': 'fancred'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Piictu', 'permalink': 'piictu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2011/10/19/techcrunch-roundup-12-startups-500-investors-at-techstars-nyc-demo-day/', 'source_description': 'TechCrunch Roundup: 12 Startups, 500 Investors At TechStars NYC Demo Day', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 1, 'company': {'name': 'SideTour', 'permalink': 'sidetour'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Appsembler', 'permalink': 'appsembler'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Epic Playground', 'permalink': 'epic-playground'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Cloudability', 'permalink': 'cloudability'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Cloudsnap', 'permalink': 'cloudsnap'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Conductrics', 'permalink': 'conductrics'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.ideafundpartners.com/content/2.22.12+distil+%7C+idea+fund+partners/21992', 'source_description': 'Distil Receives $400K Investment from CIT GAP Funds', 'raised_amount': 400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/01/24/techstars-grad-distil-it-lands-1-8m-to-help-your-business-put-a-stop-to-bots-web-scraping-content-theft/', 'source_description': 'TechStars Grad Distil.It Lands $1.8M To Help Your Business Put A Stop To Bots, Web Scraping & Content Theft', 'raised_amount': 1800000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Distil', 'permalink': 'distil'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Vidmaker', 'permalink': 'vidmaker'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Emergent One', 'permalink': 'emergent-one'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Ziptask', 'permalink': 'ziptask'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/techstars-debuts-11-cloud-startups/', 'source_description': 'With 350 Investors On Hand, TechStars Debuts New Cloud Accelerator’s Inaugural Batch', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Flomio', 'permalink': 'flomio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/27/nfc-still-has-legs-flomio-closes-on-half-a-million-in-seed-funding-for-nfc-based-products-services/', 'source_description': 'NFC Still Has Legs: Flomio Closes On Half A Million In Seed Funding For NFC-Based Products & Services', 'raised_amount': 525000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 27, 'company': {'name': 'Flomio', 'permalink': 'flomio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Psykosoft', 'permalink': 'psykosoft'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Murfie', 'permalink': 'murfie'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Pact Fitness', 'permalink': 'pact'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'docTrackr', 'permalink': 'doctrackr'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Ubersense', 'permalink': 'ubersense'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Testive', 'permalink': 'testive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Libboo', 'permalink': 'libboo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Mortar Data', 'permalink': 'mortar-data'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'BISON', 'permalink': 'bison'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-winter-2012-session-in-boston/', 'source_description': 'TechStars Picks 13 Companies for Winter 2012 Session in Boston', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'Simply Good Technologies', 'permalink': 'simply-good-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1550357/000155035712000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 754466, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Bondsy', 'permalink': 'bondsy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Condition One', 'permalink': 'condition-one'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Lua Technologies', 'permalink': 'lua-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Marquee', 'permalink': 'marquee'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Moveline', 'permalink': 'moveline'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1546180/000154618012000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 626984, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Poptip', 'permalink': 'poptip'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Rewind Me', 'permalink': 'rewind-me'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/06/14/the-full-run-down-on-all-13-startups-at-techstars-nyc-demo-day-2012/', 'source_description': 'The Full Run-Down On All 13 Startups At TechStars NYC Demo Day 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 3, 'funded_day': None, 'company': {'name': 'Wander', 'permalink': 'wander'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Birdbox', 'permalink': 'birdbox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'DealAngel', 'permalink': 'dealangel'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'DigitalOcean', 'permalink': 'digitalocean'}}}, {'funding_round': {'round_code': 'convertible', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Revolv', 'permalink': 'revolv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'PivotDesk', 'permalink': 'pivotdesk'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'RollSale', 'permalink': 'rollsale'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'ROXIMITY', 'permalink': 'roximity'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-boulder-2012/', 'source_description': 'TechStars Demo Day: Boulder 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 17, 'company': {'name': 'Ubooly', 'permalink': 'ubooly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Apptentive', 'permalink': 'apptentive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Glider', 'permalink': 'glider'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Leanplum', 'permalink': 'leanplum'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1556610/000155661012000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Linksy', 'permalink': 'linksy'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Maptia', 'permalink': 'maptia'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'MobileDevHQ', 'permalink': 'mobiledevhq'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Nveloped', 'permalink': 'nveloped'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1556741/000155674112000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Sandglaz', 'permalink': 'sandglaz'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-demo-day-seattle-2012/', 'source_description': 'TechStars Demo Day: Seattle 2012', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'Tred', 'permalink': 'tred'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Careport Health', 'permalink': 'careport-health'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Fashion Project', 'permalink': 'fashion-project'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Fetchnotes', 'permalink': 'fetchnotes'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'ImpulseSave', 'permalink': 'impulsesave'}}}, {'funding_round': {'round_code': 'partial', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1589304/000158930413000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 1208000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'NBD Nanotechnologies Inc', 'permalink': 'nbd-nanotechnologies-inc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Ovuline', 'permalink': 'ovuline'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Rise Robotics', 'permalink': 'urban-hero-sports'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 26, 'company': {'name': 'CheckiO', 'permalink': 'checkio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-picks-13-companies-for-fall-2012-session-in-boston/', 'source_description': 'TechStars picks 13 companies for Fall 2012 session in Boston', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 23, 'company': {'name': 'Wymsee', 'permalink': 'wymsee'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Strategic Blue', 'permalink': 'strategic-blue'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Conspire', 'permalink': 'conspire'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'DataRobot', 'permalink': 'datarobot'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'Storytime Studios', 'permalink': 'storytime-studios'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Threat Stack', 'permalink': 'threat-stack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.rackspace.com/blog/its-demo-daytechstars-cloud-class-of-2013-in-san-antonio/', 'source_description': 'It’s Demo Day…TechStars Cloud Class Of 2013 In San Antonio', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'ZeroVM', 'permalink': 'zerovm'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Jebbit', 'permalink': 'jebbit'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'CONSTRVCT', 'permalink': 'constrvct'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'coUrbanize', 'permalink': 'courbanize'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Freight Farms', 'permalink': 'freight-farms'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'LinkCycle', 'permalink': 'linkcycle'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Neurala', 'permalink': 'neurala'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Outline', 'permalink': 'outline'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1571995/000119248213000043/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 100000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 14, 'company': {'name': 'PillPack', 'permalink': 'pillpack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'qunb', 'permalink': 'qunb'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Rallyware', 'permalink': 'rallyware'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/09/05/adyapper-raises-1-2-million-to-analyze-ad-viewability-for-digital-campaigns/', 'source_description': 'AdYapper Raises $1.2 Million To Analyze Ad Viewability For Digital Campaigns', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 5, 'company': {'name': 'AdYapper', 'permalink': 'adyapper-com'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 800000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 6, 'company': {'name': 'Dash Labs, Inc.', 'permalink': 'dash-labs-inc'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'FaithStreet', 'permalink': 'faithstreet'}}}, {'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'Jukely', 'permalink': 'jukely'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Klooff', 'permalink': 'klooff'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Plated', 'permalink': 'plated'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'TriggerMail', 'permalink': 'triggermail'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'Lean Startup Machine', 'permalink': 'the-lean-startup-machine'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-nyc-2013-class/', 'source_description': 'TechStars NYC 2013 Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 2, 'company': {'name': 'weeSpring', 'permalink': 'weespring'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Hull', 'permalink': 'hull'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Augur', 'permalink': 'augur'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Kato', 'permalink': 'kato'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 11800, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Elihuu', 'permalink': 'elihuu'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Brandfolder', 'permalink': 'brandfolder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Prediculous', 'permalink': 'prediculous'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'GoodApril', 'permalink': 'goodapril'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'SnowShoe Stamp', 'permalink': 'snowshoe'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'Shopventory', 'permalink': 'shopventory'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 13, 'company': {'name': 'AdsNative', 'permalink': 'adsnative'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://upstart.bizjournals.com/companies/hatched/2013/04/25/techstars-chicago-reveals-class-of-10.html?page=all', 'source_description': 'Stock investor network make TechStars Chicago Top 10', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'TradingView', 'permalink': 'tradingview'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': 250000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Nexercise', 'permalink': 'nexercise'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'SimpleRelevance', 'permalink': 'simplerelevance'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Sqord', 'permalink': 'sqord'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'SocialCrunch', 'permalink': 'socialcrunch'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Project Fixup', 'permalink': 'project-fixup'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'Pathful', 'permalink': 'pathful'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'TechStars Chicago reveals the 10 startups for its inaugural Summer 2013 accelerator program class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 28, 'company': {'name': 'CaptureProof', 'permalink': 'captureproof'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'feedPack', 'permalink': 'feedpack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'IpTvBeat', 'permalink': 'iptvbeat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Modabound', 'permalink': 'modabound'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Moni Technologies', 'permalink': 'moni-technologies'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'OP3Nvoice', 'permalink': 'op3nvoice'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'PayMins', 'permalink': 'paymins'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'Peerby', 'permalink': 'peerby'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'PlayCanvas', 'permalink': 'playcanvas'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'QuanTemplate', 'permalink': 'quantemplate'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/02/mind-the-gap/', 'source_description': 'TechStars London Unveils First Cohort, Applications Increased 4x Post-Springboard Merger', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 2, 'company': {'name': 'VetCloud', 'permalink': 'vetcloud'}}}, {'funding_round': {'round_code': 'angel', 'source_url': 'http://www.geekwire.com/2011/blog-commenting-system-highlighter-raises-300000/', 'source_description': 'Much more than a blog commenting system, Highlighter raises $300,000', 'raised_amount': 300000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 15, 'company': {'name': 'Highlighter', 'permalink': 'highlighter'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/12/10/apptentive/', 'source_description': 'Apptentive Scores $1.2M From Founder’s Co-Op, Google Ventures, To Help Mobile App Publishers Solicit Better Feedback', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 11, 'company': {'name': 'Apptentive', 'permalink': 'apptentive'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/11/mobile-payments-startup-beamit-raises-2-4m-from-founders-co-op-jeff-bezos-others/', 'source_description': 'Mobile Payments Startup Beamit Raises $2.4M From Founder’s Co-op, Jeff Bezos, Eric Schmidt & Others', 'raised_amount': 1650000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 11, 'company': {'name': 'Remitly', 'permalink': 'remitly'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2012/05/09/everymove-series-a/', 'source_description': 'EveryMove Nabs $2.6M From Blue Cross, BuddyTV Co-founder To Help You Reduce Health Costs', 'raised_amount': 2600000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 9, 'company': {'name': 'EveryMove', 'permalink': 'everymove'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.freshnews.com/news/754304/flexminder-announces-1-4m-series-aa-financing', 'source_description': 'FlexMinder Announces $1.4M in Series AA Financing', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 30, 'company': {'name': 'FlexMinder', 'permalink': 'flexminder'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.geekwire.com/2011/giant-thinkwell-scores-cash-partners-sir-mixalot-facebook-game', 'source_description': \"Posse on Facebook? Sir Mix-A-Lot debuts social media game with Seattle's Giant Thinkwell\", 'raised_amount': 600000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 15, 'company': {'name': 'Haiku Deck', 'permalink': 'haiku-deck'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': '', 'source_description': 'Founders Co-op Source', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': None, 'company': {'name': 'MobileDevHQ', 'permalink': 'mobiledevhq'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2010/01/14/oneforty-rolls-out-premium-twitter-app-marketplace-raises-1-9-million/', 'source_description': 'Oneforty Rolls Out Premium Twitter App Marketplace; Raises $1.9 Million', 'raised_amount': 1980000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 11, 'company': {'name': 'oneforty', 'permalink': 'oneforty'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 225000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'The Shared Web', 'permalink': 'the-shared-web'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://finance.yahoo.com/news/facebook-advocate-platform-crowdly-announces-110000669.html', 'source_description': 'Crowdly Raises $1.2M In Seed Funding', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 23, 'company': {'name': 'Crowdly', 'permalink': 'crowdly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2010/06/03/techstars-boston-2010/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': ' TechStars Boston Graduates Ten New Startups In 2010', 'raised_amount': 10000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 3, 'funded_day': 3, 'company': {'name': 'Crowdly', 'permalink': 'crowdly'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/techstars-boston-spring-2013-companies-announced/', 'source_description': 'TechStars Boston Spring 2013 Companies Announced', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Synack', 'permalink': 'synack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 712500, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'Dashbell', 'permalink': 'dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 15, 'company': {'name': 'Dashbell', 'permalink': 'dashbell'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/07/fast-growing-cloud-hosting-service-digital-ocean-raises-3-2m-seed-round-led-by-ia-ventures/', 'source_description': 'Fast-Growing Cloud Hosting Service Digital Ocean Raises $3.2M Seed Round Led By IA Ventures To Build Out Its Infrastructure', 'raised_amount': 3205800, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 15, 'company': {'name': 'DigitalOcean', 'permalink': 'digitalocean'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/introducing-techstars-boulder-summer-2013/', 'source_description': 'Introducing TechStars Boulder: Summer 2013', 'raised_amount': 218000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 6, 'company': {'name': 'Given Goods', 'permalink': 'given-goods'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Codementor', 'permalink': 'codementor'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Designlab', 'permalink': 'designlab'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ResolutionTube', 'permalink': 'resolutiontube'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'flck.me', 'permalink': 'flck-me'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Rep', 'permalink': 'rep'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'The Vetted Net', 'permalink': 'the-vetted-net'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Inside Social', 'permalink': 'inside-social'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 10, 'company': {'name': 'Pansieve', 'permalink': 'pansieve'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://thenextweb.com/insider/2013/04/25/techstars-chicago-reveals-the-10-startups-for-its-inaugural-summer-2013-accelerator-program-class/', 'source_description': 'Thenextweb.com', 'raised_amount': 418000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'WebCurfew', 'permalink': 'webcurfew'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.bizjournals.com/austin/blog/morning_call/2013/08/techstars-picks-10-teams-for-first.html', 'source_description': 'TechStars taps 10 teams for first Austin class', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 6, 'company': {'name': 'ProtoExchange', 'permalink': 'protoexchange'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 9, 'funded_day': None, 'company': {'name': 'Databox', 'permalink': 'databox'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2013/09/11/5-startups-to-watch-from-kaplans-techstars-powered-ed-tech-accelerator-demo-day/', 'source_description': 'GigaOm', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 13, 'company': {'name': 'Flinja', 'permalink': 'flinja'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'Techstars', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': None, 'company': {'name': 'Perfect', 'permalink': 'perfect'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 300000, 'raised_currency_code': 'EUR', 'funded_year': 2013, 'funded_month': 8, 'funded_day': None, 'company': {'name': 'VetCloud', 'permalink': 'vetcloud'}}}, {'funding_round': {'round_code': 'partial', 'source_url': 'http://www.digitaljournal.com/pr/1538183?utm_source=buffer&utm_campaign=Buffer&utm_content=buffer478e2&utm_medium=twitter', 'source_description': 'Shopventory Raises $1.0M and Releases New Cloud-Based Platform Read more: http://www.digitaljournal.com/pr/1538183?utm_source=buffer&utm_campaign=Buffer&utm_content=buffer478e2&utm_medium=twitter#ixzz2jSncVpGX', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 11, 'company': {'name': 'Shopventory', 'permalink': 'shopventory'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 118000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Threat Stack', 'permalink': 'threat-stack'}}}, {'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 150000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 25, 'company': {'name': 'Codeship', 'permalink': 'codeship'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://betabeat.com/2012/06/techstars-nyc/#slide5', 'source_description': 'TechStars NYC: Where Are They Now?', 'raised_amount': 225000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Shelby.tv', 'permalink': 'shelby-tv'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.observer.com/2011/daily-transom/techstars-ny-announces-inaugural-class', 'source_description': 'New York Observer', 'raised_amount': 18000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': None, 'company': {'name': 'Memoir', 'permalink': 'memoir'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techstars.com/the-2013-seattle-class/', 'source_description': 'The 2013 Seattle Class', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Shippable', 'permalink': 'shippable'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Embrace', 'permalink': 'embrace'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Filament Labs', 'permalink': 'filament-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Fosbury', 'permalink': 'fosbury'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'MarketVibe', 'permalink': 'marketvibe'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Testlio', 'permalink': 'testlio'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'ube', 'permalink': 'ube'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2013/10/29/meet-the-10-startups-from-techstars-austins-demo-day/', 'source_description': \"Meet the 10 Startups from Techstars Austin's Demo Day\", 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Atlas', 'permalink': 'atlas'}}}], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Boulder', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 40.010492, 'longitude': -105.276843}], 'milestones': [{'id': 10416, 'description': 'has appointed former Microsoft employee and early-stage startup investor Katie Rae as director of its two-year-old Boston program', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 30, 'source_url': 'http://www.masshightech.com/stories/2010/11/29/daily15-Rae-named-director-of-TechStars-Boston.html', 'source_text': None, 'source_description': 'Rae named director of TechStars Boston', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}, {'id': 11959, 'description': 'TechStars Boston, and the MassChallenge Startup Competition and Accelerator have been chosen as two of the initial programs to partner with the brand new Startup America Partnership, the White House-backed effort to promote innovation entrepreneurship ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 31, 'source_url': 'http://www.masshightech.com/stories/2011/01/31/daily1-MassChallenge-TechStars-join-with-Obamas-Startup-America-Partnership.html', 'source_text': None, 'source_description': \"MassChallenge, TechStars join with Obama's Startup America Partnership\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}, {'id': 23576, 'description': 'Appointed Clare Tischer as social media manager.', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 17, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Techstars', 'permalink': 'techstars'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[70, 150], 'assets/images/resized/0019/1811/191811v1-max-150x150.png'], [[117, 250], 'assets/images/resized/0019/1811/191811v1-max-250x250.png'], [[210, 450], 'assets/images/resized/0019/1811/191811v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2007', 'title': 'Boulder Summer 2007 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2008', 'title': 'Boulder Summer 2008 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2009', 'title': 'Boston Summer 2009 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2009', 'title': 'Boulder Summer 2009 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2010', 'title': 'Boston Spring 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2010', 'title': 'Boulder Summer 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2010', 'title': 'Seattle Fall 2010 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-winter-2011', 'title': 'NYC Winter 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-2011', 'title': 'Boston Spring 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2011', 'title': 'Boulder Summer 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2011', 'title': 'Seattle Fall 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-summer-2011', 'title': 'NYC Summer 2011 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-cloud-2012', 'title': 'Cloud 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-winter-2012', 'title': 'Boston Winter 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-2012', 'title': 'NYC Spring 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2012', 'title': 'Boulder Summer 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-seattle-2012', 'title': 'Seattle Fall 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-fall-2012', 'title': 'Boston Fall 2012 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-cloud-2013', 'title': 'Cloud Winter 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boston-spring-2013', 'title': 'Boston Spring 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-nyc-2013', 'title': 'NYC Spring 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-boulder-2013', 'title': 'Boulder Summer 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-chicago-2013', 'title': 'Chicago Summer 2013 Class on CrunchBase'}, {'external_url': 'http://www.crunchbase.com/tag/techstars-london-2013', 'title': 'London Fall 2013 Class on CrunchBase'}, {'external_url': 'http://crunchbase.com/tag/techstars-seattle-2013', 'title': 'Seattle Fall 2013 Class on CrunchBase'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e9e'), 'name': 'Nirvanix', 'permalink': 'nirvanix', 'crunchbase_url': 'http://www.crunchbase.com/company/nirvanix', 'homepage_url': 'http://www.nirvanix.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'Nirvanix', 'category_code': 'enterprise', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': 2013, 'deadpooled_month': 10, 'deadpooled_day': 15, 'deadpooled_url': 'http://techcrunch.com/2013/09/27/its-official-the-nirvanix-cloud-storage-service-is-shutting-down/', 'tag_list': 'hybrid-cloud, private-cloud, cloud-storage, public-cloud, nas, global-namespace, file-system, object-store, utility-pricing, soap, rest, enterprise-cloud', 'alias_list': '', 'email_address': 'info@nirvanix.com', 'phone_number': '(619) 764-5650', 'description': 'Enterprise Cloud Storage Company', 'created_at': 'Wed Aug 08 02:09:58 UTC 2007', 'updated_at': 'Mon Sep 30 17:29:41 UTC 2013', 'overview': '

Nirvanix is the leading provider of enterprise-class cloud storage services. The company offers cloud storage solutions designed specifically for customers with expectations of extreme security, reliability and redundancy levels. Enterprise requirements are such that you can’t have any scheduled or unscheduled downtime. That’s why Nirvanix Cloud Storage solutions are specifically built from the ground up to meet or exceed those enterprise requirements for the largest media & entertainment companies, financial institutions and technology bellwethers companies who would be losing millions of dollars for every hour of downtime.

\\n\\n

Nirvanix is the only company that offers variable deployment options under its CloudComplete portfolio public, hybrid and private cloud solutions to precisely meet your business needs. Enterprise cloud storage gets you off the storage system and tape silo never-ending buy, maintain and upgrade spending-cycle and enables you to immediately start taking advantage of usage-based pricing and the elastic flexibility of the cloud.

', 'image': {'available_sizes': [[[150, 26], 'assets/images/resized/0000/4093/4093v3-max-150x150.png'], [[250, 44], 'assets/images/resized/0000/4093/4093v3-max-250x250.png'], [[261, 46], 'assets/images/resized/0000/4093/4093v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Hybrid Cloud Storage', 'permalink': 'hybrid-cloud'}, {'name': 'Public Cloud Storage', 'permalink': 'public-cloud-storage'}, {'name': 'Private Cloud Storage', 'permalink': 'private-cloud-storage'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Debra', 'last_name': 'Chrapaty', 'permalink': 'debra-chrapaty'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Major', 'last_name': 'Horton', 'permalink': 'major-horton'}}, {'is_past': False, 'title': 'Vice President, Worldwide Sales and Marketing', 'person': {'first_name': 'Tina', 'last_name': 'Gravel', 'permalink': 'tina-gravel'}}, {'is_past': False, 'title': 'Senior Vice President Product and Strategy', 'person': {'first_name': 'Dru', 'last_name': 'Borden', 'permalink': 'dru-borden'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Charles', 'last_name': 'Curran', 'permalink': 'charles-curran'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Titus', 'permalink': 'david-titus'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Dave', 'last_name': 'Barr', 'permalink': 'dave-barr'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dave', 'last_name': 'Ryan', 'permalink': 'dave-ryan'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'David', 'last_name': 'Ryan', 'permalink': 'david-ryan'}}, {'is_past': False, 'title': 'VP - Engineering and Operations / VP - Operations', 'person': {'first_name': 'Randall', 'last_name': 'Hollis', 'permalink': 'randall-hollis'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Scott', 'last_name': 'Genereux', 'permalink': 'scott-genereux'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Jim', 'last_name': 'Zierick', 'permalink': 'jim-zierick'}}, {'is_past': True, 'title': 'CEO and Founder', 'person': {'first_name': 'Patrick', 'last_name': 'Harr', 'permalink': 'patrick-harr'}}, {'is_past': True, 'title': 'CTO and VP of Engineering', 'person': {'first_name': 'Patrick', 'last_name': 'Ritto', 'permalink': 'patrick-ritto'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Jonathan', 'last_name': 'Buckley', 'permalink': 'jonathan-buckley'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Zivanic', 'permalink': 'steve-zivanic'}}, {'is_past': True, 'title': 'Co-Founder & Senior Vice President of Strategy & Business Development', 'person': {'first_name': 'Geoff', 'last_name': 'Tudor', 'permalink': 'geoff-tudor'}}, {'is_past': True, 'title': 'VP, IT and Data Center Operations', 'person': {'first_name': 'Michael', 'last_name': 'Landesman', 'permalink': 'michael-landesman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'V. Wall', 'permalink': 'michael-v-wall'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Joe', 'last_name': 'Lyons', 'permalink': 'joe-lyons'}}, {'is_past': True, 'title': 'Director of Consulting', 'person': {'first_name': 'Stephen', 'last_name': 'Foskett', 'permalink': 'stephen-foskett'}}, {'is_past': True, 'title': 'Senior Director, Marketing', 'person': {'first_name': 'Adrian', 'last_name': 'J Herrera', 'permalink': 'adrian-j-herrera'}}], 'competitions': [{'competitor': {'name': 'EMC', 'permalink': 'emc'}}, {'competitor': {'name': 'NetApp', 'permalink': 'netapp'}}, {'competitor': {'name': 'Rackspace', 'permalink': 'rackspace'}}], 'providerships': [], 'total_money_raised': '$70M', 'funding_rounds': [{'id': 315, 'round_code': 'a', 'source_url': 'http://nirvanix.com/bw121907.aspx', 'source_description': '', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 12, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'European Founders Fund', 'permalink': 'european-founders-fund'}, 'person': None}]}, {'id': 5567, 'round_code': 'b', 'source_url': 'http://www.xconomy.com/san-diego/2009/04/10/intel-backed-nirvanix-gets-5-million/', 'source_description': 'Nirvanix Raises $5 Million', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 12135, 'round_code': 'unattributed', 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2007/2007-09-18.aspx', 'source_description': 'Nirvanix secures $12 million in venture capital', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 18, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}]}, {'id': 19982, 'round_code': 'b', 'source_url': 'http://www.techcrunchit.com/2010/11/10/cloud-storage-company-nirvanix-raises-10-million-appoints-new-ceo/', 'source_description': 'Cloud Storage Company Nirvanix Raises $10 Million, Appoints New CEO', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 11, 'funded_day': 10, 'investments': [{'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}]}, {'id': 29715, 'round_code': 'c', 'source_url': 'http://techcrunch.com/2012/05/03/khosla-leads-25m-round-in-enterprise-cloud-storage-company-nirvanix/', 'source_description': 'Khosla Leads $25M Round In Enterprise Cloud Storage Company Nirvanix', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 3, 'investments': [{'company': None, 'financial_org': {'name': 'Khosla Ventures', 'permalink': 'khosla-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Valhalla Partners', 'permalink': 'valhalla-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Intel Capital', 'permalink': 'intel-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mission Ventures', 'permalink': 'mission-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Windward Ventures', 'permalink': 'windward-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '4445 Eastgate Mall', 'address2': 'Ste. 405', 'zip_code': '92121', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 32.877656, 'longitude': -117.210595}], 'milestones': [{'id': 15472, 'description': 'Nirvanix Appoints Steve Zivanic as Vice President of Marketing', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 13, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-01-13.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15473, 'description': 'Nirvanix Appoints Erik Hardy as Senior Vice President of Worldwide ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 25, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-01-25.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15474, 'description': 'Nirvanix Offers Cloud Storage Customers in Japan Option to Move Data to Other Continents Free-of-Charge', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-03-17.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15475, 'description': 'Test Drive the Cloud at NAB with Nirvanix', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 30, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-03-30.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15476, 'description': 'Nirvanix Accelerates the Shift to the Cloud with Riverbed Storage Acceleration Solution', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 5, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-05.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15477, 'description': 'Nirvanix Announces New Webcast: Stop Your Backup Pain with Cloud Storage', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 6, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-06.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15478, 'description': 'Nirvanix and Symantec Announce Webcast Showcasing \"One Click to the Cloud\"', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 7, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-07.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15479, 'description': 'Front Porch Digital Reaches for the Nirvanix Cloud', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 10, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-10.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15480, 'description': 'Nirvanix Offers Stranded Iron Mountain Customers a Lifeline for Their Data', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 10, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-04-10b.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15482, 'description': 'Nirvanix Appoints Karen Sigman as Vice President, OEM and Alliances', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 2, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-02.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15483, 'description': 'Nirvanix Appoints Tracey Halama as Vice President of Worldwide Channels', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 25, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-25.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15728, 'description': 'Facebook, Twitter & Blog Content to be Archived to the Cloud with One Click', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 4, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-05-04.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}, {'id': 15936, 'description': 'Nirvanix Appoints Paul Froutan as CTO ', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://www.nirvanix.com/news-events/press-releases/2011/2011-06-27.aspx', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Nirvanix', 'permalink': 'nirvanix'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[125, 150], 'assets/images/resized/0013/7887/137887v2-max-150x150.jpg'], [[209, 250], 'assets/images/resized/0013/7887/137887v2-max-250x250.jpg'], [[376, 450], 'assets/images/resized/0013/7887/137887v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[102, 150], 'assets/images/resized/0013/7888/137888v2-max-150x150.jpg'], [[170, 250], 'assets/images/resized/0013/7888/137888v2-max-250x250.jpg'], [[306, 450], 'assets/images/resized/0013/7888/137888v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 32], 'assets/images/resized/0013/7897/137897v2-max-150x150.jpg'], [[250, 53], 'assets/images/resized/0013/7897/137897v2-max-250x250.jpg'], [[450, 96], 'assets/images/resized/0013/7897/137897v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.dcig.com/2011/05/why-nirvanix-is-poised-to-become-the-next-vmw.html', 'title': 'Why Nirvanix is Poised to Become the Next VMware'}, {'external_url': 'http://siliconangle.com/blog/2011/04/26/parting-of-the-clouds/', 'title': 'Parting of the Clouds'}, {'external_url': 'http://www.itdependsblog.com/2011/04/24/why-nirvanix-has-an-edge/', 'title': 'Why Nirvanix Has an Edge'}, {'external_url': 'http://searchstorage.techtarget.com/magazineContent/Some-clarity-for-enterprise-cloud-storage', 'title': 'Some Clarity for Enterprise Cloud Storage '}, {'external_url': 'http://neovise.com/getting-it-right-with-enterprise-cloud-storage', 'title': 'Getting it Right with Enterprise Cloud Storage'}, {'external_url': 'http://www.nirvanix.com/downloads/analyst-reports/Coughlin-Collaborative-Workflows-Benefit-from-Cloud-Storage-March2011.pdf', 'title': 'Collaborative Workflows Benefit from Cloud Storage'}, {'external_url': 'http://www.voicesofit.com/blogs/blog1.php/2011/02/14/nirvanix-cloud-storage-for-the-enterpris', 'title': 'Cloud Storage for the Enterprise (For Real)'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ea7'), 'name': 'Mokitown', 'permalink': 'mokitown', 'crunchbase_url': 'http://www.crunchbase.com/company/mokitown', 'homepage_url': 'http://www.mokitown.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2011, 'founded_month': 11, 'founded_day': 26, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mokitown, virtualworld, crunchbase', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue Aug 07 05:47:56 UTC 2007', 'updated_at': 'Tue Mar 19 01:07:12 UTC 2013', 'overview': '

Mokitown is a virtual world for kids owned by Daimler Chrysler. Kids can explore the world, invite friends for meetings, chat with other users and learn about road safety by playing with a flying robot named Benedikt.

\\n\\n

Daimler Chrysler created the Mokitown world as a safety initiative to teach kids about traffic safety. The site targets kids aged 8-12 years and teaches them on a variety of safety topics all through playing games and interacting with the Mokitown world. The games allow kids “to train for difficult situations without exposing them to real risk”.

\\n\\n

Kids score points by playing games and can use the points to buy items like mobile phones. Mobile phones allow kids to chat with other MobileKids.

\\n\\n

Competitors include Webkinz, Zwinktopia, Barbie Girls and Neopets.

', 'image': {'available_sizes': [[[150, 33], 'assets/images/resized/0000/4060/4060v1-max-150x150.png'], [[200, 44], 'assets/images/resized/0000/4060/4060v1-max-250x250.png'], [[200, 44], 'assets/images/resized/0000/4060/4060v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Mokitown', 'permalink': 'mokitown'}], 'relationships': [], 'competitions': [{'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 76], 'assets/images/resized/0011/7914/117914v2-max-150x150.jpg'], [[240, 123], 'assets/images/resized/0011/7914/117914v2-max-250x250.jpg'], [[240, 123], 'assets/images/resized/0011/7914/117914v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eaa'), 'name': 'Neopets', 'permalink': 'neopets', 'crunchbase_url': 'http://www.crunchbase.com/company/neopets', 'homepage_url': 'http://www.neopets.com', 'blog_url': 'http://www.neopoints.in', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 11, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'neopets, virtualworld, crunchbase', 'alias_list': None, 'email_address': 'support@neopoints.in', 'phone_number': '', 'description': '', 'created_at': 'Tue Aug 07 07:32:03 UTC 2007', 'updated_at': 'Sun Oct 09 21:53:20 UTC 2011', 'overview': '

Neopets is a virtual world for kids or anyone young at heart. The world is based around characters users create called pets. Users must keep their pets healthy, fed and in good spirits.

\\n\\n

With your pet, you can explore the Neopets world, engage in solo quests or play solo games for rewards, complete missions with other players and meet other characters. Neopets has plenty of places to visit including the Battledome, the undersea city of Maraqua, the Lost Desert or the Virtupets Space Station.

\\n\\n

When users complete missions or quests they receive items like Dark Reflectorbs or Neopets money called Neopoints. Pets can visit the Neopian Bazaar or the Neopian Plaza to trade, buy and sell items. Users can also invest in the Neopian stock market.

\\n\\n

Neopets is free to play but they also have a subscription version called Neopets Premium that has better features and benefits. Competitors include Zwinktopia, Webkinz, Mokitown and Club Penguin.

', 'image': {'available_sizes': [[[150, 47], 'assets/images/resized/0000/4072/4072v1-max-150x150.png'], [[200, 63], 'assets/images/resized/0000/4072/4072v1-max-250x250.png'], [[200, 63], 'assets/images/resized/0000/4072/4072v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Neopets', 'permalink': 'neopets'}], 'relationships': [{'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Adam', 'last_name': 'Powell', 'permalink': 'adam-powell'}}, {'is_past': None, 'title': 'Co-founder', 'person': {'first_name': 'Donna', 'last_name': 'Powell', 'permalink': 'donna-williams'}}, {'is_past': True, 'title': 'Founder/Chairman/CEO', 'person': {'first_name': 'Doug', 'last_name': 'Dohring', 'permalink': 'doug-dohring'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Matthew', 'last_name': 'White', 'permalink': 'matthew-white'}}, {'is_past': True, 'title': 'Board Advisor / Shareholder', 'person': {'first_name': 'Farshad', 'last_name': 'Fardad', 'permalink': 'farshad-fardad'}}], 'competitions': [{'competitor': {'name': 'Barbie Girls', 'permalink': 'barbiegirls'}}, {'competitor': {'name': 'Webkinz', 'permalink': 'webkinz'}}, {'competitor': {'name': 'Club Penguin', 'permalink': 'clubpenguin'}}, {'competitor': {'name': 'EcoBuddiesâ„¢ Interactive', 'permalink': 'ecobuddies-interactive'}}, {'competitor': {'name': 'Toontown', 'permalink': 'toontown'}}, {'competitor': {'name': 'Webkinz', 'permalink': 'webkinz'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 160000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.boston.com/business/technology/articles/2005/06/21/viacoms_mtv_buys_neopets_for_160m', 'source_description': \"Viacom's MTV buys Neopets for $160m\", 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 20, 'acquiring_company': {'name': 'MTV Networks', 'permalink': 'mtv-networks'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': None, 'city': None, 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ead'), 'name': 'KnockaTV', 'permalink': 'knockatv', 'crunchbase_url': 'http://www.crunchbase.com/company/knockatv', 'homepage_url': 'http://knockatv.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': 2008, 'deadpooled_month': 2, 'deadpooled_day': 28, 'deadpooled_url': 'http://www.techcrunch.com/2008/02/13/knockatv-may-heading-to-the-deadpool/', 'tag_list': 'tv, video, usergeneratedcontent, ugc', 'alias_list': None, 'email_address': '', 'phone_number': '', 'description': None, 'created_at': 'Tue Aug 07 09:17:30 UTC 2007', 'updated_at': 'Sat Oct 12 09:02:09 UTC 2013', 'overview': '

“The People Have Taken Over”, KnockaTV’s slogan, suggests the new and stealthy video company offers a community based video service, possibly a mix between social media site Digg and a conventional video streaming application. So far the details are few. KnockaTV is a project manned by the inventors of one of the first instant messenger clients, ICQ. It claims it will be a “hyper-interactive” as well as social center for video, with user generated content. Currently, KnockaTV is looking for producers to fill its site with original content. Once full of content, KnockaTV will allow its users will be able to decided what gets played and when.Companies such as Joost and YouTube offer messaging capabilities to their users who are watching the same content (YouTube’s Streams is in the “testtube” phase). KnockaTV will almost certainly have chat features given the founders’ previous experience with IM. Though an interesting concept, video interactivity has not yet been proven popular. It is arguably very contrary to the way consumers want to watch videos, as TV viewing has always been very passive. KnockaTV will offer one more way in which users may be enticed to change their behavior.

', 'image': {'available_sizes': [[[150, 21], 'assets/images/resized/0000/4078/4078v1-max-150x150.png'], [[200, 29], 'assets/images/resized/0000/4078/4078v1-max-250x250.png'], [[200, 29], 'assets/images/resized/0000/4078/4078v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'KnockaTV', 'permalink': 'knockatv'}], 'relationships': [{'is_past': None, 'title': 'Product Manager', 'person': {'first_name': 'Yotam', 'last_name': 'Eshel', 'permalink': 'yotam-eshel'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Shailesh', 'last_name': 'Shilwant', 'permalink': 'shailesh-shilwant'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$4.5M', 'funding_rounds': [{'id': 312, 'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/06/icq-founders-start-knockatv/#comments', 'source_description': 'TechCrunch', 'raised_amount': 3500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Evergreen Venture Partners', 'permalink': 'evergreen-venture-partners'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Sefi', 'last_name': 'Visiger', 'permalink': 'sefi-visiger'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Yair', 'last_name': 'Goldfinger', 'permalink': 'yair-goldfinger'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Arik', 'last_name': 'Vardi', 'permalink': 'arik-vardi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Eilon', 'last_name': 'Tirosh', 'permalink': 'eilon-tirosh'}}]}, {'id': 12732, 'round_code': 'unattributed', 'source_url': 'http://www.vccafe.com/2007/06/19/knockatv-raises-1m/', 'source_description': 'KnockaTV Raises $1M', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 11, 'investments': [{'company': None, 'financial_org': {'name': 'Evergreen Venture Partners', 'permalink': 'evergreen-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'ISR', 'latitude': 31.046051, 'longitude': 34.851612}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eb7'), 'name': 'Revver', 'permalink': 'revver', 'crunchbase_url': 'http://www.crunchbase.com/company/revver', 'homepage_url': 'http://revver.com', 'blog_url': 'http://blog.revver.com', 'blog_feed_url': 'http://blog.revver.com/?feed=rss2', 'twitter_username': 'Revver', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2004, 'founded_month': 10, 'founded_day': 15, 'deadpooled_year': 2011, 'deadpooled_month': 3, 'deadpooled_day': 26, 'deadpooled_url': 'http://willvideoforfood.com/2011/03/26/is-revver-dead-first-ad-sharing-website-is-mia/', 'tag_list': 'video, youtube, usergeneratedvideo, revenue, revenue-share, ugc, ugv, usergeneratedcontent', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'User Generated Video Site', 'created_at': 'Fri Aug 10 06:24:06 UTC 2007', 'updated_at': 'Mon May 20 10:04:56 UTC 2013', 'overview': '

The first user generated video site to offer revenue share, Revver is a video sharing site. Revver was founded in 2004 before user generated video had even begun to take off. For months into its infancy Revver looked to be a viable alternative if not legitimate challenger to YouTube. Its 50/50 revenue share model landed some high profile content like Ask a Ninja, LonelyGirl15 and the Diet Coke and Mentos guys. Users were immediately enticed by the chance not only to be a web celebrity but to make some cash while they were at it.

\\n\\n

According to Compete.com, Revver page views are still growing, however, they hit appr. 1 million monthly while YouTube achieves close to 250 million. Competitors in the user generated video area include Veoh, YouTube, Sony owned Crackle, DailyMotion, Metacafe, iFilm and others. Ian Clarke, original Revver Co-founder, now runs social news site Thoof.

', 'image': {'available_sizes': [[[150, 39], 'assets/images/resized/0000/4207/4207v1-max-150x150.png'], [[200, 53], 'assets/images/resized/0000/4207/4207v1-max-250x250.png'], [[200, 53], 'assets/images/resized/0000/4207/4207v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Revver', 'permalink': 'revver'}], 'relationships': [{'is_past': False, 'title': 'Founder/CEO', 'person': {'first_name': 'Steven', 'last_name': 'Starr', 'permalink': 'steven-starr'}}, {'is_past': None, 'title': 'CEO', 'person': {'first_name': 'Kevin', 'last_name': 'Wells', 'permalink': 'kevin-wells'}}, {'is_past': False, 'title': 'VP, Software Engineering', 'person': {'first_name': 'Asi', 'last_name': 'Behar', 'permalink': 'asi-behar'}}, {'is_past': False, 'title': 'SVP Business Development', 'person': {'first_name': 'Brian', 'last_name': 'McCarthy', 'permalink': 'brian-mccarthy'}}, {'is_past': None, 'title': 'Senior Director Architecture', 'person': {'first_name': 'Tommi', 'last_name': 'Virtanen', 'permalink': 'tommi-virtanen'}}, {'is_past': True, 'title': 'Co-Founder & Chief Scientist', 'person': {'first_name': 'Ian', 'last_name': 'Clarke', 'permalink': 'ian-clarke'}}, {'is_past': True, 'title': 'Co-Founder', 'person': {'first_name': 'Oliver', 'last_name': 'Luckett', 'permalink': 'oliver-luckett'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Rob', 'last_name': 'Maigret', 'permalink': 'rob-maigret'}}, {'is_past': True, 'title': 'VP, Marketing & Content', 'person': {'first_name': 'Angela', 'last_name': 'Wilson Gyetvan', 'permalink': 'angela-wilson-gyetvan'}}, {'is_past': True, 'title': 'Sr UX Architect', 'person': {'first_name': 'Jason', 'last_name': 'Carlin', 'permalink': 'jason-carlin'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Andres', 'last_name': 'Buritica', 'permalink': 'andres-buritica'}}, {'is_past': True, 'title': 'Director of Community', 'person': {'first_name': 'Micki', 'last_name': 'Krimmel', 'permalink': 'micki-krimmel'}}], 'competitions': [{'competitor': {'name': 'Veoh', 'permalink': 'veoh'}}, {'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'Dailymotion', 'permalink': 'dailymotion'}}, {'competitor': {'name': 'Next New Networks', 'permalink': 'next-new-networks'}}, {'competitor': {'name': 'Pandora.TV', 'permalink': 'pandora-tv'}}, {'competitor': {'name': 'Stagevu', 'permalink': 'stagevu'}}, {'competitor': {'name': 'VReel Media', 'permalink': 'vreel'}}], 'providerships': [], 'total_money_raised': '$12.7M', 'funding_rounds': [{'id': 326, 'round_code': 'a', 'source_url': 'http://www.siliconbeat.com/entries/2006/04/10/revver_revs_up_with_another_round_of_funding.html', 'source_description': None, 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}]}, {'id': 327, 'round_code': 'b', 'source_url': 'http://www.siliconbeat.com/entries/2006/04/10/revver_revs_up_with_another_round_of_funding.html', 'source_description': None, 'raised_amount': 8700000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'William Randolph', 'last_name': 'Hearst III', 'permalink': 'william-randolph-hearst-iii'}}]}], 'investments': [], 'acquisition': {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://newteevee.com/2008/02/14/liveuniverse-buys-revver-for-more-than-a-song/', 'source_description': 'LiveUniverse Buys Revver for More than a Song (about $5M)', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 14, 'acquiring_company': {'name': 'LiveUniverse', 'permalink': 'liveuniverse'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Los Angeles', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.052187, 'longitude': -118.243425}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': ''}, {'embed_code': 'http://www.youtube.com/watch?v=95ZEGOJnNag', 'description': '

No Start Up Fees, Definitely A Hot Concept for the New Home Business

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eb9'), 'name': 'Metacafe', 'permalink': 'metacafe', 'crunchbase_url': 'http://www.crunchbase.com/company/metacafe', 'homepage_url': 'http://metacafe.com', 'blog_url': 'http://blog.metacafe.com/', 'blog_feed_url': '', 'twitter_username': 'MetacafeToday', 'category_code': 'games_video', 'number_of_employees': None, 'founded_year': 2003, 'founded_month': 7, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'online-video, video-entertainment, online-entertainment, digital-entertainment, movies, video-games, sports, music, tv', 'alias_list': '', 'email_address': 'communications@metacafe.com', 'phone_number': '415-882-7069', 'description': 'Online Video Entertainment', 'created_at': 'Fri Aug 10 09:03:48 UTC 2007', 'updated_at': 'Wed Jul 03 20:58:44 UTC 2013', 'overview': '

Metacafe is a web site that specializes in short-form video entertainment in the categories of movies, video games, sports, music and TV.

\\n\\n

The company is headquartered in San Francisco, California, with offices in New York, Los Angeles, London and Tel Aviv. Metacafe is privately held and its investors include Accel Partners, Benchmark Capital, DAG Ventures and Highland Capital Partners.

\\n\\n

In its early years, Metacafe was similar to other video viewing websites such as YouTube or Dailymotion, but has since transformed itself into a short-form video entertainment site with several differences. The site now showcases more curated, exclusive and original premium entertainment-related video content than any other entertainment destination on the web.

\\n\\n

The company’s partners include marquee content providers such as major movie studios, video game publishers, broadcast and cable TV networks, music labels and sports leagues.

\\n\\n

The site is advertising supported, working closely with brands in the entertainment, consumer electronics, telecommunications, consumer packaged goods, food & beverage, and automotive sectors.

', 'image': {'available_sizes': [[[150, 43], 'assets/images/resized/0000/4213/4213v1-max-150x150.png'], [[215, 62], 'assets/images/resized/0000/4213/4213v1-max-250x250.png'], [[215, 62], 'assets/images/resized/0000/4213/4213v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Tom', 'last_name': 'Goodrich', 'permalink': 'tom-goodrich'}}, {'is_past': False, 'title': 'Music Editor', 'person': {'first_name': 'Andrew', 'last_name': 'Greenstein', 'permalink': 'andrew-greenstein'}}, {'is_past': False, 'title': 'Video Games editor', 'person': {'first_name': 'Doug', 'last_name': 'Perry', 'permalink': 'doug-perry'}}, {'is_past': False, 'title': 'Sports editor', 'person': {'first_name': 'CJ', 'last_name': 'Hillyer', 'permalink': 'cj-hillyer'}}, {'is_past': False, 'title': 'Board of directors', 'person': {'first_name': 'Richard', 'last_name': 'de Silva', 'permalink': 'richard-de-silva'}}, {'is_past': False, 'title': 'Movies editor', 'person': {'first_name': 'Lulu', 'last_name': 'Richter', 'permalink': 'lulu-richter'}}, {'is_past': False, 'title': 'Video Games editor', 'person': {'first_name': 'Scott', 'last_name': 'Pierce', 'permalink': 'scott-pierce'}}, {'is_past': False, 'title': 'TV editor', 'person': {'first_name': 'Elena', 'last_name': 'Ontiveros', 'permalink': 'elena-ontiveros'}}, {'is_past': True, 'title': 'Founder and Board Member', 'person': {'first_name': 'Eyal', 'last_name': 'Hertzog', 'permalink': 'eyal-hertzog'}}, {'is_past': True, 'title': 'Founder, President and CCO', 'person': {'first_name': 'Eyal', 'last_name': 'Hertzog', 'permalink': 'eyal-hertzog'}}, {'is_past': True, 'title': 'CEO, Co-founder', 'person': {'first_name': 'Arik', 'last_name': 'Czerniak', 'permalink': 'arik-czerniak'}}, {'is_past': True, 'title': 'Chief Architect & Senior Team Leader', 'person': {'first_name': 'Rubi', 'last_name': 'Dagan', 'permalink': 'rubi-dagan-2'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Eran', 'last_name': 'Pilovsky', 'permalink': 'eran-pilovsky'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'Strambi', 'permalink': 'michael-strambi'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Erick', 'last_name': 'Hachenburg', 'permalink': 'eric-hachenburg'}}, {'is_past': True, 'title': 'Vice President of Sales', 'person': {'first_name': 'Derek', 'last_name': 'Rudd', 'permalink': 'derek-rudd'}}, {'is_past': True, 'title': 'VP Products Israel', 'person': {'first_name': 'Ziv', 'last_name': 'Kabaretti', 'permalink': 'ziv-kabaretti'}}, {'is_past': True, 'title': 'Vice President, Content & Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Poggi', 'permalink': 'mark-poggi'}}, {'is_past': True, 'title': 'VP Product', 'person': {'first_name': 'Ziv', 'last_name': 'Kabaretti', 'permalink': 'ziv-kabaretti'}}, {'is_past': True, 'title': 'SVP of Strategic Sales and Partnerships', 'person': {'first_name': 'Jack', 'last_name': 'Rotherham', 'permalink': 'jack-rotherham'}}, {'is_past': True, 'title': 'General Manager, Metacafe Israel', 'person': {'first_name': 'Ido', 'last_name': 'Safruti', 'permalink': 'ido-safruti'}}, {'is_past': True, 'title': 'Vice President, Programming and Content', 'person': {'first_name': 'Steven', 'last_name': 'Horn', 'permalink': 'steven-horn'}}, {'is_past': True, 'title': 'Vice President, Marketing Communications & Publisher/Sales Development', 'person': {'first_name': 'Michelle', 'last_name': 'Cox', 'permalink': 'michelle-cox'}}, {'is_past': True, 'title': 'Head of International Media Sales', 'person': {'first_name': 'Sagi', 'last_name': 'Gordon', 'permalink': 'sagi-gordon'}}, {'is_past': True, 'title': 'Consulting', 'person': {'first_name': 'Dima', 'last_name': 'Kuchin', 'permalink': 'dima-kuchin'}}, {'is_past': True, 'title': 'Business Development Associate', 'person': {'first_name': 'Andrew', 'last_name': 'Greenstein', 'permalink': 'andrew-greenstein'}}, {'is_past': True, 'title': 'Senior Programmer', 'person': {'first_name': 'Tal', 'last_name': 'Yaniv', 'permalink': 'tal-yaniv'}}, {'is_past': True, 'title': 'VP Sales', 'person': {'first_name': 'Brent', 'last_name': 'Fraser', 'permalink': 'brent-fraser'}}, {'is_past': True, 'title': 'Sr. Dir. User Experience', 'person': {'first_name': 'Uri', 'last_name': 'Ar', 'permalink': 'uri-ar'}}, {'is_past': True, 'title': 'Head of international sales', 'person': {'first_name': 'Gil', 'last_name': 'Shoham', 'permalink': 'gil-shoham'}}, {'is_past': True, 'title': 'Senior Director Products and Content Operations', 'person': {'first_name': 'Dudu', 'last_name': 'Noy', 'permalink': 'dudu-noy'}}, {'is_past': True, 'title': 'Senior Marketing Director', 'person': {'first_name': 'Iri', 'last_name': 'Amirav', 'permalink': 'iri-amirav'}}], 'competitions': [{'competitor': {'name': 'YouTube', 'permalink': 'youtube'}}, {'competitor': {'name': 'hulu', 'permalink': 'hulu'}}, {'competitor': {'name': 'Break.com', 'permalink': 'break-com'}}], 'providerships': [], 'total_money_raised': '$50M', 'funding_rounds': [{'id': 330, 'round_code': 'b', 'source_url': 'http://www.benchmark.com/news/israel/2006/07_03_2006.php', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 386, 'round_code': 'c', 'source_url': 'http://home.businesswire.com/portal/site/google/index.jsp?ndmViewId=news_view&newsId=20070821005247&newsLang=en', 'source_description': '', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}]}, {'id': 16103, 'round_code': 'debt_round', 'source_url': 'http://venturebeat.com/2010/06/04/metacafe-lands-5-million-for-new-movie-site/', 'source_description': 'Metacafe lands $5 million for curated movie site', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 6, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Highland Capital Partners', 'permalink': 'highland-capital-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '128 King Street', 'address2': '3rd Floor', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.437328, 'longitude': -122.159928}], 'milestones': [{'id': 24055, 'description': 'Ailing Metacafe acquired by a Hollywood agency specializing in YouTube stars', 'stoned_year': 2012, 'stoned_month': 6, 'stoned_day': 14, 'source_url': 'http://venturebeat.com/2012/06/14/metacafe-acquired/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_text': '', 'source_description': 'Ailing Metacafe acquired by a Hollywood agency specializing in YouTube stars', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Metacafe', 'permalink': 'metacafe'}}], 'ipo': None, 'video_embeds': [{'embed_code': '
Rio, a Speedo, and Dwayne Johnson\\'s Leather Thong. Watch more top selected videos about: Fast Five (2011 film), Elsa Pataky
', 'description': '

Metacafe Unfiltered with Matt Zaller

'}, {'embed_code': '
Aaron Eckhart\\'s Chintastic Chinterview. Watch more top selected videos about: Entertainment, Aliens
', 'description': '

Metacafe Unfiltered with Alex Blagg

'}, {'embed_code': '
Trending Topics with Matt Zaller - Episode 4 - For more amazing video clips, click here
', 'description': '

Metacafe’s Trending Topics

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/3670/43670v6-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3670/43670v6-max-250x250.png'], [[450, 281], 'assets/images/resized/0004/3670/43670v6-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 130], 'assets/images/resized/0013/1715/131715v2-max-150x150.jpg'], [[250, 218], 'assets/images/resized/0013/1715/131715v2-max-250x250.jpg'], [[450, 392], 'assets/images/resized/0013/1715/131715v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297eba'), 'name': 'MindTouch', 'permalink': 'mindtouch', 'crunchbase_url': 'http://www.crunchbase.com/company/mindtouch', 'homepage_url': 'http://www.mindtouch.com', 'blog_url': 'http://www.mindtouch.com/blog/', 'blog_feed_url': 'http://feeds.feedburner.com/Mindtouch', 'twitter_username': 'MindTouch', 'category_code': 'enterprise', 'number_of_employees': 0, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'strategic-content, technical-documentation, enterprise-content-management-system, wiki, collaboration, mindtouch, intranet, mashup, situational-applications, portal, wcms, ecm', 'alias_list': None, 'email_address': 'sales@mindtouch.com', 'phone_number': '619-795-8459', 'description': '', 'created_at': 'Sat Aug 11 07:03:41 UTC 2007', 'updated_at': 'Sat Jun 09 10:14:43 UTC 2012', 'overview': '

MindTouch wants to make product help exceptional.

\\n\\n

We’ve all had exceptional product help experiences that make us want to buy more products from a vendor. Unfortunately we’ve all also had experiences that leave us shaking our head, deciding to never again do business with a vendor. MindTouch cares about making our customers exceptional at product help, in part by creating vibrant communities around their products. We deliver on this promise with our social knowledge base product and build-to-suit product help communities for some of the world’s largest companies and a lot of world’s smaller companies.

\\n\\n

MindTouch makes the world’s most respected social knowledge base. We power purpose-built help 2.0 communities that connect companies like Autodesk, Intuit, PayPal, RightScale and ExactTarget, with their customers. Millions use our software every day.

\\n\\n

Key Benefits

\\n\\n
    \\n
  1. Lower your customer support costs.
  2. \\n
  3. Juice your search engine ranking (SEO).
  4. \\n
  5. Create more engaged and loyal customers.
  6. \\n
  7. Increase your lead generation.
  8. \\n
  9. Sell and market better with personalization.
  10. \\n
', 'image': {'available_sizes': [[[150, 33], 'assets/images/resized/0000/4228/4228v1-max-150x150.png'], [[200, 45], 'assets/images/resized/0000/4228/4228v1-max-250x250.png'], [[200, 45], 'assets/images/resized/0000/4228/4228v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'MindTouch Platform v10', 'permalink': 'deki-wiki'}, {'name': 'MindTouch TCS', 'permalink': 'mindtouch-2010'}, {'name': 'MindTouch Core', 'permalink': 'mindtouch-core'}], 'relationships': [{'is_past': False, 'title': 'Founder and CTO', 'person': {'first_name': 'Steve', 'last_name': 'Bjorg', 'permalink': 'steve-bjorg'}}, {'is_past': False, 'title': 'Co-Founder and CEO', 'person': {'first_name': 'Aaron', 'last_name': 'Fulkerson', 'permalink': 'aaron-fulkerson'}}, {'is_past': False, 'title': 'Software Architect', 'person': {'first_name': 'Arne', 'last_name': 'Claassen', 'permalink': 'arne-claassen'}}, {'is_past': False, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Corey', 'last_name': 'Ganser', 'permalink': 'corey-ganser'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Ken', 'last_name': 'Liu', 'permalink': 'ken-liu'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Kelly', 'last_name': 'Abbott', 'permalink': 'kelly-abbott'}}, {'is_past': True, 'title': 'SVP of Engineering', 'person': {'first_name': 'Sam', 'last_name': 'Estrin', 'permalink': 'sam-estirn'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Roy', 'last_name': 'Kim', 'permalink': 'roy-kim'}}, {'is_past': True, 'title': 'eVP of Sales', 'person': {'first_name': 'Mark', 'last_name': 'Fidelman', 'permalink': 'mark-fidelman'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Diliberto', 'permalink': 'mike-diliberto'}}, {'is_past': True, 'title': 'Director of Sales', 'person': {'first_name': 'Rion', 'last_name': 'Morgenstern', 'permalink': 'rion-morgenstern'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Mike', 'last_name': 'Puterbaugh', 'permalink': 'mike-puterbaugh'}}], 'competitions': [{'competitor': {'name': 'BrightSide Software', 'permalink': 'brightside-software'}}, {'competitor': {'name': 'Liferay', 'permalink': 'liferay'}}, {'competitor': {'name': 'OpenText', 'permalink': 'opentext'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '401 West A Street', 'address2': 'Suite 250', 'zip_code': '92101', 'city': 'San Diego', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 32.720656, 'longitude': -117.167831}], 'milestones': [], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

Creating open source software that enterprise loves

'}], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0014/5761/145761v1-max-150x150.jpg'], [[250, 203], 'assets/images/resized/0014/5761/145761v1-max-250x250.jpg'], [[450, 365], 'assets/images/resized/0014/5761/145761v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ebb'), 'name': 'ChaCha', 'permalink': 'chacha', 'crunchbase_url': 'http://www.crunchbase.com/company/chacha', 'homepage_url': 'http://www.chacha.com', 'blog_url': 'http://blog.chacha.com/', 'blog_feed_url': 'http://feeds.feedburner.com/chacha_mobile_marketing', 'twitter_username': 'chacha', 'category_code': 'advertising', 'number_of_employees': 70, 'founded_year': 2005, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'qa, q--a, answers, questions, mobile-search, search, human-powered-search, mobile-search-mobile-answers, question-and-answers-service', 'alias_list': '', 'email_address': 'partners@chacha.com', 'phone_number': '800.820.0827', 'description': 'Mobile and Online Answers Service', 'created_at': 'Sat Aug 11 10:47:50 UTC 2007', 'updated_at': 'Thu Jan 02 19:04:26 UTC 2014', 'overview': '

ChaCha is the leading, free real-time answers service that has emerged as the #1 way for advertisers and marketers to reach and engage with the audience of their choice anytime, anywhere. Through its unique “ask-a-smart-friend” platform, ChaCha has answered over two billion questions since launch from more than 32 million unique users per month, and is ranked among comScore’s top 100 websites.

\\n\\n

ChaCha delivers human-powered answers via (chacha.com), SMS text (242-242), iPhone app, Android app, and voice (1-800-2-ChaCha). Working with major brands such as Paramount, NBC Universal Digital, AT&T, Palm, Johnson & Johnson, P&G, Coca-Cola, McDonald’s, and presidential political campaigns, ChaCha.com is one of the fastest growing mobile and online publishers according to Nielsen and Quantcast.

\\n\\n

ChaCha was co-founded by proven innovator and entrepreneur Scott Jones and is funded by VantagePoint Venture Partners, Rho Ventures, Bezos Expeditions; Morton Meyerson, former President and Vice Chairman of EDS as well as Chairman and CEO of Perot Systems; Rod Canion, founding CEO of Compaq Computer; the Simon family; and Jack Gill, Silicon Valley venture capitalist.

', 'image': {'available_sizes': [[[150, 89], 'assets/images/resized/0010/6139/106139v1-max-150x150.jpg'], [[240, 143], 'assets/images/resized/0010/6139/106139v1-max-250x250.jpg'], [[240, 143], 'assets/images/resized/0010/6139/106139v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'ChaCha Question & Answer Service', 'permalink': 'chacha-mobile-search'}], 'relationships': [{'is_past': False, 'title': 'Co-Founder, CEO, Chairman', 'person': {'first_name': 'Scott', 'last_name': 'Jones', 'permalink': 'scott-jones'}}, {'is_past': False, 'title': 'CIO', 'person': {'first_name': 'Douglas', 'last_name': 'Gilmore', 'permalink': 'douglas-gilmore'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Richard', 'last_name': 'Harroch', 'permalink': 'richard-harroch'}}, {'is_past': False, 'title': 'Board of Advisors', 'person': {'first_name': 'Jim', 'last_name': 'Moloshok', 'permalink': 'jim-moloshok'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Mark', 'last_name': 'Leschly', 'permalink': 'mark-leschly'}}, {'is_past': True, 'title': 'President & Co-Founder', 'person': {'first_name': 'Brad', 'last_name': 'Bostic', 'permalink': 'brad-bostic'}}, {'is_past': True, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Michael', 'last_name': 'Zammuto', 'permalink': 'michael-zammuto'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Shawn', 'last_name': 'Schwegman', 'permalink': 'shawn-schwegman'}}, {'is_past': True, 'title': 'VP / Director, Business Development', 'person': {'first_name': 'David', 'last_name': 'Gilby', 'permalink': 'david-gilby'}}, {'is_past': True, 'title': 'VP Client Care', 'person': {'first_name': 'Cat', 'last_name': 'Enagonio', 'permalink': 'cat-enagonio'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jack', 'last_name': 'Gill', 'permalink': 'jack-gill'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ian', 'last_name': 'Trumpower', 'permalink': 'ian-trumpower'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Morton', 'last_name': 'Meyerson', 'permalink': 'morton-meyerson'}}, {'is_past': True, 'title': 'Special Projects', 'person': {'first_name': 'Steve', 'last_name': 'Kremer', 'permalink': 'steve-kremer'}}, {'is_past': True, 'title': 'Director, Sales', 'person': {'first_name': 'Brian', 'last_name': 'Liebler', 'permalink': 'brian-liebler'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Rod', 'last_name': 'Canion', 'permalink': 'rod-canion'}}, {'is_past': True, 'title': 'Sr. Marketing & Communications Manager', 'person': {'first_name': 'Sara', 'last_name': 'Camden', 'permalink': 'sara-camden'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Greg', 'last_name': 'Seifert', 'permalink': 'greg-seifert'}}, {'is_past': True, 'title': 'VP, Engineering & Operations', 'person': {'first_name': 'Blake', 'last_name': 'Matheny', 'permalink': 'blake-matheny'}}], 'competitions': [{'competitor': {'name': 'Mahalo', 'permalink': 'mahalo'}}, {'competitor': {'name': 'Powerset', 'permalink': 'powerset'}}, {'competitor': {'name': 'kgb', 'permalink': 'kgb'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Swingly', 'permalink': 'swingly'}}, {'competitor': {'name': 'Quora', 'permalink': 'quora'}}, {'competitor': {'name': 'Ask.com', 'permalink': 'ask-com'}}, {'competitor': {'name': 'Siri', 'permalink': 'siri'}}, {'competitor': {'name': 'Aardvark', 'permalink': 'aardvark'}}, {'competitor': {'name': 'AnswerBag', 'permalink': 'answerbag'}}, {'competitor': {'name': 'Formspring', 'permalink': 'formspring'}}, {'competitor': {'name': '4INFO', 'permalink': '4info'}}], 'providerships': [{'title': 'Branding / Experience Design', 'is_past': True, 'provider': {'name': 'Kristian Andersen + Associates', 'permalink': 'kristian-andersen-associates'}}, {'title': '', 'is_past': True, 'provider': {'name': 'MESA Global', 'permalink': 'mesa-global'}}], 'total_money_raised': '$89M', 'funding_rounds': [{'id': 335, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Members', 'last_name': 'of Simon Mall Family', 'permalink': 'members-of-simon-mall-family'}}]}, {'id': 959, 'round_code': 'b', 'source_url': 'http://paidcontent.org/article/419-business-insider-raises-3-million-in-fourth-round/', 'source_description': '', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Morton', 'last_name': 'Meyerson', 'permalink': 'morton-meyerson'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Jeff', 'last_name': 'Bezos', 'permalink': 'jeff-bezos'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Jones', 'permalink': 'scott-jones'}}]}, {'id': 4856, 'round_code': 'c', 'source_url': 'http://www.techcrunch.com/2009/01/26/wow-chacha-is-raising-another-30-million/', 'source_description': 'Wow. ChaCha Is Raising Another $30 Million (Update: They Already Did', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 10, 'funded_day': 1, 'investments': []}, {'id': 7688, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 16000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 1, 'investments': []}, {'id': 10599, 'round_code': 'e', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1383202/000138320209000006/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 7000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 12, 'funded_day': 23, 'investments': []}, {'id': 19117, 'round_code': 'f', 'source_url': 'http://techcrunch.com/2010/10/13/chacha-raises-20-million-in-series-f-funding/', 'source_description': 'Text Answers Service ChaCha Nabs $20 Million In Series F', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'VantagePoint Capital Partners', 'permalink': 'vantagepoint-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rho Capital Partners', 'permalink': 'rho-capital-ventures'}, 'person': None}]}, {'id': 21037, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/01/19/qualcomm-invests-3-million-in-qa-service-chacha/', 'source_description': 'Qualcomm Invests $3 Million In Q&A Service ChaCha', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 19, 'investments': [{'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}]}, {'id': 35102, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/01/28/with-2b-questions-answered-qa-vet-chacha-gets-another-14m-to-be-the-quora-for-the-common-man-video/', 'source_description': 'With 2B Questions Answered, Q&A Vet ChaCha Gets Another $14M To Be The Quora For The Common Man [Video]', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'VantagePoint Capital Partners', 'permalink': 'vantagepoint-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Rho Capital Partners', 'permalink': 'rho-capital-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '14550 Clay Terrace Blvd.', 'address2': 'Suite 130', 'zip_code': '46032', 'city': 'Carmel', 'state_code': 'IN', 'country_code': 'USA', 'latitude': 39.998641, 'longitude': -86.130347}, {'description': 'West Coast Office', 'address1': '156 2nd St', 'address2': '', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 7270, 'description': \"ChaCha named in Lead411's Hottest Companies in the Midwest list\", 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 21, 'source_url': 'http://www.lead411.com/midwest-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST COMPANIES IN THE MIDWEST\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 9855, 'description': 'ChaCha Hits Record Traffic and Q&A Volume', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://partners.chacha.com/2010/11/08/chacha-hits-record-traffic/?cmpid=marktcprfast', 'source_text': None, 'source_description': 'ChaCha Hits Record Traffic and Q&A Volume', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11368, 'description': 'ChaCha Garners Industry Star Honor at 2010 Mobile Excellence Awards', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 16, 'source_url': 'http://partners.chacha.com/2010/12/16/chacha-garners-industry-star-honor-at-2010-mobile-excellence-awards/', 'source_text': None, 'source_description': 'Mobile Excellence Awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11369, 'description': 'ChaCha.com Traffic Jumps 116 Percent in 2010', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 11, 'source_url': 'http://www.chacha.com/topic/chacha/news/chacha-com-traffic-jumped-116-percent-in-2010-says-comscore', 'source_text': None, 'source_description': 'comScore', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}, {'id': 11370, 'description': 'ChaCha Answers 1 Billionth Question', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 6, 'source_url': 'http://www.chacha.com/topic/chacha/news/1-billion-qs-answered', 'source_text': None, 'source_description': 'ChaCha.com', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'ChaCha', 'permalink': 'chacha'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

ChaCha - Fast, Free Answers From a Smart Friend

'}], 'screenshots': [{'available_sizes': [[[150, 109], 'assets/images/resized/0010/6476/106476v2-max-150x150.png'], [[250, 182], 'assets/images/resized/0010/6476/106476v2-max-250x250.png'], [[450, 328], 'assets/images/resized/0010/6476/106476v2-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 137], 'assets/images/resized/0019/7766/197766v1-max-150x150.png'], [[250, 228], 'assets/images/resized/0019/7766/197766v1-max-250x250.png'], [[450, 411], 'assets/images/resized/0019/7766/197766v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://searchengineland.com/chacha-tortoise-of-social-search-keeps-plugging-away-52809', 'title': 'ChaCha Keeps Plugging Away - SearchEngineLand - 10/12/10'}, {'external_url': 'http://partners.chacha.com/2010/11/08/chacha-hits-record-traffic/?cmpid=markwebprcrunch', 'title': 'ChaCha Hits Record Traffic and Q&A Volume'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/chacha-com-traffic-jumped-116-percent-in-2010-says-comscore', 'title': 'ChaCha.com Traffic Jumps 116 Percent in 2010'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/entertainment-relationships-and-coupons-top-chacha-user-interests-in-2010', 'title': 'Entertainment, Relationships and Coupons Top ChaCha User Interests in 2010'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/1-billion-qs-answered', 'title': 'ChaCha Answers 1 Billionth Question!'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/does-chacha-offer-free-mobile-sports-alerts', 'title': 'Does ChaCha Offer Free Mobile Sports Alerts?'}, {'external_url': 'http://www.chacha.com/topic/chacha/news/is-chacha-setting-records-just-to-break-them', 'title': 'Is ChaCha Setting Records Just to Break Them?'}, {'external_url': 'http://thenextweb.com/insider/2013/01/28/chacha-lands-14-million-from-vantagepoint-capital-and-rho-ventures-to-invest-in-new-products/', 'title': 'ChaCha nabs $14m from VantagePoint Capital and Rho Ventures for its online and mobile expansion'}, {'external_url': 'http://www.ibj.com/chacha-secures-14m-investment-to-expand-services/PARAMS/article/39222', 'title': 'ChaCha secures $14M investment to expand services'}, {'external_url': 'http://techcrunch.com/2013/01/28/with-2b-questions-answered-qa-vet-chacha-gets-another-14m-to-be-the-quora-for-the-common-man-video/', 'title': 'With 2B Questions Answered, Q&A Vet ChaCha Gets Another $14M To Be The Quora For The Common Man [Video]'}, {'external_url': 'http://venturebeat.com/2013/01/28/you-got-questions-cha-chas-got-14m-and-answers/', 'title': \"You got questions? ChaCha's got $14M and answers\"}, {'external_url': 'http://www.socaltech.com/chacha_aims_at_los_angeles_office_with_new_funding/s-0047434.html', 'title': 'ChaCha Aims At Los Angeles Office With New Funding'}, {'external_url': 'http://pandodaily.com/2013/01/28/chacha-the-other-q-a-site-raises-14-million-how-it-can-have-a-shot-against-the-big-boys/', 'title': 'ChaCha, the other Q & A site, raises $14 million. How it can have a shot against the big boys'}, {'external_url': 'http://go.bloomberg.com/tech-deals/2013-01-28-can-a-qa-site-be-a-real-business-chacha-thinks-it-has-the-answer/', 'title': 'Can a Q&A Site Be a Real Business? $14M Will Help ChaCha Find Out'}, {'external_url': 'http://www.insideindianabusiness.com/newsitem.asp?ID=57665', 'title': \"'Tremendous Growth' Leads to Big Investment\"}, {'external_url': 'http://finance.fortune.cnn.com/2013/01/28/venture-capital-deals-279/', 'title': 'Venture capital deals'}, {'external_url': 'http://allthingsd.com/20130128/chacha-still-grinding-away-at-this-online-qa-thing-raises-another-14m/', 'title': 'ChaCha, Still Grinding Away at This Online Q&A Thing, Raises Another $14M'}, {'external_url': 'http://www.indystar.com/article/20130128/BUSINESS/301280334/ChaCha-attracts-14-million-new-funding', 'title': 'ChaCha attracts $14 million in new funding'}, {'external_url': 'http://searchengineland.com/with-14-million-more-qa-site-chacha-soldiers-on-146554', 'title': 'With $14 Million More Q&A Site ChaCha Soldiers On'}, {'external_url': 'http://www.pehub.com/183219/chacha-ceo-we-are-masters-pivot/', 'title': 'ChaCha CEO: We Are Masters of the Pivot'}, {'external_url': 'http://vator.tv/news/2013-01-28-chacha-raises-14m-from-vantagepoint-and-rho-ventures', 'title': 'ChaCha raises $14M from VantagePoint and Rho Ventures Read more at http://vator.tv/news/2013-01-28-chacha-raises-14m-from-vantagepoint-and-rho-ventures#YS5kzWvwoc2rHUY4.99 '}, {'external_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130128e91saxh04&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130128e91saxh04%26from%3dalert%26pid%3d32', 'title': 'ChaCha Cashed Up by Insiders for Real-Time Q&A '}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec0'), 'name': 'Sportingo', 'permalink': 'sportingo', 'crunchbase_url': 'http://www.crunchbase.com/company/sportingo', 'homepage_url': 'http://www.sportingo.com', 'blog_url': 'http://sportingoblog.blogspot.com/', 'blog_feed_url': 'http://sportingoblog.blogspot.com/feeds/posts/default?alt=rss', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': 0, 'founded_year': 2006, 'founded_month': 7, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'sports, news', 'alias_list': '', 'email_address': 'info@sportingo.com', 'phone_number': '', 'description': 'Sports News and Entertainment', 'created_at': 'Mon Aug 13 22:38:36 UTC 2007', 'updated_at': 'Tue Jul 07 17:33:27 UTC 2009', 'overview': '

Sportingo is a sports news company that provides a global platform for sports fans to write, talk and consume sport media online. The Company offers two main features: a platform on which users can write and rate each others’ articles and an interactive centralized sports media guide.

', 'image': {'available_sizes': [[[133, 61], 'assets/images/resized/0000/4282/4282v2-max-150x150.png'], [[133, 61], 'assets/images/resized/0000/4282/4282v2-max-250x250.png'], [[133, 61], 'assets/images/resized/0000/4282/4282v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Sportingo', 'permalink': 'sportingo'}, {'name': \"What's Online\", 'permalink': 'what-s-online'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': \"Ze'ev\", 'last_name': 'Rozov', 'permalink': 'zeev-rozov'}}, {'is_past': False, 'title': 'Marketing Manager', 'person': {'first_name': 'Tal', 'last_name': 'Rozow', 'permalink': 'tal-rozow'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$3.2M', 'funding_rounds': [{'id': 972, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 3200000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Ingenious Media', 'permalink': 'ingenious-media'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.crunchbase.com/admin/db_requests/909/download_attachment?email_attachment_id=148', 'source_description': 'TIXDAQ STARTS TO BUZZ ABOUT SPORTS AND ACQUIRES SPORTINGO NETWORK', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': 5, 'acquiring_company': {'name': 'tixdaq', 'permalink': 'tixdaq'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': None, 'address2': None, 'zip_code': '46733', 'city': None, 'state_code': None, 'country_code': 'ISR', 'latitude': 17.08881, 'longitude': -96.76492}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec1'), 'name': 'Akamai Technologies', 'permalink': 'akamai-technologies', 'crunchbase_url': 'http://www.crunchbase.com/company/akamai-technologies', 'homepage_url': 'http://www.akamai.com', 'blog_url': 'https://blogs.akamai.com', 'blog_feed_url': '', 'twitter_username': 'Akamai', 'category_code': 'enterprise', 'number_of_employees': 1000, 'founded_year': 1998, 'founded_month': 8, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'broadcast, acceleration, content-distribution, cdn, adn, intelligent-platform, web-traffic, iaas', 'alias_list': '', 'email_address': '', 'phone_number': '(877) 4-AKAMAI', 'description': '', 'created_at': 'Tue Aug 14 09:32:11 UTC 2007', 'updated_at': 'Mon Dec 02 13:12:08 UTC 2013', 'overview': '

Akamai is a leading web services provider based in Cambridge, Massachusetts. It is the primary player in content delivery expediting space. It was started in 1998 to use advanced computing techniques to deliver a streamlined web experience to the end user. Its first customer was Yahoo.

\\n\\n

Since 1998 Akamai has retained content delivery as its core business, but has also branched out with two tiers of professional Internet consulting services along with related digital media and site delivery solutions. These businesses target firms seeking to deliver a rich user experience quickly and consistently.

', 'image': {'available_sizes': [[[105, 45], 'assets/images/resized/0000/4285/4285v1-max-150x150.png'], [[105, 45], 'assets/images/resized/0000/4285/4285v1-max-250x250.png'], [[105, 45], 'assets/images/resized/0000/4285/4285v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Vice Chairman', 'person': {'first_name': 'Arthur', 'last_name': 'Bilger', 'permalink': 'arthur-bilger'}}, {'is_past': False, 'title': 'Co-Founder and Chief Scientist', 'person': {'first_name': 'Tom', 'last_name': 'Leighton', 'permalink': 'tom-leighton'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Marketing Officer', 'person': {'first_name': 'Brad', 'last_name': 'Rinklin', 'permalink': 'brad-rinklin'}}, {'is_past': False, 'title': 'Senior Vice President & Chief Information Officer', 'person': {'first_name': 'Kumud', 'last_name': 'Kalia', 'permalink': 'kumud-kalia'}}, {'is_past': False, 'title': 'Vice President of Networks & Chief Network Architect', 'person': {'first_name': 'Noam', 'last_name': 'Freedman', 'permalink': 'noam-freedman'}}, {'is_past': False, 'title': 'Executive Vice President & Chief Financial Officer', 'person': {'first_name': 'Jim', 'last_name': 'Benson', 'permalink': 'jim-benson'}}, {'is_past': False, 'title': 'Senior Vice President and Chief Development Officer', 'person': {'first_name': 'Robert', 'last_name': 'Wood', 'permalink': 'robert-wood'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager of the Media Division', 'person': {'first_name': 'Bill', 'last_name': 'Wheaton', 'permalink': 'bill-wheaton'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, Emerging Products Division', 'person': {'first_name': 'Willie', 'last_name': 'Tejada', 'permalink': 'willie-tejada'}}, {'is_past': False, 'title': 'Vice President, Global Services & Support', 'person': {'first_name': 'Adam', 'last_name': 'Karon', 'permalink': 'adam-karon'}}, {'is_past': False, 'title': 'Executive Vice President, Platform Division', 'person': {'first_name': 'Robert', 'last_name': 'Blumofe', 'permalink': 'robert-blumofe'}}, {'is_past': False, 'title': 'SVP and GM Web Experience Business Unit', 'person': {'first_name': 'Mike', 'last_name': 'Afergan', 'permalink': 'mike-afergan'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Michael', 'last_name': 'Weider', 'permalink': 'michael-weider'}}, {'is_past': False, 'title': 'VP of Enginering, Cloud Platforms', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': False, 'title': 'Executive Vice President, General Counsel, and Corporate Secretary', 'person': {'first_name': 'Melanie', 'last_name': 'Haratunian', 'permalink': 'melanie-haratunian'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Stanley', 'permalink': 'mike-stanley'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Pamela', 'last_name': 'J. Craig', 'permalink': 'pamela-j-craig'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Martin', 'last_name': 'Hannigan', 'permalink': 'martin-hannigan'}}, {'is_past': False, 'title': 'President, Worldwide Operations', 'person': {'first_name': 'Robert', 'last_name': 'Hughes', 'permalink': 'robert-hughes'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager', 'person': {'first_name': 'Jim', 'last_name': 'Ebzery', 'permalink': 'jim-ebzery'}}, {'is_past': False, 'title': 'Vice President & General Manager, Carrier Products Division', 'person': {'first_name': 'Mick', 'last_name': 'Scully', 'permalink': 'mick-scully'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, Security Division', 'person': {'first_name': 'Ronni', 'last_name': 'Zehavi', 'permalink': 'ronni-zehavi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jill', 'last_name': 'Greenthal', 'permalink': 'jill-greenthal'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Frederic', 'last_name': 'V. Salerno', 'permalink': 'frederic-v-salerno'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Martin', 'last_name': 'Coyne II', 'permalink': 'martin-coyne-ii'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Petronaci', 'permalink': 'michael-petronaci'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Ference', 'permalink': 'matt-ference'}}, {'is_past': False, 'title': 'Sr Product Manager', 'person': {'first_name': 'Rob', 'last_name': 'Foley', 'permalink': 'rob-foley'}}, {'is_past': False, 'title': 'Senior TPM', 'person': {'first_name': 'Yair', 'last_name': 'Greenbaum', 'permalink': 'yair-greenbaum'}}, {'is_past': False, 'title': 'President of Products and Development', 'person': {'first_name': 'Rick', 'last_name': 'McConnell', 'permalink': 'rick-mcconnell'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'James', 'last_name': 'Gemmell', 'permalink': 'james-gemmell'}}, {'is_past': False, 'title': 'Senior Vice President & General Manager, EMEA', 'person': {'first_name': 'Mark', 'last_name': 'Vargo', 'permalink': 'mark-vargo'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Monte', 'last_name': 'E. Ford', 'permalink': 'monte-e-ford'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Geoffrey', 'last_name': 'Moore', 'permalink': 'geoffrey-moore-2'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Naomi', 'last_name': 'O. Seligman', 'permalink': 'naomi-o-seligman'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mark', 'last_name': 'Laing', 'permalink': 'mark-laing'}}, {'is_past': True, 'title': 'co-founder', 'person': {'first_name': 'Jonathan', 'last_name': 'Seelig', 'permalink': 'jonathan-seelig'}}, {'is_past': True, 'title': 'Chr & CEO', 'person': {'first_name': 'George', 'last_name': 'Conrades', 'permalink': 'george-conrades'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Paul', 'last_name': 'Sagan', 'permalink': 'paul-sagan'}}, {'is_past': True, 'title': 'Executive, including CEO, President & COO', 'person': {'first_name': 'Paul', 'last_name': 'Sagan', 'permalink': 'paul-sagan'}}, {'is_past': True, 'title': 'CTO of EMEA', 'person': {'first_name': 'David', 'last_name': 'Drai', 'permalink': 'david-drai'}}, {'is_past': True, 'title': 'Chief Technologist, Media & CDN Engineering', 'person': {'first_name': 'Kevin', 'last_name': 'Freund', 'permalink': 'kevin-freund'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'J.D.', 'last_name': 'Sherman', 'permalink': 'j-d-sherman'}}, {'is_past': True, 'title': 'VP of Product Strategy', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': True, 'title': 'Vice President of Finance', 'person': {'first_name': 'Julie', 'last_name': 'M.B . Bradely', 'permalink': 'julie-m-b-bradely'}}, {'is_past': True, 'title': 'Vice President & General Manager, International', 'person': {'first_name': 'Carlos', 'last_name': 'Ramón', 'permalink': 'carlos-ramn'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jay', 'last_name': 'Parikh', 'permalink': 'jay-parikh'}}, {'is_past': True, 'title': 'VP of Sales, Service and Marketing', 'person': {'first_name': 'Robert', 'last_name': 'Hughes', 'permalink': 'robert-hughes'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Chris', 'last_name': 'Schoettle', 'permalink': 'chris-schoettle'}}, {'is_past': True, 'title': 'Director, Sales International', 'person': {'first_name': 'Robert', 'last_name': 'Gribnau', 'permalink': 'robert-gribnau'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Witold', 'last_name': 'Stankiewicz', 'permalink': 'witold-stankiewicz'}}, {'is_past': True, 'title': 'Leadership (Multiple) - Solutions, Sales, Services', 'person': {'first_name': 'Mridul', 'last_name': 'Agarwal', 'permalink': 'mridul-agarwal'}}, {'is_past': True, 'title': 'Corporate Investor', 'person': {'first_name': 'Navin', 'last_name': 'Chaddha', 'permalink': 'navin-chaddha'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Brain', 'last_name': 'Carroll', 'permalink': 'brain-carroll'}}, {'is_past': True, 'title': 'Senior Architect', 'person': {'first_name': 'Bradley', 'last_name': 'C. Kuszmaul', 'permalink': 'bradley-c-kuszmaul'}}, {'is_past': True, 'title': 'Customer Transitions', 'person': {'first_name': 'Rich', 'last_name': 'Day', 'permalink': 'rich-day'}}, {'is_past': True, 'title': 'Marketing Services Manager', 'person': {'first_name': 'Todd', 'last_name': 'Scholl', 'permalink': 'todd-scholl-2'}}, {'is_past': True, 'title': 'Senior Product Architect', 'person': {'first_name': 'Luu', 'last_name': 'Tran', 'permalink': 'luu-tran'}}, {'is_past': True, 'title': 'Technical Support Engineer', 'person': {'first_name': 'Samuel', 'last_name': 'Alba', 'permalink': 'samuel-alba'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Shyam', 'last_name': 'Desirazu', 'permalink': 'shyam-desirazu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nidhi', 'last_name': 'Shah', 'permalink': 'nidhi-shah'}}, {'is_past': True, 'title': 'Manager, Channel Sales, Eastern Region', 'person': {'first_name': 'Matthew', 'last_name': 'McSweeney', 'permalink': 'matthew-mcsweeney'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Joe', 'last_name': 'Waltman', 'permalink': 'joe-waltman'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Todd', 'last_name': 'Dagres', 'permalink': 'todd-dagres'}}, {'is_past': True, 'title': 'Sr. Director Business Development, Broadband', 'person': {'first_name': 'Syd', 'last_name': 'Birenbaum', 'permalink': 'syd-birenbaum'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Michael', 'last_name': 'A. Ruffolo', 'permalink': 'michael-a-ruffolo'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'David', 'last_name': 'Barrett', 'permalink': 'david-barrett'}}, {'is_past': True, 'title': 'Head, P2P Initiatives', 'person': {'first_name': 'Travis', 'last_name': 'Kalanick', 'permalink': 'travis-kalanick'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Kenny', 'permalink': 'david-kenny'}}, {'is_past': True, 'title': 'General Manager, Business Development', 'person': {'first_name': 'John', 'last_name': 'Shumway', 'permalink': 'john-shumway'}}, {'is_past': True, 'title': 'Director, Corporate Strategy', 'person': {'first_name': 'Steven', 'last_name': 'Wolfe Pereira', 'permalink': 'steven-wolfe-pereira'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Curtis', 'last_name': 'Chambers', 'permalink': 'curtis-chambers'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Will', 'last_name': 'Koffel', 'permalink': 'will-koffel'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Clarissa', 'last_name': 'Riggins', 'permalink': 'clarissa-riggins'}}, {'is_past': True, 'title': 'Sr. Program Manager', 'person': {'first_name': 'Youssef', 'last_name': 'Ben-Youssef', 'permalink': 'youssef-ben-youssef'}}, {'is_past': True, 'title': 'Director, Communications', 'person': {'first_name': 'Tammy', 'last_name': 'H. Nam', 'permalink': 'tammy-h-nam'}}, {'is_past': True, 'title': 'Independent Director, Board of Directors', 'person': {'first_name': 'C.', 'last_name': 'Kim Goodwin', 'permalink': 'c-kim-goodwin'}}, {'is_past': True, 'title': 'Product Line Director', 'person': {'first_name': 'Somu', 'last_name': 'Vadali', 'permalink': 'somu-vadali'}}, {'is_past': True, 'title': 'Sr. Media Manager', 'person': {'first_name': 'Andrew', 'last_name': 'Arnold', 'permalink': 'andrew-arnold'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Bill', 'last_name': 'Halter', 'permalink': 'bill-halter'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Terry', 'last_name': 'McGuire', 'permalink': 'terry-mcguire'}}, {'is_past': True, 'title': 'Senior Management', 'person': {'first_name': 'David', 'last_name': 'Rush', 'permalink': 'david-rush'}}, {'is_past': True, 'title': '(Nine Systems)', 'person': {'first_name': 'John', 'last_name': 'Ayers', 'permalink': 'john-ayers'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Terrance', 'last_name': 'G. McGuire', 'permalink': 'terrance-g-mcguire'}}], 'competitions': [{'competitor': {'name': 'CDNetworks', 'permalink': 'cdnetworks'}}, {'competitor': {'name': 'EdgeCast Networks', 'permalink': 'edgecast'}}, {'competitor': {'name': 'Limelight Networks', 'permalink': 'limelightnetworks'}}, {'competitor': {'name': 'BitTorrent', 'permalink': 'bittorrent'}}, {'competitor': {'name': 'BitGravity', 'permalink': 'bitgravity'}}, {'competitor': {'name': 'Velocix', 'permalink': 'velocix'}}, {'competitor': {'name': 'Cotendo', 'permalink': 'cotendo'}}, {'competitor': {'name': 'Internap', 'permalink': 'internap'}}, {'competitor': {'name': 'Fastly', 'permalink': 'fastly'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'SHIFT Communications', 'permalink': 'shift-communications'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Swimfish ', 'permalink': 'swimfish'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techcrunch.com/2007/04/12/payday-for-red-swoosh-15-million-from-akamai/', 'source_description': 'Payday for Red Swoosh 15 million from Akamai/', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Red Swoosh', 'permalink': 'red-swoosh'}}, {'price_amount': 95000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/10/21/akamai-bets-95-million-on-better-ad-targetting-buys-acerno/', 'source_description': 'TechCrunch', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 21, 'company': {'name': 'acerno', 'permalink': 'acerno'}}, {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.networkworld.com/news/2005/0315akamai.html', 'source_description': 'Akamai Acquires Speedera Networks', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'Speedera Networks', 'permalink': 'speedera-networks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-akamai-acquires-mobile-content-platform-velocitude/', 'source_description': 'Akamai Acquires Mobile Content Platform Velocitude', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 10, 'company': {'name': 'Velocitude', 'permalink': 'velocitude'}}, {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.akamai.com/html/about/press/releases/2007/press_020507.html', 'source_description': 'Akamai Press Release', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'Netli', 'permalink': 'netli'}}, {'price_amount': 268000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/12/22/done-deal-akamai-buys-rival-cotendo-for-268-million/', 'source_description': 'Done Deal – Akamai Buys Rival Cotendo For $268 Million', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 27, 'company': {'name': 'Cotendo', 'permalink': 'cotendo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/02/08/akamai-acquires-website-performance-company-blaze-software/', 'source_description': 'Akamai Acquires Website Performance Company Blaze Software', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 8, 'company': {'name': 'Blaze.io', 'permalink': 'blaze-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/699925/akamai-acquires-fastsoft', 'source_description': 'Akamai Acquires FastSoft', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 13, 'company': {'name': 'FastSoft', 'permalink': 'fastsoft'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2012/11/12/daily13-Akamai-acquires-content-delivery-network-biz-Verivue-.html', 'source_description': 'Akamai acquires content delivery network biz Verivue ', 'acquired_year': 2012, 'acquired_month': 11, 'acquired_day': 13, 'company': {'name': 'Verivue', 'permalink': 'verivue'}}, {'price_amount': 370000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/12/02/akamai-buys-ddos-prevention-specialist-prolexic-for-370m-to-ramp-up-security-offerings/', 'source_description': 'Akamai Buys DDoS Prevention Specialist Prolexic For $370M To Ramp Up Security Offerings For Enterprises', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'company': {'name': 'Prolexic Technologies', 'permalink': 'prolexic'}}], 'offices': [{'description': None, 'address1': '8 Cambridge Center', 'address2': None, 'zip_code': '02142', 'city': 'Cambridge', 'state_code': 'MA', 'country_code': 'USA', 'latitude': 42.364059, 'longitude': -71.08907}], 'milestones': [{'id': 4971, 'description': 'Akamai Reports All Time Single Day Peak of 3.45 Terabits Per Second', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 9, 'source_url': 'http://www.beet.tv/2010/04/akamai-reports-all-time-single-day-peak-of-345-terabits-per-second-on-april-9.html', 'source_text': None, 'source_description': 'Akamai Reports All Time Single Day Peak of 3.45 Terabits Per Second on April 9', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Akamai Technologies', 'permalink': 'akamai-technologies'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 1999, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'NASDAQ:AKAM'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': ' ', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

Akamai Technologies demoing at FinovateFall 2012

'}, {'embed_code': '', 'description': '

Akamai Technologies demoing at FinovateEurope 2013

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3671/43671v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/3671/43671v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3671/43671v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://en.wikipedia.org/wiki/Akamai_Technologies', 'title': 'Wikipedia page'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ec3'), 'name': 'Splashup', 'permalink': 'splashup', 'crunchbase_url': 'http://www.crunchbase.com/company/splashup', 'homepage_url': 'http://splashup.com', 'blog_url': 'http://www.splashup.com/blog', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 2007, 'founded_month': 10, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Thu Aug 16 11:11:46 UTC 2007', 'updated_at': 'Mon Apr 01 11:25:03 UTC 2013', 'overview': '

Splashup, formerly known as fauxto, is an online image editing service that provides some advanced tools and is unique for its incorporation of image editing layer effects. The site is still in beta, and so does not offer full editing capabilities yet.

', 'image': {'available_sizes': [[[150, 55], 'assets/images/resized/0001/1664/11664v1-max-150x150.png'], [[242, 89], 'assets/images/resized/0001/1664/11664v1-max-250x250.png'], [[242, 89], 'assets/images/resized/0001/1664/11664v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Splashup', 'permalink': 'splashup'}], 'relationships': [{'is_past': None, 'title': 'Board', 'person': {'first_name': 'Dave', 'last_name': 'Brushinski', 'permalink': 'dave-brushinski'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$10k', 'funding_rounds': [{'id': 374, 'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': 10000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 6, 'funded_day': 1, 'investments': [{'company': {'name': 'Y Combinator', 'permalink': 'y-combinator'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': None, 'address1': '', 'address2': '', 'zip_code': '', 'city': '', 'state_code': None, 'country_code': 'USA', 'latitude': 37.09024, 'longitude': -95.712891}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "# NOTE: Even though the exercise asks for 1000 companies, results have been limited to 100 companies for memory purposes\n", + "\n", + "results11 = list(collection.find({\"founded_month\": {\"$gt\": 6}}).limit(100))\n", + "\n", + "print(len(results11))\n", + "\n", + "print(results11)" + ] }, { "cell_type": "markdown", @@ -186,10 +357,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "926\n" + ] + } + ], + "source": [ + "results12 = list(collection.find({\"deadpooled_year\": {\"$gt\": 3}}))\n", + "\n", + "print(len(results12))" + ] }, { "cell_type": "markdown", @@ -200,10 +383,25 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "23\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297e7a'), 'name': 'Amazon', 'permalink': 'amazon', 'crunchbase_url': 'http://www.crunchbase.com/company/amazon', 'homepage_url': 'http://amazon.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'amazon', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 1994, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'virtualstorage, onlineshopping, virtualserver, crowdsource, grocery', 'alias_list': '', 'email_address': '', 'phone_number': '(206) 266-1000', 'description': '', 'created_at': 'Tue Jul 31 06:46:49 UTC 2007', 'updated_at': 'Wed Oct 30 17:13:43 UTC 2013', 'overview': '

Amazon.com, Inc. (AMZN), is a leading global Internet company and one of the most trafficked Internet retail destinations worldwide.

\\n\\n

Amazon is one of the first companies to sell products deep into the long tail by housing them in numerous warehouses and distributing products from many partner companies. Amazon directly sells or acts as a platform for the sale of a broad range of products. These include books, music, videos, consumer electronics, clothing and household products. The majority of Amazon’s sales are products sold by Amazon, though many are from third-party sellers.

\\n\\n

Amazon was founded in 1994 and is headquartered in Seattle, Washington. It has direct international operations in the United States, Canada, France, Germany, Japan, and the United Kingdom.

\\n\\n

Since 2004, Amazon has begun to rapidly expand its web services arsenal. Products such as Amazon EC2 (Elastic Compute Cloud) and Amazon S3 (Simple Storage System), Amazon Route 53 have been large successes.

\\n\\n

Some of Amazon’s recent acquisitions include Shopbop (2006), Abebooks (2008), Zappos (2009), LOVEFiLM (2011).

\\n\\n

As of Q1 2011, Amazon has approximately 137 million active customers worldwide. It was also reported that there are 2 million merchants selling on Amazon equaling a third of the total listings. North America currently represents 55.4% of sales with the other 44.6% in the International market.

', 'image': {'available_sizes': [[[150, 66], 'assets/images/resized/0000/3898/3898v1-max-150x150.jpg'], [[200, 89], 'assets/images/resized/0000/3898/3898v1-max-250x250.jpg'], [[200, 89], 'assets/images/resized/0000/3898/3898v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Amazon EC2', 'permalink': 'amazon-ec2'}, {'name': 'Amazon S3', 'permalink': 'amazon-s3'}, {'name': 'Amazon Mechanical Turk', 'permalink': 'mechanical-turk'}, {'name': 'Amazon Fresh', 'permalink': 'amazon-fresh'}, {'name': 'Amazon Kindle', 'permalink': 'amazon-kindle'}, {'name': 'Amazon Video on Demand', 'permalink': 'amazon-video-on-demand'}, {'name': 'Amazon Unbox', 'permalink': 'amazon-unbox'}, {'name': 'Amazon EBS', 'permalink': 'amazon-ebs'}, {'name': 'Amazon BookSurge', 'permalink': 'booksurge'}, {'name': 'Amazon Web Services', 'permalink': 'amazon-web-services'}, {'name': 'Amazon Kindle 2', 'permalink': 'kindle'}, {'name': 'Amazon Elastic MapReduce', 'permalink': 'amazon-elastic-mapreduce'}, {'name': 'Amazon Kindle DX', 'permalink': 'amazon-kindle-dx'}, {'name': 'Kindle for iPhone', 'permalink': 'kindle-for-iphone'}, {'name': 'Amazon Studios', 'permalink': 'amazon-studios'}, {'name': 'A2Z Development', 'permalink': 'a2z-development'}, {'name': 'A9.com', 'permalink': 'a9-com'}, {'name': 'Alexa Internet', 'permalink': 'alexa-internet'}, {'name': 'Audible.com', 'permalink': 'audible-com'}, {'name': 'IMDb', 'permalink': 'imdb'}, {'name': 'Lovefilm', 'permalink': 'lovefilm'}, {'name': 'Woot', 'permalink': 'woot'}, {'name': 'Quidsi', 'permalink': 'quidsi'}, {'name': 'Touchco', 'permalink': 'touchco'}, {'name': 'SnapTell', 'permalink': 'snaptell'}, {'name': 'Lexcycle', 'permalink': 'lexcycle'}, {'name': 'CustomFlix', 'permalink': 'customflix'}, {'name': 'Tastemakers', 'permalink': 'tastemakers'}, {'name': 'Shopbop', 'permalink': 'shopbop'}, {'name': 'Fabric.com', 'permalink': 'fabric-com'}, {'name': 'Without A Box', 'permalink': 'without-a-box'}, {'name': 'Mobipocket.com', 'permalink': 'mobipocket-com'}, {'name': 'BookSurge', 'permalink': 'booksurge-2'}, {'name': 'CDNOW', 'permalink': 'cdnow'}, {'name': 'Accept.com', 'permalink': 'accept-com'}, {'name': 'Alexa', 'permalink': 'alexa'}, {'name': 'Exchange.com', 'permalink': 'exchange-com'}, {'name': 'Bookpages', 'permalink': 'bookpages'}, {'name': 'Amazon Route 53', 'permalink': 'amazon-route-53'}, {'name': 'Kindle Fire', 'permalink': 'kindle-fire'}, {'name': 'Kindle Touch', 'permalink': 'kindle-touch'}], 'relationships': [{'is_past': False, 'title': 'Founder, President, CEO, & Chairman', 'person': {'first_name': 'Jeff', 'last_name': 'Bezos', 'permalink': 'jeff-bezos'}}, {'is_past': False, 'title': 'VP & CTO', 'person': {'first_name': 'Werner', 'last_name': 'Vogels', 'permalink': 'werner-vogels'}}, {'is_past': False, 'title': 'Senior Vice President and Chief Financial Officer', 'person': {'first_name': 'Thomas', 'last_name': 'Szkutak', 'permalink': 'thomas-szkutak'}}, {'is_past': False, 'title': 'Vice President, General Counsel and Secretary', 'person': {'first_name': 'David', 'last_name': 'A. Zapolsky', 'permalink': 'david-a-zapolsky'}}, {'is_past': False, 'title': 'Vice President, General Manager of the Amazon Marketplace', 'person': {'first_name': 'Peter', 'last_name': 'Faricy', 'permalink': 'peter-faricy'}}, {'is_past': False, 'title': 'Vice President, Global Payments Products', 'person': {'first_name': 'Maxwell', 'last_name': 'Bardon', 'permalink': 'maxwell-bardon'}}, {'is_past': False, 'title': 'VP, Digital Music', 'person': {'first_name': 'Steve', 'last_name': 'Boom', 'permalink': 'stevee-boom'}}, {'is_past': False, 'title': 'SVP, Consumer Business / Various Positions', 'person': {'first_name': 'Jeffrey', 'last_name': 'Wilke', 'permalink': 'jeffrey-wilke'}}, {'is_past': False, 'title': 'SVP, Seller Services', 'person': {'first_name': 'Sebastian', 'last_name': 'Gunningham', 'permalink': 'sebastian-gunningham'}}, {'is_past': False, 'title': 'VP, Website Application Platform', 'person': {'first_name': 'Colin', 'last_name': 'Bodell', 'permalink': 'colin-bodell'}}, {'is_past': False, 'title': 'SVP, Ecommerce Platform', 'person': {'first_name': 'H. Brian', 'last_name': 'Valentine', 'permalink': 'h-brian-valentine'}}, {'is_past': False, 'title': 'SVP, Worldwide Digital Media', 'person': {'first_name': 'Steven', 'last_name': 'Kessel', 'permalink': 'steven-kessel'}}, {'is_past': False, 'title': 'Senior Vice President, Business Development', 'person': {'first_name': 'Jeffrey', 'last_name': 'Blackburn', 'permalink': 'jeffrey-blackburn'}}, {'is_past': False, 'title': 'SVP, Web Services', 'person': {'first_name': 'Andrew', 'last_name': 'Jassy', 'permalink': 'andrew-jassy'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Tom', 'last_name': 'Alberg', 'permalink': 'tom-alberg'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bing', 'last_name': 'Gordon', 'permalink': 'bing-gordon'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Thomas O.', 'last_name': 'Ryder', 'permalink': 'thomas-o-ryder'}}, {'is_past': False, 'title': 'VP, Digital Music & Video', 'person': {'first_name': 'Bill', 'last_name': 'Carr', 'permalink': 'bill-carr'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Senior Manager, Traffic', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': False, 'title': 'Senior Technical Program Manager', 'person': {'first_name': 'Gareth', 'last_name': 'Jones', 'permalink': 'gareth-jones'}}, {'is_past': False, 'title': 'System Engineer', 'person': {'first_name': 'Manan', 'last_name': 'Kapadia', 'permalink': 'manan-kapadia'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Shaman', 'last_name': \"D'Souza\", 'permalink': 'shaman-dsouza'}}, {'is_past': False, 'title': 'Senior Product Manager, Search & Discovery', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': False, 'title': 'Software Engineer II', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': False, 'title': 'Product Manager - New Service Incubation', 'person': {'first_name': 'Sumit', 'last_name': 'Chugh', 'permalink': 'sumit-chugh'}}, {'is_past': False, 'title': 'Senior Product Manager', 'person': {'first_name': 'Kadir', 'last_name': 'Rathnavelu', 'permalink': 'kadir-rathnavelu'}}, {'is_past': False, 'title': 'UI Designer', 'person': {'first_name': 'Marcos', 'last_name': 'Moralez', 'permalink': 'marcos-moralez'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Yoonie', 'last_name': 'Kim', 'permalink': 'yoonie-kim'}}, {'is_past': False, 'title': 'Customer Experience Strategy', 'person': {'first_name': 'Tac', 'last_name': 'Anderson', 'permalink': 'tac-anderson'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Papa', 'permalink': 'joseph-papa'}}, {'is_past': False, 'title': 'Director, Business Development', 'person': {'first_name': 'Young', 'last_name': 'Lee', 'permalink': 'young-lee'}}, {'is_past': False, 'title': 'Head of Worldwide Brand and Mass Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Donkin', 'permalink': 'andy-donkin'}}, {'is_past': False, 'title': 'Head of Display Advertising', 'person': {'first_name': 'Tom', 'last_name': 'Wilson', 'permalink': 'tom-wilson'}}, {'is_past': False, 'title': 'Sr. Product Manager, Amazon Global Payments', 'person': {'first_name': 'Andy', 'last_name': 'Kleitsch', 'permalink': 'andy-kleitsch'}}, {'is_past': False, 'title': 'AWS Business Development', 'person': {'first_name': 'Pieter', 'last_name': 'Kemps', 'permalink': 'pieter-kemps'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jeremy', 'last_name': 'Przasnyski', 'permalink': 'jeremy-przasnyski'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Mikhail', 'last_name': 'Levkovsky', 'permalink': 'mikhail-levkovsky'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jamie', 'last_name': 'S. Gorelick', 'permalink': 'jamie-s-gorelick'}}, {'is_past': False, 'title': 'Team Member', 'person': {'first_name': 'Avinash', 'last_name': 'Cavale', 'permalink': 'avinash-cavale'}}, {'is_past': False, 'title': 'Technical Program Manager', 'person': {'first_name': 'Kieran Seán', 'last_name': 'Fitzpatrick', 'permalink': 'kieran-sen-fitzpatrick'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Paik', 'permalink': 'dan-paik'}}, {'is_past': False, 'title': 'SVP, International Consumer Business', 'person': {'first_name': 'Diego', 'last_name': 'Piacentini', 'permalink': 'diego-piacentini'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'John Seely', 'last_name': 'Brown', 'permalink': 'john-seely-brown'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Myrtle S.', 'last_name': 'Potter', 'permalink': 'myrtle-s-potter'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Patricia Q.', 'last_name': 'Stonesifer', 'permalink': 'patricia-q-stonesifer'}}, {'is_past': False, 'title': 'VP, Wordwide Controller & Principal Accounting Officer', 'person': {'first_name': 'Shelley', 'last_name': 'Reynolds', 'permalink': 'shelley-reynolds'}}, {'is_past': False, 'title': 'General Manager, Amazon Product Ads', 'person': {'first_name': 'Joe', 'last_name': 'Walowski', 'permalink': 'joe-walowski'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Anuvrat', 'last_name': 'Singh', 'permalink': 'anuvrat-singh'}}, {'is_past': False, 'title': 'Managing Director, Amazon.co.uk', 'person': {'first_name': 'Christopher', 'last_name': 'North', 'permalink': 'christopher-north'}}, {'is_past': False, 'title': 'Development Manager', 'person': {'first_name': 'Anuj', 'last_name': 'Mathur', 'permalink': 'anuj-mathur-2'}}, {'is_past': False, 'title': 'Software Development Engineer II', 'person': {'first_name': 'Desmond', 'last_name': 'Zhou', 'permalink': 'desmond-zhou'}}, {'is_past': False, 'title': 'Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Stover', 'permalink': 'michael-stover'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'pankaj', 'last_name': 'kumar', 'permalink': 'pankaj-kumar-3'}}, {'is_past': False, 'title': 'Senior Product Manager--Core Transaction Processing, GPS', 'person': {'first_name': 'Leah', 'last_name': 'Farmer', 'permalink': 'leah-farmer'}}, {'is_past': False, 'title': 'Senior Product Manager Intern', 'person': {'first_name': 'Brian', 'last_name': 'Radmin', 'permalink': 'brian-radmin'}}, {'is_past': False, 'title': 'VP, Digital Store Platform', 'person': {'first_name': 'Colin', 'last_name': 'Bodell', 'permalink': 'colin-bodell'}}, {'is_past': False, 'title': 'Director, Kindle', 'person': {'first_name': 'Tim', 'last_name': 'Twerdahl', 'permalink': 'tim-twerdahl'}}, {'is_past': False, 'title': 'Director Software Development', 'person': {'first_name': 'Bob', 'last_name': 'Tekiela', 'permalink': 'bob-tekiela'}}, {'is_past': False, 'title': 'SDEII - Search & Discovery', 'person': {'first_name': 'Marcello', 'last_name': 'Oliva', 'permalink': 'marcello-oliva'}}, {'is_past': False, 'title': 'Head of Engineering, New AWS Service', 'person': {'first_name': 'Kevin', 'last_name': 'Gillett', 'permalink': 'kevin-gillett'}}, {'is_past': False, 'title': 'Advertising Sales Director', 'person': {'first_name': 'Jamie', 'last_name': 'Lomas', 'permalink': 'jamie-lomas'}}, {'is_past': False, 'title': 'Director, Mobile Advertising', 'person': {'first_name': 'Matt', 'last_name': 'Carr', 'permalink': 'matt-carr'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Brandon', 'last_name': 'Watson', 'permalink': 'brandon-watson'}}, {'is_past': False, 'title': 'Software Development Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Henson', 'permalink': 'jonathan-henson'}}, {'is_past': False, 'title': 'Director Compute Engineering', 'person': {'first_name': 'Chris', 'last_name': 'Pettey', 'permalink': 'chris-pettey-2'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Alain', 'last_name': 'Monie', 'permalink': 'alain-monie'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jonathan', 'last_name': 'Rubinstein', 'permalink': 'jonathan-rubinstein'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Charles', 'last_name': 'Groom', 'permalink': 'charles-groom'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Supriyo', 'last_name': 'Roy', 'permalink': 'supriyo-roy'}}, {'is_past': False, 'title': 'Software Development Manager', 'person': {'first_name': 'Dan', 'last_name': 'Paik', 'permalink': 'dan-paik'}}, {'is_past': True, 'title': 'Co - Founder / CEO (Incubator Inc.)', 'person': {'first_name': 'Thorne', 'last_name': 'Sparkman', 'permalink': 'thorne-sparkman'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Warren', 'last_name': 'C. Jenson', 'permalink': 'warren-c-jenson'}}, {'is_past': True, 'title': 'VP-Finance (CFO), Digital Media & Books', 'person': {'first_name': 'Craig', 'last_name': 'Calle', 'permalink': 'craig-calle'}}, {'is_past': True, 'title': 'VP/CFO - NA Retail', 'person': {'first_name': 'David', 'last_name': 'Stephenson', 'permalink': 'david-stephenson'}}, {'is_past': True, 'title': 'CCO - Alexa Internet', 'person': {'first_name': 'Ronna', 'last_name': 'Tanenbaum', 'permalink': 'ronna-tanenbaum'}}, {'is_past': True, 'title': 'CFO, International', 'person': {'first_name': 'Jason', 'last_name': 'Child', 'permalink': 'jason-child'}}, {'is_past': True, 'title': 'SVP and CAO', 'person': {'first_name': 'Mark', 'last_name': 'Peek', 'permalink': 'mark-peek'}}, {'is_past': True, 'title': 'SVP and CIO', 'person': {'first_name': 'Richard', 'last_name': 'Dalzell', 'permalink': 'richard-dalzell'}}, {'is_past': True, 'title': 'VP / MD - UK & French Businesses', 'person': {'first_name': 'Robin', 'last_name': 'Terrell', 'permalink': 'robin-terrell'}}, {'is_past': True, 'title': 'VP, Digital Video', 'person': {'first_name': 'Anthony', 'last_name': 'Bay', 'permalink': 'anthony-bay'}}, {'is_past': True, 'title': 'Global VP Customer Service', 'person': {'first_name': 'Bill', 'last_name': 'Price', 'permalink': 'bill-price-4'}}, {'is_past': True, 'title': 'VP, WorldWide Traffic', 'person': {'first_name': 'Satbir', 'last_name': 'Khanuja', 'permalink': 'satbir-khanuja'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Daniel', 'last_name': 'Shader', 'permalink': 'daniel-shader'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Rakesh', 'last_name': 'Mathur', 'permalink': 'rakesh-mathur'}}, {'is_past': True, 'title': 'Vice President (GM) of Merchant and Developer Payments offerings', 'person': {'first_name': 'Kumar', 'last_name': 'Srinivasan', 'permalink': 'kumar-srinivasan-2'}}, {'is_past': True, 'title': 'VP Supply Chain, Digital,,,VP Toys & Baby', 'person': {'first_name': 'Mark', 'last_name': 'Randall', 'permalink': 'mark-randall'}}, {'is_past': True, 'title': 'SVP, Worldwide Services and Sales', 'person': {'first_name': 'Mark', 'last_name': 'Britto', 'permalink': 'mark-britto'}}, {'is_past': True, 'title': 'VP, Media - UK', 'person': {'first_name': 'Christopher', 'last_name': 'North', 'permalink': 'christopher-north'}}, {'is_past': True, 'title': 'VP, Finance', 'person': {'first_name': 'Shelley', 'last_name': 'Reynolds', 'permalink': 'shelley-reynolds'}}, {'is_past': True, 'title': 'VP, Digital Media', 'person': {'first_name': 'Steven', 'last_name': 'Kessel', 'permalink': 'steven-kessel'}}, {'is_past': True, 'title': 'Vice President, Europe', 'person': {'first_name': 'Thomas', 'last_name': 'Lot', 'permalink': 'thomas-lot'}}, {'is_past': True, 'title': 'Vice President of Strategic Communications, Content and Entertainment Initiatives', 'person': {'first_name': 'Kathy', 'last_name': 'Savitt', 'permalink': 'kathy-savitt'}}, {'is_past': True, 'title': 'VP/GM', 'person': {'first_name': 'Danny', 'last_name': 'Shader', 'permalink': 'danny-shader'}}, {'is_past': True, 'title': 'VP, Alexa Research', 'person': {'first_name': 'Matthew', 'last_name': 'Work', 'permalink': 'matthew-work'}}, {'is_past': True, 'title': 'SVP Europe', 'person': {'first_name': 'Simon', 'last_name': 'Murdoch', 'permalink': 'simon-murdoch'}}, {'is_past': True, 'title': 'Vice President of Worldwide Business and Corporate Development', 'person': {'first_name': 'Owen', 'last_name': 'Van Natta', 'permalink': 'owen-van-natta'}}, {'is_past': True, 'title': 'VP, Technology', 'person': {'first_name': 'Neil', 'last_name': 'Roseman', 'permalink': 'neil-roseman'}}, {'is_past': True, 'title': 'SVP, General Counsel, Secretary', 'person': {'first_name': 'L. Michelle', 'last_name': 'Wilson', 'permalink': 'l-michelle-wilson'}}, {'is_past': True, 'title': 'SVP, Worldwide Operations', 'person': {'first_name': 'Marc', 'last_name': 'Onetto', 'permalink': 'marc-onetto'}}, {'is_past': True, 'title': 'SVP, North America Retail', 'person': {'first_name': 'Jeffrey', 'last_name': 'Wilke', 'permalink': 'jeffrey-wilke'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Avichal', 'last_name': 'Garg', 'permalink': 'avichal-garg'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Kveton', 'permalink': 'scott-kveton'}}, {'is_past': True, 'title': 'General Manager - Worldwide Retail', 'person': {'first_name': 'Keith', 'last_name': 'Schorsch', 'permalink': 'keith-schorsch'}}, {'is_past': True, 'title': 'Business Director for Amazon Web Services', 'person': {'first_name': 'Martin', 'last_name': 'Buhr', 'permalink': 'martin-buhr'}}, {'is_past': True, 'title': 'Founding Member / Software Development Engineer / Mgr', 'person': {'first_name': 'Christopher', 'last_name': 'Brown', 'permalink': 'christopher-brown'}}, {'is_past': True, 'title': 'Web Development Engineer', 'person': {'first_name': 'Allyn', 'last_name': 'Alford', 'permalink': 'allyn-alford'}}, {'is_past': True, 'title': 'Manager, Social Applications', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Ian', 'last_name': 'Sefferman', 'permalink': 'ian-sefferman'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development', 'person': {'first_name': 'Young', 'last_name': 'Lee', 'permalink': 'young-lee'}}, {'is_past': True, 'title': 'Technical Lead', 'person': {'first_name': 'Kushal', 'last_name': 'Chakrabarti', 'permalink': 'kushal-chakrabarti'}}, {'is_past': True, 'title': 'Software Development Engineer Intern', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'SDE', 'person': {'first_name': 'Leo', 'last_name': 'Shklovskii', 'permalink': 'leo-shklovskii'}}, {'is_past': True, 'title': 'Sr. Product Manger, Mechanical Turk', 'person': {'first_name': 'Natala', 'last_name': 'Menezes', 'permalink': 'natala-menezes'}}, {'is_past': True, 'title': 'General Manager, Web Store', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Community And Cross Merchandising', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Baris', 'last_name': 'Cetinok', 'permalink': 'baris-cetinok'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Varun', 'last_name': 'Aggarwal', 'permalink': 'varun-aggarwal'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Alan', 'last_name': 'McConnell', 'permalink': 'alan-mcconnell'}}, {'is_past': True, 'title': 'Senior Manager, Gifting', 'person': {'first_name': 'Ian', 'last_name': 'McAllister', 'permalink': 'ian-mcallister'}}, {'is_past': True, 'title': 'Marketing Specialist', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andrew', 'last_name': 'Crawford', 'permalink': 'andrew-crawford'}}, {'is_past': True, 'title': 'Engineering Director', 'person': {'first_name': 'Rajeev', 'last_name': 'Dujari', 'permalink': 'rajeev-dujari'}}, {'is_past': True, 'title': 'Senior Technical Architect', 'person': {'first_name': 'Christian', 'last_name': 'Ricci', 'permalink': 'christian-ricci'}}, {'is_past': True, 'title': 'Technical Program Manager', 'person': {'first_name': 'Mehmet Ali', 'last_name': 'Elicin', 'permalink': 'mehmet-ali-elicin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Junius', 'last_name': 'Gunaratne', 'permalink': 'junius-gunaratne'}}, {'is_past': True, 'title': 'Senior Manager, Senior Product and Alliance Manager, Product Manager, Business Intelligence Analyst', 'person': {'first_name': 'Mike', 'last_name': 'Sha', 'permalink': 'mike-sha'}}, {'is_past': True, 'title': 'Finance Business Analyst', 'person': {'first_name': 'Michael Jurgen', 'last_name': 'Garbade', 'permalink': 'michael-jurgen-garbade'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Paulson', 'permalink': 'michael-paulson'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Can', 'last_name': 'Comertoglu', 'permalink': 'can-comertoglu'}}, {'is_past': True, 'title': 'Dir. Engineering', 'person': {'first_name': 'Sky', 'last_name': 'Kruse', 'permalink': 'sky-kruse'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Sundeep', 'last_name': 'Katasani', 'permalink': 'sundeep-katasani'}}, {'is_past': True, 'title': 'SDE Intern', 'person': {'first_name': 'Thien', 'last_name': 'Nguyen', 'permalink': 'thien-nguyen'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development for Kindle Periodicals', 'person': {'first_name': 'Gary', 'last_name': 'Clarke', 'permalink': 'gary-clarke'}}, {'is_past': True, 'title': 'Director- General Manager', 'person': {'first_name': 'Jason', 'last_name': 'Goldberger', 'permalink': 'jason-goldberger'}}, {'is_past': True, 'title': 'General Manager, Customer Services', 'person': {'first_name': 'Emmanuel', 'last_name': 'Seigner', 'permalink': 'emmanuel-seigner'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Werner', 'last_name': 'Koepf', 'permalink': 'werner-koepf'}}, {'is_past': True, 'title': 'Director, Retail Media', 'person': {'first_name': 'Bill', 'last_name': 'Carr', 'permalink': 'bill-carr'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Lloyd', 'last_name': 'Ho', 'permalink': 'lloyd-ho'}}, {'is_past': True, 'title': 'Center Store Grocery & Beverage Buyer', 'person': {'first_name': 'Dini', 'last_name': 'Rao', 'permalink': 'dini-rao'}}, {'is_past': True, 'title': 'Head of Business Development - Digital Media / Senior Manager - Vendor Management', 'person': {'first_name': 'Genevieve', 'last_name': 'Kunst', 'permalink': 'genevieve-kunst'}}, {'is_past': True, 'title': 'Senior Manager - Software and Video Games', 'person': {'first_name': 'Ben', 'last_name': 'Slutter', 'permalink': 'ben-slutter'}}, {'is_past': True, 'title': 'PR Manager', 'person': {'first_name': 'Stephanie', 'last_name': 'Robinett', 'permalink': 'stephanie-robinett'}}, {'is_past': True, 'title': 'Product Manager - Launch Team, Amazon Intstant Video', 'person': {'first_name': 'Nadim', 'last_name': 'Hossain', 'permalink': 'nadim-hossain'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Victoria', 'last_name': 'Treyger', 'permalink': 'victoria-treyger-2'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Scott', 'last_name': 'Ruthfield', 'permalink': 'scott-ruthfield'}}, {'is_past': True, 'title': 'Business Development Manager', 'person': {'first_name': 'Sukhinder', 'last_name': 'Singh Cassidy', 'permalink': 'sukhinder-singh-cassidy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Sujayath', 'last_name': 'Ali', 'permalink': 'sujayath-ali'}}, {'is_past': True, 'title': 'Fulfillment Optimization SDE', 'person': {'first_name': 'Apoorva', 'last_name': 'Mehta', 'permalink': 'apoorva-mehta'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Devesh', 'last_name': 'Khare', 'permalink': 'devesh-khare'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Product Manager, MBA Program', 'person': {'first_name': 'Ben', 'last_name': 'Zhuk', 'permalink': 'ben-zhuk'}}, {'is_past': True, 'title': 'Senior Manager, Home & Kitchen div.', 'person': {'first_name': 'Naofumi', 'last_name': 'Iwai', 'permalink': 'naofumi-iwai'}}, {'is_past': True, 'title': 'General Manager - Computers/Office/Software', 'person': {'first_name': 'Matt', 'last_name': 'Lynch', 'permalink': 'matt-lynch'}}, {'is_past': True, 'title': 'Sr. Manager, Product Management', 'person': {'first_name': 'Alexander', 'last_name': 'Castro', 'permalink': 'alexander-castro'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Matt', 'last_name': 'Battles', 'permalink': 'matt-battles'}}, {'is_past': True, 'title': 'Director of Corporate Communications', 'person': {'first_name': 'James', 'last_name': 'A. Pearson', 'permalink': 'james-a-pearson'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Satish', 'last_name': 'Ramaswamy', 'permalink': 'satish-ramaswamy'}}, {'is_past': True, 'title': 'Senior Software Engineer, Personalization Team', 'person': {'first_name': 'Saurabh', 'last_name': 'Nangia', 'permalink': 'saurabh-nangia'}}, {'is_past': True, 'title': 'Worldwide Corporate Development', 'person': {'first_name': 'Rajeev', 'last_name': 'Dham', 'permalink': 'rajeev-dham'}}, {'is_past': True, 'title': 'Sr. Manager, Operations Finance', 'person': {'first_name': 'Mak', 'last_name': 'Azadi', 'permalink': 'mak-azadi'}}, {'is_past': True, 'title': 'Director Market Development', 'person': {'first_name': 'Ilan', 'last_name': 'Sehayek', 'permalink': 'ilan-sehayek'}}, {'is_past': True, 'title': 'Software Design Engineer - Amazon Web Services', 'person': {'first_name': 'Eli', 'last_name': 'Aleyner', 'permalink': 'eli-aleyner'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Ashish', 'last_name': 'Gupta', 'permalink': 'ashish-gupta'}}, {'is_past': True, 'title': 'Director, Ordering', 'person': {'first_name': 'Vijay', 'last_name': 'Ravindran', 'permalink': 'vijay-ravindran'}}, {'is_past': True, 'title': 'Director, Amazon Services UK', 'person': {'first_name': 'Matt', 'last_name': 'Henderson', 'permalink': 'matt-henderson'}}, {'is_past': True, 'title': 'Senior Executive', 'person': {'first_name': 'Keith', 'last_name': 'Schorsch', 'permalink': 'keith-schorsch-2'}}, {'is_past': True, 'title': 'MD - UK', 'person': {'first_name': 'Brian', 'last_name': 'McBride', 'permalink': 'brian-mcbride'}}, {'is_past': True, 'title': 'Executive', 'person': {'first_name': 'Parthesh', 'last_name': 'Shastri', 'permalink': 'parthesh-shastri'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Guarav', 'last_name': 'Oberoi', 'permalink': 'guarav-oberoi'}}, {'is_past': True, 'title': 'Critical Teams Supporting the Kindle Content Store', 'person': {'first_name': 'Sriram', 'last_name': 'Panchanathan', 'permalink': 'sriram-panchanathan'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Senior Software Development Engineer', 'person': {'first_name': 'Piragash', 'last_name': 'Velummylum', 'permalink': 'piragash-velummylum'}}, {'is_past': True, 'title': 'Head, eCommerce, UX & Cloud Scaling', 'person': {'first_name': 'Hong', 'last_name': 'Bui', 'permalink': 'hong-bui'}}, {'is_past': True, 'title': 'Product Lead', 'person': {'first_name': 'Ekta', 'last_name': 'Mittal', 'permalink': 'ekta-mittal'}}, {'is_past': True, 'title': \"Member of Amazon's Developer Advisory Council\", 'person': {'first_name': 'Gervase', 'last_name': 'Clifton-Bligh', 'permalink': 'gervase-clifton-bligh'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': True, 'title': 'Director Product Development', 'person': {'first_name': 'Dave', 'last_name': 'Schappell', 'permalink': 'dave-schappell'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Barnaby', 'last_name': 'Dorfman', 'permalink': 'barnaby-dorfman'}}, {'is_past': True, 'title': 'Financial Systems Manager', 'person': {'first_name': 'Phil', 'last_name': 'Sabin', 'permalink': 'phil-sabin'}}, {'is_past': True, 'title': 'Master of Disaster', 'person': {'first_name': 'Jesse', 'last_name': 'Robbins', 'permalink': 'jesse-robbins'}}, {'is_past': True, 'title': 'fddd', 'person': {'first_name': 'Katie', 'last_name': 'Geminder', 'permalink': 'katie-geminder'}}, {'is_past': True, 'title': 'Director, Media Technologies', 'person': {'first_name': 'H.B.', 'last_name': 'Siegel', 'permalink': 'h-b-siegel'}}, {'is_past': True, 'title': 'Senior Manager', 'person': {'first_name': 'Vikas', 'last_name': 'Gupta', 'permalink': 'vikas-gupta'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Joe', 'last_name': 'Goldberg', 'permalink': 'joe-goldberg'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Itamar', 'last_name': 'Lesuisse', 'permalink': 'itamar-lesuisse'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'Operations Director', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Keela', 'last_name': 'Robison', 'permalink': 'keela-robison'}}, {'is_past': True, 'title': 'General Manager, Consumer Payments', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Tech Alliances', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director, Auctions', 'person': {'first_name': 'Matt', 'last_name': 'Williams', 'permalink': 'matt-williams-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Baris', 'last_name': 'Cetinok', 'permalink': 'baris-cetinok'}}, {'is_past': True, 'title': 'Developer', 'person': {'first_name': 'Buster', 'last_name': 'Benson', 'permalink': 'buster-benson'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Phil', 'last_name': 'Askey', 'permalink': 'phil-askey'}}, {'is_past': True, 'title': 'Senior Principal', 'person': {'first_name': 'Navin', 'last_name': 'Budhiraja', 'permalink': 'navin-budhiraja'}}, {'is_past': True, 'title': 'Sr. Manager, User Experience & Design', 'person': {'first_name': 'Michael', 'last_name': 'Brown', 'permalink': 'michael-brown-3'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Florian', 'last_name': 'Laplantif', 'permalink': 'florian-laplantif'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Gil', 'last_name': 'Sheinfeld', 'permalink': 'gil-sheinfeld'}}, {'is_past': True, 'title': 'Director of Technology', 'person': {'first_name': 'Anand', 'last_name': 'Rajaraman', 'permalink': 'anand-rajaraman'}}, {'is_past': True, 'title': 'Product', 'person': {'first_name': 'Nathan', 'last_name': 'Lasche', 'permalink': 'nathan-lasche'}}, {'is_past': True, 'title': 'Manager, Consumer Behavior Research', 'person': {'first_name': 'David', 'last_name': 'Selinger', 'permalink': 'david-selinger'}}, {'is_past': True, 'title': 'Finance - Special Projects', 'person': {'first_name': 'Anand', 'last_name': 'Rajaratnam', 'permalink': 'anand-rajaratnam'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Vivek', 'last_name': 'Ravisankar', 'permalink': 'vivek-ravisankar'}}, {'is_past': True, 'title': 'Sr Dev Mgr, Amazon Mobile', 'person': {'first_name': 'Jason', 'last_name': 'McMahon', 'permalink': 'jason-mcmahon'}}, {'is_past': True, 'title': 'Manager III, Software Dev. / Mobile Software Product Manager', 'person': {'first_name': 'Leo', 'last_name': 'Chen', 'permalink': 'leo-chen'}}, {'is_past': True, 'title': 'Software Development Engineer Intern', 'person': {'first_name': 'Peter', 'last_name': 'Hamilton', 'permalink': 'peter-hamilton-2'}}, {'is_past': True, 'title': 'Senior Manager, eCommerce Marketplace PaaS', 'person': {'first_name': 'Steve', 'last_name': 'Grigory', 'permalink': 'steve-grigory'}}, {'is_past': True, 'title': 'Various Role', 'person': {'first_name': 'Jim', 'last_name': 'Kingsbury', 'permalink': 'jim-kingsbury'}}, {'is_past': True, 'title': 'Principal Product Manager', 'person': {'first_name': 'Balaji', 'last_name': 'Ravindran', 'permalink': 'balaji-ravindran-2'}}, {'is_past': True, 'title': 'Software development engineer', 'person': {'first_name': 'Rajesh', 'last_name': 'shanmugam', 'permalink': 'rajesh-shanmugam'}}, {'is_past': True, 'title': 'Online Advertising Manager', 'person': {'first_name': 'Chieu', 'last_name': 'Cao', 'permalink': 'chieu-cao'}}, {'is_past': True, 'title': 'Product Development & Operations', 'person': {'first_name': 'Jeffrey', 'last_name': 'Blackburn', 'permalink': 'jeffrey-blackburn'}}, {'is_past': True, 'title': 'Director, Fulfillment by Amazon', 'person': {'first_name': 'Joe', 'last_name': 'Walowski', 'permalink': 'joe-walowski'}}, {'is_past': True, 'title': 'Principal, Product Management', 'person': {'first_name': 'Ray', 'last_name': 'Bradford', 'permalink': 'ray-bradford'}}, {'is_past': True, 'title': 'Sr. Financial Analyst / Product Manager', 'person': {'first_name': 'Adam', 'last_name': 'Medros', 'permalink': 'adam-medros'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Nanda', 'last_name': 'Kishore', 'permalink': 'nanda-kishore'}}, {'is_past': True, 'title': 'Project Manager, Customer Service', 'person': {'first_name': 'Jen', 'last_name': 'Burton', 'permalink': 'jen-burton'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Laura', 'last_name': 'Lindhe', 'permalink': 'laura-lindhe'}}, {'is_past': True, 'title': 'Director, Demand Generation', 'person': {'first_name': 'Sam', 'last_name': 'Wheeler', 'permalink': 'sam-wheeler-3'}}, {'is_past': True, 'title': 'operations and then services manager', 'person': {'first_name': 'Fern', 'last_name': 'O’Sullivan', 'permalink': 'fern-osullivan'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Doug', 'last_name': 'Pepper', 'permalink': 'doug-pepper'}}, {'is_past': True, 'title': 'Various Roles in the Finance Departments', 'person': {'first_name': 'Lance', 'last_name': 'A. Soliday', 'permalink': 'lance-a-soliday'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Mike', 'last_name': 'Wann', 'permalink': 'mike-wann'}}, {'is_past': True, 'title': 'Director Corporate Development', 'person': {'first_name': 'Rikki', 'last_name': 'Tahta', 'permalink': 'rikki-tahta'}}, {'is_past': True, 'title': 'Test Engineering', 'person': {'first_name': 'Jayashri', 'last_name': 'Padmanabhan', 'permalink': 'jayashri-padmanabhan'}}, {'is_past': True, 'title': 'Senior Engineer/Manager', 'person': {'first_name': 'Geoffrey', 'last_name': 'Grauer', 'permalink': 'geoffrey-grauer'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Rick', 'last_name': 'Osterloh', 'permalink': 'rick-osterloh'}}, {'is_past': True, 'title': 'Website Experimentation Intern', 'person': {'first_name': 'Rick', 'last_name': 'Fulton', 'permalink': 'rick-fulton'}}, {'is_past': True, 'title': 'WW Business Development, Kindle Development Kit', 'person': {'first_name': 'Andrea', 'last_name': 'Moro', 'permalink': 'andrea-moro'}}, {'is_past': True, 'title': 'Boards of Director', 'person': {'first_name': 'Myrtle S.', 'last_name': 'Potter', 'permalink': 'myrtle-s-potter'}}, {'is_past': True, 'title': 'Director, Search & Navigation', 'person': {'first_name': 'Bill', 'last_name': 'Stasior', 'permalink': 'bill-stasior'}}, {'is_past': True, 'title': 'Senior Product Manager (Kindle)', 'person': {'first_name': 'Julie', 'last_name': 'Sandler', 'permalink': 'julie-sandler'}}, {'is_past': True, 'title': 'Software Engineer III', 'person': {'first_name': 'Ryan', 'last_name': 'Rawson', 'permalink': 'ryan-rawson'}}, {'is_past': True, 'title': 'Software Engineering Intern, Detail Page Performance Team Amazon.com', 'person': {'first_name': 'Saurabh', 'last_name': 'Nangia', 'permalink': 'saurabh-nangia'}}, {'is_past': True, 'title': 'Senior Manager, Product Management – Global Payments Product Group', 'person': {'first_name': 'William', 'last_name': '(Bill) Pittman', 'permalink': 'william-bill-pittman'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Prabuddha', 'last_name': 'Biswas', 'permalink': 'prabuddha-biswas'}}, {'is_past': True, 'title': 'Director, Amazon Search Traffic', 'person': {'first_name': 'Gary', 'last_name': 'Cowan', 'permalink': 'gary-cowan'}}, {'is_past': True, 'title': 'Product Marketing Manager', 'person': {'first_name': 'Mukund', 'last_name': 'Ramaratnam', 'permalink': 'mukund-ramaratnam'}}, {'is_past': True, 'title': 'Director of Amazon Newsstand, Director of Kindle Store, Director of Product Management - Kindle Content and Services', 'person': {'first_name': 'Sean', 'last_name': 'Gorman', 'permalink': 'sean-gorman'}}, {'is_past': True, 'title': 'Finance Director', 'person': {'first_name': 'Ryan', 'last_name': 'Regan', 'permalink': 'ryan-regan'}}, {'is_past': True, 'title': 'Sr. Product Manager, Photos', 'person': {'first_name': 'C.Y.', 'last_name': 'Lee', 'permalink': 'c-y-lee'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Venky', 'last_name': 'Harinarayan', 'permalink': 'venky-harinarayan'}}, {'is_past': True, 'title': 'Financial Analyst', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Florian', 'last_name': 'Brody', 'permalink': 'florian-brody'}}, {'is_past': True, 'title': 'Senior Software Engineer, Senior Program Manager', 'person': {'first_name': 'Ward W.', 'last_name': 'Vuillemot', 'permalink': 'ward-w-vuillemot'}}, {'is_past': True, 'title': 'General Manager - Health and Personal Care', 'person': {'first_name': 'Spencer', 'last_name': 'Millerberg', 'permalink': 'spencer-millerberg'}}, {'is_past': True, 'title': 'Software Development Manager, Photos', 'person': {'first_name': 'Piragash', 'last_name': 'Velummylum', 'permalink': 'piragash-velummylum'}}, {'is_past': True, 'title': 'Software Development Engineer', 'person': {'first_name': 'Jordan', 'last_name': 'Timmermann', 'permalink': 'jordan-timmermann'}}, {'is_past': True, 'title': 'Engineering Lead', 'person': {'first_name': 'Jon', 'last_name': 'Jenkins', 'permalink': 'jon-jenkins'}}, {'is_past': True, 'title': 'Managing Teams', 'person': {'first_name': 'Ken', 'last_name': 'MacKenzie', 'permalink': 'ken-mackenzie'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Doug', 'last_name': 'Schulze', 'permalink': 'doug-schulze'}}], 'competitions': [{'competitor': {'name': 'eMusic', 'permalink': 'emusic'}}, {'competitor': {'name': 'PowerReviews', 'permalink': 'powerreviews'}}, {'competitor': {'name': 'Bazaarvoice', 'permalink': 'bazaarvoice'}}, {'competitor': {'name': 'Vudu', 'permalink': 'vudu'}}, {'competitor': {'name': 'Sazze', 'permalink': 'sazze'}}, {'competitor': {'name': 'Epinions', 'permalink': 'epinions'}}, {'competitor': {'name': 'Infibeam', 'permalink': 'infibeam'}}, {'competitor': {'name': 'Elastra', 'permalink': 'elastra'}}, {'competitor': {'name': 'Netflix', 'permalink': 'netflix'}}, {'competitor': {'name': 'MyFab', 'permalink': 'myfab'}}, {'competitor': {'name': 'MUBI', 'permalink': 'mubi'}}, {'competitor': {'name': 'GoGrid', 'permalink': 'gogrid'}}, {'competitor': {'name': 'Ziippi', 'permalink': 'ziippi'}}, {'competitor': {'name': 'Alice.com', 'permalink': 'alice-com'}}, {'competitor': {'name': 'Pronto', 'permalink': 'pronto-com'}}, {'competitor': {'name': 'Rakuten', 'permalink': 'rakuten'}}, {'competitor': {'name': 'Equallo', 'permalink': 'equallo'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Simple IT', 'permalink': 'simple-it'}}], 'total_money_raised': '$8M', 'funding_rounds': [{'id': 24535, 'round_code': 'a', 'source_url': 'http://money.cnn.com/magazines/fortune/fortune_archive/1998/10/26/250008/index.htm', 'source_description': \"Inside the Silicon Valley Money Machine KLEINER PERKINS FUNDED AOL, AMAZON, SUN, AND NETSCAPE. HERE'S HOW TECH'S MOST POWERFUL FINANCIERS WORK, PLUS THE SECRETS THEY DON'T WANT YOU TO KNOW.\", 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 1995, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Kleiner Perkins Caufield & Byers', 'permalink': 'kleiner-perkins-caufield-byers'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': 'http://www.techcrunch.com/?p=23', 'source_description': 'Profile: Del.icio.us', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2005, 'funded_month': 4, 'funded_day': 1, 'company': {'name': 'delicious', 'permalink': 'delicious'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.wikia.com/wiki/About_Wikia', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 12, 'funded_day': 1, 'company': {'name': 'Wikia', 'permalink': 'wikia'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/08/05/amiestreetcom-closes-series-a-financing-led-by-amazoncom/', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 8, 'funded_day': 1, 'company': {'name': 'Amie Street', 'permalink': 'amiestreet'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2007/02/25/amazon-invests-in-shelfari/', 'source_description': 'TechCrunch', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.techcrunch.com/2007/12/11/amazon-invests-in-bill-me-later/', 'source_description': 'TechCrunch article', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 12, 'funded_day': None, 'company': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://brainspl.at/articles/2008/07/14/engine-yard-takes-15mill-series-b-round-from-nea-amazon-and-benchmark', 'source_description': 'Engine Yard takes $15mill Series B Round from NEA, Amazon and Benchmark', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 7, 'funded_day': 13, 'company': {'name': 'Engine Yard', 'permalink': 'engineyard'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.elastra.com/about/2008/08/05/elastra-closes-12-million-in-series-b-financing/', 'source_description': 'ELASTRA Closes $12 Million In Series B Financing', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Elastra', 'permalink': 'elastra'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.paidcontent.org/entry/419-amazon-invests-in-online-ad-optimization-firm-yieldex/', 'source_description': 'Amazon Invests In Online Ad Optimization Firm Yieldex', 'raised_amount': 8500000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 2, 'funded_day': 18, 'company': {'name': 'Yieldex', 'permalink': 'yieldex'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.paidcontent.org/entry/419-amazon-takes-equity-stake-in-diy-shopping-site-the-talk-market/', 'source_description': 'Paid Content', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 6, 'funded_day': 12, 'company': {'name': 'The Talk Market', 'permalink': 'the-talk-market'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.paidcontent.org/entry/419-booktour-raises-350000-in-seed-capital-from-amazon/', 'source_description': 'BookTour Raises $350,000 From Amazon', 'raised_amount': 350000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 17, 'company': {'name': 'BookTour', 'permalink': 'booktour'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.techcrunch.com/2009/04/22/foodista-raises-550000-from-amazon-and-other-angels/', 'source_description': 'TechCrunch', 'raised_amount': 550000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 4, 'funded_day': 16, 'company': {'name': 'Foodista', 'permalink': 'foodista'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2009/06/17/animoto-is-already-cash-flow-positive-but-raises-another-round-to-go-to-11/', 'source_description': 'Animoto Is Already Cash-Flow Positive, Raises Another Round To Go To 11', 'raised_amount': 4400000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 6, 'funded_day': 18, 'company': {'name': 'Animoto', 'permalink': 'animoto'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.engineyard.com/about/press/09-10-08-engine-yard-closes-19-million-series-c-financing-round', 'source_description': 'Engine Yard Website', 'raised_amount': 19000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 7, 'company': {'name': 'Engine Yard', 'permalink': 'engineyard'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.cirtas.com/news/cirtas-completes-10-million-series', 'source_description': 'Cirtas Completes $10 Million Series A', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 9, 'funded_day': 20, 'company': {'name': 'Cirtas Systems', 'permalink': 'cirtas'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2010/12/02/livingsocial-confirms-175-million-amazon-investment/', 'source_description': 'LivingSocial Confirms $175 Million Amazon Investment', 'raised_amount': 183000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 2, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.techcrunchit.com/2011/01/18/cloud-archiving-startup-sonian-raises-9-million-from-amazon-webroot-and-others/', 'source_description': 'Cloud Archiving Startup Sonian Raises $9 Million From Amazon, Webroot And Others', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'Sonian', 'permalink': 'sonian'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/06/29/animoto-in-it-to-win-it-takes-25-million-in-third-venture-round/', 'source_description': 'Animoto In It To Win It, Takes $25 Million In Third Venture Round', 'raised_amount': 25000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 29, 'company': {'name': 'Animoto', 'permalink': 'animoto'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2011/12/07/forget-an-ipo-for-now-livingsocial-raises-another-176-million/', 'source_description': 'TechCrunch', 'raised_amount': 176000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 18, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2011/09/songza-com-closes-financing.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Songza.com Closes Financing Round', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 9, 'funded_day': 19, 'company': {'name': 'Songza', 'permalink': 'songza'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2011/07/paraccel-receives-additional-investment-amazon-com.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'ParAccel Receives Additional Investment from Amazon.com', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 7, 'funded_day': 7, 'company': {'name': 'ParAccel', 'permalink': 'paraccel'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2011/04/04/livingsocial-files-to-authorize-up-to-565m-in-series-e-funding/', 'source_description': 'LivingSocial Files To Authorize Up To $565M In Series E [Update: And Raises $400M]', 'raised_amount': 400000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 4, 'funded_day': 4, 'company': {'name': 'LivingSocial', 'permalink': 'livingsocial'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/08/09/videolicious-2-25m/', 'source_description': 'Videolicious Raises $2.25 Million From Washington Post Company, Amazon.com, And The Knight Foundation', 'raised_amount': 2250000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 9, 'company': {'name': 'Videolicious', 'permalink': 'videolicious'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/30/videolicious-2-funding/', 'source_description': 'Videolicious Relaunches Its App For Mobile Video Editing, Raises $1.4 Million From Amazon And Others', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 30, 'company': {'name': 'Videolicious', 'permalink': 'videolicious'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/09/10/songza-raises-4-7-million-funding-round-to-develop-advertising-you-may-actually-enjoy/', 'source_description': 'Songza Raises $4.7 Million Funding Round To Develop Advertising You May Actually Enjoy', 'raised_amount': 4700000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Songza', 'permalink': 'songza'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 1, 'company': {'name': 'dpreview', 'permalink': 'dpreview'}}, {'price_amount': 250000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/1999/05/24/newscolumn4.html', 'source_description': 'Amazon spends $250M for Alexa Internet', 'acquired_year': 1999, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Alexa', 'permalink': 'alexa'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/06/25/amazon-gets-some-new-threads-acquires-fabriccom/', 'source_description': 'Amazon Gets Some New Threads, Acquires Fabric.com', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Fabric.com', 'permalink': 'fabric-com'}}, {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/01/31/amazon-strengthens-its-digital-hand-with-300-million-purchase-of-audible/', 'source_description': 'Amazon Strengthens Its Digital Hand With $300 Million Purchase of Audible', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'Audible', 'permalink': 'audible'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/01/amazon-to-acquire-abebooks/', 'source_description': 'Amazon To Acquire AbeBooks, And With It A Stake In LibraryThing', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 1, 'company': {'name': 'AbeBooks', 'permalink': 'abebooks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 1998, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'IMDB', 'permalink': 'imdb'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/10/21/amazon-snaps-up-video-game-provider-reflexive/', 'source_description': 'Amazon Snaps Up Video Game Provider Reflexive', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 20, 'company': {'name': 'Reflexive Entertainment', 'permalink': 'reflexive-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/25/amazon-aquires-shelfari-moves-to-corner-social-book-space/', 'source_description': 'Amazon Acquires Shelfari: Moves To Corner Book-Centric Social Networks', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 25, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pcworld.com/article/163917/amazon_acquires_lexcycle.html', 'source_description': 'Amazon Acquires Lexcycle', 'acquired_year': 2009, 'acquired_month': 4, 'acquired_day': None, 'company': {'name': 'Lexcycle', 'permalink': 'lexcycle'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/06/16/image-recognition-startup-snaptell-acquired-by-amazon-subsidiary-a9com/', 'source_description': 'Image Recognition Startup SnapTell Acquired by Amazon Subsidiary A9.com', 'acquired_year': 2009, 'acquired_month': 6, 'acquired_day': 16, 'company': {'name': 'SnapTell', 'permalink': 'snaptell'}}, {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://techcrunch.com/2009/07/22/amazon-buys-zappos/', 'source_description': 'TechCrunch: Amazon Buys Zappos', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 22, 'company': {'name': 'Zappos', 'permalink': 'zappos'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/08/25/amazon-aquires-shelfari-moves-to-corner-social-book-space/', 'source_description': 'Amazon Acquires Shelfari: Moves To Corner Book-Centric Social Networks', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 24, 'company': {'name': 'Shelfari', 'permalink': 'shelfari'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.encyclopedia.com/doc/1P1-139775740.html', 'source_description': 'Amazon.com Buys Brilliance Audio', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': 23, 'company': {'name': 'Brilliance Audio', 'permalink': 'brilliance-audio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.emii.com/article.aspx?ArticleID=1854808', 'source_description': 'Amazon Unit Buys Without A Box', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 18, 'company': {'name': 'Without A Box', 'permalink': 'without-a-box'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.dmwmedia.com/news/2008/10/22/amazon-buys-casual-games-distributor-reflexive-entertainment', 'source_description': 'Amazon Buys Casual Games Distributor Reflexive Entertainment', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Reflexive Entertainment', 'permalink': 'reflexive-entertainment'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nytimes.com/2010/02/04/technology/04amazon.html', 'source_description': 'Amazon Said to Buy Touch Start-Up', 'acquired_year': 2010, 'acquired_month': 2, 'acquired_day': 3, 'company': {'name': 'Touchco', 'permalink': 'touchco'}}, {'price_amount': 110000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/06/30/woot-amazon/', 'source_description': 'Woot’s Deal Of The Day: Woot! — Amazon Buys It. Price? $110 Million', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 30, 'company': {'name': 'Woot', 'permalink': 'woot'}}, {'price_amount': 545000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/11/08/confirmed-amazon-spends-545-million-on-diapers-com-parent-quidsi', 'source_description': 'Confirmed: Amazon Spends $545 Million On Diapers.com Parent Quidsi', 'acquired_year': 2010, 'acquired_month': 11, 'acquired_day': 8, 'company': {'name': 'Quidsi', 'permalink': 'quidsi'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.co.uk/cgi/news/release?id=22936', 'source_description': 'LEADING INTERNET BOOKSELLER AMAZON.COM ACQUIRES U.K.-BASED INTERNET BOOKSTORE BOOKPAGES LTD.', 'acquired_year': 1998, 'acquired_month': 10, 'acquired_day': 15, 'company': {'name': 'Bookpages', 'permalink': 'bookpages'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://community.seattletimes.nwsource.com/archive/?date=19990611&slug=2965963', 'source_description': \"Amazon's Accept.Com Deal Cost About $101.7 Million\", 'acquired_year': 1999, 'acquired_month': 6, 'acquired_day': 11, 'company': {'name': 'Accept.Com', 'permalink': 'accept-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://multivu.prnewswire.com/cgi-bin/stories.pl?ACCT=104&STORY=/www/story/04-26-1999/0000918988&EDATE=', 'source_description': 'Amazon.Com Acquires Exchange.Com', 'acquired_year': 1999, 'acquired_month': 4, 'acquired_day': 26, 'company': {'name': 'Exchange.Com', 'permalink': 'exchange-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Cap Funding Report', 'acquired_year': 2003, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'CDNOW', 'permalink': 'cdnow'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.internetnews.com/ec-news/article.php/3494946/Amazon-Buys-On-Demand-Player-BookSurge.htm', 'source_description': 'Amazon Buys On Demand Player BookSurge', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 4, 'company': {'name': 'BookSurge', 'permalink': 'booksurge'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.drmwatch.com/drmtech/article.php/3499386', 'source_description': 'Amazon.com Acquires Mobipocket', 'acquired_year': 2005, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Mobipocket.com', 'permalink': 'mobipocket-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.hackingnetflix.com/2005/07/breaking_news_a.html', 'source_description': 'Amazon Acquires CustomFlix', 'acquired_year': 2005, 'acquired_month': 7, 'acquired_day': 8, 'company': {'name': 'CustomFlix', 'permalink': 'customflix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://wistechnology.com/articles/2730/', 'source_description': 'Amazon acquires Madison-based Shopbop', 'acquired_year': 2006, 'acquired_month': 2, 'acquired_day': 27, 'company': {'name': 'Shopbop', 'permalink': 'shopbop'}}, {'price_amount': 2500000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://eu.techcrunch.com/2011/01/20/amazon-acquires-lovefilm-the-netflix-of-europe/', 'source_description': 'Amazon acquires LoveFilm, the Netflix of Europe', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 15, 'company': {'name': 'LOVEFiLM', 'permalink': 'lovefilm'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/07/04/amazon-acquires-uk-based-online-book-retailer-the-book-depository-for-international-expansion/', 'source_description': 'Amazon Acquires UK-Based Online Book Retailer The Book Depository For International Expansion', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 4, 'company': {'name': 'The Book Depository', 'permalink': 'the-book-depository'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-amazon-buys-lovefilms-iptv-app-designer-pushbutton/', 'source_description': 'Amazon Buys Lovefilm’s IPTV App Designer Pushbutton', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 28, 'company': {'name': 'Pushbutton', 'permalink': 'pushbutton'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2011/12/28/amazon-quorus-acquisition/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Amazon acquires the talented team at shopping startup Quorus', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 28, 'company': {'name': 'Quorus', 'permalink': 'quorus'}}, {'price_amount': 775000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2012/03/19/amazon-buys-kiva-systems/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Amazon buys Kiva Systems for $775M — prepare for even smarter warehouses', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 19, 'company': {'name': 'Kiva Systems', 'permalink': 'kiva-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/08/amazon-acquires-amie-street-but-not-in-a-good-way/', 'source_description': 'Amazon Acquires Amie Street, But Not In A Good Way', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 22, 'company': {'name': 'Amie Street', 'permalink': 'amiestreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.geekwire.com/2012/exclusive-amazoncom-buys-teachstreet', 'source_description': 'GeekWire', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 31, 'company': {'name': 'TeachStreet', 'permalink': 'teachstreet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.engadget.com/2012/07/02/amazon-reportedly-acquires-upnext-for-3d-maps/', 'source_description': 'Amazon reportedly acquires UpNext, 3D map wars begin in earnest', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'UpNext', 'permalink': 'upnext'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/24/amazon-gets-into-voice-recognition-buys-ivona-software-to-compete-against-apples-siri/', 'source_description': 'Amazon Gets Into Voice Recognition, Buys Ivona Software To Compete Against Apple’s Siri', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 24, 'company': {'name': 'IVONA Text-To-Speech', 'permalink': 'ivona-text-to-speech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/28/amazon-acquires-social-reading-site-goodreads/', 'source_description': 'Amazon Acquires Social Reading Site Goodreads, Which Gives The Company A Social Advantage Over Apple', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 28, 'company': {'name': 'Goodreads', 'permalink': 'goodreads'}}, {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.wsj.com/digits/2013/03/29/amazon-moves-toward-kindle-social-network-with-goodreads/', 'source_description': 'Amazon Moves Toward Kindle Social Network with Goodreads', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 29, 'company': {'name': 'Goodreads', 'permalink': 'goodreads'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/05/13/amazon-acquires-samsung-color-display-unit-liquavista/', 'source_description': 'Amazon acquires Samsung color display unit Liquavista', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Liquavista', 'permalink': 'liquavista'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mercurynews.com/business/ci_23233051/amazon-buys-screen-tech-from-samsung-introduces-its?source=rss&cid=dlvr.it', 'source_description': 'Amazon buys screen tech from Samsung, introduces its own currency', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'company': {'name': 'Screentech', 'permalink': 'screentech'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.ecommercebytes.com/cab/abn/y10/m10/i07/s06', 'source_description': 'Amazon Acquires European Fashion Site BuyVIP.com', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'BuyVIP', 'permalink': 'buyvip'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.infosources.org/what_is/Amazon_Payments.html', 'source_description': 'Amazon Payments', 'acquired_year': 2006, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/16/amazon-reportedly-buys-mobile-payments-startup-gopago-working-on-an-ambitious-new-project/', 'source_description': 'Amazon Reportedly Buys Mobile Payments Startup Gopago, Working On An ‘Ambitious’ New Project', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'GoPago', 'permalink': 'gopago'}}], 'offices': [{'description': None, 'address1': '1200 12th Ave', 'address2': 'S # 1200', 'zip_code': '98144', 'city': 'Seattle', 'state_code': 'WA', 'country_code': 'USA', 'latitude': 47.5923, 'longitude': -122.317295}], 'milestones': [{'id': 6931, 'description': 'How Many Kindle Books Has Amazon Sold? About 22 Million This Year', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 20, 'source_url': 'http://www.businessinsider.com/sorry-amazon-kindle-e-books-outselling-hardcovers-isnt-that-impressive-2010-7', 'source_text': '', 'source_description': 'How Many Kindle Books Has Amazon Sold? About 22 Million This Year', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 10081, 'description': \"Online retailer Amazon.com Inc. said on Tuesday it had increased its investment in Joyo.com, a leading online shopping platform in China, the U.S.-company's fastest growing market.\", 'stoned_year': 2007, 'stoned_month': 6, 'stoned_day': 5, 'source_url': 'http://uk.reuters.com/article/idUKPEK15159920070605', 'source_text': '', 'source_description': 'Amazon ups investment in China online shopping site', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 11641, 'description': 'Amazon Throws LivingSocial A Big Bone With $10 Discount', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 19, 'source_url': 'http://techcrunch.com/2011/01/19/amazon-livingsocial-10-discount/', 'source_text': '', 'source_description': 'Amazon Throws LivingSocial A Big Bone With $10 Discount', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 16794, 'description': 'Amazon’s Market Cap Passes $100 Billion', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/07/27/amazons-market-cap-passes-100-billion/', 'source_text': '', 'source_description': 'Amazon’s Market Cap Passes $100 Billion', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 19877, 'description': 'Amazon Invests In Turkish E-Commerce Startup Ciceksepeti', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 20, 'source_url': 'http://techcrunch.com/2011/12/20/amazon-invests-in-turkish-e-commerce-startup-ciceksepeti/', 'source_text': '', 'source_description': 'Amazon Invests In Turkish E-Commerce Startup Ciceksepeti', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 19957, 'description': 'Amazon To Invest $270 Million In New Distribution Centers In Virginia, Tennessee', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 22, 'source_url': 'http://techcrunch.com/2011/12/22/amazon-to-invest-270-million-in-new-distribution-centers-in-virginia-tennessee/', 'source_text': '', 'source_description': 'Amazon To Invest $270 Million In New Distribution Centers In Virginia, Tennessee', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 23815, 'description': 'Amazon Publishing Acquires Avalon Books', 'stoned_year': 2012, 'stoned_month': 6, 'stoned_day': 4, 'source_url': 'http://www.freshnews.com/news/659917/amazon-publishing-acquires-avalon-books', 'source_text': '', 'source_description': 'Amazon Publishing Acquires Avalon Books', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}, {'id': 41866, 'description': 'Amazon Launches ‘AmazonSmile’ Charity Donation Program', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 30, 'source_url': 'http://techcrunch.com/2013/10/30/amazonsmile-automatic-charity-donation/', 'source_text': '', 'source_description': 'Amazon Wants To Do Good With Its Goods, Launches ‘AmazonSmile’ Charity Donation Program', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Amazon', 'permalink': 'amazon'}}], 'ipo': {'valuation_amount': 100000000000, 'valuation_currency_code': 'USD', 'pub_year': 1997, 'pub_month': 5, 'pub_day': None, 'stock_symbol': 'NASDAQ:AMZN'}, 'video_embeds': [{'embed_code': ' Amazon Mobile iPhone App Review - AppVee.com\\r\\n', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/3612/43612v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/3612/43612v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/3612/43612v1-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'permalink': 'nielsen', 'crunchbase_url': 'http://www.crunchbase.com/company/nielsen', 'homepage_url': 'http://nielsen.com', 'blog_url': 'http://blog.nielsen.com/nielsenwire', 'blog_feed_url': '', 'twitter_username': 'nielsenwire', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1922, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'ContactCommunications@nielsen.com', 'phone_number': ' 800.864.1224', 'description': '', 'created_at': 'Wed Aug 22 10:57:37 UTC 2007', 'updated_at': 'Tue Nov 26 03:11:23 UTC 2013', 'overview': '

Nielsen is a leading global provider of information and insights into what consumers watch and buy.

\\n\\n

Nielsen is a information and measurement company with leading market positions in marketing and consumer information, television and other media measurement, online intelligence, mobile measurement, trade shows and related properties. Nielsen has a presence in approximately 100 countries, with headquarters in New York, USA and Diemen, the Netherlands.

', 'image': {'available_sizes': [[[150, 68], 'assets/images/resized/0001/9309/19309v2-max-150x150.png'], [[157, 72], 'assets/images/resized/0001/9309/19309v2-max-250x250.png'], [[157, 72], 'assets/images/resized/0001/9309/19309v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board - Supervisory Board', 'person': {'first_name': 'James', 'last_name': 'M. Kilts', 'permalink': 'james-m-kilts'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Research Officer', 'person': {'first_name': 'Paul', 'last_name': 'Donato', 'permalink': 'paul-donato'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Mark', 'last_name': 'Leiter', 'permalink': 'mark-leiter'}}, {'is_past': False, 'title': 'Chief Legal Officer', 'person': {'first_name': 'James', 'last_name': 'Cuminale', 'permalink': 'james-cuminale'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Brian', 'last_name': 'West', 'permalink': 'brian-west'}}, {'is_past': False, 'title': 'Chief Executive Officer', 'person': {'first_name': 'David', 'last_name': 'Calhoun', 'permalink': 'david-calhoun'}}, {'is_past': False, 'title': 'Chief Human Resources Officer', 'person': {'first_name': 'Mary', 'last_name': 'Liz Finn', 'permalink': 'mary-liz-finn'}}, {'is_past': False, 'title': 'SVP, Investor Relations', 'person': {'first_name': 'Kate', 'last_name': 'Vanek', 'permalink': 'kate-vanek'}}, {'is_past': False, 'title': 'Executive Vice President, Global Business Development', 'person': {'first_name': 'Itzhak', 'last_name': 'Fisher', 'permalink': 'itzhak-fisher'}}, {'is_past': False, 'title': 'Vice Chair', 'person': {'first_name': 'Susan', 'last_name': 'Whiting', 'permalink': 'susan-whiting'}}, {'is_past': False, 'title': 'Region Vice President, Consumer Retail Division', 'person': {'first_name': 'JoAnn', 'last_name': 'Piedmont', 'permalink': 'joann-piedmont'}}, {'is_past': False, 'title': 'Communications Analyst', 'person': {'first_name': 'Matthew', 'last_name': 'Hurst', 'permalink': 'matthew-hurst'}}, {'is_past': False, 'title': 'leadership', 'person': {'first_name': 'Lane', 'last_name': 'Cochrane', 'permalink': 'lane-cochrane'}}, {'is_past': False, 'title': 'Vice Chair', 'person': {'first_name': 'Rick', 'last_name': 'Kash', 'permalink': 'rick-kash'}}, {'is_past': False, 'title': 'President, Global Client Service', 'person': {'first_name': 'Mitch', 'last_name': 'Barns', 'permalink': 'mitch-barns'}}, {'is_past': False, 'title': 'Chief Provocateur', 'person': {'first_name': 'Dr.', 'last_name': 'A. K. Pradeep', 'permalink': 'dr-a-k-pradeep-3'}}, {'is_past': False, 'title': 'President, Consumer Products', 'person': {'first_name': 'Susan', 'last_name': 'Dunn', 'permalink': 'susan-dunn-2'}}, {'is_past': False, 'title': 'President, India', 'person': {'first_name': 'Piyush', 'last_name': 'Mathurs', 'permalink': 'piyush-mathurs'}}, {'is_past': False, 'title': 'President, Southeast Asia, North Asia and Pacific', 'person': {'first_name': 'Cheong-Tai', 'last_name': 'Leung', 'permalink': 'cheong-tai-leung'}}, {'is_past': False, 'title': 'Managing Director, Sub-Sahara and South Africa', 'person': {'first_name': 'Dwight', 'last_name': 'Watson', 'permalink': 'dwight-watson'}}, {'is_past': False, 'title': 'Consultant', 'person': {'first_name': 'Gale', 'last_name': 'Bowman', 'permalink': 'gale-bowman'}}, {'is_past': False, 'title': 'Tech Manager', 'person': {'first_name': 'Federico', 'last_name': 'Bucchi', 'permalink': 'federico-bucchi'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Robert', 'last_name': 'Pozen', 'permalink': 'robert-pozen'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Mitchell', 'last_name': 'Habib', 'permalink': 'mitchell-habib'}}, {'is_past': False, 'title': 'President, Global Product Leadership', 'person': {'first_name': 'Steve', 'last_name': 'Hasker', 'permalink': 'steve-hasker'}}, {'is_past': False, 'title': 'President, Strategic Initiatives', 'person': {'first_name': 'John', 'last_name': 'Burbank', 'permalink': 'john-burbank'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'John', 'last_name': 'Lewis', 'permalink': 'john-lewis-4'}}, {'is_past': False, 'title': 'President, Europe', 'person': {'first_name': 'Christophe', 'last_name': 'Cambournac', 'permalink': 'christophe-cambournac'}}, {'is_past': False, 'title': 'President, Greater China', 'person': {'first_name': 'Yan', 'last_name': 'Xuan', 'permalink': 'yan-xuan'}}, {'is_past': False, 'title': 'Managing Director, Middle East, North Africa, Pakistan', 'person': {'first_name': 'Nick', 'last_name': 'Papagregoriou', 'permalink': 'nick-papagregoriou'}}, {'is_past': True, 'title': 'CEO, Digital', 'person': {'first_name': 'Jonathan', 'last_name': 'Carson', 'permalink': 'jonathan-carson'}}, {'is_past': True, 'title': 'CEO, NielsenConnect', 'person': {'first_name': 'Jon', 'last_name': 'Mandel', 'permalink': 'jon-mandel'}}, {'is_past': True, 'title': 'SVP and Chief Human Resources Officer, ACNielsen', 'person': {'first_name': 'Jim', 'last_name': 'Cravens', 'permalink': 'jim-cravens'}}, {'is_past': True, 'title': 'CFO / SVP, Nielsen Media Emerging Businesses', 'person': {'first_name': 'Jane', 'last_name': 'Rode', 'permalink': 'jane-rode'}}, {'is_past': True, 'title': 'VP, Research, Local People Meter team', 'person': {'first_name': 'Jane', 'last_name': 'Collins', 'permalink': 'jane-collins'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Mary', 'last_name': 'Liz Finn', 'permalink': 'mary-liz-finn'}}, {'is_past': True, 'title': 'Executive Vice President, Product Leadership', 'person': {'first_name': 'Ari', 'last_name': 'Paparo', 'permalink': 'ari-paparo'}}, {'is_past': True, 'title': 'Vice President, Business Director', 'person': {'first_name': 'Robert', 'last_name': 'Kovalesky', 'permalink': 'robert-kovalesky'}}, {'is_past': True, 'title': 'VP, Sales & Client Services (BuzzMetrics & NetRatings)', 'person': {'first_name': 'Jay', 'last_name': 'Rampuria', 'permalink': 'jay-rampuria'}}, {'is_past': True, 'title': 'Senior Vice President for Investor Relations', 'person': {'first_name': 'Liz', 'last_name': 'Zale', 'permalink': 'liz-zale'}}, {'is_past': True, 'title': 'Associate Marketing Director', 'person': {'first_name': 'Nicole', 'last_name': 'Alexander', 'permalink': 'nicole-alexander'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'John', 'last_name': 'Tantum', 'permalink': 'john-tantum'}}, {'is_past': True, 'title': 'Vice President & Practice Head', 'person': {'first_name': 'Richard', 'last_name': 'Sussman', 'permalink': 'richard-sussman'}}, {'is_past': True, 'title': 'Application Developer, Student', 'person': {'first_name': 'Amir', 'last_name': 'Sharif', 'permalink': 'amir-sharif'}}, {'is_past': True, 'title': 'VP Consumer Insights, Product Management, VP, Production and Operations, Nielsen/Telephia', 'person': {'first_name': 'Linda', 'last_name': 'Shaffer', 'permalink': 'linda-shaffer'}}, {'is_past': True, 'title': 'Client Service Team', 'person': {'first_name': 'Maureen', 'last_name': 'Calabrese', 'permalink': 'maureen-calabrese'}}, {'is_past': True, 'title': 'Publishing Director', 'person': {'first_name': 'Phil', 'last_name': 'Ripperger', 'permalink': 'phil-ripperger'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Gary', 'last_name': 'Cohen', 'permalink': 'gary-cohen'}}, {'is_past': True, 'title': 'Corporate Strategy and New Business Development', 'person': {'first_name': 'Sid', 'last_name': 'Gorham', 'permalink': 'sid-gorham'}}, {'is_past': True, 'title': 'Vice President, Group Client Director', 'person': {'first_name': 'Patrick', 'last_name': 'Venker', 'permalink': 'patrick-venker'}}, {'is_past': True, 'title': 'Emerging Leaders Intern', 'person': {'first_name': 'Todd', 'last_name': 'Goldberg', 'permalink': 'todd-goldberg'}}, {'is_past': True, 'title': 'Sales and Marketing Positions', 'person': {'first_name': 'John', 'last_name': 'Jarrell', 'permalink': 'john-jarrell'}}], 'competitions': [], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Spark Public Relations', 'permalink': 'spark-public-relations'}}, {'title': '', 'is_past': False, 'provider': {'name': 'Meteor PR', 'permalink': 'meteor-pr'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'seed', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2013, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'eDealya', 'permalink': 'edealya'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 327000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://login.vnuemedia.com/hr/login/login_subscribe.jsp?id=0oqDem1gYIfIclz9i2%2Ffqj5NxCp2AC5DPbVnyT2da8GyV2mXjasabE128n69OrmcAh52%2FGE3pSG%2F%0AEKRYD9vh9EhrJrxukmUzh532fSMTZXL42gwPB80UWVtF1NwJ5UZSM%2BCkLU1mpYBoHFgiH%2Fi0f6Ax%0A9yMIVxt47t%2BHamhEQ0nkOEK24L', 'source_description': 'Nielsen buys rest of NetRatings', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'NetRatings', 'permalink': 'netratings'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': None, 'source_description': None, 'acquired_year': 2006, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'Buzzmetrics', 'permalink': 'buzzmetrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2007/06/29/nielsen-buys-telephia-for-mobile-phone-traffic-measurement-service/', 'source_description': 'Nielsen buys Telephia, for mobile phone traffic measurement service', 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 29, 'company': {'name': 'Telephia', 'permalink': 'telephia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-nielsen-buys-online-audience-measurement-firm-koreanclick/', 'source_description': 'Nielsen Buys Online Audience Measurement Firm Koreanclick', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Koreanclick', 'permalink': 'koreanclick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/05/04/nielsen-acquires-online-video-analytics-company-glanceguide/', 'source_description': 'Nielsen Acquires Online Video Analytics Company GlanceGuide', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 4, 'company': {'name': 'GlanceGuide', 'permalink': 'glanceguide'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/08/09/nielsen-acquires-marketing-analytics-inc/', 'source_description': 'Nielsen Acquires Marketing Analytics, Inc.', 'acquired_year': 2011, 'acquired_month': 8, 'acquired_day': 10, 'company': {'name': 'Marketing Analytics', 'permalink': 'marketing-analytics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/02/nielsen-acquires-vizu/', 'source_description': 'Nielsen Acquires Vizu To Measure Online Ad Effectiveness', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 2, 'company': {'name': 'Vizu Corporation', 'permalink': 'vizu'}}, {'price_amount': 1300000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/baltimore/news/2013/09/30/nielsen-closes-13b-acquistion-arbiton.html?ana=twt', 'source_description': 'Nielsen closes $1.3B acquisition of Columbia-based Arbitron', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'company': {'name': 'Arbitron', 'permalink': 'arbitron'}}, {'price_amount': 117000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://phys.org/news/2013-11-nielsen-harris-interactive-117m.html', 'source_description': 'Nielsen buying Harris Interactive for about $117M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 25, 'company': {'name': 'Harris Interactive', 'permalink': 'harris-interactive'}}], 'offices': [{'description': '', 'address1': '85 Broad Street', 'address2': '', 'zip_code': '10004', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': 40.731118, 'longitude': -73.991933}], 'milestones': [], 'ipo': {'valuation_amount': 1600000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 1, 'pub_day': 26, 'stock_symbol': 'NYSE:NLSN'}, 'video_embeds': [{'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally posted on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': '', 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}, {'embed_code': \"\", 'description': '

This video was originally published on Beet.TV

'}], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f36'), 'name': 'OpenTable', 'permalink': 'opentable', 'crunchbase_url': 'http://www.crunchbase.com/company/opentable', 'homepage_url': 'http://opentable.com', 'blog_url': 'http://blog.opentable.com', 'blog_feed_url': '', 'twitter_username': 'OpenTable', 'category_code': 'web', 'number_of_employees': 550, 'founded_year': 1998, 'founded_month': 7, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '415-344-4200', 'description': 'Online Restaurant Reservation Provider', 'created_at': 'Fri Aug 24 13:10:03 UTC 2007', 'updated_at': 'Tue Dec 17 03:42:20 UTC 2013', 'overview': '

OpenTable provides a restaurant management system for restaurateurs called the ERB (Electronic Reservation Book). In addition, the company operates OpenTable.com, a website for making restaurant reservations online. The website initially launched in the San Francisco area in 1999. Since then OpenTable has grown to have a customer base of over 30,000 restaurants in the U.S., Canada, Germany, Japan, Mexico and the UK. More than 530 million diners have been seated via OpenTable.

', 'image': {'available_sizes': [[[150, 24], 'assets/images/resized/0000/0022/22v1-max-150x150.png'], [[210, 34], 'assets/images/resized/0000/0022/22v1-max-250x250.png'], [[210, 34], 'assets/images/resized/0000/0022/22v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Joseph', 'last_name': 'Essas', 'permalink': 'joseph-essas'}}, {'is_past': False, 'title': 'SVP, Sales', 'person': {'first_name': 'Michael', 'last_name': 'Dodson', 'permalink': 'michael-dodson'}}, {'is_past': False, 'title': 'SVP, Business Development', 'person': {'first_name': 'Douglas', 'last_name': 'Boake', 'permalink': 'douglas-boake'}}, {'is_past': False, 'title': 'SVP, Operations', 'person': {'first_name': 'Joel', 'last_name': 'Brown', 'permalink': 'joel-brown'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Bill', 'last_name': 'Gurley', 'permalink': 'bill-gurley'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Roberts', 'permalink': 'matt-roberts'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Scott', 'last_name': 'Ferreira', 'permalink': 'scott-ferreira-2'}}, {'is_past': False, 'title': 'Board', 'person': {'first_name': 'Thomas', 'last_name': 'Layton', 'permalink': 'thomas-layton'}}, {'is_past': False, 'title': 'Board Director', 'person': {'first_name': 'Skip', 'last_name': 'Battle', 'permalink': 'skip-battle'}}, {'is_past': False, 'title': 'Senior Director, Corporate Communications', 'person': {'first_name': 'Tiffany', 'last_name': 'Fox', 'permalink': 'tiffany-fox'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Paul', 'last_name': 'Pressler', 'permalink': 'paul-pressler-2'}}, {'is_past': True, 'title': 'CTO / Founder', 'person': {'first_name': 'Eric', 'last_name': 'Moe', 'permalink': 'eric-moe'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Chuck', 'last_name': 'Templeton', 'permalink': 'chuck-templeton'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jeffrey', 'last_name': 'Jordan', 'permalink': 'jeffrey-jordan'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Sid', 'last_name': 'Gorham', 'permalink': 'sid-gorham'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Senior Vice President and Managing Director of Europe', 'person': {'first_name': 'David', 'last_name': 'Pritchard', 'permalink': 'david-pritchard'}}, {'is_past': True, 'title': 'SVP, Engineering', 'person': {'first_name': 'Charlie', 'last_name': 'McCullough', 'permalink': 'charlie-mccullough'}}, {'is_past': True, 'title': 'Senior Director of Corporate Communications', 'person': {'first_name': 'Shannon', 'last_name': 'Stubo', 'permalink': 'shannon-stubo'}}, {'is_past': True, 'title': 'Internship', 'person': {'first_name': 'Mike', 'last_name': 'Sousa', 'permalink': 'mike-souza'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'John', 'last_name': 'Dulay', 'permalink': 'john-dulay'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Michael', 'last_name': 'Berman', 'permalink': 'michael-berman-2'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Michelle', 'last_name': 'Peluso', 'permalink': 'michelle-peluso'}}, {'is_past': True, 'title': 'Management', 'person': {'first_name': 'Christopher', 'last_name': 'Stanley', 'permalink': 'christopher-stanley'}}], 'competitions': [{'competitor': {'name': 'SaveTable', 'permalink': 'savetable'}}, {'competitor': {'name': 'Livebookings', 'permalink': 'livebookings'}}, {'competitor': {'name': 'Matradee.com', 'permalink': 'matradee-com'}}, {'competitor': {'name': 'Restalo', 'permalink': 'restalo-es'}}], 'providerships': [], 'total_money_raised': '$48M', 'funding_rounds': [{'id': 494, 'round_code': 'a', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=13', 'source_description': '', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Richards', 'permalink': 'draper-richards'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture Frogs', 'permalink': 'venture-frogs'}, 'person': None}]}, {'id': 495, 'round_code': 'b', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=13', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Impact Venture Partners', 'permalink': 'impact-venture-partners'}, 'person': None}, {'company': {'name': 'American Express', 'permalink': 'americanexpress'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Zagat', 'permalink': 'zagat'}, 'financial_org': None, 'person': None}]}, {'id': 496, 'round_code': 'c', 'source_url': 'http://www.opentable.com/info/newspage.aspx?id=77', 'source_description': '', 'raised_amount': 36000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Comdisco Ventures', 'permalink': 'comdisco-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Impact Venture Partners', 'permalink': 'impact-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Upstart Capital', 'permalink': 'upstart-capital'}, 'person': None}, {'company': {'name': 'France Telecom', 'permalink': 'france-telecom'}, 'financial_org': None, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 3000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://investors.opentable.com/releasedetail.cfm?ReleaseID=409236', 'source_description': 'OpenTable to Acquire GuestBridge', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 15, 'company': {'name': 'GuestBridge', 'permalink': 'guestbridge'}}, {'price_amount': 55000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/opentable-begins-world-conquest-2010-9', 'source_description': 'Why OpenTable Is The World-Conquering Internet Stock You Need To Care About', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'toptable', 'permalink': 'toptable'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020120803e883qqdoo&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020120803e883qqdoo%26from%3dalert%26pid%3d32', 'source_description': 'OpenTable Acquires Gift Card Start-Up Treatful for $4M', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 3, 'company': {'name': 'Treatful', 'permalink': 'treatful'}}, {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/01/29/opentable-buys-foodspotting-to-get-more-social-around-its-booking-service/', 'source_description': 'Opentable Eats Up Foodspotting For $10M To Get More Social Around Its Booking Service', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'company': {'name': 'Foodspotting', 'permalink': 'foodspotting'}}, {'price_amount': 11000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.nextbigwhat.com/opentable-acquires-justchalo-for-11-million-297/', 'source_description': 'OpenTable Acquires US/Mumbai Based JustChalo for $11 Million', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 14, 'company': {'name': 'JustChalo', 'permalink': 'justchalo'}}, {'price_amount': 11500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nooga.com/164678', 'source_description': ' OpenTable buys Chattanooga business Quickcue for $11.5 million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Quickcue', 'permalink': 'quickcue'}}], 'offices': [{'description': '', 'address1': 'One Montgomery', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.785647, 'longitude': -122.405265}], 'milestones': [{'id': 8047, 'description': 'OpenTable recognized as one of the Hottest San Francisco Companies by Lead411 ', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': 18, 'source_url': 'http://www.lead411.com/san-francisco-companies.html', 'source_text': None, 'source_description': 'LEAD411 LAUNCHES \"HOTTEST COMPANIES IN SAN FRANCISCO\" AWARDS', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'OpenTable', 'permalink': 'opentable'}}, {'id': 26263, 'description': 'You’ve Been Served: OpenTable Reaches 15 Million Review Milestone', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://techcrunch.com/2012/09/05/youve-been-served-opentable-reaches-15-million-review-milestone/', 'source_text': '', 'source_description': 'You’ve Been Served: OpenTable Reaches 15 Million Review Milestone', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'OpenTable', 'permalink': 'opentable'}}], 'ipo': {'valuation_amount': 1050000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 21, 'stock_symbol': 'NASDAQ:OPEN'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298112'), 'name': 'Shutterfly', 'permalink': 'shutterfly', 'crunchbase_url': 'http://www.crunchbase.com/company/shutterfly', 'homepage_url': 'http://www.shutterfly.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'shutterfly', 'category_code': 'ecommerce', 'number_of_employees': 611, 'founded_year': 1999, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '650-610-5200', 'description': '', 'created_at': 'Tue Jan 08 09:22:24 UTC 2008', 'updated_at': 'Mon Sep 16 20:35:12 UTC 2013', 'overview': '

Shutterfly, Inc. is the leading manufacturer and digital retailer of high-quality personalized products and services offered through a family of lifestyle brands.

\\n\\n

Founded in 1999, the Shutterfly, Inc. family of brands includes Shutterfly, where your photos come to life in photo books, cards and gifts; Tiny Prints, premium cards and stationery for all life’s occasions; Wedding Paper Divas, wedding invitations and stationery for every step of the planning process; and Treat, personalized greeting cards that really stand out. For more information about Shutterfly, Inc. (NASDAQ:SFLY), visit www.shutterflyinc.com.

', 'image': {'available_sizes': [[[141, 48], 'assets/images/resized/0000/2266/2266v8-max-150x150.png'], [[141, 48], 'assets/images/resized/0000/2266/2266v8-max-250x250.png'], [[141, 48], 'assets/images/resized/0000/2266/2266v8-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Senior Vice President and Chief Marketing Officer', 'person': {'first_name': 'John', 'last_name': 'Boris', 'permalink': 'john-boris'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Jeffrey', 'last_name': 'Housenbold', 'permalink': 'jeffrey-housenbold'}}, {'is_past': False, 'title': 'Senior Vice President, Human Resources', 'person': {'first_name': 'Peter', 'last_name': 'Navin', 'permalink': 'peter-navin'}}, {'is_past': False, 'title': 'Senior Vice President, Operations', 'person': {'first_name': 'Dwayne', 'last_name': 'Black', 'permalink': 'dwayne-black'}}, {'is_past': False, 'title': 'Senior Vice President and General Manager', 'person': {'first_name': 'Dan', 'last_name': 'McCormick', 'permalink': 'dan-mccormick'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Brian', 'last_name': 'Regan', 'permalink': 'brian-regan'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Eric', 'last_name': 'Keller', 'permalink': 'eric-keller'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Brian', 'last_name': 'Swette', 'permalink': 'brian-swette-2'}}, {'is_past': False, 'title': 'Marketing', 'person': {'first_name': 'Kyle', 'last_name': 'Tibbitts', 'permalink': 'kyle-tibbitts'}}, {'is_past': False, 'title': 'Head of Mobile Strategy & Product Management', 'person': {'first_name': 'Deepak', 'last_name': 'Thomas', 'permalink': 'deepak-thomas'}}, {'is_past': False, 'title': 'Director, Network Engineering and Information Security', 'person': {'first_name': 'Vladimir', 'last_name': 'Berkovsky', 'permalink': 'vladmir-berkovsky'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Stephen', 'last_name': 'Killeen', 'permalink': 'stephen-killeen'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Phillip', 'last_name': 'Marineau', 'permalink': 'phillip-marineau'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Nancy', 'last_name': 'Schoendorf', 'permalink': 'nancy-schoendorf'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white-3'}}, {'is_past': False, 'title': 'Director, Business Development - Tiny Prints', 'person': {'first_name': 'Sylvia', 'last_name': 'Yam', 'permalink': 'sylvia-yam'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jim', 'last_name': 'White', 'permalink': 'jim-white'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Stephen', 'last_name': 'Recht', 'permalink': 'stephen-recht'}}, {'is_past': True, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Andy', 'last_name': 'Young', 'permalink': 'andy-young-3'}}, {'is_past': True, 'title': 'Senior Vice President and Chief Technology Officer', 'person': {'first_name': 'Neil', 'last_name': 'Day', 'permalink': 'neil-day'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Mark', 'last_name': 'Rubash', 'permalink': 'mark-rubash'}}, {'is_past': True, 'title': 'VP of Strategic Sales', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Herendeen', 'permalink': 'julie-herendeen'}}, {'is_past': True, 'title': 'VP Mobile and Social Media', 'person': {'first_name': 'John', 'last_name': 'Poisson', 'permalink': 'john-poisson'}}, {'is_past': True, 'title': 'Senior Vice President, Corporate Developement', 'person': {'first_name': 'Doug', 'last_name': 'Galen', 'permalink': 'doug-galen'}}, {'is_past': True, 'title': 'Senior Vice President & Chief Marketing Officerr', 'person': {'first_name': 'Peter', 'last_name': 'Elarde', 'permalink': 'peter-elarde'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Tom', 'last_name': 'Markworth', 'permalink': 'tom-markworth'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Lavon', 'last_name': 'Woods', 'permalink': 'lavon-woods'}}, {'is_past': True, 'title': 'Sr. Product Manager/Sr. Product Marketing Manager', 'person': {'first_name': 'Tom', 'last_name': 'Markworth', 'permalink': 'tom-markworth'}}, {'is_past': True, 'title': 'Senior Director of Marketing', 'person': {'first_name': 'Sam', 'last_name': 'Faillace', 'permalink': 'sam-faillace'}}, {'is_past': True, 'title': 'Director Marketing / Stragetic Partnerships', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'New Business Strategy', 'person': {'first_name': 'Dennis', 'last_name': 'Marshall', 'permalink': 'dennis-marshall'}}, {'is_past': True, 'title': 'Director of Internet Marketing', 'person': {'first_name': 'Katelyn', 'last_name': 'Watson', 'permalink': 'katelyn-watson'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Ian', 'last_name': 'Jeffrey', 'permalink': 'ian-jeffrey'}}, {'is_past': True, 'title': 'Business Analyst', 'person': {'first_name': 'Ashley', 'last_name': 'Carroll', 'permalink': 'ashley-carroll'}}, {'is_past': True, 'title': 'VP Finance and Investor Relations', 'person': {'first_name': 'John', 'last_name': 'Kaelle', 'permalink': 'john-kaelle'}}, {'is_past': True, 'title': 'Sr. Manager, Sponsorships & Online Advertising/Promotions', 'person': {'first_name': 'Linda', 'last_name': 'Chou', 'permalink': 'linda-chou'}}, {'is_past': True, 'title': 'Business Unit Manager/Product Strategy Manager of WeddingPaperDivas.com', 'person': {'first_name': 'Shae', 'last_name': 'Ayse Cetinel', 'permalink': 'shae-ayse-cetinel'}}, {'is_past': True, 'title': 'VP, Customer Experience', 'person': {'first_name': 'Mak', 'last_name': 'Azadi', 'permalink': 'mak-azadi'}}, {'is_past': True, 'title': 'Director, Data Services', 'person': {'first_name': 'Kenny', 'last_name': 'Gorman', 'permalink': 'kenny-gorman'}}], 'competitions': [{'competitor': {'name': 'LiveJournal', 'permalink': 'livejournal'}}, {'competitor': {'name': 'Zooomr', 'permalink': 'zooomr'}}, {'competitor': {'name': 'Snapfish', 'permalink': 'snapfish'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Zenfolio', 'permalink': 'zenfolio'}}, {'competitor': {'name': 'Fotki', 'permalink': 'fotki'}}, {'competitor': {'name': 'PrintSmart', 'permalink': 'printsmart'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 15000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': 'JMP Securities', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 1, 'company': {'name': 'Nexo', 'permalink': 'nexo'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/06/shutterfly_buys.html', 'source_description': \"Shutterfly Buys Custom Children's Book Publisher Make It About Me!\", 'acquired_year': 2007, 'acquired_month': 6, 'acquired_day': 27, 'company': {'name': 'About Me!', 'permalink': 'about-me'}}, {'price_amount': 2600000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1125920/000112592009000029/sfly8-k_tinypictures.htm', 'source_description': 'SEC filing', 'acquired_year': 2009, 'acquired_month': 9, 'acquired_day': 11, 'company': {'name': 'Tiny Pictures', 'permalink': 'tiny-pictures'}}, {'price_amount': 333000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/03/21/shutterfly-acquires-online-stationery-company-tiny-prints-for-309m-plus-earnout/', 'source_description': 'Shutterfly Acquires Online Stationery Company Tiny Prints For $333M In Cash And Stock', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 21, 'company': {'name': 'Tiny Prints', 'permalink': 'tiny-prints'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/09/17/shutterfly-acquires-penguin-digital-makers-of-mobile-photo-print-shop-app-mopho/', 'source_description': 'Shutterfly Acquires Penguin Digital, Makers Of Mobile Photo Print Shop App “MoPho”', 'acquired_year': 2012, 'acquired_month': 9, 'acquired_day': 17, 'company': {'name': 'Penguin Digital', 'permalink': 'penguin-digital'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/03/source-shutterfly-to-acquire-slick-photo-sharing-and-storage-startup-thislife/', 'source_description': 'Source: Shutterfly To Acquire Slick Photo Sharing And Storage Startup ThisLife', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 4, 'company': {'name': 'ThisLife', 'permalink': 'thislife'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'piqlet', 'permalink': 'piqlet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ir.shutterfly.com/releasedetail.cfm?releaseid=201659', 'source_description': 'Shutterfly Acquires Memory Matrix', 'acquired_year': 2005, 'acquired_month': 6, 'acquired_day': 1, 'company': {'name': 'Memory Matrix', 'permalink': 'memory-matrix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130430005541/en/Shutterfly-Acquires-MyPublisher', 'source_description': 'Shutterfly Inc. Acquires MyPublisher', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 30, 'company': {'name': 'MyPublisher', 'permalink': 'mypublisher'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/01/shutterfly-acquired-r-and-r-images/', 'source_description': 'Shutterfly Has Acquired Photo Printing Company R And R Images', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'R and R Images', 'permalink': 'r-and-r-images'}}], 'offices': [{'description': '', 'address1': '2800 Bridge Parkway', 'address2': '', 'zip_code': '94065', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 20317, 'description': 'Shutterfly Announces Departure of CFO Mark Rubash', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 12, 'source_url': 'http://www.freshnews.com/news/597832/shutterfly-announces-departure-cfo-mark-rubash', 'source_text': '', 'source_description': 'Shutterfly Announces Departure of CFO Mark Rubash', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Shutterfly', 'permalink': 'shutterfly'}}], 'ipo': {'valuation_amount': 350000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 29, 'stock_symbol': 'SFLY'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.shutterfly.com/photo-books', 'title': 'Photo Books'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/christmas-cards', 'title': 'Christmas Cards'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/invitations', 'title': 'Invitations'}, {'external_url': 'http://www.shutterfly.com/cards-stationery/holiday-cards', 'title': 'Holiday Cards'}, {'external_url': 'http://www.shutterfly.com/photo-gifts/custom-iphone-cases', 'title': 'iPhone Cases'}, {'external_url': 'http://www.shutterfly.com/photo-gifts/wall-art', 'title': 'Wall Art'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529823b'), 'name': 'Salesforce', 'permalink': 'salesforce', 'crunchbase_url': 'http://www.crunchbase.com/company/salesforce', 'homepage_url': 'http://www.salesforce.com', 'blog_url': 'http://blogs.salesforce.com', 'blog_feed_url': 'http://blogs.salesforce.com/blogs/atom.xml', 'twitter_username': 'salesforce', 'category_code': 'enterprise', 'number_of_employees': 3500, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'cloud, enterprise, oracle', 'alias_list': '', 'email_address': 'info@salesforce.com', 'phone_number': '415-901-7000', 'description': 'Enterprise Cloud Computing', 'created_at': 'Mon Feb 11 21:21:16 UTC 2008', 'updated_at': 'Wed Dec 18 01:46:25 UTC 2013', 'overview': '

Salesforce is an enterprise cloud computing company that provides business software on a subscription basis. The company is best known for its on-demand Customer Relationship Management (CRM) solutions.

\\n\\n

Salesforce was founded in 1999 by former Oracle executive Marc Benioff, and went public in June 2004. Salesforce has been a pioneer in developing enterprise platforms through its innovative AppExchange directory of on-demand applications, and its Force.com “Platform as a Service” (PaaS) API for extending Salesforce.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/1691/11691v12-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0001/1691/11691v12-max-250x250.jpg'], [[250, 250], 'assets/images/resized/0001/1691/11691v12-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Sales Cloud', 'permalink': 'salesforce-com'}, {'name': 'Salesforce AppExchange', 'permalink': 'salesforce-appexchange'}, {'name': 'Force.com', 'permalink': 'force-com'}, {'name': 'Service Cloud', 'permalink': 'service-cloud'}, {'name': 'Salesforce Chatter', 'permalink': 'salesforce-chatter'}, {'name': 'Salesforce Marketing Cloud', 'permalink': 'salesforce-marketing-cloud'}, {'name': 'Salesforce1', 'permalink': 'salesforce1'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Craig', 'last_name': 'Conway', 'permalink': 'craig-conway'}}, {'is_past': False, 'title': 'Vice Chairman', 'person': {'first_name': 'Frank', 'last_name': 'van Veenendaal', 'permalink': 'frank-van-veenendaal'}}, {'is_past': False, 'title': 'Founder, Chairman & CEO', 'person': {'first_name': 'Marc', 'last_name': 'Benioff', 'permalink': 'marc-benioff'}}, {'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'JP', 'last_name': 'Rangasawami', 'permalink': 'jp-rangasawami'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Gavin', 'last_name': 'Uhma', 'permalink': 'gavin-uhma'}}, {'is_past': False, 'title': 'Chief Adoption Officer', 'person': {'first_name': 'Polly', 'last_name': 'Sumner', 'permalink': 'polly-sumner'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'JP', 'last_name': 'Rangaswami', 'permalink': 'jp-rangaswami'}}, {'is_past': False, 'title': 'CFO & EVP', 'person': {'first_name': 'Graham', 'last_name': 'Smith', 'permalink': 'graham-smith'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Andrew', 'last_name': 'Baer', 'permalink': 'andrew-baer'}}, {'is_past': False, 'title': 'SVP Alliances & Strategy', 'person': {'first_name': 'Ryan', 'last_name': 'Aytay', 'permalink': 'ryan-aytay'}}, {'is_past': False, 'title': 'Former Senior Vice President and Treasure', 'person': {'first_name': 'Larry', 'last_name': 'Tomlinson', 'permalink': 'larry-tomlinson'}}, {'is_past': False, 'title': 'VP Premier Success Plans', 'person': {'first_name': 'Randy', 'last_name': 'Wootton', 'permalink': 'randy-wootton'}}, {'is_past': False, 'title': 'VP Salesforce', 'person': {'first_name': 'Jevon', 'last_name': 'MacDonald', 'permalink': 'jevon-macdonald'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Legal Officer', 'person': {'first_name': 'Burke', 'last_name': 'Norton', 'permalink': 'burke-norton'}}, {'is_past': False, 'title': 'Vice President of Engineering', 'person': {'first_name': 'Raj', 'last_name': 'Vemulapalli', 'permalink': 'raj-vemulapalli'}}, {'is_past': False, 'title': 'VP, Partner Development & Investments', 'person': {'first_name': 'Sherrick', 'last_name': 'Murdoff', 'permalink': 'sherrick-murdoff'}}, {'is_past': False, 'title': 'VP and GM | Desk.com', 'person': {'first_name': 'Alex', 'last_name': 'Bard', 'permalink': 'alex-bard'}}, {'is_past': False, 'title': 'Senior Vice President, Enterprise Commercial Sales, Americas', 'person': {'first_name': 'Jeff', 'last_name': 'Lautenbach', 'permalink': 'jeff-lautenbach'}}, {'is_past': False, 'title': 'Senior VP AppExchange', 'person': {'first_name': 'Steve', 'last_name': 'Fisher', 'permalink': 'steve-fisher'}}, {'is_past': False, 'title': 'Co-Founder, EVP Technology', 'person': {'first_name': 'Parker', 'last_name': 'Harris', 'permalink': 'parker-harris'}}, {'is_past': False, 'title': 'EVP, Law, Policy, and Corporate Strategy', 'person': {'first_name': 'Kenneth', 'last_name': 'I. Juster', 'permalink': 'kenneth-i-juster'}}, {'is_past': False, 'title': 'Senior Director, Products', 'person': {'first_name': 'Steve', 'last_name': 'Chazin', 'permalink': 'steve-chazin'}}, {'is_past': False, 'title': 'VP, Open Cloud Standards', 'person': {'first_name': 'Kevin', 'last_name': 'Marks', 'permalink': 'kevin-marks'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Talieh', 'last_name': 'Rohani', 'permalink': 'talieh-rohani'}}, {'is_past': False, 'title': 'Sr. Director, Finance & Strategy', 'person': {'first_name': 'Naeem', 'last_name': 'Ishaq', 'permalink': 'naeem-ishaq'}}, {'is_past': False, 'title': 'President, Sales and Customer Success', 'person': {'first_name': 'Maria', 'last_name': 'Martinez', 'permalink': 'maria-martinez'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Sanford', 'last_name': 'R. Robertson', 'permalink': 'sanford-r-robertson'}}, {'is_past': False, 'title': 'LMTS, Quality Engineering', 'person': {'first_name': 'Dave', 'last_name': 'Kim', 'permalink': 'dave-kim'}}, {'is_past': False, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Madhubabu', 'last_name': 'Sandara', 'permalink': 'madhubabu-sandara'}}, {'is_past': False, 'title': 'Director, Product - Work.com', 'person': {'first_name': 'Joe', 'last_name': 'Ryan', 'permalink': 'joe-ryan'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Alan', 'last_name': 'Hassenfeld', 'permalink': 'alan-hassenfeld'}}, {'is_past': False, 'title': 'Chairmen', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': False, 'title': 'Sr. Cloud Technologist', 'person': {'first_name': 'Randy', 'last_name': 'Goh', 'permalink': 'randy-goh'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'Daniel', 'last_name': 'Debow', 'permalink': 'daniel-debow'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Himanshu', 'last_name': '(Heman) Pagey', 'permalink': 'himanshu-heman-pagey'}}, {'is_past': False, 'title': 'Chief Customer Officer and President of International Operations', 'person': {'first_name': 'Jim', 'last_name': 'Steele', 'permalink': 'jim-steele'}}, {'is_past': False, 'title': 'Sr. Unix Systems Administrator', 'person': {'first_name': 'Claude', 'last_name': 'Johnson', 'permalink': 'claude-johnson'}}, {'is_past': False, 'title': 'EVP of emerging markets', 'person': {'first_name': 'Vivek', 'last_name': 'Kundra', 'permalink': 'vivek-kundra'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Maynard', 'last_name': 'Webb', 'permalink': 'maynard-webb'}}, {'is_past': False, 'title': 'President, Global Enterprise', 'person': {'first_name': 'Blair', 'last_name': 'Crump', 'permalink': 'blair-crump'}}, {'is_past': False, 'title': 'Foundation Board Member', 'person': {'first_name': 'Rebeca', 'last_name': 'Enonchong', 'permalink': 'rebeca-enonchong'}}, {'is_past': False, 'title': 'Senior Member of Technical Staff', 'person': {'first_name': 'Kirk', 'last_name': 'MacPhee', 'permalink': 'kirk-macphee'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Ben', 'last_name': 'Yoskovitz', 'permalink': 'ben-yoskovitz'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Craig', 'last_name': 'Ramsey', 'permalink': 'craig-ramsey'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Hilarie', 'last_name': 'Koplow-McAdams', 'permalink': 'hilarie-koplow-mcadams'}}, {'is_past': False, 'title': 'Partner', 'person': {'first_name': 'Stratton', 'last_name': 'Sclavos', 'permalink': 'stratton-sclavos-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Shirley', 'last_name': 'Young', 'permalink': 'shirley-young'}}, {'is_past': False, 'title': 'Sr. Dir Product Management, API & Data Platform - data.com', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Scott', 'last_name': 'Sandell', 'permalink': 'scott-sandell'}}, {'is_past': True, 'title': 'CEO, GM of Jigsaw division', 'person': {'first_name': 'Kevin', 'last_name': 'Akeroyd', 'permalink': 'kevin-akeroyd'}}, {'is_past': True, 'title': 'CTO, CRM', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Kraig', 'last_name': 'Swensrud', 'permalink': 'kraig-swensrud'}}, {'is_past': True, 'title': 'President & Chief Strategy Officer', 'person': {'first_name': 'Steve', 'last_name': 'Cakebread', 'permalink': 'steve-cakebread'}}, {'is_past': True, 'title': 'VP HR for both EMEA and International', 'person': {'first_name': 'Jane', 'last_name': 'Pointet', 'permalink': 'jane-pointet'}}, {'is_past': True, 'title': 'VP Engineering', 'person': {'first_name': 'Brian', 'last_name': 'Zotter', 'permalink': 'brian-zotter'}}, {'is_past': True, 'title': 'SVP EMEA', 'person': {'first_name': 'Fergus', 'last_name': 'Gloster', 'permalink': 'fergus-gloster'}}, {'is_past': True, 'title': 'Area Vice President, Mid Atlantic & Public Sector', 'person': {'first_name': 'Barton', 'last_name': 'Phillips', 'permalink': 'barton-phillips'}}, {'is_past': True, 'title': 'Senior Vice President, Finance & Strategy', 'person': {'first_name': 'Sarah', 'last_name': 'Friar', 'permalink': 'sarah-friar'}}, {'is_past': True, 'title': 'GM & Vice President, Salesforce.com, Mobile', 'person': {'first_name': 'Charles', 'last_name': 'Dietrich', 'permalink': 'charles-dietrich'}}, {'is_past': True, 'title': 'Senior Vice-President and General Manager, AppExchange and Developer Relations', 'person': {'first_name': 'Rene', 'last_name': 'Bonvanie', 'permalink': 'rene-bonvanie'}}, {'is_past': True, 'title': 'Executive Vice President of Enterprise Sales', 'person': {'first_name': 'Dave', 'last_name': 'Orrico', 'permalink': 'dave-orrico'}}, {'is_past': True, 'title': 'Senior Vice President of Technology', 'person': {'first_name': 'Peter', 'last_name': 'Gassner', 'permalink': 'peter-gassner'}}, {'is_past': True, 'title': 'SVP, Global Enterprise & Public Sector Sales', 'person': {'first_name': 'Judi', 'last_name': 'Feeley', 'permalink': 'judi-feeley'}}, {'is_past': True, 'title': 'Vice President, Alliances', 'person': {'first_name': 'Rob', 'last_name': 'Brewster', 'permalink': 'rob-brewster'}}, {'is_past': True, 'title': 'VP, Product Alliances & Strategy, Salesforce Marketing Cloud', 'person': {'first_name': 'Ed', 'last_name': 'Sullivan', 'permalink': 'ed-sullivan'}}, {'is_past': True, 'title': 'EVP, Platform', 'person': {'first_name': 'Byron', 'last_name': 'Sebastian', 'permalink': 'byron-sebastian'}}, {'is_past': True, 'title': 'VP of Call Center Technology', 'person': {'first_name': 'Jim', 'last_name': 'Dvorkin', 'permalink': 'jim-dvorkin'}}, {'is_past': True, 'title': 'Regional Vice President Sales', 'person': {'first_name': 'Mike', 'last_name': 'Gaffney', 'permalink': 'mike-gaffney'}}, {'is_past': True, 'title': 'VP Product Marketing', 'person': {'first_name': 'Rob', 'last_name': 'Begg', 'permalink': 'rob-begg'}}, {'is_past': True, 'title': 'Regional Vice President', 'person': {'first_name': 'Kevin', 'last_name': 'Dew', 'permalink': 'kevin-dew'}}, {'is_past': True, 'title': 'SVP/GM, Service Cloud', 'person': {'first_name': 'Dave', 'last_name': 'Kellogg', 'permalink': 'dave-kellogg'}}, {'is_past': True, 'title': 'VP, Product Management', 'person': {'first_name': 'Laura', 'last_name': 'Fay', 'permalink': 'laura-fay'}}, {'is_past': True, 'title': 'VP Systems Architecture', 'person': {'first_name': 'Max', 'last_name': 'Rayner', 'permalink': 'max-rayner'}}, {'is_past': True, 'title': 'Sr. VP Development', 'person': {'first_name': 'Todd', 'last_name': 'McKinnon', 'permalink': 'todd-mckinnon'}}, {'is_past': True, 'title': 'VP, Platform and Developer Marketing', 'person': {'first_name': 'Adam', 'last_name': 'Gross', 'permalink': 'adam-gross'}}, {'is_past': True, 'title': 'EVP for Enterprise Sales', 'person': {'first_name': 'Garry', 'last_name': 'Hanna', 'permalink': 'garry-hanna'}}, {'is_past': True, 'title': 'Vice President of Financial Planning', 'person': {'first_name': 'Bob', 'last_name': 'Feller', 'permalink': 'bob-feller'}}, {'is_past': True, 'title': 'EVP, Marketing, Applications, and Education', 'person': {'first_name': 'George', 'last_name': 'Hu', 'permalink': 'george-hu'}}, {'is_past': True, 'title': 'President, Platform, Alliances, and Services', 'person': {'first_name': 'Polly', 'last_name': 'Sumner', 'permalink': 'polly-sumner'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Casey', 'last_name': 'Ho', 'permalink': 'casey-ho'}}, {'is_past': True, 'title': 'EVP Enterprise Sales Americas', 'person': {'first_name': 'Doug', 'last_name': 'Dennerline', 'permalink': 'doug-dennerline'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Kingsley', 'last_name': 'Joseph', 'permalink': 'kingsley-joseph'}}, {'is_past': True, 'title': 'VP, Customers for Life', 'person': {'first_name': 'Maria', 'last_name': 'Martinez', 'permalink': 'maria-martinez'}}, {'is_past': True, 'title': 'Senior VP of Development', 'person': {'first_name': 'Todd', 'last_name': 'McKinnon', 'permalink': 'todd-mckinnon'}}, {'is_past': True, 'title': 'Senior Technical Recruiter', 'person': {'first_name': 'Joe', 'last_name': 'Cheung', 'permalink': 'joseph-cheung'}}, {'is_past': True, 'title': 'Product Strategy & Investor Relations', 'person': {'first_name': 'Dominic', 'last_name': 'Paschel', 'permalink': 'dominic-paschel-2'}}, {'is_past': True, 'title': 'Senior Director Marketing', 'person': {'first_name': 'Joerg', 'last_name': 'Rathenberg', 'permalink': 'joerg-rathenberg'}}, {'is_past': True, 'title': 'Sr Dir. Chatter Development', 'person': {'first_name': 'Jari', 'last_name': 'Koister', 'permalink': 'jari-koister'}}, {'is_past': True, 'title': 'FP&A', 'person': {'first_name': 'John', 'last_name': 'McGuire', 'permalink': 'john-mcguire'}}, {'is_past': True, 'title': 'Senior Director, Mergers & Acquisitions', 'person': {'first_name': 'Ron', 'last_name': 'Pragides', 'permalink': 'ron-pragides'}}, {'is_past': True, 'title': 'Director, Quality Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Davis', 'permalink': 'mark-davis-9'}}, {'is_past': True, 'title': 'Principal Architect', 'person': {'first_name': 'Steven', 'last_name': 'Tamm', 'permalink': 'steven-tamm'}}, {'is_past': True, 'title': 'Director, User Experience', 'person': {'first_name': 'Catherine', 'last_name': 'Courage', 'permalink': 'catherine-courage'}}, {'is_past': True, 'title': 'Director, Product Management, Service Cloud', 'person': {'first_name': 'Marco', 'last_name': 'Casalaina', 'permalink': 'marco-casalaina'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Paul', 'last_name': 'Hsiao', 'permalink': 'paul-hsiao'}}, {'is_past': True, 'title': 'Sr. Business Analyst eServices Portal', 'person': {'first_name': 'Marcus', 'last_name': 'James', 'permalink': 'marcus-james'}}, {'is_past': True, 'title': 'Senior Member Technical Staff', 'person': {'first_name': 'Bonan', 'last_name': 'Zheng', 'permalink': 'bonan-zheng'}}, {'is_past': True, 'title': 'Director, Product Marketing', 'person': {'first_name': 'Ken', 'last_name': 'Osborn', 'permalink': 'ken-osborn'}}, {'is_past': True, 'title': 'Senior Director Professional Services South EMEA', 'person': {'first_name': 'Pascal', 'last_name': 'Gaude', 'permalink': 'pascal-gaude'}}, {'is_past': True, 'title': 'Lead Member of Technical Staff', 'person': {'first_name': 'John', 'last_name': 'Agan', 'permalink': 'john-agan'}}, {'is_past': True, 'title': 'Sr. Director, Marketing Programs', 'person': {'first_name': 'Kimberley', 'last_name': 'Kasper', 'permalink': 'kimberley-kasper'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Jim', 'last_name': 'Yu', 'permalink': 'jim-yu'}}, {'is_past': True, 'title': 'Director, Product Marketing & Management', 'person': {'first_name': 'Nadim', 'last_name': 'Hossain', 'permalink': 'nadim-hossain'}}, {'is_past': True, 'title': 'Manager, Inside Sales - West', 'person': {'first_name': 'Ivonne', 'last_name': 'Marie Orillac', 'permalink': 'ivonne-marie-orillac'}}, {'is_past': True, 'title': 'Sr. Director of Community', 'person': {'first_name': 'Garth', 'last_name': 'Moulton', 'permalink': 'garth-moulton'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Dominic', 'last_name': 'Dinardo', 'permalink': 'dominic-dinardo'}}, {'is_past': True, 'title': 'Senior Developer', 'person': {'first_name': 'Eric', 'last_name': 'Chan', 'permalink': 'eric-chan-3'}}, {'is_past': True, 'title': 'Director of Product Management, iOS', 'person': {'first_name': 'Tedd', 'last_name': 'Fox', 'permalink': 'tedd-fox'}}, {'is_past': True, 'title': 'Senior Development Director', 'person': {'first_name': 'Matt', 'last_name': 'Ho', 'permalink': 'matt-ho'}}, {'is_past': True, 'title': 'Corporate Services', 'person': {'first_name': 'Dan', 'last_name': 'McLennan', 'permalink': 'dan-mclennan'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Scott', 'last_name': 'Perket', 'permalink': 'scott-perket'}}, {'is_past': True, 'title': 'Strategic Account Executive Data.com, Account Executive - General Business', 'person': {'first_name': 'Dennis', 'last_name': 'Bricker', 'permalink': 'dennis-bricker'}}, {'is_past': True, 'title': 'VP Product', 'person': {'first_name': 'Maksim', 'last_name': 'Ovsyannikov', 'permalink': 'maksim-ovsyannikov'}}, {'is_past': True, 'title': 'Technical Leader', 'person': {'first_name': 'Ryan', 'last_name': 'Marples', 'permalink': 'ryan-marples'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sion', 'last_name': 'Lewis', 'permalink': 'sion-lewis'}}, {'is_past': True, 'title': 'Technical Consultant', 'person': {'first_name': 'Venkat', 'last_name': 'Gattamaneni', 'permalink': 'venkat-gattamaneni'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Srini', 'last_name': 'Vishnubatta', 'permalink': 'srini-vishnubatta'}}, {'is_past': True, 'title': 'President, Global Corporate Sales and North American Operations', 'person': {'first_name': 'Frank', 'last_name': 'van Veenendaal', 'permalink': 'frank-van-veenendaal'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lew', 'last_name': 'Tucker', 'permalink': 'lew-tucker'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Somrat', 'last_name': 'Niyogi', 'permalink': 'somrat-nyogi'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ariel', 'last_name': 'Luedi', 'permalink': 'ariel-luedi'}}, {'is_past': True, 'title': 'Sales & Business Development', 'person': {'first_name': 'Frederic', 'last_name': 'Kerrest', 'permalink': 'frederic-kerrest'}}, {'is_past': True, 'title': 'Director of Social Media', 'person': {'first_name': 'Marcus', 'last_name': 'Nelson', 'permalink': 'marcus-nelson'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'George', 'last_name': 'Mathew', 'permalink': 'george-mathew'}}, {'is_past': True, 'title': 'Director, AppExchange Product Line Management', 'person': {'first_name': 'Clara', 'last_name': 'Shih', 'permalink': 'clara-shih'}}, {'is_past': True, 'title': 'Sr. Dir Technology Partnerships', 'person': {'first_name': 'Ali', 'last_name': 'Sadat', 'permalink': 'ali-sadat'}}, {'is_past': True, 'title': 'Regional Manager Southern Europe', 'person': {'first_name': 'Drew', 'last_name': 'Bartkiewicz', 'permalink': 'drew-bartkiewicz'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Janson', 'permalink': 'mike-janson'}}, {'is_past': True, 'title': 'Corporate Sales Representative', 'person': {'first_name': 'Jeremy', 'last_name': 'Poteck', 'permalink': 'jeremy-poteck'}}, {'is_past': True, 'title': 'Lead Software Engineer', 'person': {'first_name': 'Dan', 'last_name': 'Kador', 'permalink': 'dan-kador'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Theodore', 'last_name': 'Summe', 'permalink': 'theodore-summe'}}, {'is_past': True, 'title': 'Managing Principal', 'person': {'first_name': 'Suren', 'last_name': 'Hiraman', 'permalink': 'suren-hiraman'}}, {'is_past': True, 'title': 'Sr. Director, Product Marketing', 'person': {'first_name': 'Andrew', 'last_name': 'Savitz', 'permalink': 'andrew-savitz'}}, {'is_past': True, 'title': 'Board Of Directors', 'person': {'first_name': 'Allen', 'last_name': 'Miner', 'permalink': 'allen-miner'}}, {'is_past': True, 'title': 'Enterprise Business Representative', 'person': {'first_name': 'Daniel', 'last_name': 'Gibson', 'permalink': 'daniel-gibson'}}, {'is_past': True, 'title': 'Sr. Account Executive', 'person': {'first_name': 'Dan', 'last_name': 'Wardle', 'permalink': 'dan-wardle'}}, {'is_past': True, 'title': 'Regional Vice President North East', 'person': {'first_name': 'Michael', 'last_name': 'Shea', 'permalink': 'michael-shea'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Jason', 'last_name': 'Beckerman', 'permalink': 'jason-beckerman'}}, {'is_past': True, 'title': 'SVP Strat Partnerships', 'person': {'first_name': 'Crid', 'last_name': 'Yu', 'permalink': 'crid-yu'}}, {'is_past': True, 'title': 'Member of Technical Staff', 'person': {'first_name': 'Rahul', 'last_name': 'Malik', 'permalink': 'rahul-malik-2'}}, {'is_past': True, 'title': 'Director, Product Line Management', 'person': {'first_name': 'Brad', 'last_name': 'Mattick', 'permalink': 'brad-mattick'}}, {'is_past': True, 'title': 'Aadvisor', 'person': {'first_name': 'Geoffrey', 'last_name': 'Moore', 'permalink': 'geoffrey-moore-2'}}, {'is_past': True, 'title': 'Corporate FP&A', 'person': {'first_name': 'Saravanan', 'last_name': 'Chettiar', 'permalink': 'saravanan-chettiar'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Frank', 'last_name': 'Defesche', 'permalink': 'frank-defesche'}}, {'is_past': True, 'title': 'Various Positions', 'person': {'first_name': 'Mitch', 'last_name': 'Wallace', 'permalink': 'mitch-wallace'}}, {'is_past': True, 'title': 'Software engineer', 'person': {'first_name': 'Tommy', 'last_name': 'Hui', 'permalink': 'tommy-hui'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Adrian', 'last_name': 'Kunzle', 'permalink': 'adrian-kunzle'}}, {'is_past': True, 'title': 'Principle Member, Technical Staff', 'person': {'first_name': 'Chien', 'last_name': 'Liang Chou', 'permalink': 'chien-liang-chou'}}, {'is_past': True, 'title': 'Corporate Services Sales', 'person': {'first_name': 'Dan', 'last_name': 'McLennan', 'permalink': 'dan-mclennan'}}, {'is_past': True, 'title': 'Senior Director, Delivery Excellence', 'person': {'first_name': 'Erin', 'last_name': 'Craig', 'permalink': 'erin-craig'}}, {'is_past': True, 'title': 'Area Vice President - Service Cloud EMEA', 'person': {'first_name': 'Matt', 'last_name': 'Tuson', 'permalink': 'matt-tuson'}}, {'is_past': True, 'title': 'Operations', 'person': {'first_name': 'David', 'last_name': 'Hamdani', 'permalink': 'david-hamdani'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Phill', 'last_name': 'Robinson', 'permalink': 'phill-robinson'}}, {'is_past': True, 'title': 'Senior Director, Software Engineering', 'person': {'first_name': 'Ron', 'last_name': 'Pragides', 'permalink': 'ron-pragides'}}, {'is_past': True, 'title': 'Director, Marketing', 'person': {'first_name': 'Jon', 'last_name': 'McGinley', 'permalink': 'jon-mcginley'}}], 'competitions': [{'competitor': {'name': 'Senokian', 'permalink': 'senokian'}}, {'competitor': {'name': 'BEA Systems', 'permalink': 'bea-systems'}}, {'competitor': {'name': 'SAP', 'permalink': 'sap'}}, {'competitor': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'UserVoice', 'permalink': 'uservoice'}}, {'competitor': {'name': 'SuggestionBox.com', 'permalink': 'suggestionbox'}}, {'competitor': {'name': 'RightNow Technologies', 'permalink': 'rightnow-technologies'}}, {'competitor': {'name': 'INES CRM', 'permalink': 'ines-crm'}}, {'competitor': {'name': 'Sugar CRM', 'permalink': 'sugar-crm'}}, {'competitor': {'name': 'Helpshift, Inc.', 'permalink': 'helpshift-inc'}}, {'competitor': {'name': 'Cybozu, Inc.', 'permalink': 'cybozu-inc'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'The OutCast Agency', 'permalink': 'outcast-communications'}}, {'title': 'Legal', 'is_past': False, 'provider': {'name': 'Baker & McKenzie', 'permalink': 'baker-mckenzie'}}], 'total_money_raised': '$99.9M', 'funding_rounds': [{'id': 2041, 'round_code': 'seed', 'source_url': 'http://www.redherring.com/Home/5202', 'source_description': 'Red Herring', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Larry', 'last_name': 'Ellison', 'permalink': 'larry-ellison'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Halsey', 'last_name': 'Minor', 'permalink': 'halsey-minor'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Magdalena', 'last_name': 'Yesil', 'permalink': 'magdalena-yesil'}}]}, {'id': 2042, 'round_code': 'a', 'source_url': 'http://www.redherring.com/Home/5202', 'source_description': 'Red Herring', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 12, 'funded_day': 2, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'William', 'last_name': 'Hambrecht', 'permalink': 'william-hambrecht'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Patrick', 'last_name': 'McGovern', 'permalink': 'patrick-mcgovern'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'John', 'last_name': 'Friedenrich', 'permalink': 'john-friedenrich'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Igor', 'last_name': 'Sill', 'permalink': 'igor-sill'}}]}, {'id': 40005, 'round_code': 'private_equity', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1108524/000120919113031755/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 78916337, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 12, 'investments': []}, {'id': 58534, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 10, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Sunbridge Partners', 'permalink': 'sunbridge-partners'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'a', 'source_url': 'http://www.foxbusiness.com/story/markets/industries/technology/sequoia-capital-invests-appirio-accelerate-adoption-demand/', 'source_description': 'Sequoia Capital Invests in Appirio to Accelerate the Adoption of On-Demand ', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 3, 'funded_day': 13, 'company': {'name': 'Appirio', 'permalink': 'appirio'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.practicefusion.com/pages/pr/080509_release.html', 'source_description': 'Practice Fusion Announces Investment from Salesforce.com and Cloud Computing Initiative', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 8, 'funded_day': 5, 'company': {'name': 'Practice Fusion', 'permalink': 'practice-fusion'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2010/04/13/saas-field-service-software-servicemax-raises-10-million-from-salesforce-and-others/', 'source_description': 'SaaS Field Service Software ServiceMax Raises $8 Million From Salesforce And Others ', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 15, 'company': {'name': 'ServiceMax', 'permalink': 'servicemax'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/12/08/docusign-funding/', 'source_description': 'E-Signature Company DocuSign Lands $27 Million, Expands Management Team', 'raised_amount': 27000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 12, 'funded_day': 8, 'company': {'name': 'DocuSign', 'permalink': 'docusign'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/02/01/social-application-developer-seesmic-raises-4-million-from-softbank-and-salesforce-com/', 'source_description': 'Social Application Developer Seesmic Raises $4M From SoftBank And Salesforce', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 2, 'funded_day': 1, 'company': {'name': 'Seesmic', 'permalink': 'seesmic'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/03/08/hubspot-takes-32-million-investment-from-sequoia-google-ventures-and-salesforce/', 'source_description': '', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 8, 'company': {'name': 'HubSpot', 'permalink': 'hubspot'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2011/01/04/assistly-scores-3-million-more-for-fast-growing-saas-customer-service-product/', 'source_description': '', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 4, 'company': {'name': 'Desk', 'permalink': 'assistly'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2011/06/08/saas-field-service-software-servicemax-raises-14m-from-mayfield-salesforce-and-others/', 'source_description': 'SaaS Field Service Software ServiceMax Raises $14M From Mayfield, Salesforce And Others', 'raised_amount': 14000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 8, 'company': {'name': 'ServiceMax', 'permalink': 'servicemax'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1461356/000146135610000002/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 5019998, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 1, 'funded_day': 6, 'company': {'name': 'Practice Fusion', 'permalink': 'practice-fusion'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2011/08/24/mobile-enterprise-apps-developer-taptera-raises-2-million-from-salesforce-angels/', 'source_description': 'Mobile Enterprise Apps Developer Taptera Raises $2 Million From Salesforce, Angels', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 24, 'company': {'name': 'Taptera', 'permalink': 'taptera'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.finsmes.com/2011/08/kenandy-closes-10-5m-series-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'Kenandy Closes $10.5M Series A Funding', 'raised_amount': 10500000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 8, 'funded_day': 29, 'company': {'name': 'Kenandy', 'permalink': 'kenandy'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2011/09/800app-closes-series-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': '800App Closes Series B Round of Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 9, 'funded_day': 21, 'company': {'name': '800APP', 'permalink': '800app'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/10/11/cloud-storage-platform-box-net-raises-81m-from-salesforce-sap-at-600m-plus-valuation/', 'source_description': 'Cloud Storage Platform Box.net Raises $81M From Salesforce, SAP At $600M-Plus Valuation', 'raised_amount': 81000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 28, 'company': {'name': 'Box', 'permalink': 'box'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/10/11/checkmarx-raises-funding-from-salesforce-com-ofer-hi-tech/', 'source_description': 'Checkmarx Raises Funding From Salesforce.com, Ofer Hi-Tech', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 10, 'company': {'name': 'Checkmarx', 'permalink': 'checkmarx'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://gigaom.com/2011/11/06/urban-airship-raises-15-1m-for-mobile-engagement-platform/', 'source_description': 'GigaOm', 'raised_amount': 15100000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 11, 'funded_day': 7, 'company': {'name': 'Urban Airship', 'permalink': 'urban-airship'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/01/05/andreessen-horowitz-salesforce-put-1-4m-in-real-time-messaging-infrastructure-startup-flotype/', 'source_description': 'Andreessen Horowitz, Salesforce Put $1.4M In Real-Time Messaging Infrastructure Startup Flotype', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 1, 'funded_day': 5, 'company': {'name': 'Flotype', 'permalink': 'flotype'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/25/ark-seed-round/', 'source_description': 'Ark Raised $4.2 Million Seed Round Instead Of Series A To \"Keep Complete Control\" Of Its People Search Engine ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 25, 'company': {'name': 'Ark', 'permalink': 'ark'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.bizjournals.com/boston/blog/startups/2012/05/insightsquared-raises-45m-salesforce.html', 'source_description': 'Fast-growing InsightSquared raises $4.5M to expand its BI for small biz', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'InsightSquared', 'permalink': 'insightsquared'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.benzinga.com/pressreleases/12/06/b2683010/hoopla-closes-2-8-million-series-a-financing-adds-more-than-25-new-cust', 'source_description': 'Hoopla Closes $2.8 Million Series A Financing, Adds More Than 25 New Customers', 'raised_amount': 2800000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 6, 'funded_day': 20, 'company': {'name': 'Hoopla Software', 'permalink': 'hoopla-software'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/07/24/chute-seed-round/', 'source_description': 'YC-Backed Chute Nabs $2.7M From Salesforce & More To Become The Twilio For Media Content', 'raised_amount': 2700000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 7, 'funded_day': 24, 'company': {'name': 'Chute', 'permalink': 'chute'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.finsmes.com/2012/09/bigmachines-raises-funding.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+finsmes%2FcNHu+%28FinSMEs%29', 'source_description': 'BigMachines Raises Funding', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2012, 'funded_month': 9, 'funded_day': 18, 'company': {'name': 'BigMachines', 'permalink': 'bigmachines'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/10/29/resumator-raises-2-1m-series-b-round-led-by-birchmere-rincon-partners-salesforce/', 'source_description': 'Hiring Platform The Resumator Raises $2.1M Series B Round Led By Birchmere Ventures, Rincon Ventures Partners & Salesforce', 'raised_amount': 2100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 30, 'company': {'name': 'The Resumator', 'permalink': 'the-resumator'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2013/01/14/janrain-raises-33m-from-salesforce-and-others-for-social-log-in-management-platform/', 'source_description': 'Janrain Raises $33M From Salesforce, And Others For Social Log-In Management Platform', 'raised_amount': 33000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 14, 'company': {'name': 'Janrain', 'permalink': 'janrain'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/12/11/zenpayroll-launches-cloud-based-payroll-service-with-6-1m-in-seed-funding-from-the-ceos-at-yammer-box-yelp-and-dropbox/', 'source_description': 'ZenPayroll Launches Cloud-Based Payroll Service With $6.1M In Seed Funding From CEOs At Yammer, Box, Yelp And Dropbox', 'raised_amount': 6100000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 12, 'company': {'name': 'ZenPayroll', 'permalink': 'zenpayroll'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2012/08/28/enterprise-app-testing-platform-sauce-labs-raises-3m-from-salesforce-and-triage-ventures/', 'source_description': 'Enterprise App Testing Platform Sauce Labs Raises $3M From Salesforce And Triage Ventures', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 8, 'funded_day': 27, 'company': {'name': 'Sauce Labs', 'permalink': 'sauce-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/03/06/discoverly-seed-funding/', 'source_description': 'Discoverly Nabs $750K From Salesforce, Bessemer, And Others For Stealthy Social Enterprise App', 'raised_amount': 750000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 6, 'company': {'name': 'Discoverly', 'permalink': 'discoverly'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://www.mulesoft.com/raises-37-million-connect-new-enterprise', 'source_description': 'MuleSoft Raises $37 Million to Connect the New Enterprise', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 3, 'company': {'name': 'MuleSoft', 'permalink': 'mulesource'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.reuters.com/article/2013/06/10/us-kenandy-funding-venture-idUSBRE95905U20130610?feedType=RSS&feedName=technologyNews', 'source_description': 'Manman founder raises $33 million for latest software company', 'raised_amount': 33000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 6, 'funded_day': 10, 'company': {'name': 'Kenandy', 'permalink': 'kenandy'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/05/04/salesforce-joins-datahugs-4m-series-a-while-valley-vcs-love-its-who-knows-who-platform/', 'source_description': 'Salesforce Joins Datahug’s $4M Series-A, While Valley VCs Love Its ‘Who Knows Who’ Platform', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'Datahug', 'permalink': 'datahug'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/30/grid-an-app-that-helps-you-organize-ideas-and-projects-announces-a-seed-round-from-jerry-yang-phil-libin-others/', 'source_description': 'Grid, An App That Helps You Organize Ideas And Projects, Announces A Seed Round From Jerry Yang, Phil Libin, Others', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 30, 'company': {'name': 'Binary Thumb', 'permalink': 'binary-thumb'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130717e97haongz&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130717e97haongz%26from%3dalert%26pid%3d32', 'source_description': \"Apportable Raises $2.4M Led by Google Ventures to 'Translate' Apps from IOS to Android \", 'raised_amount': 2400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': None, 'company': {'name': 'Apportable', 'permalink': 'apportable'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/27/heap-raises-2m-for-their-capture-everything-analytics-tool/', 'source_description': 'Heap Raises $2M For Their “Capture Everything” Analytics Tool', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 27, 'company': {'name': 'Heap', 'permalink': 'heap'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2013/09/09/leveleleven-raises-2m-for-sales-motivation-app-from-salesforce-com-a-former-nba-star-and-an-nfl-offensive-tackle/', 'source_description': 'LevelEleven Raises $2M For Sales Motivation App From Salesforce.com, A Former NBA Star And An NFL Offensive Tackle', 'raised_amount': 2000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 1, 'company': {'name': 'LevelEleven', 'permalink': 'leveleleven'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/09/18/apptus-raises-37m-for-platform-that-automates-the-quote-to-cash-process/', 'source_description': 'Apttus Raises $37M For Platform That Automates The “Quote To Cash” Process', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 17, 'company': {'name': 'Apttus', 'permalink': 'apttus'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.prnewswire.com/news-releases/social-selling-platform-introhive-announces-expansion-of-latest-funding-round-226118731.html', 'source_description': 'Salesforce.com Invests In Introhive, A Startup Filled With Former Radian6 And Blackberry Employees ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 2, 'company': {'name': 'Introhive', 'permalink': 'introhive'}}}, {'funding_round': {'round_code': 'f', 'source_url': 'http://techcrunch.com/2013/10/04/mongodb-raises-150m-for-nosql-database-technology-with-salesforce-joining-as-investor/', 'source_description': 'MongoDB Raises $150M For NoSQL Database Technology With Salesforce Joining As Investor', 'raised_amount': 150000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 4, 'company': {'name': 'MongoDB, Inc.', 'permalink': 'mongodb-inc'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://news.nocamels.com/2013/11/12/cyber-security-company-checkmarx-raises-8m/', 'source_description': 'Cyber Security Company Checkmarx Raises $8M', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 12, 'company': {'name': 'Checkmarx', 'permalink': 'checkmarx'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/12/retrofit-raises-additional-5m-financing.html', 'source_description': ' \\tRetrofit Raises Additional $5M in Financing', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 20, 'company': {'name': 'Retrofit', 'permalink': 'retrofit'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 31500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2008, 'acquired_month': 8, 'acquired_day': 4, 'company': {'name': 'InStranet', 'permalink': 'instranet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.cloudave.com/link/breaking-salesforce-com-buys-groupswim', 'source_description': 'Breaking: Salesforce.com Buys GroupSwim ', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 11, 'company': {'name': 'GroupSwim', 'permalink': 'groupswim'}}, {'price_amount': 142000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2010/04/21/salesforce-buys-jigsaw-for-142m-in-cash-plus-earn-out/', 'source_description': 'TechCrunch', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 21, 'company': {'name': 'Jigsaw', 'permalink': 'jigsaw'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techvibes.com/blog/sitemasher-sold-and-winding-down-but-to-whom', 'source_description': 'Sitemasher sold and winding down... but to whom?', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Sitemasher', 'permalink': 'sitemasher'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/09/24/salesforce-buys-enterprise-chat-startup-activa-live/', 'source_description': 'Salesforce Buys Enterprise Chat Startup Activa Live', 'acquired_year': 2010, 'acquired_month': 9, 'acquired_day': 24, 'company': {'name': 'Activa Live', 'permalink': 'activa-live'}}, {'price_amount': 250000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2010/12/08/breaking-salesforce-buys-heroku-for-212-million-in-cash/', 'source_description': 'Salesforce.com Buys Heroku For $212 Million In Cash', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 8, 'company': {'name': 'Heroku', 'permalink': 'heroku'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2010/12/21/salesforce-buys-email-contact-manager-etacts/', 'source_description': 'Salesforce Buys Email Contact Manager Etacts', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 21, 'company': {'name': 'Etacts', 'permalink': 'etacts'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.tmcnet.com/call-center-crm/call_center_crm/salesforcecom-acquires-sendia.asp', 'source_description': 'Salesforce.com Acquires Sendia', 'acquired_year': 2006, 'acquired_month': 4, 'acquired_day': 12, 'company': {'name': 'Sendia', 'permalink': 'sendia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/salesforce_com_buys_kieden/s-0005032.html', 'source_description': 'Salesforce.com Buys Kieden', 'acquired_year': 2006, 'acquired_month': 8, 'acquired_day': 22, 'company': {'name': 'Kieden', 'permalink': 'kieden'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://startupmeme.com/salesforce-buys-koral-launches-content-exchange/', 'source_description': 'Salesforce Buys Koral, Launches Content Exchange', 'acquired_year': 2007, 'acquired_month': 4, 'acquired_day': 10, 'company': {'name': 'Koral Technologies', 'permalink': 'koral-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.alacrastore.com/storecontent/Thomson_M&A/SalesForce_com_Inc_acquires_Informavores_Ltd-2154324040', 'source_description': 'SalesForce.com Inc acquires Informavores Ltd', 'acquired_year': 2009, 'acquired_month': 12, 'acquired_day': 31, 'company': {'name': 'Informavores', 'permalink': 'informavores'}}, {'price_amount': 31000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/01/06/salesforce-buys-web-conferencing-platform-dimdim-for-31-million-in-cash/', 'source_description': 'Salesforce Buys Web Conferencing Platform DimDim For $31 Million In Cash', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 6, 'company': {'name': 'Dimdim', 'permalink': 'dimdim'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blog.manymoon.com/2011/02/01/manymoon-acquired-by-salesforce-com/', 'source_description': 'Manymoon Acquired by Salesforce.com ', 'acquired_year': 2011, 'acquired_month': 2, 'acquired_day': 1, 'company': {'name': 'Manymoon', 'permalink': 'manymoon'}}, {'price_amount': 326000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2011/03/30/salesforce-buys-social-media-monitoring-company-radian6-for-326-million/', 'source_description': 'Salesforce Buys Social Media Monitoring Company Radian6 For $326 Million', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 30, 'company': {'name': 'Salesforce Radian6', 'permalink': 'radian6'}}, {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2011/09/21/salesforce-buys-social-customer-service-saas-startup-assistly-for-50m-in-cash/', 'source_description': 'Salesforce Buys Customer Service SaaS Assistly For $50M To Reach Small Businesses', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 21, 'company': {'name': 'Desk', 'permalink': 'assistly'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/11/14/salesforce-acquires-social-and-mobile-cloud-computing-consultancy-model-metrics/', 'source_description': 'Salesforce Acquires Social And Mobile Cloud Computing Consultancy Model Metrics', 'acquired_year': 2011, 'acquired_month': 11, 'acquired_day': 14, 'company': {'name': 'Model Metrics', 'permalink': 'model-metrics'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/15/salesforce-acquires-social-performance-platform-rypple-will-launch-human-capital-management-unit-successforce/', 'source_description': 'Salesforce Buys Social Performance Platform Rypple; Will Launch ‘Human Capital Management’ Unit Successforce', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'Rypple', 'permalink': 'rypple'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/01/the-team-from-yc-backed-stypi-heads-to-salesforce-to-work-on-enterprise-collaboration/', 'source_description': 'Salesforce Acquires YC-Backed Collaborative Text Editor Stypi', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 1, 'company': {'name': 'Stypi', 'permalink': 'stypi'}}, {'price_amount': 689000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2012/06/04/salesforce-buys-buddy-media-689m/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals+%26+More%29', 'source_description': 'Salesforce buys Buddy Media for $689M to become a marketing powerhouse', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'Salesforce Buddy Media', 'permalink': 'buddymedia'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/18/choicepass-acquired-by-salesforce/', 'source_description': 'Enterprise Perks Management Startup ChoicePass Acquired By Salesforce, Will Shut Down June 30', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 18, 'company': {'name': 'ChoicePass', 'permalink': 'choicepass'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/06/25/salesforce-acquires-techstars-and-techcrunch-disrupt-alum-thinkfuse/', 'source_description': 'Salesforce Acquires TechStars And TechCrunch Disrupt Alum Thinkfuse', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 25, 'company': {'name': 'Thinkfuse', 'permalink': 'thinkfuse'}}, {'price_amount': 70000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2012/07/09/salesforce-com-reported-to-buy-goinstant-for-70-million/', 'source_description': 'Salesforce.com Reported To Buy GoInstant For $70 Million', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 9, 'company': {'name': 'GoInstant', 'permalink': 'goinstant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130207e927rgi5n&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130207e927rgi5n%26from%3dalert%26pid%3d32', 'source_description': 'Salesforce Acquires EntropySoft to Find Scattered Digital Documents', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'company': {'name': 'EntropySoft', 'permalink': 'entropysoft'}}, {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.daniellemorrill.com/2013/05/seattle-based-clipboard-acquired-by-salesforce-will-shut-down-june-30th/', 'source_description': 'Seattle-based Clipboard Acquired by Salesforce, Will Shut Down June 30th', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 9, 'company': {'name': 'Clipboard', 'permalink': 'clipboard'}}, {'price_amount': 2500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/04/with-exacttarget-acquisition-salesforce-com-has-spent-close-to-3-5-billion-to-get-into-the-chief-marketing-officers-suite/', 'source_description': 'With ExactTarget Acquisition, Salesforce.com Has Spent Close To $3.5 Billion To Get Into The Chief Marketing Officer’s Suite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 4, 'company': {'name': 'ExactTarget', 'permalink': 'exacttarget'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/07/after-picking-up-exacttarget-salesforce-buys-enterprise-business-intelligence-and-analytics-startup-edgespring/', 'source_description': 'After Picking Up ExactTarget, Salesforce Buys Enterprise Business Intelligence And Analytics Startup EdgeSpring', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 7, 'company': {'name': 'EdgeSpring', 'permalink': 'edgespring'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/11/prior-knowledge-goes-from-techcrunch-disrupt-finalist-to-salesforce-com-skunk-works-project/', 'source_description': 'Prior Knowledge Goes From TechCrunch Disrupt Finalist To Salesforce.com Skunkworks Project', 'acquired_year': 2012, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'Prior Knowledge', 'permalink': 'prior-knowledge'}}, {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 31, 'company': {'name': 'Salesforce Japan', 'permalink': 'salesforce-japan'}}], 'offices': [{'description': 'HQ', 'address1': 'The Landmark @ One Market Street', 'address2': 'Suite 300', 'zip_code': '94105', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 28, 'description': 'Salesforce releases new force.com toolkit for Google APIs.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 23, 'source_url': '', 'source_text': 'alesforce.com Delivers New Force.com Toolkit for Google Data APIs, Giving Developers New Capabilities to Harness the Power of Cloud Computing for Application Development\\r\\n \\r\\nForce.com Toolkit for Google Data APIs enables developers to bring together the Force.com platform and Google\\'s open APIs\\r\\n \\r\\nWill accelerate the creation of new multi-cloud-based applications\\r\\n \\r\\n SAN FRANCISCO, June 23 /PRNewswire-FirstCall/ -- Salesforce.com \\r\\n(NYSE: CRM), the market and technology leader in Software-as-a-Service (SaaS) and Platform-as-a-Service (PaaS) today expanded its global strategic alliance with Google, making it easier for developers to harness the power of cloud computing for Web and business application development and deployment. The new Force.com Toolkit for Google Data APIs provides a set of tools and services to empower developers to take advantage of Google Data APIs(TM), a common set of standard APIs for interacting with data in Google(TM) services, within their applications and projects on Force.com. Freely available at http://developer.force.com/ and http://code.google.com/p/apex-google-data/, the new toolkit will help developers bring together data and content in Google Apps(TM) with the database, logic and workflow capabilities in Force.com. The Force.com Platform-as-a-Service and Google\\'s open APIs are creating new opportunities for partners and developers to build powerful new business applications delivered completely via the cloud.\\r\\n (Logo: http://www.newscom.com/cgi-bin/prnh/20050216/SFW105LOGO )\\r\\n \"Google and salesforce.com share a common vision for making the cloud accessible to all developers,\" said Vic Gundotra, vice president, engineering, Google. \"Our work with salesforce.com will help make cloud computing increasingly accessible and powerful for developers, resulting in better Web applications and experiences.\"\\r\\n \"Bringing together the Google and salesforce.com platforms will enable the creation of powerful new applications delivered completely in the cloud,\" said Marc Benioff, chairman and CEO, salesforce.com. \"Developers now can take advantage of the virtually unlimited power and infrastructure of multiple cloud computing architectures from Google and salesforce.com to build the next-generation of business applications.\"\\r\\n \\r\\n Force.com Platform and Google\\'s Open APIs - Enabling Developer Success\\r\\n\\r\\n Salesforce.com and Google\\'s alliance gives developers a multi-cloud computing platform for building and running applications. The Force.com Platform-as-a-Service, encompassing a complete feature set for the creation of business applications, and Google\\'s open APIs and technologies, together will enable the creation of powerful new innovative applications delivered on the Web.\\r\\n Additionally, the Force.com Toolkit for Google Data APIs creates new opportunities for developers and ISVs to extend the widely adopted Salesforce for Google Apps. The toolkit gives developers and partners the ability to create business applications that extend Salesforce for Google Apps as well as build entirely new applications to help customers run their entire business in the cloud. The toolkit will accelerate the creation of applications like sales quote generation and business forecasting that can be deployed by customers with just a few clicks via the AppExchange. Already, 6 of the top 10 applications on salesforce.com\\'s AppExchange marketplace are Google-related partners, demonstrating the growing customer demand for third-party applications that leverage multiple cloud platforms.\\r\\n CODA, one of Europe\\'s leading financial applications providers, has built a Web application prototype that takes data from Google Spreadsheets and brings it directly into their Order-to-Cash module of CODA 2go, a financials application built on Force.com. The initial prototype can be used to perform a cost allocation over extracted transaction details from CODA 2go. Users can apportion new values by editing the cells used by formulas in the spreadsheet; the results are then posted in the form of a journal back into CODA 2go from within the Google Spreadsheet user interface via a Visualforce-powered Google Gadget(TM).\\r\\n \"Following the launch of the Salesforce for Google Apps, we have prototyped a CODA 2go-specific Google Apps integration,\" said Jeremy Roche, CEO of CODA, a leading European financials application provider. \"Our experience of producing finance software over decades is that accountants love manipulating transactions in spreadsheets. Now in just a few weekends, we have produced an on-demand solution that uses Google Spreadsheets and Force.com.\"\\r\\n \\r\\n New Force.com Toolkit for Google Data APIs\\r\\n Freely available at http://developer.force.com/ and at http://code.google.com/p/apex-google-data/, the new Force.com Toolkit for Google Data APIs will help developers create new Web and business applications that leverage the capabilities of Google Data APIs, including read and write access to data and content in Google Apps, with their Force.com projects and offerings. With the toolkit, developers have access to the Google Data APIs directly within Force.com\\'s Apex code, allowing the easy creation of new user experiences and Web applications that connect directly to Force.com\\'s database, integration, Apex programming language, and Visualforce user interface capabilities. Developers can also publish applications built with the Force.com Toolkit for Google Data APIs in the Google section on the AppExchange marketplace and the Google Solutions Marketplace, making them immediately available to customer and developer communities.\\r\\n \\r\\n About salesforce.com\\r\\n Salesforce.com is the market and technology leader in Software-as-a-Service (SaaS) and Platform-as-a-Service (PaaS). The company\\'s portfolio of SaaS applications, including its award-winning CRM application, available at http://www.salesforce.com/products/, has revolutionized the ways that customers manage and share business information over the Internet. The company\\'s Force.com PaaS enables customers, developers and partners to build powerful on-demand applications that deliver the benefits of multi-tenancy across the enterprise. Applications built on the Force.com platform, available at http://www.force.com, can be easily shared, exchanged and installed with a few simple clicks via salesforce.com\\'s AppExchange marketplace available at http://www.salesforce.com/appexchange.\\r\\n As of April 30, 2008, salesforce.com manages customer information for approximately 43,600 customers including ABN AMRO, Dow Jones Newswires, Japan Post, Kaiser Permanente, KONE, Sprint Nextel, and SunTrust Banks. Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase salesforce.com applications should make their purchase decisions based upon features that are currently available. Salesforce.com has headquarters in San Francisco, with offices in Europe and Asia, and trades on the New York Stock Exchange under the ticker symbol \"CRM\". For more information please visit http://www.salesforce.com, or call 1-800-NO-SOFTWARE.\\r\\n \\r\\n Copyright (c) 2008 salesforce.com, inc. All rights reserved. Salesforce and the \"no software\" logo are registered trademarks of salesforce.com, inc., and salesforce.com owns other registered and unregistered trademarks. Other names used herein may be trademarks of their respective owners.\\r\\n \\r\\n Google Apps, Google Data API, and Google Gadget are trademarks of Google Inc. ', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 4291, 'description': 'Salesforce.com Announces Closing of $575 Million Offering of 0.75% Convertible Senior Notes Due 2015', 'stoned_year': 2010, 'stoned_month': 1, 'stoned_day': 20, 'source_url': 'http://www.salesforce.com/company/news-press/press-releases/2010/01/100119.jsp', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 6375, 'description': 'Salesforce Chatterizes 10,000 Of Its Customers First Week After Public Launch', 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2010/06/29/salesforce-chatterizes-10000-of-its-customers-first-week-after-public-launch/', 'source_text': '', 'source_description': 'Salesforce Chatterizes 10,000 Of Its Customers First Week After Public Launch', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 9628, 'description': 'Salesforce Shells Out $170 Million To Acquire Japanese Subsidiary From VC Firm', 'stoned_year': 2010, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2010/10/27/salesforce-shells-out-170-million-to-acquire-japanese-subsidiary-from-vc-firm/', 'source_text': '', 'source_description': 'Salesforce Shells Out $170 Million To Acquire Japanese Subsidiary From VC Firm', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 11297, 'description': 'Salesforce.com has completed its acquisition of Dimdim for approximately $31 million in cash, net of cash acquired. ', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 6, 'source_url': 'https://www.salesforce.com/company/news-press/press-releases/2011/01/110106.jsp', 'source_text': None, 'source_description': 'Salesforce.com acquires Dimdim', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 11917, 'description': 'Salesforce Buys Superbowl Ads To Promote Its New \"Facebook For Businesses\".\\r\\n\\r\\n', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://www.businessinsider.com/salesforce-buys-superbowl-ads-to-promote-its-new-facebook-for-businesses-2011-1', 'source_text': '', 'source_description': 'Salesforce Buys Superbowl Ads To Promote Its New \"Facebook For Businesses\".', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 14524, 'description': 'Salesforce Closes $326M Acquisition Of Social Media Monitoring Company Radian6', 'stoned_year': 2011, 'stoned_month': 5, 'stoned_day': 2, 'source_url': 'http://techcrunch.com/2011/05/02/salesforce-closes-326m-acquisition-of-social-media-monitoring-company-radian6/', 'source_text': '', 'source_description': 'Salesforce Closes $326M Acquisition Of Social Media Monitoring Company Radian6', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 17358, 'description': 'Salesforce Posts Record Quarterly Revenue Of $546M; Raises Guidance', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 18, 'source_url': 'http://techcrunch.com/2011/08/18/salesforce-posts-record-quarterly-revenue-of-546m-raises-guidance/', 'source_text': '', 'source_description': 'Salesforce Posts Record Quarterly Revenue Of $546M; Raises Guidance', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 23675, 'description': 'An $800M Buddy Media Acquisition Would Be Worth 8X Its Current Revenue', 'stoned_year': 2012, 'stoned_month': 5, 'stoned_day': 29, 'source_url': 'http://techcrunch.com/2012/05/29/salesforce-acquires-buddy-media/', 'source_text': '', 'source_description': 'An $800M Buddy Media Acquisition Would Be Worth 8X Its Current Revenue', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 25656, 'description': 'Salesforce completes $689M Buddy Media buy, debuts Communities social network', 'stoned_year': 2012, 'stoned_month': 8, 'stoned_day': 14, 'source_url': 'http://venturebeat.com/2012/08/14/salesforce-buddy-media/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+Venturebeat_deals+%28VentureBeat+%C2%BB+Deals%29', 'source_text': '', 'source_description': 'Salesforce completes $689M Buddy Media buy, debuts Communities social network', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 26530, 'description': \"Salesforce.com Foundation Announces $10 Million in Grants for San Francisco's District 10 in Celebration of the 10th Annual Dreamforce\", 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.freshnews.com/news/700776/salesforce-com-foundation-announces-10-million-grants-san-francisco-s-district-10-celeb', 'source_text': '', 'source_description': \"Salesforce.com Foundation Announces $10 Million in Grants for San Francisco's District 10 in Celebration of the 10th Annual Dreamforce\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}, {'id': 36664, 'description': 'Salesforce.com Takes $300M Loan For ExactTarget Acquisition, Cash Resources Getting Tight', 'stoned_year': 2013, 'stoned_month': 7, 'stoned_day': 16, 'source_url': 'http://techcrunch.com/2013/07/15/salesforce-com-takes-300m-loan-for-exacttarget-acquisition-cash-resources-getting-tight/', 'source_text': '', 'source_description': 'Salesforce.com Takes $300M Loan For ExactTarget Acquisition, Cash Resources Getting Tight', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Salesforce', 'permalink': 'salesforce'}}], 'ipo': {'valuation_amount': 110000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 7, 'pub_day': 2, 'stock_symbol': 'NYSE:CRM'}, 'video_embeds': [{'embed_code': '', 'description': ''}], 'screenshots': [{'available_sizes': [[[150, 72], 'assets/images/resized/0014/6496/146496v1-max-150x150.png'], [[250, 121], 'assets/images/resized/0014/6496/146496v1-max-250x250.png'], [[450, 218], 'assets/images/resized/0014/6496/146496v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 118], 'assets/images/resized/0019/7977/197977v1-max-150x150.png'], [[250, 196], 'assets/images/resized/0019/7977/197977v1-max-250x250.png'], [[450, 354], 'assets/images/resized/0019/7977/197977v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.youtube.com/user/salesforce', 'title': 'YouTube'}, {'external_url': 'http://mashpedia.com/Salesforce', 'title': 'Salesforce at Mashpedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd6752984e3'), 'name': 'QuinStreet', 'permalink': 'quinstreet', 'crunchbase_url': 'http://www.crunchbase.com/company/quinstreet', 'homepage_url': 'http://www.quinstreet.com', 'blog_url': 'http://blog.quinstreet.com/', 'blog_feed_url': '', 'twitter_username': 'quinstreet', 'category_code': 'advertising', 'number_of_employees': 500, 'founded_year': 1999, 'founded_month': 4, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '650.578.7700', 'description': 'Performance Marketing', 'created_at': 'Tue Mar 11 20:00:10 UTC 2008', 'updated_at': 'Tue Aug 07 21:58:51 UTC 2012', 'overview': '

QuinStreet uses the internet to connect companies with potential customers.

\\n\\n

The online performance marketing company helps businesses target their would-be customer audiences by using its proprietary technologies and media reach to generate sales leads. As a sign of confidence in its quality, QuinStreet has adopted a pay-for-performance model of pricing. Founded in 1999, QuinStreet is headquartered in Foster City, CA, with satellite offices worldwide and 500 employees.

', 'image': {'available_sizes': [[[149, 44], 'assets/images/resized/0003/1488/31488v1-max-150x150.jpg'], [[149, 44], 'assets/images/resized/0003/1488/31488v1-max-250x250.jpg'], [[149, 44], 'assets/images/resized/0003/1488/31488v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chairman & CEO', 'person': {'first_name': 'Doug', 'last_name': 'Valenti', 'permalink': 'doug-valenti'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Greg', 'last_name': 'Paulson', 'permalink': 'greg-paulson'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': False, 'title': 'Director of Professional Services', 'person': {'first_name': 'Vishi', 'last_name': 'Iyer', 'permalink': 'vishi-iyer'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Greg', 'last_name': 'Sands', 'permalink': 'greg-sands'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Jim', 'last_name': 'Simons', 'permalink': 'jim-simons'}}, {'is_past': True, 'title': 'Vice President and General Manager for Direct', 'person': {'first_name': 'Mihir', 'last_name': 'Shah', 'permalink': 'mihir-shah'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Jon', 'last_name': 'Kelly', 'permalink': 'jon-kelly'}}, {'is_past': True, 'title': 'Senior Vice President', 'person': {'first_name': 'Patrick', 'last_name': 'Quigley', 'permalink': 'patrick-quigley'}}, {'is_past': True, 'title': 'VP, Web Media / VP, B2B Category', 'person': {'first_name': 'Joshua', 'last_name': 'Crossman', 'permalink': 'joshua-crossman'}}, {'is_past': True, 'title': 'VP, Marketing', 'person': {'first_name': 'Gregory', 'last_name': 'Smirin', 'permalink': 'greg-smirin'}}, {'is_past': True, 'title': 'SVP & General Counsel', 'person': {'first_name': 'Daniel', 'last_name': 'Caul', 'permalink': 'daniel-caul'}}, {'is_past': True, 'title': 'Sales and Business Development Manager', 'person': {'first_name': 'Binny', 'last_name': 'Mathews', 'permalink': 'binny-mathews'}}, {'is_past': True, 'title': 'Senior Managing Editor', 'person': {'first_name': 'Josh', 'last_name': 'Anish', 'permalink': 'josh-anish'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'Mike', 'last_name': 'Stachowiak', 'permalink': 'mike-stachowiak'}}, {'is_past': True, 'title': 'Sr. Director, Worldwide Engineering', 'person': {'first_name': 'Sastry', 'last_name': 'Nanduri', 'permalink': 'sastry-nanduri'}}, {'is_past': True, 'title': 'Senior Director, New Business Initiatives, Senior Director, Education Vertical', 'person': {'first_name': 'Karen', 'last_name': 'Cassel', 'permalink': 'karen-cassel-2'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Cappy', 'last_name': 'Pratt', 'permalink': 'cappy-pratt'}}, {'is_past': True, 'title': 'Director, Business Development', 'person': {'first_name': 'Chris', 'last_name': 'Yip', 'permalink': 'chris-yip'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Karthik', 'last_name': 'Manimaran', 'permalink': 'karthik-manimaran'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Mat', 'last_name': 'Peyron', 'permalink': 'mat-peyron'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Glenn', 'last_name': 'Solomon', 'permalink': 'glenn-solomon'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Markus A.', 'last_name': 'Nordvik', 'permalink': 'markus-a-nordvik'}}, {'is_past': True, 'title': 'Web Developer', 'person': {'first_name': 'Rushabh', 'last_name': 'Doshi', 'permalink': 'rushabh-doshi'}}, {'is_past': True, 'title': 'Web Application Developer Intern', 'person': {'first_name': 'Steven', 'last_name': 'Ramkumar', 'permalink': 'steven-ramkumar'}}, {'is_past': True, 'title': 'Senior Director - Publications', 'person': {'first_name': 'Eli', 'last_name': 'Curetti', 'permalink': 'elie-curetti'}}, {'is_past': True, 'title': 'Senior Director of Vertical Marketing', 'person': {'first_name': 'Patrick', 'last_name': 'Cross', 'permalink': 'patrick-cross'}}, {'is_past': True, 'title': 'VP Client Strategy and Development', 'person': {'first_name': 'Mike', 'last_name': 'Rogers', 'permalink': 'mike-rogers-2'}}, {'is_past': True, 'title': 'Sr. Web Producer', 'person': {'first_name': 'Jay', 'last_name': 'Onda', 'permalink': 'jay-onda'}}], 'competitions': [{'competitor': {'name': 'Vantage Media', 'permalink': 'vantage-media'}}, {'competitor': {'name': 'Contractor Marketing Pros.com', 'permalink': 'contractormarketingpros-com'}}, {'competitor': {'name': 'AdKiwi', 'permalink': 'adkiwi'}}], 'providerships': [], 'total_money_raised': '$4k', 'funding_rounds': [{'id': 6684, 'round_code': 'b', 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2000/12/04/daily20.html', 'source_description': 'QuinStreet dives home $40M', 'raised_amount': 4000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 12, 'funded_day': 10, 'investments': []}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Capital Report Index', 'acquired_year': 2008, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'Cyberspace Communcation', 'permalink': 'cyberspace-communcation'}}, {'price_amount': 18000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1083712/000101968709004323/webmedia_8k-ex9901.htm', 'source_description': '', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'Internet.com', 'permalink': 'internet-com'}}, {'price_amount': 49700000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-quinstreet-buys-carinsurance.com-for-49.7-million/', 'source_description': 'QuinStreet Buys CarInsurance.com For $49.7 Million', 'acquired_year': 2010, 'acquired_month': 11, 'acquired_day': 8, 'company': {'name': 'CarInsurance.com', 'permalink': 'carinsurance-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/stories/2010/07/26/daily97.html', 'source_description': 'QuinStreet buys insurance.com website', 'acquired_year': 2010, 'acquired_month': 7, 'acquired_day': 29, 'company': {'name': 'Insurance.com', 'permalink': 'insurance-com'}}, {'price_amount': 5000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'Pooxi', 'permalink': 'pooxi'}}], 'offices': [{'description': '', 'address1': '950 Tower Lane', 'address2': '6th Floor', 'zip_code': '94404', 'city': 'Foster City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.5600585, 'longitude': -122.270249}], 'milestones': [{'id': 1908, 'description': 'QuinStreet buys Internet.com business for $18M', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 9, 'source_url': 'http://paidcontent.org/article/419-meckler-selling-internet.com-business-to-quinstreet-for-18m-exiting-tec/', 'source_text': '', 'source_description': 'Meckler Selling Internet.com Business to QuinStreet For $18M; Exiting Tech Trade', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2088, 'description': 'QuinStreet Publicly Boasts About Its Earnings', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 18, 'source_url': 'http://blogs.wsj.com/venturecapital/2009/08/18/quinstreet-boasts-publicly-about-its-earnings/', 'source_text': None, 'source_description': 'Wall Street Journal', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2104, 'description': 'In Tough Times, QuinStreet Expands Internship Program', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 31, 'source_url': 'http://www.prweb.com/releases/2009/08/prweb2806914.htm', 'source_text': None, 'source_description': 'PR Web', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2105, 'description': 'QuinStreet Provides Pro-Bono Services to the Galena Fest in Reno, Nevada', 'stoned_year': 2009, 'stoned_month': 9, 'stoned_day': 8, 'source_url': 'http://www.prweb.com/releases/2009/09/prweb2836224.htm', 'source_text': None, 'source_description': 'PR Web', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2106, 'description': 'QuinStreet to hit $300M in revenue', 'stoned_year': 2009, 'stoned_month': 8, 'stoned_day': 25, 'source_url': 'http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2009/08/24/story7.html', 'source_text': None, 'source_description': 'San Francisco Business Times', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2236, 'description': 'QuinStreet Buys Insure.com Domain & Media Assets For $16 Million', 'stoned_year': 2009, 'stoned_month': 10, 'stoned_day': 9, 'source_url': 'http://paidcontent.org/article/419-quinstreet-buys-insure.com-domain-media-assets-for-16-million/', 'source_text': '', 'source_description': 'QuinStreet Buys Insure.com Domain & Media Assets For $16 Million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 2710, 'description': 'QuinStreet Files for IPO', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 19, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1117297/000095012309064388/f53797orsv1.htm', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}, {'id': 10097, 'description': 'QuinStreet hires Adam Cherubini, formerly of InsWeb', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': None, 'source_url': 'http://www.linkedin.com/profile/view?id=16030299', 'source_text': None, 'source_description': 'LinkedIn', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QuinStreet', 'permalink': 'quinstreet'}}], 'ipo': {'valuation_amount': 140000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 1, 'pub_day': 11, 'stock_symbol': 'NASDAQ:QNST'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 93], 'assets/images/resized/0004/5840/45840v1-max-150x150.png'], [[250, 156], 'assets/images/resized/0004/5840/45840v1-max-250x250.png'], [[450, 280], 'assets/images/resized/0004/5840/45840v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.prweb.com/releases/2009/05/prweb2456914.htm', 'title': 'QuinStreet, Inc. Celebrates Ten Years as Online Media and Marketing Leader'}, {'external_url': 'http://www.prweb.com/releases/2009/05/prweb2370544.htm', 'title': 'QuinStreet Sponsors Top Family Team in March of Dimes Fundraiser'}, {'external_url': 'http://blogs.wsj.com/venturecapital/2009/08/18/quinstreet-boasts-publicly-about-its-earnings/?mod=rss_WSJBlog', 'title': 'Wall Street Journal QuinStreet Results'}, {'external_url': 'http://en.wikipedia.org/wiki/Quinstreet', 'title': 'QuinStreet on Wikipedia'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298527'), 'name': 'Rackspace', 'permalink': 'rackspace', 'crunchbase_url': 'http://www.crunchbase.com/company/rackspace', 'homepage_url': 'http://www.rackspace.com', 'blog_url': 'http://www.rackspace.com/blog/index.php', 'blog_feed_url': 'http://www.rackspace.com/blog/?feed=rss2', 'twitter_username': 'Rackspace', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1998, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'cloud, cloud-management-systems, iaas', 'alias_list': None, 'email_address': 'sales@rackspace.com', 'phone_number': '800-961-2888', 'description': '', 'created_at': 'Thu Mar 13 16:48:27 UTC 2008', 'updated_at': 'Mon Jun 03 03:26:39 UTC 2013', 'overview': '

Rackspace® (NYSE: RAX) is the open cloud company and founder of OpenStack, the standard open-source operating system for cloud computing. Headquartered in San Antonio, Rackspace delivers its renowned Fanatical Support® to more than 200,000 business customers, from data centers on four continents. Rackspace is a leading provider of hybrid clouds, which enable businesses to run their workloads where they run most effectively — whether on the public cloud, a private cloud, dedicated servers, or a combination of these platforms. Rackspace has been recognized by Bloomberg BusinessWeek as a Top 100 Performing Technology Company, and is featured on Fortune’s list of 100 Best Companies to Work For. For more information, visit www.rackspace.com.

', 'image': {'available_sizes': [[[150, 54], 'assets/images/resized/0001/7859/17859v6-max-150x150.jpg'], [[250, 90], 'assets/images/resized/0001/7859/17859v6-max-250x250.jpg'], [[300, 109], 'assets/images/resized/0001/7859/17859v6-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & Former CEO', 'person': {'first_name': 'Richard', 'last_name': 'Yoo', 'permalink': 'richard-yoo'}}, {'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Pat', 'last_name': 'Condon', 'permalink': 'pat-condon'}}, {'is_past': False, 'title': 'Chairman', 'person': {'first_name': 'Graham', 'last_name': 'Weston', 'permalink': 'graham-weston'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Mark', 'last_name': 'Roenigk', 'permalink': 'mark-roenigk'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Karl', 'last_name': 'Pichler', 'permalink': 'karl-pichler'}}, {'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lanham', 'last_name': 'Napier', 'permalink': 'lanham-napier'}}, {'is_past': False, 'title': 'Vice President - Product Marketing', 'person': {'first_name': 'Rajeev', 'last_name': 'Shrivastava', 'permalink': 'rajeev-shrivastava'}}, {'is_past': False, 'title': 'VP, Operations and Customer Care', 'person': {'first_name': 'Troy', 'last_name': 'Toman', 'permalink': 'troy-toman'}}, {'is_past': False, 'title': 'VP, Product and Marketing', 'person': {'first_name': 'Klee', 'last_name': 'Kleber', 'permalink': 'klee-kleber'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'John', 'last_name': 'Engates', 'permalink': 'john-engates'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Lew', 'last_name': 'Moorman', 'permalink': 'lew-moorman'}}, {'is_past': False, 'title': 'Director, Marketing', 'person': {'first_name': 'Tiffaney', 'last_name': 'Fox Quintana', 'permalink': 'tiffaney-fox-quintana'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Ben', 'last_name': 'Arent', 'permalink': 'ben-arent'}}, {'is_past': False, 'title': 'Sr. Director Product', 'person': {'first_name': 'Chris', 'last_name': 'Lalonde', 'permalink': 'chris-lalonde'}}, {'is_past': False, 'title': 'VP, IT', 'person': {'first_name': 'Kiprian', 'last_name': 'Miles', 'permalink': 'kiprian-miles'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Alan', 'last_name': 'Schoenbaum', 'permalink': 'alan-schoenbaum'}}, {'is_past': False, 'title': 'Racker', 'person': {'first_name': 'Jonathan', 'last_name': 'Siegel', 'permalink': 'jonathan-siegel'}}, {'is_past': False, 'title': 'Operations Manager', 'person': {'first_name': 'Teri', 'last_name': 'Wilson', 'permalink': 'teri-wilson'}}, {'is_past': False, 'title': 'Lead Financial Analyst', 'person': {'first_name': 'Ivan', 'last_name': 'Lenev', 'permalink': 'ivan-lenev'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Dirk', 'last_name': 'Elmendorf', 'permalink': 'dirk-elmendorf'}}, {'is_past': True, 'title': 'Senior VP, CFO & Treasurer', 'person': {'first_name': 'Major', 'last_name': 'Horton', 'permalink': 'major-horton'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Bruce', 'last_name': 'Knooihuizen', 'permalink': 'bruce-knooihuizen'}}, {'is_past': True, 'title': 'Vice President of Worldwide Partner Sales', 'person': {'first_name': 'Christopher', 'last_name': 'Rajiah', 'permalink': 'christopher-rajiah'}}, {'is_past': True, 'title': 'Vice President, Fanatical Support', 'person': {'first_name': 'Frederick', 'last_name': '\"Suizo\" Mendler', 'permalink': 'frederick-suizo-mendler'}}, {'is_past': True, 'title': 'VP, Infrastructure & Operations', 'person': {'first_name': 'Michael', 'last_name': 'Landesman', 'permalink': 'michael-landesman'}}, {'is_past': True, 'title': 'SVP / Managing Director', 'person': {'first_name': 'David', 'last_name': 'Kelly', 'permalink': 'david-kelly'}}, {'is_past': True, 'title': 'VP, Strategy / Corp Dev', 'person': {'first_name': 'Bill', 'last_name': 'Boebel', 'permalink': 'bill-boebel'}}, {'is_past': True, 'title': 'VP, Support', 'person': {'first_name': 'Frederick', 'last_name': 'Mendler', 'permalink': 'frederick-mendler'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Douglas', 'last_name': 'Leone', 'permalink': 'douglas-leone'}}, {'is_past': True, 'title': 'Nepholologist', 'person': {'first_name': 'Harper', 'last_name': 'Reed', 'permalink': 'harper-reed'}}, {'is_past': True, 'title': 'Software Developer II', 'person': {'first_name': 'William', 'last_name': 'Wolf', 'permalink': 'william-wolf-2'}}, {'is_past': True, 'title': 'Director of Fanatical Support', 'person': {'first_name': 'Luke', 'last_name': 'Owen', 'permalink': 'luke-owen'}}, {'is_past': True, 'title': 'Managing Director', 'person': {'first_name': 'Dominic', 'last_name': 'Monkhouse', 'permalink': 'dominic-monkhouse'}}, {'is_past': True, 'title': 'Strategic Partnerships', 'person': {'first_name': 'Blake', 'last_name': 'Robinson', 'permalink': 'blake-robinson'}}, {'is_past': True, 'title': 'Director of Operational Excellence - Cloud', 'person': {'first_name': 'Luke', 'last_name': 'Owen', 'permalink': 'luke-owen'}}, {'is_past': True, 'title': 'Linux Software Developer', 'person': {'first_name': 'BJ', 'last_name': 'Dierkes', 'permalink': 'bj-dierkes'}}], 'competitions': [{'competitor': {'name': 'PEER 1 Hosting', 'permalink': 'peer-1'}}, {'competitor': {'name': 'UnitedLayer', 'permalink': 'unitedlayer'}}, {'competitor': {'name': 'ServePath', 'permalink': 'servepath'}}, {'competitor': {'name': 'Verizon Communications, Inc.', 'permalink': 'verizon'}}, {'competitor': {'name': 'Engine Yard', 'permalink': 'engineyard'}}, {'competitor': {'name': 'INetU Managed Hosting', 'permalink': 'inetu-managed-hosting'}}, {'competitor': {'name': 'SoftLayer', 'permalink': 'softlayer'}}, {'competitor': {'name': 'ServInt', 'permalink': 'servint'}}, {'competitor': {'name': 'McKremie.com', 'permalink': 'mckremie'}}, {'competitor': {'name': 'FireHost', 'permalink': 'firehost'}}, {'competitor': {'name': 'Internap', 'permalink': 'internap'}}, {'competitor': {'name': 'Nexcess', 'permalink': 'nexcess'}}, {'competitor': {'name': 'Linode', 'permalink': 'linode'}}, {'competitor': {'name': 'Amazon Web Services', 'permalink': 'amazon-web-services'}}, {'competitor': {'name': 'Airlock', 'permalink': 'airlock'}}, {'competitor': {'name': 'EdgeWebHosting', 'permalink': 'edgewebhosting'}}], 'providerships': [{'title': '', 'is_past': False, 'provider': {'name': 'Brinkwire ', 'permalink': 'brinkwire'}}], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.thealarmclock.com/mt/archives/2007/03/rackspace_inves.html', 'source_description': 'Rackspace Invests in Spin-off Mosso', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2007, 'funded_month': 3, 'funded_day': 21, 'company': {'name': 'Mosso', 'permalink': 'mosso'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://www.austinstartup.com/2010/04/austin-based-rackspace-funded-%E2%80%9Criptano%E2%80%9D-launches/', 'source_description': 'Austin Based, Rackspace funded \"Riptano\" launches', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 4, 'funded_day': 23, 'company': {'name': 'DataStax', 'permalink': 'datastax'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://gigaom.com/2013/05/14/cloudant-snares-12m-from-rackspace-and-others-to-build-awareness-for-its-cloudy-database/', 'source_description': 'Cloudant snares $12M from Rackspace and others to build awareness for its cloudy database', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 5, 'funded_day': 14, 'company': {'name': 'Cloudant', 'permalink': 'cloudant'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2008/10/our_own_jungled.html', 'source_description': 'Our Own Jungledisk Bought By Rackspace', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 23, 'company': {'name': 'Jungle Disk', 'permalink': 'jungledisk'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thealarmclock.com/mt/archives/2010/12/rackspace_buys.html', 'source_description': \"RackSpace Buys Cloud Hosting Management's CloudKick\", 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 16, 'company': {'name': 'Cloudkick', 'permalink': 'cloudkick'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.rackspace.com/blog/?p=1971', 'source_description': 'Rackspace Acquires Anso Labs; Furthers Commitment to OpenStack ', 'acquired_year': 2011, 'acquired_month': 2, 'acquired_day': 9, 'company': {'name': 'Anso Labs', 'permalink': 'anso-labs'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.slicehost.com/articles/2008/10/22/big-news-today', 'source_description': 'Big news - Rackspace and Slicehost', 'acquired_year': 2008, 'acquired_month': 10, 'acquired_day': 22, 'company': {'name': 'Slicehost', 'permalink': 'slicehost'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/rackspace-acquires-sharepoint911-to-provide-industry-leading-sharepoint-expertise-2012-02-16', 'source_description': 'Rackspace Acquires SharePoint911 to Provide Industry Leading SharePoint Expertise', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 16, 'company': {'name': 'SharePoint911', 'permalink': 'sharepoint911'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/28/rackspace-acquires-y-combinator-startup-mailgun-an-api-that-abstracts-creating-email-inboxes-for-apps-and-web-sites/', 'source_description': 'Rackspace Acquires Mailgun, A Y Combinator Startup That Gives App Developers An API For Creating And Managing Online Mailboxes', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 28, 'company': {'name': 'Mailgun', 'permalink': 'mailgun'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/rackspace-acquires-objectrocket-to-help-customers-scale-mongodb-in-the-cloud-2013-02-27-10159275', 'source_description': 'Rackspace Acquires ObjectRocket to Help Customers Scale MongoDB in the Cloud', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 27, 'company': {'name': 'ObjectRocket', 'permalink': 'objectrocket'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/28/rackspace-acquires-exceptional-to-add-app-error-tracking-tools-for-developers/', 'source_description': 'Rackspace Acquires Exceptional To Add App Error Tracking Tools For Developers', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 28, 'company': {'name': 'Exceptional Software', 'permalink': 'exceptional-2'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.geektime.com/2013/11/03/israeli-zerovm-acquired-by-rackspace/', 'source_description': 'Israeli ZeroVM acquired by RackSpace', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 3, 'company': {'name': 'ZeroVM', 'permalink': 'zerovm'}}], 'offices': [{'description': 'HQ', 'address1': '5000 Walzem Road', 'address2': 'Suite 100', 'zip_code': '78218', 'city': 'San Antonio', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 29.527664, 'longitude': -98.562993}, {'description': 'London Office', 'address1': 'Millington Road', 'address2': '', 'zip_code': 'UB3 4AZ', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}, {'description': 'San Francisco Office', 'address1': '620 Folsom St.', 'address2': '#100', 'zip_code': '94107', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 17986, 'description': 'Added Susan J. Michael as Director of User Experience Design', 'stoned_year': 2011, 'stoned_month': 4, 'stoned_day': 11, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Rackspace', 'permalink': 'rackspace'}}], 'ipo': {'valuation_amount': 5440000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 11, 'pub_day': 7, 'stock_symbol': 'RAX'}, 'video_embeds': [{'embed_code': '', 'description': ''}, {'embed_code': '', 'description': '

Claremont Creek Ventures

'}, {'embed_code': '', 'description': '

Focus video

'}], 'screenshots': [{'available_sizes': [[[150, 94], 'assets/images/resized/0004/6190/46190v1-max-150x150.png'], [[250, 157], 'assets/images/resized/0004/6190/46190v1-max-250x250.png'], [[450, 282], 'assets/images/resized/0004/6190/46190v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 92], 'assets/images/resized/0007/1350/71350v2-max-150x150.png'], [[250, 153], 'assets/images/resized/0007/1350/71350v2-max-250x250.png'], [[450, 276], 'assets/images/resized/0007/1350/71350v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529859a'), 'name': 'BMC Software', 'permalink': 'bmc-software', 'crunchbase_url': 'http://www.crunchbase.com/company/bmc-software', 'homepage_url': 'http://www.bmc.com', 'blog_url': 'http://www.bmc.com/devops', 'blog_feed_url': '', 'twitter_username': 'bmcsoftware', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1980, 'founded_month': 9, 'founded_day': 19, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@bmc.com', 'phone_number': '800-841-2031', 'description': '', 'created_at': 'Tue Mar 18 14:04:07 UTC 2008', 'updated_at': 'Mon Oct 21 18:08:28 UTC 2013', 'overview': '

Business Runs on IT. IT Runs on BMC Software.\\nBusiness runs better when IT runs at its best. That’s why more than 20,000 IT organizations — from the Global 100 to the smallest businesses — in over 120 countries rely on BMC Software (NASDAQ: BMC) to manage their business services and applications across distributed, mainframe, virtual and cloud environments. With the leading Business Service Management platform, Cloud Management, and the industry’s broadest choice of IT management solutions, BMC helps customers cut costs, reduce risk and achieve business objectives.

', 'image': {'available_sizes': [[[135, 66], 'assets/images/resized/0001/5901/15901v1-max-150x150.png'], [[135, 66], 'assets/images/resized/0001/5901/15901v1-max-250x250.png'], [[135, 66], 'assets/images/resized/0001/5901/15901v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Member of Board of Directors', 'person': {'first_name': 'Mark', 'last_name': 'Hawkins', 'permalink': 'mark-hawkins'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Koustubha', 'last_name': 'Deshpande', 'permalink': 'koustubha-deshpande'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Vinny', 'last_name': 'Smith', 'permalink': 'vinny-smith'}}, {'is_past': True, 'title': 'President & CEO', 'person': {'first_name': 'Larry', 'last_name': 'Warnock', 'permalink': 'larry-warnock'}}, {'is_past': True, 'title': 'CTO / Technical Executive', 'person': {'first_name': 'David', 'last_name': 'Dew', 'permalink': 'david-dew'}}, {'is_past': True, 'title': 'Vice President and Business Unit CFO', 'person': {'first_name': 'Tony', 'last_name': 'Ritz', 'permalink': 'tony-ritz'}}, {'is_past': True, 'title': 'Chief Architect, Open Source Strategy', 'person': {'first_name': 'whurley', 'last_name': '(william hurley)', 'permalink': 'whurley-william-hurley'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Tom', 'last_name': 'Bishop', 'permalink': 'tom-bishop-2'}}, {'is_past': True, 'title': 'Corporate Controller and Chief Accounting Officer', 'person': {'first_name': 'Kevin', 'last_name': 'Klausmeyer', 'permalink': 'kevin-klausmeyer'}}, {'is_past': True, 'title': 'SVP and CTO', 'person': {'first_name': 'Kirill', 'last_name': 'Tatarinov', 'permalink': 'kirill-tatarinov'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'George', 'last_name': 'W. Harrington', 'permalink': 'george-w-harrington'}}, {'is_past': True, 'title': 'Senior Vice President, R&D and Strategy and Corporate Development', 'person': {'first_name': 'Dan', 'last_name': 'Barnea', 'permalink': 'dan-barnea'}}, {'is_past': True, 'title': 'VP, Sales - Worldwide Specialization & Inside Sales', 'person': {'first_name': 'Tim', 'last_name': 'Koubek', 'permalink': 'tim-koubek'}}, {'is_past': True, 'title': 'VP of ENG', 'person': {'first_name': 'Ted', 'last_name': 'Trimble', 'permalink': 'ted-trimble'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'Jim', 'last_name': 'Darragh', 'permalink': 'jim-darragh'}}, {'is_past': True, 'title': 'Vice President, Worldwide Marketing', 'person': {'first_name': 'Vick', 'last_name': 'Viren Vaishnavi', 'permalink': 'vick-viren-vaishnavi'}}, {'is_past': True, 'title': 'Vice President, Worldwide Marketing, Vice President, Enterprise Solutions Marketing', 'person': {'first_name': 'David', 'last_name': 'Greene', 'permalink': 'david-greene-2'}}, {'is_past': True, 'title': 'VP Sales & Services', 'person': {'first_name': 'Alex', 'last_name': 'Shootman', 'permalink': 'alex-shootman'}}, {'is_past': True, 'title': 'AVP', 'person': {'first_name': 'Carlos', 'last_name': 'Delatorre', 'permalink': 'carlos-delatorre'}}, {'is_past': True, 'title': 'VP (various)', 'person': {'first_name': 'Steve', 'last_name': 'Lesem', 'permalink': 'steve-lesem'}}, {'is_past': True, 'title': 'VP, Northern Europe & France', 'person': {'first_name': 'Per', 'last_name': 'Ottosson', 'permalink': 'per-ottosson'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Ron', 'last_name': 'Shoshani', 'permalink': 'ron-shoshani'}}, {'is_past': True, 'title': 'Product Development Manager', 'person': {'first_name': 'Avi', 'last_name': 'Uziel', 'permalink': 'avi-uziel'}}, {'is_past': True, 'title': 'Revenue Recognition Accounting Manager', 'person': {'first_name': 'Cassandra', 'last_name': 'Ho', 'permalink': 'cassandra-ho'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Donald', 'last_name': 'Becker ( Storage, Network & Compliance)', 'permalink': 'donald-becker-storage-network-compliance'}}, {'is_past': True, 'title': 'Senior Technical Support Analyst', 'person': {'first_name': 'Jennifer', 'last_name': 'Nelson ( Database Server & Tools )', 'permalink': 'jennifer-nelson-database-server-tools'}}, {'is_past': True, 'title': 'Phurnace Transition', 'person': {'first_name': 'Patti', 'last_name': 'Soch', 'permalink': 'patti-soch'}}, {'is_past': True, 'title': 'Director, Business Development & Strategy', 'person': {'first_name': 'Raj', 'last_name': 'Sabhlok', 'permalink': 'raj-sabhlok'}}, {'is_past': True, 'title': 'Vice President - North America East', 'person': {'first_name': 'Scott', 'last_name': 'Davis', 'permalink': 'scott-davis-4'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Doug', 'last_name': 'Merritt', 'permalink': 'doug-merritt'}}, {'is_past': True, 'title': 'vice president and general manager', 'person': {'first_name': 'Gene', 'last_name': 'Austin', 'permalink': 'gene-austin'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Brett', 'last_name': 'Shirk', 'permalink': 'brett-shirk'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Daniel', 'last_name': 'Nelson', 'permalink': 'daniel-nelson-4'}}, {'is_past': True, 'title': 'Senior SQA Engineer', 'person': {'first_name': 'Pete', 'last_name': 'Pickerill', 'permalink': 'pete-pickerill'}}, {'is_past': True, 'title': 'Director of Marketing Communications', 'person': {'first_name': 'Ching', 'last_name': 'Wu', 'permalink': 'ching-wu'}}, {'is_past': True, 'title': 'Director, R&D', 'person': {'first_name': 'Frank', 'last_name': 'Careccia', 'permalink': 'frank-careccia'}}, {'is_past': True, 'title': 'Sr. Program Executive - Proactive Operations and Application Operations', 'person': {'first_name': 'David', 'last_name': 'Langlais', 'permalink': 'david-langlais'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'James', 'last_name': 'Legg', 'permalink': 'james-legg'}}, {'is_past': True, 'title': 'Managing Director Benelux', 'person': {'first_name': 'Kees', 'last_name': 'van Bekkum', 'permalink': 'kees-van-bekkum'}}, {'is_past': True, 'title': 'Sales Manager', 'person': {'first_name': 'Jay', 'last_name': 'Gardner', 'permalink': 'jay-gardner-2'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Nany', 'last_name': 'Harris', 'permalink': 'nany-harris'}}, {'is_past': True, 'title': 'Senior Legal Counsel', 'person': {'first_name': 'Jeremy', 'last_name': 'Aber', 'permalink': 'jeremy-aber'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Bruce', 'last_name': 'Talley', 'permalink': 'bruce-talley'}}, {'is_past': True, 'title': 'VP/GM, IT Service Management', 'person': {'first_name': 'Rohit', 'last_name': 'Gupta', 'permalink': 'rohit-gupta-10'}}, {'is_past': True, 'title': 'Engineering and Managerial', 'person': {'first_name': 'Kip', 'last_name': 'McClanahan', 'permalink': 'kip-mcclanahan'}}, {'is_past': True, 'title': 'Senior Product Developer', 'person': {'first_name': 'Vishal', 'last_name': 'Rao', 'permalink': 'vishal-rao'}}, {'is_past': True, 'title': 'Director Infrastructure Management EMEA', 'person': {'first_name': 'Tim', 'last_name': 'Waterton', 'permalink': 'tim-waterton'}}, {'is_past': True, 'title': 'Engineering', 'person': {'first_name': 'Bob', 'last_name': 'Kruger', 'permalink': 'bob-kruger'}}, {'is_past': True, 'title': 'Product Author/Lead Software Developer', 'person': {'first_name': 'Gregory', 'last_name': 'Grounds ( Database Server & Tools )', 'permalink': 'gregory-grounds-database-server-tools'}}, {'is_past': True, 'title': 'Director of R&D', 'person': {'first_name': 'Walt', 'last_name': 'Giroir', 'permalink': 'walt-giroir'}}, {'is_past': True, 'title': 'Sr. Account Manager', 'person': {'first_name': 'Chris', 'last_name': 'Gillan', 'permalink': 'chris-gillan'}}, {'is_past': True, 'title': 'Vice President, Sales', 'person': {'first_name': 'Steve', 'last_name': 'Rowland', 'permalink': 'steve-rowland'}}, {'is_past': True, 'title': 'Regional Channel Manager', 'person': {'first_name': 'Dawn', 'last_name': 'Marie Ruszel', 'permalink': 'dawn-marie-ruszel'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Randy', 'last_name': 'Streu', 'permalink': 'randy-streu'}}, {'is_past': True, 'title': 'VP Corporate Strategy', 'person': {'first_name': 'Yosef', 'last_name': 'Fried', 'permalink': 'yosef-fried'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Vaughn', 'last_name': 'Balter', 'permalink': 'vaughn-balter'}}, {'is_past': True, 'title': 'Lead SQA Engineer', 'person': {'first_name': 'Pete', 'last_name': 'Pickerill', 'permalink': 'pete-pickerill'}}, {'is_past': True, 'title': 'Director of R&D', 'person': {'first_name': 'Rob', 'last_name': 'Reiner', 'permalink': 'rob-reiner'}}, {'is_past': True, 'title': 'Sr. Analyst Relations Manager', 'person': {'first_name': 'Jim', 'last_name': 'Azevedo', 'permalink': 'jim-azevedo'}}, {'is_past': True, 'title': 'Director, Sales Specialists', 'person': {'first_name': 'Matthew', 'last_name': 'McSweeney', 'permalink': 'matthew-mcsweeney'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Sudhir', 'last_name': 'Kulkarni', 'permalink': 'sudhir-kulkarni'}}, {'is_past': True, 'title': 'Product Line Executive, Configuration Automation', 'person': {'first_name': 'Bryant', 'last_name': 'Macy', 'permalink': 'bryant-macy'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'May', 'permalink': 'paul-may-3'}}, {'is_past': True, 'title': 'Regional Sales Manager - Global Channels & OEMs', 'person': {'first_name': 'DaWane', 'last_name': 'Wanek', 'permalink': 'dawane-wanek'}}, {'is_past': True, 'title': 'Snr. Manager, Product Marketing', 'person': {'first_name': 'Amanda', 'last_name': 'Jobbins', 'permalink': 'amanda-jobbins'}}, {'is_past': True, 'title': 'Senior Regional Manager', 'person': {'first_name': 'Dmitry', 'last_name': 'Shkliarevsky', 'permalink': 'dmitry-shkliarevsky'}}, {'is_past': True, 'title': 'Product Development Manager', 'person': {'first_name': 'Guy', 'last_name': 'Shavitt', 'permalink': 'guy-shavitt'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Andrea', 'last_name': 'Parks', 'permalink': 'andrea-parks'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Sion', 'last_name': 'Lewis', 'permalink': 'sion-lewis'}}], 'competitions': [{'competitor': {'name': 'Nastel Technologies', 'permalink': 'nastel'}}, {'competitor': {'name': 'OpTier', 'permalink': 'optier'}}, {'competitor': {'name': 'dynaTrace software', 'permalink': 'dynatrace-software'}}, {'competitor': {'name': 'Correlsense', 'permalink': 'correlsense'}}, {'competitor': {'name': 'Wily Technology', 'permalink': 'wily-technology'}}, {'competitor': {'name': 'Compuware', 'permalink': 'compuware'}}, {'competitor': {'name': 'Tivoli', 'permalink': 'tivoli'}}, {'competitor': {'name': 'OpTier', 'permalink': 'optier'}}, {'competitor': {'name': 'dynaTrace software', 'permalink': 'dynatrace-software'}}, {'competitor': {'name': 'Correlsense', 'permalink': 'correlsense'}}, {'competitor': {'name': 'AppDynamics', 'permalink': 'appdynamics'}}, {'competitor': {'name': 'Wily Technology', 'permalink': 'wily-technology'}}, {'competitor': {'name': 'Tivoli', 'permalink': 'tivoli'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.bladelogic.com/news-events/press-releases/03-17-08.php', 'source_description': 'BMC SOFTWARE TO PURCHASE BLADELOGIC', 'acquired_year': 2008, 'acquired_month': 3, 'acquired_day': 17, 'company': {'name': 'BladeLogic', 'permalink': 'bladelogic'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.barrons.com/techtraderdaily/2008/06/17/bmc-software-acquires-itm-software/', 'source_description': 'BMC Software Acquires ITM Software', 'acquired_year': 2008, 'acquired_month': 6, 'acquired_day': None, 'company': {'name': 'ITM Software', 'permalink': 'itm-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.networkcomputing.com/showArticle.jhtml?articleID=199703133', 'source_description': 'BMC Acquires ProactiveNet, Gains Analytics', 'acquired_year': 2007, 'acquired_month': 5, 'acquired_day': None, 'company': {'name': 'ProactiveNet', 'permalink': 'proactivenet'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/193711/bmc-software-acquires-mqsoftware', 'source_description': 'BMC Software Acquires MQSoftware', 'acquired_year': 2009, 'acquired_month': 8, 'acquired_day': 10, 'company': {'name': 'MQSoftware', 'permalink': 'mqsoftware'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.austinstartup.com/2010/01/phurnace-acquired-by-bmc-software/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+AustinStartup+%28AustinStartup+%28New%29%29&utm_content=Google+Reader', 'source_description': 'Austin Startup', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 7, 'company': {'name': 'Phurnace Software', 'permalink': 'phurnace-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bmc.com/news/press-releases/2010/NeptunySoftwareBusiness.html', 'source_description': 'BMC Software Extends Leadership in Virtualization and Cloud Management with Acquisition of Neptuny’s Software Business', 'acquired_year': 2010, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'Neptuny', 'permalink': 'neptuny'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/422571/bmc-software-acquires-gridapp-systems-inc-', 'source_description': 'BMC Software Acquires GridApp Systems, Inc.', 'acquired_year': 2010, 'acquired_month': 12, 'acquired_day': 3, 'company': {'name': 'GridApp Systems', 'permalink': 'gridapp-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/486673/bmc-software-acquires-coradiant-inc-', 'source_description': 'BMC SOFTWARE ACQUIRES CORADIANT INC.', 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'Coradiant', 'permalink': 'coradiant'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2011/07/07/bmc-software-acquires-aeroprise-to-enhance-its-mobile-know-how/', 'source_description': 'BMC Software Acquires Aeroprise To Enhance Its Mobile Know-How', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 7, 'company': {'name': 'Aeroprise', 'permalink': 'aeroprise'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/bmc-software-acquires-streamstep-2011-10-05', 'source_description': 'BMC Software Acquires StreamStep', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': 5, 'company': {'name': 'StreamStep', 'permalink': 'streamstep'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/603652/bmc-software-enters-into-definitive-agreement-acquire-numara-software', 'source_description': 'BMC Software Enters Into Definitive Agreement to Acquire Numara Software', 'acquired_year': 2012, 'acquired_month': 1, 'acquired_day': 30, 'company': {'name': 'Numara Software', 'permalink': 'numara-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/08/08/bmc-doubles-down-on-devops-acquires-varalogix/', 'source_description': 'BMC Doubles Down On DevOps, Acquires VaraLogix', 'acquired_year': 2012, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'VaraLogix', 'permalink': 'varalogix'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://yourstory.in/2013/08/vivek-paul-founded-kinetic-glue-gets-acquired-by-houston-based-software-conglomerate-bmc-softwares/', 'source_description': 'Vivek paul founded Kinetic Glue gets acquired by Houston based software conglomerate BMC Softwares', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 1, 'company': {'name': 'KineticGlue', 'permalink': 'kineticglue'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bmc.com/news/press-releases/2009/BMC-Software-to-Acquire-Tideway.html', 'source_description': 'BMC Software to Acquire Tideway', 'acquired_year': 2009, 'acquired_month': 10, 'acquired_day': 19, 'company': {'name': 'Tideway', 'permalink': 'tideway'}}], 'offices': [{'description': '', 'address1': '2101 City West Blvd', 'address2': '', 'zip_code': '77042', 'city': 'Houston', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 29.7805488, 'longitude': -95.3457921}], 'milestones': [{'id': 12987, 'description': 'BMC Software Selects Ingram Micro as First Authorized US Distribution Partner', 'stoned_year': 2011, 'stoned_month': 3, 'stoned_day': 2, 'source_url': 'http://it.tmcnet.com/news/2011/03/02/5349850.htm', 'source_text': '', 'source_description': 'BMC Software Selects Ingram Micro as First Authorized US Distribution Partner', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'BMC Software', 'permalink': 'bmc-software'}}], 'ipo': {'valuation_amount': 6000000000, 'valuation_currency_code': 'USD', 'pub_year': 1988, 'pub_month': 8, 'pub_day': 12, 'stock_symbol': 'NASDAQ:BMC'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 105], 'assets/images/resized/0012/4745/124745v1-max-150x150.jpg'], [[250, 176], 'assets/images/resized/0012/4745/124745v1-max-250x250.jpg'], [[450, 316], 'assets/images/resized/0012/4745/124745v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529865c'), 'name': 'Infoblox', 'permalink': 'infoblox', 'crunchbase_url': 'http://www.crunchbase.com/company/infoblox', 'homepage_url': 'http://www.infoblox.com', 'blog_url': 'http://www.infoblox.com/community/blogs', 'blog_feed_url': 'http://www.infoblox.com/community/blog/625/rss.xml', 'twitter_username': 'infoblox', 'category_code': 'public_relations', 'number_of_employees': 500, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'info@infoblox.com', 'phone_number': '408-986-4000', 'description': '', 'created_at': 'Wed Mar 26 17:44:57 UTC 2008', 'updated_at': 'Fri Dec 06 23:36:35 UTC 2013', 'overview': '

Infoblox is the leading developer of network identity appliances that provide a scalable, secure way for enterprises to manage the critical network identity protocols—including DNS, DHCP, RADIUS and LDAP—that link business applications to the network infrastructure. Infoblox products increase network control while lowering TCO by delivering services that are more secure and scalable, easier to manage, and more reliable than “build-your-own”\\x9d server-software solutions. The Infoblox distributed appliance approach also provides a secure, integrated platform for centralizing the management of identity data and services across the network. With sales and marketing presence in more than 30 countries, Infoblox has over 500 customers from a wide range of industries, many of them Fortune 500 companies.

', 'image': {'available_sizes': [[[150, 49], 'assets/images/resized/0009/5962/95962v3-max-150x150.png'], [[180, 59], 'assets/images/resized/0009/5962/95962v3-max-250x250.png'], [[180, 59], 'assets/images/resized/0009/5962/95962v3-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President and CEO', 'person': {'first_name': 'Robert', 'last_name': 'Thomas', 'permalink': 'robert-thomas'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Thomas', 'last_name': 'S. Roberts', 'permalink': 'thomas-s-roberts'}}, {'is_past': False, 'title': 'CTO & Founder', 'person': {'first_name': 'Stuart', 'last_name': 'Bailey', 'permalink': 'stuart-bailey'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Goguen', 'permalink': 'michael-goguen'}}, {'is_past': False, 'title': 'Network Automation Sales Engineer', 'person': {'first_name': 'Eric', 'last_name': 'Rupert', 'permalink': 'eric-rupert'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Remo', 'last_name': 'Canessa', 'permalink': 'remo-canessa'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Frank', 'last_name': 'Marshall', 'permalink': 'frank-marshall'}}, {'is_past': True, 'title': 'Co-founder & CEO', 'person': {'first_name': 'Nicolas', 'last_name': 'Draca', 'permalink': 'nicolas-draca'}}, {'is_past': True, 'title': 'Vice President- Engineering', 'person': {'first_name': 'Mark', 'last_name': 'Himelstein', 'permalink': 'mark-himelstein'}}, {'is_past': True, 'title': 'VP, Product Mgmt, Product Mktg, Tech Mktg', 'person': {'first_name': 'Brett', 'last_name': 'Eldridge', 'permalink': 'brett-eldridge'}}, {'is_past': True, 'title': 'Vice President of Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Garrison', 'permalink': 'steve-garrison'}}, {'is_past': True, 'title': 'Senior Director of Product Marketing', 'person': {'first_name': 'Yama', 'last_name': 'Habibzai', 'permalink': 'yama-habibzai'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Fred', 'last_name': 'Wang', 'permalink': 'fred-wang'}}, {'is_past': True, 'title': 'Vice President Europe, Middle East and Africa, Regional Director Northern, Southern Europe and Middle East', 'person': {'first_name': 'Dirk', 'last_name': 'Marichal', 'permalink': 'dirk-marichal-2'}}, {'is_past': True, 'title': 'MD, EMEA Channel Sales', 'person': {'first_name': 'Tariq', 'last_name': 'Ahmed', 'permalink': 'tariq-ahmed'}}], 'competitions': [{'competitor': {'name': 'BlueCat Networks', 'permalink': 'bluecat-networks'}}], 'providerships': [], 'total_money_raised': '$30M', 'funding_rounds': [{'id': 17408, 'round_code': 'e', 'source_url': 'http://www.infoblox.com/news/release.cfm?ID=39', 'source_description': 'Infoblox Secures $30 Million To Continue Rapid Growth', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 4, 'funded_day': 25, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lehman Brothers Venture Partners', 'permalink': 'lehman-brothers-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Open Prairie Ventures', 'permalink': 'open-prairie-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Chess Ventures', 'permalink': 'chess-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Duchossois Technology Partners', 'permalink': 'duchossois-technology-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.eweek.com/c/a/IT-Management/Infloblox-Acquires-NetCordia-in-Key-IT-Management-Deal-572846/', 'source_description': 'Infoblox Acquires Netcordia in Key IT Management Deal ', 'acquired_year': 2010, 'acquired_month': 5, 'acquired_day': 4, 'company': {'name': 'Netcordia', 'permalink': 'netcordia'}}], 'offices': [{'description': 'HQ', 'address1': '3111 Coronado Drive', 'address2': '', 'zip_code': '95054', 'city': 'Santa Clara', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 26518, 'description': 'Infoblox bloxHub end user community launches new corporate blog!', 'stoned_year': 2012, 'stoned_month': 9, 'stoned_day': 17, 'source_url': 'http://www.infoblox.com/community/blog/networking-today-vs-long-time-ago', 'source_text': None, 'source_description': 'Networking Today compared to \"A Long, long, time ago.....In...\"', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infoblox', 'permalink': 'infoblox'}}, {'id': 26565, 'description': 'Infoblox Goes Public!', 'stoned_year': 2012, 'stoned_month': 4, 'stoned_day': 20, 'source_url': 'http://www.infoblox.com/en/news/press-releases/2012/infoblox-announces-pricing-of-initial-public-offering.html', 'source_text': None, 'source_description': 'Infoblox Announces Pricing of Initial Public Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Infoblox', 'permalink': 'infoblox'}}], 'ipo': {'valuation_amount': 824000000, 'valuation_currency_code': 'USD', 'pub_year': 2012, 'pub_month': 4, 'pub_day': 20, 'stock_symbol': 'NYSE:BLOX'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 104], 'assets/images/resized/0011/6842/116842v1-max-150x150.jpg'], [[250, 174], 'assets/images/resized/0011/6842/116842v1-max-250x250.jpg'], [[450, 314], 'assets/images/resized/0011/6842/116842v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 90], 'assets/images/resized/0021/1711/211711v2-max-150x150.jpg'], [[250, 151], 'assets/images/resized/0021/1711/211711v2-max-250x250.jpg'], [[450, 272], 'assets/images/resized/0021/1711/211711v2-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 52], 'assets/images/resized/0021/1712/211712v2-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0021/1712/211712v2-max-250x250.jpg'], [[450, 156], 'assets/images/resized/0021/1712/211712v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298674'), 'name': 'Tencent', 'permalink': 'tencent', 'crunchbase_url': 'http://www.crunchbase.com/company/tencent', 'homepage_url': 'http://www.tencent.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1998, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'web', 'alias_list': None, 'email_address': '', 'phone_number': '0755-86013388', 'description': '', 'created_at': 'Thu Mar 27 18:10:15 UTC 2008', 'updated_at': 'Tue Dec 17 02:54:08 UTC 2013', 'overview': '

Tencent is one of China’s largest and most used Internet service portal.

\\n\\n

Since its establishment over the last decade, Tencent has maintained steady growth under its user-oriented operating strategies. It is Tencent’s mission to enhance the quality of human life through Internet services. Presently, Tencent is providing value-added Internet, mobile and telecom services and online advertising under the strategic goal of providing users with “”“”one-stop online lifestyle services”“”“. Tencent’s leading Internet platforms in China – QQ (QQ Instant Messenger), WeChat, QQ.com, QQ Games, Qzone, 3g.QQ.com, SoSo, PaiPai and Tenpay – have brought together China’s largest Internet community, to meet the various needs of Internet users including communication, information, entertainment, e-commerce and others.

\\n\\n

Looking forward, Tencent remains committed to enhancing its development and innovation capabilities while strengthening its nationwide branding for its long term development. More than 60% of Tencent employees are R&D staff. Tencent has obtained patents relating to the technologies in various areas: instant messaging, e-commerce, online payment services, search engine, information security, gaming, and many more. In 2007, Tencent invested more than RMB100 million in setting up the Tencent Research Institute, China’s first Internet research institute, with campuses in Beijing, Shanghai, and Shenzhen. The institute focuses on the self-development of core Internet technologies, in pursuing its development and innovation for the industry.

\\n\\n

In September 2013, Tencent’s market valuation rose to US$101 billion, larger than the total of the market value of Netease, Sina, Sohu, 360, Youku, Dangdan, Snda, Giant Network, Renren and Ctrip combined.

\\n\\n

Tencent was founded in November, 1998. In April, 2000, the IDG and PCCW injected a total of 2.2 million dollars. Tencent was listed in Hong Kong On June 16, 2004.\\nAs of November 21, 2013, QQ has reached an accumulated 2 billion active users and wechat has accumulated 650 million monthly active users. Besides, the numbers of active users for QQ mail, Qzone, Tencent Weibo and QQ news were 274 milion, 626 million, 220 million and 150 million, respectively.\\nTencent faces competition from Baidu, Alibaba and Netease.

', 'image': {'available_sizes': [[[150, 38], 'assets/images/resized/0001/6448/16448v3-max-150x150.jpg'], [[218, 56], 'assets/images/resized/0001/6448/16448v3-max-250x250.jpg'], [[218, 56], 'assets/images/resized/0001/6448/16448v3-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'QQ', 'permalink': 'qq'}, {'name': 'PaiPai', 'permalink': 'paipai'}, {'name': 'SoSo', 'permalink': 'soso'}, {'name': 'TM', 'permalink': 'tm'}, {'name': 'QZone', 'permalink': 'qzone'}, {'name': 'Tenpay', 'permalink': 'tenpay'}, {'name': 'WeChat', 'permalink': 'wechat'}], 'relationships': [{'is_past': False, 'title': 'Core Founder & Advisor Emeritus', 'person': {'first_name': 'Zeng', 'last_name': 'Liqing', 'permalink': 'zeng-liqing'}}, {'is_past': False, 'title': 'CEO of Tencent E-Commerce Holding Company, Senior Executive Vice President', 'person': {'first_name': 'Wu', 'last_name': 'Xiaoguang', 'permalink': 'wu-xiaoguang'}}, {'is_past': False, 'title': 'Founder,chief information officer', 'person': {'first_name': 'Xu', 'last_name': 'Chen Ye', 'permalink': 'xu-chen-ye'}}, {'is_past': False, 'title': 'Core Founders&Executive Director,&Chairman&CEO', 'person': {'first_name': 'Pony', 'last_name': 'Ma', 'permalink': 'pony-ma'}}, {'is_past': False, 'title': 'Core Founder, Advisor Emeritus & Founder and Honorary Chairman of Tencent Charity Fund', 'person': {'first_name': 'Yidan', 'last_name': 'Chen', 'permalink': 'yidan-chen'}}, {'is_past': False, 'title': 'Founder, Chief Technology Officer', 'person': {'first_name': 'Zhidong', 'last_name': 'Zhang', 'permalink': 'zhidong-zhang'}}, {'is_past': False, 'title': 'Chief Financial Officer, Group Senior Vice President', 'person': {'first_name': 'Luo', 'last_name': 'Shuo Han', 'permalink': 'luo-shuo-han'}}, {'is_past': False, 'title': 'Chief Strategy Officer, Senior Executive Vice President', 'person': {'first_name': 'James', 'last_name': 'Mitchell', 'permalink': 'james-mitchell'}}, {'is_past': False, 'title': 'Chief Operating Officer of the Interactive Entertainment Business Group President, Mobile Internet Business Group President', 'person': {'first_name': 'Yuxin', 'last_name': 'Ren', 'permalink': 'yuxin-ren'}}, {'is_past': False, 'title': 'Chief Financial Officer ,Senior Vice President', 'person': {'first_name': 'John', 'last_name': 'Lo', 'permalink': 'john-lo'}}, {'is_past': False, 'title': 'Founder, Chief Information Officer', 'person': {'first_name': 'Chenye', 'last_name': 'Xu', 'permalink': 'chenye-xu'}}, {'is_past': False, 'title': 'President of Social Network Group, Senior Executive Vice President', 'person': {'first_name': 'Dowson', 'last_name': 'Tong', 'permalink': 'dowson-tong'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Guo', 'last_name': 'Kaitian', 'permalink': 'guo-kaitian'}}, {'is_past': False, 'title': 'Group Senior Executive Vice President', 'person': {'first_name': 'Liu', 'last_name': 'Chengmin', 'permalink': 'liu-chengmin'}}, {'is_past': False, 'title': 'President of Technology and Engineering Group, Senior Executive Vice President', 'person': {'first_name': 'Lu', 'last_name': 'Shan', 'permalink': 'lu-shan'}}, {'is_past': False, 'title': 'President of Online Media Group, Senior Executive Vice President', 'person': {'first_name': 'Lau', 'last_name': 'Seng Yee', 'permalink': 'lau-seng-yee'}}, {'is_past': False, 'title': 'Senior Executive Vice President', 'person': {'first_name': 'David', 'last_name': 'Wallerstein', 'permalink': 'david-wallerstein'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Martin', 'last_name': 'Lau', 'permalink': 'martin-lau'}}, {'is_past': False, 'title': 'HRD', 'person': {'first_name': 'Daniel', 'last_name': 'Ma', 'permalink': 'daniel-ma'}}, {'is_past': False, 'title': 'Joint Chief Technology Officer', 'person': {'first_name': 'Mr.', 'last_name': 'Xiong', 'permalink': 'mr-xiong'}}, {'is_past': False, 'title': 'Group Senior Executive Vice President', 'person': {'first_name': 'Network', 'last_name': 'Greatly', 'permalink': 'network-greatly'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Xi', 'last_name': 'dan', 'permalink': 'xi-dan'}}, {'is_past': False, 'title': 'Co-CTO', 'person': {'first_name': 'Jeff', 'last_name': 'Xiong', 'permalink': 'jeff-xiong'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Liu-Zhi', 'last_name': 'ping', 'permalink': 'liu-zhi-ping'}}, {'is_past': False, 'title': 'Social Networking, Business Group President, Group Senior Executive Vice President', 'person': {'first_name': 'Tangdao', 'last_name': 'sheng', 'permalink': 'tangdao-sheng'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Zhang', 'last_name': 'Xiaolong', 'permalink': 'zhang-xiaolong'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Patrick', 'last_name': 'Tsang', 'permalink': 'patrick-tsang'}}, {'is_past': True, 'title': 'Senior Director in Investment', 'person': {'first_name': 'Zhenyuan', 'last_name': 'Chen', 'permalink': 'zhenyuan-chen'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Ken', 'last_name': 'Zhang', 'permalink': 'ken-zhang'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'Rui', 'last_name': 'Zuo', 'permalink': 'rui-zuo'}}, {'is_past': True, 'title': 'Senior Marketing Manager', 'person': {'first_name': 'Ella', 'last_name': 'Zhang', 'permalink': 'ella-zhang'}}, {'is_past': True, 'title': 'Associate Director, Strategy and Data Analysis', 'person': {'first_name': 'Joshua', 'last_name': 'Wu', 'permalink': 'joshua-wu'}}], 'competitions': [{'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'Youku', 'permalink': 'youku'}}], 'providerships': [], 'total_money_raised': '$220k', 'funding_rounds': [{'id': 58111, 'round_code': 'unattributed', 'source_url': '', 'source_description': '', 'raised_amount': 220000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'IDG', 'permalink': 'idg'}, 'person': None}, {'company': {'name': 'PCCW', 'permalink': 'pccw'}, 'financial_org': None, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.virtualworldsnews.com/2008/01/outspark-raises.html', 'source_description': 'Outspark Raises $11M in Round Led by Tencent', 'raised_amount': 11000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 1, 'funded_day': 1, 'company': {'name': 'Outspark', 'permalink': 'outspark'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://www.reuters.com/article/pressRelease/idUS107371+09-Sep-2009+BW20090909', 'source_description': 'Reuters', 'raised_amount': 8000000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 9, 'funded_day': 9, 'company': {'name': 'Riot Games', 'permalink': 'riot-games'}}}, {'funding_round': {'round_code': 'debt_round', 'source_url': 'http://techcrunch.com/2011/10/18/andreessen-horowitz-crunchfund-tencent-back-intelligent-social-address-book-everyme/', 'source_description': '', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Origami Labs', 'permalink': 'origami-labs'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2011/11/01/waddle-funding/', 'source_description': 'Waddle Lands Funding, Launches Updates', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 2011, 'funded_month': 10, 'funded_day': 1, 'company': {'name': 'Waddle', 'permalink': 'waddle'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2012/04/25/ark-seed-round/', 'source_description': 'Ark Raised $4.2 Million Seed Round Instead Of Series A To \"Keep Complete Control\" Of Its People Search Engine ', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 4, 'funded_day': 25, 'company': {'name': 'Ark', 'permalink': 'ark'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://venturebeat.com/2012/12/19/kamcord-7-videos-per-second/', 'source_description': 'http://techcrunch.com/2012/12/19/mobile-game-recording-yc-alum-kamcord-raises-1-5-million-from-andreessen-horowitz-google-ventures-and-others/', 'raised_amount': 1500000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 12, 'funded_day': 19, 'company': {'name': 'Kamcord', 'permalink': 'kamcord'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://sgentrepreneurs.com/2012/12/25/kakao-kakaotalk/', 'source_description': 'Kakao and KakaoTalk profile', 'raised_amount': 62900000, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 5, 'funded_day': 16, 'company': {'name': 'Kakao', 'permalink': 'kakao'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/04/09/plain-vanilla-scores-2-4m-series-a-to-turn-its-multiplayer-quiz-games-into-something-more/', 'source_description': 'Plain Vanilla Scores $2.4M Series A To Turn Its Multiplayer Quiz Games Into Something More', 'raised_amount': 2500000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 9, 'company': {'name': 'Plain Vanilla', 'permalink': 'plain-vanilla'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/07/25/healthcare-crowdfunding-platform-watsi-grabs-1-1m-from-tencent-paul-graham-vinod-khosla-ron-conway-and-more/', 'source_description': 'Healthcare Crowdfunding Platform Watsi Grabs $1.2M From Tencent, Paul Graham, Vinod Khosla, Ron Conway And More', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 7, 'funded_day': 25, 'company': {'name': 'Watsi', 'permalink': 'watsi'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/08/22/kamcord-nabs-another-1m-in-seed-funding-to-help-build-a-community-around-mobile-game-recordings/', 'source_description': 'Kamcord Nabs Another $1M In Seed Funding To Help Build A Community Around Mobile Game Recordings', 'raised_amount': 1000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 22, 'company': {'name': 'Kamcord', 'permalink': 'kamcord'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://thenextweb.com/asia/2013/09/16/chinas-baidu-under-pressure-as-third-and-fourth-placed-search-rivals-team-up-in-448m-merger/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+TheNextWeb+%28The+Next+Web+All+Stories%29', 'source_description': ' China’s Baidu under pressure as third- and fourth-placed search rivals team up in $448m merger ', 'raised_amount': 448000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 9, 'funded_day': 10, 'company': {'name': 'Sogou', 'permalink': 'sogou'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/10/04/icloud-alternative-loom-raises-1-4-million-seed-round/', 'source_description': 'iCloud Alternative Loom Raises $1.4 Million Seed Round', 'raised_amount': 1400000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 4, 'company': {'name': 'Loom', 'permalink': 'loom'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/12/26/quizup-22m-sequoia-botha/', 'source_description': 'Plain Vanilla Games, Maker Of Ultra-Hot Trivia App QuizUp, Raises Another $22 Million From Sequoia', 'raised_amount': 22000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 26, 'company': {'name': 'Plain Vanilla', 'permalink': 'plain-vanilla'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://technode.com/2014/01/02/chinese-taxi-app-didi-secured-100-million-dollar-in-series-c/?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'Chinese Taxi App Didi Secured $100 million in Series C Funding', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2014, 'funded_month': 1, 'funded_day': 2, 'company': {'name': 'Didi Dache', 'permalink': 'didi-dache'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://technode.com/2014/01/02/chinese-taxi-app-didi-secured-100-million-dollar-in-series-c/?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'Chinese Taxi App Didi Secured $100 million in Series C Funding', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': None, 'funded_day': None, 'company': {'name': 'Didi Dache', 'permalink': 'didi-dache'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pacificepoch.com/newsstories?id=1624194_0_5_0_M', 'source_description': 'Tencent Buys Out Shenzhen Domain Networks', 'acquired_year': 2010, 'acquired_month': 4, 'acquired_day': 20, 'company': {'name': 'Shenzhen Domain Networks', 'permalink': 'shenzhen-domain-networks'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://paidcontent.org/article/419-tencent-buys-google-backed-online-community-company-comsenz/', 'source_description': 'Tencent Buys Google-Backed Online Community Company Comsenz', 'acquired_year': 2010, 'acquired_month': 8, 'acquired_day': 23, 'company': {'name': 'Comsenz', 'permalink': 'comsenz'}}], 'offices': [{'description': '', 'address1': 'Tencent Building, Kejizhongyi Avenue', 'address2': 'Hi-techPark,Nanshan District', 'zip_code': '518057', 'city': 'Shenzhen', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 7786, 'description': 'Annual revenue (2009) hit US$ 1.8 billion with profit over US$ 760 million', 'stoned_year': 2010, 'stoned_month': 3, 'stoned_day': 17, 'source_url': 'http://www.tencent.com/en-us/content/at/2010/attachments/20100317.pdf', 'source_text': None, 'source_description': 'Tencent Announces 2009 Annual Results', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 8033, 'description': 'Tencent Makes Thailand Investment With Sanook.com', 'stoned_year': 2010, 'stoned_month': 8, 'stoned_day': 30, 'source_url': 'http://www.businessinsider.com/tencent-invests-sanook-2010-8', 'source_text': '', 'source_description': 'Tencent Makes Thailand Investment With Sanook.com', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 10302, 'description': 'Tencent invested in MIH India Global Internet, owner of ibibo.com.', 'stoned_year': 2008, 'stoned_month': 6, 'stoned_day': 18, 'source_url': 'http://convergence.in/blog/2008/06/18/tencent-invests-in-mih-internet-ibibo-dwaar-onefamily-com/', 'source_text': None, 'source_description': 'Tencent Invests in MIH Internet', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 10303, 'description': 'Tencent invested in Vinagame in Vietnam', 'stoned_year': 2006, 'stoned_month': None, 'stoned_day': None, 'source_url': 'http://www.vng.com.vn/en/tin-tuc-vng/chi-tiet.vng-in-the-news.here-come-the-viet-gamers.229.html', 'source_text': None, 'source_description': 'Here come the Viet gamers', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 12231, 'description': \"HERE THEY COME: China's Facebook Buys US Gaming Startup For $400 Million\", 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 5, 'source_url': 'http://www.businessinsider.com/here-they-come-chinas-facebook-buys-us-gaming-startup-for-400-million-2011-2', 'source_text': '', 'source_description': \"HERE THEY COME: China's Facebook Buys US Gaming Startup For $400 Million\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}, {'id': 17114, 'description': 'Tencent Reports $1 Billion In Revenues In Q2 But Falls Short Of Analyst Expectations', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 10, 'source_url': 'http://techcrunch.com/2011/08/10/tencent-reports-1-billion-in-revenues-in-q2-but-falls-short-of-analyst-expectations/', 'source_text': '', 'source_description': 'Tencent Reports $1 Billion In Revenues In Q2 But Falls Short Of Analyst Expectations', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Tencent', 'permalink': 'tencent'}}], 'ipo': {'valuation_amount': 11000000000, 'valuation_currency_code': 'USD', 'pub_year': 2004, 'pub_month': 6, 'pub_day': 16, 'stock_symbol': 'HK:0700'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://mashpedia.com/Tencent', 'title': 'Tencent at Mashpedia'}, {'external_url': 'http://ceoworld.biz/2013/09/17/chinese-tencent-is-now-worth-almost-twice-as-much-as-baidu-close-to-facebook', 'title': 'Chinese Tencent Is Now Worth Almost TWICE As Much As Baidu: Close To Facebook'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.tencent.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675298760'), 'name': 'Baidu', 'permalink': 'baidu', 'crunchbase_url': 'http://www.crunchbase.com/company/baidu', 'homepage_url': 'http://www.baidu.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'baidu_', 'category_code': 'search', 'number_of_employees': 6000, 'founded_year': 1999, 'founded_month': 10, 'founded_day': 11, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'search', 'alias_list': '', 'email_address': 'ir@baidu.com', 'phone_number': '86 10 8262 1188', 'description': '', 'created_at': 'Mon Apr 07 23:06:27 UTC 2008', 'updated_at': 'Mon Jan 06 10:56:31 UTC 2014', 'overview': '

It is the largest Chinese website and Chinese search engine in the world.

\\n\\n

From its very start, Baidu’s mission is to help people obtain information and find what they need in the easiest and quickest way. For 10 years, Baidu sticks to the ideology of providing simple yet reliable services and keeps satisfying the needs of mass online audience and providing a full range of products based on search engine, including functional online search, Tieba community search, industry-based vertical search, Mp3 search, portal channels and IM etc, covering all the search needs in the Chinese Internet world. According to statistics, it has already captured a 80 % market share for search requests.

\\n\\n

Currently, Baidu has become one of the most valuable brands. Britain’s newspaper Financial Times included Baidu in its “”Top ten Chinese global brands survey”” and thus Baidu became the youngest and the only one Internet company in this list. The brand also got such titles as “”the most respectable enterprise in Asia”“, “”the world’s most innovative company”“, “”the star of Chinese Internet”” etc.

\\n\\n

In January 2000, Baidu was established in Zhongguancun, Beijing. With over 17000 employees, Baidu offers products including Baidu Webpage, Baidu Video, Baidu Map, hao123.com, BaiduPedia, Baidu Input, Baidu Toolbar and TTPlayer. Iqiyi and Sky Software also belong to Baidu.

\\n\\n

On August 5, 2005, Baidu was listed on Nasdaq, recording the highest increase in stock prices on the first day of trading since November,1999. Baidu became the first Chinese company to be included in the NASDAQ-100 index. On November 21, 2012, Baidu raised $1.5 Billion in Bonds Issue.

\\n\\n

Baidu competes with Tencent, Google and Qihu 360.

', 'image': {'available_sizes': [[[150, 71], 'assets/images/resized/0001/6966/16966v4-max-150x150.png'], [[250, 119], 'assets/images/resized/0001/6966/16966v4-max-250x250.png'], [[270, 129], 'assets/images/resized/0001/6966/16966v4-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Baidu Space', 'permalink': 'baidu-space'}], 'relationships': [{'is_past': False, 'title': 'Co-founder', 'person': {'first_name': 'Eric', 'last_name': 'Xu', 'permalink': 'eric-xu'}}, {'is_past': False, 'title': 'Chief Architect, Mobile Cloud Computing', 'person': {'first_name': 'Zhenyu', 'last_name': 'Hou', 'permalink': 'zhenyu-hou'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Jennifer', 'last_name': 'Li', 'permalink': 'jennifer-li'}}, {'is_past': False, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Robin', 'last_name': 'Li', 'permalink': 'robin-li'}}, {'is_past': False, 'title': 'Vice President of HR', 'person': {'first_name': 'Lee', 'last_name': 'Liu', 'permalink': 'lee-liu'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': False, 'title': 'VP Sales', 'person': {'first_name': 'Zhan', 'last_name': 'Wang', 'permalink': 'zhan-wang'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Zhu', 'permalink': 'david-zhu'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Mengqiu', 'last_name': 'Wang', 'permalink': 'mengqiu-wang'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Victor', 'last_name': 'Liang', 'permalink': 'victor-liang'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'James', 'last_name': 'Ding', 'permalink': 'james-ding'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Nobuyuki', 'last_name': 'Idei', 'permalink': 'nobuyuki-idei'}}, {'is_past': False, 'title': 'Executive Director and General Manager, Mobile Cloud Computing Business Division', 'person': {'first_name': 'Mingyuan', 'last_name': 'Li', 'permalink': 'mingyuan-li'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Kemas', 'last_name': 'Antonius', 'permalink': 'kemas-antonius'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Dejian', 'last_name': 'Liu', 'permalink': 'dejian-liu'}}, {'is_past': False, 'title': 'VP Commercial Operations', 'person': {'first_name': 'Hailong', 'last_name': 'Xiang', 'permalink': 'hailong-xiang'}}, {'is_past': False, 'title': 'Vice President', 'person': {'first_name': 'Guang', 'last_name': 'Zhu', 'permalink': 'guang-zhu'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Greg', 'last_name': 'Penner', 'permalink': 'greg-penner'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'William', 'last_name': 'Decker', 'permalink': 'william-decker'}}, {'is_past': False, 'title': 'Head of International Business', 'person': {'first_name': 'Jonathan', 'last_name': 'Dillon', 'permalink': 'jonathan-dillon'}}, {'is_past': False, 'title': 'Chairperson, IT Committee', 'person': {'first_name': 'Jinmao', 'last_name': 'Zhang', 'permalink': 'jinmao-zhang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Bobby', 'last_name': 'Chao', 'permalink': 'bobby-chao'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Yiyan', 'last_name': 'Li', 'permalink': 'yiyan-li'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'Ye', 'last_name': 'Peng', 'permalink': 'ye-peng'}}, {'is_past': True, 'title': 'Product Marketing Specialist', 'person': {'first_name': 'Forrest', 'last_name': 'Lu', 'permalink': 'forrest-lu'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Liu', 'last_name': 'Jiong', 'permalink': 'liu-jiong'}}, {'is_past': True, 'title': 'Executive Positions', 'person': {'first_name': 'Chen', 'last_name': 'Zhenyu', 'permalink': 'chen-zhenyu'}}, {'is_past': True, 'title': 'product designer', 'person': {'first_name': 'yixin', 'last_name': 'hu', 'permalink': 'yixin-hu'}}, {'is_past': True, 'title': 'Product Director', 'person': {'first_name': 'Chuan', 'last_name': 'Zhang', 'permalink': 'chuan-zhang'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Xiaoshuan', 'last_name': 'Li', 'permalink': 'xiaoshuan-li'}}, {'is_past': True, 'title': 'Senior Front-end Engineer', 'person': {'first_name': 'Jinpu', 'last_name': 'Hu', 'permalink': 'jinpu-hu'}}, {'is_past': True, 'title': 'Co-Lead Investor; Director', 'person': {'first_name': 'Scott', 'last_name': 'Walchek', 'permalink': 'scott-walchek'}}, {'is_past': True, 'title': 'Senior Investment Manager', 'person': {'first_name': 'Terry', 'last_name': 'Zhu', 'permalink': 'terry-zhu'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Lu', 'last_name': 'Lin', 'permalink': 'lu-lin'}}], 'competitions': [{'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, {'competitor': {'name': 'Microsoft', 'permalink': 'microsoft'}}, {'competitor': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'competitor': {'name': 'Sina', 'permalink': 'sina'}}, {'competitor': {'name': 'Sohu.com', 'permalink': 'sohu'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'TradeKey', 'permalink': 'tradekey'}}], 'providerships': [], 'total_money_raised': '$161M', 'funding_rounds': [{'id': 1979, 'round_code': 'c', 'source_url': 'http://www.marketwatch.com/News/Story/Story.aspx?guid={BDC943CA-1936-4F19-9FDE-1DDC4D648178}', 'source_description': 'MarketWatch', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 6, 'funded_day': 18, 'investments': [{'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': {'name': 'Google', 'permalink': 'google'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Bridger Management', 'permalink': 'bridger-management'}, 'person': None}, {'company': None, 'financial_org': {'name': 'China Equity', 'permalink': 'china-equity'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture TDF', 'permalink': 'venture-tdf'}, 'person': None}, {'company': None, 'financial_org': {'name': 'China Value', 'permalink': 'china-value'}, 'person': None}]}, {'id': 12454, 'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2010/02/26/providence-baidu-qiyi/', 'source_description': \"Hulu Investor Injects $50 Million Into Baidu's Online Video Venture, Qiyi\", 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 2, 'funded_day': 26, 'investments': [{'company': None, 'financial_org': {'name': 'Providence Equity Partners', 'permalink': 'providence-equity-partners'}, 'person': None}]}, {'id': 58109, 'round_code': 'b', 'source_url': '', 'source_description': '', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 9, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Integrity Partners', 'permalink': 'integrity-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Peninsula Capital', 'permalink': 'peninsula-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Draper Fisher Jurvetson (DFJ)', 'permalink': 'draper-fisher-jurvetson'}, 'person': None}, {'company': None, 'financial_org': {'name': 'IDG', 'permalink': 'idg'}, 'person': None}]}, {'id': 58110, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': 1200000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 2, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Integrity Partners', 'permalink': 'integrity-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Peninsula Capital Fund', 'permalink': 'peninsula-capital-fund'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.paidcontent.org/entry/419-baidu-invests-15-million-in-chinese-iptv-operator-uitv/', 'source_description': 'paidcontent.org', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 9, 'funded_day': 28, 'company': {'name': 'UiTV', 'permalink': 'uitv'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://www.chinawebradar.com/926/baidu-invested-in-a-video-ads-service-provider.html', 'source_description': 'Baidu Invested A Video Ads Service Provider', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 29, 'company': {'name': 'AdsIt', 'permalink': 'adsit'}}}, {'funding_round': {'round_code': 'a', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 5, 'funded_day': None, 'company': {'name': 'Ku6', 'permalink': 'ku6'}}}, {'funding_round': {'round_code': 'd', 'source_url': 'http://techcrunch.com/2011/03/08/baidu-leads-50-million-funding-round-for-chinese-real-estate-marketplace-anjuke/', 'source_description': 'Baidu Leads $50 Million Funding Round For Chinese Real Estate Marketplace Anjuke', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': 8, 'company': {'name': 'Anjuke', 'permalink': 'anjuke-com'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://techcrunch.com/2011/06/24/baidu-makes-306-million-strategic-investment-in-chinese-travel-search-engine-qunar/', 'source_description': 'Baidu Makes $306 Million Strategic Investment In Chinese Travel Search Engine Qunar', 'raised_amount': 306000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 6, 'funded_day': 24, 'company': {'name': 'Qunar.com', 'permalink': 'qunar-com'}}}, {'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/04/14/baidu-hillhouse-ggv-reportedly-invest-57m-in-qunar-as-the-chinese-travel-site-weathers-a-boycott/', 'source_description': 'Baidu, Hillhouse & GGV Reportedly Invest $57M In Qunar As The Chinese Travel Site Weathers A Boycott', 'raised_amount': 57000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 14, 'company': {'name': 'Qunar.com', 'permalink': 'qunar-com'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thefreelibrary.com/Baidu+Acquires+Hao123-a0122413568', 'source_description': 'Baidu Acquires Hao123', 'acquired_year': 2004, 'acquired_month': 9, 'acquired_day': 16, 'company': {'name': 'Hao123.com', 'permalink': 'hao123-com'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.tradingmarkets.com/.site/news/Stock%20News/2687423/', 'source_description': 'DayHand Denies Being Acquired by Baidu', 'acquired_year': 2009, 'acquired_month': 11, 'acquired_day': 30, 'company': {'name': 'DayHand Network Technology', 'permalink': 'dayhand-network-technology'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/baidu-acquires-pps-370-million-video/?utm_source=twitter.com/eskimon&utm_medium=twitter', 'source_description': 'Baidu Acquires PPS for $370 Million, Claims It’s Now China’s Biggest Video Platform', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 7, 'company': {'name': 'PPS', 'permalink': 'pps'}}, {'price_amount': 1900000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/15/baidu-agrees-to-buy-chinese-android-app-distributor-91-wireless-for-1-9b/', 'source_description': 'Baidu Agrees To Buy Chinese Android App Distributor 91 Wireless For $1.9B', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'company': {'name': '91 Wireless', 'permalink': '91-wireless'}}, {'price_amount': 36000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.venturedata.org/?i482385_Baidu-to-spend-$30-million-acquisition-of-mobile-security-company-TrustGo', 'source_description': 'Baidu to spend $ 36 million acquisition of mobile security company TrustGo', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': None, 'company': {'name': 'TrustGo', 'permalink': 'trustgo'}}, {'price_amount': 1850000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.reuters.com/article/2013/08/14/us-baidu-91wireless-idUSBRE97D0AR20130814', 'source_description': \"Baidu says agrees to buy Netdragon's 91 Wireless for $1.85 billion\", 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 14, 'company': {'name': 'NetDragon', 'permalink': 'netdragon-websoft'}}, {'price_amount': 31300000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://technode.com/2013/12/27/baidu-to-acquire-online-publisher-pw-literature-for-rmb-192-million/', 'source_description': 'Baidu to Acquire Online Publisher PW Literature for RMB191.5 million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 27, 'company': {'name': 'Beijing Huanxiang Zongheng Chinese Literature', 'permalink': 'beijing-huanxiang-zongheng-chinese-literature'}}], 'offices': [{'description': None, 'address1': 'No. 58 North-West 4th Ring Road', 'address2': 'Ideal International Plaza, 12 Floor', 'zip_code': '100080', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3434, 'description': 'Banners Broker Make Money With Advertisers and Advertising\\r\\n\\r\\nBanners Broker make money from advertising and advertiser.\\r\\n\\r\\nFits you advertise your banners ads, increase your branding and sales, and earn money by selling advertising inventory.\\r\\n\\r\\nBanners ', 'stoned_year': 2006, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://news.bbc.co.uk/1/hi/business/5108778.stm', 'source_text': None, 'source_description': 'Google offloads Baidu investment ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 16301, 'description': 'Baidu Realigns Four Main Business Functions', 'stoned_year': 2011, 'stoned_month': 7, 'stoned_day': 8, 'source_url': 'http://www.prnewswire.com/news-releases/baidu-announces-realignment-of-four-main-business-functions-125201209.html', 'source_text': '', 'source_description': 'Baidu Announces Realignment of Four Main Business Functions', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 33751, 'description': 'Baidu Confirms $370M Purchase Of PPS, Underscoring Online Video’s Importance For Internet Companies Around The World', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 7, 'source_url': 'http://techcrunch.com/2013/05/07/baidu-confirms-370m-purchase-of-pps-underscoring-online-videos-importance-for-internet-companies-around-the-world/', 'source_text': '', 'source_description': 'Baidu Confirms $370M Purchase Of PPS, Underscoring Online Video’s Importance For Internet Companies Around The World', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}, {'id': 38712, 'description': 'Baidu to Buy 59% of Renren’s Group-buying Service Nuomi for $160 million', 'stoned_year': 2013, 'stoned_month': 8, 'stoned_day': 23, 'source_url': 'http://technode.com/2013/08/23/baidu-to-buy-59-percentof-renrens-group-buying-service-nuomi-for-160-million/?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'Baidu to Buy 59% of Renren’s Group-buying Service Nuomi for $160 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Baidu', 'permalink': 'baidu'}}], 'ipo': {'valuation_amount': 4000000000, 'valuation_currency_code': 'USD', 'pub_year': 2005, 'pub_month': 8, 'pub_day': 5, 'stock_symbol': 'NASDAQ:BIDU'}, 'video_embeds': [{'embed_code': '', 'description': '

Baidu vs. Google

'}, {'embed_code': '\\r\\n', 'description': '

Baidu profile via Wallstrip

'}], 'screenshots': [{'available_sizes': [[[150, 74], 'assets/images/resized/0022/2694/222694v1-max-150x150.png'], [[250, 124], 'assets/images/resized/0022/2694/222694v1-max-250x250.png'], [[450, 223], 'assets/images/resized/0022/2694/222694v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://mashpedia.com/Baidu', 'title': 'Baidu at Mashpedia'}, {'external_url': 'http://ceoworld.biz/ceo/2013/09/16/baidu-launches-hdmi-tv-plugin-a-google-chromecast-like-device', 'title': 'Baidu Launches HDMI TV Plugin: A Google Chromecast-Like Device'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.baidu.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd6752987fe'), 'name': 'Geeknet', 'permalink': 'geeknet', 'crunchbase_url': 'http://www.crunchbase.com/company/geeknet', 'homepage_url': 'http://www.geek.net', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'geeknet_inc', 'category_code': 'advertising', 'number_of_employees': 127, 'founded_year': 1993, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': 'pr@geek.net', 'phone_number': '1-877-433-5638', 'description': '', 'created_at': 'Sun Apr 13 20:53:45 UTC 2008', 'updated_at': 'Thu Jul 26 11:52:23 UTC 2012', 'overview': '

Geeknet is the online network for the global geek community.

\\n\\n

Their sites include SourceForge, Slashdot, ThinkGeek, Ohloh and freshmeat. Geeknet serves an audience of more than 40 million users each month and provide the tech-obsessed with content, culture, connections, commerce, and all the things that geeks crave.

', 'image': {'available_sizes': [[[150, 31], 'assets/images/resized/0007/2407/72407v1-max-150x150.jpg'], [[250, 52], 'assets/images/resized/0007/2407/72407v1-max-250x250.jpg'], [[250, 52], 'assets/images/resized/0007/2407/72407v1-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Slashdot', 'permalink': 'slashdot'}, {'name': 'ThinkGeek', 'permalink': 'thinkgeek'}, {'name': 'SourceForge', 'permalink': 'sourceforge'}, {'name': 'Freshmeat', 'permalink': 'freshmeat'}], 'relationships': [{'is_past': False, 'title': 'Chairman of the Board of Directors/ Interim President and Chief Executive Officer', 'person': {'first_name': 'Kenneth', 'last_name': 'G. Langone', 'permalink': 'kenneth-g-langone'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Patricia', 'last_name': 'Morris', 'permalink': 'patricia-morris'}}, {'is_past': False, 'title': 'Senior Vice President, Sales', 'person': {'first_name': 'Dave', 'last_name': 'Colford', 'permalink': 'dave-colford'}}, {'is_past': False, 'title': 'President, General Manager, ThinkGeek.com', 'person': {'first_name': 'Caroline', 'last_name': 'Offutt', 'permalink': 'caroline-offutt'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'David', 'last_name': 'Wright', 'permalink': 'david-wright-4'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Scott', 'last_name': 'Kauffman', 'permalink': 'scott-kauffman'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Crompton', 'last_name': 'Karen', 'permalink': 'crompton-karen'}}, {'is_past': True, 'title': 'CMO', 'person': {'first_name': 'Michael', 'last_name': 'Rudolph', 'permalink': 'michael-rudolph'}}, {'is_past': True, 'title': 'Vice President, International Commercial Director', 'person': {'first_name': 'David', 'last_name': 'Wightman', 'permalink': 'david-wightman'}}, {'is_past': True, 'title': 'Vice President, Corporate Controller', 'person': {'first_name': 'Jeffrey', 'last_name': 'Chalmers', 'permalink': 'jeffrey-chalmers'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Tony', 'last_name': 'Guntharp', 'permalink': 'tony-guntharp'}}, {'is_past': True, 'title': 'Chief Product Officer', 'person': {'first_name': 'Scott', 'last_name': 'Collison', 'permalink': 'scott-collison'}}, {'is_past': True, 'title': 'General Manager of Development, Ad Operations Director at Sourceforge', 'person': {'first_name': 'Patrick', 'last_name': 'Schoonveld', 'permalink': 'patrick-schoonveld'}}, {'is_past': True, 'title': 'Director of Network Operations', 'person': {'first_name': 'Zac', 'last_name': 'Sprackett', 'permalink': 'zac-sprackett'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Fairfax', 'state_code': 'VA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'San Francisco', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'New York', 'state_code': 'NY', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Dexter', 'state_code': 'MI', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3048, 'description': 'SourceForge, Inc. Changes its Name to Geeknet, Inc.', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': 4, 'source_url': 'http://geek.net/press/sourceforge-inc-changes-its-name-to-geeknet-inc/', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Geeknet', 'permalink': 'geeknet'}}], 'ipo': {'valuation_amount': 134000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 11, 'pub_day': 2, 'stock_symbol': 'GKNT'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 119], 'assets/images/resized/0007/2421/72421v2-max-150x150.png'], [[250, 199], 'assets/images/resized/0007/2421/72421v2-max-250x250.png'], [[450, 358], 'assets/images/resized/0007/2421/72421v2-max-450x450.png']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989a0'), 'name': 'Opsware', 'permalink': 'opsware', 'crunchbase_url': 'http://www.crunchbase.com/company/opsware', 'homepage_url': 'http://www.opsware.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'opsware', 'category_code': 'enterprise', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 9, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': 'Loudcloud', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue May 06 00:27:28 UTC 2008', 'updated_at': 'Thu Jul 25 13:44:10 UTC 2013', 'overview': '

Opsware, Inc. is a software company based in Sunnyvale, California which offers products for server and network device provisioning, configuration and management targeted toward enterprise customers. Opsware also has offices in New York City, Seattle, Washington and Cary, North Carolina.

\\n\\n

The company that was formerly known as Loudcloud was founded on September 9, 1999 (i.e., 9/9/99) as a managed services provider. After selling the operations side of the business to EDS in the summer of 2002, Loudcloud became Opsware and went to market as a technology company, offering the software that had been developed internally to support customer systems via automated server life-cycle management. In December 2003, Opsware acquired asset management systems provider Tangram Enterprise Solutions, and in December 2004 acquired network device configuration management vendor Rendition Networks. In July 2006 Opsware acquired CreekPath to fill out its Data Center Automation (DCA) product offering, by allowing provisioning of storage components as well. Lastly, in March 2007 Opsware acquired Seattle-based iConclude and their run-book automation software, which allowed Opsware to tightly integrate datacenter management duties end-to-end.

\\n\\n

In July 2007, HP announced that it had agreed to acquire Opsware for $1.6 billion in cash ($14.25 per share), 16x revenues. It is HP’s third largest acquisition behind Compaq and Mercury.

', 'image': {'available_sizes': [[[150, 53], 'assets/images/resized/0001/8894/18894v1-max-150x150.jpg'], [[165, 59], 'assets/images/resized/0001/8894/18894v1-max-250x250.jpg'], [[165, 59], 'assets/images/resized/0001/8894/18894v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Co-Founder, CTO', 'person': {'first_name': 'Tim', 'last_name': 'Howes', 'permalink': 'tim-howes'}}, {'is_past': True, 'title': 'Co-Founder, CEO', 'person': {'first_name': 'Ben', 'last_name': 'Horowitz', 'permalink': 'ben-horowitz'}}, {'is_past': True, 'title': 'Co-Founder, Chairman', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Chief Tactician', 'person': {'first_name': 'In', 'last_name': 'Sik Rhee', 'permalink': 'in-sik-rhee'}}, {'is_past': True, 'title': 'VP of Product Management', 'person': {'first_name': 'Ari', 'last_name': 'Newman', 'permalink': 'ari-newman'}}, {'is_past': True, 'title': 'SVP & GM, Server Automation Products', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'EVP Business Development', 'person': {'first_name': 'John', 'last_name': \"O'Farrell\", 'permalink': 'john-ofarrell'}}, {'is_past': True, 'title': 'SVP', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'EVP', 'person': {'first_name': 'John', 'last_name': \"O'Farrell\", 'permalink': 'john-ofarrell'}}, {'is_past': True, 'title': 'Director of Enterprise Sales', 'person': {'first_name': 'Todd', 'last_name': 'Feinroth', 'permalink': 'todd-feinroth'}}, {'is_past': True, 'title': 'General Counsel', 'person': {'first_name': 'Jordan', 'last_name': 'Breslow', 'permalink': 'jordan-breslow'}}, {'is_past': True, 'title': 'Business Development/Sales', 'person': {'first_name': 'Keith', 'last_name': 'Kryszczun', 'permalink': 'keith-kryszczun'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Andy', 'last_name': 'Denmark', 'permalink': 'andy-denmark'}}, {'is_past': True, 'title': 'Vice President, Asia-Pacific', 'person': {'first_name': 'Stephen', 'last_name': 'Tsuchiyama', 'permalink': 'stephen-tsuchiyama'}}, {'is_past': True, 'title': 'Consulting Engineer', 'person': {'first_name': 'Gagan', 'last_name': 'Palrecha', 'permalink': 'gagan-palrecha'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Mike', 'last_name': 'Volpi', 'permalink': 'mike-volpi'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Wadler', 'permalink': 'aaron-wadler'}}, {'is_past': True, 'title': 'VP of Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Vishria', 'permalink': 'eric-vishria'}}, {'is_past': True, 'title': 'Director, Engineering', 'person': {'first_name': 'Mike', 'last_name': 'Schwartz', 'permalink': 'mike-schwartz-2'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Carl', 'last_name': 'Rydbeck', 'permalink': 'carl-rydbeck'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$186M', 'funding_rounds': [{'id': 2295, 'round_code': 'b', 'source_url': 'http://www.redherring.com/Home/8886', 'source_description': 'Red Herring', 'raised_amount': 120000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 6, 'funded_day': 27, 'investments': [{'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Integral Capital Partners', 'permalink': 'integral-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Amerindo Investment Advisors', 'permalink': 'amerindo-investment-advisors'}, 'person': None}, {'company': None, 'financial_org': {'name': 'The Aurora Funds', 'permalink': 'the-aurora-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}]}, {'id': 14061, 'round_code': 'a', 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_description': 'The Case for the Fat Startup', 'raised_amount': 21000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Benchmark', 'permalink': 'benchmark-2'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}]}, {'id': 14062, 'round_code': 'debt_round', 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_description': 'The Case for the Fat Startup', 'raised_amount': 45000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Morgan Stanley', 'permalink': 'morgan-stanley'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 1600000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://venturebeat.com/2007/07/23/opsware-sells-to-hp-for-16-billion-in-happy-ending/', 'source_description': 'VentureBeat', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 23, 'acquiring_company': {'name': 'Hewlett-Packard', 'permalink': 'hewlett-packard'}}, 'acquisitions': [{'price_amount': 53000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://venturebeat.com/2007/03/07/opsware-data-center-company-buys-iconclude-for-53m/', 'source_description': 'Opsware, data center company, buys iConclude for $53M', 'acquired_year': 2007, 'acquired_month': 3, 'acquired_day': 7, 'company': {'name': 'iConclude', 'permalink': 'iconclude'}}], 'offices': [{'description': '', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 4819, 'description': 'LoudCloud/ Opsware goes public March 2001: Loudcloud goes public on Nasdaq, raises $160 million and is valued in the public markets at approximately $480 million. ', 'stoned_year': 2001, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://bhorowitz.com/2010/03/17/the-case-for-the-fat-startup/', 'source_text': '', 'source_description': 'The Case for the Fat Startup', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Opsware', 'permalink': 'opsware'}}], 'ipo': {'valuation_amount': 450000000, 'valuation_currency_code': 'USD', 'pub_year': 2001, 'pub_month': 3, 'pub_day': 9, 'stock_symbol': 'NASDAQ:LDCL'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989f2'), 'name': 'Telenav', 'permalink': 'telenav', 'crunchbase_url': 'http://www.crunchbase.com/company/telenav', 'homepage_url': 'http://www.telenav.com', 'blog_url': 'http://blog.telenav.com/', 'blog_feed_url': 'http://feeds.feedburner.com/telenav/navigating-life', 'twitter_username': 'telenav', 'category_code': 'mobile', 'number_of_employees': 1000, 'founded_year': 1999, 'founded_month': 9, 'founded_day': 9, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobile, wireless, location-based-services, lbs, gps, gps-navigation, in-car-navigation, local-search, maps, mobile-advertising, mobile-commerce, location-tracking, workflow-automation, asset-tracking, mobile-resource-management, mobile-workforce-managemen', 'alias_list': '', 'email_address': 'media@telenav.com', 'phone_number': ' 408-245-3800', 'description': 'Mobile location-based services (LBS)', 'created_at': 'Wed May 07 23:57:24 UTC 2008', 'updated_at': 'Fri Jul 12 13:16:23 UTC 2013', 'overview': '

Telenav is a provider of consumer location-based services (LBS), enterprise LBS and automotive LBS. Telenav’s solutions provide consumers, wireless service providers, enterprises and automakers with location-specific, real-time, personalized services such as GPS navigation, local search, mobile advertising, mobile commerce, location tracking and workflow automation. Telenav’s technology is available across more than 1,200 types of mobile phones, all major mobile phone operating systems and a broad range of wireless network protocols.

\\n\\n

Telenav’s partners are wireless carriers, automobile manufacturers and original equipment manufacturers (OEMs), app developers, advertisers and agencies, as well as enterprises large and small. We are already nearly everywhere: AT&T, Bell Mobility, Boost Mobile, China Mobile, Ford, NII Holdings, QNX Software Systems, Rogers, Sony, Sprint Nextel, Telcel, T-Mobile UK, T-Mobile US, U.S. Cellular, Verizon Wireless and Vivo Brazil.

\\n\\n

Quick facts:

\\n\\n
    \\n
  1. More than 30 million people worldwide already connect with our services from mobile phones, tablets, computers, cars, and developer applications.
  2. \\n
  3. Mobile OS support of over 1,300 phones
  4. \\n
  5. Team of 1000+ employees worldwide with offices in North America, China, Brazil and the UK.
  6. \\n
\\n\\n

TeleNav products accounted for 55 percent of the revenue generated by top mobile applications distributed by carriers (Nielsen Mobile, Q1 2010).

', 'image': {'available_sizes': [[[150, 42], 'assets/images/resized/0006/6385/66385v3-max-150x150.png'], [[250, 70], 'assets/images/resized/0006/6385/66385v3-max-250x250.png'], [[450, 127], 'assets/images/resized/0006/6385/66385v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'TeleNav GPS Navigator', 'permalink': 'telenav-gps-navigator'}, {'name': 'AT&T Navigator', 'permalink': 'at-t-navigator'}, {'name': 'Sprint Navigation', 'permalink': 'sprint-navigation'}, {'name': 'Rogers Navigator', 'permalink': 'rogers-navigator'}, {'name': 'GPS Navigator from Bell', 'permalink': 'gps-navigator-from-bell'}, {'name': 'Vivo Co-Piloto', 'permalink': 'vivo-co-piloto'}, {'name': 'TeleNav Shotgun', 'permalink': 'telenav-shotgun'}, {'name': 'TeleNav Track', 'permalink': 'telenav-track'}, {'name': 'TeleNav Track Basic', 'permalink': 'telenav-track-basic'}, {'name': 'TeleNav Track Enhanced', 'permalink': 'telenav-track-enhanced'}, {'name': 'TeleNav Track LITE', 'permalink': 'telenav-track-lite'}, {'name': 'TeleNav Asset Tracker', 'permalink': 'telenav-asset-tracker'}, {'name': 'TeleNav Vehicle Manager', 'permalink': 'telenav-vehicle-manager'}, {'name': 'TeleNav Track Plus', 'permalink': 'telenav-track-plus'}, {'name': 'TeleNav Track Premium', 'permalink': 'telenav-track-premium'}, {'name': 'TeleNav Vehicle Tracker', 'permalink': 'telenav-vehicle-tracker'}, {'name': 'Whereboutz', 'permalink': 'whereboutz'}, {'name': 'Sipity', 'permalink': 'sipity'}, {'name': 'OnMyWay', 'permalink': 'onmyway'}], 'relationships': [{'is_past': False, 'title': 'VP of R&D and C-Founder', 'person': {'first_name': 'Y.C.', 'last_name': 'Chao', 'permalink': 'y-c-chao'}}, {'is_past': False, 'title': 'CTO and Co-Founder', 'person': {'first_name': 'Bob', 'last_name': 'Rennard', 'permalink': 'bob-rennard'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'Strambi', 'permalink': 'michael-strambi'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Doug', 'last_name': 'Miller', 'permalink': 'doug-miller-2'}}, {'is_past': False, 'title': 'Sr. VP of Engineering', 'person': {'first_name': 'Marc', 'last_name': 'Aronson', 'permalink': 'marc-aronson'}}, {'is_past': False, 'title': 'VP of Business Development and Carrier Sales', 'person': {'first_name': 'Hassan', 'last_name': 'Wahla', 'permalink': 'hassan-wahla'}}, {'is_past': False, 'title': 'Sr. VP of Engineering', 'person': {'first_name': 'HP', 'last_name': 'Jin', 'permalink': 'hp-jin'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Loren', 'last_name': 'Hillberg', 'permalink': 'loren-hillberg'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Shawn', 'last_name': 'Carolan', 'permalink': 'shawn-carolan'}}, {'is_past': False, 'title': 'Software Engineering', 'person': {'first_name': 'John', 'last_name': 'Hinnegan', 'permalink': 'john-hinnegan'}}, {'is_past': False, 'title': 'Head of Product, Consumer Business', 'person': {'first_name': 'Mark', 'last_name': 'Watkins', 'permalink': 'mark-watkins'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Soo', 'last_name': 'Boon Koh', 'permalink': 'soo-boon-koh'}}, {'is_past': False, 'title': 'VP of Products and Marketing and Co-Founder', 'person': {'first_name': 'Sal', 'last_name': 'Dhanani', 'permalink': 'sal-dhanani'}}, {'is_past': False, 'title': 'GM of Scout Advertising', 'person': {'first_name': 'Eli', 'last_name': 'Portnoy', 'permalink': 'eli-portnoy'}}, {'is_past': False, 'title': 'Associate Director', 'person': {'first_name': 'David', 'last_name': 'Tannenbaum', 'permalink': 'david-tannenbaum-2'}}, {'is_past': False, 'title': 'Head of OSM', 'person': {'first_name': 'Steve', 'last_name': 'Coast', 'permalink': 'steve-coast'}}, {'is_past': True, 'title': 'Board Observer', 'person': {'first_name': 'Stewart', 'last_name': 'Gollmer', 'permalink': 'stewart-gollmer'}}, {'is_past': True, 'title': 'Finance & Corporate Development Consultant', 'person': {'first_name': 'George', 'last_name': 'Ng', 'permalink': 'george-ng'}}, {'is_past': True, 'title': 'Advisor', 'person': {'first_name': 'Mark', 'last_name': 'Leslie', 'permalink': 'mark-leslie'}}, {'is_past': True, 'title': 'Group Manager - Studio', 'person': {'first_name': 'John', 'last_name': 'Tumminaro', 'permalink': 'john-tumminaro'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Srujan', 'last_name': 'Akula', 'permalink': 'srujan-akula'}}, {'is_past': True, 'title': 'Director Mobile Advertising', 'person': {'first_name': 'Dan', 'last_name': 'Bailey', 'permalink': 'dan-bailey'}}], 'competitions': [{'competitor': {'name': 'Garmin', 'permalink': 'garmin'}}, {'competitor': {'name': 'Google', 'permalink': 'google'}}, {'competitor': {'name': 'Navigon', 'permalink': 'navigon'}}, {'competitor': {'name': 'Nokia', 'permalink': 'nokia'}}, {'competitor': {'name': 'TeleCommunication Systems', 'permalink': 'telecommunication-systems'}}, {'competitor': {'name': 'Telmap', 'permalink': 'telmap'}}, {'competitor': {'name': 'TomTom International', 'permalink': 'tomtom-international'}}, {'competitor': {'name': 'Xora, Inc.', 'permalink': 'xora'}}, {'competitor': {'name': 'Waze', 'permalink': 'waze'}}], 'providerships': [{'title': 'Investor Relations', 'is_past': False, 'provider': {'name': 'The Blueshirt Group', 'permalink': 'the-blueshirt-group'}}], 'total_money_raised': '$33.6M', 'funding_rounds': [{'id': 16379, 'round_code': 'e', 'source_url': 'http://www.telenav.com/about/pr/pr-20060301-tnt.html', 'source_description': 'TeleNav Secures $30 Million in Private Funding', 'raised_amount': 30000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Menlo Ventures', 'permalink': 'menlo-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Lehman Brothers Venture Partners', 'permalink': 'lehman-brothers-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sycamore Ventures', 'permalink': 'sycamore-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'iGlobe Partners', 'permalink': 'iglobe-partners'}, 'person': None}]}, {'id': 42425, 'round_code': 'f', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1474439/000147443912000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC', 'raised_amount': 3558780, 'raised_currency_code': 'USD', 'funded_year': 2012, 'funded_month': 10, 'funded_day': 17, 'investments': []}], 'investments': [{'funding_round': {'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 5, 'funded_day': 1, 'company': {'name': 'RewardMe', 'permalink': 'rewardme'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/03/retailigence-raises-6-3m-series-funding.html', 'source_description': 'Retailigence Raises $6.3M in Series B Funding', 'raised_amount': 6300000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 3, 'funded_day': 5, 'company': {'name': 'Retailigence', 'permalink': 'retailigence'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20110902.html', 'source_description': 'TeleNav Completes Acquisition of goby', 'acquired_year': 2011, 'acquired_month': 9, 'acquired_day': 2, 'company': {'name': 'Goby', 'permalink': 'goby'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/telenav-launches-scout-advertising-acquires-120000388.html', 'source_description': 'Telenav Launches Scout Advertising; Acquires ThinkNear, a Hyper-Local Mobile Advertising Company', 'acquired_year': 2012, 'acquired_month': 10, 'acquired_day': 16, 'company': {'name': 'ThinkNear', 'permalink': 'thinknear'}}], 'offices': [{'description': 'TeleNav US - Headquarters', 'address1': '1130 Kifer Road', 'address2': '', 'zip_code': '94086', 'city': 'Sunnyvale', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Seattle Office', 'address1': '4020 Lake Washington Blvd. NE', 'address2': 'Suite 208', 'zip_code': '98033', 'city': 'Kirkland', 'state_code': 'WA', 'country_code': 'USA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav China', 'address1': '10F DongFangWeiJing Building', 'address2': '333 XianXia Road', 'zip_code': '200002', 'city': 'Changning, Shanghai', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Beijing Lab', 'address1': 'Tsinghua Science Park, Building 8-C, Floor 11', 'address2': '1 Zhong Guan Cun Road', 'zip_code': '100084', 'city': 'Beijing', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Brazil', 'address1': 'TeleNav do Brasil Serviços de localização ltda.', 'address2': 'Av. Paulista, 2300 - Andar Pilotis', 'zip_code': '', 'city': 'Sao Paulo', 'state_code': None, 'country_code': 'BRA', 'latitude': None, 'longitude': None}, {'description': 'TeleNav Europe', 'address1': 'Mackmurdo House,79 Springfield Road', 'address2': '', 'zip_code': 'CM2 6JG', 'city': 'Chelmsford, Essex', 'state_code': None, 'country_code': 'GBR', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 6140, 'description': 'TeleNav launches first mobile GPS navigation with Nextel', 'stoned_year': 2003, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.encyclopedia.com/doc/1G1-96287952.html', 'source_text': None, 'source_description': \"Televigation Launches North America's First GPS Navigation Service for Wireless Phones\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6141, 'description': 'Nextel/Sprint Launches TeleNav Track', 'stoned_year': 2004, 'stoned_month': None, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6142, 'description': 'TeleNav Launches with China Mobile (originally with Shanghai Mobile)', 'stoned_year': 2004, 'stoned_month': 5, 'stoned_day': None, 'source_url': '', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6143, 'description': 'TeleNav launches GPS navigation with Sprint', 'stoned_year': 2005, 'stoned_month': 9, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20050926-tnt.html', 'source_text': None, 'source_description': 'Sprint Extends Customer Choice and Flexibility with TeleNav GPS Navigator Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6144, 'description': 'TeleNav Secures Final Round of Funding', 'stoned_year': 2006, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20060301-tnt.html', 'source_text': None, 'source_description': 'TeleNav Secures $30 Million in Private Funding', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6145, 'description': 'TeleNav Hires New CFO', 'stoned_year': 2006, 'stoned_month': 5, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20060522-tnt.html', 'source_text': None, 'source_description': 'TeleNav Names Douglas Miller as CFO to Spearhead Company’s Rapid Financial Growth', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6146, 'description': 'TeleNav launches GPS navigation with AT&T (then Cingular)', 'stoned_year': 2006, 'stoned_month': 10, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20061025-tnt.html', 'source_text': None, 'source_description': 'Cingular Provides “Directionâ€\\x9d to Business Customers with TeleNav GPS Navigator', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6147, 'description': 'TeleNav launches GPS navigation with Alltel', 'stoned_year': 2006, 'stoned_month': 12, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20061207-tnt.html', 'source_text': None, 'source_description': 'Alltel Wireless Guides Customers Through Holiday Travel with Launch of TeleNav GPS Navigator', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6148, 'description': 'TeleNav launches GPS navigation with Rogers Wireless', 'stoned_year': 2007, 'stoned_month': 2, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070212b-tnt.html', 'source_text': None, 'source_description': 'TeleNav GPS Navigator Launches in Canada with Rogers Wireless', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6149, 'description': 'TeleNav launches GPS navigation with T-Mobile US (initially on BlackBerry 8800)', 'stoned_year': 2007, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.mobiletechreview.com/phones/BlackBerry_8800.htm', 'source_text': None, 'source_description': 'BlackBerry 8800 phone review', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6150, 'description': 'TeleNav launches TeleNav Track with AT&T', 'stoned_year': 2007, 'stoned_month': 3, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070322-tnt.html', 'source_text': None, 'source_description': 'AT&T Helps Wireless Business Customers Keep Track with New GPS-Enabled, Location-Based Services Solution', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6151, 'description': 'TeleNav launches GPS navigation with Bell', 'stoned_year': 2007, 'stoned_month': 6, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20070702-tnt.html', 'source_text': None, 'source_description': 'Bell Selects TeleNav to Power Mobile GPS Navigation Service', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6152, 'description': 'TeleNav launches GPS navigation with NII (Nextel Mexico and Nextel Brazil)', 'stoned_year': 2007, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20071115.html', 'source_text': None, 'source_description': 'TeleNav Expands Availability of Cell Phone GPS Systems in Latin America', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6153, 'description': 'TeleNav launches GPS navigation with T-Mobile UK', 'stoned_year': 2008, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20080122.html', 'source_text': None, 'source_description': 'T-Mobile UK Launches Mobile Phone GPS Navigation with TeleNav', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6154, 'description': 'TeleNav launches GPS navigation with largest carrier in Brazil (Vivo Brazil)', 'stoned_year': 2008, 'stoned_month': 9, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20080917.html', 'source_text': None, 'source_description': 'TeleNav Partners with Largest Wireless Carrier in Latin America to Offer Mobile Phone GPS Navigation to Millions', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6155, 'description': 'TeleNav enters in-car navigation industry with Ford', 'stoned_year': 2009, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20090108.html', 'source_text': None, 'source_description': 'Ford Motor Company Selects TeleNav to Power In-Car GPS Navigation', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6156, 'description': 'TeleNav files for IPO', 'stoned_year': 2009, 'stoned_month': 11, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20091102-tnt.html', 'source_text': None, 'source_description': 'TeleNav Files for Initial Public Offering', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6157, 'description': 'TeleNav and Ford partner again for latest in-car navigation system', 'stoned_year': 2010, 'stoned_month': 1, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100106.html', 'source_text': None, 'source_description': 'Ford Motor Company and TeleNav to Launch Connected In-Vehicle GPS Navigation System', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6158, 'description': 'TeleNav launches TeleNav Track with Verizon Wireless', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100427.html', 'source_text': None, 'source_description': 'TeleNav Business Mobility Products Now Available For Verizon Wireless Enterprise Customers', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6159, 'description': 'TeleNav Announces Pricing of Initial Public Offering of Common Stock', 'stoned_year': 2010, 'stoned_month': 5, 'stoned_day': None, 'source_url': 'http://www.telenav.com/about/pr/pr-20100513.html', 'source_text': None, 'source_description': 'TeleNav Announces Pricing of Initial Public Offering of Common Stock', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 6708, 'description': 'U.S. Cellular Selects TeleNav as a GPS Navigation Partner', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20100709.html', 'source_text': None, 'source_description': 'U.S. Cellular Selects TeleNav as a GPS Navigation Partner', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 8322, 'description': 'TeleNav Debuts Navigation-Based Ads', 'stoned_year': 2010, 'stoned_month': 9, 'stoned_day': 14, 'source_url': 'http://www.mediapost.com/publications/?fa=Articles.showArticle&art_aid=135748', 'source_text': None, 'source_description': 'TeleNav Debuts Navigation-Based Ads - Media Post', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21135, 'description': 'Telenav added Dariusz Paczuski as VP of Marketing', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 30, 'source_url': 'http://www.telenav.com/about/pr/pr-20100730.html', 'source_text': None, 'source_description': 'Telenav Expands its leadership team', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21138, 'description': 'Company introduces Telenav Connect and Telenav Share, APIs for mobile and web developers with interest in navigation and location sharing services ', 'stoned_year': 2010, 'stoned_month': 11, 'stoned_day': 1, 'source_url': 'http://www.telenav.com/about/pr/pr-20101101.html', 'source_text': None, 'source_description': 'Company introduces Telenav Connect and Telenav Share, APIs for mobile and web developers with interest in navigation and location sharing services ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21139, 'description': 'Ford selects Telenav as global navigation partner for MyFord Touch-equipped vehicles ', 'stoned_year': 2010, 'stoned_month': 12, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20101209.html', 'source_text': None, 'source_description': 'Ford Selects TeleNav as Global Navigation Partner for MyFord Touch-equipped Vehicles ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21140, 'description': 'Survey finds 1/3 of Americans willing to give up sex more than their mobile phones ', 'stoned_year': 2011, 'stoned_month': 8, 'stoned_day': 3, 'source_url': 'http://www.telenav.com/about/pr/pr-20110803.html', 'source_text': None, 'source_description': 'Survey Finds One-Third of Americans More Willing to Give Up Sex Than Their Mobile Phones ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21141, 'description': 'Delphi selects Telenav to power connected navigation systems for vehicles worldwide ', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://www.telenav.com/about/pr/pr-20111027a.html', 'source_text': None, 'source_description': 'Delphi Selects TeleNav to Power Connected Navigation System for Vehicles Worldwide ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21142, 'description': 'Telenav reports first quarter 2012 financial results ', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 27, 'source_url': 'http://www.telenav.com/about/pr/pr-20111027.html', 'source_text': None, 'source_description': 'TeleNav Reports First Quarter Fiscal 2012 Financial Results ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21143, 'description': 'Telenav announces new version of Auto Platform – connecting navigation, search to the phone, cloud and automobile ', 'stoned_year': 2011, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://www.telenav.com/about/pr/pr-20111108.html', 'source_text': None, 'source_description': 'New Version of the TeleNav Auto Platform Connects Navigation & Search to the Phone, the Cloud & the Car ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21144, 'description': 'Telenav announces world’s first HTML5 Browser-based, voice, turn-by-turn GPS Navigation Service ', 'stoned_year': 2011, 'stoned_month': 12, 'stoned_day': 14, 'source_url': 'http://www.telenav.com/about/pr/pr-20111214.html', 'source_text': None, 'source_description': 'TeleNav Announces World’s First HTML5 Browser-Based, Voice-Guided, Turn-by-Turn GPS Navigation Service ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21145, 'description': 'Telenav announces partnership with Ford – Scout, personal navigator to integrate with SYNC AppLink ', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20120109a.html', 'source_text': None, 'source_description': 'New Version of the TeleNav Auto Platform Connects Navigation & Search to the Phone, the Cloud & the Car ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21146, 'description': 'Telenav unveils Scout™ in App Store for iPhones at CES', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 9, 'source_url': 'http://www.telenav.com/about/pr/pr-20120109.html', 'source_text': None, 'source_description': 'Telenav® Unveils Scout™, the First Daily Personal Navigator for Smartphones, Computers, and Cars ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}, {'id': 21147, 'description': 'Telenav reports second quarter fiscal 2012 financial results ', 'stoned_year': 2012, 'stoned_month': 1, 'stoned_day': 26, 'source_url': 'http://www.telenav.com/about/pr/pr-20120126.html', 'source_text': None, 'source_description': 'Telenav Reports Second Quarter Fiscal 2012 Financial Results ', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Telenav', 'permalink': 'telenav'}}], 'ipo': {'valuation_amount': 337000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 5, 'pub_day': 13, 'stock_symbol': 'TNAV'}, 'video_embeds': [{'embed_code': '', 'description': '

TeleNav Launches with U.S. Cellular

'}, {'embed_code': '', 'description': '

HOW TO: Set Up TeleNav GPS Navigator To Ask Your Preferred Routing Style Each Trip

'}, {'embed_code': '', 'description': '

Pepcom NYC: TeleNav’s James Grace Demos MyFord Touch Navigation

'}, {'embed_code': '', 'description': '

TeleNav Tips & Tricks: How to Use Pedestrian Mode (in New York City!)

'}, {'embed_code': '', 'description': '

How To: Set Up Commute Alerts on Sprint Navigation version 2.8 Premium

'}, {'embed_code': '', 'description': '

Demo: How to Find Gas By Price

'}, {'embed_code': '', 'description': '

Demo: Sharing an Address Using Sprint Navigation

'}, {'embed_code': '', 'description': '

TeleNav @ HTC EVO Launch Day: The USA Trivia Challenge!

'}, {'embed_code': '', 'description': '

HOW TO: Set Up Shake-To-Go On AT&T Navigator v1.5i on the iPhone

'}, {'embed_code': '', 'description': '

Demo: Sprint Navigation on the HTC EVO 4G

'}, {'embed_code': '', 'description': '

The 2011 Ford Fiesta Launch Event & In-Car Demo!

'}], 'screenshots': [{'available_sizes': [[[150, 72], 'assets/images/resized/0006/6386/66386v1-max-150x150.jpg'], [[250, 120], 'assets/images/resized/0006/6386/66386v1-max-250x250.jpg'], [[450, 217], 'assets/images/resized/0006/6386/66386v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299103'), 'name': 'Mixi', 'permalink': 'mixi', 'crunchbase_url': 'http://www.crunchbase.com/company/mixi', 'homepage_url': 'http://mixi.co.jp/en/overview', 'blog_url': 'http://alpha.mixi.co.jp/blog/', 'blog_feed_url': 'http://alpha.mixi.co.jp/blog/?feed=atom', 'twitter_username': '', 'category_code': 'mobile', 'number_of_employees': 257, 'founded_year': 1999, 'founded_month': 7, 'founded_day': 3, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'social-network, japan, japanese, tokyo, invitation-only, blogging-platform, mobile-social-network', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Mon Jul 07 17:21:26 UTC 2008', 'updated_at': 'Wed Oct 02 06:55:49 UTC 2013', 'overview': '

Mixi, Inc. is a Tokyo-based web company established in 1999, initially as an online job service.

\\n\\n

Mixi is now known for its social network service of the same name, which is by far the biggest one in Japan. The site boasts over 19 million members and gets over 14 billion page views monthly (July 2008). The mobile version is more popular than the PC site.

\\n\\n

Mixi is only available in Japanese and officially restricted to adults. The service requires an invitation from a member and a Japanese cell phone’s email address for identity confirmation.

\\n\\n

Mixi offers typical SNS features such as a “my profile”\\x9d page, a messaging system, photo and video hosting, a blog/diary function, music sharing, a news section, discussion communities/forums etc. External applications are not accepted.

\\n\\n

Mixi went IPO at the Tokyo Stock Exchange in September 2006 is profitable since that time.

', 'image': {'available_sizes': [[[150, 61], 'assets/images/resized/0002/1527/21527v6-max-150x150.jpg'], [[160, 66], 'assets/images/resized/0002/1527/21527v6-max-250x250.jpg'], [[160, 66], 'assets/images/resized/0002/1527/21527v6-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'Mixi', 'permalink': 'mixi'}, {'name': 'DeployGate', 'permalink': 'deploygate'}, {'name': 'Plannah', 'permalink': 'plannah'}], 'relationships': [{'is_past': False, 'title': 'President', 'person': {'first_name': 'Kenji', 'last_name': 'Kasahara', 'permalink': 'kenji-kasahara'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Yusuhiro', 'last_name': 'Ogino', 'permalink': 'yusuhiro-ogino'}}, {'is_past': False, 'title': 'Outside Director', 'person': {'first_name': 'Tatsuya', 'last_name': 'Aoyagi', 'permalink': 'tatsuya-aoyagi'}}, {'is_past': False, 'title': 'Outside Corporate Auditor', 'person': {'first_name': 'Takayuki', 'last_name': 'Sato', 'permalink': 'takayuki-sato'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Jun', 'last_name': 'Sumida', 'permalink': 'jun-sumida'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Akinori', 'last_name': 'Harada', 'permalink': 'akinori-harada'}}, {'is_past': False, 'title': 'Outside Director', 'person': {'first_name': 'Ichiya', 'last_name': 'Nakamura', 'permalink': 'ichiya-nakamura'}}, {'is_past': False, 'title': 'Corporate Auditor', 'person': {'first_name': 'Takako', 'last_name': 'Kato', 'permalink': 'takako-kato'}}, {'is_past': False, 'title': 'Outside Corporate Auditor', 'person': {'first_name': 'Hiroyuki', 'last_name': 'Wakamatsu', 'permalink': 'hiroyuki-wakamatsu'}}, {'is_past': True, 'title': 'Co-founder and CTO', 'person': {'first_name': 'Batara', 'last_name': 'Eto', 'permalink': 'batara-eto'}}, {'is_past': True, 'title': 'Executive Officer', 'person': {'first_name': 'Takuya', 'last_name': 'Miyata', 'permalink': 'takuya-miyata'}}, {'is_past': True, 'title': 'Service Director', 'person': {'first_name': 'Miku', 'last_name': 'Hirano', 'permalink': 'miku-hirano'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Hajime', 'last_name': 'Hotta', 'permalink': 'hajime-hotta'}}, {'is_past': True, 'title': 'UI designer', 'person': {'first_name': 'nariaki', 'last_name': 'satoh', 'permalink': 'nariaki-satoh'}}], 'competitions': [{'competitor': {'name': 'Facebook', 'permalink': 'facebook'}}, {'competitor': {'name': 'MySpace', 'permalink': 'myspace'}}, {'competitor': {'name': 'Bebo', 'permalink': 'bebo'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 10.9, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.startup-dating.com/2013/10/mixi-youbride-acquisition', 'source_description': 'Japan’s Mixi acquires Line’s match-making subsidiary for $10.9M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'company': {'name': 'YouBride', 'permalink': 'youbride'}}], 'offices': [{'description': 'Headquarter', 'address1': 'Sumitomo Realty & Development Harajuku Building', 'address2': '2-34-17 Jingumae, Shibuya-ku,', 'zip_code': '150-0001', 'city': 'Tokyo', 'state_code': None, 'country_code': 'JPN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 374, 'description': 'Mixi Starts Testing MicroBlogging Service.', 'stoned_year': 2008, 'stoned_month': 8, 'stoned_day': 5, 'source_url': 'http://asiajin.com/blog/2008/08/04/mixi-testing-their-twitter/', 'source_text': '', 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Mixi', 'permalink': 'mixi'}}], 'ipo': {'valuation_amount': 970000000, 'valuation_currency_code': 'USD', 'pub_year': 2006, 'pub_month': 9, 'pub_day': 14, 'stock_symbol': 'JP:2121'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.tokyotronic.com/2007/11/review-japans-uber-social-network-mixi.html', 'title': 'Explanation of Mixi and its functions (English)'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752992c1'), 'name': 'QlikTech', 'permalink': 'qliktech', 'crunchbase_url': 'http://www.crunchbase.com/company/qliktech', 'homepage_url': 'http://www.qlikview.com', 'blog_url': 'http://community.qlikview.com/blogs/theqlikviewblog/default.aspx', 'blog_feed_url': 'http://feeds.feedburner.com/TheQlikviewBlog', 'twitter_username': 'qlikview', 'category_code': 'software', 'number_of_employees': 600, 'founded_year': 1993, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'bi, business-intelligence, software, analytics, dashboards, reporting', 'alias_list': None, 'email_address': 'infous@qlikview.com', 'phone_number': '+1 (888)-828-9768', 'description': 'User-Driven Business Discovery', 'created_at': 'Fri Jul 18 18:26:10 UTC 2008', 'updated_at': 'Wed Apr 24 02:39:55 UTC 2013', 'overview': '

QlikTech’s business intelligence software platform, QlikView, combines analytics and search functionality with the ease-of-use found in office productivity software tools for a broad set of business users.

\\n\\n

QlikView allows business users to navigate data with the fluid, associative nature of human thought. QlikView is powered by an in-memory associative search technology which has utilized rapid advances in computing power to yield improvement in flexibility and performance. This technology platform enables users to consolidate large, disparate data sets and discover relationships within data in real time. QlikView also visualizes this data in a simple interface that enables users to interactively explore and analyze information.

\\n\\n

QlikTech has over 22,000 in customers in over 110 countries, from middle market to large enterprises such as BP, Campbell Soup Company, Colonial Life, The Dannon Company, Inc., Heidelberger Druckmaschinen AG, ING, Kraft Foods, Lifetime Brands, National Health Service (NHS), Qualcomm, Symantec and Volvo Car UK Limited.

\\n\\n

QlikTech has a diversified distribution model that consists of a direct sales force and a partner network of resellers, OEMs and systems integrators. Its network of over 1,100 channel partners worldwide help generate demand for QlikView. QlikTech offers free product downloads to individuals and a 30-day money back guarantee upon purchase.

', 'image': {'available_sizes': [[[150, 29], 'assets/images/resized/0002/2358/22358v2-max-150x150.png'], [[250, 49], 'assets/images/resized/0002/2358/22358v2-max-250x250.png'], [[450, 88], 'assets/images/resized/0002/2358/22358v2-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'QlikView', 'permalink': 'qlikview'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Lars', 'last_name': 'Björk', 'permalink': 'lars-bjrk'}}, {'is_past': False, 'title': 'Chief Product Strategy Office', 'person': {'first_name': 'Jonas', 'last_name': 'Nachmanson', 'permalink': 'jonas-nachmanson'}}, {'is_past': False, 'title': 'CTO & SVP Products', 'person': {'first_name': 'Anthony', 'last_name': 'Deighton', 'permalink': 'anthony-deighton'}}, {'is_past': False, 'title': 'VP of Engineering', 'person': {'first_name': 'Steve', 'last_name': 'Frechette', 'permalink': 'steve-frechette'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Les', 'last_name': 'Bonney', 'permalink': 'les-bonney'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Bruce', 'last_name': 'Golden', 'permalink': 'bruce-golden'}}, {'is_past': True, 'title': 'Chairman', 'person': {'first_name': 'Mans', 'last_name': 'Hultman', 'permalink': 'mns-hultman'}}, {'is_past': True, 'title': 'Vice President, Marketing', 'person': {'first_name': 'Lara', 'last_name': 'Shackelford', 'permalink': 'lara-shackelford'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Douglas', 'last_name': 'Laird', 'permalink': 'douglas-laird'}}, {'is_past': True, 'title': 'Senior PreSales Consultant', 'person': {'first_name': 'Andrea', 'last_name': 'Cassini', 'permalink': 'andrea-cassini'}}, {'is_past': True, 'title': 'Led Organization in Hyper Growth', 'person': {'first_name': 'Jason', 'last_name': 'Bissell', 'permalink': 'jason-bissell'}}, {'is_past': True, 'title': 'leadership positions', 'person': {'first_name': 'David', 'last_name': 'Mountain', 'permalink': 'dave-mountain'}}], 'competitions': [{'competitor': {'name': 'SAP', 'permalink': 'sap'}}, {'competitor': {'name': 'Tableau Software', 'permalink': 'tableau-software'}}, {'competitor': {'name': 'Cognos', 'permalink': 'cognos'}}, {'competitor': {'name': 'Spotfire', 'permalink': 'spotfire'}}, {'competitor': {'name': 'Jolicharts', 'permalink': 'jolicharts'}}, {'competitor': {'name': 'Salient Management Company', 'permalink': 'salient-management-company'}}, {'competitor': {'name': 'Cyfe', 'permalink': 'cyfe'}}], 'providerships': [], 'total_money_raised': '$12.5M', 'funding_rounds': [{'id': 33316, 'round_code': 'unattributed', 'source_url': 'http://www.businesswire.com/news/home/20041206005593/en/QlikTech-Secures-12.5-Million-Venture-Capital-Funding', 'source_description': 'Business Wire', 'raised_amount': 12500000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 12, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Jerusalem Venture Partners', 'permalink': 'jerusalem-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.masshightech.com/stories/2012/06/11/daily29-Expressor-Software-acquired-by-QlikTech.html', 'source_description': 'Expressor Software acquired by QlikTech', 'acquired_year': 2012, 'acquired_month': 6, 'acquired_day': 13, 'company': {'name': 'expressor software', 'permalink': 'expressor-software'}}], 'offices': [{'description': 'World Headquarters', 'address1': '150 Radnor Chester Road', 'address2': '', 'zip_code': '19087', 'city': 'Radnor', 'state_code': 'PA', 'country_code': 'USA', 'latitude': 40.037578, 'longitude': -75.366299}, {'description': 'R&D Center', 'address1': 'Science Park Ideon', 'address2': 'Beta 6, Schéelevägen 17', 'zip_code': '223 70', 'city': 'Lund', 'state_code': None, 'country_code': 'SWE', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 3129, 'description': 'QlikTech CEO Lars Bjork Named Ernst & Young Entrepreneur Of The Year', 'stoned_year': 2009, 'stoned_month': 6, 'stoned_day': None, 'source_url': 'http://www.qlikview.com/Contents.aspx?id=10614', 'source_text': None, 'source_description': '', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QlikTech', 'permalink': 'qliktech'}}, {'id': 4659, 'description': 'QlikTech files S-1 under parent company Qlik Technologies', 'stoned_year': 2010, 'stoned_month': 4, 'stoned_day': 1, 'source_url': 'http://www.sec.gov/Archives/edgar/data/1305294/000095012310031429/b80142sv1.htm', 'source_text': None, 'source_description': 'SEC Filing', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'QlikTech', 'permalink': 'qliktech'}}], 'ipo': {'valuation_amount': 1000000000, 'valuation_currency_code': 'USD', 'pub_year': 2010, 'pub_month': 7, 'pub_day': 16, 'stock_symbol': 'QLIK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299576'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299900'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529a7db'), 'name': 'SolarWinds', 'permalink': 'solarwinds', 'crunchbase_url': 'http://www.crunchbase.com/company/solarwinds', 'homepage_url': 'http://www.solarwinds.com', 'blog_url': 'http://whiteboard.solarwinds.com/', 'blog_feed_url': '', 'twitter_username': 'sw_headgeek', 'category_code': 'software', 'number_of_employees': 354, 'founded_year': 1999, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': 'ideas@solarwinds.com', 'phone_number': '512-682-9300', 'description': 'Network Management Software', 'created_at': 'Fri Dec 12 18:41:08 UTC 2008', 'updated_at': 'Tue Oct 08 03:35:33 UTC 2013', 'overview': '

SolarWinds develops software for managing networks, small or large.

\\n\\n

SolarWinds products are used by more than one million network engineers to manage IT environments ranging from ten to tens of thousands of network devices. Comprised of fault and performance management products, configuration and compliance products, and tools for engineers, the SolarWinds product family is trusted by organizations around the globe.

\\n\\n

SolarWinds was founded in 1999. and has headquarters in Austin, Texas, with sales and product development offices around the world.

', 'image': {'available_sizes': [[[150, 50], 'assets/images/resized/0005/1556/51556v1-max-150x150.png'], [[206, 69], 'assets/images/resized/0005/1556/51556v1-max-250x250.png'], [[206, 69], 'assets/images/resized/0005/1556/51556v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President, CEO, and Chairman', 'person': {'first_name': 'Michael', 'last_name': 'Bennett', 'permalink': 'michael-bennett'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Kevin', 'last_name': 'B. Thompson', 'permalink': 'kevin-b-thompson'}}, {'is_past': False, 'title': 'Senior Vice President, Finance', 'person': {'first_name': 'J.', 'last_name': 'Barton Kalsu', 'permalink': 'j-barton-kalsu'}}, {'is_past': False, 'title': 'Vice President for Technology and “Head Geekâ€\\x9d', 'person': {'first_name': 'Josh', 'last_name': 'Stephens', 'permalink': 'josh-stephens'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Michael', 'last_name': 'J. Berry', 'permalink': 'michael-j-berry'}}, {'is_past': False, 'title': 'Senior Product Marketing Manager', 'person': {'first_name': 'Russ', 'last_name': 'Somers', 'permalink': 'russ-somers'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Ellen', 'last_name': 'Siminoff', 'permalink': 'ellen-siminoff'}}, {'is_past': True, 'title': 'Chief Product Strategy', 'person': {'first_name': 'Kenny', 'last_name': 'Van Zant', 'permalink': 'kenny-van-zant'}}, {'is_past': True, 'title': 'VP Worldwide Business and Corporate Development', 'person': {'first_name': 'Karen', 'last_name': 'White', 'permalink': 'karen-white'}}, {'is_past': True, 'title': 'Director of Product Marketing', 'person': {'first_name': 'Andy', 'last_name': 'Salo', 'permalink': 'andy-salo'}}, {'is_past': True, 'title': 'Sr. Director, Web Products & Strategies', 'person': {'first_name': 'Greg', 'last_name': 'Gunwall', 'permalink': 'greg-gunwall'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jeff', 'last_name': 'Horing', 'permalink': 'jeff-horing'}}, {'is_past': True, 'title': 'Sr. Product Marketing Manager', 'person': {'first_name': 'Kris', 'last_name': 'McGlone', 'permalink': 'kris-mcglone'}}, {'is_past': True, 'title': 'Sr. Director, WW Channels; Sr. Director, Sales', 'person': {'first_name': 'RJ', 'last_name': 'Brideau', 'permalink': 'rj-brideau'}}, {'is_past': True, 'title': 'Community Manager', 'person': {'first_name': 'Dawn', 'last_name': 'Lacallade', 'permalink': 'dawn-lacallade'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Lloyd', 'last_name': 'G. Waterhouse', 'permalink': 'lloyd-g-waterhouse'}}], 'competitions': [], 'providerships': [{'title': 'Public Relations (US, EU)', 'is_past': False, 'provider': {'name': 'The Hoffman Agency', 'permalink': 'the-hoffman-agency'}}], 'total_money_raised': '$218M', 'funding_rounds': [{'id': 11818, 'round_code': 'unattributed', 'source_url': 'http://www.sec.gov/Archives/edgar/data/1428669/000142866910000001/xslFormDX01/primary_doc.xml', 'source_description': 'SEC D', 'raised_amount': 10000000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 2, 'funded_day': 5, 'investments': []}, {'id': 12857, 'round_code': 'b', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 2, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Austin Ventures', 'permalink': 'austin-ventures'}, 'person': None}]}, {'id': 18668, 'round_code': 'unattributed', 'source_url': 'http://www.solarwinds.com/fr/pdfs/CorporateFactSheet.pdf', 'source_description': 'December 2005 - Investment from Bain Capital Ventures and Insight Venture Partners', 'raised_amount': 200000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 12, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Insight Venture Partners', 'permalink': 'insight-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bain Capital Ventures', 'permalink': 'bain-capital-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': 42000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://deals.venturebeat.com/2010/01/27/solarwinds-dishes-out-42m-for-tek-tool-storage-and-virtualization-products/', 'source_description': 'SolarWinds dishes out $42M for Tek-Tools storage and virtualization products', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 27, 'company': {'name': 'Tek-Tools Software', 'permalink': 'tek-tools-software'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.msigeek.com/6648/solarwinds-acquires-hyper9-sets-sights-on-application-performance-management-space', 'source_description': 'SolarWinds Acquires Hyper9, Sets Sights on Application Performance Management Space', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 20, 'company': {'name': 'Hyper9', 'permalink': 'hyper9'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunchit.com/2011/06/23/solarwinds-buys-network-security-company-trigeo-for-35-million-in-cash/', 'source_description': 'SolarWinds Buys Network Security Company TriGeo For $35 Million In Cash', 'acquired_year': 2011, 'acquired_month': 6, 'acquired_day': 23, 'company': {'name': 'TriGeo Network Security', 'permalink': 'trigeo-network-security'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/589557/solarwinds-acquires-dameware-development-', 'source_description': 'SolarWinds Acquires DameWare Development ', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 15, 'company': {'name': 'DameWare Development', 'permalink': 'dameware-development'}}, {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130521e95lssb3w&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130521e95lssb3w%26from%3dalert%26pid%3d32', 'source_description': ' SolarWinds to Buy N-Able Technologies for $120M ', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'company': {'name': 'N-able Technologies', 'permalink': 'n-able-technologies'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.dnsstuff.com/company/about-us', 'source_description': 'About DNSstuff.com', 'acquired_year': 2011, 'acquired_month': 10, 'acquired_day': None, 'company': {'name': 'DNSStuff.com', 'permalink': 'dnsstuff-com'}}, {'price_amount': 103000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.charlotteobserver.com/2013/10/07/4372370/solarwinds-buys-confio-software.html#.UlN9JxBEl4o', 'source_description': ' SolarWinds buys Confio Software for $103M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 7, 'company': {'name': 'Confio Software', 'permalink': 'confio-software'}}], 'offices': [{'description': 'HQ', 'address1': '3711 South MoPac Expressway', 'address2': 'Building Two', 'zip_code': '78746', 'city': 'Austin', 'state_code': 'TX', 'country_code': 'USA', 'latitude': 30.245535, 'longitude': -97.805621}], 'milestones': [{'id': 6332, 'description': \"SolarWinds named in Lead411's Hottest Texas Companies list\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 22, 'source_url': 'http://www.lead411.com/texas-companies.html', 'source_text': None, 'source_description': ' Lead411 launches \"Hottest Texas Companies\" awards', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'SolarWinds', 'permalink': 'solarwinds'}}], 'ipo': {'valuation_amount': 803000000, 'valuation_currency_code': 'USD', 'pub_year': 2009, 'pub_month': 5, 'pub_day': 20, 'stock_symbol': 'SWI'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 126], 'assets/images/resized/0007/9817/79817v1-max-150x150.jpg'], [[250, 210], 'assets/images/resized/0007/9817/79817v1-max-250x250.jpg'], [[450, 379], 'assets/images/resized/0007/9817/79817v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529ad05'), 'name': 'DemandTec', 'permalink': 'demandtec', 'crunchbase_url': 'http://www.crunchbase.com/company/demandtec', 'homepage_url': 'http://www.demandtec.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': 350, 'founded_year': 1999, 'founded_month': 12, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': 'merchandising and trade optimization', 'created_at': 'Sun Jan 18 07:18:49 UTC 2009', 'updated_at': 'Fri Dec 16 01:22:53 UTC 2011', 'overview': '

DemandTec (NASDAQ:DMAN) connects more than 340 retailers and consumer products companies, providing common tools to transact, interact, and collaborate on core merchandising and marketing activities. DemandTec’s services enable customers to achieve their sales volume, revenue, shopper loyalty, and profitability objectives. DemandTec customers have collaborated on nearly four million trade deals. DemandTec software and analytical services utilize a science-based platform to model and understand consumer behavior. DemandTec customers include leading retailers and consumer products companies such as Ahold USA, Best Buy, ConAgra Foods, Delhaize America, General Mills, H-E-B Grocery Co., The Home Depot, Hormel Foods, Monoprix, PETCO, Safeway, Sara Lee, Target, Walmart, and WH Smith.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0003/4137/34137v1-max-150x150.jpg'], [[168, 45], 'assets/images/resized/0003/4137/34137v1-max-250x250.jpg'], [[168, 45], 'assets/images/resized/0003/4137/34137v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'President & CEO', 'person': {'first_name': 'Dan', 'last_name': 'Fishback', 'permalink': 'dan-fishback'}}, {'is_past': False, 'title': 'EVP & CFO', 'person': {'first_name': 'Mark', 'last_name': 'Culhane', 'permalink': 'mark-culhane'}}, {'is_past': False, 'title': 'EVP & Chief Customer Officer', 'person': {'first_name': 'Bill', 'last_name': 'Phelps', 'permalink': 'bill-phelps'}}, {'is_past': False, 'title': 'Senior Architect', 'person': {'first_name': 'Louis', 'last_name': 'Roehrs', 'permalink': 'louis-roehrs'}}, {'is_past': False, 'title': 'Sr. Director of Science, Consumer Products', 'person': {'first_name': 'Siddharth', 'last_name': 'Patil', 'permalink': 'siddharth-patil'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Michael', 'last_name': 'Neal', 'permalink': 'michael-neal-2'}}, {'is_past': True, 'title': 'Chief Science Officer', 'person': {'first_name': 'Krishna', 'last_name': 'Venkatraman', 'permalink': 'krishna-venkatraman'}}, {'is_past': True, 'title': 'Interim CMO', 'person': {'first_name': 'Gerard', 'last_name': 'Cunningham', 'permalink': 'gerard-cunningham-2'}}, {'is_past': True, 'title': 'SVP Product Management & Strategy', 'person': {'first_name': 'Mike', 'last_name': 'Frandsen', 'permalink': 'mike-frandsen'}}, {'is_past': True, 'title': 'SVP Worldwide Sales', 'person': {'first_name': 'John', 'last_name': 'Crouch', 'permalink': 'john-crouch'}}, {'is_past': True, 'title': 'Sr. Director, Integration Services', 'person': {'first_name': 'John', 'last_name': 'Liska', 'permalink': 'john-liska'}}, {'is_past': True, 'title': 'Senior VP of Products', 'person': {'first_name': 'Jim', 'last_name': 'Dai', 'permalink': 'jim-dai'}}, {'is_past': True, 'title': \"Board Director, Prior To IBM's $500 million acquisition\", 'person': {'first_name': 'Chuck', 'last_name': 'Robel', 'permalink': 'chuck-robel'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Perry', 'last_name': 'Ha', 'permalink': 'perry-ha'}}, {'is_past': True, 'title': 'Release Manager', 'person': {'first_name': 'Anupama', 'last_name': 'Ramesh', 'permalink': 'anupama-ramesh'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Han', 'last_name': 'Kim', 'permalink': 'han-kim'}}, {'is_past': True, 'title': 'SVP of Products', 'person': {'first_name': 'Joel', 'last_name': 'Weingarten', 'permalink': 'joel-weingarten-2'}}], 'competitions': [{'competitor': {'name': 'Baynote', 'permalink': 'baynote'}}], 'providerships': [], 'total_money_raised': '$6M', 'funding_rounds': [{'id': 4636, 'round_code': 'debt_round', 'source_url': 'http://venturebeat.com/2007/08/09/demandtec-consumer-demand-management-software-co-prices-ipo/', 'source_description': 'DemandTec, consumer demand management software co., prices IPO', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 9, 'investments': [{'company': None, 'financial_org': {'name': 'Altos Ventures', 'permalink': 'altos-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Black River Asset Management', 'permalink': 'black-river'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crosspoint Venture Partners', 'permalink': 'crosspoint-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 440000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/12/08/ibm-buys-retail-forecasting-and-merchandising-software-company-demandtec-for-440m/', 'source_description': 'IBM Buys Retail Forecasting And Merchandising Software Company DemandTec For $440M', 'acquired_year': 2011, 'acquired_month': 12, 'acquired_day': 8, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}, 'acquisitions': [{'price_amount': 13450000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.demandtec.com/company/news/press/2009/news_rel_022509_C3acquire.php', 'source_description': 'DemandTec Completes Acquisition of Connect3 Systems', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 25, 'company': {'name': 'Connect3 Systems', 'permalink': 'connect3-systems'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/demandtec-acquires-assets-of-applied-intelligence-solutions-llc-112797564.html', 'source_description': 'DemandTec Acquires Assets of Applied Intelligence Solutions, LLC', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 3, 'company': {'name': 'Applied Intelligence Solutions', 'permalink': 'applied-intelligence-solutions'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/464079/demandtec-acquire-m-factor', 'source_description': 'DemandTec to Acquire M-Factor', 'acquired_year': 2011, 'acquired_month': 3, 'acquired_day': 9, 'company': {'name': 'M-Factor', 'permalink': 'm-factor'}}], 'offices': [{'description': 'Corporate Headquarters', 'address1': '1 Circle Star Way, Suite 200', 'address2': '', 'zip_code': '94070', 'city': 'San Carlos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.498842, 'longitude': -122.239815}, {'description': 'United Kingdom', 'address1': '1 Northumberland Ave', 'address2': '', 'zip_code': 'WC2N 5BW', 'city': 'London', 'state_code': None, 'country_code': 'GBR', 'latitude': 51.5069206, 'longitude': -0.1249337}], 'milestones': [], 'ipo': {'valuation_amount': 245000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 2, 'pub_day': 14, 'stock_symbol': 'NASDAQ:DMAN'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b3bd'), 'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand', 'crunchbase_url': 'http://www.crunchbase.com/company/cornerstone-ondemand', 'homepage_url': 'http://www.cornerstoneondemand.com', 'blog_url': 'http://www.cornerstoneondemand.com/blog', 'blog_feed_url': 'http://www.cornerstoneondemand.com/blog', 'twitter_username': 'cornerstoneinc', 'category_code': 'software', 'number_of_employees': 881, 'founded_year': 1999, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'talent-management, enterprise, learning-management, performance-management, onboarding, internal-recruiting, learning-content, critical-roles, employee-collaboration, succession', 'alias_list': '', 'email_address': 'info@cornerstoneondemand.com', 'phone_number': '1 (888) 365-2763', 'description': 'integrated talent management software', 'created_at': 'Sun Mar 15 14:45:14 UTC 2009', 'updated_at': 'Tue Nov 05 09:46:58 UTC 2013', 'overview': '

Cornerstone OnDemand is a leading global provider of a comprehensive learning and talent management solution delivered as Software-as-a-Service (SaaS). The company enables organizations to meet the challenges they face in empowering their people and maximizing the productivity of their human capital. Cornerstone currently empowers nearly 13 million users across 190 countries and in 41 languages.

\\n\\n

The company’s integrated software offering consists of four cloud solutions, including the Cornerstone Recruiting Cloud, the Cornerstone Performance Cloud, the Cornerstone Learning Cloud and the Cornerstone Extended Enterprise Cloud. Our clients use our solution to develop employees throughout their careers, engage all employees effectively, improve business execution, cultivate future leaders, and integrate with their external networks of customers, vendors and distributors.

\\n\\n

The company has more than 1,500 clients, including multi-national corporations, large domestic enterprises, mid-market companies, state and local public sector organizations, higher education institutions and non-profit entities. Clients include BJC HealthCare, Flextronics, Kelly Services, Pearson, Starwood Hotels & Resorts Worldwide, Teach for America and Virgin Media Limited, among many others. Cornerstone supports multiple client deployments of more than 150,000 users, including one client with more than 700,000 users.

\\n\\n

Cornerstone is headquartered in Santa Monica, California, with offices in Auckland, Hong Kong, London, Mumbai, Munich, Madrid, Paris, Rome, Sydney and Tel Aviv.

', 'image': {'available_sizes': [[[150, 36], 'assets/images/resized/0012/4709/124709v7-max-150x150.png'], [[250, 61], 'assets/images/resized/0012/4709/124709v7-max-250x250.png'], [[450, 110], 'assets/images/resized/0012/4709/124709v7-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder & CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'Founder and CEO', 'person': {'first_name': 'Adam', 'last_name': 'Miller', 'permalink': 'adam-miller'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Mark', 'last_name': 'Goldin', 'permalink': 'mark-goldin'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Perry', 'last_name': 'Wallack', 'permalink': 'perry-wallack'}}, {'is_past': False, 'title': 'VP, Corporate Development & Strategy', 'person': {'first_name': 'Jason', 'last_name': 'Corsello', 'permalink': 'jason-corsello'}}, {'is_past': False, 'title': 'EVP Strategic Accounts', 'person': {'first_name': 'Steven', 'last_name': 'Seymour', 'permalink': 'steven-seymour'}}, {'is_past': False, 'title': 'SVP of Client Success', 'person': {'first_name': 'Kirsten', 'last_name': 'Maas Helvey', 'permalink': 'kirsten-maas-helvey'}}, {'is_past': False, 'title': 'SVP and GM of Europe, Middle East and Africa (EMEA)', 'person': {'first_name': 'Vince', 'last_name': 'Belliveau', 'permalink': 'vince-belliveau'}}, {'is_past': False, 'title': 'SVP Sales', 'person': {'first_name': 'Dave', 'last_name': 'Carter', 'permalink': 'dave-carter'}}, {'is_past': False, 'title': 'VP Alliances & Strategy', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Byron', 'last_name': 'Deeter', 'permalink': 'byron-deeter'}}, {'is_past': False, 'title': 'GM, Asia-Pacific', 'person': {'first_name': 'Frank', 'last_name': 'Ricciardi', 'permalink': 'frank-ricciardi'}}, {'is_past': False, 'title': 'Services Executive Consultant', 'person': {'first_name': 'Jose', 'last_name': 'daVeiga', 'permalink': 'jose-daveiga'}}, {'is_past': False, 'title': 'National Director – Higher Education', 'person': {'first_name': 'Kurt', 'last_name': 'Ackman', 'permalink': 'kurt-ackman'}}, {'is_past': True, 'title': 'Vice President, Channel Management', 'person': {'first_name': 'Sean', 'last_name': 'Jacobsohn', 'permalink': 'sean-jacobsohn-2'}}, {'is_past': True, 'title': 'SVP, Consulting Services', 'person': {'first_name': 'Kristen', 'last_name': 'Mass Helvey', 'permalink': 'kristen-mass-helvey'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Ed', 'last_name': 'Garber', 'permalink': 'ed-garber'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Julie', 'last_name': 'Norquist Roy', 'permalink': 'julie-norquist-roy'}}, {'is_past': True, 'title': 'Director of Core architecture', 'person': {'first_name': 'Sridhar', 'last_name': 'Sambangi', 'permalink': 'sridhar-sambangi'}}, {'is_past': True, 'title': 'Senior Director, Strategy and Research', 'person': {'first_name': 'David', 'last_name': 'Somers', 'permalink': 'david-somers'}}, {'is_past': True, 'title': 'Regional Sales Manager', 'person': {'first_name': 'Matt', 'last_name': 'Shields', 'permalink': 'matt-shields-2'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Jessica', 'last_name': 'Levaton', 'permalink': 'jessica-levaton'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Neil', 'last_name': 'Sadaranganey', 'permalink': 'neil-sadaranganey'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'S.Steven', 'last_name': 'Singh', 'permalink': 's-steven-singh'}}], 'competitions': [{'competitor': {'name': 'SuccessFactors', 'permalink': 'successfactors'}}, {'competitor': {'name': 'Halogen Software', 'permalink': 'halogen-software'}}, {'competitor': {'name': 'WorkSimple', 'permalink': 'worksimple'}}, {'competitor': {'name': 'SilkRoad Technology', 'permalink': 'silkroad-technology'}}, {'competitor': {'name': 'Taleo', 'permalink': 'taleo'}}, {'competitor': {'name': 'Softscape', 'permalink': 'softscape'}}], 'providerships': [], 'total_money_raised': '$44.7M', 'funding_rounds': [{'id': 5331, 'round_code': 'e', 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_raises____7m/s-0020463.html', 'source_description': 'Cornerstone OnDemand Raises $12.7M', 'raised_amount': 12700000, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 3, 'funded_day': 13, 'investments': [{'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}]}, {'id': 11881, 'round_code': 'd', 'source_url': 'http://www.cornerstoneondemand.com/2007-09-17-cornerstone-ondemand-raises-32-million', 'source_description': 'On-Demand Leader Redefines the Talent Management Landscape', 'raised_amount': 32000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 9, 'funded_day': 17, 'investments': [{'company': None, 'financial_org': {'name': 'Bay Partners', 'permalink': 'bay-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Bessemer Venture Partners', 'permalink': 'bessemer-venture-partners'}, 'person': None}]}], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '1601 Cloverfield Blvd.', 'address2': 'Suite 620 South', 'zip_code': '90404', 'city': 'Santa Monica', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 34.028182, 'longitude': -118.472577}], 'milestones': [{'id': 7141, 'description': 'Announced hire of new CTO, Mark Goldin.', 'stoned_year': 2010, 'stoned_month': 7, 'stoned_day': 15, 'source_url': 'http://www.cornerstoneondemand.com/mark-goldin-joins-cornerstone-ondemand-chief-technology-officer', 'source_text': None, 'source_description': 'Mark Goldin Joins Cornerstone OnDemand as Chief Technology Officer', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}, {'id': 35043, 'description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 11, 'source_url': 'http://www.socaltech.com/cornerstone_ondemand_looks_to_raises____m_in_debt/s-0049751.html', 'source_text': '', 'source_description': 'Cornerstone OnDemand Looks To Raise $220M In Debt', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Cornerstone OnDemand', 'permalink': 'cornerstone-ondemand'}}], 'ipo': {'valuation_amount': 900000000, 'valuation_currency_code': 'USD', 'pub_year': 2011, 'pub_month': 7, 'pub_day': 5, 'stock_symbol': 'CSOD'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7e4bab8bd67529b996'), 'name': 'Western Digital', 'permalink': 'western-digital', 'crunchbase_url': 'http://www.crunchbase.com/company/western-digital', 'homepage_url': 'http://www.wdc.com/en', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'WesternDigital', 'category_code': 'hardware', 'number_of_employees': None, 'founded_year': 1970, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': '', 'email_address': '', 'phone_number': '949-672-7000', 'description': 'Magnetic Storage', 'created_at': 'Tue May 05 05:31:22 UTC 2009', 'updated_at': 'Tue Sep 10 04:01:45 UTC 2013', 'overview': '

Western Digital Corporation engages in the design, development, manufacture, and sale of hard drives worldwide. It offers hard drives, including 3.5-inch, 2.5-inch, 1.8-inch, and 1.0-inch form factor drives under the Western Digital, WD, the WD logo, WD Caviar, WD Raptor, WD VelociRaptor, WD Scorpio, WD Elements, My Passport, My Book, My DVR Expander, and GreenPower brand names. The company’s hard drives are used in desktop computers; notebook computers; external storage devices; enterprise applications, such as servers, workstations, network attached storage, and storage area networks; and consumer electronics products, which comprise personal/digital video recorders and satellite and cable set-top boxes. Western Digital Corporation sells its products to original equipment manufacturers and original design manufacturers for inclusion in computer systems or subsystems, distributors, resellers, and retailers. The company was founded in 1970 and is headquartered in Lake Forest, California.

', 'image': {'available_sizes': [[[121, 33], 'assets/images/resized/0006/3937/63937v1-max-150x150.png'], [[121, 33], 'assets/images/resized/0006/3937/63937v1-max-250x250.png'], [[121, 33], 'assets/images/resized/0006/3937/63937v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'chairman of the board of directors', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': False, 'title': 'Chairman of the Board, Former President', 'person': {'first_name': 'Thomas', 'last_name': 'E. Pardum', 'permalink': 'thomas-e-pardum'}}, {'is_past': False, 'title': 'Former Chief Executive Officer', 'person': {'first_name': 'Kathleen', 'last_name': 'A. Cote', 'permalink': 'kathleen-a-cote'}}, {'is_past': False, 'title': 'President and Chief Executive Officer', 'person': {'first_name': 'Stephen', 'last_name': 'D. Milligan', 'permalink': 'stephen-d-milligan'}}, {'is_past': False, 'title': 'Vice President, Software Engineering, Branded Products', 'person': {'first_name': 'Gary', 'last_name': 'Hooper', 'permalink': 'gary-hooper'}}, {'is_past': False, 'title': 'Executive Vice President and Chief Financial Officer', 'person': {'first_name': 'Wolfgang', 'last_name': 'U. Nickl', 'permalink': 'wolfgang-u-nickl'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Henry', 'last_name': 'DeNero', 'permalink': 'henry-denero'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Michel', 'last_name': 'D. Lambert', 'permalink': 'michel-d-lambert'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Matthew', 'last_name': 'E. Massengill', 'permalink': 'matthew-e-massengill'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Masahiro', 'last_name': 'yamamura', 'permalink': 'masahiro-yamamura'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Peter', 'last_name': 'Behrendt', 'permalink': 'peter-behrendt'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Wiiliam', 'last_name': 'L. Kimsey', 'permalink': 'wiiliam-l-kimsey'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Len', 'last_name': 'J. Lauer', 'permalink': 'len-j-lauer'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Roger', 'last_name': 'H. Moore', 'permalink': 'roger-h-moore'}}, {'is_past': False, 'title': 'VP Business Development', 'person': {'first_name': 'Russ', 'last_name': 'Krapf', 'permalink': 'russ-krapf'}}, {'is_past': False, 'title': 'Engineering Management Positions', 'person': {'first_name': 'Nariman', 'last_name': 'Yousefi', 'permalink': 'nariman-yousefi'}}, {'is_past': True, 'title': 'chairman', 'person': {'first_name': 'Thomas', 'last_name': 'Pardun', 'permalink': 'thomas-pardun'}}, {'is_past': True, 'title': 'CO-COO', 'person': {'first_name': 'Russell', 'last_name': 'Stern', 'permalink': 'russell-stern'}}, {'is_past': True, 'title': 'Senior Director OEM Sales', 'person': {'first_name': 'Michael', 'last_name': 'Ofstedahl', 'permalink': 'michael-ofstedahl-2'}}, {'is_past': True, 'title': 'Sr. Director, Materials', 'person': {'first_name': 'John', 'last_name': 'Warwick', 'permalink': 'john-warwick'}}, {'is_past': True, 'title': 'Senior Management Positions', 'person': {'first_name': 'John', 'last_name': 'Creelman', 'permalink': 'john-creelman'}}, {'is_past': True, 'title': 'manufacturing finance and financial planning positions', 'person': {'first_name': 'Michael', 'last_name': 'J.Rockenbach', 'permalink': 'michael-j-rockenbach-2'}}, {'is_past': True, 'title': 'Creative / Freelance', 'person': {'first_name': 'Vinit', 'last_name': 'Patil', 'permalink': 'vinit-patil'}}], 'competitions': [{'competitor': {'name': 'Clickfree', 'permalink': 'clickfree'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [{'funding_round': {'round_code': 'b', 'source_url': 'http://www.finsmes.com/2013/02/skyera-closes-51-6m-financing.html', 'source_description': 'Skyera Closes $51.6M in Second Financing Round', 'raised_amount': 51600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 2, 'funded_day': 21, 'company': {'name': 'Skyera', 'permalink': 'skyera'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130807e987r1u1u&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130807e987r1u1u%26from%3dalert%26pid%3d32', 'source_description': 'Flash Storage Co. Tegile Nabs $35M ', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 7, 'company': {'name': 'Tegile Systems', 'permalink': 'tegile-systems'}}}, {'funding_round': {'round_code': 'e', 'source_url': 'http://techcrunch.com/2013/11/19/hightail-funding-series-e/', 'source_description': 'Hightail, The File-Sharing Service Formerly Called YouSendIt, Lands $34 Million In New Funding', 'raised_amount': 34000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 19, 'company': {'name': 'Hightail', 'permalink': 'hightail'}}}], 'acquisition': None, 'acquisitions': [{'price_amount': 685000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/virident_acquired_for_68_m_by_western_digital/s-0051251.html', 'source_description': 'Virident Acquired For $685M By Western Digital', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'company': {'name': 'Virident Systems', 'permalink': 'virident-systems'}}], 'offices': [{'description': 'HQ', 'address1': '20511 Lake Forest Drive', 'address2': '', 'zip_code': '92630', 'city': 'Lake Forest', 'state_code': 'CA', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 6497, 'description': \"WD® COMPLETES ACQUISITION OF HOYA'S MAGNETIC MEDIA OPERATIONS.\", 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 30, 'source_url': 'http://wdc.com/en/company/releases/PressRelease.asp?release=4904fd42-ee9c-4e62-b910-96febaf3da0e', 'source_text': '', 'source_description': \"WD® COMPLETES ACQUISITION OF HOYA'S MAGNETIC MEDIA OPERATIONS\", 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Western Digital', 'permalink': 'western-digital'}}, {'id': 6553, 'description': 'Fab plant bought by data-storing company.', 'stoned_year': 2010, 'stoned_month': 6, 'stoned_day': 2, 'source_url': 'http://www.azcentral.com/community/northvalley/articles/2010/06/02/20100602microchip-plant-purchased.html', 'source_text': '', 'source_description': 'Fab plant bought by data-storing company', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Western Digital', 'permalink': 'western-digital'}}], 'ipo': {'valuation_amount': 9430000000, 'valuation_currency_code': 'USD', 'pub_year': None, 'pub_month': None, 'pub_day': None, 'stock_symbol': 'NYSE:WDC'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 133], 'assets/images/resized/0006/4866/64866v1-max-150x150.jpg'], [[250, 223], 'assets/images/resized/0006/4866/64866v1-max-250x250.jpg'], [[450, 401], 'assets/images/resized/0006/4866/64866v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.facebook.com/WesternDigital', 'title': 'Facebook Page'}], 'partners': []}, {'_id': ObjectId('52cdef7f4bab8bd67529bf8d'), 'name': 'Real Goods Solar', 'permalink': 'real-goods-solar', 'crunchbase_url': 'http://www.crunchbase.com/company/real-goods-solar', 'homepage_url': 'http://www.realgoodssolar.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'realgoodssolar', 'category_code': 'cleantech', 'number_of_employees': None, 'founded_year': 1978, 'founded_month': None, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'solar, solar-california, solar-colorado, solar-system-installation, sold-first-solar-panel, marin-solar, bay-area-solar-systems, solar-systems, high-quality', 'alias_list': '', 'email_address': 'solar@realgoods.com', 'phone_number': '18885072561', 'description': 'Solar Power Retailer', 'created_at': 'Mon Jun 15 20:34:36 UTC 2009', 'updated_at': 'Mon Aug 12 03:35:39 UTC 2013', 'overview': '

Real Goods Solar designs, sells and installs solar power for consumers.

', 'image': {'available_sizes': [[[150, 71], 'assets/images/resized/0004/8665/48665v5-max-150x150.jpg'], [[250, 118], 'assets/images/resized/0004/8665/48665v5-max-250x250.jpg'], [[450, 213], 'assets/images/resized/0004/8665/48665v5-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Founder and President', 'person': {'first_name': 'John', 'last_name': 'Schaeffer', 'permalink': 'john-schaeffer'}}, {'is_past': False, 'title': 'Vice President of Sales', 'person': {'first_name': 'Kent', 'last_name': 'Halliburton', 'permalink': 'kent-halliburton'}}, {'is_past': False, 'title': 'Executive Vice President of Operations', 'person': {'first_name': 'Scott', 'last_name': 'Carlson', 'permalink': 'scott-carlson-2'}}, {'is_past': False, 'title': 'Vice President, Marketing & Business Development', 'person': {'first_name': 'Joel', 'last_name': 'Kauffman', 'permalink': 'joel-kauffman'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Erik', 'last_name': 'Zech', 'permalink': 'erik-zech'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/press-release/real-goods-solar-to-acquire-mercury-solar-systems-a-premier-solar-solutions-provider-20130809-00253', 'source_description': 'Real Goods Solar to Acquire Mercury Solar Systems, a Premier Solar Solutions Provider', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'company': {'name': 'Mercury solar systems', 'permalink': 'mercury-solar-systems'}}], 'offices': [{'description': 'Real Goods Solar', 'address1': '13771 South Highway 101', 'address2': '', 'zip_code': '', 'city': 'Hopland', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 38.872562, 'longitude': -123.044572}, {'description': 'Real Goods/Marin Solar', 'address1': '1163 East Francisco Blvd.', 'address2': '', 'zip_code': '94901', 'city': 'San Rafael', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.9569059, 'longitude': -122.5016533}, {'description': 'Real Goods/Carlson Solar', 'address1': '41690 Corporate Center Drive', 'address2': '', 'zip_code': '92562', 'city': 'Murrieta', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 33.5279274, 'longitude': -117.1793502}, {'description': 'Real Goods Solar', 'address1': '833 So. Boulder Rd', 'address2': '', 'zip_code': '80027', 'city': 'Louisville', 'state_code': 'CO', 'country_code': 'USA', 'latitude': 39.988236, 'longitude': -105.157455}, {'description': 'Real Goods', 'address1': '1115 Thompson Ave 31', 'address2': '', 'zip_code': '95062', 'city': 'Santa Cruz', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 36.967958, 'longitude': -121.971606}], 'milestones': [], 'ipo': {'valuation_amount': 55000000, 'valuation_currency_code': 'USD', 'pub_year': 2008, 'pub_month': 5, 'pub_day': 8, 'stock_symbol': 'RSOL'}, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 100], 'assets/images/resized/0004/8664/48664v1-max-150x150.png'], [[250, 167], 'assets/images/resized/0004/8664/48664v1-max-250x250.png'], [[450, 301], 'assets/images/resized/0004/8664/48664v1-max-450x450.png']], 'attribution': None}, {'available_sizes': [[[150, 124], 'assets/images/resized/0009/3705/93705v2-max-150x150.jpg'], [[250, 207], 'assets/images/resized/0009/3705/93705v2-max-250x250.jpg'], [[450, 374], 'assets/images/resized/0009/3705/93705v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results13 = list(collection.find({\"$and\":\n", + " [{\"founded_year\": {\"$lt\": 2000}}, {\"ipo.valuation_amount\": {\"$gt\": 10000000}}]}))\n", + "\n", + "print(len(results13))\n", + "print(results13)" + ] }, { "cell_type": "markdown", @@ -214,11 +412,27 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "180\n", + "[{'_id': ObjectId('52cdef7d4bab8bd675298b89'), 'name': 'LSI', 'acquisition': {'price_amount': 6600000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://dealbook.nytimes.com/2013/12/16/avago-to-buy-lsi-for-6-6-billion/?_r=0', 'source_description': 'Avago to Buy LSI for $6.6 Billion', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b183'), 'name': 'Sourcefire', 'acquisition': {'price_amount': 2700000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/23/cisco-acquires-cybersecurity-company-sourcefire-for-2-7b/', 'source_description': 'Cisco Acquires Cybersecurity Company Sourcefire For $2.7B', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 23, 'acquiring_company': {'name': 'Cisco', 'permalink': 'cisco'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299f6b'), 'name': 'ExactTarget', 'acquisition': {'price_amount': 2500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/04/with-exacttarget-acquisition-salesforce-com-has-spent-close-to-3-5-billion-to-get-into-the-chief-marketing-officers-suite/', 'source_description': 'With ExactTarget Acquisition, Salesforce.com Has Spent Close To $3.5 Billion To Get Into The Chief Marketing Officer’s Suite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 4, 'acquiring_company': {'name': 'Salesforce', 'permalink': 'salesforce'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae17'), 'name': 'Applied Systems', 'acquisition': {'price_amount': 1800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.insurancenetworking.com/news/Applied-systems-acquired-by-hellman-and-friedman-33455-1.html', 'source_description': 'Applied Systems to be Acquired by Hellman & Friedman', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 26, 'acquiring_company': {'name': 'Hellman & Friedman', 'permalink': 'hellman-friedman'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e3a'), 'name': 'Digital Insight', 'acquisition': {'price_amount': 1650000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/12/02/ncr-acquisition-idUSL4N0JH40M20131202', 'source_description': 'CORRECTED-NCR to buy mobile banking technology firm for $1.65 bln', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'NCR', 'permalink': 'ncr'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298619'), 'name': 'Responsys', 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://online.wsj.com/news/articles/SB10001424052702303773704579270080523815684', 'source_description': 'Oracle to Buy Responsys for $1.5 Billion', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 20, 'acquiring_company': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c280'), 'name': 'Pearl Therapeutics', 'acquisition': {'price_amount': 1150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/06/10/us-astrazeneca-pearl-idUSBRE95904U20130610?feedType=RSS&feedName=businessNews', 'source_description': 'AstraZeneca buys U.S. lung drug firm Pearl for up to $1.15 billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 10, 'acquiring_company': {'name': 'AstraZeneca', 'permalink': 'astrazeneca'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298051'), 'name': 'Tumblr', 'acquisition': {'price_amount': 1100000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/20/its-official-yahoo-is-buying-tumblr-for-1-1b-promises-to-keep-it-independent/', 'source_description': 'It’s Official: Yahoo Is Buying Tumblr For $1.1B, Vows To Keep It Independent', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c04d'), 'name': 'Aragon Pharmaceuticals', 'acquisition': {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.firstwordpharma.com/node/1109025?tsid=28®ion_id=6', 'source_description': 'Johnson & Johnson boosts cancer drug pipeline with $1-billion deal to buy Aragon Pharmaceuticals ', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 17, 'acquiring_company': {'name': 'Johnson & Johnson', 'permalink': 'johnson-johnson'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529804c'), 'name': 'The Climate Corporation', 'acquisition': {'price_amount': 930000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/10/02/monsanto-acquires-weather-big-data-company-climate-corporation-for-930m/', 'source_description': 'Monsanto Acquires Weather Big Data Company Climate Corporation For $930M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 2, 'acquiring_company': {'name': 'Monsanto', 'permalink': 'monsanto'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995f0'), 'name': 'Axis', 'acquisition': {'price_amount': 865000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techinasia.com/malaysia-xl-axiata-buys-indonesia-axis/', 'source_description': 'Malaysia’s Axiata boosts Indonesia business with $865 million acquisition of AXIS', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'acquiring_company': {'name': 'Axiata', 'permalink': 'axiata'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529997a'), 'name': 'Axis', 'acquisition': {'price_amount': 865000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://www.techinasia.com/malaysia-xl-axiata-buys-indonesia-axis/', 'source_description': 'Malaysia’s Axiata boosts Indonesia business with $865 million acquisition of AXIS', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'acquiring_company': {'name': 'Axiata', 'permalink': 'axiata'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a0ea'), 'name': 'Trusteer', 'acquisition': {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/15/ibm-buys-israelus-cybersecurity-specialist-trusteer-for-few-hundred-million-dollars/', 'source_description': 'IBM Buys Israel/US Cybersecurity Specialist Trusteer For Between $800M-$1B', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 15, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a951'), 'name': 'Virident Systems', 'acquisition': {'price_amount': 685000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.silicontap.com/virident_acquired_for_68_m_by_western_digital/s-0051251.html', 'source_description': 'Virident Acquired For $685M By Western Digital', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 9, 'acquiring_company': {'name': 'Western Digital', 'permalink': 'western-digital'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299721'), 'name': 'Unilever', 'acquisition': {'price_amount': 575000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.njbiz.com/article/20131003/NJBIZ01/131009926/Pinnacle-closes-$575M-Wish-Bone-acquisition-from-Unilever&nocache=1?utm_content=buffera79f6&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pinnacle closes $575M Wish-Bone acquisition from Unilever', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'acquiring_company': {'name': 'Pinnacle Foods', 'permalink': 'pinnacle-foods'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299aab'), 'name': 'Unilever', 'acquisition': {'price_amount': 575000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.njbiz.com/article/20131003/NJBIZ01/131009926/Pinnacle-closes-$575M-Wish-Bone-acquisition-from-Unilever&nocache=1?utm_content=buffera79f6&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pinnacle closes $575M Wish-Bone acquisition from Unilever', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 3, 'acquiring_company': {'name': 'Pinnacle Foods', 'permalink': 'pinnacle-foods'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752997c3'), 'name': 'GE Healthcare', 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.socaltech.com/carefusion_acquires_ge_healthcare_division_for____m/s-0052439.html', 'source_description': 'CareFusion Acquires GE Healthcare Division For $500M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 18, 'acquiring_company': {'name': 'Carefusion', 'permalink': 'carefusion'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299b4d'), 'name': 'GE Healthcare', 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.socaltech.com/carefusion_acquires_ge_healthcare_division_for____m/s-0052439.html', 'source_description': 'CareFusion Acquires GE Healthcare Division For $500M', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 18, 'acquiring_company': {'name': 'Carefusion', 'permalink': 'carefusion'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a482'), 'name': 'AAPT', 'acquisition': {'price_amount': 450000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://delimiter.com.au/2013/12/09/final-closure-tpg-buys-aapt-450m/', 'source_description': 'TPG buys AAPT for $450m', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'TPG Internet', 'permalink': 'tpg-internet'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529967a'), 'name': 'PPTV', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/report-suning-buy-pptv-400-million/', 'source_description': 'Report: Suning to buy PPTV for around $400 million', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'acquiring_company': {'name': 'Suning', 'permalink': 'suning'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a04'), 'name': 'PPTV', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/report-suning-buy-pptv-400-million/', 'source_description': 'Report: Suning to buy PPTV for around $400 million', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'acquiring_company': {'name': 'Suning', 'permalink': 'suning'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c6b4'), 'name': 'OptiMedica', 'acquisition': {'price_amount': 400000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/news/2013/07/15/abbott-to-pay-up-to-400m-to-buy.html?ana=RSS&s=article_search&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+bizj_sanjose+%28Silicon+Valley+%2F+San+Jose+Business+Journal%29', 'source_description': 'Abbott to pay up to $400M to buy OptiMedica', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'acquiring_company': {'name': 'Abbott Labs', 'permalink': 'abbott'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b895'), 'name': 'Novaled', 'acquisition': {'price_amount': 347000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/08/09/samsung-to-acquire-german-oled-biz-novaled-for-347m/', 'source_description': 'Samsung to acquire German OLED biz Novaled for $347M', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 9, 'acquiring_company': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'acquisition': {'price_amount': 345000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/11/25/apple-buys-israeli-3d-sensor-outfit-primesense-for-a-reported-350m/', 'source_description': ' Apple buys Israeli 3D sensor outfit PrimeSense for a reported $350M ', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298bbf'), 'name': 'Acquity Group', 'acquisition': {'price_amount': 316000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pulse2.com/2013/05/18/accenture-buying-acquity-group-for-316-million-86190/', 'source_description': 'Accenture Plc (ACN) Acquires E-Commerce Company Acquity Group For $316 Million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 19, 'acquiring_company': {'name': 'Accenture', 'permalink': 'accenture'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bc72'), 'name': 'Topsy Labs', 'acquisition': {'price_amount': 200000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/02/apple-buys-topsy-for-a-reported-200m-could-use-social-signals-to-bolster-app-store-relevance/', 'source_description': 'Apple Buys Topsy For Price Reportedly North Of $200M, Could Use Social Signals To Bolster Siri, App Store Relevance', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752988c7'), 'name': 'Gracenote', 'acquisition': {'price_amount': 170000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-12-23/tribune-to-buy-sony-s-gracenote-music-data-unit-for-170-million.html', 'source_description': ' Sony to Sell Gracenote Business to Tribune for $170 Million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 23, 'acquiring_company': {'name': 'Tribune Company', 'permalink': 'tribunecompany'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'acquisition': {'price_amount': 168000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/22/orange-acquired-dailymotion-for-168-million-by-buying-out-the-remaining-51-stake/', 'source_description': 'Orange Acquired Dailymotion For $168 Million By Buying Out Remaining 51% Stake [Update: Orange Confirms]', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 22, 'acquiring_company': {'name': 'Orange', 'permalink': 'orange'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c2a4'), 'name': 'Layer 7 Technologies', 'acquisition': {'price_amount': 155000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://canadianvcpe.com/2013/05/10/layer-7-to-be-acquired-by-ca-technologies-for-155-million/', 'source_description': 'Layer 7 to be acquired by CA Technologies for $155 million', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'CA Technologies', 'permalink': 'ca'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529816c'), 'name': 'Goodreads', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://blogs.wsj.com/digits/2013/03/29/amazon-moves-toward-kindle-social-network-with-goodreads/', 'source_description': 'Amazon Moves Toward Kindle Social Network with Goodreads', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 29, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299606'), 'name': 'Voxeo', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://thenextweb.com/insider/2013/07/10/aspect-acquires-customer-service-software-company-voxeo-in-150-million-deal/?awesm=tnw.to_j0gKB&uid=a419a325421a175f131b543fab4ccbf9e603cd46&utm_source=Twitter&utm_medium=Spreadus&utm_campaign=social%20media', 'source_description': 'Aspect acquires customer service software company Voxeo in $150m deal', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'acquiring_company': {'name': 'Aspect Software', 'permalink': 'aspect-software'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299990'), 'name': 'Voxeo', 'acquisition': {'price_amount': 150000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://thenextweb.com/insider/2013/07/10/aspect-acquires-customer-service-software-company-voxeo-in-150-million-deal/?awesm=tnw.to_j0gKB&uid=a419a325421a175f131b543fab4ccbf9e603cd46&utm_source=Twitter&utm_medium=Spreadus&utm_campaign=social%20media', 'source_description': 'Aspect acquires customer service software company Voxeo in $150m deal', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 10, 'acquiring_company': {'name': 'Aspect Software', 'permalink': 'aspect-software'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299730'), 'name': 'iWeb Technologies', 'acquisition': {'price_amount': 145000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thewhir.com/web-hosting-news/internap-acquires-montreal-web-hosting-provider-iweb', 'source_description': 'Internap Acquires Montreal Web Hosting Provider iWeb for $145M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 30, 'acquiring_company': {'name': 'Internap', 'permalink': 'internap'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299aba'), 'name': 'iWeb Technologies', 'acquisition': {'price_amount': 145000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.thewhir.com/web-hosting-news/internap-acquires-montreal-web-hosting-provider-iweb', 'source_description': 'Internap Acquires Montreal Web Hosting Provider iWeb for $145M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 30, 'acquiring_company': {'name': 'Internap', 'permalink': 'internap'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ab55'), 'name': 'Vocalocity', 'acquisition': {'price_amount': 130000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/atlanta/blog/atlantech/2013/10/vonage-picks-up-atlantas-vocalocity.html?ana=twt', 'source_description': \"Vonage picks up Atlanta's Vocalocity for $130M \", 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 10, 'acquiring_company': {'name': 'Vonage', 'permalink': 'vonage'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e55'), 'name': 'Channel Intelligence', 'acquisition': {'price_amount': 125000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/02/06/google-acquires-channel-intelligence-to-boost-product-recommendations-and-e-commer-with-users/', 'source_description': 'Google Acquires Channel Intelligence For $125M To Boost Product Referrals And E-Commerce With Users', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 6, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ff'), 'name': 'mFoundry', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/31/mobile-banking-startup-mfoundry-sold-to-fis-for-120m/', 'source_description': 'Mobile Banking And Payment Startup mFoundry Sold To FIS For $120M On $165M Valuation', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'FIS', 'permalink': 'fis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae12'), 'name': 'Nexsan', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/01/02/imation-buys-nexsan-for-120m-to-beef-up-its-enterprise-storage-business/', 'source_description': 'Imation Buys Nexsan For $120M To Beef Up Its SME Enterprise Storage Business', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 2, 'acquiring_company': {'name': 'Imation', 'permalink': 'imation'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b779'), 'name': 'N-able Technologies', 'acquisition': {'price_amount': 120000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130521e95lssb3w&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%3a80%2farticle%3fan%3dDJFVW00020130521e95lssb3w%26from%3dalert%26pid%3d32', 'source_description': ' SolarWinds to Buy N-Able Technologies for $120M ', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'acquiring_company': {'name': 'SolarWinds', 'permalink': 'solarwinds'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298dbf'), 'name': 'CyberCoders', 'acquisition': {'price_amount': 105000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.socaltech.com/onassignment_buys_cybercoders_for____m/s-0052607.html', 'source_description': 'OnAssignment Buys CyberCoders For $105M', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'On Assignment', 'permalink': 'on-assignment'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba81'), 'name': 'Arieso', 'acquisition': {'price_amount': 85000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/03/08/jdsu-buys-arieso-for-85m-in-cash-to-boost-its-mobile-network-business/', 'source_description': 'JDSU Buys Arieso For $85M In Cash To Boost Its Mobile Network Business', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 8, 'acquiring_company': {'name': 'JDS Uniphase Corporation', 'permalink': 'jds-uniphase-corporation'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a536'), 'name': 'Webedia', 'acquisition': {'price_amount': 70000000, 'price_currency_code': 'EUR', 'term_code': None, 'source_url': 'http://www.clipperton.net/transactions/webedia/', 'source_description': 'Webedia, one of the leading digital media groups in France, is acquired by Fimalac Group in a €70m+ transaction.', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 12, 'acquiring_company': {'name': 'Fimalac Group', 'permalink': 'fimalac-group'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a768'), 'name': 'Rhythm NewMedia', 'acquisition': {'price_amount': 65000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.mediapost.com/publications/article/214672/blinkx-acquires-mobile-video-ad-platform-rhythm-ne.html', 'source_description': 'Blinkx Acquires Mobile Video Ad Platform Rhythm NewMedia', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'blinkx', 'permalink': 'blinkx'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bf89'), 'name': 'Estech', 'acquisition': {'price_amount': 60000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131219e9cjrgzyb&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131219e9cjrgzyb%26from%3dalert%26pid%3d32', 'source_description': ' AtriCure to Acquire VC-Backed Endoscopic Technologies in Up To $60M Deal ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'AtriCure', 'permalink': 'atricure'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a382'), 'name': 'Ascribe', 'acquisition': {'price_amount': 57500000, 'price_currency_code': 'GBP', 'term_code': 'cash_and_stock', 'source_url': 'http://www.insidermedia.com/insider/south-east/98476-', 'source_description': 'Ascribe acquired in £57.5m deal', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 13, 'acquiring_company': {'name': 'EMIS', 'permalink': 'emis'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c440'), 'name': 'Qumas', 'acquisition': {'price_amount': 50000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.siliconrepublic.com/business/item/35116-qumas-acquired-by-accelrys', 'source_description': 'Accelrys acquires Qumas in US$50m deal', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'Accelrys', 'permalink': 'accelrys'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297fe7'), 'name': 'Xobni', 'acquisition': {'price_amount': 48000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bizjournals.com/sanjose/news/2013/07/08/yahoos-xobni-deal-priced-at-48-million.html?ana=RSS&s=article_search&utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+bizj_sanjose+%28Silicon+Valley+%2F+San+Jose+Business+Journal%29', 'source_description': \"Marissa Mayer's final price tag for Xobni: $48M, plus promises of stock awards\", 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299172'), 'name': 'Saffron Digital', 'acquisition': {'price_amount': 47000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/najafi-companies-owned-cinram-acquires-video-platform-firm-saffron-digital-222393711.html', 'source_description': ' Najafi Companies Owned Cinram Acquires Video Platform Firm Saffron Digital\\t', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'Cinram International', 'permalink': 'cinram-international'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad53'), 'name': 'Alverix', 'acquisition': {'price_amount': 40000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://ir.safeguard.com/investor-relations/press-releases/press-release-details/2014/Safeguard-Scientifics-Partner-Company-Alverix-Acquired-by-BD/default.aspx', 'source_description': 'Safeguard Scientifics Partner Company Alverix Acquired by BD', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'Becton Dickinson', 'permalink': 'becton-dickinson'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298ee5'), 'name': 'Xerox', 'acquisition': {'price_amount': 32500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.webpronews.com/3d-systems-buys-a-chunk-of-xerox-for-32-5-million-2013-12', 'source_description': ' 3D Systems Buys A Chunk Of Xerox For $32.5 Million ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 18, 'acquiring_company': {'name': '3D Systems', 'permalink': '3d-systems'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297d8a'), 'name': 'Wetpaint', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://allthingsd.com/20131216/viggle-tries-to-bulk-up-its-social-tv-business-by-buying-wetpaint/?mod=atdtweet', 'source_description': ' Viggle Tries to Bulk Up Its Social TV Business by Buying Wetpaint', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 16, 'acquiring_company': {'name': 'Viggle', 'permalink': 'viggle'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298118'), 'name': 'TrustedID', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130708/equifax-buys-identity-protection-startup-trustedid-for-about-30-million/?mod=atdtweet', 'source_description': 'Equifax Buys Identity Protection Startup TrustedID for About $30 Million', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'Equifax', 'permalink': 'equifax'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298e15'), 'name': 'Boxee', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/07/03/streaming-entertainment-startup-boxee-acquired-by-samsung-for-around-30m/', 'source_description': 'Streaming Entertainment Startup Boxee Acquired By Samsung For Around $30M', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 3, 'acquiring_company': {'name': 'Samsung Electronics', 'permalink': 'samsung-electronics'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b354'), 'name': 'CircuLite', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://www.njbiz.com/article/20131202/NJBIZ01/131209988/HeartWare-International-acquires-CircuLite-Inc-for-$30M?utm_content=buffer1b1b1&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'HeartWare International acquires CircuLite Inc. for $30M', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 2, 'acquiring_company': {'name': 'HeartWare International', 'permalink': 'heartware-international'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c679'), 'name': 'Bump Technologies', 'acquisition': {'price_amount': 30000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iphoneincanada.ca/news/google-discontinue-bump-flock-jan-2014/', 'source_description': ' Google to Discontinue Sharing App Bump and Flock on Jan. 31, 2014 ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 31, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba35'), 'name': 'Tell Me More', 'acquisition': {'price_amount': 28000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.tellmemore.com/Press-Releases/Rosetta-Stone-to-Acquire-Leading-International-Lan.aspx', 'source_description': 'Rosetta Stone to Acquire Leading International Language Company Tell Me More, Bolstering Position in Global B2B Market', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 11, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a1e9'), 'name': 'Inmarsat', 'acquisition': {'price_amount': 25000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.bizjournals.com/houston/morning_call/2013/08/rignet-nabs-25m-acquisition.html', 'source_description': 'RigNet nabs $25M acquisition', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 2, 'acquiring_company': {'name': 'RigNet', 'permalink': 'rignet'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b2'), 'name': 'Sendmail', 'acquisition': {'price_amount': 23000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131001e9a1uwekg&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131001e9a1uwekg%26from%3dalert%26pid%3d32', 'source_description': ' Proofpoint Acquires Sendmail for $23M in Cash ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'Proofpoint', 'permalink': 'proofpoint'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c6c5'), 'name': 'Luminus Devices', 'acquisition': {'price_amount': 22000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://ledsmagazine.com/news/10/6/10', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 13, 'acquiring_company': {'name': 'Lightera', 'permalink': 'lightera'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529adad'), 'name': 'NextBus', 'acquisition': {'price_amount': 20600000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130127/nextbus-acquired-by-cubic-for-20-6m/', 'source_description': ' NextBus Acquired by Cubic for $20.6M', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 27, 'acquiring_company': {'name': 'Cubic Transportation Systems', 'permalink': 'cubic-transportation-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529aa84'), 'name': 'Sensory Networks', 'acquisition': {'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/30/intel-to-buy-security-company-sensory-networks-for-20m/', 'source_description': 'Intel To Buy Security Company Sensory Networks For $20M', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'acquiring_company': {'name': 'Intel', 'permalink': 'intel'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298543'), 'name': 'SignalDemand', 'acquisition': {'price_amount': 13500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131218e9cipfjwq&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131218e9cipfjwq%26from%3dalert%26pid%3d32', 'source_description': ' Real-Time Data Company SignalDemand Acquired for $13.5M ', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 18, 'acquiring_company': {'name': 'PROS Holdings', 'permalink': 'pros-holdings'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298763'), 'name': 'Vivity Labs', 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techvibes.com/blog/vivity-labs-acquired-by-rosetta-stone-2013-12-19', 'source_description': \"Vancouver's Vivity Labs Acquired by Rosetta Stone for $12 Million in Cash\", 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a9a8'), 'name': 'Better Place', 'acquisition': {'price_amount': 12000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://cleantechnica.com/2013/07/12/better-place-sold-to-sunrise-group-for-12-million/?utm_source=RSG+RSS&utm_medium=twitter&utm_campaign=Feed%3A+IM-cleantechnica+%28CleanTechnica%29', 'source_description': 'Better Place Sold To Sunrise Group For $12 Million', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 12, 'acquiring_company': {'name': 'Sunrise Group', 'permalink': 'sunrise-group'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298789'), 'name': 'MediaWhiz', 'acquisition': {'price_amount': 10000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.globes.co.il/serveen/globes/docview.asp?did=1000812717&fid=1725', 'source_description': 'Matomy acquires US digital media agency MediaWhiz for $10m', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': None, 'acquiring_company': {'name': 'Matomy Media Group', 'permalink': 'matomy-media-group'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752989d3'), 'name': 'FuGen Solutions', 'acquisition': {'price_amount': 7500000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.vccircle.com/news/others/2013/05/14/cloud-firm-8kmiles-buys-fugen-75m-looking-more-acquisitions-2013', 'source_description': 'Cloud firm 8KMiles buys FuGen for $7.5M; looking for more acquisitions in 2013', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': '8KMiles Software Services', 'permalink': '8kmiles-software-services'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529add9'), 'name': 'Advanced Mobile Solutions', 'acquisition': {'price_amount': 2500000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.businesswire.com/news/home/20130930006623/en/Autobytel-Acquires-Advanced-Mobile-Provide-Leading-Mobile', 'source_description': ' Autobytel Acquires Advanced Mobile to Provide Leading Mobile Capabilities to Automotive Manufacturers and Dealerships ', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 30, 'acquiring_company': {'name': 'Autobytel.com', 'permalink': 'autobytel-com-inc'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b4fe'), 'name': 'Republic Project', 'acquisition': {'price_amount': 1400000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/10/07/dg-acquires-republic-project/', 'source_description': 'DG Acquires Republic Project, A Google Ventures-Backed Ad Startup, For $1.4M', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 7, 'acquiring_company': {'name': 'DG', 'permalink': 'dg'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a229'), 'name': 'Citizenside', 'acquisition': {'price_amount': 30000, 'price_currency_code': 'EUR', 'term_code': 'cash', 'source_url': 'http://www.citizenside.com/en/photos/spot-news/2013-07-11/81347/newzulu-com-acquires-citizenside-com.html#f=0/748313', 'source_description': 'Newzulu.com acquires Citizenside.com', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Newzulu, Inc.', 'permalink': 'newzulu-inc'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dbf'), 'name': 'blogTV', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/13/younow-buys-blogtv/', 'source_description': 'Live Social Video Network YouNow Acquires Streaming Service BlogTV', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 13, 'acquiring_company': {'name': 'YouNow', 'permalink': 'younow'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297ddd'), 'name': 'Mashery', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130417/intel-acquires-api-manager-mashery/', 'source_description': 'Intel Acquires API Manager Mashery', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 17, 'acquiring_company': {'name': 'Intel', 'permalink': 'intel'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e06'), 'name': 'adBrite', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/20/sitescout-acquires-ip-developed-by-defunct-ad-exchange-adbrite/', 'source_description': 'SiteScout Acquires IP Developed By Defunct Ad Exchange adBrite', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 20, 'acquiring_company': {'name': 'Site Scout', 'permalink': 'site-scout'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e5a'), 'name': 'Grockit', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/07/kaplan-acquires-grockit-platform-test-prep-assets.html', 'source_description': 'Kaplan Acquires Grockit Platform And Test Prep Assets', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 31, 'acquiring_company': {'name': 'Kaplan', 'permalink': 'kaplan'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e5e'), 'name': 'Zenfolio', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://corporate.art.com/media/media_releases_20130107.html', 'source_description': 'Art.com Inc. Acquires Zenfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'Art.com', 'permalink': 'art-com'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297e64'), 'name': 'LongJump', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/software-ag-acquires-cloud-platform-152000989.html', 'source_description': 'Software AG acquires Cloud Platform vendor LongJump', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f00'), 'name': 'Docstoc', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/04/when-good-things-happen-to-good-people/', 'source_description': 'Intuit Agrees To Acquire Small Business Document Startup Docstoc', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 4, 'acquiring_company': {'name': 'Intuit', 'permalink': 'intuit'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f3d'), 'name': 'LocaModa', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwired.com/press-release/monster-media-acquires-locamoda-plans-to-bring-social-media-and-dooh-closer-together-1815896.htm', 'source_description': 'LocaModa Acquired', 'acquired_year': 2013, 'acquired_month': None, 'acquired_day': None, 'acquiring_company': {'name': 'monster media', 'permalink': 'monster-media'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297f64'), 'name': 'Tutor', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/07/iac-acquires-tutor-com-to-add-an-education-string-to-its-consumer-web-portfolio/', 'source_description': 'IAC Acquires Tutor.com To Add An Education String To Its Consumer Web Portfolio', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'IAC', 'permalink': 'iac'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529801e'), 'name': 'Zimbra', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/821099/telligent-acquires-zimbra-vmware', 'source_description': 'Telligent Acquires Zimbra from VMware', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 15, 'acquiring_company': {'name': 'Telligent Systems', 'permalink': 'telligentsystems'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298046'), 'name': 'AdReady', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131001e9a1q9mhi&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131001e9a1q9mhi%26from%3dalert%26pid%3d32', 'source_description': 'CPXi Acquires AdReady ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 1, 'acquiring_company': {'name': 'CPXi', 'permalink': 'cpxi'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529805e'), 'name': 'JackBe', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020130823e98nq2m0z&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020130823e98nq2m0z%26from%3dalert%26pid%3d32', 'source_description': 'Software AG Acquires JackBe to Visualize Data ', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 22, 'acquiring_company': {'name': 'Software AG', 'permalink': 'software-ag'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298067'), 'name': 'Rollbase', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://corporateblog.progress.com/2013/06/deep-pacific-introducing-platform-connected-apps/', 'source_description': 'Going Deep with Pacific – Introducing Our New Platform for Connected Apps', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 10, 'acquiring_company': {'name': 'Progress Software', 'permalink': 'progress-software'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529806b'), 'name': 'Marakana', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/13/twitter-buys-open-source-training-company-markana-to-power-new-twitter-university-for-engineers/', 'source_description': 'Twitter Buys Open Source Training Company Markana To Power New “Twitter University” For Engineers', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Twitter', 'permalink': 'twitter'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752980f7'), 'name': 'Mogreet', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/20/mobile-payment-startup-payvia-buys-mogreet-to-add-messaging-based-marketing-to-its-payment-platform/', 'source_description': 'Mobile Payment Startup Payvia Buys Mogreet To Add Messaging-Based Marketing To Its Payment Platform', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'payvia', 'permalink': 'payvia'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529812b'), 'name': 'MyPublisher', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130430005541/en/Shutterfly-Acquires-MyPublisher', 'source_description': 'Shutterfly Inc. Acquires MyPublisher', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 30, 'acquiring_company': {'name': 'Shutterfly', 'permalink': 'shutterfly'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298156'), 'name': 'Shipwire', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/28/ingram-micro-buys-shipwire-the-cloud-logistics-and-supply-chain-management-platform/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29', 'source_description': 'Ingram Micro Buys Shipwire, The Cloud Logistics And Supply Chain Management Platform', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 29, 'acquiring_company': {'name': 'Ingram Micro', 'permalink': 'ingram-micro'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752981c7'), 'name': 'Outspark', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://en.gamigo.com/corporate/2013/02/gamigo-acquires-the-north-american-license-for-fiesta-online-from-us-publisher-outspark/', 'source_description': 'gamigo acquires the North American license for Fiesta Online from US publisher Outspark', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 8, 'acquiring_company': {'name': 'gamigo', 'permalink': 'gamigo'}}}, {'_id': ObjectId('52cdef7c4bab8bd6752981c9'), 'name': 'Livemocha', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/779341/rosetta-stone-acquires-online-language-company-livemocha', 'source_description': 'ROSETTA STONE ACQUIRES ONLINE LANGUAGE COMPANY LIVEMOCHA', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 2, 'acquiring_company': {'name': 'Rosetta Stone', 'permalink': 'rosetta-stone'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529839c'), 'name': 'Camlink', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 25, 'acquiring_company': {'name': 'Kinoflix', 'permalink': 'kinoflix'}}}, {'_id': ObjectId('52cdef7c4bab8bd67529850d'), 'name': 'Rondee', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/06/12/yahoos-acquisition-spree-continues-with-conference-calling-startup-rondee/', 'source_description': 'Yahoo’s Shopping Spree Continues With Conference Calling Startup Rondee', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 13, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298538'), 'name': 'Star Analytics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/755307/ibm-acquire-star-analytics-inc-', 'source_description': 'IBM to Acquire Star Analytics, Inc.', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298548'), 'name': 'GasBuddy', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/767738/opis-acquires-gasbuddy', 'source_description': 'OPIS Acquires GasBuddy', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 1, 'acquiring_company': {'name': 'Oil Price Information Service (OPIS)', 'permalink': 'oil-price-information-service-opis'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298566'), 'name': 'Snipshot', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 1, 'acquiring_company': {'name': 'Ark', 'permalink': 'ark'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298643'), 'name': 'WebCollage', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://wiki.answers.com/page/press/18416524', 'source_description': 'Answers Acquires SaaS Platform Webcollage to Expand Product Offerings to Brands and Retailers', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'acquiring_company': {'name': 'Answers Corporation', 'permalink': 'answers'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298654'), 'name': 'Trendrr', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/28/twitter-continues-to-beef-up-its-social-tv-efforts-with-trendrr-acquisition/', 'source_description': 'With Trendrr Acquisition, Twitter Continues To Beef Up Its Social TV Efforts', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 28, 'acquiring_company': {'name': 'Twitter', 'permalink': 'twitter'}}}, {'_id': ObjectId('52cdef7c4bab8bd675298662'), 'name': 'Weplay', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/21/teamsnap-online-sports-management-platform-acquires-weplay-for-an-undisclosed-amount/', 'source_description': 'TeamSnap Online Sports Management Platform Acquires Weplay For An Undisclosed Amount', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 21, 'acquiring_company': {'name': 'TeamSnap', 'permalink': 'teamsnap'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298936'), 'name': 'Virgin Media', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130205007048/en/Liberty-Global-Acquire-Virgin-Media', 'source_description': 'Liberty Global to Acquire Virgin Media', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 5, 'acquiring_company': {'name': 'Liberty Global', 'permalink': 'liberty-global'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a3b'), 'name': 'CitizenHawk', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.btobonline.com/article/20130911/MANAGEMENT07/309119997/wolters-kluwer-corporate-legal-services-buys-citizenhawk', 'source_description': 'btobonline.com', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 11, 'acquiring_company': {'name': 'Wolters Kluwer Corporate Legal Services', 'permalink': 'wolters-kluwer-corporate-legal-services'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a5f'), 'name': 'Infinia', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131121e9blpb28p&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131121e9blpb28p%26from%3dalert%26pid%3d32', 'source_description': 'Qnergy Acquires Infinia Assets ', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 21, 'acquiring_company': {'name': 'Qnergy', 'permalink': 'qnergy'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a62'), 'name': 'Newsweek', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/03/ibt-media-buys-newsweek/', 'source_description': 'IBT Media Buys Newsweek From IAC', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 5, 'acquiring_company': {'name': 'IBT Media', 'permalink': 'ibt-media-inc'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298a80'), 'name': 'Wavemaker Software', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.cnbc.com/id/100699359?utm_content=buffer74a57&utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer', 'source_description': 'Pramati Acquires WaveMaker Assets from VMware', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 2, 'acquiring_company': {'name': 'Pramati Technologies', 'permalink': 'pramati-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298c0a'), 'name': 'Handmark', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nasdaq.com/article/sprint-nextel-buys-handmark-and-its-subsidiary-onelouder-apps---quick-facts-20130520-00621', 'source_description': 'Sprint Nextel Buys Handmark And Its Subsidiary OneLouder Apps - Quick Facts', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 20, 'acquiring_company': {'name': 'Sprint Nextel', 'permalink': 'sprint-nextel'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298d41'), 'name': 'Sense Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2014/01/06/yp-acquires-sense-networks/', 'source_description': 'In Its First Acquisition, YP Buys Mobile Ad Company Sense Networks', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': 6, 'acquiring_company': {'name': 'YP', 'permalink': 'yp-2'}}}, {'_id': ObjectId('52cdef7d4bab8bd675298d9d'), 'name': 'Bestofmedia Group', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/07/02/techmedia-network-buys-bestofmedia-group-and-steps-up-content-commerce-integration/', 'source_description': 'TechMedia Network Buys Bestofmedia Group And Steps Up Content-Commerce Integration', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 1, 'acquiring_company': {'name': 'TechMedia Network', 'permalink': 'techmedianetwork'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299076'), 'name': 'National Transcript Center', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/hobsons-acquires-national-transcript-center-from-pearson-215089041.html', 'source_description': 'Hobsons Acquires National Transcript Center from Pearson', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Hobsons', 'permalink': 'hobsons'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299189'), 'name': 'Digital Sandbox', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/haystax-technology-acquires-digital-sandbox-inc-203218531.html', 'source_description': 'Haystax Technology Acquires Digital Sandbox, Inc.', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 16, 'acquiring_company': {'name': 'Haystax Technology', 'permalink': 'haystax-technology'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752991f3'), 'name': 'Epocrates', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businesswire.com/news/home/20130107005767/en/athenahealth-Acquire-Mobile-Health-Leader-Epocrates', 'source_description': 'athenahealth to Acquire Mobile Health Leader Epocrates', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 7, 'acquiring_company': {'name': 'athenahealth', 'permalink': 'athenahealth'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995b5'), 'name': 'CyOptics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130411/chip-maker-avago-to-buy-cyoptics-for-400-million/', 'source_description': 'Chip Maker Avago to Buy CyOptics for $400 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752995ff'), 'name': 'travelmob', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/07/17/homeaway-buys-singapore-startup-travelmob-to-enter-asia-pacific/', 'source_description': 'HomeAway Buys Singapore Startup Travelmob To Enter Asia-Pacific', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 17, 'acquiring_company': {'name': 'HomeAway', 'permalink': 'homeaway'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752996ad'), 'name': 'Jumptap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/08/13/millennial-acquires-jumptap/', 'source_description': ' Main Event Page news Millennial Media To Acquire Mobile Ad Company Jumptap In ‘Predominantly’ Stock-Based Deal', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Millennial Media', 'permalink': 'millennial-media'}}}, {'_id': ObjectId('52cdef7d4bab8bd6752996e6'), 'name': 'TradeCard', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.gtnexus.com/gt-nexus-and-tradecard-complete-merger-commence-operations-as-gt-nexus/', 'source_description': 'GT Nexus and TradeCard Complete Merger; Commence Operations as GT Nexus', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': None, 'acquiring_company': {'name': 'GT Nexus', 'permalink': 'gt-nexus'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299782'), 'name': 'Intela', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/09/xl-marketing-the-direct-marketing-company-co-founded-by-john-sculley-buys-uk-rival-intela/', 'source_description': 'XL Marketing, The Direct Marketing Company Co-Founded By John Sculley, Buys UK Rival Intela', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'XL Marketing', 'permalink': 'xl-marketing'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299884'), 'name': 'AUPEO!', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.aupeo.com/downloads/press/AUPEO_Panasonic_Purchase.pdf', 'source_description': 'Panasonic Acquires Audio Streaming Platform Provider Aupeo GmbH', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Panasonic', 'permalink': 'panasonic'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529989b'), 'name': 'TeleTech', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/827212/webmetro-announces-agreement-be-acquired-teletech', 'source_description': 'WebMetro Announces Agreement to be Acquired by TeleTech', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 30, 'acquiring_company': {'name': 'WebMetro', 'permalink': 'webmetro'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529993f'), 'name': 'CyOptics', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20130411/chip-maker-avago-to-buy-cyoptics-for-400-million/', 'source_description': 'Chip Maker Avago to Buy CyOptics for $400 Million', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 11, 'acquiring_company': {'name': 'Avago Technologies', 'permalink': 'avago-technologies'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299989'), 'name': 'travelmob', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/07/17/homeaway-buys-singapore-startup-travelmob-to-enter-asia-pacific/', 'source_description': 'HomeAway Buys Singapore Startup Travelmob To Enter Asia-Pacific', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 17, 'acquiring_company': {'name': 'HomeAway', 'permalink': 'homeaway'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a37'), 'name': 'Jumptap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2013/08/13/millennial-acquires-jumptap/', 'source_description': ' Main Event Page news Millennial Media To Acquire Mobile Ad Company Jumptap In ‘Predominantly’ Stock-Based Deal', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 13, 'acquiring_company': {'name': 'Millennial Media', 'permalink': 'millennial-media'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299a70'), 'name': 'TradeCard', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.gtnexus.com/gt-nexus-and-tradecard-complete-merger-commence-operations-as-gt-nexus/', 'source_description': 'GT Nexus and TradeCard Complete Merger; Commence Operations as GT Nexus', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': None, 'acquiring_company': {'name': 'GT Nexus', 'permalink': 'gt-nexus'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299b0c'), 'name': 'Intela', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/09/xl-marketing-the-direct-marketing-company-co-founded-by-john-sculley-buys-uk-rival-intela/', 'source_description': 'XL Marketing, The Direct Marketing Company Co-Founded By John Sculley, Buys UK Rival Intela', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 9, 'acquiring_company': {'name': 'XL Marketing', 'permalink': 'xl-marketing'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c0e'), 'name': 'AUPEO!', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'https://www.aupeo.com/downloads/press/AUPEO_Panasonic_Purchase.pdf', 'source_description': 'Panasonic Acquires Audio Streaming Platform Provider Aupeo GmbH', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Panasonic', 'permalink': 'panasonic'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c25'), 'name': 'TeleTech', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/827212/webmetro-announces-agreement-be-acquired-teletech', 'source_description': 'WebMetro Announces Agreement to be Acquired by TeleTech', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 30, 'acquiring_company': {'name': 'WebMetro', 'permalink': 'webmetro'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299c26'), 'name': 'nCircle Network Security', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/771440/tripwire-inc-acquires-ncircle', 'source_description': 'Tripwire, Inc. Acquires nCircle', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 11, 'acquiring_company': {'name': 'Tripwire', 'permalink': 'tripwire'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299cc8'), 'name': 'AfterNic', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/19/godaddy-buys-afternic-to-beef-up-its-domain-registry-marketplace/', 'source_description': 'GoDaddy Buys Afternic To Beef Up Its Domain Registry Marketplace', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 19, 'acquiring_company': {'name': 'GoDaddy', 'permalink': 'godaddy'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299d9d'), 'name': 'Twittertise', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/797118/italk-inc-signs-letter-intent-acquire-telecommunications-company-itg-inc-', 'source_description': 'ITALK INC. SIGNS LETTER OF INTENT TO ACQUIRE TELECOMMUNICATIONS COMPANY ITG INC.', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'iTalk', 'permalink': 'italk'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299dbe'), 'name': 'Wiggio', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/08/flush-with-80m-desire2learn-buys-anti-sharepoint-for-students-platform-wiggio-its-2nd-acquisition-in-2-months/', 'source_description': 'Flush With $80M, Desire2Learn Buys ‘Anti-Sharepoint For Students’ Platform Wiggio, Its 2nd Acquisition In 2 Months', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 8, 'acquiring_company': {'name': 'Desire2Learn', 'permalink': 'desire2learn'}}}, {'_id': ObjectId('52cdef7d4bab8bd675299e12'), 'name': 'Current Communications Group', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.greentechmedia.com/articles/read/smart-grid-ma-watch-current-acquired-by-ormazabal', 'source_description': 'Smart Grid M&A Watch: Current Acquired by Ormazabal', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 7, 'acquiring_company': {'name': 'Ormazabal', 'permalink': 'ormazabal'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a053'), 'name': 'CarZen', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': '', 'source_description': 'Company Source', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 13, 'acquiring_company': {'name': 'Liberty Mutual Insurance Company', 'permalink': 'liberty-mutual-insurance-company'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a0b8'), 'name': 'Games2Win', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.nextbigwhat.com/games2win-acquires-backyard-game-factorry-297/', 'source_description': 'Games2win Acquires Delhi Based Game Studio Backyard Game FactorRy', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'acquiring_company': {'name': 'Backyard Game FactorRy', 'permalink': 'backyard-game-factorry'}}}, {'_id': ObjectId('52cdef7d4bab8bd67529a1a3'), 'name': 'Nullsoft', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2014/01/01/aol-sells-winamp-and-shoutcast-music-services-to-online-radio-aggregator-radionomy/', 'source_description': 'AOL Sells Winamp And Shoutcast Music Services To Online Radio Aggregator Radionomy', 'acquired_year': 2014, 'acquired_month': 1, 'acquired_day': None, 'acquiring_company': {'name': 'Radionomy', 'permalink': 'radionomy'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a33a'), 'name': 'Geomagic', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/3d-systems-acquire-geomagic-141500289.html', 'source_description': '3D Systems to Acquire Geomagic', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 3, 'acquiring_company': {'name': '3D Systems', 'permalink': '3d-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a369'), 'name': 'Ptch', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://allthingsd.com/20131203/yahoo-snags-dreamworks-incubated-mobile-video-app-ptch/?mod=atdtweet', 'source_description': 'Yahoo Snags DreamWorks-Incubated Mobile Video App Ptch', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 3, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a390'), 'name': 'Imagine Communications', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.fiercecable.com/press-releases/harris-broadcast-acquire-imagine-communications', 'source_description': 'Harris Broadcast to Acquire Imagine Communications', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 4, 'acquiring_company': {'name': 'Harris Broadcast', 'permalink': 'harris-broadcast'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a4b2'), 'name': 'HyperWeek', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://theknowledgetour.com/acquisition-en', 'source_description': 'Knowledge Plaza announcement', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 1, 'acquiring_company': {'name': 'Knowledge Plaza', 'permalink': 'knowledge-plaza'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a5ad'), 'name': 'hybris', 'acquisition': {'price_amount': None, 'price_currency_code': 'EUR', 'term_code': None, 'source_url': 'http://www.computing.co.uk/ctg/news/2273233/sap-to-acquire-swiss-ecommerce-firm-hybris-in-gbp650m-deal?utm_source=Twitter&utm_medium=Social&utm_campaign=Twitterfeed&utm_content=Computing_News', 'source_description': 'SAP to acquire Swiss e-commerce firm Hybris in £650m deal ', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 6, 'acquiring_company': {'name': 'SAP', 'permalink': 'sap'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a6e7'), 'name': 'WhosCall', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techinasia.com/korean-web-giant-naver-acquires-taiwanese-startup-gogolook/', 'source_description': 'Korean web giant Naver acquires makers of Whoscall', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 9, 'acquiring_company': {'name': 'NHN Corp. (Naver)', 'permalink': 'naver'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a720'), 'name': 'Quantivo', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/aggregate-knowledge-acquires-quantivo-accelerate-130500235.html', 'source_description': 'Aggregate Knowledge Acquires Quantivo to Accelerate Platform Innovation', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 1, 'acquiring_company': {'name': 'Aggregate Knowledge', 'permalink': 'aggregateknowledge'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a741'), 'name': 'Arc90', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/24/sfx-buys-readability-developer-arc90-fame-house-and-tunezy-to-boost-its-electronic-and-live-dance-music-business/', 'source_description': 'SFX Buys Readability Developer Arc90, Fame House and Tunezy To Give Its Electronic Dance Music Business A Digital Content Spin', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 24, 'acquiring_company': {'name': 'SFX Entertainment', 'permalink': 'sfx-entertainment'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a84f'), 'name': 'Oberon Media', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.iwin.com/corp/press/iwininc-announces-the-acquisition-of-the-assets-of-oberon-media.html', 'source_description': 'iWin Inc announces the acquisition of the assets of Oberon-Media (June 1, 2013)', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 1, 'acquiring_company': {'name': 'iWin', 'permalink': 'iwin'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529a944'), 'name': 'DailyLit', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/13/plympton-acquires-dailylit/', 'source_description': 'Plympton Acquires DailyLit In A Serialized Fiction Team-Up, Susan Danziger And Albert Wenger Become Investors', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 13, 'acquiring_company': {'name': 'Plympton', 'permalink': 'plympton'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529aaaf'), 'name': 'Socialbomb', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.businessinsider.com/refinery29-acquires-socialbomb-2013-5', 'source_description': 'Fashion Media Company Refinery29 Acquires Fellow First Round Capital Startup, Socialbomb', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 28, 'acquiring_company': {'name': 'Refinery29', 'permalink': 'refinery29'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ab44'), 'name': 'ParAccel', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/25/actian-buys-amazon-funded-paraccel-as-april-buying-spree-continues/', 'source_description': 'Actian Buys Amazon-Funded ParAccel As April Buying Spree Continues', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 26, 'acquiring_company': {'name': 'Actian', 'permalink': 'actian'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ac0c'), 'name': 'VML', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-10-14/wpp-is-said-to-purchase-digital-ad-agency-in-chinese-expansion.html', 'source_description': 'WPP Purchases Digital-Advertising Agency in Chinese Expansion', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 15, 'acquiring_company': {'name': 'WPP', 'permalink': 'wpp'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad7f'), 'name': 'HYFN', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://finance.yahoo.com/news/lin-media-acquires-majority-ownership-203000313.html', 'source_description': 'Yahoo! Finance', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 3, 'acquiring_company': {'name': 'LIN Media (TVL)', 'permalink': 'lin-media-tvl'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ad9e'), 'name': 'Neuralitic Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/23/guavus-buys-mobile-analytics-and-data-intelligence-company-neuralitic-systems/', 'source_description': 'Guavus Buys Mobile Analytics And Data Intelligence Company Neuralitic Systems', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 23, 'acquiring_company': {'name': 'Guavus', 'permalink': 'guavus'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae57'), 'name': 'Echopass Corporation', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.genesyslab.com/news-and-events/press-releases/genesys-to-acquire-echopass.aspx', 'source_description': 'Genesys To Acquire Echopass', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 8, 'acquiring_company': {'name': 'Genesys', 'permalink': 'genesys'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ae6e'), 'name': 'TRAFFIQ', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://globenewswire.com/news-release/2013/11/12/589158/10057462/en/Talus-Holdings-Acquires-Digital-Media-Company-TRAFFIQ.html', 'source_description': 'Talus Holdings Acquires Digital Media Company, TRAFFIQ', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 12, 'acquiring_company': {'name': 'Talus Holdings', 'permalink': 'talus-holdings-deleted'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af0d'), 'name': 'VirtuOz', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/01/10/in-our-inbox-a-memo-that-says-nuance-has-bought-virtuoz-to-ramp-up-its-enterprise-services/', 'source_description': 'Confirmed: Nuance Has Bought Virtual Assistant Specialist VirtuOz To Ramp Up Its Enterprise Services', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 10, 'acquiring_company': {'name': 'Nuance Communications', 'permalink': 'nuance'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af1f'), 'name': 'Shutl', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/10/22/ebay-acquires-uk-startup-shutl-to-change-the-ecommerce-game-with-one-hour-delivery/', 'source_description': 'eBay Acquires UK Startup Shutl To Change The Ecommerce Game With One Hour Delivery', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 22, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af3c'), 'name': 'Socialize', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/192001/sharethis-buys-socialize-inks-23m-series-c/', 'source_description': 'ShareThis Buys Socialize, Inks $23M Series C', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 20, 'acquiring_company': {'name': 'ShareThis', 'permalink': 'sharethis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529af67'), 'name': 'Cadence Design Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techweekeurope.co.uk/news/arm-acquires-cadence-display-tech-126324?utm_source=twitterfeed&utm_medium=twitter', 'source_description': 'ARM Acquires Cadence Display Tech For Mobile Multimedia', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'ARM', 'permalink': 'arm'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529afe1'), 'name': 'TopCoder', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/17/appirio-buys-topcoder-to-add-more-crowdsourcing-and-500k-developers-and-designers-to-its-cloudspokes-network/?utm_source=twitterfeed&utm_medium=twitter&utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29&utm_content=crowdfund', 'source_description': 'Appirio Buys TopCoder To Add More Crowdsourcing, And 500K Developers And Designers, To Its CloudSpokes Network', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 17, 'acquiring_company': {'name': 'Appirio', 'permalink': 'appirio'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529afe6'), 'name': 'Strangeloop Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.radware.com/newsevents/pressrelease.aspx?id=1630971', 'source_description': 'Radware Acquires Strangeloop Networks, Leader in Web-Performance Optimization (WPO) Solutions for e-commerce and Enterprise Applications', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': None, 'acquiring_company': {'name': 'Radware', 'permalink': 'radware'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b1e6'), 'name': 'Enclarity', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/842676/lexisnexis-acquires-enclarity', 'source_description': 'LexisNexis® Acquires Enclarity', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 11, 'acquiring_company': {'name': 'LexisNexis', 'permalink': 'lexisnexis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b1f0'), 'name': 'Mendeley', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/08/confirmed-elsevier-has-bought-mendeley-for-69m-100m-to-expand-open-social-education-data-efforts/', 'source_description': 'Elsevier Has Bought Mendeley For $69M-$100M To Expand Its Open, Social Education Data Efforts', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 8, 'acquiring_company': {'name': 'Elsevier', 'permalink': 'elsevier'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b283'), 'name': 'Pixmac', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/05/pond5-acquires-pixmac/', 'source_description': 'Media Marketplace Pond5 Acquires Stock Photo Startup Pixmac To Expand Its International Presence', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 5, 'acquiring_company': {'name': 'Pond5', 'permalink': 'pond5'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b325'), 'name': 'Legacy Locker', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/11/20/passwordbox-acquires-digital-afterlife-service-legacy-locker/', 'source_description': 'PasswordBox Acquires Digital Afterlife Service Legacy Locker', 'acquired_year': 2013, 'acquired_month': 11, 'acquired_day': 20, 'acquiring_company': {'name': 'PasswordBox', 'permalink': 'passwordbox'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b651'), 'name': 'CheapCheapCheap', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': '', 'source_description': '', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 18, 'acquiring_company': {'name': 'Undisclosed Strategic Corporate Investor', 'permalink': 'undisclosed-strategic-corporate-investor'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b6a8'), 'name': 'EnergyHub', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://in.finance.yahoo.com/news/alarm-com-announces-acquisition-energyhub-140000929.html', 'source_description': 'Alarm.com Announces Its Acquisition of EnergyHub', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 10, 'acquiring_company': {'name': 'Alarm.com', 'permalink': 'alarm-com'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b74d'), 'name': 'Solera Networks', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/blue-coat-buys-solera-networks-to-beef-up-in-big-data-security/', 'source_description': 'Blue Coat Buys Intel-Backed Solera Networks To Beef Up In Big Data, Encrypted Data Security', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'acquiring_company': {'name': 'Blue Coat Systems', 'permalink': 'blue-coat-systems'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b80c'), 'name': 'Instapaper', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/04/25/betaworks-instapaper/', 'source_description': 'Digg Owner Betaworks Buys Instapaper To Go Big On Social Reading And Discovery', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 25, 'acquiring_company': {'name': 'betaworks', 'permalink': 'betaworks'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529b8c0'), 'name': 'Infochimps', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.xconomy.com/texas/2013/08/07/infochimps-ceo-cscs-purchase-plays-up-strengths-of-big-data/', 'source_description': 'Infochimps CEO: CSC’s Purchase Plays Up Strengths of Big Data, Cloud', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 7, 'acquiring_company': {'name': 'CSC', 'permalink': 'csc'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba51'), 'name': 'Wefollow', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/07/identity-platform-about-me-buys-wefollow-to-boost-interest-search/', 'source_description': 'Identity Platform about.me Buys Wefollow To Boost “Interest” Search', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 8, 'acquiring_company': {'name': 'about.me', 'permalink': 'aboutme'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529ba60'), 'name': 'Fotomoto', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.fotomoto.com/home/team', 'source_description': 'Meet the Team', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': None, 'acquiring_company': {'name': 'Bay Photo', 'permalink': 'bay-photo'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bbbe'), 'name': 'gdgt', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/02/13/aol-buys-gdgt-gives-you-a-chance-to-delete-your-account-if-this-freaks-you-out/', 'source_description': 'AOL buys GDGT to beef up engineering and design — gives you a chance to delete your account ', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 13, 'acquiring_company': {'name': 'AOL', 'permalink': 'aol'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bce0'), 'name': 'Zipcar', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://venturebeat.com/2013/01/02/avis-buys-zipcar/', 'source_description': 'Car rental biz Avis to acquire Zipcar for $500M cash', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 2, 'acquiring_company': {'name': 'Avis', 'permalink': 'avis'}}}, {'_id': ObjectId('52cdef7e4bab8bd67529bd2b'), 'name': 'Hara', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.verisae.com/verisae-acquires-hara-expands-its-energy-and-sustainability-software-platform/', 'source_description': 'Verisae Acquires Hara, Expands its Energy and Sustainability Software Platform', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 8, 'acquiring_company': {'name': 'Verisae', 'permalink': 'verisae'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bd67'), 'name': 'Urbancode', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/787778/ibm-acquires-urbancode-help-businesses-rapidly-deliver-mobile-cloud-big-data-and-social', 'source_description': 'IBM ACQUIRES URBANCODE TO HELP BUSINESSES RAPIDLY DELIVER MOBILE, CLOUD, BIG DATA AND SOCIAL SOFTWARE', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 22, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bd99'), 'name': 'Blip', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/08/21/blip-maker-studios/', 'source_description': 'Maker Studios In Deal To Buy Blip As It Works To Reach More Screens', 'acquired_year': 2013, 'acquired_month': 8, 'acquired_day': 21, 'acquiring_company': {'name': 'Maker Studios', 'permalink': 'maker-studios'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529bfac'), 'name': 'Bolsa de Mulher', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.prnewswire.com/news-releases/batanga-media-announces-the-acquisition-of-leading-brazilian-womens-lifestyle-publisher-bolsa-de-mulher-191990361.html', 'source_description': \"Batanga Media Announces the Acquisition of Leading Brazilian Women's Lifestyle Publisher Bolsa De Mulher\", 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 20, 'acquiring_company': {'name': 'Batanga Media', 'permalink': 'batanga'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c0d0'), 'name': 'UTOPY', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.reuters.com/article/2013/01/29/ca-genesys-idUSnBw5KGqSBa+136+BSW20130129', 'source_description': 'Genesys Agrees to Acquire UTOPY in a Deal that Transforms Customer Service with Actionable Customer Interaction Analytics', 'acquired_year': 2013, 'acquired_month': 1, 'acquired_day': 29, 'acquiring_company': {'name': 'Genesys', 'permalink': 'genesys'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c141'), 'name': 'Makani Power', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/05/22/google-x-acquires-makani-power-and-its-airborne-wind-turbines/', 'source_description': 'Google X Acquires Makani Power And Its Airborne Wind Turbines', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 22, 'acquiring_company': {'name': 'Google[x]', 'permalink': 'google-x'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ca'), 'name': 'Enpirion', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://evertiq.com/news/24375', 'source_description': 'Altera acquires Enpirion', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 14, 'acquiring_company': {'name': 'Altera', 'permalink': 'altera'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c1ce'), 'name': 'Whitevector', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.m-brain.com/news/m-brain-has-acquired-social-media-monitoring-company-whitevector-oy/', 'source_description': 'M-Brain acquires Whitevector', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': None, 'acquiring_company': {'name': 'M-Brain', 'permalink': 'm-brain'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c285'), 'name': 'Aveksa', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/emc-acquires-aveksa-inc-leading-provider-of-business-driven-identity-and-access-management-solutions-2013-07-08', 'source_description': 'Aveksa Joins RSA Security Division to Help Transform Authentication and Identity Management Across Enterprise, Mobile and Cloud Environments', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'EMC', 'permalink': 'emc'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c2b2'), 'name': 'Antenna Software', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://pevc.dowjones.com/article?an=DJFVW00020131011e9abo2pao&from=alert&pid=32&ReturnUrl=http%3a%2f%2fpevc.dowjones.com%2farticle%3fan%3dDJFVW00020131011e9abo2pao%26from%3dalert%26pid%3d32', 'source_description': 'Pegasystems Acquires Mobile-App Tools Maker Antenna Software, a Dot-Com Survivor ', 'acquired_year': 2013, 'acquired_month': 10, 'acquired_day': 11, 'acquiring_company': {'name': 'Pegasystems', 'permalink': 'pegasystems'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c333'), 'name': 'StreamBase Systems', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://streambase.typepad.com/streambase_stream_process/2013/06/mark-palmer-our-ceo-announces-the-acquisition-of-streambase-systems-by-tibco-software-.html', 'source_description': 'Mark Palmer, our CEO, announces the acquisition of StreamBase Systems by TIBCO Software', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 11, 'acquiring_company': {'name': 'TIBCO Software', 'permalink': 'tibco-software-inc'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c3f1'), 'name': 'SoftLayer', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.bloomberg.com/news/2013-06-04/ibm-to-acquire-cloud-computing-provider-softlayer-technologies.html', 'source_description': ' IBM to Buy Cloud-Computing Firm SoftLayer for $2 Billion', 'acquired_year': 2013, 'acquired_month': 6, 'acquired_day': 5, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c4ee'), 'name': 'Liquavista', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/05/13/amazon-acquires-samsung-color-display-unit-liquavista/', 'source_description': 'Amazon acquires Samsung color display unit Liquavista', 'acquired_year': 2013, 'acquired_month': 5, 'acquired_day': 13, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c572'), 'name': 'Acme Packet', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.pehub.com/184807/oracle-acquire-acme-packet/', 'source_description': 'Oracle to Acquire Acme Packet', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 4, 'acquiring_company': {'name': 'Oracle Corporation', 'permalink': 'oracle'}}}, {'_id': ObjectId('52cdef7f4bab8bd67529c5ae'), 'name': 'Aspera', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/19/ibm-buys-aspera-a-file-transfer-company-that-counts-apple-and-netflix-as-customers/', 'source_description': 'IBM Buys Aspera, A File Transfer Company That Counts Apple And Netflix As Customers', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 19, 'acquiring_company': {'name': 'IBM', 'permalink': 'ibm'}}}]\n" + ] + } + ], "source": [ - " " + "# NOTE: There are no companies with acquisition.acquired year later than 2015. For practice purposes\n", + "# I've searched companies acquired after 2013\n", + "\n", + "results14 = list(collection.find({\"acquisition.acquired_year\": \n", + " {\"$gt\": 2012}}, {\"name\": 1, \"acquisition\": 1}).sort(\"acquisition.price_amount\",-1))\n", + "\n", + "print(len(results14))\n", + "print(results14)" ] }, { @@ -230,10 +444,25 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7c4bab8bd675297e8f'), 'name': 'Alstrasoft', 'founded_year': 1800}, {'_id': ObjectId('52cdef7e4bab8bd67529b1bc'), 'name': 'US Army', 'founded_year': 1800}, {'_id': ObjectId('52cdef7d4bab8bd675298b5a'), 'name': 'SmallWorlds', 'founded_year': 1800}, {'_id': ObjectId('52cdef7f4bab8bd67529c453'), 'name': 'DuPont', 'founded_year': 1802}, {'_id': ObjectId('52cdef7e4bab8bd67529ac9a'), 'name': 'Bachmann Industries', 'founded_year': 1833}, {'_id': ObjectId('52cdef7d4bab8bd675299360'), 'name': 'McKesson', 'founded_year': 1833}, {'_id': ObjectId('52cdef7d4bab8bd675298d67'), 'name': 'Bertelsmann', 'founded_year': 1835}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e2'), 'name': 'Accuity', 'founded_year': 1836}, {'_id': ObjectId('52cdef7f4bab8bd67529c3e1'), 'name': 'CENTRA', 'founded_year': 1839}, {'_id': ObjectId('52cdef7d4bab8bd6752996fb'), 'name': 'VideoSurf', 'founded_year': 1840}, {'_id': ObjectId('52cdef7c4bab8bd675298140'), 'name': 'WeGame', 'founded_year': 1840}, {'_id': ObjectId('52cdef7d4bab8bd675299a85'), 'name': 'VideoSurf', 'founded_year': 1840}, {'_id': ObjectId('52cdef7d4bab8bd675298a13'), 'name': 'The Economist Group', 'founded_year': 1843}, {'_id': ObjectId('52cdef7e4bab8bd67529b235'), 'name': 'Pearson', 'founded_year': 1844}, {'_id': ObjectId('52cdef7c4bab8bd6752987e2'), 'name': 'Associated Press', 'founded_year': 1846}, {'_id': ObjectId('52cdef7e4bab8bd67529b1c7'), 'name': 'Beloit College', 'founded_year': 1846}, {'_id': ObjectId('52cdef7f4bab8bd67529c2bd'), 'name': 'Stiefel', 'founded_year': 1847}, {'_id': ObjectId('52cdef7d4bab8bd67529941a'), 'name': 'Siemens', 'founded_year': 1847}, {'_id': ObjectId('52cdef7e4bab8bd67529a789'), 'name': 'Pfizer', 'founded_year': 1848}, {'_id': ObjectId('52cdef7d4bab8bd67529a001'), 'name': 'Corning', 'founded_year': 1851}, {'_id': ObjectId('52cdef7c4bab8bd675298316'), 'name': 'Nykredit Realkredit', 'founded_year': 1851}, {'_id': ObjectId('52cdef7e4bab8bd67529b39e'), 'name': 'Leucadia National', 'founded_year': 1854}, {'_id': ObjectId('52cdef7d4bab8bd675298e54'), 'name': 'Louis Vuitton', 'founded_year': 1854}, {'_id': ObjectId('52cdef7e4bab8bd67529a7e2'), 'name': 'The McClatchy Company', 'founded_year': 1857}, {'_id': ObjectId('52cdef7d4bab8bd6752990cf'), 'name': 'University of Washington', 'founded_year': 1861}, {'_id': ObjectId('52cdef7f4bab8bd67529c274'), 'name': 'Athenix', 'founded_year': 1863}, {'_id': ObjectId('52cdef7c4bab8bd675297fc2'), 'name': 'Nokia', 'founded_year': 1865}, {'_id': ObjectId('52cdef7f4bab8bd67529c57a'), 'name': 'Cornell University', 'founded_year': 1865}, {'_id': ObjectId('52cdef7e4bab8bd67529b93b'), 'name': 'Millage, Inc', 'founded_year': 1867}, {'_id': ObjectId('52cdef7f4bab8bd67529c0f5'), 'name': 'Scotts Miracle-Gro', 'founded_year': 1868}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d8'), 'name': 'La Nacion', 'founded_year': 1870}, {'_id': ObjectId('52cdef7d4bab8bd67529a162'), 'name': 'Chevron', 'founded_year': 1879}, {'_id': ObjectId('52cdef7e4bab8bd67529a9e4'), 'name': 'SingTel', 'founded_year': 1879}, {'_id': ObjectId('52cdef7f4bab8bd67529c22d'), 'name': 'Elsevier', 'founded_year': 1880}, {'_id': ObjectId('52cdef7f4bab8bd67529c429'), 'name': 'University of Southern California', 'founded_year': 1880}, {'_id': ObjectId('52cdef7c4bab8bd67529834c'), 'name': 'Los Angeles Times Media Group', 'founded_year': 1881}, {'_id': ObjectId('52cdef7d4bab8bd675299471'), 'name': 'Financial Models Co', 'founded_year': 1883}, {'_id': ObjectId('52cdef7d4bab8bd67529a023'), 'name': 'Telenor', 'founded_year': 1885}, {'_id': ObjectId('52cdef7e4bab8bd67529a930'), 'name': 'Bristol-Myers Squibb', 'founded_year': 1887}, {'_id': ObjectId('52cdef7d4bab8bd67529a0fb'), 'name': 'McGraw-Hill Companies', 'founded_year': 1888}, {'_id': ObjectId('52cdef7c4bab8bd6752983cb'), 'name': 'National Geographic', 'founded_year': 1888}, {'_id': ObjectId('52cdef7d4bab8bd675298a61'), 'name': 'Financial Times', 'founded_year': 1888}, {'_id': ObjectId('52cdef7c4bab8bd675297e49'), 'name': 'Nintendo', 'founded_year': 1889}, {'_id': ObjectId('52cdef7e4bab8bd67529ab76'), 'name': 'Wall Street Journal', 'founded_year': 1889}, {'_id': ObjectId('52cdef7d4bab8bd675298e22'), 'name': 'Harris', 'founded_year': 1890}, {'_id': ObjectId('52cdef7c4bab8bd67529848f'), 'name': 'Teliasonera', 'founded_year': 1890}, {'_id': ObjectId('52cdef7c4bab8bd67529821c'), 'name': 'General Electric', 'founded_year': 1890}, {'_id': ObjectId('52cdef7d4bab8bd675299f99'), 'name': 'Cision', 'founded_year': 1892}, {'_id': ObjectId('52cdef7d4bab8bd675298e2f'), 'name': 'Waste Management', 'founded_year': 1894}, {'_id': ObjectId('52cdef7c4bab8bd67529856a'), 'name': 'IBM', 'founded_year': 1896}, {'_id': ObjectId('52cdef7e4bab8bd67529a937'), 'name': 'Becton Dickinson', 'founded_year': 1897}, {'_id': ObjectId('52cdef7e4bab8bd67529b369'), 'name': 'Knorr-Bremse AG', 'founded_year': 1897}, {'_id': ObjectId('52cdef7d4bab8bd675299696'), 'name': 'Thomas Publishing', 'founded_year': 1898}, {'_id': ObjectId('52cdef7d4bab8bd675298924'), 'name': 'Cox Enterprises', 'founded_year': 1898}, {'_id': ObjectId('52cdef7d4bab8bd675299a20'), 'name': 'Thomas Publishing', 'founded_year': 1898}, {'_id': ObjectId('52cdef7c4bab8bd6752985cc'), 'name': 'Alcatel-Lucent', 'founded_year': 1898}, {'_id': ObjectId('52cdef7c4bab8bd6752985ae'), 'name': 'NEC', 'founded_year': 1899}, {'_id': ObjectId('52cdef7d4bab8bd6752990d2'), 'name': 'Deloitte', 'founded_year': 1900}, {'_id': ObjectId('52cdef7f4bab8bd67529c465'), 'name': 'Osram Sylvania', 'founded_year': 1901}, {'_id': ObjectId('52cdef7d4bab8bd67529a066'), 'name': 'Solutia', 'founded_year': 1901}, {'_id': ObjectId('52cdef7d4bab8bd675298b6f'), 'name': 'Dentsu', 'founded_year': 1901}, {'_id': ObjectId('52cdef7e4bab8bd67529b3fd'), 'name': '3M', 'founded_year': 1902}, {'_id': ObjectId('52cdef7e4bab8bd67529a455'), 'name': 'Interpublic Group', 'founded_year': 1902}, {'_id': ObjectId('52cdef7c4bab8bd6752987bc'), 'name': 'Meredith Corporation', 'founded_year': 1902}, {'_id': ObjectId('52cdef7d4bab8bd675299d31'), 'name': 'Ford', 'founded_year': 1903}, {'_id': ObjectId('52cdef7e4bab8bd67529bc6c'), 'name': 'Gottschalks', 'founded_year': 1904}, {'_id': ObjectId('52cdef7d4bab8bd675298ee5'), 'name': 'Xerox', 'founded_year': 1906}, {'_id': ObjectId('52cdef7e4bab8bd67529b1fa'), 'name': 'SmeadSoft', 'founded_year': 1906}, {'_id': ObjectId('52cdef7d4bab8bd67529a1ec'), 'name': 'Shell', 'founded_year': 1907}, {'_id': ObjectId('52cdef7f4bab8bd67529c419'), 'name': 'PA SportsTicker', 'founded_year': 1909}, {'_id': ObjectId('52cdef7e4bab8bd67529bb72'), 'name': 'Acme Scale Systems', 'founded_year': 1909}, {'_id': ObjectId('52cdef7e4bab8bd67529a83d'), 'name': 'Hallmark', 'founded_year': 1910}, {'_id': ObjectId('52cdef7f4bab8bd67529bf11'), 'name': 'Fluor Corporation', 'founded_year': 1912}, {'_id': ObjectId('52cdef7c4bab8bd6752982fe'), 'name': 'Paramount Pictures', 'founded_year': 1912}, {'_id': ObjectId('52cdef7d4bab8bd675298fc0'), 'name': 'Nortel Networks', 'founded_year': 1914}, {'_id': ObjectId('52cdef7d4bab8bd675299156'), 'name': 'Safeway', 'founded_year': 1915}, {'_id': ObjectId('52cdef7e4bab8bd67529b787'), 'name': 'Naspers', 'founded_year': 1915}, {'_id': ObjectId('52cdef7e4bab8bd67529a922'), 'name': 'Technicolor', 'founded_year': 1915}, {'_id': ObjectId('52cdef7d4bab8bd675298b27'), 'name': 'Panasonic', 'founded_year': 1918}, {'_id': ObjectId('52cdef7e4bab8bd67529a3b3'), 'name': 'Sumitomo Corporation', 'founded_year': 1919}, {'_id': ObjectId('52cdef7d4bab8bd67529912a'), 'name': 'GCHQ', 'founded_year': 1919}, {'_id': ObjectId('52cdef7f4bab8bd67529c0b6'), 'name': 'DuBois', 'founded_year': 1920}, {'_id': ObjectId('52cdef7e4bab8bd67529b3f2'), 'name': 'Adidas', 'founded_year': 1920}, {'_id': ObjectId('52cdef7d4bab8bd675299c7c'), 'name': 'NFL', 'founded_year': 1920}, {'_id': ObjectId('52cdef7d4bab8bd675299bc3'), 'name': 'MItsubishi Electric', 'founded_year': 1921}, {'_id': ObjectId('52cdef7f4bab8bd67529c00c'), 'name': 'Enersis', 'founded_year': 1921}, {'_id': ObjectId('52cdef7f4bab8bd67529beb1'), 'name': \"See's Candies\", 'founded_year': 1921}, {'_id': ObjectId('52cdef7d4bab8bd675299839'), 'name': 'MItsubishi Electric', 'founded_year': 1921}, {'_id': ObjectId('52cdef7e4bab8bd67529afd6'), 'name': 'USAA', 'founded_year': 1922}, {'_id': ObjectId('52cdef7c4bab8bd675298374'), 'name': 'BBC', 'founded_year': 1922}, {'_id': ObjectId('52cdef7c4bab8bd675297f15'), 'name': 'Nielsen', 'founded_year': 1922}, {'_id': ObjectId('52cdef7d4bab8bd67529903e'), 'name': 'Raytheon', 'founded_year': 1922}, {'_id': ObjectId('52cdef7e4bab8bd67529b9a3'), 'name': 'EFJohnson Technologies', 'founded_year': 1923}, {'_id': ObjectId('52cdef7e4bab8bd67529b85e'), 'name': 'ACNielsen', 'founded_year': 1923}, {'_id': ObjectId('52cdef7c4bab8bd675297e8e'), 'name': 'The Walt Disney Company', 'founded_year': 1923}, {'_id': ObjectId('52cdef7e4bab8bd67529bbf5'), 'name': 'Sanistal', 'founded_year': 1923}, {'_id': ObjectId('52cdef7f4bab8bd67529c1d6'), 'name': 'Telefonica', 'founded_year': 1924}, {'_id': ObjectId('52cdef7e4bab8bd67529b476'), 'name': 'Random House', 'founded_year': 1925}, {'_id': ObjectId('52cdef7d4bab8bd67529a0a0'), 'name': 'Publicis Groupe', 'founded_year': 1926}, {'_id': ObjectId('52cdef7e4bab8bd67529b375'), 'name': 'Schlumberger', 'founded_year': 1926}]\n" + ] + } + ], + "source": [ + "# NOTE: Results hae been limited to 100 for memory purposes\n", + "\n", + "results15 = list(collection.find({\"founded_year\": {\"$ne\": None}}, \n", + " {\"name\": 1, \"founded_year\": 1}).sort(\"founded_year\", 1).limit(100))\n", + "\n", + "print(results15)" + ] }, { "cell_type": "markdown", @@ -244,10 +473,22 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 54, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd6752989a1'), 'name': 'Netscape', 'permalink': 'netscape', 'crunchbase_url': 'http://www.crunchbase.com/company/netscape', 'homepage_url': 'http://netscape.aol.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1994, 'founded_month': 4, 'founded_day': 4, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': None, 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Tue May 06 00:27:28 UTC 2008', 'updated_at': 'Thu Nov 14 00:57:06 UTC 2013', 'overview': '

Netscape Communications Corporation offers development, marketing, sale, and support of enterprise software solutions. Its products include e-commerce infrastructure and e-commerce applications targeted primarily at corporate intranets and extranets, and Internet. The company was formerly known as Mosaic Communications Corporation and changed the name to Netscape Communications Corporation in November, 1994. Netscape Communications Corporation was founded in 1994 and is based in Mountain View, California. Netscape Communications Corporation operates as a subsidiary of AOL Inc.

', 'image': {'available_sizes': [[[150, 40], 'assets/images/resized/0002/7667/27667v1-max-150x150.png'], [[200, 54], 'assets/images/resized/0002/7667/27667v1-max-250x250.png'], [[200, 54], 'assets/images/resized/0002/7667/27667v1-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Chief Scientist', 'person': {'first_name': 'Dr.', 'last_name': 'Taher Elgamal', 'permalink': 'dr-taher-elgamal'}}, {'is_past': False, 'title': 'Senior VP Sales and Service', 'person': {'first_name': 'Todd', 'last_name': 'Rulon-Miller', 'permalink': 'todd-rulon-miller'}}, {'is_past': False, 'title': 'Vice President and General Manager', 'person': {'first_name': 'Keng', 'last_name': 'Lim', 'permalink': 'keng-lim'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Andy', 'last_name': 'Han', 'permalink': 'andy-han'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': 'Doerr', 'permalink': 'john-doerr'}}, {'is_past': False, 'title': 'Director of Enterprise Applications', 'person': {'first_name': 'Vishi', 'last_name': 'Iyer', 'permalink': 'vishi-iyer'}}, {'is_past': False, 'title': 'Principal Engineer,', 'person': {'first_name': 'Chris', 'last_name': 'Waterson', 'permalink': 'chris-waterson'}}, {'is_past': True, 'title': 'Co - Founder', 'person': {'first_name': 'Marc', 'last_name': 'Andreessen', 'permalink': 'marc-andreessen'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Vidur', 'last_name': 'Apparap', 'permalink': 'vidur-apparap'}}, {'is_past': True, 'title': 'CTO, Server Product Division', 'person': {'first_name': 'Tim', 'last_name': 'Howes', 'permalink': 'tim-howes'}}, {'is_past': True, 'title': 'Vice President of Strategic Planning', 'person': {'first_name': 'John', 'last_name': 'Bruggeman', 'permalink': 'john-bruggeman'}}, {'is_past': True, 'title': 'Senior VP of Integrated Applications', 'person': {'first_name': 'Jim', 'last_name': 'Sha', 'permalink': 'jim-sha'}}, {'is_past': True, 'title': 'General Manger & VP EMEA', 'person': {'first_name': 'Didier', 'last_name': 'Bench', 'permalink': 'didier-bench'}}, {'is_past': True, 'title': 'VP, Channel and Developer Relations', 'person': {'first_name': 'Daniel', 'last_name': 'Shader', 'permalink': 'daniel-shader'}}, {'is_past': True, 'title': 'Sr. Vice President', 'person': {'first_name': 'Rick', 'last_name': 'Schell', 'permalink': 'rick-schell'}}, {'is_past': True, 'title': 'Senior Vice President, Engineering', 'person': {'first_name': 'Debby', 'last_name': 'Meredith', 'permalink': 'debby-meredith'}}, {'is_past': True, 'title': 'VP', 'person': {'first_name': 'David', 'last_name': 'Weiden', 'permalink': 'david-weiden'}}, {'is_past': True, 'title': 'SVP & GM Browser Products Division', 'person': {'first_name': 'Bob', 'last_name': 'Lisbonne', 'permalink': 'bob-lisbonne'}}, {'is_past': True, 'title': 'VP & GM Directory and Security', 'person': {'first_name': 'Claire', 'last_name': 'Hough', 'permalink': 'claire-hough'}}, {'is_past': True, 'title': 'VP, Online Content Programming', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP of Human Resources', 'person': {'first_name': 'Margie', 'last_name': 'Mader-Clark', 'permalink': 'margie-mader-clark'}}, {'is_past': True, 'title': 'VP Worldwide Sales and Marketing (Actra Joint Venture)', 'person': {'first_name': 'Ray', 'last_name': 'Rike', 'permalink': 'ray-rike'}}, {'is_past': True, 'title': 'Various VP Level Engineering Positions', 'person': {'first_name': 'Ira', 'last_name': 'Sharfglass', 'permalink': 'ira-sharfglass'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Ben', 'last_name': 'Horowitz', 'permalink': 'ben-horowitz'}}, {'is_past': True, 'title': 'Vice President', 'person': {'first_name': 'Ammiel', 'last_name': 'Kamon', 'permalink': 'ammiel-kamon'}}, {'is_past': True, 'title': 'Vice President, Enterprise Hosted Services', 'person': {'first_name': 'Joel', 'last_name': 'Pulliam', 'permalink': 'joel-pulliam'}}, {'is_past': True, 'title': 'SVP/GM Application Products Division', 'person': {'first_name': 'Steve', 'last_name': 'Savignano', 'permalink': 'steve-savignano'}}, {'is_past': True, 'title': 'VP Technology', 'person': {'first_name': 'Mike', 'last_name': 'McCue', 'permalink': 'mike-mccue'}}, {'is_past': True, 'title': 'VP, Business Operations', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Director of Engineering', 'person': {'first_name': 'Rich', 'last_name': 'Skrenta', 'permalink': 'rich-skrenta'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Mike', 'last_name': 'Pinkerton', 'permalink': 'mike-pinkerton'}}, {'is_past': True, 'title': 'Principal UI Designer', 'person': {'first_name': 'Jim', 'last_name': 'Lane', 'permalink': 'jim-lane'}}, {'is_past': True, 'title': 'DMOZ Business Development', 'person': {'first_name': 'Jeremy', 'last_name': 'Wenokur', 'permalink': 'jeremy-wenokur'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'European Sales Director', 'person': {'first_name': 'Chris', 'last_name': 'Zaharias', 'permalink': 'chris-zaharias'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'Micki', 'last_name': 'Seibel', 'permalink': 'micki-seibel'}}, {'is_past': True, 'title': 'Managing Director UK, Ireland & South Africa', 'person': {'first_name': 'Stephen', 'last_name': 'Voller', 'permalink': 'stephen-voller'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jim', 'last_name': 'Bankoff', 'permalink': 'jim-bankoff'}}, {'is_past': True, 'title': 'Manager & Architect', 'person': {'first_name': 'In', 'last_name': 'Sik Rhee', 'permalink': 'in-sik-rhee'}}, {'is_past': True, 'title': 'Northeast Practice Manager', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Jonathan', 'last_name': 'Abrams', 'permalink': 'jonathan-abrams'}}, {'is_past': True, 'title': 'Visual Designer', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'Interaction Designer', 'person': {'first_name': 'Irene', 'last_name': 'Au', 'permalink': 'irene-au'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Tim', 'last_name': 'Roberts', 'permalink': 'tim-roberts'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Jason', 'last_name': 'Rosenthal', 'permalink': 'jason-rosenthal'}}, {'is_past': True, 'title': 'Sr. Software Engineer', 'person': {'first_name': 'David', 'last_name': 'Tompkins', 'permalink': 'david-tompkins'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Lloyd', 'last_name': 'Tabb', 'permalink': 'lloyd-tabb'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Mike', 'last_name': 'Lenz', 'permalink': 'mike-lenz'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Chris', 'last_name': 'Tolles', 'permalink': 'chris-tolles'}}, {'is_past': True, 'title': 'Corporate Counsel', 'person': {'first_name': 'David', 'last_name': 'Mandelbrot', 'permalink': 'david-mandelbrot'}}, {'is_past': True, 'title': 'Practice Head Professional Services, Western US', 'person': {'first_name': 'Jim', 'last_name': 'Schinella', 'permalink': 'jim-schinella'}}, {'is_past': True, 'title': 'Sr. HR Manager/Dir Americas Sales and Professional Services', 'person': {'first_name': 'David', 'last_name': 'Barber', 'permalink': 'david-barber'}}, {'is_past': True, 'title': 'Engineering Manager, Proxy Server', 'person': {'first_name': 'Chuck', 'last_name': 'Neerdaels', 'permalink': 'chuck-neerdaels'}}, {'is_past': True, 'title': 'Sr. Software Engineer / Software Development Manager', 'person': {'first_name': 'Troy', 'last_name': 'Chevalier', 'permalink': 'troy-chevalier'}}, {'is_past': True, 'title': 'Technical Assistant to Marc Andreessen', 'person': {'first_name': 'Jim', 'last_name': 'Ambach', 'permalink': 'jim-ambach'}}, {'is_past': True, 'title': 'Website Dev Manager', 'person': {'first_name': 'Bala', 'last_name': 'Guthy', 'permalink': 'bala-guthy'}}, {'is_past': True, 'title': 'Director, Professional Services', 'person': {'first_name': 'Noreen', 'last_name': 'Henry', 'permalink': 'noreen-henry'}}, {'is_past': True, 'title': 'Senior Director, Business Programming - Netcenter', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'Software Commando', 'person': {'first_name': 'Michael', 'last_name': 'Judge', 'permalink': 'michael-judge'}}, {'is_past': True, 'title': 'Director of Business Development and OEM Sales', 'person': {'first_name': 'Alan', 'last_name': 'Louie', 'permalink': 'alan-louie'}}, {'is_past': True, 'title': 'Dir. Strategic Marketing', 'person': {'first_name': 'Gregory', 'last_name': 'Miller', 'permalink': 'gregory-miller-2'}}, {'is_past': True, 'title': 'Strategic Sales', 'person': {'first_name': 'Brian', 'last_name': 'Curry', 'permalink': 'brian-curry'}}, {'is_past': True, 'title': 'Business Development', 'person': {'first_name': 'Mark', 'last_name': 'Siegel', 'permalink': 'mark-siegel'}}, {'is_past': True, 'title': 'VP, Sales', 'person': {'first_name': 'Karen', 'last_name': 'Richardson', 'permalink': 'karen-richardson'}}, {'is_past': True, 'title': 'Senior Sales Engineer', 'person': {'first_name': 'Stacy', 'last_name': 'Martin', 'permalink': 'stacy-martin'}}, {'is_past': True, 'title': 'Sr Engineering Manager', 'person': {'first_name': 'Dan', 'last_name': 'Kuokka', 'permalink': 'dan-kuokka'}}, {'is_past': True, 'title': 'Sr. Principal Consultant / Regional Practice Manager', 'person': {'first_name': 'Andy', 'last_name': 'Spillane', 'permalink': 'andy-spillane'}}, {'is_past': True, 'title': 'Engineering Manager', 'person': {'first_name': 'Dave', 'last_name': 'Keefer', 'permalink': 'dave-keefer'}}, {'is_past': True, 'title': 'Various Designation', 'person': {'first_name': 'Josh', 'last_name': 'Becker', 'permalink': 'josh-becker'}}, {'is_past': True, 'title': 'Marketing, Communications and Web Strategy', 'person': {'first_name': 'Bruce', 'last_name': 'Carlisle', 'permalink': 'bruce-carlisle'}}, {'is_past': True, 'title': 'Senior and Executive Management', 'person': {'first_name': 'Ajay', 'last_name': 'Jain', 'permalink': 'ajay-jain'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brandon', 'last_name': 'Berger', 'permalink': 'brandon-berger'}}, {'is_past': True, 'title': 'Director Product Marketing', 'person': {'first_name': 'Andres', 'last_name': 'Espineira', 'permalink': 'andres-espineira'}}, {'is_past': True, 'title': 'Director of Product Management', 'person': {'first_name': 'Raghu', 'last_name': 'Raghuram', 'permalink': 'raghu-raghuram'}}, {'is_past': True, 'title': 'Senior Director', 'person': {'first_name': 'Brent', 'last_name': 'Harrison', 'permalink': 'brent-harrison'}}, {'is_past': True, 'title': 'Product Manager, Web Browser / Gecko', 'person': {'first_name': 'Angus', 'last_name': 'Davis', 'permalink': 'angus-davis'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Todd', 'last_name': 'Pringle', 'permalink': 'todd-pringle'}}, {'is_past': True, 'title': 'Director of Browser Development', 'person': {'first_name': 'Jim', 'last_name': 'Everingham', 'permalink': 'jim-everingham'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ram', 'last_name': 'Shriram', 'permalink': 'ram-shriram'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Ken', 'last_name': 'Rutsky', 'permalink': 'ken-rutsky'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Richard', 'last_name': 'Shusterman', 'permalink': 'richard-shusterman'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Javier', 'last_name': 'Soltero', 'permalink': 'javier-soltero'}}, {'is_past': True, 'title': 'Regional Director', 'person': {'first_name': 'Kirsten', 'last_name': 'Ward', 'permalink': 'kirsten-ward'}}, {'is_past': True, 'title': 'Sales Manager, France', 'person': {'first_name': 'Matthieu', 'last_name': 'Chouard', 'permalink': 'matthieu-chouard'}}, {'is_past': True, 'title': 'Intern', 'person': {'first_name': 'Ethel', 'last_name': 'Chen', 'permalink': 'ethel-chen'}}, {'is_past': True, 'title': 'Evangelism', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Michael', 'last_name': 'Sharma', 'permalink': 'michael-sharma'}}, {'is_past': True, 'title': 'Product Management Intern', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'Director, Application Architecture & Design, Netcenter Division', 'person': {'first_name': 'Mark', 'last_name': 'Stern', 'permalink': 'mark-stern'}}, {'is_past': True, 'title': 'Sr. Director, Products', 'person': {'first_name': 'Julie', 'last_name': 'Herendeen', 'permalink': 'julie-herendeen'}}, {'is_past': True, 'title': 'Sr. Director', 'person': {'first_name': 'David', 'last_name': 'Pann', 'permalink': 'david-pann'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Javier', 'last_name': 'Soltero', 'permalink': 'javier-soltero'}}, {'is_past': True, 'title': 'Director PM', 'person': {'first_name': 'Eckart', 'last_name': 'Walther', 'permalink': 'eckart-walther'}}, {'is_past': True, 'title': 'Senior Editor', 'person': {'first_name': 'Lee', 'last_name': 'Sherman', 'permalink': 'lee-sherman'}}, {'is_past': True, 'title': 'Mgr / Sr Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Rubinstein', 'permalink': 'steve-rubinstein'}}, {'is_past': True, 'title': 'Director Product Marketing / Biz Dev', 'person': {'first_name': 'Atri', 'last_name': 'Chatterjee', 'permalink': 'atri-chatterjee'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Ellen', 'last_name': 'Perelman', 'permalink': 'ellen-perelman'}}, {'is_past': True, 'title': 'Director, Product Management & Marketing', 'person': {'first_name': 'Albert', 'last_name': 'Gouyet', 'permalink': 'albert-gouyet'}}, {'is_past': True, 'title': 'Director of Engineering/Browser', 'person': {'first_name': 'James', 'last_name': 'Everingham', 'permalink': 'james-everingham'}}, {'is_past': True, 'title': 'Various Marketing Positions', 'person': {'first_name': 'Susan', 'last_name': 'Chenoweth', 'permalink': 'susan-chenoweth'}}, {'is_past': True, 'title': 'Director North American Field Marketing', 'person': {'first_name': 'Susan', 'last_name': 'Scarth', 'permalink': 'susan-scarth'}}, {'is_past': True, 'title': 'Account Executive', 'person': {'first_name': 'Jason', 'last_name': 'Han', 'permalink': 'jason-han'}}, {'is_past': True, 'title': 'Consultant', 'person': {'first_name': 'Marge', 'last_name': 'Breya', 'permalink': 'marge-breya'}}, {'is_past': True, 'title': 'Dir, Dev Tools R&D', 'person': {'first_name': 'Jeffrey', 'last_name': 'L. Barca-Hall', 'permalink': 'jeffrey-l-barca-hall'}}, {'is_past': True, 'title': 'Manager', 'person': {'first_name': 'Gary', 'last_name': 'Nakamura', 'permalink': 'gary-nakamura'}}, {'is_past': True, 'title': 'Director of Product Management, Netscape Navigator', 'person': {'first_name': 'Alex', 'last_name': 'Edelstein', 'permalink': 'alex-edelstein'}}, {'is_past': True, 'title': 'Technical Manager', 'person': {'first_name': 'Vishy', 'last_name': 'Ramachandran', 'permalink': 'vishy-ramachandran'}}, {'is_past': True, 'title': 'Director, Netscape / America Online', 'person': {'first_name': 'Yuan', 'last_name': 'Huntington Weigel', 'permalink': 'yuan-huntington-weigel'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Suzanne', 'last_name': 'Usiskin', 'permalink': 'suzanne-usiskin'}}, {'is_past': True, 'title': 'Senior Software Engineer', 'person': {'first_name': 'Autumn', 'last_name': 'Looijen', 'permalink': 'autumn-looijen-2'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'John', 'last_name': 'Occhipinti', 'permalink': 'john-occhipinti'}}, {'is_past': True, 'title': 'Sr. Product Manager: Directory and Security', 'person': {'first_name': 'Stephen', 'last_name': 'Shoaff', 'permalink': 'stephen-shoaff'}}, {'is_past': True, 'title': 'Group Product Manager', 'person': {'first_name': 'JF', 'last_name': 'Sullivan', 'permalink': 'jf-sullivan'}}, {'is_past': True, 'title': 'Team Member', 'person': {'first_name': 'Alan', 'last_name': 'Gunshor', 'permalink': 'alan-gunshor'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Liz', 'last_name': 'Westover', 'permalink': 'liz-westover'}}, {'is_past': True, 'title': 'Group Product Marketing Manager', 'person': {'first_name': 'Jorge', 'last_name': 'Martin', 'permalink': 'jorge-martin'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Jonathan', 'last_name': 'H. Corr', 'permalink': 'jonathan-h-corr'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'David', 'last_name': 'Miller', 'permalink': 'david-miller-2'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Brian', 'last_name': 'Cowley', 'permalink': 'brian-cowley-2'}}, {'is_past': True, 'title': 'Manager, Engineering Teams', 'person': {'first_name': 'David', 'last_name': 'Kandasamy', 'permalink': 'david-kandasamy'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [{'id': 20468, 'round_code': 'c', 'source_url': 'http://www.hearst.com/press-room/pr-19950407a.php', 'source_description': 'NETSCAPE COMMUNICATIONS ANNOUNCES INVESTMENT BY PUBLISHING AND TECHNOLOGY COMPANIES', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1995, 'funded_month': 4, 'funded_day': None, 'investments': []}], 'investments': [], 'acquisition': {'price_amount': 4200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1023-218360.html', 'source_description': 'AOL buys Netscape for $4.2 billion', 'acquired_year': 1998, 'acquired_month': 11, 'acquired_day': 28, 'acquiring_company': {'name': 'AOL', 'permalink': 'aol'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '466 Ellis Street', 'address2': '', 'zip_code': '94043', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.4001507, 'longitude': -122.0521992}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297e89'), 'name': 'PayPal', 'permalink': 'paypal', 'crunchbase_url': 'http://www.crunchbase.com/company/paypal', 'homepage_url': 'http://www.paypal.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'paypal', 'category_code': 'finance', 'number_of_employees': 300000, 'founded_year': 1998, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'moneytransfer, crunchbase, ecommerce, paypal, onlinepayments', 'alias_list': '', 'email_address': '', 'phone_number': '207-619-2873', 'description': 'Internet payment service', 'created_at': 'Wed Aug 01 09:16:46 UTC 2007', 'updated_at': 'Fri Dec 20 04:43:53 UTC 2013', 'overview': '

PayPal is an online payments and money transfer service that allows you to send money via email, phone, text message or Skype. They offer products to both individuals and businesses alike, including online vendors, auction sites and corporate users. PayPal connects effortlessly to bank accounts and credit cards.

\\n\\n

PayPal Mobile is one of PayPal’s newest products. It allows you to send payments by text message or by using PayPal’s mobile browser.

\\n\\n

PayPal created the Gausebeck-Levchin test, which is an implementation of the CAPTCHA technology, the blurry box of letters and numbers used to prevent against online fraud by ensuring a human response. They created it in the early days to help prevent unauthorized access by automated systems.

\\n\\n

When eBay acquired PayPal in October 2002, eBay already had an online payment system of choice called Billpoint. Billpoint was quickly phased out due to PayPal’s popularity, branding and technology.

\\n\\n

PayPal’s main competitor is Google Checkout. PayPal Mobile competitors include obopay, TextPayMe and KushCash.

\\n\\n

More information about PayPal can be found on the PayPal Press Center, the PayPal Facebook page, the PayPal Twitter page, the PayPal Developer Network, and the PayPal Blog.

', 'image': {'available_sizes': [[[150, 51], 'assets/images/resized/0000/3943/3943v10-max-150x150.jpg'], [[250, 86], 'assets/images/resized/0000/3943/3943v10-max-250x250.jpg'], [[450, 155], 'assets/images/resized/0000/3943/3943v10-max-450x450.jpg']], 'attribution': None}, 'products': [{'name': 'PayPal Here', 'permalink': 'paypal-here'}, {'name': 'PayPal Beacon', 'permalink': 'paypal-beacon'}], 'relationships': [{'is_past': False, 'title': 'Vice President, Data', 'person': {'first_name': 'Sam', 'last_name': 'Hamilton', 'permalink': 'sam-hamilton'}}, {'is_past': False, 'title': 'VP of Finance', 'person': {'first_name': 'Mary', 'last_name': 'Hentges', 'permalink': 'mary-hentges'}}, {'is_past': False, 'title': 'VP of Legal, General Counsel', 'person': {'first_name': 'John', 'last_name': 'Muller', 'permalink': 'john-muller'}}, {'is_past': False, 'title': 'Creative Director', 'person': {'first_name': 'Cynthia', 'last_name': 'Maller', 'permalink': 'cynthia-maller'}}, {'is_past': False, 'title': 'Consumer Business Development', 'person': {'first_name': 'Renata', 'last_name': 'Dionello', 'permalink': 'renata-dionello'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Rob', 'last_name': 'McDonald', 'permalink': 'rob-mcdonald'}}, {'is_past': False, 'title': 'Sr. Consultant - SharePoint', 'person': {'first_name': 'Ganesh', 'last_name': 'Jayaraman G', 'permalink': 'ganesh-jayaraman-g'}}, {'is_past': False, 'title': 'Ambassador Advisory Panel', 'person': {'first_name': 'Michael', 'last_name': 'Psarouthakis', 'permalink': 'michael-psarouthakis'}}, {'is_past': False, 'title': 'Senior Software Quality Engineer', 'person': {'first_name': 'Sagar', 'last_name': 'Patil', 'permalink': 'sagar-patil'}}, {'is_past': False, 'title': 'Director, Product Management', 'person': {'first_name': 'Michael', 'last_name': 'Mettler', 'permalink': 'michael-mettler'}}, {'is_past': False, 'title': 'Senior MTS, Software Engineer', 'person': {'first_name': 'Brent', 'last_name': 'Fitzgerald', 'permalink': 'brent-fitzgerald'}}, {'is_past': False, 'title': 'Software Engineer/Manager', 'person': {'first_name': 'Tom', 'last_name': 'Whipple', 'permalink': 'tom-whipple'}}, {'is_past': False, 'title': 'Director, Product', 'person': {'first_name': 'Arik', 'last_name': 'Keller', 'permalink': 'arik-keller'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Huang', 'permalink': 'tony-huang-2'}}, {'is_past': False, 'title': 'Sr. Director of User Interface Engineering', 'person': {'first_name': 'Bill W.', 'last_name': 'Scott', 'permalink': 'bill-w-scott'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Shaikh', 'last_name': 'Naseer', 'permalink': 'shaikh-naseer'}}, {'is_past': False, 'title': 'Sr. Manager Web Development', 'person': {'first_name': 'Marc', 'last_name': 'Kocher', 'permalink': 'marc-kocher'}}, {'is_past': False, 'title': 'UX Designer', 'person': {'first_name': 'Dolly', 'last_name': 'Parikh', 'permalink': 'dolly-parikh'}}, {'is_past': False, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Joseph', 'last_name': 'Chong', 'permalink': 'joseph-chong'}}, {'is_past': False, 'title': 'Software Engineer', 'person': {'first_name': 'Andrew', 'last_name': 'Smith', 'permalink': 'andrew-smith-3'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'David', 'last_name': 'Marcus', 'permalink': 'david-marcus'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Don', 'last_name': 'Fotsch', 'permalink': 'don-fotsch'}}, {'is_past': False, 'title': 'Director, Software Engineering', 'person': {'first_name': 'Josh', 'last_name': 'Bleecher Snyder', 'permalink': 'josh-bleecher-snyder'}}, {'is_past': False, 'title': 'Business Development', 'person': {'first_name': 'Carol', 'last_name': 'Haverty', 'permalink': 'carol-haverty'}}, {'is_past': False, 'title': 'Business Partner', 'person': {'first_name': 'Daryl', 'last_name': 'Hatton', 'permalink': 'daryl-hatton'}}, {'is_past': False, 'title': 'Engineer', 'person': {'first_name': 'Yu', 'last_name': 'Pan', 'permalink': 'yu-pan'}}, {'is_past': False, 'title': 'Head, Wallet', 'person': {'first_name': 'Eran', 'last_name': 'Arbel', 'permalink': 'eran-arbel'}}, {'is_past': False, 'title': 'Head of Developer Evangelism (North America)', 'person': {'first_name': 'Jonathan', 'last_name': 'LeBlanc', 'permalink': 'jonathan-leblanc'}}, {'is_past': True, 'title': 'Assistant to CEO', 'person': {'first_name': 'Andrew', 'last_name': 'McCormack', 'permalink': 'andrew-mccormack'}}, {'is_past': True, 'title': 'Co-Founder, CFO', 'person': {'first_name': 'Ken', 'last_name': 'Howery', 'permalink': 'ken-howery'}}, {'is_past': True, 'title': 'Co-founder, VP, Bus Dev, Marketing, Strategy', 'person': {'first_name': 'Luke', 'last_name': 'Nosek', 'permalink': 'luke-nosek'}}, {'is_past': True, 'title': 'Co-Founder, Chairman and CEO', 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'is_past': True, 'title': 'Special Counsel to the CEO', 'person': {'first_name': 'Rod', 'last_name': 'D. Martin', 'permalink': 'rod-martin'}}, {'is_past': True, 'title': 'Co-founder', 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}, {'is_past': True, 'title': 'Co - Founder / CTO', 'person': {'first_name': 'Max', 'last_name': 'Levchin', 'permalink': 'max-levchin'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Roelof', 'last_name': 'Botha', 'permalink': 'roelof-botha'}}, {'is_past': True, 'title': 'COO', 'person': {'first_name': 'David', 'last_name': 'Sacks', 'permalink': 'david-sacks'}}, {'is_past': True, 'title': 'Corporate Officer and Senior Vice President', 'person': {'first_name': 'Jack', 'last_name': 'R. Selby', 'permalink': 'jack-r-selby'}}, {'is_past': True, 'title': 'VP, Product', 'person': {'first_name': 'Amy', 'last_name': 'Klement', 'permalink': 'amy-klement'}}, {'is_past': True, 'title': 'Vice-President and GM Southern Eastern Northern Europe', 'person': {'first_name': 'Christopher', 'last_name': 'Coonen', 'permalink': 'christopher-coonen'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Jeremy', 'last_name': 'Stoppelman', 'permalink': 'jeremy-stoppelman'}}, {'is_past': True, 'title': 'SVP, Customer Service Operations and Fraud', 'person': {'first_name': 'Sarah', 'last_name': 'Imbach', 'permalink': 'sarah-imbach'}}, {'is_past': True, 'title': 'VP, Product Design', 'person': {'first_name': 'Skye', 'last_name': 'Lee', 'permalink': 'skye-lee'}}, {'is_past': True, 'title': 'VP, Global Product', 'person': {'first_name': 'Brent', 'last_name': 'Bellm', 'permalink': 'brent-bellm'}}, {'is_past': True, 'title': 'Executive VP, Business Development, Public Affairs & Policy', 'person': {'first_name': 'Keith', 'last_name': 'Rabois', 'permalink': 'keith-rabois'}}, {'is_past': True, 'title': 'Sr. Director Marketing & Interim VP Marketing', 'person': {'first_name': 'Eric', 'last_name': 'Jackson', 'permalink': 'eric-jackson'}}, {'is_past': True, 'title': 'VP Engineering & Architecture', 'person': {'first_name': 'Michael', 'last_name': 'Fisher', 'permalink': 'michael-fisher'}}, {'is_past': True, 'title': 'VP Consumer Services', 'person': {'first_name': 'Jerrell', 'last_name': 'Jimerson', 'permalink': 'jerrell-jimerson'}}, {'is_past': True, 'title': 'VP, Product Development', 'person': {'first_name': 'Osama', 'last_name': 'Bedier', 'permalink': 'osama-bedier'}}, {'is_past': True, 'title': 'Vice President, Corporate Communications and Public Affairs', 'person': {'first_name': 'Vince', 'last_name': 'Sollitto', 'permalink': 'vince-sollitto'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Alex', 'last_name': 'Kazim', 'permalink': 'alex-kazim'}}, {'is_past': True, 'title': 'Senior Vice President of Product, Sales, Marketing & Technology', 'person': {'first_name': 'Dana', 'last_name': 'Stalder', 'permalink': 'dana-stalder'}}, {'is_past': True, 'title': 'Senior VP, Worldwide Operations', 'person': {'first_name': 'Ryan', 'last_name': 'Dawson', 'permalink': 'ryan-downs'}}, {'is_past': True, 'title': 'VP of Human Resources and Administratio', 'person': {'first_name': 'Salvatore', 'last_name': 'Giambanco', 'permalink': 'salvatore-giambanco'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'is_past': True, 'title': 'Lead Software Architect', 'person': {'first_name': 'Russel', 'last_name': 'Simmons', 'permalink': 'russel-simmons'}}, {'is_past': True, 'title': 'Group Manager', 'person': {'first_name': 'Jon', 'last_name': 'Sonnenschein', 'permalink': 'jon-sonnenschein'}}, {'is_past': True, 'title': 'Sr Scientist', 'person': {'first_name': 'Mike', 'last_name': 'Greenfield', 'permalink': 'mike-greenfield'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Patrick', 'last_name': 'Breitenbach', 'permalink': 'patrick-breitenbach'}}, {'is_past': True, 'title': 'Senior Product Manager, Mobile', 'person': {'first_name': 'Jonathan', 'last_name': 'Meiri', 'permalink': 'jonathan-meiri'}}, {'is_past': True, 'title': 'Board of Directors', 'person': {'first_name': 'John', 'last_name': 'Malloy', 'permalink': 'john-malloy'}}, {'is_past': True, 'title': 'Program Manager', 'person': {'first_name': 'Tony', 'last_name': 'Adam', 'permalink': 'tony-adam'}}, {'is_past': True, 'title': 'Lead Architect, Director', 'person': {'first_name': 'Aleksey', 'last_name': 'Sanin', 'permalink': 'aleksey-sanin'}}, {'is_past': True, 'title': 'Managing Director, France', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'UI Designer', 'person': {'first_name': 'George', 'last_name': 'Ishii', 'permalink': 'george-ishii'}}, {'is_past': True, 'title': 'Director, North America Marketplaces', 'person': {'first_name': 'Monroe', 'last_name': 'Labouisse', 'permalink': 'monroe-labouisse'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Yishan', 'last_name': 'Wong', 'permalink': 'yishan-wong'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Scott', 'last_name': 'Thompson', 'permalink': 'scott-thompson'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Sriram', 'last_name': 'Subramanian', 'permalink': 'sriram-subramanian'}}, {'is_past': True, 'title': 'Head, Emerging Markets Risk', 'person': {'first_name': 'Rajesh', 'last_name': 'Ramanand', 'permalink': 'rajesh-ramanand'}}, {'is_past': True, 'title': 'Designer', 'person': {'first_name': 'Mitchell', 'last_name': 'Geere', 'permalink': 'mitchell-geere'}}, {'is_past': True, 'title': 'Director of Online Dispute Resolution', 'person': {'first_name': 'Colin', 'last_name': 'Rule', 'permalink': 'colin-rule'}}, {'is_past': True, 'title': 'Senior Engineering Manager', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Paul', 'last_name': 'Fredrich', 'permalink': 'paul-fredrich'}}, {'is_past': True, 'title': 'Portfolio Risk Manager', 'person': {'first_name': 'Bill', 'last_name': 'Clark', 'permalink': 'bill-clark'}}, {'is_past': True, 'title': 'Managing Director Germany', 'person': {'first_name': 'Gregor', 'last_name': 'Bieler', 'permalink': 'gregor-bieler'}}, {'is_past': True, 'title': 'Sr. Manager', 'person': {'first_name': 'Jimmy', 'last_name': 'Lee', 'permalink': 'jimmy-lee-2'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Michel', 'last_name': 'Veys', 'permalink': 'michel-veys'}}, {'is_past': True, 'title': 'General Manager, Western Europe', 'person': {'first_name': 'Giulio', 'last_name': 'Montemagno', 'permalink': 'giulio-montemagno'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Steve', 'last_name': 'Chen', 'permalink': 'steve-chen'}}, {'is_past': True, 'title': 'Group/Principal Product Manager', 'person': {'first_name': 'Barry', 'last_name': 'Grant', 'permalink': 'barry-grant'}}, {'is_past': True, 'title': 'Intern, Finance', 'person': {'first_name': 'Joe', 'last_name': 'Lonsdale', 'permalink': 'joe-lonsdale'}}, {'is_past': True, 'title': 'Sr. Director, Consumer Product Management', 'person': {'first_name': 'Brian', 'last_name': 'Phillips', 'permalink': 'brian-phillips'}}, {'is_past': True, 'title': 'Sr. Director, Core Consumer Strategy', 'person': {'first_name': 'Katherine', 'last_name': 'Woo', 'permalink': 'katherine-woo'}}, {'is_past': True, 'title': 'MBA Intern, Mobile Product Strategy', 'person': {'first_name': 'Orkun', 'last_name': 'Atik', 'permalink': 'orkun-atik'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Tejash', 'last_name': 'Unadkat', 'permalink': 'tejash-unadkat'}}, {'is_past': True, 'title': 'Customer Engagement Manager', 'person': {'first_name': 'Adolfo', 'last_name': 'Babatz', 'permalink': 'adolfo-babatz'}}, {'is_past': True, 'title': 'Senior Director, Financial Planning & Analysis', 'person': {'first_name': 'Israel', 'last_name': 'Ganot', 'permalink': 'israel-ganot'}}, {'is_past': True, 'title': 'Interim Head of Finance - Hong Kong/Singapore', 'person': {'first_name': 'Michael', 'last_name': 'Melka', 'permalink': 'michael-melka'}}, {'is_past': True, 'title': 'Sr Director, EMEA Risk Management', 'person': {'first_name': 'Colleen', 'last_name': 'Lindow', 'permalink': 'colleen-lindow'}}, {'is_past': True, 'title': 'Senior Director, Consumer Marketing', 'person': {'first_name': 'Hillary', 'last_name': 'Mickell', 'permalink': 'hillary-mickell'}}, {'is_past': True, 'title': 'International Product Manager', 'person': {'first_name': 'Heidi', 'last_name': 'Carson', 'permalink': 'heidi-carson'}}, {'is_past': True, 'title': 'Director, PayPal Mobile', 'person': {'first_name': 'Sandra', 'last_name': 'Oh Lin', 'permalink': 'sandra-oh-lin'}}, {'is_past': True, 'title': 'Product Manager', 'person': {'first_name': 'Mark', 'last_name': 'Goldenson', 'permalink': 'mark-goldenson'}}, {'is_past': True, 'title': 'General Manager', 'person': {'first_name': 'Walt', 'last_name': 'Doyle', 'permalink': 'walt-doyle'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Matt', 'last_name': 'Bannick', 'permalink': 'matt-bannick'}}, {'is_past': True, 'title': 'Recruiter', 'person': {'first_name': 'Michelle', 'last_name': 'Munoz', 'permalink': 'michelle-munoz'}}, {'is_past': True, 'title': 'Principal Engineer', 'person': {'first_name': 'Erik', 'last_name': 'Beebe', 'permalink': 'erik-beebe'}}, {'is_past': True, 'title': 'Leadership Positions', 'person': {'first_name': 'Matt', 'last_name': 'Graves', 'permalink': 'matt-graves'}}, {'is_past': True, 'title': 'Head of Digital Goods Risk', 'person': {'first_name': 'Michael', 'last_name': 'Liberty', 'permalink': 'michael-liberty'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Roger', 'last_name': 'Pavane', 'permalink': 'roger-pavane'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ivaylo', 'last_name': 'Iliev', 'permalink': 'ivaylo-iliev'}}, {'is_past': True, 'title': 'Positions of Senior Director, Global Risk Operations', 'person': {'first_name': 'Greg', 'last_name': 'Montana', 'permalink': 'greg-montana'}}, {'is_past': True, 'title': 'Senior Director, Global Head', 'person': {'first_name': 'West', 'last_name': 'Stringfellow', 'permalink': 'westley-stringfellow'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Dave', 'last_name': 'McClure', 'permalink': 'dave-mcclure'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director, Financial Services', 'person': {'first_name': 'Lee', 'last_name': 'Hower', 'permalink': 'lee-hower'}}, {'is_past': True, 'title': 'Merchant Dev Rep', 'person': {'first_name': 'Gregory', 'last_name': 'Husadzic', 'permalink': 'gregory-husadzic'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Dwipal', 'last_name': 'Desai', 'permalink': 'dwipal-desai'}}, {'is_past': True, 'title': 'Senior Manager, International', 'person': {'first_name': 'Michael', 'last_name': 'Blum', 'permalink': 'michael-blum'}}, {'is_past': True, 'title': 'Engineer', 'person': {'first_name': 'Paul', 'last_name': 'Kenjora', 'permalink': 'paul-kenjora-3'}}, {'is_past': True, 'title': 'VP & GM Merchant Services', 'person': {'first_name': 'Stephanie', 'last_name': 'Tilenius', 'permalink': 'stephanietilenius'}}, {'is_past': True, 'title': 'Creative Director', 'person': {'first_name': 'Tom', 'last_name': 'Walter', 'permalink': 'tom-walter'}}, {'is_past': True, 'title': 'Sr Director, Global Consumer Products', 'person': {'first_name': 'Stephane', 'last_name': 'Kasriel', 'permalink': 'stephane-kasriel'}}, {'is_past': True, 'title': 'Systems Administrator', 'person': {'first_name': 'Kirtley', 'last_name': 'Wienbroer', 'permalink': 'kirtley-wienbroer'}}, {'is_past': True, 'title': 'Project Manager', 'person': {'first_name': 'John', 'last_name': 'Vajda', 'permalink': 'john-vajda'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Michael', 'last_name': 'Lyden', 'permalink': 'michael-lyden'}}, {'is_past': True, 'title': 'President', 'person': {'first_name': 'Jeff', 'last_name': 'Jordan', 'permalink': 'jeff-jordan'}}, {'is_past': True, 'title': 'Director of Product Management, Mobile', 'person': {'first_name': 'Fabio', 'last_name': 'Sisinni', 'permalink': 'fabio-sisinni'}}, {'is_past': True, 'title': 'Lead Visual Designer', 'person': {'first_name': 'Tim', 'last_name': 'Holl', 'permalink': 'tim-holl'}}, {'is_past': True, 'title': 'Senior Manager, LATAM strategy', 'person': {'first_name': 'Liron', 'last_name': 'Damri', 'permalink': 'liron-damri'}}, {'is_past': True, 'title': 'Software Engineer', 'person': {'first_name': 'Gautam', 'last_name': 'Sampathkumar', 'permalink': 'gautam-sampathkumar'}}, {'is_past': True, 'title': 'Marketing Strategy Manager', 'person': {'first_name': 'Corryn', 'last_name': 'Hutchinson', 'permalink': 'corryn-hutchinson'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Ibrahim', 'last_name': 'Mesbah', 'permalink': 'ibrahim-mesbah'}}, {'is_past': True, 'title': 'Automation', 'person': {'first_name': 'Eido', 'last_name': 'Gal', 'permalink': 'eido-gal'}}, {'is_past': True, 'title': 'TL of Risk Analysis', 'person': {'first_name': 'Michael', 'last_name': 'Reitblat', 'permalink': 'michael-reitblat'}}, {'is_past': True, 'title': 'VP Finance', 'person': {'first_name': 'Sean', 'last_name': 'Aggarwal', 'permalink': 'sean-aggarwal'}}, {'is_past': True, 'title': 'Senior UI Engineer', 'person': {'first_name': 'Mark', 'last_name': 'Stuart', 'permalink': 'mark-stuart-2'}}, {'is_past': True, 'title': 'General Manager, Head of Sales', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': True, 'title': 'Founding Designer', 'person': {'first_name': 'Chad', 'last_name': 'Hurley', 'permalink': 'chad-hurley'}}, {'is_past': True, 'title': 'Director', 'person': {'first_name': 'Eric', 'last_name': 'Jepsky', 'permalink': 'eric-jepsky'}}, {'is_past': True, 'title': 'General Manager Mobile', 'person': {'first_name': 'Eric', 'last_name': 'Duprat', 'permalink': 'eric-duprat'}}, {'is_past': True, 'title': 'Marketing', 'person': {'first_name': 'Magda', 'last_name': 'Walczak', 'permalink': 'magda-walczak'}}, {'is_past': True, 'title': 'Application Architect', 'person': {'first_name': 'Erik', 'last_name': 'Klein', 'permalink': 'erik-klein'}}, {'is_past': True, 'title': 'Investor and Advisor', 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}, {'is_past': True, 'title': 'Managing Director, PayPal Australia', 'person': {'first_name': 'Frerk-malte', 'last_name': 'Feller', 'permalink': 'frerk-malte-feller'}}, {'is_past': True, 'title': 'Senior Manager in the Strategy and Operations group', 'person': {'first_name': 'Todd', 'last_name': 'Rakow', 'permalink': 'todd-rakow'}}, {'is_past': True, 'title': 'Senior Manager, PayPal FP&A', 'person': {'first_name': 'Kevin', 'last_name': 'Freedman', 'permalink': 'kevin-freedman'}}, {'is_past': True, 'title': 'Senior Marketing Manager, Merchant Services', 'person': {'first_name': 'Melinda', 'last_name': 'Byerley', 'permalink': 'melinda-byerley'}}, {'is_past': True, 'title': 'Director, Skype Integration', 'person': {'first_name': 'David', 'last_name': 'Jesse', 'permalink': 'david-jesse'}}, {'is_past': True, 'title': 'Development Manager', 'person': {'first_name': 'Geva', 'last_name': 'Solomonovich', 'permalink': 'geva-solomonovich'}}, {'is_past': True, 'title': 'Senior Finance Manager, Global Accounting Services', 'person': {'first_name': 'ROY', 'last_name': 'IBASCO', 'permalink': 'roy-ibasco'}}, {'is_past': True, 'title': 'Sr. Business Analyst', 'person': {'first_name': 'Nathan', 'last_name': 'Preheim', 'permalink': 'nathan-preheim'}}, {'is_past': True, 'title': 'Mobile Ecosystem and Technology Integration (METI) - Astronomer / Principal', 'person': {'first_name': 'Sebastien', 'last_name': 'Taveau', 'permalink': 'sebastien-taveau'}}, {'is_past': True, 'title': 'Sr. Product Manager', 'person': {'first_name': 'Madhura', 'last_name': 'Konkar Belani', 'permalink': 'madhura-konkar-belani'}}, {'is_past': True, 'title': 'Sr. Manager, Executive Search', 'person': {'first_name': 'Scott', 'last_name': 'Khanna', 'permalink': 'scott-khanna'}}, {'is_past': True, 'title': 'Senior Human Resource Manager', 'person': {'first_name': 'Alan', 'last_name': 'Berusch', 'permalink': 'alan-berusch'}}, {'is_past': True, 'title': 'Senior Business Development', 'person': {'first_name': 'Michael', 'last_name': 'Rolph', 'permalink': 'michael-rolph-2'}}, {'is_past': True, 'title': 'Controller', 'person': {'first_name': 'Steve', 'last_name': 'Armstrong', 'permalink': 'steve-armstrong'}}, {'is_past': True, 'title': 'Senior Product Manager', 'person': {'first_name': 'Upasana', 'last_name': 'Taku', 'permalink': 'upasana-taku-2'}}, {'is_past': True, 'title': 'Directed Merchant Integration Engineering', 'person': {'first_name': 'Aaron', 'last_name': 'Lee', 'permalink': 'aaron-lee-2'}}, {'is_past': True, 'title': 'Director of Product Development', 'person': {'first_name': 'Bill', 'last_name': 'Cornell', 'permalink': 'bill-cornell'}}, {'is_past': True, 'title': 'Engineer, Architect', 'person': {'first_name': 'Alex', 'last_name': 'Khomenko', 'permalink': 'alex-khomenko'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Nitin', 'last_name': 'Agarwal', 'permalink': 'nitin-agarwal-2'}}, {'is_past': True, 'title': 'Head of Product / Ops - PayPal Media Network', 'person': {'first_name': 'Joshua', 'last_name': 'Summers', 'permalink': 'joshua-summers'}}], 'competitions': [{'competitor': {'name': 'KushCash', 'permalink': 'kushcash'}}, {'competitor': {'name': 'TextPayMe', 'permalink': 'textpayme'}}, {'competitor': {'name': 'obopay', 'permalink': 'obopay'}}, {'competitor': {'name': 'Bill Me Later', 'permalink': 'billmelater'}}, {'competitor': {'name': 'Alipay', 'permalink': 'alipay'}}, {'competitor': {'name': 'Wesabe', 'permalink': 'wesabe'}}, {'competitor': {'name': 'Mpayy', 'permalink': 'mpayy'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'noca', 'permalink': 'noca'}}, {'competitor': {'name': 'Paymate', 'permalink': 'paymate'}}, {'competitor': {'name': 'OpenCuro Inc.', 'permalink': 'opencuro-corp'}}, {'competitor': {'name': 'Dwolla', 'permalink': 'dwolla'}}, {'competitor': {'name': 'ClientBiller.com', 'permalink': 'clientbiller-com'}}, {'competitor': {'name': 'ORCA, Inc.', 'permalink': 'onetxt'}}, {'competitor': {'name': 'Transfercel', 'permalink': 'transfercel'}}], 'providerships': [{'title': 'Public Relations', 'is_past': True, 'provider': {'name': 'Airfoil PR', 'permalink': 'airfoil-pr'}}, {'title': 'Video Production', 'is_past': False, 'provider': {'name': 'Transvideo Studios', 'permalink': 'transvideo-studios'}}], 'total_money_raised': '$197M', 'funding_rounds': [{'id': 284, 'round_code': 'd', 'source_url': 'http://news.cnet.com/2100-1017-253620.html', 'source_description': 'CNET News', 'raised_amount': 90000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 2, 'funded_day': 16, 'investments': [{'company': None, 'financial_org': {'name': 'Bankinter', 'permalink': 'bankinter'}, 'person': None}, {'company': {'name': 'eBank', 'permalink': 'ebank'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'ING Group', 'permalink': 'ing-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Providian Financial', 'permalink': 'providian-financial'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Crédit Agricole Private Equity', 'permalink': 'credit-agricole-private-equity'}, 'person': None}]}, {'id': 2257, 'round_code': 'b', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 4000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'BlueRun Ventures', 'permalink': 'bluerun-ventures'}, 'person': None}]}, {'id': 2258, 'round_code': 'a', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': None, 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Peter', 'last_name': 'Thiel', 'permalink': 'peter-thiel'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Kevin', 'last_name': 'Hartz', 'permalink': 'kevin-hartz'}}]}, {'id': 20335, 'round_code': 'unattributed', 'source_url': 'http://www.wired.com/science/discoveries/news/1999/07/20958', 'source_description': 'Wired', 'raised_amount': 3000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 7, 'funded_day': 22, 'investments': [{'company': {'name': 'Nokia Ventures', 'permalink': 'nokia-ventures'}, 'financial_org': None, 'person': None}]}, {'id': 20336, 'round_code': 'c', 'source_url': 'https://www.paypalobjects.com/html/pr-040500.html', 'source_description': 'PR Newswire', 'raised_amount': 100000000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 4, 'funded_day': 5, 'investments': [{'company': None, 'financial_org': {'name': 'Madison Dearborn Partners', 'permalink': 'madison-dearborn-partners'}, 'person': None}, {'company': {'name': 'Temasek Holdings', 'permalink': 'temasek-holdings'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vertex', 'permalink': 'vertex'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Hikari Tsushin Group', 'permalink': 'hikari-tsushin-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Compass Technology Partners', 'permalink': 'compass-technology-partners'}, 'person': None}, {'company': {'name': 'TAMC', 'permalink': 'tamc'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Qualcomm Ventures', 'permalink': 'qualcomm-ventures'}, 'person': None}, {'company': {'name': 'SingTel', 'permalink': 'singtel'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Capital Group', 'permalink': 'capital-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Digital Century Capital', 'permalink': 'digital-century-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Deutsche Bank', 'permalink': 'deutsche-bank'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Elon', 'last_name': 'Musk', 'permalink': 'elon-musk'}}]}], 'investments': [{'funding_round': {'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/10/25/mfoundry-mobile-financial-services-company-raises-15m-more/', 'source_description': 'MFoundry, mobile financial services company, raises $15M more.', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 10, 'funded_day': 24, 'company': {'name': 'mFoundry', 'permalink': 'mfoundry'}}}, {'funding_round': {'round_code': 'b', 'source_url': 'http://techcrunch.com/2013/01/24/olo-an-online-and-mobile-ordering-platform-for-restaurants-grabs-5-million-in-new-funding-from-paypal-others/', 'source_description': 'OLO, An Online And Mobile Ordering Platform For Restaurants, Grabs $5 Million In New Funding From PayPal & Others', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 1, 'funded_day': 24, 'company': {'name': 'OLO', 'permalink': 'olo'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://gigaom.com/2010/07/14/billfloat-helps-you-put-off-paying-your-bills-for-a-fee/', 'source_description': 'BillFloat Helps You Put Off Paying Your Bills — for a Fee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': None, 'funded_day': None, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2010/07/14/billfloat-launch-funding/', 'source_description': 'PayPal-Backed BillFloat Launches, Secures $4.5 Million Series A Round (Exclusive)', 'raised_amount': 4500000, 'raised_currency_code': 'USD', 'funded_year': 2010, 'funded_month': 7, 'funded_day': 10, 'company': {'name': 'BillFloat', 'permalink': 'billfloat'}}}, {'funding_round': {'round_code': 'seed', 'source_url': 'http://techcrunch.com/2013/11/13/moneytreejapan/', 'source_description': 'Japanese Personal Finance App Moneytree Raises $1.6M To Expand Into The U.S.', 'raised_amount': 1600000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 11, 'funded_day': 13, 'company': {'name': 'Moneytree', 'permalink': 'moneytree'}}}, {'funding_round': {'round_code': 'a', 'source_url': 'http://techcrunch.com/2013/12/10/gifting-service-loop-commerce-adds-paypal-as-an-investor-bringing-its-series-a-to-over-12m/', 'source_description': 'Loop Commerce raises new funding from PayPal as it tries to make gift-giving suck less', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 12, 'funded_day': 10, 'company': {'name': 'Loop Commerce', 'permalink': 'loop-commerce'}}}], 'acquisition': {'price_amount': 1500000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://news.cnet.com/2100-1017-941964.html', 'source_description': 'eBay picks up PayPal for $1.5 billion', 'acquired_year': 2002, 'acquired_month': 7, 'acquired_day': 8, 'acquiring_company': {'name': 'eBay', 'permalink': 'ebay'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/04/28/ebays-paypal-buys-mobile-payments-startup-fig-card/', 'source_description': \"eBay's PayPal Buys Mobile Payments Startup Fig Card\", 'acquired_year': 2011, 'acquired_month': 4, 'acquired_day': 28, 'company': {'name': 'FigCard', 'permalink': 'figcard'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/07/17/paypal-acquires-mobile-payments-startup-card-io/', 'source_description': 'PayPal Acquires Mobile Payments Startup Card.io', 'acquired_year': 2012, 'acquired_month': 7, 'acquired_day': 17, 'company': {'name': 'card.io', 'permalink': 'card-io'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.finsmes.com/2013/04/paypal-acquires-iron-pearl.html', 'source_description': 'PayPal Acquires Iron Pearl', 'acquired_year': 2013, 'acquired_month': 4, 'acquired_day': 13, 'company': {'name': 'IronPearl', 'permalink': 'ironpearl'}}, {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2008/01/28/ebay-acquires-fraud-sciences-for-169-million/', 'source_description': 'eBay Acquires Fraud Sciences For $169 Million', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 28, 'company': {'name': 'Fraud Sciences', 'permalink': 'fraud-sciences'}}, {'price_amount': 800000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://techcrunch.com/2013/09/26/paypal-acquires-payments-gateway-braintree-for-800m-in-cash/', 'source_description': 'EBay Acquires Payments Gateway Braintree For $800M In Cash', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 26, 'company': {'name': 'Braintree', 'permalink': 'braintree-payment-solutions'}}, {'price_amount': 135000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://en.wikipedia.org/wiki/Where.com', 'source_description': 'Where.com', 'acquired_year': 2011, 'acquired_month': None, 'acquired_day': None, 'company': {'name': 'uLocate Communications', 'permalink': 'ulocate-communications'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/12/17/someone-is-buying-stackmob-for-christmas/', 'source_description': 'PayPal Is Buying StackMob For Christmas', 'acquired_year': 2013, 'acquired_month': 12, 'acquired_day': 17, 'company': {'name': 'StackMob', 'permalink': 'stackmob'}}], 'offices': [{'description': '', 'address1': '2145 E Hamilton Ave', 'address2': '', 'zip_code': '95125', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.294465, 'longitude': -121.927696}], 'milestones': [{'id': 11916, 'description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoned_year': 2011, 'stoned_month': 1, 'stoned_day': 28, 'source_url': 'http://techcrunch.com/2011/01/28/reserve-bank-of-india-restricts-paypal-payments-to-merchants-to-under-500/', 'source_text': '', 'source_description': 'Reserve Bank Of India Restricts PayPal Payments To Merchants To Under $500', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15859, 'description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 23, 'source_url': 'http://techcrunch.com/2011/06/23/paypal-seeing-10m-in-mobile-payments-per-day-will-hit-3b-total-in-2011/', 'source_text': '', 'source_description': 'PayPal Seeing $10M In Mobile Payments Per Day; Will Hit $3B Total In 2011', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 15954, 'description': 'PayPal Hits 100 Million Active Users', 'stoned_year': 2011, 'stoned_month': 6, 'stoned_day': 27, 'source_url': 'http://techcrunch.com/2011/06/27/paypal-hits-100-million-active-users/', 'source_text': '', 'source_description': 'PayPal Hits 100 Million Active Users', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 18085, 'description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoned_year': 2011, 'stoned_month': 9, 'stoned_day': 25, 'source_url': 'http://techcrunch.com/2011/09/25/paypal-now-processing-315-million-in-payments-per-day/', 'source_text': '', 'source_description': 'PayPal Now Processing $315 Million In Payments Per Day', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 39362, 'description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoned_year': 2013, 'stoned_month': 9, 'stoned_day': 5, 'source_url': 'http://arstechnica.com/business/2013/09/paypal-freezes-45000-of-mailpiles-crowdfunded-dollars/?utm_source=dlvr.it&utm_medium=twitter', 'source_text': '', 'source_description': 'PayPal freezes $45,000 of Mailpile’s crowdfunded dollars (Updated)', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}, {'id': 44546, 'description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoned_year': 2013, 'stoned_month': 12, 'stoned_day': 19, 'source_url': 'http://allthingsd.com/20131219/braintree-officially-joins-paypal-as-800-million-ebay-acquisition-closes/?mod=atdtweet', 'source_text': '', 'source_description': 'Braintree Officially Joins PayPal as $800 Million eBay Acquisition Closes', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'PayPal', 'permalink': 'paypal'}}], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 120], 'assets/images/resized/0028/1089/281089v1-max-150x150.png'], [[250, 200], 'assets/images/resized/0028/1089/281089v1-max-250x250.png'], [[450, 360], 'assets/images/resized/0028/1089/281089v1-max-450x450.png']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.sociableblog.com/2011/11/19/paypal-send-money-app-for-facebook/', 'title': 'PayPal Send Money App for Facebook'}, {'external_url': 'http://www.allessparen.de/gutscheine/paypal', 'title': 'PayPal at Allessparen.de'}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297efe'), 'name': 'Zappos', 'permalink': 'zappos', 'crunchbase_url': 'http://www.crunchbase.com/company/zappos', 'homepage_url': 'http://www.zappos.com', 'blog_url': 'http://www.blogs.zappos.com/blogs', 'blog_feed_url': 'http://feeds.feedburner.com/ZapposBlogs', 'twitter_username': 'zappos', 'category_code': 'web', 'number_of_employees': 1500, 'founded_year': 1999, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': '', 'alias_list': '', 'email_address': 'cs@zappos.com', 'phone_number': '1-800-927-7671', 'description': 'Online footwear retailer', 'created_at': 'Thu Aug 23 06:00:47 UTC 2007', 'updated_at': 'Thu May 16 14:31:19 UTC 2013', 'overview': '

Zappos is an online retailer specializing in shoes. In addition to shoes they sell handbags, clothing, eyewear, watches and accessories.

\\n\\n

The company is currently based in Henderson, NV, with a warehouse in Shepherdsville, KY. In addition, Zappos has a small number of brick-and-mortar outlet stores.

\\n\\n

The name Zappos is derived from the Spanish word zapatos, meaning shoes.

', 'image': {'available_sizes': [[[144, 54], 'assets/images/resized/0001/2482/12482v1-max-150x150.png'], [[144, 54], 'assets/images/resized/0001/2482/12482v1-max-250x250.png'], [[144, 54], 'assets/images/resized/0001/2482/12482v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Zappos', 'permalink': 'zappos'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Tony', 'last_name': 'Hsieh', 'permalink': 'tony-hsieh'}}, {'is_past': False, 'title': 'VP Merchandising', 'person': {'first_name': 'Steven', 'last_name': 'Hill', 'permalink': 'steven-hill'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Fred', 'last_name': 'Mossler', 'permalink': 'fred-mossler'}}, {'is_past': False, 'title': 'Senior Corporate Counsel', 'person': {'first_name': 'Millie', 'last_name': 'Chou', 'permalink': 'millie-chou'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Adam', 'last_name': 'Audette', 'permalink': 'adam-audette'}}, {'is_past': False, 'title': 'Product Manager', 'person': {'first_name': 'Nick', 'last_name': 'French', 'permalink': 'nick-french'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Matt', 'last_name': 'Lauzon', 'permalink': 'matt-lauzon-2'}}, {'is_past': False, 'title': 'Culture Architect', 'person': {'first_name': 'Robert', 'last_name': 'Richman', 'permalink': 'robert-richman'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Zach', 'last_name': 'Ware', 'permalink': 'zach-ware'}}, {'is_past': False, 'title': 'VP Fulfillment Operations', 'person': {'first_name': 'Craig', 'last_name': 'Adkins', 'permalink': 'craig-adkins'}}, {'is_past': False, 'title': 'General Counsel', 'person': {'first_name': 'Steven', 'last_name': 'Gasser', 'permalink': 'steven-gasser'}}, {'is_past': False, 'title': 'Web Security Expert', 'person': {'first_name': 'Faily', 'last_name': 'Monster', 'permalink': 'faily-monster'}}, {'is_past': False, 'title': 'Business Development & Analysis', 'person': {'first_name': 'Kyle', 'last_name': 'Kelly', 'permalink': 'kyle-kelly'}}, {'is_past': False, 'title': 'Software Developer and API Advocate', 'person': {'first_name': 'Jimmy', 'last_name': 'Jacobson', 'permalink': 'jimmy-jacobson'}}, {'is_past': False, 'title': 'Director of Engineering', 'person': {'first_name': 'Will', 'last_name': 'Young', 'permalink': 'will-young'}}, {'is_past': True, 'title': 'Chairman & COO', 'person': {'first_name': 'Alfred', 'last_name': 'Lin', 'permalink': 'alfred-lin'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Michael', 'last_name': 'Moritz', 'permalink': 'michael-moritz'}}, {'is_past': True, 'title': 'Director of User Experience', 'person': {'first_name': 'Brian', 'last_name': 'Kalma', 'permalink': 'brian-kalma'}}, {'is_past': True, 'title': 'Senior Merchandiser', 'person': {'first_name': 'Jon', 'last_name': 'Fahrner', 'permalink': 'jon-fahrner'}}, {'is_past': True, 'title': 'Software Developer', 'person': {'first_name': 'Jason', 'last_name': 'Hurt', 'permalink': 'jason-hurt'}}, {'is_past': True, 'title': 'head of online marketing', 'person': {'first_name': 'Jim', 'last_name': 'Kingsbury', 'permalink': 'jim-kingsbury'}}, {'is_past': True, 'title': 'Senior Financial Analyst', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Senior Finance Manager - Real Estate + Facilities', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Community Architect', 'person': {'first_name': 'Thomas', 'last_name': 'Knoll', 'permalink': 'thomas-knoll'}}, {'is_past': True, 'title': 'Web Producer', 'person': {'first_name': 'Gerard', 'last_name': 'Ramos', 'permalink': 'gerard-ramos'}}, {'is_past': True, 'title': 'Senior Front-End Developer', 'person': {'first_name': 'Dylan', 'last_name': 'Bathurst', 'permalink': 'dylan-bathurst'}}, {'is_past': True, 'title': 'Senior Front-end Developer', 'person': {'first_name': 'Jen', 'last_name': 'Wilhelm', 'permalink': 'jen-wilhelm'}}, {'is_past': True, 'title': 'Executive Consultant - HR', 'person': {'first_name': 'Michele', 'last_name': 'Murgel', 'permalink': 'michele-murgel'}}, {'is_past': True, 'title': 'Senior Manager - Financial Planning & Analysis', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}, {'is_past': True, 'title': 'Director - Operations Finance', 'person': {'first_name': 'Jimmy', 'last_name': 'Abbott', 'permalink': 'jimmy-abbott-2'}}], 'competitions': [{'competitor': {'name': 'Spartoo', 'permalink': 'spartoo'}}], 'providerships': [], 'total_money_raised': '$62.8M', 'funding_rounds': [{'id': 450, 'round_code': 'd', 'source_url': '', 'source_description': '', 'raised_amount': 20000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 451, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 6, 'funded_day': 1, 'investments': []}, {'id': 452, 'round_code': 'c', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 7500000, 'raised_currency_code': 'USD', 'funded_year': 2002, 'funded_month': 5, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Tony', 'last_name': 'Hsieh', 'permalink': 'tony-hsieh'}}]}, {'id': 453, 'round_code': 'b', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 1100000, 'raised_currency_code': 'USD', 'funded_year': 2000, 'funded_month': 3, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Venture Frogs', 'permalink': 'venture-frogs'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Scott', 'last_name': 'Banister', 'permalink': 'scott-banister'}}]}, {'id': 7641, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 6000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 8, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'ZVest', 'permalink': 'zvest'}, 'person': None}]}, {'id': 7642, 'round_code': 'e', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 13000000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 7643, 'round_code': 'a', 'source_url': '', 'source_description': 'Zappos', 'raised_amount': 150000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SV Angel', 'permalink': 'sv-angel'}, 'person': None}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Erik', 'last_name': 'Moore', 'permalink': 'erik-moore'}}]}, {'id': 18448, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': None, 'person': {'first_name': 'Hadi', 'last_name': 'Partovi', 'permalink': 'hadi-partovi'}}, {'company': None, 'financial_org': None, 'person': {'first_name': 'Ali', 'last_name': 'Partovi', 'permalink': 'ali-partovi'}}]}], 'investments': [], 'acquisition': {'price_amount': 1200000000, 'price_currency_code': 'USD', 'term_code': 'stock', 'source_url': 'http://techcrunch.com/2009/07/22/amazon-buys-zappos/', 'source_description': 'TechCrunch: Amazon Buys Zappos', 'acquired_year': 2009, 'acquired_month': 7, 'acquired_day': 22, 'acquiring_company': {'name': 'Amazon', 'permalink': 'amazon'}}, 'acquisitions': [], 'offices': [{'description': 'Headquarters', 'address1': '', 'address2': '', 'zip_code': '', 'city': 'Henderson', 'state_code': 'NV', 'country_code': 'USA', 'latitude': 36.032976, 'longitude': -115.064859}, {'description': 'Warehouse', 'address1': '376 Zappos.com Blvd.', 'address2': '', 'zip_code': '40165', 'city': 'Shepherdsville', 'state_code': 'KY', 'country_code': 'USA', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 864, 'description': 'My baby cousin just trneud 1 and I hope he starts walking x_x when we try to teach him\\ufeff he just starts to get on the floor and crawl .. He hasnt laying on his belly much either ..', 'stoned_year': 2008, 'stoned_month': 11, 'stoned_day': 8, 'source_url': 'http://www.facebook.com/profile.php?id=100003406050193', 'source_text': '', 'source_description': 'ggBpMcdWdpgcOUnBHO', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Zappos', 'permalink': 'zappos'}}], 'ipo': None, 'video_embeds': [{'embed_code': '', 'description': '

CEO Tony Hsieh presentation at Web 2.0 Summit, November 2008

'}, {'embed_code': '', 'description': '

Zappos on Nightline

'}, {'embed_code': '', 'description': '

Zappos on Oprah!

'}], 'screenshots': [], 'external_links': [{'external_url': 'http://blog.mixergy.com/customers-service-zappos/', 'title': \"Secrets of Zappos's Customer Service (interview)\"}], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297f0c'), 'name': 'Alibaba', 'permalink': 'alibaba', 'crunchbase_url': 'http://www.crunchbase.com/company/alibaba', 'homepage_url': 'http://www.alibaba.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'AlibabaTalk', 'category_code': 'ecommerce', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 6, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'ecommerce', 'alias_list': '', 'email_address': '', 'phone_number': '', 'description': '', 'created_at': 'Wed Aug 22 08:31:53 UTC 2007', 'updated_at': 'Tue Dec 17 02:54:59 UTC 2013', 'overview': '

Alibaba Group is China’s leading e-commerce company, operating the world’s largest online marketplaces for both international and domestic China trade, as well as China’s most popular online payment system, AliPay.

\\n\\n

Alibaba Group is a family of Internet-based businesses with a mission to make it easy for anyone to buy or sell anywhere in the world. Since its inception, it has developed leading businesses in consumer e-commerce, online payment, business-to-business marketplaces and cloud computing and has expanded into new areas such as mobile apps, mobile operating system and Internet TV. The company is focused on fostering the development of an open, collaborative and prosperous e-commerce ecosystem that benefits consumers, merchants and the economy as a whole.

\\n\\n

Alibaba assists millions of buyers and suppliers all over the world to do business online by three trading markets of its own. Three online trading markets include: an International Trading Market which intensively serves for global import and export business, a Chinese Trading Market which gathers domestic business and a Japanese Trading Market which promotes Japanese export and domestic sales by an associative company’s operation.

\\n\\n

Alibaba Group has 12 major businesses and affiliated entities, including alibaba.com, Taobao.com, Tmall, Alipay, koubei.com, Aliyun, etao.com, net.cn, Juhuasuan.com, CNZZ and Onetouch.

\\n\\n

In 1999, Alibaba Group is officially established by its 18 founders, led by Jack Ma. In February, 2004, Alibaba received $82 million from Softbank Corp. and other VC. In August, 2005, Yahoo and Alibaba formed strategic partnership and Alibaba made a net profit of 250 million dollars. On November 6, 2007, Alibaba.com got successfully listed on the Hong Kong Stock Exchange.

\\n\\n

As of December 31, 2006, with approximately 3,500 employees, Alibaba is the first e-commerce company to reach 8 million online retailors from more than 220 countries and regions. The Group provides more than 8.1 million entries of business information per day, making it one of the largest-scale and most active B2B markets and business communities.\\nMajor rivals are Amazon and Baidu.

', 'image': {'available_sizes': [[[150, 32], 'assets/images/resized/0000/4465/4465v3-max-150x150.png'], [[210, 46], 'assets/images/resized/0000/4465/4465v3-max-250x250.png'], [[210, 46], 'assets/images/resized/0000/4465/4465v3-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Alibaba.com', 'permalink': 'alibaba-com'}, {'name': 'Aliyun', 'permalink': 'aliyun'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jonathan', 'last_name': 'Lu', 'permalink': 'jonathan-lu'}}, {'is_past': False, 'title': 'SVP & Co - Founder', 'person': {'first_name': 'Eddie', 'last_name': 'Wu', 'permalink': 'eddie-wu'}}, {'is_past': False, 'title': 'CEO, Alibaba Small & Micro Financial Services Group (under formation)', 'person': {'first_name': 'Lucy', 'last_name': 'Peng', 'permalink': 'lucy-peng'}}, {'is_past': False, 'title': 'Executive Chairman', 'person': {'first_name': 'Jack', 'last_name': 'Ma', 'permalink': 'jack-ma'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Maggie', 'last_name': 'Wu', 'permalink': 'maggie-wu'}}, {'is_past': False, 'title': 'SVP & Deputy Chief Technology Office', 'person': {'first_name': 'Leo', 'last_name': 'Jiang', 'permalink': 'leo-jiang'}}, {'is_past': False, 'title': 'Chief Marketing Officer,', 'person': {'first_name': 'Tiger', 'last_name': 'Wang', 'permalink': 'tiger-wang'}}, {'is_past': False, 'title': 'Chief Strategy Officer', 'person': {'first_name': 'Zeng', 'last_name': 'Ming', 'permalink': 'zeng-ming'}}, {'is_past': False, 'title': 'Chief People Officer & SVP', 'person': {'first_name': 'Trudy', 'last_name': 'Dai', 'permalink': 'trudy-dai'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Sophie', 'last_name': 'Wu', 'permalink': 'sophie-wu'}}, {'is_past': False, 'title': 'SVP', 'person': {'first_name': 'Daniel', 'last_name': 'Zhang', 'permalink': 'daniel-zhang'}}, {'is_past': False, 'title': 'Executive Vice Chairman', 'person': {'first_name': 'Joe', 'last_name': 'Tsai', 'permalink': 'joe-tsai'}}, {'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'Wang', 'last_name': 'Jian', 'permalink': 'wang-jian'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Zhang', 'last_name': 'Yu', 'permalink': 'zhang-yu'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Yun', 'last_name': 'Ma', 'permalink': 'yun-ma'}}, {'is_past': False, 'title': 'Board of Directors', 'person': {'first_name': 'Jacqueline', 'last_name': 'Reses', 'permalink': 'jacqueline-reses'}}, {'is_past': False, 'title': 'Chief Risk Officer & Group Secretary', 'person': {'first_name': 'Polo', 'last_name': 'Shao', 'permalink': 'polo-shao'}}, {'is_past': False, 'title': 'President', 'person': {'first_name': 'Ye', 'last_name': 'Peng', 'permalink': 'ye-peng'}}, {'is_past': False, 'title': 'VP', 'person': {'first_name': 'Jeff', 'last_name': 'Zhang', 'permalink': 'jeff-zhang'}}, {'is_past': False, 'title': 'Investor', 'person': {'first_name': 'Thomas', 'last_name': 'Ng', 'permalink': 'thomas-ng'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Jack', 'last_name': 'Ma', 'permalink': 'jack-ma'}}, {'is_past': True, 'title': 'Senior Director of Engineering', 'person': {'first_name': 'Jing', 'last_name': 'Wang', 'permalink': 'jing-wang'}}, {'is_past': True, 'title': 'Business Manager', 'person': {'first_name': 'Amy', 'last_name': 'Qin', 'permalink': 'amy-qin'}}, {'is_past': True, 'title': 'Product Manager and Team Leader', 'person': {'first_name': 'Ken', 'last_name': 'Zhang', 'permalink': 'ken-zhang'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Michael', 'last_name': 'Ge Xu', 'permalink': 'michael-ge-xu'}}, {'is_past': True, 'title': 'Risk Specialist', 'person': {'first_name': 'Tao', 'last_name': 'Wei', 'permalink': 'tao-wei'}}], 'competitions': [{'competitor': {'name': 'MFG.com', 'permalink': 'mfg'}}, {'competitor': {'name': 'Baidu', 'permalink': 'baidu'}}, {'competitor': {'name': 'Global Sources', 'permalink': 'global-sources'}}, {'competitor': {'name': 'Made-in-China.com', 'permalink': 'made-in-china-com'}}, {'competitor': {'name': 'Mango B2B Ltd.', 'permalink': 'mango-b2b-limited'}}], 'providerships': [], 'total_money_raised': '$5M', 'funding_rounds': [{'id': 58112, 'round_code': 'angel', 'source_url': '', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 1999, 'funded_month': 10, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Goldman Sachs', 'permalink': 'goldman-sachs'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Fidelity Asia Ventures', 'permalink': 'fidelity-asia-ventures'}, 'person': None}]}], 'investments': [{'funding_round': {'round_code': 'private_equity', 'source_url': 'http://techcrunch.com/2013/04/29/sina-weibo/', 'source_description': 'Sina Weibo, China’s Equivalent of Facebook and Twitter, Gets $586M Investment From Alibaba', 'raised_amount': 586000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 4, 'funded_day': 29, 'company': {'name': 'Sina Weibo', 'permalink': 'sina-weibo'}}}, {'funding_round': {'round_code': 'unattributed', 'source_url': 'http://www.businessinsider.com/this-scandal-plagued-ex-yahoo-ceo-just-raised-75-million-and-theres-an-epic-backstory-behind-it-2013-8', 'source_description': \"This Scandal-Plagued Ex-Yahoo CEO Just Raised $75 Million, And There's An Epic Backstory Behind It\", 'raised_amount': 75000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 8, 'funded_day': 19, 'company': {'name': 'ShopRunner', 'permalink': 'shoprunner'}}}, {'funding_round': {'round_code': 'c', 'source_url': 'http://techcrunch.com/2013/10/03/quixey-series-c/', 'source_description': 'Quixey Raises $50M From Alibaba & Others To Build The Search Engine For The Mobile Era', 'raised_amount': 50000000, 'raised_currency_code': 'USD', 'funded_year': 2013, 'funded_month': 10, 'funded_day': 3, 'company': {'name': 'Quixey', 'permalink': 'quixey'}}}], 'acquisition': {'price_amount': 1000000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://docs.yahoo.com/docs/pr/release1256.html', 'source_description': 'YAHOO! AND ALIBABA.COM FORM STRATEGIC PARTNERSHIP IN CHINA ', 'acquired_year': 2005, 'acquired_month': 8, 'acquired_day': 11, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, 'acquisitions': [{'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.freshnews.com/news/347880/alibabacom-acquires-vendio-continues-advance-global-e-commerce-platform', 'source_description': 'Alibaba.com Acquires Vendio, Continues to Advance Global E-Commerce Platform', 'acquired_year': 2010, 'acquired_month': 6, 'acquired_day': 24, 'company': {'name': 'Vendio', 'permalink': 'vendio'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/24/alibaba-group-acquires-kanbox-a-personal-cloud-storage-service/', 'source_description': 'Alibaba Group Acquires Kanbox, A Personal Cloud Storage Service', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 25, 'company': {'name': 'Kanbox', 'permalink': 'kanbox'}}], 'offices': [{'description': '', 'address1': '6/F Chuangye Mansion, East Software Park', 'address2': 'No.99 Huaxing Road', 'zip_code': '310099', 'city': 'Hangzhou', 'state_code': None, 'country_code': 'CHN', 'latitude': None, 'longitude': None}], 'milestones': [{'id': 1514, 'description': 'Alibaba gains exclusive rights to the Yahoo brand in China.', 'stoned_year': 2005, 'stoned_month': 8, 'stoned_day': 11, 'source_url': 'http://www.chinadaily.com.cn/english/doc/2005-08/11/content_468252.htm', 'source_text': '', 'source_description': 'Yahoo buys US$1 billion stake in Alibaba', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 12709, 'description': 'Alibaba.com CEO And COO Out Because Of Vendor Fraud', 'stoned_year': 2011, 'stoned_month': 2, 'stoned_day': 21, 'source_url': 'http://techcrunch.com/2011/02/21/alibaba/', 'source_text': '', 'source_description': 'Alibaba.com CEO And COO Out Because Of Vendor Fraud', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 21597, 'description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://invest-iq.net/2011/10/silver-lake-and-dst-global-invest-in-chinas-alibaba-group/', 'source_text': None, 'source_description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 21598, 'description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoned_year': 2011, 'stoned_month': 10, 'stoned_day': 4, 'source_url': 'http://invest-iq.net/2011/10/silver-lake-and-dst-global-invest-in-chinas-alibaba-group/', 'source_text': None, 'source_description': 'Silver Lake and DST Global Invest in China’s Alibaba Group', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 33823, 'description': 'Alibaba spends $300M to buy one third of Chinese mapping company\\r\\n', 'stoned_year': 2013, 'stoned_month': 5, 'stoned_day': 10, 'source_url': 'http://venturebeat.com/2013/05/10/alibaba-autonavi/', 'source_text': '', 'source_description': 'Alibaba spends $300M to buy one third of Chinese mapping company', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 35287, 'description': 'Freshfields, W&C secure $8 bln financing for Alibaba', 'stoned_year': 2013, 'stoned_month': 6, 'stoned_day': 17, 'source_url': 'http://asia.legalbusinessonline.com/news/breaking-news/freshfields-wandc-secure-8-bln-financing-for-alibaba/111119', 'source_text': '', 'source_description': 'Freshfields, W&C secure $8 bln financing for Alibaba', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 40852, 'description': 'Alibaba invests $193 million to buy Chinese asset manager Tianhong', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 9, 'source_url': 'http://www.reuters.com/article/2013/10/09/us-alibaba-funds-idUSBRE9980G620131009?feedType=RSS&feedName=technologyNews', 'source_text': '', 'source_description': 'Alibaba invests $193 million to buy Chinese asset manager Tianhong', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}, {'id': 41478, 'description': 'Alibaba Reportedly Acquiring Social Shopping Service Mogujie for $200 million ', 'stoned_year': 2013, 'stoned_month': 10, 'stoned_day': 22, 'source_url': 'http://technode.com/2013/10/22/alibaba-reportedly-acquiring-social-shopping-service-mogujie-for-200-million-dollars/?utm_source=twitterfeed&utm_medium=twitter', 'source_text': '', 'source_description': 'Alibaba Reportedly Acquiring Social Shopping Service Mogujie for $200 million', 'stoneable_type': 'Company', 'stoned_value': None, 'stoned_value_type': None, 'stoned_acquirer': None, 'stoneable': {'name': 'Alibaba', 'permalink': 'alibaba'}}], 'ipo': {'valuation_amount': None, 'valuation_currency_code': 'USD', 'pub_year': 2007, 'pub_month': 11, 'pub_day': 6, 'stock_symbol': 'HKSE:1688.HK'}, 'video_embeds': [], 'screenshots': [], 'external_links': [{'external_url': 'http://www.alibaba.com/showroom/category.html', 'title': 'hot products'}, {'external_url': 'http://www.alibaba.com/countrysearch/CN/China.html', 'title': 'China suppliers'}, {'external_url': 'http://www.alibaba.com/wholesalers/wholesaler.html', 'title': 'Wholesalers '}, {'external_url': 'http://www.alibaba.com/manufacturers/manufacturer.html', 'title': 'Manufacturers'}, {'external_url': 'http://www.tradeford.com/directory/b2b/alibaba.com_d1.html', 'title': 'Alibaba.com Review'}, {'external_url': 'http://ceoworld.biz/ceo/2013/09/18/alibaba-mobile-apps-to-be-pre-installed-on-smartphones-sold-through-china-telecom', 'title': 'Alibaba Mobile Apps To Be Pre-Installed On Smartphones Sold Through China Telecom '}, {'external_url': 'http://www.made-in-china.com/', 'title': 'alibaba partner'}], 'partners': [{'partner_name': 'CTQuan', 'homepage_url': 'http://www.alibaba.com', 'link_1_url': None, 'link_2_url': None, 'link_3_url': None, 'link_1_name': None, 'link_2_name': None, 'link_3_name': None}]}, {'_id': ObjectId('52cdef7c4bab8bd675297d90'), 'name': 'Postini', 'permalink': 'postini', 'crunchbase_url': 'http://www.crunchbase.com/company/postini', 'homepage_url': 'http://postini.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'web', 'number_of_employees': None, 'founded_year': 1999, 'founded_month': 6, 'founded_day': 2, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': '', 'phone_number': '888.584.3150', 'description': None, 'created_at': 'Fri Jun 08 12:19:51 UTC 2007', 'updated_at': 'Sat Aug 13 18:02:34 UTC 2011', 'overview': '

Postini focuses on two main issues: security and compliance. Postini states that it handles more than 1 billion messages everyday and protects more than 35,000 businesses worldwide.

\\n\\n

Postini offers solutions that protect your company from malicious internet attacks. The Postini Communications Suite eliminates unwanted content from email, instant messaging, and the web. Postini aims to increase business productivity. It will also automatically encrypt senstive messages between you and business partners.

\\n\\n

Postini currently holds two patents in the area of security and compliance. It was acquired by Google in 2007 and now operates as a subsidiary.

', 'image': {'available_sizes': [[[150, 61], 'assets/images/resized/0000/3697/3697v1-max-150x150.png'], [[183, 75], 'assets/images/resized/0000/3697/3697v1-max-250x250.png'], [[183, 75], 'assets/images/resized/0000/3697/3697v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Postini Solutions', 'permalink': 'postini-solutions'}], 'relationships': [{'is_past': False, 'title': 'Board', 'person': {'first_name': 'Scott', 'last_name': 'Petry', 'permalink': 'scott-petry'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Don', 'last_name': 'Beck', 'permalink': 'don-beck'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Harrison', 'last_name': 'B. Miller', 'permalink': 'harrison-b-miller'}}, {'is_past': True, 'title': 'CFO', 'person': {'first_name': 'Murray', 'last_name': 'J. Demo', 'permalink': 'murray-j-demo'}}, {'is_past': True, 'title': 'VP Marketing', 'person': {'first_name': 'Steve', 'last_name': 'Kahan', 'permalink': 'steve-kahan'}}, {'is_past': True, 'title': 'SVP Sales and Marketing', 'person': {'first_name': 'Mike', 'last_name': 'Purcell', 'permalink': 'mike-purcell'}}, {'is_past': True, 'title': 'Executive Vice President', 'person': {'first_name': 'Jocelyn', 'last_name': 'Ding', 'permalink': 'jocelyn-ding'}}, {'is_past': True, 'title': 'Board', 'person': {'first_name': 'Quentin', 'last_name': 'Gallivan', 'permalink': 'quentin-gallivan'}}, {'is_past': True, 'title': 'Sr. EMEA Operations & Tech Support Manager', 'person': {'first_name': 'James', 'last_name': 'Chivers', 'permalink': 'james-chivers'}}, {'is_past': True, 'title': 'VP Client Services', 'person': {'first_name': 'Mark', 'last_name': 'Fishwick', 'permalink': 'mark-fishwick'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Raman', 'last_name': 'Khanna', 'permalink': 'raman-khanna'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Ryan', 'last_name': 'McIntyre', 'permalink': 'ryan-mcintyre'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'John', 'last_name': 'Johnston', 'permalink': 'john-johnston'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Roger', 'last_name': 'S. Siboni', 'permalink': 'roger-s-siboni'}}, {'is_past': True, 'title': 'Channel Sales', 'person': {'first_name': 'Al', 'last_name': 'Powell', 'permalink': 'al-powell'}}], 'competitions': [{'competitor': {'name': 'RescueTime', 'permalink': 'rescuetime'}}, {'competitor': {'name': 'MailBlocks', 'permalink': 'mailblocks'}}, {'competitor': {'name': 'Suzerein Solutions', 'permalink': 'suzerein-solutions'}}], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': {'price_amount': 625000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'source_description': 'http://www.techcrunch.com/2007/07/09/google-acquires-postini-for-625-million/', 'acquired_year': 2007, 'acquired_month': 7, 'acquired_day': 9, 'acquiring_company': {'name': 'Google', 'permalink': 'google'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '959 Skyway Road, Suite 200', 'address2': None, 'zip_code': '94070', 'city': 'San Carlos', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.506885, 'longitude': -122.247573}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd67529831c'), 'name': 'Danger', 'permalink': 'danger', 'crunchbase_url': 'http://www.crunchbase.com/company/danger', 'homepage_url': 'http://www.danger.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': '', 'category_code': 'mobile', 'number_of_employees': 0, 'founded_year': 1999, 'founded_month': 12, 'founded_day': 1, 'deadpooled_year': 2011, 'deadpooled_month': 5, 'deadpooled_day': 31, 'deadpooled_url': 'http://techcrunch.com/2011/02/28/t-mobile-sidekick-dead-cancelled-may-31st/', 'tag_list': '', 'alias_list': '', 'email_address': 'info@danger.com', 'phone_number': '', 'description': 'Software Platform for Sidekick', 'created_at': 'Sun Feb 17 19:39:59 UTC 2008', 'updated_at': 'Sat Mar 03 06:14:00 UTC 2012', 'overview': '

Danger provided the software platform and hardware behind T-Mobile’s Sidekick phone. In its prime, the youth-friendly, messaging-focused phone handled over 4,000 messages and 400 pageviews per user per month, according to figures quoted on Danger’s website as of February 2008.

\\n\\n

Microsoft acquired Danger in 2008, and the company made headlines in 2009 when an issue with its servers caused users to lose all data not stored locally.

\\n\\n

On May 31, 2011, T-Mobile and Microsoft discontinued the cloud data service to all Danger-powered Sidekick devices.

', 'image': {'available_sizes': [[[150, 25], 'assets/images/resized/0001/2611/12611v1-max-150x150.png'], [[150, 25], 'assets/images/resized/0001/2611/12611v1-max-250x250.png'], [[150, 25], 'assets/images/resized/0001/2611/12611v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Sidekick', 'permalink': 'sidekick'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Jacques', 'last_name': 'Vincent', 'permalink': 'jacques-vincent'}}, {'is_past': None, 'title': 'SVP of Advanced Products (Founder)', 'person': {'first_name': 'Matt', 'last_name': 'Hershenson', 'permalink': 'matt-hershenson'}}, {'is_past': None, 'title': 'CTO (Founder)', 'person': {'first_name': 'Joe', 'last_name': 'Britt', 'permalink': 'joe-britt'}}, {'is_past': None, 'title': 'CFO', 'person': {'first_name': 'Nancy', 'last_name': 'J. Hilker', 'permalink': 'nancy-j-hilker'}}, {'is_past': None, 'title': 'SVP of Engineering', 'person': {'first_name': 'Les', 'last_name': 'Hamilton', 'permalink': 'les-hamilton'}}, {'is_past': None, 'title': 'SVP of Worldwide Sales and Alliances', 'person': {'first_name': 'James', 'last_name': 'Isaacs', 'permalink': 'james-isaacs'}}, {'is_past': None, 'title': 'Board', 'person': {'first_name': 'Joanna', 'last_name': 'Rees', 'permalink': 'joanna-rees'}}, {'is_past': True, 'title': 'Chairman & CEO', 'person': {'first_name': 'Henry', 'last_name': 'R. Nothhaft', 'permalink': 'henry-r-nothhaft'}}, {'is_past': True, 'title': 'Chairman and CEO', 'person': {'first_name': 'Hank', 'last_name': 'Nothhaft', 'permalink': 'hank-nothhaft'}}, {'is_past': True, 'title': 'SVP and CFO', 'person': {'first_name': 'Nancy', 'last_name': 'J. Hilker', 'permalink': 'nancy-j-hilker'}}, {'is_past': True, 'title': 'VP of Engineering', 'person': {'first_name': 'Thierry', 'last_name': 'Chassaing', 'permalink': 'thierry-chassaing'}}, {'is_past': True, 'title': 'VP, Service Operations', 'person': {'first_name': 'Jonathan', 'last_name': 'Heiliger', 'permalink': 'jonathan-heiliger'}}, {'is_past': True, 'title': 'SVP of Service Operations', 'person': {'first_name': 'Donn', 'last_name': 'Dobkin', 'permalink': 'donn-dobkin'}}, {'is_past': True, 'title': '', 'person': {'first_name': 'Andy', 'last_name': 'Rubin', 'permalink': 'andy-rubin'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Tony', 'last_name': 'Conrad', 'permalink': 'tony-conrad'}}, {'is_past': True, 'title': 'Vice President & General Counsel', 'person': {'first_name': 'Scott', 'last_name': 'Darling', 'permalink': 'scott-darling'}}, {'is_past': True, 'title': 'Investor', 'person': {'first_name': 'Pejman', 'last_name': 'Nozad', 'permalink': 'pejman-nozad'}}, {'is_past': True, 'title': 'Sr. Director, Service Engineering', 'person': {'first_name': 'Scott', 'last_name': 'Kister', 'permalink': 'scott-kister'}}, {'is_past': True, 'title': 'Director Business Development', 'person': {'first_name': 'Tom', 'last_name': 'Purcell', 'permalink': 'tom-purcell'}}], 'competitions': [{'competitor': {'name': 'Google', 'permalink': 'google'}}], 'providerships': [], 'total_money_raised': '$118M', 'funding_rounds': [{'id': 1553, 'round_code': 'b', 'source_url': 'http://www.danger.com/press/pr.php?cat=2001&id=20011015', 'source_description': 'Danger, Inc. Announces $36 Million in Series B Financing', 'raised_amount': 36000000, 'raised_currency_code': 'USD', 'funded_year': 2001, 'funded_month': 10, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Orange Ventures', 'permalink': 'orange-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'InOvate Communications Group', 'permalink': 'inovate-communications-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Diamondhead Ventures', 'permalink': 'diamondhead-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'T-Venture', 'permalink': 't-venture'}, 'person': None}]}, {'id': 1554, 'round_code': 'd', 'source_url': 'http://www.danger.com/press/pr.php?cat=2003&id=20030203', 'source_description': 'Danger, Inc. Announces $35 Million in Series D Financing', 'raised_amount': 35000000, 'raised_currency_code': 'USD', 'funded_year': 2003, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Meritech Capital Partners', 'permalink': 'meritech-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Venture Strategy Partners', 'permalink': 'venture-strategy-partners'}, 'person': None}]}, {'id': 1555, 'round_code': 'd', 'source_url': 'http://www.danger.com/press/pr.php?cat=2004&id=20040723a', 'source_description': 'Danger, Inc. Announces $37 Million Financing Round', 'raised_amount': 37000000, 'raised_currency_code': 'USD', 'funded_year': 2004, 'funded_month': 7, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Institutional Venture Partners', 'permalink': 'institutional-venture-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Adams Street Partners', 'permalink': 'adams-street-partners'}, 'person': None}]}, {'id': 13499, 'round_code': 'e', 'source_url': '', 'source_description': 'EDGAR', 'raised_amount': 10300000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 21, 'investments': [{'company': None, 'financial_org': {'name': 'T-Venture', 'permalink': 't-venture'}, 'person': None}, {'company': None, 'financial_org': {'name': 'SoftBank Capital', 'permalink': 'softbank-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Mobius Venture Capital', 'permalink': 'mobius-venture-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 500000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.techcrunch.com/2008/02/11/meanwhile-microsoft-buys-danger/', 'source_description': 'Meanwhile, Microsoft Buys Danger For $500 Million', 'acquired_year': 2008, 'acquired_month': 2, 'acquired_day': 11, 'acquiring_company': {'name': 'Microsoft', 'permalink': 'microsoft'}}, 'acquisitions': [], 'offices': [{'description': None, 'address1': '3101 Park Blvd', 'address2': '', 'zip_code': '94306', 'city': 'Palo Alto', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.425168, 'longitude': -122.136248}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298651'), 'name': 'Clearwell Systems', 'permalink': 'clearwell-systems', 'crunchbase_url': 'http://www.crunchbase.com/company/clearwell-systems', 'homepage_url': 'http://www.clearwellsystems.com', 'blog_url': 'http://www.clearwellsystems.com/e-discovery-blog/', 'blog_feed_url': 'http://feeds.feedburner.com/e-discovery-blog', 'twitter_username': '', 'category_code': 'software', 'number_of_employees': 210, 'founded_year': 2004, 'founded_month': 12, 'founded_day': 6, 'deadpooled_year': 2011, 'deadpooled_month': 5, 'deadpooled_day': 19, 'deadpooled_url': 'http://tinyurl.ws/2a', 'tag_list': 'e-discovery, ediscovery, electronic-discovery, legal-discovery', 'alias_list': '', 'email_address': 'info@clearwellsystems.com', 'phone_number': '650-526-0600', 'description': 'Computer Software', 'created_at': 'Wed Mar 26 00:54:26 UTC 2008', 'updated_at': 'Mon Oct 17 00:38:16 UTC 2011', 'overview': '

Clearwell delivers the industry’s leading enterprise-class e-discovery management platform that enables corporations to simultaneously manage all of their legal, regulatory and investigative matters with a single application. With Clearwell, attorneys, litigation support professionals, and forensics teams accelerate early case assessments, lower processing costs, reduce review workload, and ensure the defensibility of the e-discovery process.

\\n\\n

Clearwell is backed by Sequoia Capital, Redpoint Ventures and DAG Ventures.

', 'image': {'available_sizes': [[[150, 44], 'assets/images/resized/0001/6364/16364v1-max-150x150.jpg'], [[250, 73], 'assets/images/resized/0001/6364/16364v1-max-250x250.jpg'], [[450, 132], 'assets/images/resized/0001/6364/16364v1-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co-Founder, CTO, Board Member', 'person': {'first_name': 'Venkat', 'last_name': 'Rangan', 'permalink': 'venkat-rangan-2'}}, {'is_past': True, 'title': 'CEO, Board Member', 'person': {'first_name': 'Aaref', 'last_name': 'Hilaly', 'permalink': 'aaref-hilaly'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Jim', 'last_name': 'Goetz', 'permalink': 'jim-goetz'}}, {'is_past': True, 'title': 'Director, Product Management', 'person': {'first_name': 'Will', 'last_name': 'Uppington', 'permalink': 'will-uppington'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Tom', 'last_name': 'Dyal', 'permalink': 'tom-dyal'}}, {'is_past': True, 'title': 'Director Product Management', 'person': {'first_name': 'Teddy', 'last_name': 'Cha', 'permalink': 'teddy-cha'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$29M', 'funding_rounds': [{'id': 2443, 'round_code': 'c', 'source_url': 'http://venturebeat.com/2007/08/22/clearwell-email-analyics-company-raises-17m/', 'source_description': 'Clearwell, email analytics company, raises $17M.', 'raised_amount': 17000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 8, 'funded_day': 22, 'investments': [{'company': None, 'financial_org': {'name': 'DAG Ventures', 'permalink': 'dag-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 14024, 'round_code': 'b', 'source_url': 'http://www.clearwellsystems.com/ediscovery-news/pr_04_04_06.php', 'source_description': 'Email Intelligence Pioneer Clearwell Systems Announces $12 Million in Funding', 'raised_amount': 12000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 4, 'funded_day': 4, 'investments': [{'company': None, 'financial_org': {'name': 'Redpoint Ventures', 'permalink': 'redpoint-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 410000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://www.marketwire.com/press-release/symantec-completes-acquisition-of-clearwell-systems-nasdaq-symc-1536339.htm', 'source_description': 'Symantec Completes Acquisition of Clearwell Systems', 'acquired_year': 2011, 'acquired_month': 7, 'acquired_day': 11, 'acquiring_company': {'name': 'Symantec', 'permalink': 'symantec'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '441 Logue Ave.', 'address2': '', 'zip_code': '94043', 'city': 'Mountain View', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.398022, 'longitude': -122.049143}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 121], 'assets/images/resized/0007/7292/77292v1-max-150x150.jpg'], [[250, 201], 'assets/images/resized/0007/7292/77292v1-max-250x250.jpg'], [[450, 363], 'assets/images/resized/0007/7292/77292v1-max-450x450.jpg']], 'attribution': None}, {'available_sizes': [[[150, 137], 'assets/images/resized/0009/5579/95579v2-max-150x150.jpg'], [[250, 228], 'assets/images/resized/0009/5579/95579v2-max-250x250.jpg'], [[450, 411], 'assets/images/resized/0009/5579/95579v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [{'external_url': 'http://www.clearwellsystems.com/news/pr_02_02_09.php', 'title': '“CLEARWELL MOBILEâ€\\x9d SOLVES CROSS-BORDER E-DISCOVERY CHALLENGES'}], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd6752989b8'), 'name': 'PrimeSense', 'permalink': 'primesense', 'crunchbase_url': 'http://www.crunchbase.com/company/primesense', 'homepage_url': 'http://primesense.com', 'blog_url': 'http://www.primesense.com/news/our-blog/', 'blog_feed_url': '', 'twitter_username': 'GoPrimeSense', 'category_code': 'hardware', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 5, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'motion-capture, interact, input-device, game-interface, camera, digital, world, sensor, 3d', 'alias_list': '', 'email_address': 'contact@primesense.com', 'phone_number': '+972.3.769.2222', 'description': '3D device manufacturer', 'created_at': 'Tue May 06 20:00:37 UTC 2008', 'updated_at': 'Mon Nov 18 20:57:28 UTC 2013', 'overview': '

Prime Sense’s concept is a device, which allows a computer to perceive the world in 3D and derive an understanding of the world based on sight, just the way humans do.

\\n\\n

On March 31, 2010, PrimeSense confirmed that it was the technology behind Microsoft’s much-touted “Project Natal”.

\\n\\n

The device includes a sensor, which sees a user (including their complete surroundings), and a digital component, or “brain” which learns and understands user movement within those surroundings.

\\n\\n

Prime Sense’s interactive device can see, track and react to user movements outside the computer, all without change of environment or wearable equipment for the end user. The closed device is plug and play and platform independent.

\\n\\n

The company envisages the following uses: \\n-Interact with video games by using body movement and gestures. \\n-Interact with digital devices using menus on a screen as opposed to mouse and keyboard\\n-Improved video communication with for example virtual backgrounds and virtual drawing boards.

', 'image': {'available_sizes': [[[150, 150], 'assets/images/resized/0001/8047/18047v4-max-150x150.jpg'], [[250, 250], 'assets/images/resized/0001/8047/18047v4-max-250x250.jpg'], [[450, 450], 'assets/images/resized/0001/8047/18047v4-max-450x450.jpg']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': False, 'title': 'Co - Founder & Chief Technology Officer', 'person': {'first_name': 'Alexander', 'last_name': 'Shpunt', 'permalink': 'alexander-shpunt'}}, {'is_past': False, 'title': 'President & Founder & Member Of The Board Of Directors', 'person': {'first_name': 'Aviad', 'last_name': 'Maizels', 'permalink': 'aviad-maizels'}}, {'is_past': False, 'title': 'President and Founder, Board of Director', 'person': {'first_name': 'Aviad', 'last_name': 'Maizels', 'permalink': 'aviad-maizels'}}, {'is_past': False, 'title': 'Chief Science Officer', 'person': {'first_name': 'Zafir', 'last_name': 'Mor', 'permalink': 'zafir-mor'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Asher', 'last_name': 'Avital', 'permalink': 'asher-avital'}}, {'is_past': False, 'title': 'COO', 'person': {'first_name': 'Tzach', 'last_name': 'Hadas', 'permalink': 'tzach-hadas'}}, {'is_past': False, 'title': 'Chief Financial Officer', 'person': {'first_name': 'Avi', 'last_name': 'Shadmi', 'permalink': 'avi-shadmi'}}, {'is_past': False, 'title': 'Chief Executive Officer & Board Of Directors', 'person': {'first_name': 'Inon', 'last_name': 'Beracha', 'permalink': 'inon-beracha'}}, {'is_past': False, 'title': 'EVP, Sales & Marketing', 'person': {'first_name': 'Yaniv', 'last_name': 'Vakrat', 'permalink': 'yaniv-vakrat'}}, {'is_past': False, 'title': 'VP Business Development and Marketing', 'person': {'first_name': 'Adi', 'last_name': 'Berenson', 'permalink': 'adi-berenson'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'David', 'last_name': 'Dahan', 'permalink': 'david-dahan'}}, {'is_past': False, 'title': 'VP, Human Resources', 'person': {'first_name': 'Maya', 'last_name': 'Pops Green', 'permalink': 'maya-pops-green'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Paul', 'last_name': 'Mercadante', 'permalink': 'paul-mercadante'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Jonathan', 'last_name': 'Saacks', 'permalink': 'jonathan-saacks'}}, {'is_past': False, 'title': 'Board of Director', 'person': {'first_name': 'Yossi', 'last_name': 'Sela', 'permalink': 'yossi-sela'}}, {'is_past': False, 'title': 'Software Manager', 'person': {'first_name': 'Ilan', 'last_name': 'Atias', 'permalink': 'ilan-atias'}}, {'is_past': False, 'title': 'GM Americas', 'person': {'first_name': 'Ohad', 'last_name': 'Shvueli', 'permalink': 'ohad-shvueli'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Dr.', 'last_name': 'Orna Berry', 'permalink': 'dr-orna-berry'}}, {'is_past': False, 'title': 'Board Of Directors', 'person': {'first_name': 'Izhar', 'last_name': 'Shay', 'permalink': 'izhar-shay'}}, {'is_past': False, 'title': '', 'person': {'first_name': 'Gadi', 'last_name': 'Talmon', 'permalink': 'gadi-talmon'}}, {'is_past': True, 'title': 'VP of Sales & Marketing', 'person': {'first_name': 'Suneil', 'last_name': 'Mishra', 'permalink': 'suneil-mishra'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Iris', 'last_name': 'Finkelstein-Sagi', 'permalink': 'iris-finkelstein-sagi'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$29.4M', 'funding_rounds': [{'id': 2185, 'round_code': 'b', 'source_url': 'http://www.vccafe.com/2008/05/05/gaming-chips-primesense-closes-20m-in-round-b/', 'source_description': 'Gaming Chips: PrimeSense Closes $20M in Round B', 'raised_amount': 20400000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 5, 'funded_day': 6, 'investments': [{'company': None, 'financial_org': {'name': 'Canaan Partners', 'permalink': 'canaan-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Gemini Israel ventures', 'permalink': 'gemini-israel-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Genesis Partners', 'permalink': 'genesis-partners'}, 'person': None}]}, {'id': 15821, 'round_code': 'a', 'source_url': 'http://www.gemini.co.il/?p=News&CategoryID=166&ArticleID=209', 'source_description': 'Prime Sense Raises $9M A Round from Gemini Israel Funds and Genesis Partners', 'raised_amount': 9000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 8, 'funded_day': 8, 'investments': [{'company': None, 'financial_org': {'name': 'Gemini Israel ventures', 'permalink': 'gemini-israel-funds'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Genesis Partners', 'permalink': 'genesis-partners'}, 'person': None}]}, {'id': 20907, 'round_code': 'unattributed', 'source_url': 'http://www.businesswire.com/news/home/20110112006039/en/Silver-Lake-Sumeru-Announces-Investment-PrimeSense-Leading', 'source_description': 'Silver Lake Sumeru Announces Investment in PrimeSense, Leading Israeli Technology Provider ', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 1, 'funded_day': 12, 'investments': [{'company': None, 'financial_org': {'name': 'Silver Lake Partners', 'permalink': 'silver-lake-partners'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 345000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://gigaom.com/2013/11/25/apple-buys-israeli-3d-sensor-outfit-primesense-for-a-reported-350m/', 'source_description': ' Apple buys Israeli 3D sensor outfit PrimeSense for a reported $350M ', 'acquired_year': 2013, 'acquired_month': 7, 'acquired_day': 18, 'acquiring_company': {'name': 'Apple', 'permalink': 'apple'}}, 'acquisitions': [], 'offices': [{'description': 'HQ', 'address1': '30 Habarzel St.', 'address2': '3rd floor', 'zip_code': '69710', 'city': 'Tel-Aviv', 'state_code': None, 'country_code': 'ISR', 'latitude': None, 'longitude': None}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 106], 'assets/images/resized/0011/7034/117034v1-max-150x150.jpg'], [[250, 176], 'assets/images/resized/0011/7034/117034v1-max-250x250.jpg'], [[450, 318], 'assets/images/resized/0011/7034/117034v1-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675298207'), 'name': 'Amobee', 'permalink': 'amobee', 'crunchbase_url': 'http://www.crunchbase.com/company/amobee', 'homepage_url': 'http://www.amobee.com', 'blog_url': 'http://www.amobee.com/blog', 'blog_feed_url': '', 'twitter_username': 'amobee', 'category_code': 'advertising', 'number_of_employees': None, 'founded_year': 2005, 'founded_month': 5, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': 'mobileadvertising, contextual', 'alias_list': '', 'email_address': 'socialmedia@amobee.com', 'phone_number': '+1 (650) 802 8871', 'description': 'Mobile Advertising Service ', 'created_at': 'Sat Jan 26 07:53:52 UTC 2008', 'updated_at': 'Wed Jul 31 07:38:01 UTC 2013', 'overview': '

Amobee, the company defining mobile advertising, offers comprehensive, end-to-end mobile advertising solutions and services for advertisers, publishers and operators. Headquartered in Redwood City, California, with offices in Europe, Asia, Latin America and the US, Amobee enables its large customers to run targeted, leading edge mobile ad campaigns on a global scale with unparalleled ROI. [a•mo•bee] has financial backing from some of the biggest names in venture capital: Sequoia Capital, Accel Partners, and Globespan Capital, as well as strategic investments from Motorola, Cisco and leading operators, Vodafone and Telefonica. To learn more, please visit www.amobee.com. Amobee has been acquired by SingTel for US$321mm in March 2012.

', 'image': {'available_sizes': [[[150, 58], 'assets/images/resized/0000/3304/3304v7-max-150x150.png'], [[191, 75], 'assets/images/resized/0000/3304/3304v7-max-250x250.png'], [[191, 75], 'assets/images/resized/0000/3304/3304v7-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'Amobee', 'permalink': 'amobee'}], 'relationships': [{'is_past': False, 'title': 'CEO', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': False, 'title': 'Founder', 'person': {'first_name': 'Saul', 'last_name': 'Rurka', 'permalink': 'saul-rurka'}}, {'is_past': False, 'title': 'Chief Operating Officer', 'person': {'first_name': 'Mark', 'last_name': 'Strecker', 'permalink': 'mark-strecker'}}, {'is_past': False, 'title': 'CFO', 'person': {'first_name': 'Steve', 'last_name': 'Hoffman', 'permalink': 'steve-hoffman-2'}}, {'is_past': False, 'title': 'VP Publisher Solutions', 'person': {'first_name': 'Nandi', 'last_name': 'Gurprasad', 'permalink': 'nandi-gurprasad'}}, {'is_past': False, 'title': 'Senior Vice President', 'person': {'first_name': 'Ben', 'last_name': 'Tatton-Brown', 'permalink': 'ben-tatton-brown'}}, {'is_past': False, 'title': 'Co-Founder', 'person': {'first_name': 'Harry', 'last_name': 'Dewhirst', 'permalink': 'harry-dewhirst'}}, {'is_past': False, 'title': 'Cheif Executive Officer', 'person': {'first_name': 'Trevor', 'last_name': 'Healy', 'permalink': 'trevor-healy'}}, {'is_past': False, 'title': 'Director', 'person': {'first_name': 'Kartik', 'last_name': 'Ram', 'permalink': 'kartik-ram'}}, {'is_past': False, 'title': 'CTO', 'person': {'first_name': 'Gil', 'last_name': 'Sheinfeld', 'permalink': 'gil-sheinfeld'}}, {'is_past': False, 'title': 'Board Member', 'person': {'first_name': 'Bruce', 'last_name': 'Golden', 'permalink': 'bruce-golden'}}, {'is_past': True, 'title': 'Chairman of the board', 'person': {'first_name': 'Haim', 'last_name': 'Sadger', 'permalink': 'haim-sadger'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Gil', 'last_name': 'Shulman', 'permalink': 'gil-shulman'}}, {'is_past': True, 'title': 'CEO', 'person': {'first_name': 'Zohar', 'last_name': 'Levkovitz', 'permalink': 'zohar-levkovitz'}}, {'is_past': True, 'title': 'President & Co-CEO', 'person': {'first_name': 'Gary', 'last_name': 'Schofield', 'permalink': 'gary-schofield'}}, {'is_past': True, 'title': 'Chief Architect', 'person': {'first_name': 'Amit', 'last_name': 'On', 'permalink': 'amit-on'}}, {'is_past': True, 'title': 'CMO and General Manager, EMEA', 'person': {'first_name': 'Patrick', 'last_name': 'Parodi', 'permalink': 'patrick-parodi'}}, {'is_past': True, 'title': 'SVP & GM', 'person': {'first_name': 'Roger', 'last_name': 'Wood', 'permalink': 'roger-wood'}}, {'is_past': True, 'title': 'VP Strategic Alliances', 'person': {'first_name': 'Ziv', 'last_name': 'Eliraz', 'permalink': 'ziv-eliraz'}}, {'is_past': True, 'title': 'VP Business Development', 'person': {'first_name': 'Nitzan', 'last_name': 'Yaniv', 'permalink': 'nitzan-yaniv'}}, {'is_past': True, 'title': 'Sr Director, Business Development', 'person': {'first_name': 'Ted', 'last_name': 'Rupp', 'permalink': 'ted-rupp'}}, {'is_past': True, 'title': 'Director of Business Development', 'person': {'first_name': 'Saurav', 'last_name': 'Chopra', 'permalink': 'saurav-chopra'}}, {'is_past': True, 'title': 'Sr. Manager, Business Development', 'person': {'first_name': 'Noah', 'last_name': 'Klausman', 'permalink': 'noah-klausman-2'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Venky', 'last_name': 'Ganesan', 'permalink': 'venky-ganesan'}}, {'is_past': True, 'title': 'Head of PR', 'person': {'first_name': 'Paul', 'last_name': 'Naphtali', 'permalink': 'paul-naphtali'}}, {'is_past': True, 'title': 'Board Member', 'person': {'first_name': 'Andy', 'last_name': 'Goldfarb', 'permalink': 'andy-goldfarb'}}], 'competitions': [{'competitor': {'name': 'Mobixell Networks', 'permalink': 'mobixell'}}], 'providerships': [], 'total_money_raised': '$60M', 'funding_rounds': [{'id': 1428, 'round_code': 'a', 'source_url': 'http://www.moconews.net/entry/amobee-closes-2nd-round-15-20-million-rumored/', 'source_description': '', 'raised_amount': 5000000, 'raised_currency_code': 'USD', 'funded_year': 2006, 'funded_month': 11, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}]}, {'id': 1429, 'round_code': 'b', 'source_url': 'http://www.moconews.net/entry/amobee-closes-2nd-round-15-20-million-rumored/', 'source_description': '', 'raised_amount': 15000000, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 1, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}]}, {'id': 3112, 'round_code': 'c', 'source_url': 'http://www.alleyinsider.com/2008/8/mobile-firm-amobee-raises-22-million-for-ad-supported-cellphone-service', 'source_description': 'Mobile Firm Amobee Raises $22 Million For Ad-Supported Cellphone Service', 'raised_amount': 22000000, 'raised_currency_code': 'USD', 'funded_year': 2008, 'funded_month': 8, 'funded_day': 6, 'investments': [{'company': {'name': 'Cisco', 'permalink': 'cisco'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Motorola Solutions', 'permalink': 'motorola-solutions'}, 'financial_org': None, 'person': None}, {'company': {'name': 'Vodafone', 'permalink': 'vodafone'}, 'financial_org': None, 'person': None}, {'company': None, 'financial_org': {'name': 'Accel Partners', 'permalink': 'accel-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Globespan Capital Partners', 'permalink': 'globespan-capital-partners'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Sequoia Capital', 'permalink': 'sequoia-capital'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 11062, 'round_code': 'unattributed', 'source_url': 'http://isra-cell.com/2009/amdocs-invests-in-amobee/', 'source_description': 'amdocs invests in amobee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2009, 'funded_month': 10, 'funded_day': 12, 'investments': [{'company': {'name': 'Amdocs', 'permalink': 'amdocs'}, 'financial_org': None, 'person': None}]}, {'id': 12269, 'round_code': 'b', 'source_url': 'http://paidcontent.org/2007/11/28/419-mobile-advertiser-amobee-sells-minority-stake-to-vodafone/', 'source_description': 'Vodafone, Telefonica Take Stakes In Mobile Ad Firm Amobee', 'raised_amount': None, 'raised_currency_code': 'USD', 'funded_year': 2007, 'funded_month': 11, 'funded_day': 28, 'investments': [{'company': None, 'financial_org': {'name': 'Vodafone Ventures', 'permalink': 'vodafone-ventures'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}, {'id': 44255, 'round_code': 'd', 'source_url': '', 'source_description': 'Telefonica Ventures Source', 'raised_amount': 18000000, 'raised_currency_code': 'USD', 'funded_year': 2011, 'funded_month': 3, 'funded_day': None, 'investments': [{'company': None, 'financial_org': {'name': 'Telefonica Ventures', 'permalink': 'telefonica-ventures'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 321000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/03/05/more-mobile-ad-consolidation-carrier-singtel-buys-amobee-for-321-million/', 'source_description': 'More Mobile Ad Consolidation: Carrier SingTel Buys Amobee For $321 Million', 'acquired_year': 2012, 'acquired_month': 3, 'acquired_day': 5, 'acquiring_company': {'name': 'SingTel', 'permalink': 'singtel'}}, 'acquisitions': [{'price_amount': 20000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://businesswire.mercurynews.com/portal/site/mercurynews/?ndmViewId=news_view&newsId=20100113005509&newsLang=en', 'source_description': 'Amobee Acquires RingRing Media – Consolidates Mobile Advertising Market', 'acquired_year': 2010, 'acquired_month': 1, 'acquired_day': 13, 'company': {'name': 'Ringring Media', 'permalink': 'ringring-media'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2012/05/08/singtels-amobee-buys-adjitsu-to-take-mobile-ads-into-the-third-dimension/', 'source_description': 'Singtel’s Amobee Buys AdJitsu To Take Mobile Ads Into The Third Dimension', 'acquired_year': 2012, 'acquired_month': 5, 'acquired_day': 8, 'company': {'name': 'AdJitsu', 'permalink': 'adjitsu'}}, {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/09/05/singtels-amobee-buys-las-gradient-x-to-bulk-up-its-mobile-adtech-with-real-time-bidding/', 'source_description': 'SingTel’s Amobee Buys LA’s Gradient X To Bulk Up Its Mobile AdTech With Real-Time Bidding', 'acquired_year': 2013, 'acquired_month': 9, 'acquired_day': 5, 'company': {'name': 'Gradient X', 'permalink': 'gradient-x'}}], 'offices': [{'description': '', 'address1': '100 Marine Parkway', 'address2': 'Ste 575', 'zip_code': '94065', 'city': 'Redwood City', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.52845, 'longitude': -122.263721}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [{'available_sizes': [[[150, 87], 'assets/images/resized/0014/6264/146264v2-max-150x150.jpg'], [[250, 145], 'assets/images/resized/0014/6264/146264v2-max-250x250.jpg'], [[450, 262], 'assets/images/resized/0014/6264/146264v2-max-450x450.jpg']], 'attribution': None}], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7c4bab8bd675297ef1'), 'name': 'BlueLithium', 'permalink': 'bluelithium', 'crunchbase_url': 'http://www.crunchbase.com/company/bluelithium', 'homepage_url': 'http://www.bluelithium.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': None, 'category_code': 'advertising', 'number_of_employees': 135, 'founded_year': 2004, 'founded_month': 1, 'founded_day': 1, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': '', 'tag_list': 'advertising, yahoo, behavioraltargeting', 'alias_list': None, 'email_address': 'info@bluelithium.com', 'phone_number': '', 'description': None, 'created_at': 'Thu Aug 23 06:28:54 UTC 2007', 'updated_at': 'Tue Jul 02 02:58:10 UTC 2013', 'overview': '

BlueLithium is an advertising network focused on serving ads based on behavioral targeting of its users. As of September 2007, BlueLithium is the fifth largest ad network in the United States and the second largest in the United Kingdom, with 145 million unique visitors per month.

\\n\\n

BlueLithium was acquired by Yahoo! in September 2007 for approximately $300 million in cash.

\\n\\n

Other companies in the display advertising space include DoubleClick, Specificmedia, Quigo, ValueClick, Advertising.com, Tribal Fusion, and aQuantive.

', 'image': {'available_sizes': [[[150, 48], 'assets/images/resized/0000/4519/4519v1-max-150x150.png'], [[200, 64], 'assets/images/resized/0000/4519/4519v1-max-250x250.png'], [[200, 64], 'assets/images/resized/0000/4519/4519v1-max-450x450.png']], 'attribution': None}, 'products': [{'name': 'AdPath', 'permalink': 'adpath'}, {'name': 'Selective Inventory Partnership', 'permalink': 'selective-inventory-partnership'}], 'relationships': [{'is_past': False, 'title': 'Chief Technology Officer', 'person': {'first_name': 'David', 'last_name': 'Mariani', 'permalink': 'david-mariani'}}, {'is_past': False, 'title': 'Vice President, Engineering', 'person': {'first_name': 'Eugene', 'last_name': 'Kislyi', 'permalink': 'eugene-kislyi'}}, {'is_past': False, 'title': 'Chief Marketing Officer', 'person': {'first_name': 'Dakota', 'last_name': 'Sullivan', 'permalink': 'dakota-sullivan'}}, {'is_past': True, 'title': 'Co-Founder/ GM of New Business', 'person': {'first_name': 'Krishna', 'last_name': 'Subramanian', 'permalink': 'krishna-subramanian'}}, {'is_past': True, 'title': 'Founder', 'person': {'first_name': 'Gurbaksh', 'last_name': 'Chahal', 'permalink': 'gurbaksh-chahal'}}, {'is_past': True, 'title': 'Chief Financial Officer', 'person': {'first_name': 'William', 'last_name': 'Lonergan', 'permalink': 'william-lonergan'}}, {'is_past': True, 'title': 'SVP & GM, Ad Network', 'person': {'first_name': 'Dave', 'last_name': 'Zinman', 'permalink': 'dave-zinman'}}, {'is_past': True, 'title': 'erating', 'person': {'first_name': 'Scott', 'last_name': 'Kauffman', 'permalink': 'scott-kauffman'}}, {'is_past': True, 'title': 'Chief Revenue Officer', 'person': {'first_name': 'Tim', 'last_name': 'Mahlman', 'permalink': 'tim-mahlman'}}, {'is_past': True, 'title': 'Vice President, Media', 'person': {'first_name': 'Kamal', 'last_name': 'Kaur', 'permalink': 'kamal-kaur'}}, {'is_past': True, 'title': 'Sr. Strategic Accounts', 'person': {'first_name': 'Taz', 'last_name': 'Patel', 'permalink': 'taz-patel'}}, {'is_past': True, 'title': 'rector, Blu', 'person': {'first_name': 'Tim', 'last_name': 'Brown', 'permalink': 'tim-brown'}}, {'is_past': True, 'title': 'General Manager, Performance Netw', 'person': {'first_name': 'Jay', 'last_name': 'Webster', 'permalink': 'jay-webster'}}, {'is_past': True, 'title': 'Board Director', 'person': {'first_name': 'Rich', 'last_name': 'LeFurgy', 'permalink': 'rich-lefurgy-2'}}, {'is_past': True, 'title': 'Director of Marketing', 'person': {'first_name': 'Julia', 'last_name': 'French', 'permalink': 'julia-french'}}], 'competitions': [{'competitor': {'name': 'Phorm', 'permalink': 'phorm'}}, {'competitor': {'name': 'Undertone', 'permalink': 'undertone'}}, {'competitor': {'name': 'ballislife', 'permalink': 'ballislife'}}], 'providerships': [], 'total_money_raised': '$11.5M', 'funding_rounds': [{'id': 458, 'round_code': 'a', 'source_url': None, 'source_description': None, 'raised_amount': 11500000, 'raised_currency_code': 'USD', 'funded_year': 2005, 'funded_month': 2, 'funded_day': 1, 'investments': [{'company': None, 'financial_org': {'name': '3i Group', 'permalink': '3i-group'}, 'person': None}, {'company': None, 'financial_org': {'name': 'Walden Venture Capital', 'permalink': 'waldenvc'}, 'person': None}]}], 'investments': [], 'acquisition': {'price_amount': 300000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://zpwjnbkofczw.com/', 'source_description': 'Yahoo Acquires Ad Network BlueLithium', 'acquired_year': 2007, 'acquired_month': 9, 'acquired_day': 4, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}, 'acquisitions': [], 'offices': [{'description': '', 'address1': '3055 Olin Avenue, Suite 2200', 'address2': '', 'zip_code': '95128', 'city': 'San Jose', 'state_code': 'CA', 'country_code': 'USA', 'latitude': 37.32052, 'longitude': -121.948399}], 'milestones': [], 'ipo': None, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results16 = list(collection.find({\"founded_day\": {\"$lt\": 8}}).sort(\"acquisition.price_amount\", -1).limit(10))\n", + "\n", + "print(results16)" + ] }, { "cell_type": "markdown", @@ -258,10 +499,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "2070\n" + ] + } + ], + "source": [ + "results17 = list(collection.find({\"$and\":[{\"category_code\": \"web\"}, \n", + " {\"number_of_employees\": {\"$lt\": 4000}}]}).sort(\"number_of_employees\", 1))\n", + "\n", + "print(len(results17))" + ] }, { "cell_type": "markdown", @@ -272,10 +526,23 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'_id': ObjectId('52cdef7d4bab8bd675299576'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}, {'_id': ObjectId('52cdef7d4bab8bd675299900'), 'name': 'Pironet', 'permalink': 'pironet', 'crunchbase_url': 'http://www.crunchbase.com/company/pironet', 'homepage_url': 'http://www.pironet-ndh.com', 'blog_url': '', 'blog_feed_url': '', 'twitter_username': 'pironet_ndh', 'category_code': 'software', 'number_of_employees': None, 'founded_year': 1995, 'founded_month': 11, 'founded_day': None, 'deadpooled_year': None, 'deadpooled_month': None, 'deadpooled_day': None, 'deadpooled_url': None, 'tag_list': '', 'alias_list': None, 'email_address': 'info@pironet-ndh.com', 'phone_number': '', 'description': 'CMS Vendor & Cloud Serv', 'created_at': 'Wed Aug 13 23:08:27 UTC 2008', 'updated_at': 'Tue Feb 16 02:14:17 UTC 2010', 'overview': None, 'image': {'available_sizes': [[[150, 102], 'assets/images/resized/0007/7153/77153v2-max-150x150.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-250x250.png'], [[200, 137], 'assets/images/resized/0007/7153/77153v2-max-450x450.png']], 'attribution': None}, 'products': [], 'relationships': [{'is_past': True, 'title': 'Founder/CEO', 'person': {'first_name': 'Mehrdad', 'last_name': 'Piroozram', 'permalink': 'mehrdad-piroozram'}}, {'is_past': True, 'title': 'CTO', 'person': {'first_name': 'Thomas', 'last_name': 'Grota', 'permalink': 'thomas-grota'}}], 'competitions': [], 'providerships': [], 'total_money_raised': '$0', 'funding_rounds': [], 'investments': [], 'acquisition': None, 'acquisitions': [], 'offices': [], 'milestones': [], 'ipo': {'valuation_amount': 44000000, 'valuation_currency_code': 'EUR', 'pub_year': 2000, 'pub_month': 2, 'pub_day': 22, 'stock_symbol': 'PNG'}, 'video_embeds': [], 'screenshots': [], 'external_links': [], 'partners': []}]\n" + ] + } + ], + "source": [ + "results18 = list(collection.find({\"$and\": \n", + " [{\"ipo.valuation_amount\": {\"$gt\": 10000000}}, {\"ipo.valuation_currency_code\": \"EUR\"}]}))\n", + "\n", + "print(results18)" + ] }, { "cell_type": "markdown", @@ -286,10 +553,24 @@ }, { "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] + "execution_count": 63, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "10\n", + "[{'_id': ObjectId('52cdef7c4bab8bd675297dab'), 'name': 'Kyte', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2011/01/31/exclusive-kit-digital-acquires-kickapps-kewego-and-kyte-for-77-2-million/', 'source_description': 'KIT digital Acquires KickApps, Kewego AND Kyte For $77.2 Million', 'acquired_year': 2011, 'acquired_month': 1, 'acquired_day': 31, 'acquiring_company': {'name': 'KIT digital', 'permalink': 'kit-digital'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297db4'), 'name': 'NetRatings', 'acquisition': {'price_amount': 327000000, 'price_currency_code': 'USD', 'term_code': 'cash', 'source_url': 'http://login.vnuemedia.com/hr/login/login_subscribe.jsp?id=0oqDem1gYIfIclz9i2%2Ffqj5NxCp2AC5DPbVnyT2da8GyV2mXjasabE128n69OrmcAh52%2FGE3pSG%2F%0AEKRYD9vh9EhrJrxukmUzh532fSMTZXL42gwPB80UWVtF1NwJ5UZSM%2BCkLU1mpYBoHFgiH%2Fi0f6Ax%0A9yMIVxt47t%2BHamhEQ0nkOEK24L', 'source_description': 'Nielsen buys rest of NetRatings', 'acquired_year': 2007, 'acquired_month': 2, 'acquired_day': None, 'acquiring_company': {'name': 'Nielsen', 'permalink': 'nielsen'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dbf'), 'name': 'blogTV', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/03/13/younow-buys-blogtv/', 'source_description': 'Live Social Video Network YouNow Acquires Streaming Service BlogTV', 'acquired_year': 2013, 'acquired_month': 3, 'acquired_day': 13, 'acquiring_company': {'name': 'YouNow', 'permalink': 'younow'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dc0'), 'name': 'Livestream', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': '', 'source_description': 'company', 'acquired_year': 2008, 'acquired_month': 1, 'acquired_day': 1, 'acquiring_company': {'name': 'Adviqo', 'permalink': 'adviqo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dda'), 'name': 'iContact', 'acquisition': {'price_amount': 169000000, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://techcrunch.com/2012/02/28/vocus-buys-email-marketing-company-icontact-for-169-million/', 'source_description': 'Vocus Buys Email Marketing Company iContact For $169 Million', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 28, 'acquiring_company': {'name': 'Vocus', 'permalink': 'vocus'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297de8'), 'name': 'Coghead', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.techcrunch.com/2009/02/19/sap-acquires-cogheads-technology-as-it-looks-towards-the-cloud/', 'source_description': 'SAP Acquires Coghead’s Technology As It Looks Towards The Cloud', 'acquired_year': 2009, 'acquired_month': 2, 'acquired_day': 19, 'acquiring_company': {'name': 'SAP', 'permalink': 'sap'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297dee'), 'name': 'Dailymotion', 'acquisition': {'price_amount': 168000000, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://techcrunch.com/2013/02/22/orange-acquired-dailymotion-for-168-million-by-buying-out-the-remaining-51-stake/', 'source_description': 'Orange Acquired Dailymotion For $168 Million By Buying Out Remaining 51% Stake [Update: Orange Confirms]', 'acquired_year': 2013, 'acquired_month': 2, 'acquired_day': 22, 'acquiring_company': {'name': 'Orange', 'permalink': 'orange'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df4'), 'name': 'Netvibes', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.marketwatch.com/story/dassault-systemes-acquires-netvibes-2012-02-09', 'source_description': 'Dassault Systemes Acquires Netvibes', 'acquired_year': 2012, 'acquired_month': 2, 'acquired_day': 9, 'acquiring_company': {'name': 'Dassault Systemes', 'permalink': 'dassault'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df8'), 'name': 'Flickr', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': 'cash_and_stock', 'source_url': 'http://news.cnet.com/Yahoo-buys-photo-sharing-site-Flickr/2100-1038_3-5627640.html?tag=mncol;txt', 'source_description': 'CNET', 'acquired_year': 2005, 'acquired_month': 3, 'acquired_day': None, 'acquiring_company': {'name': 'Yahoo!', 'permalink': 'yahoo'}}}, {'_id': ObjectId('52cdef7c4bab8bd675297df9'), 'name': 'BabyCenter', 'acquisition': {'price_amount': None, 'price_currency_code': 'USD', 'term_code': None, 'source_url': 'http://www.investor.jnj.com/releasedetail.cfm?releaseid=63836', 'source_description': 'Johnson & Johnson Acquires BabyCenter From eToys, Inc. Leading Online Destination for Parents Plans for Continued Expansion of Operations', 'acquired_year': 2001, 'acquired_month': 3, 'acquired_day': 2, 'acquiring_company': {'name': 'Johnson & Johnson', 'permalink': 'johnson-johnson'}}}]\n" + ] + } + ], + "source": [ + "results19 = list(collection.find({\"acquisition.acquired_month\": {\"$lt\": 4}}, {\"name\": 1, \"acquisition\": 1}).limit(10))\n", + "\n", + "print(len(results19))\n", + "print(results19)" + ] }, { "cell_type": "markdown", @@ -298,6 +579,27 @@ "### 20. All the companies that have been founded between 2000 and 2010, but have not been acquired before 2011." ] }, + { + "cell_type": "code", + "execution_count": 64, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "486\n" + ] + } + ], + "source": [ + "results20 = list(collection.find({\"$and\": \n", + " [{\"founded_year\": {\"$gte\": 2000}}, {\"founded_year\": {\"$lt\": 2011}}, \n", + " {\"acquisition.acquired_year\": {\"$gte\": 2011}}]}))\n", + "\n", + "print(len(results20))" + ] + }, { "cell_type": "code", "execution_count": null,