-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest.csv
We can't make this file beautiful and searchable because it's too large.
4470 lines (4470 loc) · 699 KB
/
test.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
ID,comp_name,website,op_status,domain,founded_on,hq_country_code,hq_state_code,hq_region,hq_city,total_funding_usd,funding_rounds,first_funding_date,last_funding_date,num_investors,funding_duration,first_funding_utc,last_funding_utc,
0,MDLIVE,http://mdlive.com,operating,Health Care,2009-01-01,USA,FL,Ft. Lauderdale,Fort Lauderdale,73600000,2,2014-01-22,2015-06-24,5,518,16092,16610,
1,APX Labs,http://apx-labs.com,operating,Software,2010-01-01,USA,VA,"Washington, D.C.",Herndon,28612936,3,2014-04-02,2015-11-18,7,595,16162,16757,
2,9Cookies,http://www.9cookies.com/,acquired,Point of Sale|Restaurants,2012-01-01,DEU,16,Berlin,Berlin,,1,2013-04-18,2013-04-18,1,0,15813,15813,
3,Confluence Solar,http://www.confluencesolar.com,acquired,Clean Technology,,USA,MO,St. Louis,Hazelwood,12700000,1,2008-09-24,2008-09-24,3,0,14146,14146,
4,Dazo,http://dazo.in,operating,Mobile,2014-01-01,IND,19,Bangalore,Bangalore,,1,2015-04-01,2015-04-01,7,0,16526,16526,
5,MOJIO,http://moj.io,operating,Android|Application Platforms|Apps|App Stores|Developer APIs|Development Platforms|Gps|Hardware + Software|Internet|iOS|Mobile|Wireless,2012-10-12,CAN,BC,Vancouver,Vancouver,10300000,2,2013-10-16,2015-03-24,7,524,15994,16518,
6,mdBriefCase,http://www.mdbriefcase.com.au/,operating,Medical,,CAN,ON,Toronto,Toronto,,1,2015-01-12,2015-01-12,1,0,16447,16447,
7,V-cube Japan,http://jp.vcube.com,closed,Messaging,1998-10-01,JPN,40,Tokyo,Tokyo,,1,2009-11-17,2009-11-17,1,0,14565,14565,
8,Vector City Racers,http://www.vectorcityracers.com,closed,Games,,,,,,4000000,1,2008-08-28,2008-08-28,1,0,14119,14119,
9,Luxtech,http://www.luxtechled.com,operating,Hardware + Software|Semiconductors,,USA,PA,Philadelphia,Philadelphia,1000000,1,2014-04-20,2014-04-20,1,0,16180,16180,
10,Prism Pharmaceuticals,http://www.prismpharma.com,acquired,Biotechnology|Medical|Pharmaceuticals,,USA,PA,Philadelphia,King Of Prussia,15000000,1,2013-06-13,2013-06-13,1,0,15869,15869,
11,Societs,,operating,Celebrity|Networking|Social Media,,,,,,50811,1,2012-02-01,2012-02-01,1,0,15371,15371,
12,Metanautix,http://metanautix.com,operating,Analytics|Big Data Analytics,2012-01-01,USA,CA,SF Bay Area,Palo Alto,7000000,2,2014-08-05,2015-07-14,3,343,16287,16630,
13,Zeeto,http://www.zeeto.io,operating,Advertising|Technology,2010-06-01,USA,CA,San Diego,San Diego,3000000,1,2015-02-03,2015-02-03,1,0,16469,16469,
14,Fusepoint Managed Services,http://www.fusepoint.com,acquired,Software,,CAN,BC,Vancouver,Vancouver,19000000,2,2004-04-28,2006-01-18,2,630,12536,13166,
15,Mouth Foods,http://mouth.com,operating,E-Commerce|Internet|Specialty Foods,2010-01-01,USA,NY,New York City,Brooklyn,8411685,4,2012-01-01,2015-10-20,9,1388,15340,16728,
16,Spontly,http://www.spontly.com,operating,Android|Apps|Curated Web|EdTech|Education|Events|File Sharing|iOS|Maps|Music|Networking|Online Reservations|Photography|Property Management|Technology|Video Streaming,2011-09-01,GBR,I7,Newcastle,Newcastle Upon Tyne,,1,2011-01-12,2011-01-12,1,0,14986,14986,
17,FonJax,,operating,Consulting,2005-01-01,USA,CA,SF Bay Area,Walnut Creek,2200000,1,2007-04-10,2007-04-10,1,0,13613,13613,
18,ZangZing,,operating,Photography,,USA,CA,SF Bay Area,San Francisco,1500000,1,2010-01-01,2010-01-01,3,0,14610,14610,
19,The Young Turks,http://www.tytnetwork.com,operating,Blogging Platforms|Entertainment|Media|News|Politics|Video|Video Streaming,2003-02-14,USA,CA,Los Angeles,Los Angeles,4000000,1,2014-04-16,2014-04-16,1,0,16176,16176,
20,Lyks,http://www.lyks.co,operating,Analytics|Business Intelligence|Developer APIs|Enterprise Software|Social Media,2013-10-01,USA,VA,Norfolk - Virginia Beach,Virginia Beach,,1,2013-10-22,2013-10-22,1,0,16000,16000,
21,Haozu.com,http://www.haozu.com,operating,Real Estate,2009-10-10,CHN,25,CHN - Other,Pudong,50000000,1,2011-03-01,2011-03-01,1,0,15034,15034,
22,VMob,http://www.vmob.com,operating,Advertising|Big Data|Cloud Computing|Facebook Applications|Hospitality|Hotels|Internet of Things|Loyalty Programs|Mobile|Promotional|Restaurants|Retail|Social Media|Transportation,2010-09-01,USA,CA,SF Bay Area,San Francisco,5462000,3,2012-02-28,2015-01-26,1,1063,15398,16461,
23,Selvz,http://www.selvz.com,operating,Content|Curated Web|Games|Lifestyle|Mobility|Shopping,2010-03-01,USA,CA,Los Angeles,Torrance,380000,6,2010-08-28,2012-08-15,6,718,14849,15567,
24,Wheego Electric Cars,http://wheego.net,operating,Clean Technology,,,,,,5000000,2,2007-01-01,2010-05-04,1,1219,13514,14733,
25,Kalido,http://www.kalido.com,operating,Big Data Analytics|Business Intelligence|Information Services|Mobile Devices|Software,1997-01-01,USA,MA,Boston,Burlington,56600000,5,2003-07-14,2009-05-08,13,2125,12247,14372,
26,Vivant,,acquired,,,USA,CA,SF Bay Area,Oakland,11600000,1,1999-12-02,1999-12-02,4,0,10927,10927,
27,Arcadia Solutions,http://www.arcadiasolutions.com,operating,Health Care Information Technology,2001-01-01,USA,MA,Boston,Burlington,13000000,2,2012-11-14,2015-04-14,2,881,15658,16539,
28,Cotesa,http://www.cotesa.de/,operating,Aerospace|Heavy Industry|Procurement,2012-01-01,DEU,13,DEU - Other,Mittweida,24841531.7288464,1,2012-05-31,2012-05-31,1,0,15491,15491,
29,The Busking Project,http://www.buskr.com,operating,Moneymaking|Music|Social Network Media,2010-03-20,GBR,H9,London,London,33840,1,2014-05-12,2014-05-12,1,0,16202,16202,
30,Veniam,http://veniam.com,operating,Communications Infrastructure|Internet of Things|Transportation|Wireless,2012-01-01,USA,CA,SF Bay Area,Mountain View,4900000,1,2014-12-02,2014-12-02,3,0,16406,16406,
31,Emic Networks,http://www.emicnetworks.com,closed,Networking,,USA,CA,SF Bay Area,San Jose,7500000,1,2004-04-16,2004-04-16,3,0,12524,12524,
32,Jinfuzi 金斧子,http://www.jinfuzi.com,operating,Financial Services|Internet|Wealth Management,2012-07-17,,,,,60000000,3,2012-07-17,2015-07-17,3,1095,15538,16633,
33,Superpedestrian,http://superpedestrian.com,operating,Automotive|Electric Vehicles,2008-07-01,USA,MA,Boston,Cambridge,6100000,2,2013-10-21,2014-09-29,6,343,15999,16342,
34,iPayment,http://ipaymentinc.com,ipo,Banking|Curated Web|Financial Services,1997-01-01,USA,TN,Nashville,Nashville,,1,1999-10-07,1999-10-07,1,0,10871,10871,
35,PrettySecrets,http://prettysecrets.com/,operating,E-Commerce|Lingerie|Retail,2012-10-01,IND,16,Mumbai,Mumbai,2000000,1,2014-09-08,2014-09-08,3,0,16321,16321,
36,Focaltech Systems,http://www.focaltech-systems.com/,ipo,Electronics,,TWN,4,Taiwan,Hsinchu,,1,2010-01-29,2010-01-29,1,0,14638,14638,
37,VINUXPAY,http://www.vinuxpay.com/payindex.html,operating,,2013-02-01,,,,,,1,2013-02-01,2013-02-01,1,0,15737,15737,
38,Xceligent,http://www.xceligent.com,operating,Market Research|Property Management|Real Estate,2000-01-01,USA,MO,Kansas City,Independence,,1,2012-04-01,2012-04-01,1,0,15431,15431,
39,KnexxLocal,http://knexxlocal.com,operating,Mobile,2012-01-01,CAN,ON,Toronto,Toronto,1100000,1,2013-02-12,2013-02-12,1,0,15748,15748,
40,Cosmederm Bioscience,http://cosmederm.com,operating,Biotechnology|Pharmaceuticals|Product Development Services,,USA,CA,San Diego,San Diego,50000000,1,2014-10-13,2014-10-13,1,0,16356,16356,
41,Viral,http://www.veeraapp.com,operating,,2015-02-23,USA,MA,Boston,Boston,150000,1,2015-11-06,2015-11-06,1,0,16745,16745,
42,The Farmery,http://www.thefarmery.com,operating,Agriculture|Hospitality,,USA,NC,Raleigh,Raleigh,20000,1,2014-05-01,2014-05-01,1,0,16191,16191,
43,Triloq,http://tripayserv.com,operating,E-Commerce|Mobile|Payments,2010-08-01,ZAF,,Johannesburg,Johannesburg,,1,2010-08-01,2010-08-01,1,0,14822,14822,
44,Contents First,http://contentsfirst.com,operating,Multi-level Marketing|Social Media Marketing,2013-01-01,KOR,11,Seoul,Seoul,,2,2013-11-01,2014-10-14,3,347,16010,16357,
45,Genia Photonics,http://www.geniaphotonics.com/,operating,Analytics,2009-01-01,CAN,QC,Montreal,Laval,,1,2011-09-01,2011-09-01,1,0,15218,15218,
46,Jibestream,http://jibestream.com,operating,Information Technology|Internet of Things|Location Based Services|Real Time|Software,,CAN,ON,Toronto,Toronto,,1,2012-11-01,2012-11-01,1,0,15645,15645,
47,Leader Tech (Beijing) Digital Technology,http://www.leader-tech.cn,operating,Networking|Web Hosting,2011-01-01,CHN,22,Beijing,Beijing,2796478,1,2011-08-01,2011-08-01,1,0,15187,15187,
48,Pose,http://www.getpose.com,operating,CRM|Enterprises|Internet|Local Businesses|Point of Sale|Retail|SaaS|Small and Medium Businesses|Web Development,2011-04-01,ISR,5,Tel Aviv,Tel Aviv,1750000,1,2011-07-07,2011-07-07,2,0,15162,15162,
49,Percipient Networks,http://percipientnetworks.com,operating,Security|Services|Technology,2014-01-01,,,,,1500000,1,2014-01-15,2014-01-15,1,0,16085,16085,
50,Radar Networks,http://www.radarnetworks.com,acquired,Advertising|Semantic Web|SEO,,USA,CA,SF Bay Area,San Francisco,24000000,4,2006-04-01,2009-11-01,11,1310,13239,14549,
51,Baroo,http://www.baroo.co,closed,,2014-01-01,,,,,1200000,1,2015-07-15,2015-07-15,1,0,16631,16631,
52,QMC Telecom,http://qmctelecom.com,operating,Communications Hardware,2011-01-01,BRA,2,Sao Paulo,São Paulo,100000000,1,2015-03-24,2015-03-24,1,0,16518,16518,
53,Sparkplay Media,http://www.sparkplaymedia.com,operating,Curated Web,2006-01-01,USA,CA,SF Bay Area,Mill Valley,7050000,2,2008-02-01,2010-01-15,4,714,13910,14624,
54,Cardionomic,http://cardionomicinc.com/,operating,,,USA,MN,Minneapolis,Forest Lake,20000000,1,2015-10-26,2015-10-26,3,0,16734,16734,
55,Caterna,http://www.caterna.de,operating,Biotechnology,2010-06-16,DEU,13,DEU - Other,Deutsch,867685,1,2011-01-14,2011-01-14,2,0,14988,14988,
56,Thomsons Online Benefits,http://www.thomsons.com,operating,Enterprise Software,2000-01-01,GBR,H9,London,London,,2,2013-01-30,2013-03-11,2,40,15735,15775,
57,Leido Technology,http://www.leidotech.com/,operating,Information Technology,,,,,,41250,1,2014-07-01,2014-07-01,1,0,16252,16252,
58,Platogo,http://www.platogo.com/wrapper,acquired,Games|Startups,2008-07-01,AUT,9,Vienna,Vienna,,2,2008-01-01,2009-09-15,1,623,13879,14502,
59,ProCure Treatment Centers,http://www.procure.com,operating,Biotechnology,,USA,NY,New York City,New York,75000000,2,2006-12-20,2011-02-01,2,1504,13502,15006,
60,ClusterHQ,https://clusterhq.com/,operating,Cloud Computing|Enterprise Software,2008-01-01,GBR,B7,Bristol,Bristol,18026455.5491355,4,2012-12-01,2015-02-05,16,796,15675,16471,
61,Macropod Software Pty Ltd,https://macropod.com,operating,Design|SaaS|Web Development,2011-01-01,AUS,7,AUS - Other,Yarraville,1480960,2,2012-01-25,2014-08-24,5,942,15364,16306,
62,VOXON,http://www.voxiebox.com,operating,3D|3D Printing|3D Technology|Augmented Reality|Consumer Electronics|Creative Industries|Displays|Games|Kinect|Television,2012-04-02,USA,CA,SF Bay Area,San Francisco,,1,2015-02-16,2015-02-16,1,0,16482,16482,
63,sevenload,http://sevenload.com,operating,File Sharing|Games|Photography|Television|Video|Web Tools,2006-04-26,DEU,7,Cologne,Cologne,38732500,2,2006-04-01,2008-06-18,3,809,13239,14048,
64,Mist.io,http://mist.io,operating,Cloud Computing|Cloud Management|Mobile|Software,2013-07-31,USA,CA,SF Bay Area,San Francisco,300000,1,2014-06-26,2014-06-26,5,0,16247,16247,
65,Redline Communications,http://rdlcom.com/,operating,Oil & Gas|Public Safety|Telecommunications|Utilities|Wireless,1999-01-01,CAN,ON,Toronto,Markham,15000000,1,2005-10-06,2005-10-06,3,0,13062,13062,
66,HeYoU Games,http://heyougames.com,operating,Game,2014-01-01,ESP,29,Madrid,Madrid,248571,1,2015-03-11,2015-03-11,4,0,16505,16505,
67,PlaySwell,http://www.playswell.com,operating,Building Products|Consumer Goods|Manufacturing,2013-10-01,USA,CA,San Diego,Del Mar,1000000,1,2015-01-12,2015-01-12,4,0,16447,16447,
68,Time Solutions Ltd,https://www.timecamp.com,operating,Enterprise Software|Software|Tracking,2008-08-15,USA,CA,Los Angeles,Los Angeles,170000,3,2008-06-10,2013-08-10,1,1887,14040,15927,
69,Qumu,http://www.qumu.com,acquired,Software|Video|Video Streaming,2003-01-01,USA,CA,SF Bay Area,San Bruno,24750000,3,2006-05-22,2010-09-21,17,1583,13290,14873,
70,Agworld Pty Ltd,http://www.agworld.com.au,operating,Software,,AUS,8,Perth,Perth,11119621.4028991,3,2010-09-20,2014-08-11,6,1421,14872,16293,
71,Edvivo,http://www.edvivo.com,operating,Education,2012-01-01,,,,,40000,1,2012-08-09,2012-08-09,1,0,15561,15561,
72,Carson Air,http://www.carsonair.com/,operating,,,CAN,BC,Kelowna,Kelowna,,1,2015-10-08,2015-10-08,1,0,16716,16716,
73,Topio,http://www.topio.com,acquired,Enterprise Software,,USA,CA,SF Bay Area,Santa Clara,26000000,3,2003-01-29,2006-06-30,8,1248,12081,13329,
74,Booklr,http://www.booklr.com,acquired,Analytics|E-Books|Publishing|Textbooks|Writers,2010-01-01,USA,NY,New York City,New York,500000,1,2011-01-01,2011-01-01,1,0,14975,14975,
75,MOOVIA,http://www.moovia.com,operating,Collaboration|Project Management|Social Media|Social Network Media,2012-01-01,BRA,26,Fortaleza,Florianópolis,400000,1,2013-01-01,2013-01-01,1,0,15706,15706,
76,Rescue Forensics,http://www.rescueforensics.com/,operating,Services,2010-01-01,USA,SC,SC - Other,Texas,120000,1,2014-12-01,2014-12-01,1,0,16405,16405,
77,DirectPointe,http://www.directpointe.com,acquired,Consulting,,USA,UT,Salt Lake City,Lindon,7715715,2,2005-02-16,2010-01-06,1,1785,12830,14615,
78,Prospa,http://prospa.com/,operating,Financial Services,2012-12-01,AUS,2,Sydney,Sydney,42176988.7035965,1,2015-09-03,2015-09-03,4,0,16681,16681,
79,RAD Technologies,,operating,Manufacturing,,USA,CA,CA - Other,Sun Valley,4500000,1,2005-07-18,2005-07-18,2,0,12982,12982,
80,Via,http://www.ridewithvia.com,operating,Apps|Real Time|Software|Technology|Transportation,2012-01-01,USA,NY,New York City,New York,37064136,2,2014-03-26,2015-04-02,9,372,16155,16527,
81,Pegasus Technologies,http://www.pegatech.com,acquired,Hardware + Software,1991-01-01,ISR,,,,9800000,2,2005-02-26,2006-04-27,6,425,12840,13265,
82,HuaYin,http://huayinjapan.com,operating,Beauty|Cosmetics|E-Commerce,,IDN,7,IDN - Other,Japan,16300000,1,2014-10-20,2014-10-20,1,0,16363,16363,
83,Studiekring,http://www.studiekring.nl,operating,Education,2002-01-01,NLD,9,Utrecht,Utrecht,,1,2011-08-26,2011-08-26,1,0,15212,15212,
84,Ease Central,http://easecentral.com/,operating,Internet,,,,,,2100000,1,2015-09-08,2015-09-08,5,0,16686,16686,
85,Cabana,http://www.cabanaapp.com,acquired,Mobile,,USA,CA,SF Bay Area,San Francisco,,1,2011-04-07,2011-04-07,1,0,15071,15071,
86,ricardo Group,http://www.ricardo.ch/,acquired,E-Commerce|Internet|Marketplaces|Retail|Shopping,1999-01-01,CHE,24,Zurich,Zug,,1,1999-01-01,1999-01-01,1,0,10592,10592,
87,Resistentia Pharmaceuticals,,operating,Biotechnology,1998-01-01,SWE,,,,13960000,1,2006-09-26,2006-09-26,5,0,13417,13417,
88,StructView,http://structview.essenceblue.com/en/,operating,3D|New Technologies|Services,,POL,82,Gdynia,Gdynia,13049,1,2014-07-19,2014-07-19,2,0,16270,16270,
89,strapping,https://shopstrapping.com/,operating,Online Shopping,,USA,CA,SF Bay Area,San Francisco,100000,1,2014-11-01,2014-11-01,1,0,16375,16375,
90,AveXis,http://avexisinc.com/,operating,Biotechnology|Life Sciences|Medical,,USA,TX,Dallas,Dallas,75000000,4,2013-07-27,2015-09-08,14,773,15913,16686,
91,Trendlee,http://www.trendlee.com/,operating,,,,,,,2000000,2,2014-06-14,2015-11-06,2,510,16235,16745,
92,Studydrive,http://www.studydrive.com,operating,Education|Startups,2013-04-14,,,,,,1,2015-06-18,2015-06-18,1,0,16604,16604,
93,Smarkets,http://smarkets.com,operating,Financial Exchanges|Gambling|Marketplaces|Sports,2008-01-01,GBR,H9,London,London,2710000,4,2008-05-01,2013-02-21,4,1757,14000,15757,
94,Wildcard Payments,http://www.wildcardpayments.com,closed,Bitcoin|Payments|Real Time,2008-07-02,,,,,100000,1,2015-10-06,2015-10-06,2,0,16714,16714,
95,Advanced Manufacturing Control Systems,http://www.amcsgroup.com,operating,Hardware + Software|Software,2003-01-01,,,,,82328527,5,2006-10-11,2014-07-02,8,2821,13432,16253,
96,Sandbox Studio,http://www.sandboxstudio.com/,operating,Advertising|E-Commerce|Photography|Video,,USA,NY,New York City,New York,,1,2015-03-17,2015-03-17,1,0,16511,16511,
97,Vox Media,http://www.voxmedia.com,operating,Advertising Platforms|Digital Media|News|Sports|Technology,2003-01-01,USA,DC,"Washington, D.C.",Washington,307632220,8,2008-10-27,2015-08-12,18,2480,14179,16659,
98,reelyActive,http://context.reelyactive.com,operating,Internet of Things|Mobile,2012-01-01,CAN,QC,Montreal,Montréal,22153,1,2012-12-01,2012-12-01,1,0,15675,15675,
99,A Break Please,http://www.abreakplease.com/,acquired,,,,,,,,1,2013-04-21,2013-04-21,1,0,15816,15816,
100,Novi Security Inc.,http://www.novisecurity.com,operating,Internet of Things|Security,2013-11-11,USA,UT,Salt Lake City,Orem,750000,2,2014-06-24,2014-12-16,1,175,16245,16420,
101,Fatherly,http://www.fatherly.com,operating,E-Commerce|Media,2014-01-01,USA,NY,New York City,New York,2000000,1,2015-04-08,2015-04-08,7,0,16533,16533,
102,MoodMe,http://www.mood-me.com,operating,Software,2011-03-01,LUX,3,Esch-sur-alzette,Esch-sur-alzette,597666.872103547,5,2011-03-01,2015-05-01,8,1522,15034,16556,
103,Voxel.pl,http://www.voxel.pl/pl,operating,Health Care,,POL,77,Krakow,Kraków,,1,2012-07-01,2012-07-01,1,0,15522,15522,
104,Trapeze Networks,http://www.trapezenetworks.com,acquired,Security|Wireless,2002-01-01,USA,CA,SF Bay Area,Pleasanton,61120000,3,2005-03-31,2006-08-28,17,515,12873,13388,
105,Uvize,http://uvize.com,acquired,Colleges|EdTech|Education|Enterprise Software|SaaS|Technology,2013-01-01,USA,CO,Denver,Boulder,500000,1,2014-03-28,2014-03-28,2,0,16157,16157,
106,Tristar,http://www.tristarworldwide.com,operating,Services|Taxis|Transportation,,GBR,H9,London,London,,1,2008-01-15,2008-01-15,1,0,13893,13893,
107,Jiuxian.com,http://www.jiuxian.com,operating,E-Commerce,,CHN,22,Beijing,Beijing,262424600,7,2011-04-01,2015-07-30,6,1581,15065,16646,
108,Solid Biosciences,http://solidbio.com/,operating,,2014-01-01,USA,MA,Boston,Marlborough,42500000,1,2015-11-03,2015-11-03,2,0,16742,16742,
109,Medius,http://www.medius.se/en/home.html,closed,Software,,,,,,3693500,1,2009-12-08,2009-12-08,1,0,14586,14586,
110,Blue Photo Stories,http://get.ritify.com,operating,Computers|Digital Media|Technology,2013-01-01,USA,HI,Honolulu,Honolulu,20000,1,2013-10-16,2013-10-16,1,0,15994,15994,
111,Leho,http://www.leho.com,operating,E-Commerce,,CHN,22,Beijing,Beijing,50000000,1,2011-11-01,2011-11-01,2,0,15279,15279,
112,The Secret Police Ltd.,http://www.thesecretpolice.org/,operating,,2014-10-31,GBR,H9,London,London,507824.250140202,2,2014-10-31,2015-10-30,3,364,16374,16738,
113,Kira Talent,http://www.kiratalent.com,operating,Career Management|Curated Web|Education|Human Resources|Private School|Recruiting,2012-01-01,CAN,ON,Toronto,Toronto,3200000,2,2013-09-25,2015-03-11,5,532,15973,16505,
114,BookThatDoc,http://www.bookthatdoc.com,operating,Health Care|Medical|Mobile Devices,2012-01-01,USA,FL,Orlando,Orlando,5700000,3,2011-08-01,2014-08-26,1,1121,15187,16308,
115,KATIA,,closed,,,,,,,,1,2014-07-01,2014-07-01,1,0,16252,16252,
116,Tuhu,http://www.tuhu.cn/,operating,Application Platforms|Automotive|Services,2011-01-01,CHN,23,Shanghai,Shanghai,100000000,1,2015-08-11,2015-08-11,5,0,16658,16658,
117,Glass Media,http://www.glass-media.com,closed,Media,2012-01-01,USA,TX,Dallas,Dallas,30000,1,2015-04-01,2015-04-01,1,0,16526,16526,
118,Mobile2Win India,http://www.mobile2win.com,operating,Mobile,,IND,16,Mumbai,Mumbai,15000000,1,2006-11-13,2006-11-13,2,0,13465,13465,
119,O2 Secure Wireless,http://www.o2securewireless.com,operating,Mobile,2003-01-01,USA,FL,Daytona Beach,Palm Coast,50390000,2,2012-09-21,2012-10-12,1,21,15604,15625,
120,DCWafers,http://www.dcwafers.com,closed,Clean Technology,,,,,,4700000,1,2008-07-24,2008-07-24,1,0,14084,14084,
121,miLibris,http://milibris.com,operating,Broadcasting|Digital Media|News,2009-01-01,FRA,A8,Paris,Paris,2044050,1,2011-11-01,2011-11-01,1,0,15279,15279,
122,Integra Holdings,http://integra-holdings.com/,operating,,,,,,,3000000,1,2014-12-08,2014-12-08,1,0,16412,16412,
123,Stockr,http://www.stockr.com,operating,Finance|Social Media,2010-05-01,USA,CA,Los Angeles,Santa Monica,1500000,3,2012-09-12,2014-04-25,7,590,15595,16185,
124,Nexaweb Inc.,http://www.nexaweb.com,operating,Software|Web Development,2000-01-01,USA,MA,Boston,Burlington,14603757,3,2003-05-19,2012-08-21,6,3382,12191,15573,
125,Behance,http://www.behance.net,acquired,Creative Industries|Internet,2006-02-01,USA,NY,New York City,New York,6500000,1,2012-05-14,2012-05-14,8,0,15474,15474,
126,VMIX Media,http://www.vmix.com,operating,Enterprise Software|Video,2005-01-01,USA,CA,San Diego,San Diego,31500000,5,2006-03-01,2010-09-09,12,1653,13208,14861,
127,Yippee Arts,http://letun.com,operating,Enterprises,,,,,,,3,2011-03-01,2012-01-01,3,306,15034,15340,
128,You cook,http://www.youcook-food.com/,acquired,Hospitality,,,,,,,1,2012-01-01,2012-01-01,1,0,15340,15340,
129,Verato,http://www.verato.com/,operating,Big Data|Big Data Analytics|Cloud Data Services|Data Privacy|Health Care Information Technology|Information Services|Personal Data|SaaS,2012-02-01,USA,VA,"Washington, D.C.",Mclean,12500000,1,2015-01-28,2015-01-28,2,0,16463,16463,
130,Filter Squad,http://discovr.info,operating,Apps|Ediscovery|Entertainment|Games|iOS|iPad|iPhone|Mac|Music,2011-01-14,AUS,8,Perth,Perth,1344657.37416625,2,2011-01-16,2011-10-26,2,283,14990,15273,
131,Stylistpick,http://www.stylistpick.com,operating,Fashion,2010-01-01,GBR,H9,London,London,19000000,2,2011-04-12,2012-02-02,5,296,15076,15372,
132,Sidecar,http://www.getsidecar.com,operating,E-Commerce|Internet Marketing,2010-01-01,USA,PA,Philadelphia,Philadelphia,15120000,4,2011-11-01,2015-11-20,27,1480,15279,16759,
133,Yogurtistan,http://www.yogurtistan.com,operating,3D|Curated Web|Games|Social Network Media|Software|Virtual Currency|Virtual Worlds,2009-01-01,TUR,34,Istanbul,Istanbul,5000000,1,2008-01-01,2008-01-01,1,0,13879,13879,
134,LegCyte,http://legcyte.com,operating,Databases|Information Services|Software,2012-01-01,USA,DC,"Washington, D.C.",Washington,,1,2013-06-03,2013-06-03,1,0,15859,15859,
135,Rapt Media,http://www.raptmedia.com,operating,Advertising|Enterprise Software|Finance|FinTech|Mobile Video|Video,2011-01-13,USA,CO,Denver,Boulder,8748376,4,2011-08-01,2014-08-06,14,1101,15187,16288,
136,Prafly,http://www.prafly.com/,operating,Robotics|Technology,2005-01-01,CHN,7,CHN - Other,Futian,,1,2015-09-17,2015-09-17,1,0,16695,16695,
137,Kapture,http://kaptureaudio.com,operating,Hardware + Software|Wearables,2012-01-01,USA,OH,Cincinnati,Cincinnati,900000,2,2013-03-01,2015-05-07,2,797,15765,16562,
138,IFTTT,https://ifttt.com/,operating,Consumer Internet|Curated Web|Mobile|Productivity Software,2010-12-14,USA,CA,SF Bay Area,San Francisco,38500000,3,2012-01-01,2014-08-29,21,971,15340,16311,
139,Lucid Design Group,http://www.luciddesigngroup.com,operating,Energy Efficiency|Energy Management|Software,2004-01-01,USA,CA,SF Bay Area,Oakland,17328859,3,2009-08-04,2014-07-14,6,1805,14460,16265,
140,User Interface,http://www.userinterface.com,operating,User Interface,,USA,CA,Bakersfield,California City,8250000,1,2001-01-24,2001-01-24,4,0,11346,11346,
141,Touchlight Genetics,http://www.touchlightgenetics.com/,operating,Pharmaceuticals,,USA,NJ,NJ - Other,Hampton,,1,2014-10-30,2014-10-30,1,0,16373,16373,
142,Infantium,http://www.infantium.com,operating,Artificial Intelligence|EdTech|Education|Machine Learning|Technology,2012-01-01,ESP,56,Barcelona,Barcelona,2333428,4,2012-10-25,2015-01-01,10,798,15638,16436,
143,Cardize,http://www.cardize.me,operating,Contact Management|Mobile,2012-03-01,USA,NY,New York City,New York,1200000,1,2013-03-04,2013-03-04,1,0,15768,15768,
144,Bitstamp,http://www.bitstamp.net,operating,Bitcoin,2011-01-01,GBR,P4,GBR - Other,Aldermaston,10000000,1,2013-12-17,2013-12-17,1,0,16056,16056,
145,Tissue Regenix,http://www.tissueregenix.com,operating,Health Care,2006-05-01,GBR,Q5,York,York,1349658,1,2007-01-02,2007-01-02,2,0,13515,13515,
146,Union Spring Pharmaceuticals,http://www.unionspringspharmaceuticals.com,closed,Biotechnology,,USA,KY,KY - Other,Union Star,5000000,1,2009-10-01,2009-10-01,1,0,14518,14518,
147,Smart Lanes,http://smartlanestechnologies.com/,operating,Computers|Information Services|Technology,,USA,KY,Louisville,Louisville,15000,1,2015-03-01,2015-03-01,1,0,16495,16495,
148,Regentis Biomaterials,http://www.regentis.co.il,operating,Biotechnology,,ISR,4,ISR - Other,Or Akiva,10000000,1,2012-05-14,2012-05-14,3,0,15474,15474,
149,3Jam,http://3jam.com,operating,Messaging|SMS,2005-01-01,USA,CA,SF Bay Area,San Francisco,4000000,1,2007-07-01,2007-07-01,2,0,13695,13695,
150,ART Advanced Recognition Technologies,http://artcomp.com/,acquired,Computers|Software|Technology,1990-01-01,USA,GA,Atlanta,Lawrenceville,6000000,1,2004-01-14,2004-01-14,1,0,12431,12431,
151,DeLille Cellars,http://delillecellars.com,operating,Hospitality,1992-01-01,USA,WA,Seattle,Woodinville,,1,2013-05-15,2013-05-15,1,0,15840,15840,
152,Synchron,http://www.synchron.com/,closed,Information Technology|Services,,,,,,5000000,1,2005-01-28,2005-01-28,1,0,12811,12811,
153,LiquidWare Labs,http://liquidwarelabs.com,operating,Software,2009-01-01,USA,IL,Chicago,Palatine,2776316,2,2009-04-17,2014-07-21,1,1921,14351,16272,
154,NetLex,http://www.netlexweb.com,operating,Cloud Computing|Internet|Legal|Mobile|SaaS|Software,2013-04-29,ITA,7,Rome,Rome,451804,2,2013-06-03,2014-03-31,6,301,15859,16160,
155,Quickoffice,http://www.quickoffice.com,acquired,App Stores|iPhone|Mobile,1993-01-01,USA,TX,Dallas,Plano,30250000,5,2005-05-25,2009-02-27,15,1374,12928,14302,
156,TransEnergy,,operating,,1988-01-01,USA,TX,Houston,Houston,,1,1996-02-12,1996-02-12,1,0,9538,9538,
157,BMC Software,http://www.bmc.com,ipo,Software,1980-09-19,USA,TX,Houston,Houston,750000000,1,2014-04-08,2014-04-08,1,0,16168,16168,
158,AdEspresso,http://adespresso.com,operating,Advertising|Optimization|SaaS|Software,2013-10-01,USA,CA,SF Bay Area,San Francisco,1800000,2,2013-12-25,2014-06-24,8,181,16064,16245,
159,Enswers,http://www.enswer.net,operating,Cloud Computing|Hardware + Software|Information Services|Information Technology,2007-04-04,KOR,11,Seoul,Seoul,10652300.6863596,7,2007-04-01,2014-04-25,7,2581,13604,16185,
160,Foody,http://www.foody.vn/,operating,E-Commerce|Hospitality|Restaurants|Search,2012-06-11,VNM,,Ho Chi Minh,Ho Chi Minh City,,4,2012-11-21,2015-07-28,5,979,15665,16644,
161,Cashback Chintai,http://cbchintai.com,operating,Rental Housing,2012-08-01,,,,,1849000,2,2014-04-22,2015-02-04,3,288,16182,16470,
162,BTI Systems,http://www.btisystems.com,operating,Software,2000-01-01,USA,MA,Boston,Littleton,132787385,14,2005-04-06,2015-03-02,24,3617,12879,16496,
163,Vox Mobile,http://www.voxmobile.com,operating,Messaging|Mobile|Mobile Devices,2006-01-01,USA,OH,Cincinnati,Independence,18400000,3,2012-05-16,2015-06-18,5,1128,15476,16604,
164,ViewsIQ,http://www.viewsiq.com,operating,Health Care Information Technology,2010-09-01,CAN,BC,BC - Other,Richmond,495498,4,2010-07-08,2015-04-02,3,1729,14798,16527,
165,Prism Solar Technologies,http://www.prismsolar.com,operating,Clean Technology,2004-01-01,USA,NY,New York City,Highland,9400000,2,2009-04-10,2011-12-02,1,966,14344,15310,
166,Evans Easyspace,http://www.evanseasyspace.com/,operating,,2000-01-01,GBR,H3,Leeds,Leeds,,1,2015-02-01,2015-02-01,1,0,16467,16467,
167,scrible,http://www.scrible.com,operating,Enterprise Software,2010-01-01,USA,CA,SF Bay Area,San Mateo,500000,1,2011-05-05,2011-05-05,1,0,15099,15099,
168,KliKKi,http://www.klikki.com/,acquired,Software,,SWE,26,Stockholm,Stockholm,,1,2008-03-19,2008-03-19,1,0,13957,13957,
169,UNX,http://www.unx.com,acquired,Finance|FinTech,1999-01-01,USA,NY,New York City,New York,4400000,4,2001-08-21,2011-06-16,8,3586,11555,15141,
170,LookBooker,https://www.lookbooker.co,operating,Beauty|Online Scheduling|Service Providers|Startups,2014-03-01,USA,NY,New York City,New York,375000,1,2014-04-01,2014-04-01,1,0,16161,16161,
171,Nanolive,http://nanolive.ch,operating,3D Technology|Biotechnology|Software,2013-11-13,CHE,23,Ecublens,Ecublens,3049871,1,2014-04-01,2014-04-01,1,0,16161,16161,
172,Microbial Solutions,http://www.microbialsolutions.co.uk,operating,Clean Technology|Environmental Innovation|Technology|Waste Management,2007-12-01,GBR,K2,London,Oxford,3109003,2,2008-01-22,2015-02-13,5,2579,13900,16479,
173,Tekora,http://www.tekora.com,operating,Apps|Mobile|SaaS|Web Tools,2010-01-01,FRA,A8,Paris,Paris,882121,1,2011-07-05,2011-07-05,1,0,15160,15160,
174,Zong,http://www.zong.com,acquired,Mobile|Mobile Payments|Payments,2000-11-15,CHE,7,Geneva,Geneva,15000000,1,2010-04-26,2010-04-26,1,0,14725,14725,
175,Spling,http://spling.com,operating,Advertising,2011-01-01,USA,NY,New York City,New York,475000,3,2011-02-01,2011-12-05,7,307,15006,15313,
176,Jobmetoo,http://jobmetoo.com,operating,Consulting|Recruiting,2013-01-01,ITA,9,Milan,Milan,643300,1,2014-04-07,2014-04-07,1,0,16167,16167,
177,Damballa,http://www.damballa.com,operating,Cyber Security,2006-04-01,USA,GA,Atlanta,Atlanta,57500000,6,2006-08-21,2014-04-22,19,2801,13381,16182,
178,CellARide,http://www.cellaride.com,operating,Advertising|App Marketing|Auto|Automotive|Cars|Marketplaces|Mobile|SMS,2010-10-01,USA,MO,St. Louis,St Louis,540000,5,2010-10-01,2015-03-25,1,1636,14883,16519,
179,EasyTek,http://easytek.com.cn/index.html,operating,,2011-01-01,CHN,22,Beijing,Beijing,,3,2013-01-01,2014-01-01,2,365,15706,16071,
180,Tectura,http://www.tectura.com,operating,Software,2001-01-01,USA,CA,SF Bay Area,Redwood City,10000000,1,2005-05-26,2005-05-26,2,0,12929,12929,
181,RealScout,http://realscout.com,operating,Property Management|Real Estate|Realtors|Search|Software,2012-06-01,USA,CA,SF Bay Area,Mountain View,7100000,2,2013-08-23,2014-11-17,6,451,15940,16391,
182,Pingboard,https://pingboard.com,operating,Collaboration|Enterprise Software|Human Resources|SaaS,2013-07-15,USA,TX,Austin,Austin,2500000,1,2014-11-17,2014-11-17,12,0,16391,16391,
183,nContact Surgical,http://www.ncontactsurgical.com,acquired,Health Care,2005-01-01,USA,NC,Raleigh,Morrisville,51954587,6,2009-04-09,2014-11-13,3,2044,14343,16387,
184,Organic Motion,http://organicmotion.com,operating,Life Sciences|Software,2006-01-01,USA,NY,New York City,New York,10384999,3,2009-10-22,2013-02-26,1,1223,14539,15762,
185,Transporeon,http://www.transporeon.com,operating,Software,,DEU,1,Ulm,Ulm,,1,2011-07-13,2011-07-13,1,0,15168,15168,
186,Cobase,http://www.cobase.com,operating,Social Media,2012-01-01,,,,,40000,1,2013-03-11,2013-03-11,1,0,15775,15775,
187,Visonys,,operating,Security,2002-01-01,GBR,C5,,,1320000,1,2006-02-01,2006-02-01,1,0,13180,13180,
188,Biopipe Global AG,http://www.biopipe.co,operating,Clean Energy|Clean Technology,2014-01-01,CHE,25,Zurich,Zürich,1000000,3,2014-02-01,2015-01-25,2,358,16102,16460,
189,fluIT Biosystems,http://www.fluit-biosystems.de,closed,Curated Web,,DEU,1,DEU - Other,Wendelsheim,767000,1,2006-08-01,2006-08-01,3,0,13361,13361,
190,Teabox,http://www.teabox.com,operating,E-Commerce|Specialty Foods,2012-07-01,IND,28,IND - Other,Darjeeling,7000000,3,2012-07-17,2015-03-24,5,980,15538,16518,
191,KCMX Capital,http://www.kcmxcapital.com/,acquired,Credit|Enterprises|Finance,2013-01-01,MEX,4,MEX - Other,Estado De México,1500000,2,2014-03-15,2014-04-27,1,43,16144,16187,
192,FBC Device,http://www.fbcdevice.com,operating,Medical Devices,2005-01-01,DNK,18,DNK - Other,Risskov,,1,2014-06-01,2014-06-01,2,0,16222,16222,
193,BridgePoint Medical,http://www.bridgepointmedical.com,acquired,Health Care,2005-01-01,USA,MN,Minneapolis,Plymouth,35301007,5,2007-01-23,2011-03-25,8,1522,13536,15058,
194,Someecards,http://someecards.com,operating,Curated Web,2007-04-01,USA,NY,New York City,New York,350000,1,2008-04-01,2008-04-01,2,0,13970,13970,
195,I-Tooling Manufacturing Group,http://www.i-tooling.com,operating,Manufacturing,,,,,,2930000,1,2009-07-23,2009-07-23,1,0,14448,14448,
196,Besepa,http://www.besepa.com,operating,Banking|FinTech,2014-10-17,ESP,29,Madrid,Madrid,291841,2,2014-11-10,2015-09-14,3,308,16384,16692,
197,Placecast,http://www.placecast.net,operating,Mobile,2005-01-01,USA,CA,SF Bay Area,San Francisco,8000000,2,2009-11-18,2010-03-01,6,103,14566,14669,
198,TaxiBeat,http://taxibeat.com,operating,Android|Apps|Automotive|iOS|Mobile,2011-02-15,GRC,35,Athens,Athens,6700000,3,2013-05-10,2013-12-20,1,224,15835,16059,
199,MacuLogix,http://maculogix.com,operating,Health Care,2004-01-01,USA,PA,Harrisburg,Hummelstown,15125297,4,2012-07-30,2015-10-16,4,1173,15551,16724,
200,RenovoRx,http://www.renovorx.com,operating,Health Care,2009-01-01,USA,CA,SF Bay Area,Los Altos,1810000,2,2013-04-10,2014-01-28,5,293,15805,16098,
201,EcoScraps,http://ecoscraps.com,operating,Clean Technology,2010-01-01,USA,UT,Salt Lake City,Sandy,5828444,6,2011-10-14,2014-03-27,6,895,15261,16156,
202,aTyr Pharma,http://www.atyrpharma.com,ipo,Biotechnology,2005-01-01,USA,CA,San Diego,San Diego,180500000,6,2007-04-18,2015-03-31,16,2904,13621,16525,
203,Adding,http://www.addinghome.com/,operating,,,CHN,22,Beijing,Beijing,,1,2014-05-10,2014-05-10,1,0,16200,16200,
204,BuzzElement,http://www.buzzelement.com,operating,Big Data Analytics|Software,2013-01-01,MYS,12,Kuala Lumpur,Selangor,,1,2013-12-15,2013-12-15,1,0,16054,16054,
205,"Solutionz Technologies, LLC",http://www.solutionztechnologies.com,operating,Hospitality|Online Travel,2005-03-10,USA,FL,Tampa,Tampa,,1,2013-11-25,2013-11-25,1,0,16034,16034,
206,Excel PharmaStudies,http://www.excel-china.com,acquired,Biotechnology|Hospitality,2000-01-01,CHN,22,Beijing,Beijing,1000000,1,2007-12-01,2007-12-01,1,0,13848,13848,
207,GROUNDBOOTH,http://www.groundbooth.com,operating,,,USA,OH,Cleveland,Cleveland,,1,2011-01-01,2011-01-01,1,0,14975,14975,
208,Tizra,http://tizra.com,operating,E-Books|SaaS|Security|Software,2006-03-01,USA,RI,Providence,Providence,850000,2,2007-05-01,2008-09-01,2,489,13634,14123,
209,"360fly, Inc.",http://www.360fly.com,operating,Consumer Electronics|Software,1998-01-01,USA,PA,Pittsburgh,Pittsburgh,17800000,1,2014-08-11,2014-08-11,3,0,16293,16293,
210,WHI Solution,http://www.whisolutions.com,operating,E-Commerce,,USA,NY,New York City,Rye,17880000,1,2006-09-18,2006-09-18,2,0,13409,13409,
211,Etology.com,http://www.etology.com,closed,Advertising,2014-04-15,USA,CA,Los Angeles,Burbank,4000000,1,2006-11-14,2006-11-14,3,0,13466,13466,
212,ThinkUp,https://www.thinkup.com/,operating,Curated Web,2009-08-01,USA,NY,New York City,New York,,1,2013-10-15,2013-10-15,2,0,15993,15993,
213,Mobiscope,http://mobiscope.com,operating,Cloud Computing|Cloud Data Services|Mobile|SaaS,2012-09-01,USA,NJ,Newark,Tenafly,600000,2,2012-09-01,2012-11-01,2,61,15584,15645,
214,WiLinx,http://www.wilinx.com,closed,Semiconductors,2003-01-01,USA,CA,San Diego,Carlsbad,15000000,1,2007-01-10,2007-01-10,1,0,13523,13523,
215,Planned Departure,https://www.planneddeparture.com/,operating,Digital Media|Social Media,,BLZ,5,BLZ - Other,Middlesex,196615,1,2014-11-05,2014-11-05,1,0,16379,16379,
216,MarkITx,http://www.markitx.com,operating,E-Commerce|Enterprise Software|Technology,2012-04-01,USA,IL,Chicago,Chicago,7410000,3,2012-11-06,2013-12-06,9,395,15650,16045,
217,Xenetic Biosciences,http://www.xeneticbio.com,operating,Biotechnology,,GBR,H9,London,London,10000000,1,2014-01-31,2014-01-31,1,0,16101,16101,
218,Hublished,http://hublished.com,operating,Internet Marketing|Software,2012-06-22,USA,NY,New York City,New York,150000,2,2013-06-12,2013-07-25,2,43,15868,15911,
219,MyBuys,http://www.mybuys.com,acquired,Advertising|Displays|Email|Media|Mobile|Personalization|Reviews and Recommendations|Social Media,2006-01-01,USA,CA,SF Bay Area,San Mateo,37300000,4,2007-02-21,2013-10-17,8,2430,13565,15995,
220,Celemi,http://celemi.com/,operating,Simulation|Skill Assessment,1986-01-01,SWE,27,Malmo,Malmö,3733834,1,2001-06-22,2001-06-22,1,0,11495,11495,
221,Changers.com / Blacksquared GmbH,http://www.changers.com,operating,Clean Technology|E-Commerce|Environmental Innovation|Game Mechanics|Gamification|Recycling|Sustainability,2012-01-31,DEU,11,Berlin,Potsdam,1500000,1,2014-02-23,2014-02-23,2,0,16124,16124,
222,Ondore,http://www.ondore.com,operating,Big Data,2005-01-01,USA,CA,SF Bay Area,San Francisco,1500000,4,2012-10-10,2014-04-11,4,548,15623,16171,
223,Grapevine,http://grapevine.me,operating,Advertising|Marketplaces,2012-12-01,USA,MA,Boston,Boston,1150000,2,2013-10-29,2015-02-10,3,469,16007,16476,
224,Cro Analytics,http://croanalytics.com,operating,Analytics,,USA,PA,Philadelphia,New Hope,175000,2,2014-02-20,2014-06-18,1,118,16121,16239,
225,Laboratoire M2,http://www.thymox.com/laboratoire-m2/,operating,Distributors|Health Care|Innovation Management,,,,,,1098478,1,2014-06-09,2014-06-09,2,0,16230,16230,
226,Buzzoo,http://buzzoo.fm,operating,Business Services|Information Technology|Music|Social Media|Software,2012-01-01,IRL,7,Dublin,Dublin,,1,2012-09-01,2012-09-01,1,0,15584,15584,
227,Intelligize,http://www.intelligize.com,operating,Analytics,2007-01-01,USA,NY,New York City,New York,3590727,3,2009-12-15,2011-05-20,2,521,14593,15114,
228,CoolHotNot,https://coolhotnot.com,operating,Consumer Electronics|Hardware + Software|Internet|Networking,2008-12-11,USA,UT,Salt Lake City,Provo,125000,2,2010-05-15,2011-05-05,2,355,14744,15099,
229,GSI - GLOBAL SOCIAL INTELLIGENCE,http://www.gsintell.com,closed,Apps|Data Integration|Technology,2014-10-01,,,,,18710,1,2014-11-28,2014-11-28,1,0,16402,16402,
230,Secure Data In Motion,http://www.sigaba.com,acquired,Software,1999-01-01,USA,CA,SF Bay Area,San Mateo,8000000,1,2004-11-10,2004-11-10,2,0,12732,12732,
231,Viva la Vita,http://www.vivalavita.com,operating,Active Lifestyle|Fitness|Mobile Commerce,2014-01-01,GBR,H9,London,London,57076,1,2014-01-01,2014-01-01,1,0,16071,16071,
232,Elevenia,http://www.elevenia.co.id/,operating,E-Commerce,2013-01-01,,,,,18300000,1,2015-03-12,2015-03-12,2,0,16506,16506,
233,Coding,,operating,Cloud Data Services|Cloud Management|Open Source,,,,,,10000000,1,2015-03-23,2015-03-23,1,0,16517,16517,
234,HelpSocial,https://helpsocial.com,operating,Apps|B2B|Business Services|Curated Web|Customer Service,2014-04-23,USA,TX,San Antonio,San Antonio,,1,2014-01-01,2014-01-01,2,0,16071,16071,
235,Technitrol,http://www.technitrol.com,closed,Hardware + Software,,USA,PA,Philadelphia,Feasterville Trevose,42352200,1,2010-09-03,2010-09-03,2,0,14855,14855,
236,Mercateo,http://www.mercateo.com,operating,E-Commerce,1999-01-01,DEU,2,Munich,München,1365100,1,2007-08-13,2007-08-13,1,0,13738,13738,
237,Kionix,http://www.kionix.com,operating,Hardware + Software,,USA,NY,Elmira,Ithaca,240000,2,2002-04-30,2006-01-01,2,1342,11807,13149,
238,Firefly Games,http://fireflygames.com,operating,Apps|Entertainment|Games|Mobile Games,2014-01-01,USA,CA,Los Angeles,Los Angeles,8000000,1,2015-02-17,2015-02-17,3,0,16483,16483,
239,WebKite,http://webkite.com,operating,Content|Curated Web|Search|Vertical Search,2012-01-04,USA,PA,Pittsburgh,Pittsburgh,,1,2013-11-21,2013-11-21,1,0,16030,16030,
240,Koona E&T,http://koonaent.com/en/,operating,Consumer Goods|Consumers|Pets,,KOR,11,Seoul,Seoul,264713,1,2012-08-24,2012-08-24,1,0,15576,15576,
241,RPI (Reischling Press),http://www.rpiprint.com,operating,Manufacturing,1979-08-01,USA,WA,Seattle,Seattle,10000000,2,2010-07-22,2010-10-25,3,95,14812,14907,
242,Collaborate Cloud,http://www.collaboratecloud.com,operating,Enterprise Software|Information Technology|Project Management|Services,2012-04-01,USA,TX,Austin,Austin,,1,2014-01-10,2014-01-10,1,0,16080,16080,
243,CineCoup,http://www.cinecoup.com,operating,Photography,2012-01-01,CAN,BC,Vancouver,Vancouver,350000,3,2012-05-22,2013-06-25,2,399,15482,15881,
244,Medical Device Works,http://www.medicaldeviceworks.com/,operating,Development Platforms|Medical|Medical Devices,,,,,,16227,1,2015-03-31,2015-03-31,1,0,16525,16525,
245,MyNextRun,http://www.mynextrun.com,operating,E-Commerce|Marketplaces|Sports,2010-11-01,FIN,13,Helsinki,Helsinki,2240532,4,2013-03-15,2015-05-14,5,790,15779,16569,
246,BlueCat,http://www.bluecatnetworks.com,operating,Computers|Enterprise Software|Networking|Virtualization,2001-12-01,CAN,ON,Toronto,Toronto,27800000,2,2009-10-28,2011-07-21,3,631,14545,15176,
247,Fig,https://www.fig.co,operating,Crowdfunding|Investment Management|Video Games,2015-01-01,USA,CA,SF Bay Area,San Francisco,,1,2015-08-18,2015-08-18,3,0,16665,16665,
248,Netsmart Technologies,http://www.ntst.com,operating,Enterprise Software,1968-01-01,USA,NY,NY - Other,Great River,4500000,1,2005-09-19,2005-09-19,3,0,13045,13045,
249,opendorse,http://opendorse.com,operating,Brand Marketing|Marketplaces|Software|Sports,2012-09-01,USA,NE,Omaha,Lincoln,2050000,2,2013-06-30,2015-04-07,1,646,15886,16532,
250,Reesio,http://www.reesio.com,acquired,Finance|Home & Garden|Internet|Investment Management|Real Estate|Startups|Technology,2012-01-20,USA,CA,SF Bay Area,San Francisco,1583500,4,2013-07-29,2015-07-16,4,717,15915,16632,
251,Swapferit,http://www.swapferit.com,operating,Auctions|Curated Web|Finance|Marketplaces|Trading,2011-08-29,USA,WI,WI - Other,Neshkoro,46000,3,2011-02-01,2012-09-01,2,578,15006,15584,
252,Invoost,http://invoost.com,operating,Games,,ESP,29,Madrid,Madrid,206325,2,2012-09-01,2013-06-01,2,273,15584,15857,
253,Quadia Online Video,http://en.quadia.com/,operating,Content|Sales and Marketing|Video,2004-01-01,NLD,7,Utrecht,Hilversum,,1,2012-01-04,2012-01-04,1,0,15343,15343,
254,Relay,http://kik.com,acquired,Messaging|Mobile|Private Social Networking|Video,,CAN,ON,Toronto,Toronto,700000,1,2013-02-12,2013-02-12,5,0,15748,15748,
255,FreeBike Project,http://freebikeproject.com,closed,Advertising,2012-03-01,USA,CA,Los Angeles,Los Angeles,15000,2,2013-08-01,2014-02-20,2,203,15918,16121,
256,Catarizm,http://catarizm.co.jp,operating,Travel,2011-01-01,JPN,40,Tokyo,Tokyo,2000000,1,2014-04-02,2014-04-02,2,0,16162,16162,
257,Youth Noise,http://www.youthnoise.com,operating,Consulting|Internet Marketing|Nonprofits|SEO,2013-10-01,USA,CA,SF Bay Area,San Francisco,1500000,1,2006-06-25,2006-06-25,3,0,13324,13324,
258,Aider,http://www.aider.co.kr/,operating,Medical Devices,2012-06-22,KOR,,,,44645,1,2013-08-22,2013-08-22,2,0,15939,15939,
259,Moodooapp Ltd.,http://www.moodooapp.com,operating,Apps|Startups|Technology,2014-06-11,GBR,H9,London,London,31205,1,2015-08-13,2015-08-13,1,0,16660,16660,
260,Lincor Solutions,http://www.lincor.com,operating,Education|Health and Wellness|Health Care|Medical|Software,2003-01-01,IRL,7,Dublin,Dublin,12500000,2,2013-03-11,2013-12-16,2,280,15775,16055,
261,Futurepump,http://www.futurepump.com/,operating,Energy,2011-01-01,KEN,5,Nairobi,Nairobi,,1,2014-12-23,2014-12-23,1,0,16427,16427,
262,PathScale,http://www.pathscale.com/,acquired,Computers|Software|Technology,,USA,DE,"Wilmington, Delaware",Wilmington,15000000,1,2004-05-19,2004-05-19,5,0,12557,12557,
263,VizeraLabs,http://www.vizeralabs.com/,operating,Consumer Goods|Furniture|Hardware + Software,,USA,CA,SF Bay Area,Sunnyvale,120000,1,2014-07-16,2014-07-16,1,0,16267,16267,
264,"Blinkfire Analtyics, Inc.",http://www.blinkfire.com,operating,Analytics|Big Data Analytics|Social Media|Social Television|Sports,2013-01-01,USA,IL,Chicago,Chicago,900000,1,2014-09-23,2014-09-23,9,0,16336,16336,
265,Fix8,http://www.fix8.com,operating,Entertainment|Messaging|Software|Video,,USA,CA,Los Angeles,Sherman Oaks,5000000,2,2007-10-01,2008-04-03,2,185,13787,13972,
266,Save,https://www.save.co/,operating,Services,2013-01-01,FRA,A8,Puteaux,Puteaux,16700000,1,2015-09-07,2015-09-07,4,0,16685,16685,
267,Perfect Pizza,http://www.perfectpizza.co.uk,operating,Delivery|Hospitality,1982-01-01,GBR,,,,,1,2006-03-01,2006-03-01,1,0,13208,13208,
268,Vocera Communications,http://www.vocera.com,ipo,Health Care Information Technology|Mobile|Software|Telecommunications,2000-02-16,USA,CA,SF Bay Area,San Jose,20729000,7,2002-05-01,2013-11-13,11,4214,11808,16022,
269,Xipin,http://www.xipin.me,operating,E-Commerce,,CHN,,,,10000000,1,2012-10-01,2012-10-01,1,0,15614,15614,
270,Partender,http://partender.com,operating,Accounting|Finance|Hospitality|Mobile|Nightclubs|Nightlife|Restaurants|SaaS,2012-11-01,USA,CA,SF Bay Area,San Francisco,50000,3,2013-09-13,2014-05-01,23,230,15961,16191,
271,Zeetl,http://zeetl.com,acquired,Messaging|Social Media|Telephony,2013-03-01,CAN,BC,Vancouver,Vancouver,,1,2013-09-01,2013-09-01,1,0,15949,15949,
272,AxisMobile,http://www.axismobile.com,acquired,Mobile,2000-01-01,ISR,5,Tel Aviv,Tel Aviv,3000000,1,2007-05-17,2007-05-17,3,0,13650,13650,
273,SocialFlow,http://www.socialflow.com,operating,Advertising|Publishing|Sales and Marketing|Social Media,2009-10-01,USA,NY,New York City,New York,27030000,6,2010-03-01,2015-07-13,17,1960,14669,16629,
274,Pressglue,http://www.pressglue.com,operating,Advertising|Journalism|Local|News,2011-02-02,GBR,H9,London,London,312004,3,2011-02-01,2012-03-10,2,403,15006,15409,
275,ei Technologies,http://www.eitechnologies.co.uk,closed,Enterprise Software,2012-08-01,GBR,E4,GBR - Other,Saffron Walden,52792,1,2013-05-01,2013-05-01,1,0,15826,15826,
276,Wenwo,http://www.wenwo.com/,operating,Mobile,,,,,,,2,2011-06-01,2012-03-01,2,274,15126,15400,
277,Highlighter,http://highlighter.com,operating,Education|Finance,2010-08-07,USA,WA,Seattle,Seattle,730000,4,2010-10-28,2011-12-01,13,399,14910,15309,
278,RiteTag,https://ritetag.com,operating,Broadcasting|Data Visualization|Quantitative Marketing|SaaS|Search|SEO|Social Media|Social Media Management|Social Media Marketing|Social Media Monitoring|Startups,2012-01-10,CZE,52,Prague,Prague,3000,1,2012-02-01,2012-02-01,2,0,15371,15371,
279,Vrse,http://www.vrse.com,operating,Apps|Software,,USA,CA,Los Angeles,Los Angeles,,1,2015-10-01,2015-10-01,1,0,16709,16709,
280,Aircuity,http://www.aircuity.com,operating,Clean Technology,2000-01-01,USA,MA,Boston,Newton,18745880,4,2008-09-30,2015-04-03,3,2376,14152,16528,
281,EasySize,http://www.easysize.me,operating,E-Commerce|Fashion,2013-10-01,DNK,17,Copenhagen,Copenhagen,,2,2013-09-02,2015-01-01,4,486,15950,16436,
282,Cytomics Pharmaceuticals,http://www.cytomics.fr,closed,Biotechnology,2000-01-01,FRA,A8,Orsay,Orsay,11885330.3329477,1,2006-02-28,2006-02-28,3,0,13207,13207,
283,DailyCred,http://www.dailycred.com,operating,Curated Web,2011-01-01,USA,CA,SF Bay Area,San Francisco,420000,2,2011-03-01,2011-06-16,7,107,15034,15141,
284,Creditable,http://creditable.co/,operating,Financial Services,,BWA,9,,,20352,1,2014-07-21,2014-07-21,1,0,16272,16272,
285,TearScience,http://www.tearscience.com,operating,Health Care|Medical Devices,2005-01-01,USA,NC,Raleigh,Morrisville,114500000,2,2010-05-06,2013-02-26,7,1027,14735,15762,
286,Spot Influence,http://www.spotinfluence.com,acquired,Analytics|Developer APIs|Finance|Social Media|Software,2009-09-09,USA,CO,Denver,Boulder,358969,2,2010-08-01,2011-05-10,1,282,14822,15104,
287,Carmudi,http://carmudi.com,operating,Consumer Internet,2013-01-01,PHL,,,,35000000,2,2014-04-22,2015-02-17,4,301,16182,16483,
288,GeekSaveWorld Incorporation,,operating,Consumer Goods|Specialty Foods,,,,,,41250,1,2014-12-01,2014-12-01,1,0,16405,16405,
289,Riverbed Technology,http://www.riverbed.com,acquired,Communications Hardware|Software|Technology,2002-05-01,USA,CA,SF Bay Area,San Francisco,28400000,4,1999-10-13,2006-01-01,12,2272,10877,13149,
290,BYOM!,http://byomit.com/,operating,Customer Service|Customer Support Tools|Software,2012-08-01,ESP,60,Valencia,Valencia,265064,1,2013-06-11,2013-06-11,1,0,15867,15867,
291,eMarketer,http://emarketer.com,operating,Advertising|Business Intelligence|E-Commerce|Market Research|Media|Mobile|Social Media,1996-01-01,USA,NY,New York City,New York,25000000,1,2012-01-11,2012-01-11,1,0,15350,15350,
292,MoVoxx,http://movoxx.com,acquired,Advertising,2006-08-01,USA,CA,Los Angeles,Santa Monica,,1,2008-10-30,2008-10-30,4,0,14182,14182,
293,Galtney Group,,acquired,,1983-01-01,USA,IL,Chicago,Itasca,,1,1999-01-14,1999-01-14,1,0,10605,10605,
294,StemCo Biomedical,http://www.stemcobiomedical.com/,closed,Medical Devices,,,,,,13800000,2,2000-10-24,2003-03-18,7,875,11254,12129,
295,Mimir,https://mimirhq.com/,operating,Education,2014-01-01,USA,IN,Indianapolis,West Lafayette,700000,1,2015-08-18,2015-08-18,1,0,16665,16665,
296,Cambridge Positioning Systems,,acquired,Software,1993-01-01,GBR,C3,London,Cambridge,339000,1,2006-10-02,2006-10-02,2,0,13423,13423,
297,Snackr,http://www.snackr.net,operating,Software,,USA,CA,Anaheim,Brea,,1,2011-09-01,2011-09-01,1,0,15218,15218,
298,Justworks,http://www.justworks.com,operating,Human Resources,2012-10-01,USA,NY,New York City,New York,20000000,3,2013-10-16,2015-05-19,7,580,15994,16574,
299,TurningPoint,http://www.turningpoint-healthcare.com/,operating,,2014-01-01,USA,FL,Orlando,Lake Mary,,1,2014-04-02,2014-04-02,1,0,16162,16162,
300,MEDArchon,http://www.medarchon.com,operating,Biotechnology,2012-01-01,USA,TN,Nashville,Nashville,1802640,2,2013-05-03,2014-08-27,1,481,15828,16309,
301,Vibrado Technologies,http://www.vibradotech.com/,operating,Health and Wellness|Wearables,2012-01-01,USA,CA,SF Bay Area,Sunnyvale,1359471,1,2014-08-14,2014-08-14,1,0,16296,16296,
302,Codeonline,http://www.codeonline.com,operating,Technology,,,,,,2453923,1,2002-03-11,2002-03-11,2,0,11757,11757,
303,TDX,http://www.tdxgroup.com,acquired,Analytics|Customer Service|Debt Collecting|Financial Services,2004-01-01,GBR,J8,Nottingham,Nottingham,,1,2013-01-01,2013-01-01,1,0,15706,15706,
304,Healthy Humans,http://www.healthyhumans.com,operating,Diabetes|Health and Wellness|Medical|Nutrition,,USA,PA,Philadelphia,Wayne,150000,1,2008-07-01,2008-07-01,1,0,14061,14061,
305,Topspin Communications,,acquired,Public Relations,2000-01-01,USA,CA,SF Bay Area,Mountain View,20000000,1,2003-11-10,2003-11-10,5,0,12366,12366,
306,X-IO,http://xiostorage.com,operating,Information Technology|Services|Storage,,GBR,H9,London,London,2000000,1,2013-03-31,2013-03-31,1,0,15795,15795,
307,ATG Access,http://www.atgaccess.com,operating,Security,1991-01-01,GBR,N1,GBR - Other,Haydock,,1,2013-02-20,2013-02-20,1,0,15756,15756,
308,Eataly Net,http://www.eataly.it/,operating,Specialty Foods,,ITA,12,Turin,Torino,,1,2013-04-13,2013-04-13,1,0,15808,15808,
309,Jirafe,http://jirafe.com,operating,Analytics,2010-01-01,USA,NY,New York City,New York,7000000,2,2010-12-20,2012-06-26,5,554,14963,15517,
310,HighJump Software,http://www.highjump.com,acquired,Software,1983-01-01,USA,MN,Minneapolis,Minneapolis,10000000,1,2002-02-04,2002-02-04,2,0,11722,11722,
311,Digital Shadows,http://www.digitalshadows.com,operating,Analytics|Cyber Security|Financial Services|Information Security,2011-05-01,GBR,H9,London,London,8000000,3,2012-12-12,2015-02-11,4,791,15686,16477,
312,MissFresh e-commerce,http://www.missfresh.cn/,closed,,,,,,,41000000,2,2015-11-12,2015-11-12,3,0,16751,16751,
313,THERAVECTYS,http://www.theravectys.com,operating,Biotechnology,2005-01-01,FRA,A8,Paris,Paris,30449358,3,2012-09-04,2015-01-26,6,874,15587,16461,
314,Adisn,http://www.adisn.com,acquired,Advertising,,USA,CA,Los Angeles,Woodland Hills,1550000,2,2008-08-25,2009-05-13,1,261,14116,14377,
315,BeavEx,http://www.beavex.com,operating,Public Transportation,,USA,GA,Atlanta,Atlanta,,1,2011-11-22,2011-11-22,1,0,15300,15300,
316,AgroNext,http://www.agronext.net,operating,Agriculture,2014-05-01,,,,,,1,2014-06-09,2014-06-09,1,0,16230,16230,
317,Potomac Research Group,http://www.potomacresearch.com,operating,Analytics,,,,,,,1,2012-01-09,2012-01-09,1,0,15348,15348,
318,Mom Trusted,http://momtrusted.com,operating,Social Media,2008-01-01,USA,CA,SF Bay Area,Menlo Park,1000000,1,2012-07-08,2012-07-08,4,0,15529,15529,
319,PandaBed,http://www.pandabed.com,operating,E-Commerce|Travel,2012-10-01,SGP,,Singapore,Singapore,211435,2,2014-07-10,2015-04-01,4,265,16261,16526,
320,Credivalores-Crediservicios,https://www.credivalores.com.co,operating,Finance,2003-01-01,COL,34,Bogota,Bogotá,34000000,1,2014-09-29,2014-09-29,1,0,16342,16342,
321,TableSafe,https://www.tablesafeinc.com/,operating,Hardware + Software|Information Security|Mobile Payments|SaaS,2010-01-01,USA,WA,Seattle,Kirkland,13956072,4,2011-08-30,2015-03-16,2,1294,15216,16510,
322,SocialGO,http://www.socialgo.com,operating,Internet|Networking|Social Media|Social Network Media,2007-06-01,GBR,H9,London,London,3000000,2,2010-01-14,2011-02-10,1,392,14623,15015,
323,AlertMe,http://www.alertme.com,acquired,Clean Technology,2006-04-01,GBR,C3,London,Cambridge,36781282,2,2009-06-11,2010-10-08,8,484,14406,14890,
324,Outbound.io,https://outbound.io,operating,Software,2013-04-23,USA,CA,SF Bay Area,San Francisco,2070000,4,2013-12-01,2015-08-10,10,617,16040,16657,
325,Innovationszentrum für Telekommunikationstechnik,http://www.izt-labs.de,operating,Web Hosting,1997-01-01,DEU,2,Erlangen,Erlangen,1052000,2,2005-04-02,2008-02-06,2,1040,12875,13915,
326,ScootPad Corporation,http://scootpad.com,operating,Education,2011-11-01,USA,CA,SF Bay Area,Milpitas,1600000,2,2012-12-01,2013-11-10,6,344,15675,16019,
327,Kardia Health Systems,http://www.kardiahealth.com,closed,Health Care|Information Technology|SaaS|Software,2006-01-01,USA,MN,Minneapolis,Minneapolis,18916000,3,2007-01-01,2009-08-20,2,962,13514,14476,
328,AYOXXA Biosystems,http://ayoxxa.com,operating,Biotechnology,2010-01-01,DEU,7,Cologne,Cologne,26226850,3,2012-09-20,2014-12-02,10,803,15603,16406,
329,Mtivity,http://www.mtivity.com,operating,Enterprise Software,1999-01-01,GBR,H9,London,London,9680000,2,2005-07-08,2007-07-23,7,745,12972,13717,
330,C2C Link,http://www.c2clink.com,operating,Semiconductors,,CAN,ON,Toronto,Hamilton,982000,2,2008-09-22,2010-01-05,2,470,14144,14614,
331,Quotient Technology,http://www.coupons.com,ipo,Advertising|Coupons|Curated Web,1998-05-01,USA,CA,SF Bay Area,Mountain View,276760000,7,2005-09-01,2013-10-01,6,2952,13027,15979,
332,KMLabs,http://www.kmlabs.com/,operating,Delivery,1994-01-01,USA,CO,Denver,Boulder,11000000,2,2015-10-15,2015-11-03,2,19,16723,16742,
333,Unomy,http://www.unomy.com,operating,Business Intelligence|Enterprise Software|Lead Generation|Sales and Marketing,2012-08-01,ISR,5,Tel Aviv,Tel Aviv,,3,2012-01-01,2014-03-28,3,817,15340,16157,
334,Cardio control,http://cardio-control.com/,closed,Health Care|Physicians|Services,,,,,,285000,1,2013-01-01,2013-01-01,1,0,15706,15706,
335,HauteDay,http://hauteday.com/,operating,Shopping,,USA,CA,San Diego,Carlsbad,120000,1,2014-07-16,2014-07-16,1,0,16267,16267,
336,Meine Spielzeugkiste,http://www.meinespielzeugkiste.de,operating,,,,,,,,1,2013-08-22,2013-08-22,2,0,15939,15939,
337,SyndicateRoom,http://www.syndicateroom.com,operating,Crowdfunding|Finance|Venture Capital,2012-01-01,GBR,C3,London,Cambridge,1844725.36651106,2,2014-09-02,2015-04-30,2,240,16315,16555,
338,Social Media Networks,,operating,Software,2007-01-01,USA,CA,SF Bay Area,Palo Alto,9750000,2,2007-10-18,2009-02-20,3,491,13804,14295,
339,Inspirock,http://www.inspirock.com/,operating,Travel & Tourism,2012-01-01,USA,CA,SF Bay Area,East Palo Alto,3000000,1,2015-06-25,2015-06-25,1,0,16611,16611,
340,iMove,http://www.imoveinc.com,acquired,Hardware + Software|Video,1995-01-01,USA,OR,"Portland, Oregon",Portland,5717561,5,2004-07-01,2013-09-04,3,3352,12600,15952,
341,Sonda41,http://www.sonda41.com,closed,Analytics|Machine Learning|Natural Language Processing|Opinions|Reviews and Recommendations|SaaS|Social Media|Social Media Monitoring,2012-06-08,USA,CA,SF Bay Area,Sunnyvale,,1,2012-06-01,2012-06-01,1,0,15492,15492,
342,Edamam,http://www.edamam.com,operating,Health and Wellness|Nutrition|Search|Semantic Web,2011-10-01,USA,NY,New York City,New York,1900000,2,2013-01-01,2015-01-28,6,757,15706,16463,
343,Druck und Werte,http://www.druckundwerte.de,operating,Consulting,2008-01-01,DEU,13,Leipzig,Leipzig,,1,2009-09-28,2009-09-28,1,0,14515,14515,
344,The Consulting Consortium,,operating,Clean Technology,2000-01-01,GBR,H9,London,London,15152514,1,2014-03-25,2014-03-25,1,0,16154,16154,
345,LaunchBit,http://www.launchbit.com,acquired,Advertising|Email Marketing|Startups,2011-07-01,USA,CA,SF Bay Area,Mountain View,960000,2,2011-05-17,2012-08-06,11,447,15111,15558,
346,Comply365,http://comply365.com,operating,Document Management|Enterprise Software|Mobility|Software,2007-10-01,USA,WI,Milwaukee,Beloit,14000000,2,2011-09-01,2014-10-07,1,1132,15218,16350,
347,Onion Id,http://www.onionid.com/,operating,,,,,,,,1,2015-07-17,2015-07-17,1,0,16633,16633,
348,Saisei,http://www.saisei.com/,operating,Software,2013-01-01,USA,CA,SF Bay Area,Sunnyvale,14253858,4,2013-01-01,2015-10-07,1,1009,15706,16715,
349,Optii Solution,http://optiisolutions.com/,operating,Analytics|Computers|Software|Training,2006-01-01,AUS,4,AUS - Other,Mooloolaba,3347305.38922156,2,2013-08-28,2015-09-02,5,735,15945,16680,
350,Prospectvision,http://www.prospectvision.net,operating,Brand Marketing|Business Development|CRM|Lead Generation|SaaS|Software,2008-05-01,GBR,K7,London,Reading,139411,1,2008-04-28,2008-04-28,1,0,13997,13997,
351,Cytena,http://www.cytena.com/,operating,Biotechnology|Health Care|Medical,2014-06-01,DEU,1,Freiburg,Freiburg,1208791,1,2015-04-29,2015-04-29,1,0,16554,16554,
352,SOHA SYSTEMS,http://soha.io,operating,Network Security,2013-01-01,USA,CA,SF Bay Area,Sunnyvale,9800000,1,2015-04-07,2015-04-07,4,0,16532,16532,
353,NextGame,http://www.nextgamenation.com,operating,Curated Web,2011-02-01,USA,DC,"Washington, D.C.",Washington,,1,2012-03-07,2012-03-07,1,0,15406,15406,
354,DataVisor,http://www.datavisor.com/,operating,Big Data Analytics|Cyber Security|Fraud Detection,2013-12-20,USA,CA,SF Bay Area,Mountain View,14500000,1,2015-10-13,2015-10-13,2,0,16721,16721,
355,Stayes,http://stayes.com/,operating,Rental Housing,2014-08-01,KOR,11,Seoul,Seoul,,1,2014-09-01,2014-09-01,1,0,16314,16314,
356,3DDUO,http://www.3dduo.com/en,closed,Business Services|Video Games,,FRA,B4,FRA - Other,Tourcoing,701760,1,2009-06-12,2009-06-12,1,0,14407,14407,
357,DailyBooth,http://dailybooth.com,acquired,Photo Sharing|Public Relations,2009-03-01,USA,CA,SF Bay Area,San Francisco,7015000,3,2009-08-19,2011-03-08,15,566,14475,15041,
358,"FlightRecorder, Inc.",http://www.flightrecorder.io,closed,,2013-10-04,USA,CA,SF Bay Area,Berkeley,300000,2,2014-06-01,2015-07-17,7,411,16222,16633,
359,Youxiduo,http://www.youxiduo.com/,operating,Mobile,,CHN,23,Shanghai,Shanghai,17647446,2,2014-01-01,2015-01-28,1,392,16071,16463,
360,Grab,http://grab.in,operating,Delivery|Enterprises|Restaurants,,IND,16,Mumbai,Mumbai,1000000,1,2015-04-27,2015-04-27,2,0,16552,16552,
361,Unique Influence,http://uniqueinfluence.com/,operating,Advertising,2011-03-15,USA,TX,Austin,Austin,,1,2012-08-18,2012-08-18,1,0,15570,15570,
362,MobiVita,http://mobivita.ru,closed,Internet|Mobile Commerce|Video Streaming,2011-01-01,RUS,66,St. Petersburg,Saint Petersburg,135000,1,2012-03-13,2012-03-13,1,0,15412,15412,
363,Ravenflow,http://www.ravenflow.com,operating,Software,2000-01-01,USA,CA,SF Bay Area,Emeryville,20700000,3,2005-12-07,2009-04-13,9,1223,13124,14347,
364,bookacoach,http://www.bookacoach.com,operating,E-Commerce|Event Management|Online Scheduling|SaaS|Sports,2012-08-03,USA,IN,Indianapolis,Indianapolis,500000,2,2012-08-31,2014-01-03,20,490,15583,16073,
365,JOYsee Interaction Science and Technology,http://www.joyseetv.com,operating,Enterprise Software,,CHN,22,Beijing,Beijing,7342309,1,2011-08-01,2011-08-01,1,0,15187,15187,
366,Quantifeed,http://www.quantifeed.com,operating,Finance|Finance Technology|FinTech|Investment Management|Wealth Management,2013-06-01,HKG,,Hong Kong,Hong Kong,41250,1,2014-01-01,2014-01-01,1,0,16071,16071,
367,Brill Street + Company,http://www.brillstreet.com,operating,Human Resources|Recruiting|Staffing Firms,2006-01-01,USA,IL,Chicago,Chicago,1287500,1,2007-11-20,2007-11-20,1,0,13837,13837,
368,SpinDrift,,operating,Health Care,,,,,,,1,2013-12-20,2013-12-20,1,0,16059,16059,
369,Giftly,http://www.giftly.com,operating,Consumers|Curated Web|Gift Card|Sales and Marketing,2010-01-01,USA,CA,SF Bay Area,San Francisco,2800000,1,2011-03-01,2011-03-01,6,0,15034,15034,
370,EVault,http://www.evault.com,acquired,Data Security|Homeland Security|Software|Storage,1997-01-01,USA,CA,SF Bay Area,San Francisco,6000000,1,2003-03-04,2003-03-04,4,0,12115,12115,
371,Laser Wire Solutions,http://www.laserwiresolutions.com,operating,Manufacturing,2011-01-01,GBR,Y9,Pontypridd,Pontypridd,416694,1,2014-02-02,2014-02-02,2,0,16103,16103,
372,Viridity Software,http://www.viriditysoftware.com,acquired,Data Centers|Environmental Innovation|Services|Software,2008-01-01,USA,MA,Boston,Burlington,15000000,2,2008-12-01,2010-08-19,4,626,14214,14840,
373,Qvivr,http://www.swypcard.com,operating,Finance Technology|Internet of Things|Mobile Payments,2014-01-01,USA,CA,SF Bay Area,Santa Clara,1755027,1,2015-11-12,2015-11-12,2,0,16751,16751,
374,FarmaciaClub,http://farmaciaclub.com,operating,E-Commerce,2012-01-01,ESP,29,Madrid,Madrid,390360,1,2013-01-06,2013-01-06,1,0,15711,15711,
375,FieldSolutions,http://www.fieldsolutions.com,acquired,Hardware + Software,2006-01-01,USA,MN,Minneapolis,Minnetonka,1500000,1,2010-07-01,2010-07-01,1,0,14791,14791,
376,SmartAngels.fr,http://smartangels.fr,operating,Finance,2011-01-01,FRA,A8,Paris,Paris,1381877,1,2014-04-24,2014-04-24,10,0,16184,16184,
377,SpringLoaded Technology,http://springloadedtechnology.com,operating,Consumer Electronics,2012-09-08,CAN,NS,Halifax,Halifax,473326,1,2014-10-05,2014-10-05,2,0,16348,16348,
378,Bandwagon,http://www.bandwagon.io,operating,Public Transportation|Transportation,2009-01-01,USA,NY,New York City,New York,725000,3,2013-12-10,2014-11-10,1,335,16049,16384,
379,Teachable,http://teachable.net,operating,Education|Media|Social Network Media|Startups,2007-09-01,GBR,F2,London,Basingstoke,158567,1,2008-03-01,2008-03-01,2,0,13939,13939,
380,Speakwell Enterprises,http://speakwell.co.in,operating,Communications Infrastructure|Language Learning|Professional Networking,,IND,16,Mumbai,Mumbai,10000000,1,2015-03-10,2015-03-10,3,0,16504,16504,
381,Sproutkin,http://www.sproutkin.com,operating,Curated Web,2012-01-01,USA,CA,SF Bay Area,San Francisco,1000000,1,2013-03-10,2013-03-10,1,0,15774,15774,
382,Clever Machine,,operating,Software,,USA,CA,SF Bay Area,San Francisco,4815000,2,2011-01-13,2011-03-25,2,71,14987,15058,
383,"ReferralMob, Inc.",http://www.referralmob.com,operating,Recruiting,2013-01-01,USA,MA,Boston,Boston,2000000,1,2015-07-09,2015-07-09,4,0,16625,16625,
384,inmobly,http://inmobly.com,operating,Digital Media|Mobile|Mobile Video|Soccer|Sports|Video,2011-01-01,USA,OH,"Columbus, Ohio",Columbus,4445000,5,2012-11-30,2015-10-30,4,1064,15674,16738,
385,BABADU,http://babadu.ru,operating,E-Commerce,2009-01-01,USA,FL,Tampa,St. Petersburg,5000000,2,2013-06-01,2014-09-12,2,468,15857,16325,
386,Kiana Analytics,http://www.kianaanalytics.com/,operating,Analytics,2013-07-01,USA,CA,SF Bay Area,Sunnyvale,,1,2015-04-30,2015-04-30,3,0,16555,16555,
387,Widevine Technologies,http://www.widevine.com,acquired,Consumer Electronics|Digital Rights Management|Games|Internet TV,1998-01-01,USA,WA,Seattle,Seattle,66300000,6,2000-09-01,2009-12-14,11,3391,11201,14592,
388,Online Agility,http://www.onlineagility.com,operating,Entrepreneur,,AUS,2,Sydney,Sydney,,1,2006-01-01,2006-01-01,1,0,13149,13149,
389,VisuaLogistic Technologies,http://visualogistics.net,operating,Real Time|Software|Transportation,2013-08-01,USA,AR,Fayetteville,Fayetteville,,1,2013-09-03,2013-09-03,1,0,15951,15951,
390,TradingView,http://www.tradingview.com,operating,All Markets|Android|Business Services|Cloud Computing|Education|Finance|Internet|iPad|iPhone|Social Media|Stock Exchanges|Trading,2011-09-01,USA,IL,Chicago,Chicago,3650000,3,2013-10-13,2015-07-16,14,641,15991,16632,
391,TapTrack,http://www.taptrack.com,operating,Enterprise Application|Enterprise Hardware|Event Management|Hardware + Software|NFC|RFID,2011-11-11,CAN,ON,Toronto,Toronto,19299,1,2013-10-14,2013-10-14,1,0,15992,15992,
392,Crossfader,http://crossfader.fm,operating,Digital Media|Entertainment|Media|Mobile|Music|Teenagers,2012-06-01,USA,CA,SF Bay Area,San Francisco,5400000,6,2012-09-01,2014-07-17,17,684,15584,16268,
393,Aesthera Corporation,,acquired,Cosmetics,2004-01-01,USA,CA,SF Bay Area,Pleasanton,6500000,1,2005-02-15,2005-02-15,2,0,12829,12829,
394,Codelearn,http://www.codelearn.org/,operating,E-Commerce,2012-01-01,IND,19,Bangalore,Bangalore,150000,1,2012-12-01,2012-12-01,1,0,15675,15675,
395,TriActive,http://www.triactive.com,operating,Software,1997-01-01,USA,TX,Austin,Austin,2100000,1,2007-04-30,2007-04-30,3,0,13633,13633,
396,Websupport,http://www.websupport.sk,operating,Software|Startups|Web Hosting,2002-05-01,SVK,2,Bratislava,Bratislava,,1,2013-05-21,2013-05-21,1,0,15846,15846,
397,PriceMatch,https://www.pricematch.travel/en/,acquired,Hotels|SaaS|Software,2012-04-20,FRA,A8,Paris,Paris,10381850,2,2013-11-19,2015-02-13,4,451,16028,16479,
398,Atempo,http://atempo.com,acquired,Software,1992-01-01,USA,CA,SF Bay Area,Palo Alto,35860000,3,2003-03-31,2007-09-06,8,1620,12142,13762,
399,Lost My Name,http://www.lostmy.name/,operating,Kids|Publishing,2012-01-01,GBR,H9,London,London,9837165,2,2014-06-04,2015-06-25,7,386,16225,16611,
400,Wealink.com,http://www.wealink.com/,operating,Social Media,2004-01-01,,,,,,2,2006-01-01,2012-07-01,3,2373,13149,15522,
401,CollegeClub.com,,operating,Education|Internet,,USA,NY,New York City,New York,40000000,1,2000-02-01,2000-02-01,2,0,10988,10988,
402,Ads Click,http://ads-click.com,operating,Advertising,2004-01-01,CHE,7,Geneva,Geneva,6950000,2,2007-03-01,2008-06-10,2,467,13573,14040,
403,Troika Networks,,acquired,Web Hosting,1998-01-01,USA,CA,Los Angeles,Westlake Village,27400000,2,2003-05-29,2005-07-14,10,777,12201,12978,
404,Kateeva,http://kateeva.com,operating,3D Printing|Digital Signage|Printing,2008-01-01,USA,CA,SF Bay Area,Menlo Park,38000000,1,2014-09-15,2014-09-15,7,0,16328,16328,
405,Crema,http://www.getcrema.com,operating,Coffee|Loyalty Programs|Mobile Payments|Sales and Marketing,2015-01-01,CAN,QC,Montreal,Montréal,,1,2015-08-20,2015-08-20,1,0,16667,16667,
406,LatamLeap,,operating,Angels|Startups|Venture Capital,,CHL,12,Santiago,Santiago,40000,1,2012-11-15,2012-11-15,1,0,15659,15659,
407,COADE,http://www.coade.com,acquired,Software,1984-01-01,USA,TX,Houston,Houston,42000000,1,2007-08-06,2007-08-06,1,0,13731,13731,
408,AirMap,http://www.airmap.io,operating,Aerospace|Big Data|Maps,2014-12-01,USA,CA,Los Angeles,Santa Monica,2600000,1,2015-07-14,2015-07-14,8,0,16630,16630,
409,uPlayMe,,operating,Entertainment|Music Services,2006-01-01,USA,NY,New York City,New York,,1,2007-08-22,2007-08-22,2,0,13747,13747,
410,CloudPassage,https://www.cloudpassage.com,operating,Cloud Security|Enterprise Software|Network Security|Security,2009-01-01,USA,CA,SF Bay Area,San Francisco,88900000,5,2011-04-27,2015-08-19,18,1575,15091,16666,
411,Rishar,,operating,Social Network Media,,ARE,3,Dubai,Dubai,30000,1,2015-02-01,2015-02-01,1,0,16467,16467,
412,Dining Secretary,http://www.xiaomishu.com,operating,E-Commerce,2004-01-01,CHN,23,Shanghai,Shanghai,,2,2007-11-01,2011-01-01,1,1157,13818,14975,
413,mth sense,http://mthsense.com,operating,Public Relations|Software,2012-09-01,USA,CA,SF Bay Area,San Jose,,1,2012-08-01,2012-08-01,1,0,15553,15553,
414,Eclips,https://www.ecli.ps,operating,Curated Web|Education|Internet Marketing|Social Media|Social Media Marketing|Video,2013-02-01,USA,MA,Boston,Boston,565000,3,2013-11-01,2015-07-01,1,607,16010,16617,
415,Players' Lounge,https://www.playerslounge.co/,operating,Entertainment|Fantasy Sports|Sports,2014-10-01,USA,NY,New York City,Brooklyn,,1,2015-03-01,2015-03-01,1,0,16495,16495,
416,Mawdoo3,http://mawdoo3.com/,operating,Startups,2012-01-01,BRA,15,BRA - Other,Jordânia,1500000,1,2015-08-19,2015-08-19,1,0,16666,16666,
417,120 Sports,http://www.120sports.com,operating,Sports,2013-01-01,USA,IL,Chicago,Chicago,,1,2014-02-20,2014-02-20,3,0,16121,16121,
418,Dachis Group,http://www.dachisgroup.com,acquired,Advertising|Big Data|Enterprise Software|Social Media Marketing,2008-01-01,USA,TX,Austin,Austin,37500000,2,2011-01-04,2013-03-20,2,806,14978,15784,
419,West Ridge Networks,http://www.westridgenetworks.com/,operating,Internet,2003-01-01,USA,MA,Boston,Littleton,8000000,1,2003-09-29,2003-09-29,2,0,12324,12324,
420,Benson Group,http://www.bensongroup.co.uk,acquired,Manufacturing,,GBR,H5,,,,1,2012-01-06,2012-01-06,1,0,15345,15345,
421,Simplicissimus Book Farm,http://www.simplicissimus.it,operating,Curated Web,,ITA,9,Milan,Milan,3367250,1,2013-01-25,2013-01-25,1,0,15730,15730,
422,Empact Solutions,https://www.empactsolutions.com,operating,Enterprise Software|Services|Technology,2000-01-01,USA,NY,New York City,New York,10000000,1,2002-01-10,2002-01-10,1,0,11697,11697,
423,3SP Group,http://www.3spgroup.com,operating,Manufacturing,,FRA,A6,,,13780000,1,2009-05-20,2009-05-20,1,0,14384,14384,
424,Giggling Squid,http://www.gigglingsquid.com/,operating,Food Processing,,GBR,N7,London,Guildford,9742335.52197607,1,2015-11-16,2015-11-16,1,0,16755,16755,
425,WeShareSolar,http://wesharesolar.com/,operating,Crowdfunding,2013-01-01,NLD,7,Amsterdam,Amsterdam,569413,1,2015-02-18,2015-02-18,2,0,16484,16484,
426,ScraperWiki,http://scraperwiki.com,operating,Analytics|Cloud Computing|Databases|Information Technology,2010-01-01,GBR,H8,Liverpool,Liverpool,1198810,2,2009-12-01,2012-02-03,1,794,14579,15373,
427,Microventures,http://www.microventures.com,operating,Crowdfunding|Finance|Venture Capital,2009-10-01,USA,TX,Austin,Austin,450000,2,2011-10-27,2011-12-16,2,50,15274,15324,
428,BigRoad Inc.,http://www.bigroad.com,operating,Android|Apps|Software,2011-04-01,CAN,ON,Toronto,Kitchener,2238677,4,2011-12-01,2013-01-15,3,411,15309,15720,
429,isaac10 GmbH,http://www.isaac10.com,operating,Accounting|Billing|FinTech|Payments|SaaS,2013-10-31,DEU,13,Leipzig,Leipzig,595504,4,2014-02-01,2015-09-22,1,598,16102,16700,
430,Orative Corporation,http://www.orative.com/,acquired,Enterprise Software|Mobile|Software,2002-01-01,USA,CA,SF Bay Area,San Jose,6000000,1,2003-06-27,2003-06-27,2,0,12230,12230,
431,Admetric,http://www.getadmetric.com,operating,Advertising|Digital Signage|Retail,2009-01-01,CAN,QC,Levis,Lévis,,2,2009-01-01,2010-01-01,1,365,14245,14610,
432,Ensogo,http://www.ensogo.com,acquired,E-Commerce,2009-07-01,THA,40,Bangkok,Bangkok,41600000,4,2010-07-01,2015-04-20,3,1754,14791,16545,
433,Amimon,http://www.amimon.com,operating,Semiconductors,2004-01-01,ISR,5,Tel Aviv,Herzliya,52120000,6,2005-01-16,2015-06-11,19,3798,12799,16597,
434,inTouch,,operating,,,,,,,,1,2014-11-01,2014-11-01,1,0,16375,16375,
435,AerovectRx,http://www.aerovectrx.com/,closed,Health Care|Medical|Therapeutics,,USA,GA,Atlanta,Atlanta,1200000,5,2006-09-08,2009-01-15,9,860,13399,14259,
436,Pamlico Biopharma,http://pamlicobio.com/,operating,Bio-Pharm,2011-01-01,USA,OK,Oklahoma City,Oklahoma City,2200000,1,2015-04-29,2015-04-29,2,0,16554,16554,
437,Endosense,http://www.endosense.com,acquired,Biotechnology|Health Care,2003-01-01,CHE,7,Geneva,Geneva,80600000,3,2009-10-27,2013-03-06,15,1226,14544,15770,
438,Climeworks,http://www.climeworks.com/,operating,Machine Learning,2009-01-01,CHE,25,Zurich,Zürich,3416466,1,2014-04-28,2014-04-28,1,0,16188,16188,
439,Safe Harbour,https://www.safeharbour.nl,acquired,,2012-01-01,,,,,,1,2012-04-01,2012-04-01,1,0,15431,15431,
440,ComponentSource,https://www.componentsource.com/,operating,,1995-01-01,USA,GA,Atlanta,Woodstock,12000000,1,1999-11-02,1999-11-02,1,0,10897,10897,
441,Xopik,http://www.xopik.com,operating,App Marketing|Mobile Advertising,2013-03-01,ESP,56,Barcelona,Barcelona,,1,2014-04-12,2014-04-12,1,0,16172,16172,
442,PlayFilm,http://playfilm.es/,operating,Advertising|Entertainment|Online Video Advertising|Software,2014-01-01,ESP,60,Valencia,Valencia,270820,1,2014-06-13,2014-06-13,1,0,16234,16234,
443,LiveSafe,http://www.livesafemobile.com,operating,Social Media,2012-02-01,USA,VA,"Washington, D.C.",Arlington,10998000,4,2013-06-03,2015-12-03,5,913,15859,16772,
444,Help Scout,http://www.helpscout.net,operating,Customer Service|Customer Support Tools|Email|Finance|FinTech|Software|Web Tools,2011-01-01,USA,MA,Boston,Boston,6800000,4,2011-03-01,2015-03-18,19,1478,15034,16512,
445,GlamCorner,https://www.glamcorner.com.au/index.html,operating,Internet,2012-01-01,AUS,2,Sydney,Sydney,,1,2015-04-30,2015-04-30,1,0,16555,16555,
446,On The Spot Systems,http://www.onthespotsystems.com,operating,Mobile,,USA,MA,Boston,Newton,750000,1,2012-01-17,2012-01-17,3,0,15356,15356,
447,eVinyard,http://www.evineyardapp.com/,operating,Green|Wine And Spirits,2015-01-01,SVN,29,SVN - Other,Gornja Radgona,16773,1,2015-09-25,2015-09-25,1,0,16703,16703,
448,FiveThirty,http://www.fivethirty.kr,operating,Game|Software,2012-09-28,KOR,11,Seoul,Seoul,,1,2013-11-01,2013-11-01,2,0,16010,16010,
449,Urova Medical,http://www.urovamed.com/,operating,Medical Devices,2012-05-15,USA,TN,Memphis,Memphis,404000,4,2012-06-01,2014-01-07,6,585,15492,16077,
450,Leonardo Biosystems,http://www.leonardobiosystems.com,operating,Biotechnology,,USA,TX,Houston,Houston,2500000,2,2010-05-18,2011-11-14,1,545,14747,15292,
451,EverTune,http://evertune.com,operating,Music,,,,,,800000,1,2010-05-24,2010-05-24,4,0,14753,14753,
452,Masergy Communications,http://www.masergy.com,acquired,Public Relations,,USA,TX,Dallas,Plano,61000000,2,2003-03-07,2005-03-16,5,740,12118,12858,
453,"SmashToast, Inc.",http://www.SmashToast.com,operating,Android|Big Data|Consumer Electronics|Hardware + Software|Home Automation|iOS,2014-03-01,USA,IL,"Springfield, Illinois",Springfield,50000,1,2015-06-18,2015-06-18,1,0,16604,16604,
454,Citydeal.de,http://www.citydeal.de,acquired,Coupons|Curated Web,,DEU,13,DEU - Other,Deutsch,5628800,1,2010-01-27,2010-01-27,3,0,14636,14636,
455,Care.com,http://www.care.com,ipo,Curated Web|Customer Service|Tutoring,2006-10-01,USA,MA,Boston,Waltham,110800000,6,2006-11-01,2012-07-07,16,2075,13453,15528,
456,Tappy PTE. LTD.,http://www.tappy.co,acquired,Lifestyle|Location Based Services|Mobile,2014-02-15,VNM,,Ho Chi Minh,Ho Chi Minh City,200000,1,2014-08-28,2014-08-28,2,0,16310,16310,
457,Quadriserv,http://quadriserv.com,operating,Finance|FinTech,,USA,NJ,Newark,Jersey City,51000000,2,2007-01-01,2009-03-12,5,801,13514,14315,
458,Jetlore,http://www.jetlore.com,operating,Big Data|E-Commerce|Email Marketing|Enterprise Software|Machine Learning|Marketing Automation|Reviews and Recommendations,2011-01-01,USA,CA,SF Bay Area,Sunnyvale,7000000,3,2013-06-30,2015-07-14,11,744,15886,16630,
459,Prelert,http://www.prelert.com,operating,Software,2009-01-01,USA,MA,Boston,Framingham,11250000,2,2010-09-08,2014-11-04,5,1518,14860,16378,
460,OBMedical,http://obmedco.com,operating,Health Care,2012-01-01,USA,FL,Gainesville,Newberry,2300000,1,2014-07-29,2014-07-29,5,0,16280,16280,
461,LifeServe Innovations,http://lifeserveinnovations.com,closed,,2008-01-01,USA,OH,Cleveland,Cleveland,,1,2012-01-01,2012-01-01,1,0,15340,15340,
462,Vigiglobe,http://www.vigiglobe.com,operating,Big Data|Curated Web|Data Mining|Reputation|Social Media|Social Media Monitoring|Social Television|Twitter Applications,2011-07-01,FRA,B8,Nice,Valbonne,2000000,2,2014-07-09,2014-09-05,5,58,16260,16318,
463,Plastic Jungle,http://www.plasticjungle.com,acquired,E-Commerce,2006-11-01,USA,CA,SF Bay Area,San Mateo,23400000,4,2009-01-01,2012-01-18,15,1112,14245,15357,
464,Data Maid,http://www.datamaidapp.com,operating,Software,2013-10-01,BGR,42,Sofia,Sofia,33793,1,2013-10-01,2013-10-01,1,0,15979,15979,
465,Energy Excelerator,http://www.energyexcelerator.com,operating,Clean Technology|Energy|Entrepreneur|Startups,2010-01-01,USA,HI,Honolulu,Honolulu,30000000,1,2013-09-06,2013-09-06,1,0,15954,15954,
466,Pointstic,http://www.pointstic.com,operating,Advertising|Apps|Entertainment|Mobile,2012-10-10,ITA,9,Milan,Milan,600000,1,2013-08-05,2013-08-05,1,0,15922,15922,
467,Embrace Pet Insurance,http://www.embracepetinsurance.com,operating,Insurance|Personal Finance|Pets|Price Comparison,2005-01-01,USA,OH,Cleveland,Beachwood,5300000,5,2006-05-02,2014-05-05,4,2925,13270,16195,
468,Almashopping,http://www.almashopping.com,operating,Beauty|Content|E-Commerce|Online Shopping,2012-06-01,ARG,7,Buenos Aires,Buenos Aires,1225000,4,2012-07-03,2014-01-01,6,547,15524,16071,
469,Komli Media,http://www.komli.com,operating,Advertising|Analytics|Media,2006-10-01,IND,16,Mumbai,Mumbai,97000000,5,2008-01-01,2013-10-24,18,2123,13879,16002,
470,ddmap.com,http://www.ddmap.com,operating,Curated Web,2005-05-01,CHN,23,Shanghai,Shanghai,40000000,5,2008-04-01,2013-04-01,6,1826,13970,15796,
471,Paladion,http://paladion.net,operating,Enterprise Software|Information Security|Risk Management,2000-01-01,IND,19,Bangalore,Bangalore,10000000,1,2014-06-18,2014-06-18,1,0,16239,16239,
472,Growth Geeks,http://www.growthgeeks.com/,operating,Marketplaces|Sales and Marketing|Temporary Staffing,,USA,FL,"Naples, Florida",Bonita Springs,118000,1,2015-07-06,2015-07-06,1,0,16622,16622,
473,OpenLogic,http://www.openlogic.com,operating,Enterprise Software,2005-01-01,USA,CO,Denver,Broomfield,10400000,5,2005-03-17,2011-08-16,15,2343,12859,15202,
474,KONUX,http://konux.com,operating,Engineering Firms|Hardware + Software|Mechanical Solutions|Sensors,2014-03-01,DEU,2,Munich,München,2000000,1,2015-04-01,2015-04-01,2,0,16526,16526,
475,Nextdoorganics,http://www.nextdoorganics.com,operating,,2011-01-01,USA,NY,New York City,Brooklyn,,2,2014-12-01,2015-04-13,2,133,16405,16538,
476,Mapittrackit,http://mapittrackit.com,operating,Real Time|Technology|Tracking,2013-06-01,,,,,,1,2013-01-01,2013-01-01,1,0,15706,15706,
477,New Leaf Paper,http://www.newleafpaper.com,operating,Clean Technology,,USA,CA,SF Bay Area,San Francisco,5000000,1,2009-03-01,2009-03-01,1,0,14304,14304,
478,Promisec,http://www.promisec.com,operating,Software,2004-01-01,USA,MA,Boston,Needham,,2,2006-01-01,2011-12-31,2,2190,13149,15339,
479,Weatlas,http://www.weatlas.com,operating,Curated Web|Online Reservations|Travel,2011-11-01,RUS,48,Moscow,Moscow,625000,2,2013-12-01,2014-08-06,2,248,16040,16288,
480,Splendid Lab,http://www.splendidlab.com,operating,Outsourcing,2013-01-01,USA,CA,SF Bay Area,San Francisco,70000,2,2013-10-29,2014-08-05,1,280,16007,16287,
481,Miura Systems,http://miurasystems.com/index.php,operating,Hardware + Software|Mobile Payments|NFC|Payments|Point of Sale,,GBR,K2,GBR - Other,Stokenchurch,16000000,1,2015-06-11,2015-06-11,1,0,16597,16597,
482,Yurpy,http://www.yurpy.com,closed,Curated Web,2013-01-01,,,,,25000,1,2011-09-05,2011-09-05,1,0,15222,15222,
483,The Mad Video,http://themadvideo.com,operating,Photography|Video,2011-01-01,USA,CA,SF Bay Area,San Francisco,1540943,2,2012-05-23,2013-11-18,5,544,15483,16027,
484,Caller Zen,https://www.callerzen.com,closed,,2015-05-01,,,,,,1,2015-06-01,2015-06-01,1,0,16587,16587,
485,Avantis Medical Systems,http://www.thirdeyepanoramic.com/,operating,Health Care,2004-01-01,USA,CA,SF Bay Area,Sunnyvale,49761910,10,2006-11-01,2014-01-15,4,2632,13453,16085,
486,DineInTime,http://www.dineintimeapp.com,operating,Restaurants|SMS|Software|Technology,2012-11-01,USA,WI,Madison,Madison,20000,1,2013-01-04,2013-01-04,1,0,15709,15709,
487,Gyroscope Innovations,http://gyrosco.pe,operating,Fitness|Personal Health|Quantified Self,,,,,,700000,1,2015-02-26,2015-02-26,3,0,16492,16492,
488,KIWI,http://www.kiwi.ki,operating,Cloud Computing|Hardware|Home Automation|Internet of Things|SaaS|Security|Technology,2012-02-01,DEU,16,Berlin,Berlin,4364112,2,2013-10-21,2015-03-27,4,522,15999,16521,
489,Gwynnie Bee,https://closet.gwynniebee.com/,operating,Consumer Goods|Fashion|Online Shopping,2011-01-01,USA,NY,New York City,Long Island City,,3,2014-01-01,2015-10-15,3,652,16071,16723,
490,Errplane,http://errplane.com,operating,Software,2012-05-01,USA,NY,New York City,New York,8100000,2,2013-03-01,2014-12-08,3,647,15765,16412,
491,Spine Next,http://www.spinenext.com/,acquired,Manufacturing|Medical|Medical Devices,,FRA,97,Bordeaux,Bordeaux,13708764,2,2000-02-01,2004-03-10,2,1499,10988,12487,
492,Avox,http://avox.mobi,operating,Android|Messaging|Mobile|Software|Telecommunications|Telephony|VoIP,,USA,CA,SF Bay Area,Palo Alto,500000,1,2013-03-01,2013-03-01,1,0,15765,15765,
493,Wonder Paint,,closed,,,,,,,,1,2015-05-01,2015-05-01,1,0,16556,16556,
494,FrugalMechanic,http://frugalmechanic.com,operating,Automotive|E-Commerce,2008-07-01,USA,WA,Seattle,Issaquah,,1,2009-02-13,2009-02-13,1,0,14288,14288,
495,Ule,http://ule.com,operating,E-Commerce|Mobile,2009-01-01,CHN,,,,110878477,2,2010-01-01,2014-02-28,3,1519,14610,16129,
496,CareHubs,http://carehubs.com,operating,Collaboration|Health Care|Medical|Social Network Media,,USA,OR,"Portland, Oregon",Beaverton,,1,2012-04-04,2012-04-04,1,0,15434,15434,
497,VuPoynt Media Group,http://vupoyntmedia.com,operating,Brand Marketing|Consulting|Content|Design|Social Media|Web Design,2013-06-01,CAN,ON,Toronto,Toronto,,1,2013-06-01,2013-06-01,1,0,15857,15857,
498,Changelight,http://www.changelight.com.cn,operating,Manufacturing,,CHN,7,Xiamen,Xiamen,10000000,1,2008-01-01,2008-01-01,1,0,13879,13879,
499,Go Beyond Investing,http://www.go-beyond.biz,operating,Finance,2011-02-08,CHE,25,Zurich,Zürich,,5,2013-03-01,2015-06-17,5,838,15765,16603,
500,Halldis,http://www.it.halldis.com,operating,Office Space|Real Estate|Rental Housing,,ITA,9,Milan,Milan,,1,2012-06-01,2012-06-01,1,0,15492,15492,
501,Arthesis Covers,http://www.arthesiscovers.com/en/,operating,Artificial Intelligence|Fashion|Services,2014-09-01,BGR,42,Sofia,Sofia,67022,1,2014-08-01,2014-08-01,1,0,16283,16283,
502,Acclaim Games,http://www.acclaim.com,acquired,Games,1997-12-24,USA,CA,Los Angeles,Beverly Hills,,1,2007-10-18,2007-10-18,1,0,13804,13804,
503,Skybus Airlines,http://www.skybus.com,operating,Aerospace|Transportation|Travel,2003-01-01,USA,OH,"Columbus, Ohio",Columbus,,1,2015-05-12,2015-05-12,1,0,16567,16567,
504,Market Over Video,,operating,E-Commerce|Video|Video Processing,,,,,,35371,1,2011-09-05,2011-09-05,1,0,15222,15222,
505,PPDai,http://www.ppdai.com,operating,Finance|FinTech,2007-08-01,CHN,23,Shanghai,Shanghai,70200000,5,2008-02-01,2015-04-03,12,2618,13910,16528,
506,Zertica Inc.,http://www.zertica.com,operating,3D Printing|Manufacturing|Marketplaces,2012-01-01,USA,CA,Los Angeles,Los Angeles,40000,1,2013-07-01,2013-07-01,1,0,15887,15887,
507,CleanNG,http://www.gocleanng.com/,operating,Environmental Innovation|Manufacturing|Natural Gas Uses|Natural Resources,2010-10-01,USA,OK,Tulsa,Tulsa,,1,2013-04-12,2013-04-12,1,0,15807,15807,
508,Sefaira,http://www.sefaira.com,operating,Energy Efficiency|SaaS|Software|Sustainability,2009-08-26,USA,NY,New York City,New York,20000000,3,2012-04-10,2013-10-02,7,540,15440,15980,
509,Tech Backpack,http://www.techbackpack.org,operating,Content|Journalism|Media|News|Parenting|Social Media|Systems,2012-12-18,ARE,3,Dubai,Dubai,24000,1,2012-08-11,2012-08-11,1,0,15563,15563,
510,DesignHub,,operating,Design,2011-01-01,SGP,,Singapore,Singapore,50000,1,2011-01-01,2011-01-01,2,0,14975,14975,
511,PHRQL,http://phrql.com,operating,Health and Wellness,2010-01-01,USA,PA,Pittsburgh,Pittsburgh,75000,3,2011-10-26,2014-10-23,2,1093,15273,16366,
512,Tate’s Bake Shop,http://www.tatesbakeshop.com/,operating,E-Commerce,2000-01-01,USA,NY,Long Island,Southampton,11000000,1,2014-09-08,2014-09-08,2,0,16321,16321,
513,YEDInstitute,http://www.yedinstitute.org/,operating,Startups,,CAN,ON,Toronto,Toronto,377200,1,2014-09-19,2014-09-19,1,0,16332,16332,
514,Candi Controls,http://www.candicontrols.com,operating,Enterprise Software,,USA,CA,SF Bay Area,Lafayette,1900000,1,2012-01-01,2012-01-01,1,0,15340,15340,
515,Open Me,http://www.openme.com,closed,E-Commerce,2013-05-01,USA,CA,Los Angeles,Los Angeles,,1,2013-10-01,2013-10-01,11,0,15979,15979,
516,DesignMedix,http://designmedix.com,operating,Biotechnology,2006-01-01,USA,OR,"Portland, Oregon",Portland,12731053,4,2010-06-17,2014-07-17,6,1491,14777,16268,
517,Mercantila,http://www.mercantila.com,acquired,E-Commerce,,USA,CA,SF Bay Area,San Francisco,27000000,3,2006-12-19,2009-05-27,1,890,13501,14391,
518,DuckDuckGo,https://duckduckgo.com,operating,Search,2008-09-25,USA,PA,Philadelphia,Paoli,3000000,1,2011-10-13,2011-10-13,7,0,15260,15260,
519,Tempo Pharmaceuticals,,operating,Bio-Pharm|Medical|Pharmaceuticals,,,,,,20200000,2,2007-07-01,2008-01-03,3,186,13695,13881,
520,iRule,http://www.iruleathome.com,operating,Software,2009-01-01,USA,MI,Detroit,Detroit,4304503,4,2011-11-28,2014-12-18,9,1116,15306,16422,
521,Westcrete,,operating,,,USA,TN,Nashville,Nashville,15000,1,2012-06-01,2012-06-01,1,0,15492,15492,
522,Rankomat.pl,http://rankomat.pl,operating,Finance,,POL,78,Warsaw,Warszawa,12000000,1,2010-10-21,2010-10-21,1,0,14903,14903,
523,Motorpaneer,http://www.motorpaneer.com,operating,Automotive,2013-08-01,IND,7,New Delhi,New Delhi,40000,1,2013-08-23,2013-08-23,1,0,15940,15940,
524,Study Plus,http://studyplus.jp/,operating,Apps|Education,2010-05-01,JPN,19,Tokyo,Shibuya,2247131,2,2013-05-22,2015-05-08,3,716,15847,16563,
525,Ageria,http://ageria-bio.com/,operating,Biotechnology,,IRL,4,Cork,Cork,,1,2015-04-30,2015-04-30,1,0,16555,16555,
526,Semasio,http://www.semasio.com,operating,Advertising,2010-11-01,DEU,4,Hamburg,Hamburg,717699,2,2011-04-08,2012-08-27,6,507,15072,15579,
527,Alacritech,http://www.alacritech.com,operating,Enterprise Software,1997-01-01,USA,CA,SF Bay Area,San Jose,14253000,2,2002-01-28,2012-12-19,4,3978,11715,15693,
528,Lightbox,http://www.lightbox.com,acquired,Android|Mobile|Networking|Photo Sharing,2010-11-01,GBR,H9,London,London,1200000,1,2011-02-01,2011-02-01,11,0,15006,15006,
529,Instant eSports,http://instantesports.com,operating,Apps,2015-05-11,USA,CA,SF Bay Area,San Francisco,2130000,2,2015-06-01,2015-11-04,7,156,16587,16743,
530,MD On-Line,http://www.mdon-line.com,operating,Biotechnology,,USA,NJ,Newark,Parsippany,12000000,1,2011-05-18,2011-05-18,1,0,15112,15112,
531,Emailage,http://www.emailage.com,operating,Fraud Detection|Real Time|Software,2012-05-29,USA,AZ,Phoenix,Chandler,3800000,1,2015-02-26,2015-02-26,8,0,16492,16492,
532,Takumii Sweden,http://www.tellerapp.com,operating,Email|Internet,,SWE,26,Stockholm,Stockholm,273453,1,2014-07-01,2014-07-01,1,0,16252,16252,
533,Rules-Based Medicine,http://www.rulesbasedmedicine.com,acquired,Biotechnology,,USA,TX,Austin,Austin,25000000,1,2007-10-15,2007-10-15,3,0,13801,13801,
534,Snapshot Interactive,http://snapshotinteractive.com,operating,SEO|Video|Web Design|Web Development,2010-01-01,USA,TN,Nashville,Nashville,325000,2,2013-07-26,2013-09-01,2,37,15912,15949,
535,Coherent Labs,http://coherent-labs.com,operating,Computers|Games|Graphics|Internet,2012-01-01,,,,,389790,1,2012-12-11,2012-12-11,2,0,15685,15685,
536,BAE Systems,http://www.baesystems.com,ipo,Manufacturing|Transportation,1999-11-01,USA,MD,"Washington, D.C.",Rockville,83700000,2,2009-11-30,2010-09-10,1,284,14578,14862,
537,Ambassador Software Works,http://www.ambsw.com/,operating,Healthcare Services|SaaS,,USA,OH,"Columbus, Ohio",Columbus,,1,2014-12-03,2014-12-03,1,0,16407,16407,
538,Petrolance,http://www.petrolance.com/,operating,,,,,,,,1,2013-05-29,2013-05-29,2,0,15854,15854,
539,Nordic TeleCom,http://www.nordictelecom.fi,operating,Cloud Computing|Communications Hardware|Customer Service|Hardware + Software,2009-09-01,FIN,13,Helsinki,Espoo,1300000,1,2012-12-01,2012-12-01,1,0,15675,15675,
540,Telesofia Medical,http://www.telesofia.com,operating,Data Mining|Document Management|Medical|Video,2011-01-01,ISR,5,Tel Aviv,Tel Aviv,1000000,2,2013-04-24,2014-07-22,2,454,15819,16273,
541,Booker,http://www.booker.com,operating,Enterprises|Group Buying|Internet Marketing|Local Advertising|Mobile|SaaS|Social Commerce|Software|Web Development,2010-10-01,USA,NY,New York City,New York,77000000,3,2011-10-19,2015-03-03,13,1231,15266,16497,
542,Newlisi,http://www.newlisi.com/,operating,Technology,,ITA,9,Milan,Milano,,1,2010-03-01,2010-03-01,1,0,14669,14669,
543,Integration Associates,http://www.integration.com,acquired,Semiconductors,1991-01-01,USA,CA,SF Bay Area,Mountain View,11000000,2,2004-02-11,2006-03-31,6,779,12459,13238,
544,Ubix Labs,http://ubix.io,operating,Analytics|Cloud Computing|Real Time,2011-01-01,USA,CA,"Orange County, California",San Juan Capistrano,4050000,4,2013-01-11,2015-01-14,4,733,15716,16449,
545,Path101,http://www.path101.com,closed,Career Management|Curated Web,,USA,NY,New York City,New York,550000,2,2008-02-09,2009-01-27,21,353,13918,14271,
546,Uber.com,http://www.dmwmedia.com/news/2008/09/29/social-network-uber-com-shutters-after-investors-bail,closed,Communications Infrastructure|Media|Social Network Media,,USA,CA,Los Angeles,Los Angeles,7600000,1,2008-05-26,2008-05-26,3,0,14025,14025,
547,Woqu.com,http://www.woqu.com/,operating,Travel,2014-10-01,USA,NY,New York City,New York,21000000,2,2014-04-01,2014-09-18,3,170,16161,16331,
548,VODECLIC,http://www.vodeclic.com,operating,Education|Software|Training,2007-09-01,FRA,A8,Paris,Paris,803909,2,2009-05-01,2012-06-01,1,1127,14365,15492,
549,Calpurnia Corporation,,acquired,Software,2002-01-01,USA,MA,Boston,Cambridge,8000000,1,2006-01-17,2006-01-17,4,0,13165,13165,
550,Omnidrive,http://www.omnidrive.com,closed,File Sharing|Internet|Storage|Web Hosting,2005-11-01,USA,CA,SF Bay Area,Palo Alto,800000,1,2006-12-01,2006-12-01,3,0,13483,13483,
551,Transera Communications,http://www.transerainc.com,operating,Analytics|Cloud Computing|SaaS|Software,2004-01-01,USA,CA,SF Bay Area,Sunnyvale,37000000,3,2005-08-17,2009-03-12,10,1303,13012,14315,
552,DOmedia,http://domedia.com,operating,Advertising|App Marketing|Internet|Marketplaces|Media|Online Shopping|Technology,2007-05-30,USA,OH,"Columbus, Ohio",Columbus,,1,2008-09-01,2008-09-01,1,0,14123,14123,
553,Clinton Group,http://www.clinton.com,operating,Investment Management,,USA,NY,New York City,New York,110000000,1,2002-01-15,2002-01-15,1,0,11702,11702,
554,NewLink Genetics,http://www.linkp.com,ipo,Biotechnology|Health Care,1999-01-01,USA,IA,Des Moines,Ames,45214105,3,2008-01-31,2009-07-21,5,537,13909,14446,
555,RPO,http://www.rpo.biz,closed,Hardware + Software,2005-01-01,USA,CA,SF Bay Area,San Jose,44000000,3,2006-01-24,2010-09-13,9,1693,13172,14865,
556,Agility Design Solutions,,operating,Software,2001-01-01,USA,CA,SF Bay Area,Palo Alto,7000000,1,2005-12-06,2005-12-06,3,0,13123,13123,
557,Cutting Edge Information,http://www.cuttingedgeinfo.com,operating,Biotechnology,2002-01-01,USA,NC,Raleigh,Durham,15800000,1,2007-06-25,2007-06-25,3,0,13689,13689,
558,R2Net,http://www.r2net.com/,operating,Consumers|E-Commerce|Manufacturing|Retail|Supply Chain Management,2006-01-01,USA,NY,New York City,New York,25000000,1,2014-12-14,2014-12-14,1,0,16418,16418,
559,G-mode,https://gmodecorp.com/,ipo,Games|Intellectual Property,2000-07-27,JPN,40,Tokyo,Tokyo,,1,2001-08-29,2001-08-29,1,0,11563,11563,
560,SkolaFund,http://skolafund.com,operating,Financial Services,2014-09-19,,,,,15931,1,2015-04-11,2015-04-11,1,0,16536,16536,
561,Central Conveyor,http://www.centralconveyor.com/,operating,Design|Manufacturing|Storage,1993-01-01,USA,MI,Detroit,Brighton,,1,2014-12-16,2014-12-16,1,0,16420,16420,
562,WhoKnows,http://www.whoknows.com,operating,Collaboration|Enterprise Software|Knowledge Management|Machine Learning|SaaS,2012-06-04,USA,CA,SF Bay Area,Mountain View,4750000,4,2013-10-08,2015-08-01,6,662,15986,16648,
563,AdStage,https://www.adstage.io,operating,Advertising|Enterprises|Internet|Machine Learning|Sales and Marketing|Search|SEO|Social Media|Software,2012-05-01,USA,CA,SF Bay Area,San Francisco,10250000,5,2013-03-01,2015-06-01,26,822,15765,16587,
564,Poliana,http://www.poliana.com,operating,Analytics,2013-01-01,USA,TN,Nashville,Nashville,15000,1,2013-08-07,2013-08-07,2,0,15924,15924,
565,Protagen,http://www.protagen.com,operating,Health Diagnostics|Software,,DEU,7,Dortmund,Dortmund,23728080,5,2006-05-08,2010-09-07,13,1583,13276,14859,
566,BlikBook,http://blikbook.com,operating,Education|Software|Video Conferencing,2010-01-01,GBR,H9,London,London,2100000,2,2011-01-01,2013-07-08,4,919,14975,15894,
567,IntelliFlo,http://www.intelliflo.com,operating,Software,2004-01-01,GBR,G7,Kingston Upon Thames,Kingston Upon Thames,,1,2013-07-19,2013-07-19,1,0,15905,15905,
568,Atrin Pharmaceuticals,http://www.atrinpharma.com/,operating,Bio-Pharm|Medical|Pharmaceuticals,,USA,PA,Philadelphia,Doylestown,100000,1,2015-03-18,2015-03-18,1,0,16512,16512,
569,Applicaster,http://www.applicaster.com,operating,Social Television|Video on Demand|Video Streaming,2009-01-01,ISR,5,Tel Aviv,Tel Aviv,10500000,5,2012-03-26,2015-10-27,6,1310,15425,16735,
570,Jumo,http://www.jumo.com,closed,Charity|Humanitarian|Social Media|Social Network Media,2010-02-01,USA,NY,New York City,New York,3500000,2,2010-11-01,2015-11-11,2,1836,14914,16750,
571,UTStarcom,http://www.utstar.com,ipo,Curated Web|Internet,2010-09-01,CHN,22,Beijing,Beijing,180500000,5,1996-12-01,2010-02-01,7,4810,9831,14641,
572,Medirio SA,http://medirio.ch/,operating,Medical,,,,,,,1,2015-01-28,2015-01-28,2,0,16463,16463,
573,Three Day Rule,http://threedayrule.com,operating,Bridging Online and Offline|Networking|Online Dating,2013-01-01,USA,CA,Los Angeles,Los Angeles,1570000,3,2013-01-01,2014-05-20,3,504,15706,16210,
574,Bluegrass Vascular Technologies,http://bluegrassvascular.com/,operating,Diabetes|Medical|Medical Devices,2010-01-01,USA,KY,Lexington,Lexington,4500000,1,2014-07-30,2014-07-30,3,0,16281,16281,
575,PEAK Surgical,http://www.peaksurgical.com,acquired,Health Care,,USA,CA,SF Bay Area,Palo Alto,29000000,2,2006-09-18,2008-02-04,5,504,13409,13913,
576,ARYx Therapeutics,http://www.aryx.com,closed,Biotechnology,,USA,CA,SF Bay Area,Fremont,83257446,4,2004-06-01,2010-08-16,14,2267,12570,14837,
577,Doctor kinetic,http://doctorkinetic.nl,operating,Medical|Real Time|Training,,NLD,7,NLD - Other,Castricum,324713,2,2012-04-04,2012-08-31,1,149,15434,15583,
578,Stadius,http://www.stadi.us,closed,Messaging|Social Media,2012-05-01,USA,WA,Seattle,Seattle,250000,1,2013-01-01,2013-01-01,1,0,15706,15706,
579,Cambiatta,,operating,Fitness,2003-01-01,USA,OH,Cincinnati,Cincinnati,,1,2004-12-17,2004-12-17,1,0,12769,12769,
580,KaraokeSmart.co,http://KaraokeSmart.co,operating,Music,2013-01-01,PER,15,Lima,Lima,145740,4,2012-08-22,2014-05-01,4,617,15574,16191,
581,Mpax,http://m-pax.de,operating,E-Commerce,,,,,,32680,1,2013-05-01,2013-05-01,1,0,15826,15826,
582,Red Foundry,http://redfoundry.com,operating,Analytics|Apps|iOS|iPad|iPhone|Mobile,2010-09-01,USA,IL,Chicago,Chicago,1100000,1,2010-11-03,2010-11-03,1,0,14916,14916,
583,BERI (Boulder Electroride),http://www.BoulderElectroRide.com,operating,,2008-01-01,CHN,30,Shenzhen,Shenzhen,,1,2012-02-21,2012-02-21,2,0,15391,15391,
584,Innobuddy,http://www.innobuddy.com/,operating,Education|Innovation Management|Internet,2012-01-01,CHN,22,Beijing,Beijing,10600000,1,2014-09-11,2014-09-11,1,0,16324,16324,
585,EPAM Systems,http://www.epam.com,ipo,Outsourcing|Software|Technology,1993-01-01,USA,PA,Philadelphia,Newtown,50000000,1,2008-06-30,2008-06-30,3,0,14060,14060,
586,Blab Inc.,http://blabpredicts.com,operating,Advertising|Analytics|Media|Publishing|Social Media Marketing,2012-05-01,USA,WA,Seattle,Seattle,13001842,4,2013-02-01,2014-12-03,4,670,15737,16407,
587,Rodos BioTarget,http://www.biotargeting.eu,operating,Biotechnology,2008-01-01,DEU,6,Hanover,Hanover,3413540,2,2009-05-07,2013-04-17,4,1441,14371,15812,
588,56.com,http://www.56.com,acquired,Photography,2005-04-01,CHN,30,Guangzhou,Guangzhou,30000000,2,2007-06-01,2007-12-01,8,183,13665,13848,
589,7Summits,http://www.7summitsagency.com,operating,Brand Marketing|Communities|Consulting|Semantic Search|SEO,2009-04-01,USA,WI,Milwaukee,Milwaukee,600000,3,2010-01-01,2014-05-01,2,1581,14610,16191,
590,ASIC Engineering Corporation,,closed,Engineering Firms|Services,,,,,,1000000,1,2000-01-01,2000-01-01,1,0,10957,10957,
591,Glass,http://www.shopglass.com,closed,E-Commerce|Fashion|Mobile Commerce|Social Commerce,2012-03-01,USA,TX,Dallas,Dallas,,1,2012-03-01,2012-03-01,2,0,15400,15400,
592,Metago,http://www.metago.net,operating,Android|Mobile,2000-01-01,USA,GA,Atlanta,Marietta,550000,1,2011-07-04,2011-07-04,2,0,15159,15159,
593,SilverCloud Health,http://silvercloudhealth.com,operating,Cloud Data Services|Enterprise Software|Health and Wellness|Health Care,2011-01-01,USA,NY,New York City,New York,1929900,2,2010-01-01,2013-06-27,3,1273,14610,15883,
594,BravoSolution,http://www.bravosolution.com,operating,Software,1995-01-01,USA,PA,Philadelphia,Malvern,8080000,2,2005-08-16,2007-06-01,15,654,13011,13665,
595,Mozy,http://mozy.com,acquired,Flash Storage|Web Hosting,2005-01-01,USA,UT,Salt Lake City,Pleasant Grove,1900000,1,2005-05-01,2005-05-01,3,0,12904,12904,
596,Lozo,http://lozo.com,closed,,2009-01-01,,,,,,1,2012-03-01,2012-03-01,1,0,15400,15400,
597,Diagnosia,http://www.diagnosia.com,operating,Databases|Doctors|Health and Wellness|Information Technology|Internet|Medical|Pharmaceuticals|Remediation|Search,2011-02-01,AUT,9,Vienna,Vienna,1700000,2,2011-11-01,2013-10-09,7,708,15279,15987,
598,Equals6,http://www.equals6.com,operating,Social Media,,CAN,NS,Halifax,Halifax,250000,1,2012-05-10,2012-05-10,1,0,15470,15470,
599,RedKite Financial Markets,http://redkitefinancialmarkets.com,acquired,Finance,2009-01-01,GBR,H9,London,London,,2,2011-07-26,2012-02-14,2,203,15181,15384,
600,Hedgeye Risk Management,http://www.hedgeye.com,operating,Analytics|Finance|Media,2008-01-01,USA,CT,Hartford,New Haven,,1,2013-01-23,2013-01-23,1,0,15728,15728,
601,DaWanda,http://en.dawanda.com//?partnerid=GA2-DaWanda,operating,Artists Globally|Social Network Media|Web Hosting,2006-12-03,,,,,5260821,5,2007-02-22,2015-01-28,10,2897,13566,16463,
602,Tymphany,http://www.tymphany.com,operating,Audio|Hardware|Hardware + Software,2005-01-01,USA,CA,SF Bay Area,San Rafael,13000000,1,2006-10-04,2006-10-04,1,0,13425,13425,
603,JCD,http://www.jcd.co.jp/,operating,,1993-01-01,JPN,40,Tokyo,Tokyo,,1,2001-10-01,2001-10-01,1,0,11596,11596,
604,Nutrifiz,,operating,Fitness|Health and Wellness|Nutrition,,,,,,156828,1,2014-12-01,2014-12-01,1,0,16405,16405,
605,Clikthrough,http://clikthrough.com,operating,Analytics|Media|Music|Software|Video,2007-07-01,USA,CA,SF Bay Area,San Francisco,2000000,2,2007-01-01,2009-07-16,4,927,13514,14441,
606,Qwbcg,http://www.qwbcg.com/,operating,Mobile,,,,,,,1,2014-04-01,2014-04-01,1,0,16161,16161,
607,Smarttaxi,,closed,Public Transportation|Services|Transportation,,,,,,173433,1,2015-01-01,2015-01-01,1,0,16436,16436,
608,RIFT.io,http://www.riftio.com,operating,Innovation Management|Startups|Technology,2013-01-01,USA,MA,Boston,Burlington,24000000,2,2013-12-19,2015-08-13,1,602,16058,16660,
609,Tasit.com,http://www.tasit.com,operating,Advertising|Automotive|Classifieds|Marketplaces|Online Rental,2009-07-28,TUR,34,Istanbul,Istanbul,200000,3,2009-08-02,2013-11-07,1,1558,14458,16016,
610,fluently,http://www.fluently.io,closed,Enterprise Software|SaaS|Translation,2015-05-10,GBR,H9,London,London,,1,2015-06-01,2015-06-01,1,0,16587,16587,
611,fitogram,http://www.fitogram.de,operating,Health and Wellness,2013-12-01,DEU,7,Cologne,Köln,,1,2014-05-01,2014-05-01,1,0,16191,16191,
612,SMTDP Technology,http://smtdp.de,operating,Software,2011-01-01,USA,NY,NY - Other,Prospect,,1,2014-02-05,2014-02-05,2,0,16106,16106,
613,Turbine,http://www.turbine.com,acquired,Games|Social Games,,USA,CA,SF Bay Area,Redwood City,94600000,4,2003-12-15,2009-08-10,13,2065,12401,14466,
614,Geothermal International,http://www.gienergy.net,operating,Clean Technology,2000-01-01,GBR,C7,Coventry,Coventry,18748565,1,2011-12-20,2011-12-20,3,0,15328,15328,
615,Merrimack Pharmaceuticals,http://www.merrimackpharma.com,ipo,Biotechnology|Health Care,2000-01-01,USA,MA,Boston,Cambridge,107440000,5,2002-01-01,2011-04-14,11,3390,11688,15078,
616,AppTap,http://apptap.com,operating,All Markets|Android|Apps|iPhone|Marketplaces|Mobile|Reviews and Recommendations|Storage,2008-01-01,USA,VA,"Washington, D.C.",Reston,10671168,5,2008-04-01,2014-01-06,5,2106,13970,16076,
617,FitWithMe,http://FitWithMe.com,operating,Fitness|Health and Wellness|Social Media|Sports,2012-01-01,,,,,250000,1,2012-01-31,2012-01-31,2,0,15370,15370,
618,Snapchat,http://www.snapchat.com,operating,File Sharing|Messaging|Mobile|Photography,2011-05-01,USA,CA,CA - Other,Pacific Palisades,1185585000,8,2012-05-01,2015-05-29,19,1123,15461,16584,
619,WeGreek,http://wegreekapp.com,operating,Advertising|Colleges|Entertainment|Mobile|Social Media,2013-01-28,USA,AR,Fayetteville,Fayetteville,,1,2013-09-03,2013-09-03,1,0,15951,15951,
620,CircuLite,http://www.circulite.net,acquired,Health Care,,USA,NJ,Newark,Teaneck,89200000,5,2007-01-16,2011-11-30,13,1779,13529,15308,
621,Kinskii,http://kinskii.com/,operating,Mobile Games|Video Chat,2014-11-01,,,,,50000,1,2015-05-06,2015-05-06,1,0,16561,16561,
622,Plethora Technology,http://www.enterpriseinaflash.com,closed,Software,2000-01-01,USA,WV,WV - Other,Kearneysville,1000000,1,2005-06-09,2005-06-09,3,0,12943,12943,
623,H-art (WPP),http://www.h-art.com,acquired,Public Relations,2005-01-01,ITA,20,Venice,Treviso,64795,1,2005-04-01,2005-04-01,1,0,12874,12874,
624,Scratch Music Group,http://www.scratch.com,operating,Music,2002-01-01,USA,NY,New York City,New York,3300000,3,2011-07-13,2013-06-07,9,695,15168,15863,
625,Clontech Laboratories Inc,http://www.clontech.com,acquired,Biotechnology|Medical|Pharmaceuticals,,USA,CA,SF Bay Area,Mountain View,,1,2001-05-10,2001-05-10,1,0,11452,11452,
626,AtHoc,http://www.athoc.com,acquired,Email|Enterprise Software|Physical Security|Security,2005-01-01,USA,CA,SF Bay Area,San Mateo,8200000,2,2005-04-01,2012-06-21,4,2638,12874,15512,
627,Terres et Terroirs,http://www.terre-terroirs.com,operating,Agriculture|Distribution|Farmers Market,,,,,,440000,1,2005-09-05,2005-09-05,1,0,13031,13031,
628,VentureHire,http://www.venturehire.co,operating,EdTech|Education|Startups,2012-06-06,USA,MD,"Washington, D.C.",Silver Spring,25000,1,2013-08-16,2013-08-16,2,0,15933,15933,
629,Saegis Pharmaceuticals,http://www.saegispharma.com/,operating,Health and Wellness|Health Care|Medical|Pharmaceuticals,,USA,CA,SF Bay Area,Half Moon Bay,30000000,1,2003-11-17,2003-11-17,6,0,12373,12373,
630,Nymirum,http://nymirum.com,operating,Biotechnology,2009-01-01,USA,CA,Sacramento,Mi Wuk Village,550000,1,2009-05-22,2009-05-22,1,0,14386,14386,
631,Covata,http://www.covata.com,operating,Cloud Security|Data Security|Software,2007-01-01,USA,VA,"Washington, D.C.",Reston,21900000,2,2014-11-09,2015-11-23,2,379,16383,16762,
632,DealMarket,http://www.DealMarket.com,operating,Crowdfunding|Finance,2011-03-15,CHE,25,Zurich,Zürich,,1,2014-01-01,2014-01-01,1,0,16071,16071,
633,Cavium,http://www.caviumnetworks.com,ipo,Semiconductors,2000-12-01,USA,CA,SF Bay Area,San Jose,92989194,4,2003-08-01,2011-03-14,9,2782,12265,15047,
634,virtual tweens ltd,,operating,Entertainment|Internet|Mobile|Social Media,,ISR,,,,,1,2013-09-01,2013-09-01,1,0,15949,15949,
635,SpinPunch,http://www.spinpunch.com,operating,Games|Web Development,,USA,CA,SF Bay Area,Mountain View,,1,2012-08-01,2012-08-01,1,0,15553,15553,
636,Circular,http://www.circularapp.com,closed,Content|Social Media,,,,,,,1,2012-08-01,2012-08-01,1,0,15553,15553,
637,AudioEye,http://audioeye.com,ipo,Software,2003-01-01,USA,AZ,Tucson,Tucson,8771500,5,2013-08-14,2015-05-07,3,631,15931,16562,
638,Robotgalaxy,http://www.robotgalaxy.com,closed,Games,2006-01-01,USA,NY,New York City,New York,12000000,2,2007-01-01,2008-09-16,2,624,13514,14138,
639,POSpulse,http://www.pospulse.com,operating,Point of Sale|Real Time|Retail Technology,2013-12-09,DEU,16,Berlin,Berlin,622858,1,2014-12-15,2014-12-15,1,0,16419,16419,
640,Carrot.mx,http://www.carrot.mx/site,operating,Public Transportation|Shared Services,2012-03-08,MEX,9,Mexico City,Mexico City,2000000,1,2014-04-06,2014-04-06,4,0,16166,16166,
641,YOGITECH,http://www.yogitech.com,operating,Semiconductors,2000-01-01,ITA,9,ITA - Other,Vimercate,2723900,2,2005-06-09,2011-10-04,3,2308,12943,15251,
642,Diana,http://www.dianaapp.com,operating,Apps|Hospitality|Mobile|Restaurants|Reviews and Recommendations,2013-01-01,,,,,,1,2013-01-01,2013-01-01,1,0,15706,15706,
643,Think Dynamics,http://www.thinkdynamics.com,acquired,Software,,CAN,ON,Toronto,Toronto,7000000,1,2001-07-12,2001-07-12,3,0,11515,11515,
644,Resson Aerospace,http://ressontech.com/,operating,Agriculture,,CAN,NB,Fredericton,Fredericton,2701849,1,2014-10-13,2014-10-13,4,0,16356,16356,
645,Peak8 Partners,,operating,Software,2004-01-01,USA,CO,Denver,Boulder,5000000,1,2008-02-22,2008-02-22,1,0,13931,13931,
646,Mellanox Technologies,http://www.mellanox.com,ipo,Big Data|Cloud Computing|Semiconductors,1999-01-01,USA,CA,SF Bay Area,Sunnyvale,56000000,1,2002-02-11,2002-02-11,14,0,11729,11729,
647,ZoopShop,http://zoopshop.com,operating,E-Commerce|Social Commerce|Social Media Marketing|Software,2012-02-15,USA,OH,"Columbus, Ohio",Columbus,20000,2,2012-02-15,2013-01-17,2,337,15385,15722,
648,Faraday Bicycles,http://www.faradaybikes.com,operating,Bicycles|Consumer Goods|Transportation,2012-03-01,USA,CA,SF Bay Area,San Francisco,3077268,4,2012-08-01,2014-12-30,3,881,15553,16434,
649,Sonicbids,http://www.sonicbids.com,acquired,Music,1999-06-01,USA,MA,Boston,Boston,4500000,1,2007-08-13,2007-08-13,1,0,13738,13738,
650,Beyond Meat,http://www.beyondmeat.com,operating,Consumers|Health and Wellness|Health Care|Specialty Foods,2009-01-01,USA,CA,Los Angeles,Manhattan Beach,17000000,2,2014-07-29,2015-10-15,3,443,16280,16723,
651,Microbridge Technologies Canada,http://www.mbridgetech.com,operating,Manufacturing,,CAN,QC,Montreal,Montréal,5500000,1,2005-02-11,2005-02-11,6,0,12825,12825,
652,Fluc - Food Lovers United Co.,http://www.fluc.com,operating,Bridging Online and Offline|Collaborative Consumption|Crowdsourcing|Local|Local Businesses|Logistics|Marketplaces|Mobile|Restaurants|Small and Medium Businesses,2013-07-05,USA,CA,SF Bay Area,Menlo Park,2300000,2,2013-10-23,2014-11-24,6,397,16001,16398,
653,SingleFeed,http://www.singlefeed.com,acquired,Curated Web,,USA,CA,SF Bay Area,San Francisco,,1,2007-04-05,2007-04-05,2,0,13608,13608,
654,Machine Talker,http://www.machinetalker.com,closed,Hardware + Software,,USA,CA,Santa Barbara,Santa Barbara,100000,1,2010-07-22,2010-07-22,3,0,14812,14812,
655,Vacatia,https://vacatia.com,operating,E-Commerce|Marketplaces|Online Travel|Timeshares|Vacation Rentals,2013-01-01,USA,CA,SF Bay Area,San Francisco,13800000,2,2013-09-04,2015-04-09,18,582,15952,16534,
656,Rise,http://www.rise.us,operating,Marketplaces|Mobile|Personal Health,2013-01-01,USA,CA,SF Bay Area,San Francisco,2300000,1,2013-10-16,2013-10-16,8,0,15994,15994,
657,Whistle Sports,http://whistlesports.com,operating,Entertainment|Sports|Video Streaming,2009-01-01,USA,NY,New York City,New York,53000000,4,2012-01-01,2015-01-13,6,1108,15340,16448,
658,Preferral,https://preferral.com,operating,Health Care|Medical|Training,,USA,TN,Nashville,Nashville,553000,2,2013-09-01,2014-06-17,2,289,15949,16238,
659,Pepgen Corporation,,operating,Bio-Pharm|Clinical Trials|Medical,,USA,CA,SF Bay Area,Alameda,7500000,1,2004-08-04,2004-08-04,4,0,12634,12634,
660,LATTO,http://www.latto.tv,operating,Computers|Enterprise Software|Mobile|Personalization|Tablets|Television|Video|Video on Demand|Video Streaming,2007-02-01,ISR,5,Tel Aviv,Tel Aviv,15000000,2,2011-02-01,2013-07-31,5,911,15006,15917,
661,Ducatt,,operating,Clean Technology,,BEL,5,BEL - Other,Lommel,26294000,1,2010-12-20,2010-12-20,2,0,14963,14963,
662,Lanetix,http://www.lanetix.com,operating,Business Productivity|CRM|Logistics|Transportation,2013-07-01,USA,CA,SF Bay Area,San Francisco,7217716,2,2014-01-17,2015-05-01,2,469,16087,16556,
663,Gamblit Gaming,http://gamblitgaming.com,operating,Games,2010-01-01,USA,CA,Los Angeles,Glendale,12000000,1,2014-03-28,2014-03-28,1,0,16157,16157,
664,Donordonut,http://dndsub.cafe24.com/e,operating,Curated Web,2012-06-20,KOR,11,Seoul,Seoul,27500,1,2012-09-01,2012-09-01,1,0,15584,15584,
665,xMatters,http://www.xmatters.com,operating,Business Services|Enterprise Software,2000-01-01,USA,CA,SF Bay Area,San Ramon,7500000,2,2007-08-21,2007-08-21,1,0,13746,13746,
666,Blog Talk Radio,http://www.blogtalkradio.com,operating,Curated Web,2006-07-01,USA,NY,New York City,New York,6536608,3,2007-01-01,2010-03-29,6,1183,13514,14697,
667,DealDey Limited,http://www.dealdey.com/,operating,Internet,2011-01-01,NGA,54,NGA - Other,Ilupeju,5000000,1,2015-02-19,2015-02-19,1,0,16485,16485,
668,RxVault.in,http://rxvault.in,operating,Health and Wellness|Health Care|Mobile|Mobile Health,2013-01-01,IND,7,New Delhi,New Delhi,10000,1,2013-07-01,2013-07-01,1,0,15887,15887,
669,Evolero,http://evolero.com,operating,Event Management|Events|Networking|Social Media Marketing,,ISR,5,Tel Aviv,Tel Aviv,900000,2,2012-05-15,2014-01-22,5,617,15475,16092,
670,Konarka Technologies,http://www.konarkatech.com,closed,Clean Technology,2001-01-01,USA,MA,Boston,Lowell,106800000,4,2004-06-24,2010-03-03,19,2078,12593,14671,
671,Modify Watches,http://modifywatches.com/,operating,Consumer Goods|Crowdsourcing|E-Commerce|Jewelry|Mass Customization,2010-04-01,USA,CA,SF Bay Area,San Francisco,,1,2013-02-05,2013-02-05,1,0,15741,15741,
672,Flores Online,http://www.floresonline.com.br,operating,,,BRA,2,Sao Paulo,São Paulo,,1,2012-06-01,2012-06-01,2,0,15492,15492,
673,Mompery,http://www.mompery.com,operating,Babies|E-Commerce|Parenting,2013-01-06,TUR,34,Istanbul,Istanbul,2000000,1,2013-06-03,2013-06-03,2,0,15859,15859,
674,UpCompany,http://www.rakedin.com,closed,Curated Web,2008-01-01,USA,,,,5730000,1,2009-09-25,2009-09-25,3,0,14512,14512,
675,Dynamics Direct,,operating,Advertising Platforms|Email,2008-03-01,USA,CA,Los Angeles,Valencia,20600000,4,1999-03-30,2012-05-14,15,4794,10680,15474,
676,Cantaloupe Systems,http://www.cantaloupesys.com,operating,Enterprise Software,2003-01-01,USA,CA,SF Bay Area,San Francisco,16400000,2,2010-04-27,2015-01-23,3,1732,14726,16458,
677,HackerRank,http://hackerrank.com,operating,Recruiting|Social Media,2012-07-01,,,,,19900000,4,2011-06-01,2015-07-14,9,1504,15126,16630,
678,Brokat,,acquired,Computers|Software|Technology,1994-01-01,DEU,1,Stuttgart,Stuttgart,10402868.417585,1,1999-11-08,1999-11-08,1,0,10903,10903,
679,Sensai Corporation,http://www.sens.ai,operating,Big Data|Text Analytics,2014-01-01,USA,CA,SF Bay Area,Palo Alto,1300000,1,2015-03-31,2015-03-31,5,0,16525,16525,
680,Al Jazeera Agricultural,,operating,Agriculture|Distributors,,USA,CA,SF Bay Area,San Francisco,35000000,1,2014-09-08,2014-09-08,1,0,16321,16321,
681,Neurala,http://www.neurala.com,operating,Artificial Intelligence|Robotics|Software,2006-01-30,USA,MA,Boston,Boston,750000,2,2013-02-25,2014-12-10,4,653,15761,16414,
682,BioSilta,http://biosilta.com,operating,Bio-Pharm|Biotechnology|Life Sciences,,FIN,8,Oulu,Oulu,3392314,1,2014-06-11,2014-06-11,2,0,16232,16232,
683,UannaBe,http://www.uannabe.com,closed,Curated Web,2009-02-01,ITA,20,Roncade,Roncade,,1,2010-03-01,2010-03-01,1,0,14669,14669,
684,teamguide.io,http://teamguide.io,operating,,2015-08-01,GBR,I7,GBR - Other,Newcastle,,1,2015-09-06,2015-09-06,1,0,16684,16684,
685,NuFlick,http://nuflick.com,closed,Games|Video on Demand|Video Streaming,2011-06-10,MEX,9,Mexico City,Mexico City,70000,2,2011-10-15,2013-03-25,2,527,15262,15789,
686,Aloqa,http://www.aloqa.com,acquired,Location Based Services|Mobile|Web Development,2007-05-07,DEU,2,Munich,Munich,1500000,1,2009-07-16,2009-07-16,1,0,14441,14441,
687,Zeepro,http://zeepro.com,operating,Hardware + Software,,USA,CA,SF Bay Area,San Francisco,3800000,1,2014-04-15,2014-04-15,3,0,16175,16175,
688,Maven Clinic,http://www.mavenclinic.com,operating,Apps|Health and Wellness|Health Care,2014-01-01,USA,NY,New York City,New York,2200000,2,2015-04-09,2015-07-16,7,98,16534,16632,
689,Hypnotic,,closed,,,,,,,,1,2001-06-06,2001-06-06,5,0,11479,11479,
690,Everywear Games,http://everyweargames.com/,operating,Games|Software,,FIN,13,Helsinki,Helsinki,2250000,2,2015-03-27,2015-08-31,5,157,16521,16678,
691,Puralytics,http://www.puralytics.com,operating,Clean Technology,2007-01-01,USA,OR,"Portland, Oregon",Beaverton,5100000,2,2013-10-18,2014-10-09,1,356,15996,16352,
692,123ContactForm,http://www.123contactform.com,operating,E-Commerce|SaaS,2008-01-01,ROM,36,Timisoara,Timisoara,1000000,2,2010-01-01,2015-06-16,1,1992,14610,16602,
693,Recommerce AG,http://www.verkaufen.ch/,closed,,,CHE,24,CHE - Other,Cham,,1,2014-09-04,2014-09-04,1,0,16317,16317,
694,Electronic Commerce,http://www.ecipay.com/,operating,Software,1996-01-01,USA,IN,South Bend,Elkhart,40000000,1,2015-06-04,2015-06-04,1,0,16590,16590,
695,Xenogen Corporation,http://www.xenogen.com,acquired,Bio-Pharm|Biotechnology,,USA,CA,SF Bay Area,Alameda,22000000,1,2003-07-10,2003-07-10,1,0,12243,12243,
696,BrainStorm Cell Therapeutics,http://www.brainstorm-cell.com,ipo,Biotechnology,2004-01-01,USA,NY,New York City,New York,18139599,5,2012-07-27,2014-07-24,1,727,15548,16275,
697,Jobrivet,https://www.jobrivet.com,closed,Employment|Human Resources|Portals|Services,2013-11-01,USA,CA,"Orange County, California",Mission Viejo,1535000,3,2014-05-01,2015-05-26,24,390,16191,16581,
698,Planet3,http://exploreplanet3.com/,operating,Machine Learning,,USA,DC,"Washington, D.C.",Washington,10000000,1,2015-09-09,2015-09-09,1,0,16687,16687,
699,AppShare,http://www.appshare.co.uk,operating,Enterprise Software,,GBR,V2,Glasgow,Glasgow,783603,2,2010-07-26,2011-12-22,3,514,14816,15330,
700,Flashstock Technology Inc.,http://flashstock.com,operating,Brand Marketing|Photography|SaaS,2013-12-01,CAN,ON,Toronto,Toronto,1600000,2,2014-01-22,2015-06-18,1,512,16092,16604,
701,Dryad,http://www.dryadgames.com/,operating,Games,2012-05-18,KOR,11,Seoul,Seoul,460222,1,2013-01-30,2013-01-30,1,0,15735,15735,
702,E4 Health,http://e4healthinc.com,operating,Health and Wellness,2011-01-01,USA,TX,Dallas,Irving,3500000,1,2013-02-21,2013-02-21,1,0,15757,15757,
703,Alinto,http://www.alinto.com,operating,Internet Service Providers|Messaging,2000-01-01,FRA,B9,Lyon,Lyon,1182833,2,2001-09-30,2009-09-10,1,2902,11595,14497,
704,LeaseMaid,http://leasemaid.com,operating,Real Estate,2013-01-01,USA,IL,Chicago,Chicago,525000,2,2014-07-22,2014-10-10,2,80,16273,16353,
705,HZO,http://www.hzo.com,operating,Consumer Electronics|Customer Service|Hardware + Software|Life Sciences|Sales and Marketing,2011-01-01,USA,UT,Salt Lake City,Draper,48625021,5,2011-08-15,2015-08-17,9,1463,15201,16664,
706,TradeGlobal,http://www.tradeglobal.com,acquired,Delivery|E-Commerce|Enterprise Software|Information Technology|Internet Marketing|Logistics|Online Shopping|Retail Technology|Shipping|Web Development,2001-01-01,USA,OH,Cincinnati,Cincinnati,,1,2013-10-01,2013-10-01,1,0,15979,15979,
707,Seneco,http://seneco.dk/uk,operating,Renewable Energies,2014-01-01,DNK,18,DNK - Other,Hasselager,1069452.98094653,1,2014-03-04,2014-03-04,2,0,16133,16133,
708,Tap.Me,http://tap.me,acquired,Games|Mobile|Mobile Games|Video Games,2009-06-18,USA,IL,Chicago,Chicago,5038868,4,2010-06-01,2012-03-12,11,650,14761,15411,
709,UMass Lowell,http://www.uml.edu,operating,EdTech|Education,,USA,MA,Boston,Lowell,2000000,2,2010-01-20,2015-01-08,1,1814,14629,16443,
710,Blue Rooster,http://bluerooster.com,operating,Software,2000-01-01,USA,WA,Seattle,Seattle,3000000,1,2013-10-22,2013-10-22,1,0,16000,16000,
711,M-KOPA,http://m-kopa.com,operating,Environmental Innovation|Mobile|Renewable Energies,2011-01-01,TAN,23,TZA - Other,Dar Es Salaam,51450000,3,2014-02-06,2015-12-02,4,664,16107,16771,
712,X Engineering,http://spendwallet.com,operating,FinTech|Hardware + Software|Internet of Things|Payments,2015-02-13,KOR,13,Seongnam,Seongnam,,1,2015-02-26,2015-02-26,1,0,16492,16492,
713,VidPlus,,operating,E-Commerce|Service Providers|Startups,,,,,,44252,2,2014-09-03,2015-04-01,2,210,16316,16526,
714,PlantSense,http://www.plantsense.com,operating,Curated Web,2006-01-01,USA,CA,SF Bay Area,San Francisco,8660000,4,2008-06-12,2010-07-19,2,767,14042,14809,
715,Cask,http://cask.co,operating,Analytics|Application Platforms|Big Data|Developer APIs|Development Platforms|Open Source,2011-11-01,USA,CA,SF Bay Area,Palo Alto,32500000,3,2012-01-25,2015-11-05,12,1380,15364,16744,
716,LaFourchette,http://www.lafourchette.com,acquired,Hospitality,,FRA,A8,Paris,Paris,14820030,2,2011-01-06,2012-05-02,4,482,14980,15462,
717,Resilinc,http://www.resilinc.com,operating,Logistics|Risk Management|SaaS|Supply Chain Management,2010-01-01,USA,CA,SF Bay Area,Milpitas,8000000,1,2014-02-02,2014-02-02,3,0,16103,16103,
718,Aureon Laboratories,http://www.aureon.com,closed,Biotechnology,,USA,NY,New York City,New York,73331503,8,2002-09-30,2011-09-29,9,3286,11960,15246,
719,Looker,http://looker.com,operating,Analytics|Business Intelligence|Data Visualization,2011-01-01,USA,CA,SF Bay Area,Santa Cruz,48000000,3,2013-03-06,2015-03-11,9,735,15770,16505,
720,Duda,http://www.dudamobile.com,operating,Curated Web|Internet|Mobile|Optimization,2009-04-23,USA,CA,SF Bay Area,Palo Alto,18600000,3,2010-01-01,2013-04-08,13,1193,14610,15803,
721,North Sea Recovery,,operating,Services|Startups,,,,,,263734,1,2014-11-03,2014-11-03,1,0,16377,16377,
722,AGRIMAPS,,operating,Mobile,2006-01-01,CHL,12,Santiago,Santiago,40000,1,2013-03-11,2013-03-11,1,0,15775,15775,
723,charming charlie,http://charmingcharlie.com,operating,Retail,2004-01-01,USA,TX,Houston,Houston,80399977,1,2014-01-14,2014-01-14,1,0,16084,16084,
724,Mosavali,http://www.mosavali.org,operating,Agriculture|Farming|Technology,2015-03-01,GEO,19,Tbilisi,Tbilisi,90000,2,2015-03-01,2015-11-01,2,245,16495,16740,
725,Jottr,https://jottr.ai,operating,Advertising Platforms|Artificial Intelligence|Big Data|Big Data Analytics|Content|Interest Graph|Internet|Machine Learning|Natural Language Processing|News,2014-08-19,USA,CA,SF Bay Area,San Jose,1210000,2,2015-06-26,2015-06-26,2,0,16612,16612,
726,PromoFarma.com,http://www.PromoFarma.com,operating,Beauty|E-Commerce|Health and Wellness|Marketplaces,2010-11-01,ESP,56,Barcelona,Barcelona,5923950,3,2011-11-01,2014-04-09,4,890,15279,16169,
727,citibuddies,http://www.citibuddies.com,closed,Curated Web|Events|Local|Online Shopping|Reviews and Recommendations|Travel,2012-07-01,ARG,7,Buenos Aires,Buenos Aires,70000,2,2013-03-01,2013-03-01,3,0,15765,15765,
728,Corus Pharma,http://www.coruspharma.com/,closed,Pharmaceuticals,,USA,WA,Seattle,Seattle,60000000,1,2004-04-13,2004-04-13,17,0,12521,12521,
729,Tesla Motors,http://www.teslamotors.com,ipo,Automotive|Clean Technology,2003-01-01,USA,CA,SF Bay Area,Palo Alto,823000000,11,2004-04-01,2012-10-10,35,3114,12509,15623,
730,Founder International Software,http://www.foundersoft.com,operating,Mobile,1996-01-01,CHN,4,Shanghai,Suzhou,,1,2011-06-01,2011-06-01,1,0,15126,15126,
731,Transparency Software,http://www.transparencysoftware.com,closed,Software,2004-01-01,USA,CA,SF Bay Area,Palo Alto,12050000,2,2005-03-18,2007-07-01,4,835,12860,13695,
732,Nanotech Partners,http://www.nt-p.com/english,operating,,,,,,,4052993,1,2002-09-24,2002-09-24,1,0,11954,11954,
733,RedLasso,http://www.redlasso.com,operating,Curated Web|Music|Television,,USA,PA,Philadelphia,King Of Prussia,9563440,3,2007-11-01,2009-06-24,5,601,13818,14419,
734,CropUp,http://cropup.com,operating,E-Commerce|Facebook Applications|Payments|Social Commerce|Social Media|Twitter Applications,2012-04-17,USA,NY,New York City,Brooklyn,1000000,1,2012-04-01,2012-04-01,1,0,15431,15431,
735,Censis Technologies,http://www.censis.net,operating,Health Care|Medical|Tracking,1999-01-01,USA,TN,Nashville,Franklin,,1,2014-07-28,2014-07-28,1,0,16279,16279,
736,Onefeat,http://www.onefeat.com,operating,Games|Gamification|Social Media,2011-02-13,,,,,,3,2010-08-01,2012-08-01,2,731,14822,15553,
737,Muufri,http://muufri.com,operating,Biotechnology|Food Processing,2014-05-01,IRL,4,Cork,Cork,2060000,2,2014-05-02,2014-09-30,4,151,16192,16343,
738,USGI Medical,http://usgimedical.com,operating,Health Care,2001-01-01,USA,CA,Anaheim,San Clemente,45048169,3,2012-05-25,2015-01-26,3,976,15485,16461,
739,Qwenty,http://qwentyapp.com,operating,Software,,,,,,300000,1,2013-09-18,2013-09-18,1,0,15966,15966,
740,ZirMed,http://zirmed.com,operating,Biotechnology,1999-01-01,USA,KY,Louisville,Louisville,,1,2010-12-10,2010-12-10,1,0,14953,14953,
741,Tag&See,http://tagandsee.com,operating,Big Data|Brand Marketing|Curated Web|Publishing|Real Time,2012-10-10,FRA,A8,Paris,Issy-les-moulineaux,200000,1,2012-10-23,2012-10-23,2,0,15636,15636,
742,Elemental Cyber Security,http://www.elementalsecurity.com,operating,Security,2002-01-01,USA,NV,Las Vegas,Las Vegas,11000000,1,2005-06-20,2005-06-20,4,0,12954,12954,
743,Thomas-Krenn,http://www.thomas-krenn.com,operating,E-Commerce,,DEU,2,DEU - Other,Freyung,,1,2011-09-20,2011-09-20,1,0,15237,15237,
744,908 Devices,http://908devices.com,operating,Manufacturing,2012-01-01,USA,MA,Boston,Boston,29300000,4,2012-09-05,2015-05-06,14,973,15588,16561,
745,Moven,http://moven.com,operating,Banking|Lifestyle|Mobile|Personal Finance,2011-04-01,USA,NY,New York City,New York,24410000,4,2012-08-11,2015-10-13,10,1158,15563,16721,
746,WeFitter,http://www.wefitter.com,operating,E-Commerce|Fitness|Gamification,2014-04-04,ESP,56,Barcelona,Barcelona,290977.460438257,1,2015-03-01,2015-03-01,1,0,16495,16495,
747,Brenco,http://www.brenco.com.br,acquired,Clean Technology,2007-01-01,BRA,2,Sao Paulo,São Paulo,200000000,1,2007-03-15,2007-03-15,3,0,13587,13587,
748,Meridian Energy USA,http://meridianenergyusa.com,operating,Clean Technology,,USA,CA,SF Bay Area,Pleasanton,690000,1,2008-12-03,2008-12-03,1,0,14216,14216,
749,Debteye,http://www.debteye.com,closed,Software,2010-01-01,USA,IL,Chicago,Chicago,,1,2011-08-02,2011-08-02,1,0,15188,15188,
750,Lara Networks,http://www.laranetworks.com,closed,Clean Technology|Design|Innovation Management,,USA,CA,SF Bay Area,San Jose,40000000,1,2000-10-23,2000-10-23,9,0,11253,11253,
751,Semantics3,http://www.semantics3.com,operating,E-Commerce,2013-03-01,USA,CA,SF Bay Area,San Francisco,2150000,2,2013-03-01,2015-11-05,2,979,15765,16744,
752,Africa Oil Corp,http://www.africaoilcorp.com,operating,Oil & Gas,,CAN,BC,Vancouver,Vancouver,100000000,1,2015-05-05,2015-05-05,1,0,16560,16560,
753,Veotag,http://veotag.com,acquired,Curated Web,,USA,NY,New York City,New York,1950000,2,2007-05-01,2009-06-09,3,770,13634,14404,
754,FlexyMind,http://flexymind.com,operating,Games,2011-01-01,RUS,66,St. Petersburg,Saint Petersburg,,1,2014-04-06,2014-04-06,2,0,16166,16166,
755,Smart Media Inventions,http://www.smartmediainventions.com,operating,Software,,CHL,12,Santiago,Santiago,40000,1,2013-08-22,2013-08-22,1,0,15939,15939,
756,Probiodrug,http://www.probiodrug.de,ipo,Biotechnology,1997-01-01,DEU,14,Halle An Der Saale,Halle An Der Saale,73422000,2,2009-11-02,2012-01-04,14,793,14550,15343,
757,Black Rock Tidal Power,http://www.blackrocktidalpower.com/home/,operating,Energy,2013-01-01,CAN,NS,Halifax,Halifax,10500000,1,2015-11-25,2015-11-25,2,0,16764,16764,
758,J Squared Media,http://www.j-squaredmedia.com,operating,Finance|FinTech|Social Media,,USA,PA,Philadelphia,Philadelphia,15000,1,2007-08-01,2007-08-01,1,0,13726,13726,
759,Slyde Holding S.A,http://slyde.ch,operating,Manufacturing,,NLD,2,NLD - Other,Huins,788821,1,2014-04-08,2014-04-08,1,0,16168,16168,
760,Nanda Technologies,http://www.nanda-tech.com,acquired,Semiconductors,2006-01-01,DEU,2,DEU - Other,Unterschleißheim,14109347,3,2006-12-04,2010-04-08,11,1221,13486,14707,
761,INCIDE,http://www.incide-semi.com,operating,Semiconductors|Technology,,ESP,29,San Sebastián De Los Reyes,San Sebastián De Los Reyes,1400500,1,2008-12-26,2008-12-26,1,0,14239,14239,
762,Sportlala,https://www.sportlala.se/,operating,,,SWE,,,,700000,1,2015-11-25,2015-11-25,2,0,16764,16764,
763,Bornevia,https://www.bornevia.com/,operating,CRM|SaaS|Software,2014-01-01,IDN,4,Jakarta,Jakarta,,1,2015-01-05,2015-01-05,2,0,16440,16440,
764,RevUp,http://www.revup.com/,operating,,,USA,CA,SF Bay Area,Redwood City,,1,2014-09-15,2014-09-15,1,0,16328,16328,
765,Everyday Solutions,http://www.everydaywireless.com,operating,Mobile,2000-01-01,USA,MA,Boston,Concord,2809010,1,2010-06-18,2010-06-18,3,0,14778,14778,
766,AMX,http://www.amx.com,acquired,Digital Signage|Software|Television,1982-01-01,USA,TX,Dallas,Richardson,,1,1995-03-31,1995-03-31,1,0,9220,9220,
767,Startup Quest,http://www.StartupQuest.com,operating,Automotive|Education|Entrepreneur|Finance|Incubators|Startups,2012-05-17,USA,CO,Denver,Boulder,100000,1,2012-10-20,2012-10-20,2,0,15633,15633,
768,Notion Systems,http://www.notion-systems.com,operating,Manufacturing,,DEU,1,Frankfurt,Schwetzingen,,1,2013-02-26,2013-02-26,1,0,15762,15762,
769,Regulatory DataCorp,http://rdc.com/,operating,Computers|Risk Management|Software,2002-01-01,USA,PA,,,,2,2007-07-01,2009-06-01,2,701,13695,14396,
770,iWOPI,http://www.iwopi.org/,operating,Social Network Media|Sports,2013-01-01,ESP,56,Barcelona,Barcelona,,1,2014-05-15,2014-05-15,1,0,16205,16205,
771,Novate Medical,http://novatemedical.com/,operating,Health Care,,IRL,7,Dublin,Dublin,17952285.0596268,2,2007-09-19,2011-05-21,5,1340,13775,15115,
772,Refractec,http://refractec.com/,operating,Manufacturing|Medical|Medical Devices,1993-01-01,USA,MN,Minneapolis,Bloomington,9000000,2,2002-09-06,2003-07-18,6,315,11936,12251,
773,Wayook,https://www.wayook.es/,operating,Electronics|Families|Marketplaces,2014-01-01,ESP,29,Madrid,Madrid,714740,1,2015-06-08,2015-06-08,1,0,16594,16594,
774,Drillinginfo,http://drillinginfo.com,operating,Analytics|Business Information Systems|Oil and Gas,1999-01-01,USA,TX,Austin,Austin,191577006,3,2012-03-05,2015-03-13,4,1103,15404,16507,
775,NS1,http://www.nsone.net,operating,Internet|Web Hosting,2013-06-01,,,,,5350000,1,2015-04-07,2015-04-07,4,0,16532,16532,
776,Location Labs,http://locationlabs.com,acquired,Location Based Services|Mobile|Security,,USA,CA,SF Bay Area,Emeryville,25800000,3,2002-02-12,2005-10-01,11,1327,11730,13057,
777,Skillz,http://skillz.com,operating,Games|Mobile Games,2012-04-01,USA,CA,SF Bay Area,San Francisco,31000000,4,2012-11-15,2015-09-24,10,1043,15659,16702,
778,Knyttan,http://www.Knyttan.com,operating,Fashion|Software|Technology,2013-04-22,GBR,H9,London,London,6346881,2,2014-10-01,2015-06-18,5,260,16344,16604,
779,I-Logix,,acquired,Computers|Software|Technology,,,,,,10500000,1,1999-11-22,1999-11-22,3,0,10917,10917,
780,Blackwave,http://www.blackwave.tv,acquired,Social Media|Storage|Video Streaming|Web Hosting,2006-01-01,USA,MA,Boston,Acton,28000000,3,2006-12-01,2009-09-30,8,1034,13483,14517,
781,Unikrn,http://www.unikrn.com,operating,Games,2014-11-01,USA,WA,Seattle,Seattle,10000000,2,2015-02-09,2015-06-30,10,141,16475,16616,
782,Levlr,http://levlr.com,operating,Game Mechanics|Sales and Marketing|Social Games|Social Media|Software,2010-01-01,USA,PA,Pittsburgh,Pittsburgh,25000,1,2010-06-01,2010-06-01,1,0,14761,14761,
783,ReferralMD,https://getreferralmd.com,operating,Electronic Health Records|Enterprise Software|Health Care|Medical|SaaS|Software,2011-08-11,USA,CA,SF Bay Area,San Francisco,520000,2,2013-03-13,2013-09-23,4,194,15777,15971,
784,Maker Studios,http://makerstudios.com,acquired,Games,2009-01-01,USA,CA,Los Angeles,Culver City,66000000,4,2010-12-01,2013-09-12,15,1016,14944,15960,
785,SyncVoice Communications,http://www.syncvoice.com/,operating,Software,,USA,CA,Anaheim,Costa Mesa,11600000,1,2007-08-14,2007-08-14,3,0,13739,13739,
786,Apex Learning,http://www.apexlearning.com,operating,Education,1997-01-01,USA,WA,Seattle,Seattle,24661724,4,2002-10-02,2013-06-19,2,3913,11962,15875,
787,Spring Moves,http://springmoves.com,operating,Apps|Exercise|Fitness|Mobile|Music|Music Services,2012-01-01,USA,NY,New York City,New York,1971455,2,2014-10-10,2015-03-12,10,153,16353,16506,
788,ZhenXin,http://www.zhenxincares.com,closed,Health Care,,TWN,,,,11700,1,2013-08-29,2013-08-29,1,0,15946,15946,
789,SFC,http://www.sfc.com/en,operating,Mobile|Service Providers|Services,,DEU,1,DEU - Other,Brunnthal,,1,2010-11-16,2010-11-16,1,0,14929,14929,
790,Edvisor.io,http://edvisor.io/,operating,EdTech|Education,2014-01-01,USA,NY,New York City,New York,,1,2014-07-24,2014-07-24,3,0,16275,16275,
791,GestSure,http://www.gestsure.com,operating,Health Care,2011-03-01,CAN,ON,Toronto,Toronto,500000,2,2012-03-01,2013-05-01,2,426,15400,15826,
792,Van Bulck Beers,http://www.vanbulck-beers.be/,operating,Consumer Goods|Craft Beer|Wine And Spirits,,GBR,G5,GBR - Other,Royal Tunbridge Wells,50977,1,2014-06-19,2014-06-19,1,0,16240,16240,
793,Quantum Secure,http://www.quantumsecure.com,operating,Enterprise Software,2004-01-01,USA,CA,SF Bay Area,San Jose,3540000,1,2006-10-29,2006-10-29,1,0,13450,13450,
794,ZettaCore,http://zettacore.com/index.html,closed,Semiconductors,1999-01-01,USA,CO,Denver,Englewood,38500000,2,2004-01-20,2009-05-11,11,1938,12437,14375,
795,SmartSky Networks,http://smartskynetworks.com,operating,Web Hosting,2011-01-01,USA,NC,Charlotte,Charlotte,20868675,5,2012-08-02,2015-10-23,3,1177,15554,16731,
796,DangDang.com,http://www.dangdang.com,ipo,E-Commerce,,CHN,22,Beijing,Beijing,,2,2000-02-01,2006-07-01,3,2342,10988,13330,
797,"Verisma Systems, Inc.",http://verisma.com/,operating,Hospitals,2004-01-01,USA,CO,CO - Other,Pueblo,1200000,1,2015-10-21,2015-10-21,4,0,16729,16729,
798,Carmichael Training Systems,http://trainright.com,operating,Active Lifestyle|Sports|Training,2000-01-01,USA,CA,Santa Barbara,Santa Ynez,,1,2002-09-30,2002-09-30,1,0,11960,11960,
799,Beatroot Music,http://beatroot.com/,operating,Music,2014-01-01,GBR,Z7,Macclesfield,Macclesfield,383006,1,2015-09-02,2015-09-02,1,0,16680,16680,
800,Q Holdings,http://www.qthera.com,operating,Biotechnology,,USA,UT,Salt Lake City,Salt Lake City,12018047,2,2008-02-15,2012-07-27,7,1624,13924,15548,
801,Trion Worlds,http://www.trionworlds.com,operating,Games,2006-01-01,USA,CA,SF Bay Area,Redwood City,185000000,3,2007-07-09,2012-01-19,16,1655,13703,15358,
802,Turbina Energy AG,http://turbina.de,operating,Clean Technology,,DEU,2,Unterhaching,Unterhaching,,1,2014-04-18,2014-04-18,1,0,16178,16178,
803,Robotronica,http://robotronicsystems.com,closed,Education|Machine Learning|Robotics,,RUS,48,Moscow,Moscow,155000,1,2013-08-01,2013-08-01,1,0,15918,15918,
804,RINGR,http://ringr.us/,operating,Apps,,USA,IL,"Springfield, Illinois",Champaign,200000,3,2014-08-07,2015-07-08,4,335,16289,16624,
805,Tobosu.com,http://www.tobosu.com/,operating,Mobile,2007-01-01,,,,,8147745,1,2014-03-01,2014-03-01,1,0,16130,16130,
806,byUs,http://www.byus.com,operating,Curated Web|Local Businesses|Reviews and Recommendations|Social Media,,USA,CA,SF Bay Area,San Mateo,3000000,2,2013-12-01,2013-12-25,2,24,16040,16064,
807,Indicative,http://www.indicative.com,operating,Analytics|Big Data|Business Intelligence|Internet|Mobile|Sales and Marketing,2013-10-01,USA,NY,New York City,New York,2000000,1,2014-10-14,2014-10-14,13,0,16357,16357,
808,RentStuff.com,http://www.rentstuff.com,acquired,Curated Web,2010-01-01,USA,TN,Nashville,Nashville,675000,2,2011-05-05,2012-04-12,3,343,15099,15442,
809,OmniSky,http://www.omnisky.com,operating,Software,1999-01-01,USA,CA,SF Bay Area,San Francisco,110000000,2,2000-01-31,2000-06-12,5,133,10987,11120,
810,SendMe,http://sendmemobile.com,closed,Mobile,2006-06-01,USA,CA,SF Bay Area,San Francisco,34500000,4,2006-06-01,2009-03-05,15,1008,13300,14308,
811,Modern Movement,http://www.modmov.com,operating,Android|Software|Software Compliance,,USA,WI,Madison,Madison,85000,2,2014-07-18,2015-12-12,1,512,16269,16781,
812,NewHive,http://newhive.com,operating,Design|News,,USA,CA,SF Bay Area,San Francisco,,2,2012-09-13,2013-01-17,14,126,15596,15722,
813,Shicoh Engineering,http://new-shicoh.com,ipo,Consumer Electronics|Motors,,JPN,19,JPN - Other,Yamato-minami,,1,2004-03-09,2004-03-09,1,0,12486,12486,
814,KAI Pharmaceuticals,http://www.kaipharmaceuticals.com,acquired,Biotechnology|Medical,,USA,CA,SF Bay Area,South San Francisco,52000000,2,2003-12-04,2006-05-02,11,880,12390,13270,
815,Mosoro,http://www.mosoro.com,closed,Manufacturing,2010-01-01,USA,CO,Denver,Golden,1500000,1,2012-01-31,2012-01-31,5,0,15370,15370,
816,Novacem,http://novacem.com,closed,Clean Technology,,GBR,H9,London,London,2393578,1,2011-01-27,2011-01-27,3,0,15001,15001,
817,Guangdong Hengxing Group,http://www.hx888.com,operating,Manufacturing,1998-01-01,,,,,,1,2011-07-01,2011-07-01,1,0,15156,15156,
818,Elastic,https://www.elastic.co,operating,Cloud Computing|Open Source|Real Time|Search|Software,2012-02-01,USA,CA,SF Bay Area,Mountain View,104000000,3,2012-11-08,2014-06-05,9,574,15652,16226,
819,Evolv Sports & Designs,http://www.evolvsports.com/,operating,Design|Lifestyle|Retail|Sports,,USA,CA,Anaheim,Buena Park,,1,2014-08-07,2014-08-07,1,0,16289,16289,
820,AWR Corporation,http://awrcorp.com,acquired,Software,1994-07-23,USA,CA,Los Angeles,El Segundo,13800000,2,2002-07-29,2006-02-09,6,1291,11897,13188,
821,Sjapper,http://sjapper.com,operating,Apps|Facebook Applications|Games|iPhone|Social Media,2009-01-01,NOR,19,Kristiansand,Kristiansand,85523,2,2010-01-01,2013-03-01,2,1155,14610,15765,
822,BoxC,http://boxc.com/home,operating,E-Commerce,2011-01-01,CHN,23,Shanghai,Shanghai,725000,2,2013-06-01,2013-09-04,3,95,15857,15952,
823,Ascend Consumer Finance,https://www.ascendloan.com/,operating,Financial Services,2014-01-01,USA,CA,SF Bay Area,San Francisco,1500000,1,2015-04-14,2015-04-14,3,0,16539,16539,
824,Ibotta,http://ibotta.com,operating,Mobile,2011-01-01,USA,CO,Denver,Denver,60000000,3,2013-05-01,2015-09-28,10,880,15826,16706,
825,1CLICK,http://1click.io,acquired,Chat|Mobile,2012-11-01,IND,19,Bangalore,Bangalore,,1,2014-01-26,2014-01-26,1,0,16096,16096,
826,GridIron Systems,http://www.gridironsystems.com,acquired,Big Data|Big Data Analytics|Hardware + Software,2007-01-01,USA,CA,SF Bay Area,Sunnyvale,13000000,1,2012-01-01,2012-01-01,3,0,15340,15340,
827,Salmedix Inc,,acquired,Biotechnology|Medical|Pharmaceuticals,,,,,,45000000,1,2005-10-19,2005-10-19,6,0,13075,13075,
828,WiMi5,http://www.wimi5.com,operating,Casual Games|MMO Games|Mobile Games|Social Games,2013-10-08,ESP,59,Bilbao,Bilbao,530000,2,2014-01-21,2014-03-27,1,65,16091,16156,
829,Contego Medical,http://contegomedical.com/,operating,Medical Devices,2005-01-01,USA,NC,Raleigh,Raleigh,5600000,1,2015-04-17,2015-04-17,4,0,16542,16542,
830,GetSocial,http://www.getsocial.io,operating,Content|SaaS|Social Media Marketing|Software,2013-01-01,PRT,14,Lisbon,Lisbon,843550.409947646,1,2013-09-18,2013-09-18,2,0,15966,15966,
831,Knowlarity Communications,http://knowlarity.com,operating,Cloud Computing|Emerging Markets|SaaS|Small and Medium Businesses|Software|Telephony,2009-08-17,IND,10,New Delhi,Gurgaon,22500000,3,2011-01-01,2014-07-28,5,1304,14975,16279,
832,Kalila Medical,http://www.kalilamedical.com,operating,Health Care,2010-01-01,USA,CA,SF Bay Area,Campbell,,1,2014-04-15,2014-04-15,1,0,16175,16175,
833,CloudByte,http://www.cloudbyte.com,operating,Enterprise Software|Storage,2010-01-01,USA,CA,SF Bay Area,Cupertino,6100000,2,2012-06-26,2013-06-18,5,357,15517,15874,
834,Photosonix Medical,http://www.photosonixmed.com,operating,Health and Wellness|Health Care|Medical Devices,,USA,PA,Philadelphia,Ambler,510000,2,2014-08-20,2015-09-24,1,400,16302,16702,
835,Cyber-Rain,http://www.cyber-rain.com,operating,Clean Technology,2006-01-01,USA,CA,Los Angeles,Encino,3300000,3,2007-06-18,2010-10-11,6,1211,13682,14893,
836,Cryex Group,http://www.cryex.com/,operating,Banking|Financial Services|Technology|Trading,2013-01-01,SWE,26,Stockholm,Stockholm,10000000,2,2014-10-01,2015-05-07,2,218,16344,16562,
837,Commissiontrac,http://www.commissiontrac.com,closed,,2015-06-30,,,,,300000,1,2015-06-01,2015-06-01,1,0,16587,16587,
838,GetBulb,http://getbulb.com,operating,Analytics|Graphics|Media|Sales and Marketing,2011-09-01,IRL,7,Dublin,Dublin,83210,2,2012-02-26,2012-09-01,2,188,15396,15584,
839,ilustrum,http://www.ilustrum.com,operating,Collectibles|Crowdsourcing|Games|Social Network Media,2011-01-01,ESP,56,Barcelona,Barcelona,1978262,4,2011-11-01,2012-12-01,1,396,15279,15675,
840,iMICROQ,http://www.imicroq.com,operating,Hardware + Software|Technology,2010-01-01,ESP,56,Tarragona,Tarragona,1427030,1,2013-05-13,2013-05-13,1,0,15838,15838,
841,CoWare,http://www.coware.com,acquired,Software,1997-01-01,USA,CA,SF Bay Area,San Jose,7000000,1,2007-07-20,2007-07-20,3,0,13714,13714,
842,Ninjathat,http://www.ninjathat.com,operating,Business Services|Marketplaces|Outsourcing,2012-01-01,,,,,,1,2012-12-05,2012-12-05,1,0,15679,15679,
843,Ascension Orthopedics,http://www.ascensionortho.com,acquired,Biotechnology|Diagnostics|Health Care,1996-01-01,USA,TX,Austin,Austin,39664050,2,2008-01-22,2011-07-20,1,1275,13900,15175,
844,Mavin,http://www.mavin.co/,operating,Mobile Advertising,,USA,CA,SF Bay Area,Palo Alto,,1,2013-11-10,2013-11-10,1,0,16019,16019,
845,ZoomSafer,http://www.zoomsafer.com,acquired,Fleet Management|Mobile|Risk Management,2009-01-01,USA,VA,"Washington, D.C.",Herndon,3350000,4,2009-03-01,2011-03-07,3,736,14304,15040,
846,Oxehealth,http://www.oxehealth.com/,closed,Software,2012-01-01,GBR,,,,3359105,1,2014-05-15,2014-05-15,1,0,16205,16205,
847,ASSIA,http://www.assia-inc.com,operating,Software,2003-01-01,USA,CA,SF Bay Area,Redwood City,50800000,3,2009-11-02,2011-09-01,15,668,14550,15218,
848,Sablono,http://www.sablono.com/,operating,Software,2013-01-01,DEU,16,Berlin,Berlin,1307485,2,2013-06-05,2014-07-01,4,391,15861,16252,
849,Carrot Rocket Ltd,https://www.linkedin.com/company/carrot-rocket-ltd,closed,Apps|Entertainment|Internet,2015-03-13,GBR,H9,London,London,450000,1,2015-02-02,2015-02-02,1,0,16468,16468,
850,Direct Media Technologies,,operating,Web Hosting,,CAN,ON,Toronto,Toronto,4200000,1,2011-06-17,2011-06-17,2,0,15142,15142,
851,BioVex,http://www.biovex.com,acquired,Biotechnology|Medical|Pharmaceuticals,2006-01-01,GBR,Q5,Oxton,Oxton,133314585,4,2003-10-06,2009-11-10,34,2227,12331,14558,
852,Decision Lens,http://decisionlens.com,operating,Collaboration|Real Time|Software,2002-01-01,USA,VA,"Washington, D.C.",Arlington,6900000,3,2014-05-13,2014-07-25,1,73,16203,16276,
853,Udemy,http://www.udemy.com,operating,Education|Marketplaces|Technology,2010-02-01,USA,CA,SF Bay Area,San Francisco,113000000,5,2010-08-31,2015-06-02,24,1736,14852,16588,
854,Brilliant Inc,,closed,,,,,,,,1,2013-05-28,2013-05-28,2,0,15853,15853,
855,Advanced Ophthalmic Pharma,http://www.aopharma.com,closed,Biotechnology,2007-01-01,ISR,5,Tel Aviv,Tel Aviv,2000000,1,2010-05-02,2010-05-02,2,0,14731,14731,
856,Gracious Eloise,http://graciouseloise.com,operating,CRM|Digital Media|SaaS|Software,2011-02-01,USA,NY,New York City,New York,4447626,2,2012-09-17,2015-02-27,6,893,15600,16493,
857,Innovalight,http://innovalight.com,acquired,Clean Technology|Energy Efficiency|Manufacturing,,USA,CA,SF Bay Area,Sunnyvale,74341484,6,2007-10-11,2011-07-19,24,1377,13797,15174,
858,Salient Pharmaceuticals,http://www.salientpharmaceuticals.com,operating,Biotechnology,2007-01-01,USA,TX,Houston,Houston,2000000,2,2010-01-29,2011-08-18,2,566,14638,15204,
859,smartbargains.com,http://www.smartbargains.com/,operating,E-Commerce|Fashion|Online Shopping|Retail,,USA,FL,Miami,Aventura,9000000,1,2002-08-26,2002-08-26,4,0,11925,11925,
860,Acacia Interactive,http://investing.businessweek.com,operating,Software,2012-01-01,USA,TN,Nashville,Nashville,762000,1,2013-03-29,2013-03-29,1,0,15793,15793,
861,VisualOn,http://www.visualon.com,operating,Software,2003-01-03,USA,CA,SF Bay Area,San Jose,2700000,2,2004-03-01,2007-12-21,4,1390,12478,13868,
862,KXEN,http://www.kxen.com,acquired,Analytics|Data Mining|Software,1998-01-01,USA,CA,SF Bay Area,San Francisco,8000000,2,2004-10-05,2010-06-16,6,2080,12696,14776,
863,Oslo Software,http://www.oslo-software.com,closed,Software,,FRA,A6,,,5540000,2,2006-08-31,2008-09-23,4,754,13391,14145,
864,StarWind Software,http://www.starwindsoftware.com,operating,Software,2008-10-01,CHN,14,CHN - Other,Ma,3250000,2,2009-02-03,2014-04-15,4,1897,14278,16175,
865,Decolar.com,http://www.decolar.com/,operating,Online Travel|Travel & Tourism,1999-01-01,BRA,27,BRA - Other,Guarulhos,270000000,2,2012-04-27,2015-03-11,2,1048,15457,16505,
866,CallFixie,http://callfixie.com/,operating,Apps,,,,,,,1,2015-02-28,2015-02-28,1,0,16494,16494,
867,C9 Inc.,http://www.c9inc.com,acquired,Analytics|Big Data|Business Development|Predictive Analytics|Sales and Marketing|Software,2007-01-01,USA,CA,SF Bay Area,San Mateo,35600000,6,2004-07-01,2013-09-23,14,3371,12600,15971,
868,Unchained Labs,https://www.unchainedlabs.com/,operating,Biotechnology|Services,2014-12-01,USA,CA,SF Bay Area,Pleasanton,25000000,1,2015-02-12,2015-02-12,3,0,16478,16478,
869,MOMENTFACE SRO,http://www.momentface.com,operating,Application Platforms|Apps|Employment|Human Resource Automation|Mobile|Recruiting|Skill Assessment|Social Recruiting,2013-07-27,CZE,88,CZE - Other,Zelenec,74036,3,2013-07-27,2014-09-03,1,403,15913,16316,
870,Mirics Semiconductor,http://www.mirics.com,operating,Semiconductors,2004-05-01,,,,,52548106,5,2007-08-06,2011-09-20,9,1506,13731,15237,
871,Entellium,,closed,CRM|Enterprise Software,2000-02-01,USA,WA,Seattle,Seattle,66000000,2,2007-01-22,2008-01-01,4,344,13535,13879,
872,S4M,http://www.s4m.io,operating,Advertising|Mobile,2012-02-01,FRA,A8,Paris,Paris,8000000,1,2015-06-04,2015-06-04,2,0,16590,16590,
873,GamePlan Technologies,http://www.gogameplan.com,operating,Software,2005-01-01,USA,NE,Omaha,Omaha,3050000,2,2006-04-25,2013-10-16,2,2731,13263,15994,
874,Pangea,,operating,,,,,,,,1,2015-01-15,2015-01-15,1,0,16450,16450,
875,Akana,http://akana.com,operating,Cloud Data Services|Cloud Security|Developer APIs|Software,2001-01-01,USA,CA,Los Angeles,Los Angeles,21000000,2,2006-06-12,2014-03-28,7,2846,13311,16157,
876,Savtira Corporation,http://www.savtira.com,closed,Cloud Computing|E-Commerce|Enterprise Software,,USA,FL,Tampa,Tampa,,2,2011-07-06,2011-09-12,2,68,15161,15229,
877,Colizer,http://www.colizer.com,operating,Advertising|Internet Marketing|Local Search|Web Development,2004-12-31,USA,CA,San Diego,San Diego,120000,1,2004-04-01,2004-04-01,1,0,12509,12509,
878,Carrius Technologies,http://carriustech.com/,operating,Technology,,USA,TX,Dallas,Richardson,12300000,2,2003-02-07,2003-10-10,7,245,12090,12335,
879,BoardEvals,http://www.boardevals.com,operating,Nonprofits,2008-08-19,USA,CA,Sacramento,El Dorado Hills,100000,1,2008-08-01,2008-08-01,1,0,14092,14092,
880,TruSTAR Technology,http://www.trustartechnology.com,operating,Cyber Security|Security,2014-03-01,USA,CA,SF Bay Area,San Francisco,2000000,1,2015-11-16,2015-11-16,1,0,16755,16755,
881,CollegeMapper,http://collegemapper.com,closed,Education,2011-01-01,USA,WA,Seattle,Bellevue,320000,3,2012-06-08,2014-04-22,2,683,15499,16182,
882,ERPFlex,http://www.erpflex.com.br,closed,,2010-01-01,BRA,27,Sao Paulo,São Paulo,,1,2015-09-25,2015-09-25,1,0,16703,16703,
883,Keystone Ranger Holdings,,operating,Aerospace,2001-01-01,USA,PA,Philadelphia,Coatesville,,1,2003-10-24,2003-10-24,3,0,12349,12349,
884,Hell'o Baby,http://babyalbum.com,operating,Audio|Babies|Photo Sharing|Video|Web Development,2007-08-01,RUS,48,Moscow,Moscow,665404.082172748,2,2014-05-01,2015-10-27,1,544,16191,16735,
885,NewWorld Communications,,closed,Technology,,,,,,150000000,1,2000-06-01,2000-06-01,11,0,11109,11109,
886,CSG Solar,,closed,Electrical Distribution|Electronics|Solar,2004-01-01,DEU,13,DEU - Other,Thalheim,31253119.8860997,1,2005-01-27,2005-01-27,5,0,12810,12810,
887,PASSNFLY,http://passnfly.com,operating,Travel,2012-06-01,ESP,56,Barcelona,Barcelona,192990,1,2013-10-01,2013-10-01,1,0,15979,15979,
888,Operating Analytics,http://operatinganalytics.com,operating,Health Care|Hospitals|Predictive Analytics|SaaS|Software,2013-02-01,USA,MA,Boston,Cambridge,50000,1,2013-06-01,2013-06-01,2,0,15857,15857,
889,Dolphinite,http://www.dolphinite.com,closed,,1997-01-01,USA,MA,Boston,Ipswich,,1,1999-01-01,1999-01-01,1,0,10592,10592,
890,Audible Magic,http://audiblemagic.com,operating,Software,1999-01-01,USA,CA,SF Bay Area,Los Gatos,1280000,1,2009-08-24,2009-08-24,2,0,14480,14480,
891,Microstim,http://microstim.de,operating,Biotechnology,2007-01-01,DEU,7,DEU - Other,Labbeck,3273650,3,2009-02-05,2013-09-17,8,1685,14280,15965,
892,Thryve,http://www.thryveapp.com/,closed,Software,2012-01-01,,,,,50000,1,2012-04-01,2012-04-01,1,0,15431,15431,
893,Overwolf,http://overwolf.com,operating,FreetoPlay Gaming|Games|Social Games|Social Media,2009-10-01,ISR,5,Tel Aviv,Tel Aviv,5500000,2,2009-10-01,2013-09-16,1,1446,14518,15964,
894,Arclight Media Technology,http://www.arclightmediatech.com,closed,Search,2005-11-01,GBR,H9,London,London,,1,2007-01-01,2007-01-01,1,0,13514,13514,
895,ParkLU,http://www.parklu.com/,closed,,2011-07-11,,,,,,1,2014-10-15,2014-10-15,1,0,16358,16358,
896,Wineta,http://www.wineta.com/,closed,Customer Service|Loyalty Programs|Online Shopping,2012-05-29,FRA,97,Bordeaux,Bordeaux,16781,1,2015-03-02,2015-03-02,1,0,16496,16496,
897,KURE Corp,http://kuresociety.com/,operating,Internet|Leisure|Services,2014-01-01,USA,NC,NC - Other,Mooresville,4700000,1,2015-06-01,2015-06-01,2,0,16587,16587,
898,RODECO ICT Services,http://www.google4restaurants.eu,closed,Hospitality|Online Reservations,2004-08-26,NLD,11,NLD - Other,Boskoop,720480,1,2005-11-01,2005-11-01,1,0,13088,13088,
899,Eveningflavors.com,http://www.eveningflavors.com,operating,E-Commerce|Hotels,2009-02-11,IND,19,Bangalore,Bangalore,500000,1,2015-05-22,2015-05-22,1,0,16577,16577,
900,Embark,http://letsembark.com,acquired,Public Transportation,2011-01-01,USA,CA,SF Bay Area,San Francisco,1000000,2,2012-01-25,2012-11-13,10,293,15364,15657,
901,VoiceUp,,closed,Alumni,,,,,,12500,1,2015-08-01,2015-08-01,1,0,16648,16648,
902,Company.com,http://www.company.com,operating,Lead Generation|Network Security|Social Media|Social Network Media,2010-01-01,USA,GA,Atlanta,Roswell,5665000,2,2009-03-01,2010-07-30,4,516,14304,14820,
903,Big Data Partnership,http://www.bigdatapartnership.com,operating,Big Data|Big Data Analytics|Consulting|Machine Learning|Software,2012-01-01,GBR,H9,London,London,6807327,2,2014-06-05,2015-05-07,2,336,16226,16562,
904,Zoom Media & Marketing - United States,http://www.zoommedia.com,operating,Advertising,1991-01-01,USA,NY,New York City,New York,30000000,1,2009-03-01,2009-03-01,1,0,14304,14304,
905,Mine,http://getmine.com,closed,Mobile,2011-01-01,USA,CA,SF Bay Area,Palo Alto,600000,1,2012-10-01,2012-10-01,1,0,15614,15614,
906,WorkFlowy,http://workflowy.com,operating,Curated Web,,USA,CA,SF Bay Area,San Francisco,,1,2010-08-02,2010-08-02,1,0,14823,14823,
907,AdLemons,http://adlemons.com,operating,Advertising|Social Media Marketing,2009-08-01,ESP,60,Valencia,Valencia,307954,2,2010-01-01,2011-01-01,1,365,14610,14975,
908,Needbox AS,http://www.needbox.com,operating,Advertising|Charity|Curated Web|Sales and Marketing|Services|Social Media,2013-03-27,NOR,12,Oslo,Oslo,100000,1,2013-04-12,2013-04-12,4,0,15807,15807,
909,BenefitPoint,http://www.benefitpoint.com,operating,Financial Services,,,,,,65000000,2,2000-06-12,2003-11-21,12,1257,11120,12377,
910,EventHive,http://eventhive.com,closed,Software,2009-01-01,USA,GA,Atlanta,Atlanta,,1,2009-01-01,2009-01-01,1,0,14245,14245,
911,Xention,http://www.xention.com,operating,Biotechnology,,GBR,C3,GBR - Other,Pampisford,19051289,2,2003-09-10,2010-11-24,5,2632,12305,14937,
912,RSI (Reel Solar Inc),http://www.reelsolar.com,operating,Clean Technology,2009-01-01,USA,CA,SF Bay Area,San Jose,19000000,2,2011-11-30,2013-03-28,4,484,15308,15792,
913,Admitly,http://www.admitly.co/,operating,Education|High Schools|Universities,,,,,,,1,2011-08-15,2011-08-15,1,0,15201,15201,
914,Beyond Software,http://beyondsoftware.com/,operating,Software,2008-01-01,USA,OH,Toledo,Findlay,,2,2014-01-10,2014-09-16,2,249,16080,16329,
915,Fuse Powered Inc.,http://www.fusepowered.com,operating,Advertising Platforms|Mobile|Mobile Advertising|Mobile Games,2009-08-01,USA,CA,SF Bay Area,Palo Alto,13000000,3,2010-07-01,2014-04-01,6,1370,14791,16161,
916,Isocell,http://glisodine.fr,operating,Manufacturing,,FRA,A8,Paris,Paris,4311170,1,2011-04-18,2011-04-18,1,0,15082,15082,
917,Strategic Funding Source,https://www.sfscapital.com,operating,Finance|Financial Services|FinTech|Services,,USA,NY,New York City,New York,110000000,1,2014-09-03,2014-09-03,1,0,16316,16316,
918,Notch,http://www.notchdevice.com,operating,Consumer Electronics|Hardware|Motion Capture|Sensors,,,,,,25000,1,2013-01-01,2013-01-01,1,0,15706,15706,
919,WiSpry,http://www.wispry.com,operating,Semiconductors,2002-01-01,USA,CA,Anaheim,Irvine,70799998,11,2004-01-01,2014-07-11,18,3844,12418,16262,
920,BlueShift Technologies,http://blueshifttech.com,operating,Semiconductors,,USA,MA,Boston,Andover,14000000,2,2006-07-10,2009-02-04,3,940,13339,14279,
921,Portable Medical Technology,http://portablemedicaltechnology.com,operating,Health and Wellness|Health Care|Medical|Medical Devices,2011-01-01,GBR,H9,London,London,,1,2013-01-22,2013-01-22,1,0,15727,15727,
922,GLOSSYBOX,http://www.glossybox.com,acquired,Beauty|Communities|E-Commerce,2011-01-01,DEU,16,Berlin,Berlin,,2,2011-02-15,2011-05-31,5,105,15020,15125,
923,Health Outcomes Worldwide,http://www.healthoutcomesww.com/,operating,Big Data Analytics|Health Care|Health Care Information Technology|Information Technology,,CAN,NS,NS - Other,New Waterford,,1,2011-06-30,2011-06-30,1,0,15155,15155,
924,Bolstr,https://bolstr.com,operating,Finance Technology|Small and Medium Businesses,2011-01-01,USA,IL,Chicago,Chicago,2325000,2,2013-03-13,2015-01-28,7,686,15777,16463,
925,IBUonline,http://www.ibuonline.com,operating,B2B|E-Commerce|Networking|Small and Medium Businesses|Web Hosting,,CHN,30,Shenzhen,Shenzhen,3174603,1,2012-01-01,2012-01-01,1,0,15340,15340,
926,PhyFlex Networks,,acquired,Web Hosting,2000-01-01,USA,MA,Boston,Westford,20190000,2,2004-01-12,2005-10-11,8,638,12429,13067,
927,Plandree,http://www.plandree.com,operating,Career Planning|Collaboration|Social Media|Travel,2012-09-10,USA,RI,Providence,Providence,62000,2,2012-08-20,2012-12-20,1,122,15572,15694,
928,Inhance Media,http://inhance.net,acquired,Technology,2005-01-01,USA,CA,Los Angeles,Van Nuys,,1,2011-12-31,2011-12-31,1,0,15339,15339,
929,Caymas Systems,,closed,Web Hosting,2002-01-01,USA,CA,Napa Valley,Petaluma,38000000,2,2003-10-01,2005-10-13,5,743,12326,13069,
930,CodersClan,http://www.codersclan.net,operating,Open Source|Outsourcing|Software,2013-05-01,USA,CA,SF Bay Area,Palo Alto,840000,3,2013-09-10,2015-05-05,14,602,15958,16560,
931,Scientific Media,http://www.scientific-media.com,operating,Messaging,2007-01-01,USA,NY,New York City,New York,1200000,1,2010-03-08,2010-03-08,2,0,14676,14676,
932,Essensium,http://www.essensium.com,operating,Semiconductors,,BEL,12,Brussels,Leuven,7183800,1,2006-02-07,2006-02-07,1,0,13186,13186,
933,opentabs,http://www.opentabs.de,operating,Apps|Mobile|Restaurants,,DEU,2,Munich,Munich,,1,2014-09-22,2014-09-22,1,0,16335,16335,
934,Igloo Vision,http://www.igloovision.com,operating,Games,,GBR,L6,,,410423,1,2011-06-16,2011-06-16,1,0,15141,15141,
935,Accera,http://www.accerapharma.com,operating,Biotechnology,2001-01-01,USA,CO,Denver,Broomfield,138581610,5,2004-09-16,2013-10-25,4,3326,12677,16003,
936,Vkansee Technology,http://www.vkansee.com/,operating,Mobile|Mobile Devices|Network Security,,CHN,22,Beijing,Beijing,7000000,1,2014-12-23,2014-12-23,2,0,16427,16427,
937,My Table,http://mytable.org/,operating,Services,,USA,CA,Los Angeles,Venice,,1,2015-08-23,2015-08-23,5,0,16670,16670,
938,Pana,https://www.pana.com/,operating,Mobile Commerce|Online Travel|Travel & Tourism,2015-01-01,USA,CO,Denver,Denver,1350000,1,2015-08-25,2015-08-25,5,0,16672,16672,
939,Veracyte,http://www.veracyte.com,ipo,Biotechnology|Health Care|Health Diagnostics,2008-01-01,USA,CA,SF Bay Area,South San Francisco,70950000,3,2010-06-11,2013-06-28,11,1113,14771,15884,
940,Wikibon,http://wikibon.org,operating,Big Data|Cloud Computing|Information Technology|Security|Social Media|Storage|Virtualization,2007-01-01,USA,MA,Boston,Marlborough,500000,1,2007-01-10,2007-01-10,1,0,13523,13523,
941,LitCharts,http://www.litcharts.com,operating,Education,,,,,,,1,2015-06-05,2015-06-05,1,0,16591,16591,
942,Pure life renal,http://plrenal.com,operating,Biotechnology,2013-01-01,USA,FL,Miami,Miami,20500000,2,2013-06-04,2014-05-09,3,339,15860,16199,
943,AromaPass,http://www.aromapass.com,operating,Food Processing,2015-03-22,ITA,20,Roncade,Roncade,,1,2015-07-25,2015-07-25,1,0,16641,16641,
944,Grid Dynamics,http://www.griddynamics.com,operating,E-Commerce Platforms|Enterprise Software|Mobile Commerce,2006-01-01,USA,CA,SF Bay Area,Menlo Park,1500000,1,2015-08-17,2015-08-17,1,0,16664,16664,
945,Roostify,https://www.roostify.com,operating,Technology,,USA,CA,SF Bay Area,San Francisco,500000,1,2015-10-15,2015-10-15,3,0,16723,16723,
946,FactiCo,http://www.factico.com.mx,operating,Gps|Location Based Services|Maps,2014-10-09,MEX,24,MEX - Other,San Luis Potosí,20228,1,2014-09-01,2014-09-01,1,0,16314,16314,
947,Monte Cristo,http://www.montecristogames.com,closed,Games|MMO Games,,,,,,7000000,1,2008-07-14,2008-07-14,3,0,14074,14074,
948,Zameen.com,http://www.zameen.com,operating,Real Estate,2006-01-01,PAK,4,Lahore,Lahore,9000000,3,2012-08-12,2015-09-29,3,1143,15564,16707,
949,OptixConnect,http://optixconnect.com,closed,Social Media,,,,,,250000,1,2011-10-26,2011-10-26,1,0,15273,15273,
950,Varsity News Network,http://varsitynewsnetwork.com,operating,Sports,,USA,MI,Grand Rapids,Grand Rapids,8316271,4,2012-02-23,2015-09-03,18,1288,15393,16681,
951,Silicon Hive,http://www.siliconhive.com,closed,Semiconductors,2003-01-01,NLD,6,Eindhoven,Eindhoven,17000000,2,2007-04-16,2008-10-22,6,555,13619,14174,
952,XiVero,http://www.xivero.com/,operating,Embedded Hardware and Software,,DEU,7,Dusseldrof,Düsseldorf,89948,1,2013-11-01,2013-11-01,1,0,16010,16010,
953,RentLingo,http://www.RentLingo.com,operating,Curated Web|Real Estate|Social Media,2012-06-01,,,,,,1,2013-12-09,2013-12-09,1,0,16048,16048,
954,Entertainment Media Works,http://www.entmediaworks.com,closed,Software,2004-07-01,USA,NY,New York City,New York,4000000,1,2007-02-26,2007-02-26,1,0,13570,13570,
955,Evolve Corporation,,closed,Financial Services|Retail|Software,,GBR,P6,London,Worthing,441277.704885238,1,2005-10-06,2005-10-06,1,0,13062,13062,
956,Leegur Oy,,closed,Internet,,SWE,26,Stockholm,Stockholm,1475482,1,2002-10-30,2002-10-30,2,0,11990,11990,
957,Optica,,operating,Application Platforms|Internet|Software,,,,,,12500,1,2014-12-01,2014-12-01,1,0,16405,16405,
958,Xangati,http://www.xangati.com,operating,Enterprise Software|Internet|Virtualization,2006-01-01,USA,CA,SF Bay Area,San Jose,21700000,2,2007-09-24,2013-11-06,4,2235,13780,16015,
959,Acosta Sales & Marketing,http://www.acosta.com,operating,Advertising,1927-01-01,USA,FL,Jacksonville,Jacksonville,,1,2003-01-27,2003-01-27,1,0,12079,12079,
960,Apsmart,http://www.apsmart.mobi,acquired,Mobile,2009-08-01,GBR,H9,London,London,,1,2009-12-01,2009-12-01,1,0,14579,14579,
961,SimulScribe,http://www.simulscribe.com/index.html,closed,Messaging,2003-03-18,USA,NY,New York City,New York,5700000,3,2004-01-01,2007-12-01,2,1430,12418,13848,
962,Allied Digital Services,http://www.allieddigital.net/in,operating,Consulting,1995-01-01,IND,16,Mumbai,Mumbai,175000,1,2010-09-28,2010-09-28,1,0,14880,14880,
963,Wombat Security Technologies,http://www.wombatsecurity.com,operating,Information Security|Software,2008-01-01,USA,PA,Pittsburgh,Pittsburgh,10845000,5,2011-06-29,2015-10-21,5,1575,15154,16729,
964,babberly,http://babberly.com,operating,Local|Mobile|Social Media|Social Search,2013-07-18,USA,CA,SF Bay Area,Menlo Park,225000,2,2012-09-01,2013-12-05,2,460,15584,16044,
965,Tetra Discovery,http://tetradiscovery.com,operating,Biotechnology,2010-01-01,USA,MI,Grand Rapids,Grand Rapids,2945000,4,2013-07-11,2015-09-03,8,784,15897,16681,
966,Excaliard Pharmaceuticals,http://excaliard.com,operating,Biotechnology,,USA,CA,San Diego,Carlsbad,15500000,1,2007-11-27,2007-11-27,3,0,13844,13844,
967,"Princeton Power System,Inc.",http://www.princetonpower.com,operating,Manufacturing,,USA,NJ,NJ - Other,Lawrenceville,950000,1,2014-01-30,2014-01-30,1,0,16100,16100,
968,MegaPath,http://megapath.com,acquired,Data Security|Information Technology|VoIP,1996-01-01,USA,CA,SF Bay Area,Pleasanton,26298436,3,2004-06-01,2015-04-07,5,3962,12570,16532,
969,Road Hero,http://roadhero.org,closed,Cars|Insurance|Mobile|Reviews and Recommendations,2010-09-01,USA,CA,SF Bay Area,San Francisco,300000,1,2011-04-06,2011-04-06,2,0,15070,15070,
970,Marxent,http://marxentlabs.com,operating,Augmented Reality|Loyalty Programs|Mobile|Retail|Software|Virtualization,2011-06-01,USA,OH,Dayton,Dayton,2700000,5,2011-06-29,2014-05-16,7,1052,15154,16206,
971,3sun,http://3sungroup.com,operating,Clean Technology,2007-01-01,GBR,I9,,,15152514,1,2014-03-03,2014-03-03,1,0,16132,16132,
972,CloudDock,http://clouddock.co,operating,Cloud Data Services|Collaboration|Email|SaaS|Software,2013-01-01,IRL,7,Dublin,Dublin,120107,3,2013-09-01,2014-11-01,2,426,15949,16375,
973,Saint Bonaventure University,http://www.sbu.edu/,operating,,2014-01-01,USA,NY,NY - Other,Saint Bonaventure,594287,1,2014-07-22,2014-07-22,1,0,16273,16273,
974,Seamster.io,http://seamster.io,operating,Information Services|Information Technology|Internet|Software,2014-01-01,USA,NE,Omaha,Lincoln,20000,1,2015-05-01,2015-05-01,2,0,16556,16556,
975,Bonsai AI,http://bonsai.ai,operating,Application Platforms|Artificial Intelligence|Developer Tools|Development Platforms|EdTech|Operating Systems,2014-02-18,USA,CA,SF Bay Area,Berkeley,2520000,3,2014-04-01,2015-04-03,9,367,16161,16528,
976,Kifi,https://www.kifi.com/,operating,Artificial Intelligence|Big Data Analytics|Content Discovery|Knowledge Management|Technology,2012-01-01,USA,CA,SF Bay Area,Mountain View,11200000,2,2013-01-01,2014-05-20,4,504,15706,16210,
977,ClearCare,http://www.clearcareonline.com,operating,Health Care Information Technology|SaaS|Software,2010-01-01,USA,CA,SF Bay Area,San Francisco,15500000,3,2012-10-01,2015-11-17,12,1142,15614,16756,
978,Box,http://www.box.co,ipo,Cloud Computing|File Sharing|Flash Storage|SaaS|Storage|Web Hosting,2005-01-01,USA,CA,SF Bay Area,Los Altos,558950000,11,2005-09-01,2014-07-01,46,3225,13027,16252,
979,Zhiwo,http://www.zhiwo.com,operating,E-Commerce,,CHN,22,Beijing,Beijing,,1,2011-12-01,2011-12-01,1,0,15309,15309,
980,Precursor Energetics,http://www.precursorenergetics.com,operating,Clean Technology,2008-01-01,USA,CA,SF Bay Area,Santa Clara,9500005,4,2010-01-06,2013-04-01,1,1181,14615,15796,
981,Cartnav,http://www.cartnav.com,operating,Groceries|Mobile|Retail Technology|Shopping,2014-01-01,USA,CA,"Orange County, California",Long Beach,10000,1,2014-01-01,2014-01-01,1,0,16071,16071,
982,Buscape,http://www.buscape.com.br,acquired,E-Commerce,1999-06-01,BRA,2,Sao Paulo,São Paulo,6500000,2,1999-11-01,2000-06-13,5,225,10896,11121,
983,GOBA,http://www.goba.mobi,operating,Mobile,2009-10-20,USA,TN,Nashville,Nashville,2275000,5,2010-05-27,2013-09-01,7,1193,14756,15949,
984,WHILL,http://whill.jp,operating,Automotive|Electric Vehicles|Hardware|Hardware + Software|Internet of Things|Mobility,2012-05-01,USA,CA,SF Bay Area,San Carlos,12850000,3,2013-06-25,2014-09-02,15,434,15881,16315,
985,Paixie.net,http://www.paixie.net/,operating,E-Commerce,2013-09-01,CHN,23,Shanghai,Shanghai,30000000,1,2012-03-01,2012-03-01,2,0,15400,15400,
986,Tbit Sistemas,https://www.tbit.com.br//?locale=en,operating,Agriculture|Analytics|Service Providers,2010-01-01,BRA,15,BRA - Other,Lavras,1503657,1,2015-01-02,2015-01-02,1,0,16437,16437,
987,O2Bra,http://www.o2bra.com/,operating,,2014-02-01,,,,,,1,2014-02-01,2014-02-01,2,0,16102,16102,
988,Shijiebang,http://shijiebang.com,operating,Education,2013-01-01,CHN,22,Beijing,Beijing,12000000,3,2013-01-01,2013-10-01,5,273,15706,15979,
989,Qumas,http://www.qumas.com,acquired,Software,,USA,NJ,Newark,Jersey City,10000000,1,2005-05-23,2005-05-23,2,0,12926,12926,
990,Metrikea,http://metrikea.com/,operating,Analytics|B2B|Big Data Analytics|Retail|Software,2014-09-01,ESP,29,Madrid,Madrid,,1,2014-09-12,2014-09-12,1,0,16325,16325,
991,Kallfly Pte Ltd,http://www.kallfly.com,operating,Small and Medium Businesses,2014-03-19,SGP,,Singapore,Singapore,,2,2014-03-28,2014-07-07,1,101,16157,16258,
992,Praekelt Foundation,http://www.praekeltfoundation.org,operating,Mobile,2007-01-01,,,,,825000,1,2010-12-07,2010-12-07,1,0,14950,14950,
993,Anaplan,http://www.anaplan.com,operating,Cloud Computing|Enterprise Software,2006-01-01,USA,CA,SF Bay Area,San Francisco,144400000,3,2012-01-19,2014-05-13,14,845,15358,16203,
994,Zakoopi,http://www.zakoopi.com/,operating,Internet,2014-01-01,IND,7,New Delhi,New Delhi,350000,1,2015-09-28,2015-09-28,1,0,16706,16706,
995,Team Apart,http://teamapart.com,closed,Collaboration|Information Technology|Software,2008-08-01,,,,,,1,2008-06-01,2008-06-01,1,0,14031,14031,
996,Cedip Infrared Systems,,operating,Manufacturing,1989-01-01,FRA,A8,FRA - Other,Croissy-beaubourg,13660000,1,2006-06-01,2006-06-01,1,0,13300,13300,
997,Raise Marketplace,https://www.raise.com/,operating,Curated Web|E-Commerce|Gift Card,2010-02-03,USA,IL,Chicago,Chicago,87200000,5,2011-11-01,2015-01-22,14,1178,15279,16457,
998,Red Rock Biofuels,http://redrockbio.com/,operating,Consumer Goods,,USA,CO,Fort Collins,Fort Collins,,1,2015-03-17,2015-03-17,1,0,16511,16511,