-
Notifications
You must be signed in to change notification settings - Fork 188
/
AppleStore_mac.csv
We can't make this file beautiful and searchable because it's too large.
7198 lines (7198 loc) · 825 KB
/
AppleStore_mac.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","track_name","size_bytes","currency","price","rating_count_tot","rating_count_ver","user_rating","user_rating_ver","ver","cont_rating","prime_genre","sup_devices.num","ipadSc_urls.num","lang.num","vpp_lic"
"1","281656475","PAC-MAN Premium",100788224,"USD",3.99,21292,26,4,4.5,"6.3.5","4+","Games",38,5,10,1
"2","281796108","Evernote - stay organized",158578688,"USD",0,161065,26,4,3.5,"8.2.2","4+","Productivity",37,5,23,1
"3","281940292","WeatherBug - Local Weather, Radar, Maps, Alerts",100524032,"USD",0,188583,2822,3.5,4.5,"5.0.0","4+","Weather",37,5,3,1
"4","282614216","eBay: Best App to Buy, Sell, Save! Online Shopping",128512000,"USD",0,262241,649,4,4.5,"5.10.0","12+","Shopping",37,5,9,1
"5","282935706","Bible",92774400,"USD",0,985920,5320,4.5,5,"7.5.1","4+","Reference",37,5,45,1
"6","283619399","Shanghai Mahjong",10485713,"USD",0.99,8253,5516,4,4,"1.8","4+","Games",47,5,1,1
"7","283646709","PayPal - Send and request money safely",227795968,"USD",0,119487,879,4,4.5,"6.12.0","4+","Finance",37,0,19,1
"8","284035177","Pandora - Music & Radio",130242560,"USD",0,1126879,3594,4,4.5,"8.4.1","12+","Music",37,4,1,1
"9","284666222","PCalc - The Best Calculator",49250304,"USD",9.99,1117,4,4.5,5,"3.6.6","4+","Utilities",37,5,1,1
"10","284736660","Ms. PAC-MAN",70023168,"USD",3.99,7885,40,4,4,"4.0.4","4+","Games",38,0,10,1
"11","284791396","Solitaire by MobilityWare",49618944,"USD",4.99,76720,4017,4.5,4.5,"4.10.1","4+","Games",38,4,11,1
"12","284815117","SCRABBLE Premium",227547136,"USD",7.99,105776,166,3.5,2.5,"5.19.0","4+","Games",37,0,6,1
"13","284815942","Google – Search made just for mobile",179979264,"USD",0,479440,203,3.5,4,"27.0","17+","Utilities",37,4,33,1
"14","284847138","Bank of America - Mobile Banking",160925696,"USD",0,119773,2336,3.5,4.5,"7.3.8","4+","Finance",37,0,2,1
"15","284862767","FreeCell",55153664,"USD",4.99,6340,668,4.5,4.5,"4.0.3","4+","Games",38,5,2,1
"16","284876795","TripAdvisor Hotels Flights Restaurants",207907840,"USD",0,56194,87,4,3.5,"21.1","4+","Travel",37,1,26,1
"17","284882215","Facebook",389879808,"USD",0,2974676,212,3.5,3.5,"95.0","4+","Social Networking",37,1,29,1
"18","284910350","Yelp - Nearby Restaurants, Shopping & Services",167407616,"USD",0,223885,3726,4,4.5,"11.15.0","12+","Travel",37,5,18,1
"20","284993459","Shazam - Discover music, artists, videos & lyrics",147093504,"USD",0,402925,136,4,4.5,"11.0.3","12+","Music",37,3,16,1
"21","285005463","Crash Bandicoot Nitro Kart 3D",10735026,"USD",2.99,31456,4178,4,3.5,"1.0.0","4+","Games",47,0,1,1
"22","285946052","iQuran",70707916,"USD",1.99,2929,966,4.5,4.5,"3.3","4+","Reference",43,0,2,1
"23","285994151",":) Sudoku +",6169600,"USD",2.99,11447,781,5,5,"5.2.6","4+","Games",40,5,1,1
"24","286058814","Yahoo Sports - Teams, Scores, News & Highlights",130583552,"USD",0,137951,131,4,4.5,"6.9","4+","Sports",37,2,6,1
"25","286070473","Mileage Log | Fahrtenbuch",71203840,"USD",5.99,8,0,4.5,0,"9.0.5","4+","Business",37,5,3,1
"27","286799607","Cleartune - Chromatic Tuner",11423008,"USD",3.99,3241,297,4,4,"2.1.3","4+","Music",43,2,10,1
"28","286906691","Lifesum – Inspiring healthy lifestyle app",188017664,"USD",0,5795,12,3.5,4,"8.4.1","4+","Health & Fitness",37,5,11,1
"29","286911400","Hangman.",4765696,"USD",0,42316,248,3,3.5,"2.0.6","9+","Games",38,0,1,1
"31","288113403","iTranslate - Language Translator & Dictionary",287933440,"USD",0,123215,25,3.5,5,"10.5.4","4+","Productivity",37,5,23,1
"32","288120394","TouchOSC",4263936,"USD",4.99,782,7,4,3.5,"1.9.8","4+","Music",43,1,1,1
"33","288419283","RadarScope",172772352,"USD",9.99,3449,23,4,4.5,"3.4.1","4+","Weather",37,5,1,1
"34","288429040","LinkedIn",273844224,"USD",0,71856,62,3.5,4.5,"9.1.32","4+","Social Networking",37,2,23,1
"35","289084315","Period Tracker Deluxe",40216576,"USD",1.99,13350,489,4.5,5,"9.6","12+","Health & Fitness",38,0,15,1
"36","289446241","Election 2016 Map",2386944,"USD",0.99,137,0,3,0,"5.0","4+","Entertainment",37,1,1,1
"37","289523017","Blackjack by MobilityWare",105431040,"USD",0,180087,1101,3.5,4.5,"5.5.3","12+","Games",37,5,5,1
"39","289894882","White Noise",44129280,"USD",0.99,33426,299,4,5,"7.2","4+","Health & Fitness",37,5,3,1
"40","290638154","iHeartRadio – Free Music & Radio Stations",116443136,"USD",0,293228,110,4,3,"8.0.0","12+","Music",37,5,2,1
"41","290807369","Line Rider iRide™",1646592,"USD",1.99,21609,69,3.5,2.5,"2.4","9+","Entertainment",40,0,1,1
"42","290986013","Deliveries: a package tracker",30016512,"USD",4.99,4684,10,4,4,"8.0.3","4+","Utilities",37,4,9,1
"43","291430598","Hurricane Pro",29518848,"USD",2.99,2104,0,4.5,0,"5.2","17+","Weather",37,0,1,1
"47","292421271","Fieldrunners",66872320,"USD",2.99,41633,6,4,3,"1.7.177604","9+","Games",37,0,1,1
"48","292628469","Juxtaposer",45229056,"USD",2.99,3610,7,4.5,5,"3.8.2","4+","Photo & Video",37,5,1,1
"49","292738169","Deezer - Listen to your Favorite Music & Playlists",127470592,"USD",0,4677,12,3,4,"6.19.0","12+","Music",37,5,21,1
"50","293118835","iStellar",44241920,"USD",3.99,30,0,3.5,0,"2.9.0","4+","Navigation",37,0,2,0
"51","293523031","Sonos Controller",107983872,"USD",0,48905,2691,4.5,4.5,"7.2","4+","Music",37,4,12,1
"52","293573778","Avertinoo",8044544,"USD",4.99,32,0,3,0,"3.9.2","4+","Navigation",38,5,7,1
"53","293622097","Google Earth",37214208,"USD",0,446185,1359,3.5,3.5,"7.1.6","4+","Travel",43,5,30,1
"54","293760823","iFart - The Original Fart Sounds App",60320768,"USD",1.99,21825,10,3,4,"4.0.8","9+","Entertainment",37,5,1,1
"55","293778748","PAC-MAN",100849664,"USD",0,508808,99,3,4.5,"6.3.5","4+","Games",38,5,10,1
"57","294056623","FOX Sports Mobile",72748032,"USD",0,57500,103,3,4,"3.5.13","4+","Sports",37,0,1,0
"58","294536447","First Words Animals",32164864,"USD",1.99,2576,4,4,5,"7.0","4+","Games",38,5,1,1
"59","294631159","WeatherPro",69079040,"USD",1.99,1572,34,4,4.5,"4.8.2","4+","Weather",37,0,13,1
"60","294934058","HotSchedules",82037760,"USD",2.99,3292,2,3,5,"4.56.1","4+","Business",37,2,2,1
"61","295430577","Star Walk - Find Stars And Planets in Sky Above",150195200,"USD",4.99,8932,55,4.5,5,"7.2.3","4+","Education",37,0,12,1
"62","295646461","The Weather Channel: Forecast, Radar & Alerts",199734272,"USD",0,495626,5893,3.5,4.5,"8.11","4+","Weather",37,0,33,1
"63","295759189","Big Day - Event Countdown",13156352,"USD",0.99,812,14,3,4,"8.2.0","4+","Lifestyle",38,0,7,1
"64","295775656","12 Steps AA Companion - Alcoholics Anonymous",30367744,"USD",2.99,1583,2,3.5,4.5,"2.5.9.2","12+","Lifestyle",37,5,1,1
"65","296581815","OpenTable - Restaurant Reservations",93420544,"USD",0,113936,150,4.5,5,"10.18.0","4+","Food & Drink",37,1,6,1
"66","297244048","VLC Remote",31505408,"USD",4.99,2027,2,4,5,"9.30","4+","Entertainment",37,5,33,1
"67","297332787","gFlashPro - Flashcards & Tests",25997312,"USD",3.99,768,4,4,4,"7.1","4+","Education",37,3,3,1
"68","297368629","Lose It! – Weight Loss Program and Calorie Counter",182054912,"USD",0,373835,402,4,4.5,"8.0.2","4+","Health & Fitness",37,3,1,1
"69","297430070","Target",138754048,"USD",0,108131,13,3,2,"8.21.0","4+","Shopping",37,0,1,1
"70","297606726","Fish Tycoon",13564835,"USD",0.99,18943,1787,3.5,4.5,"1.1.0","4+","Games",47,0,1,1
"71","297606951","Amazon App: shop, scan, compare, and read reviews",133688320,"USD",0,126312,22,3.5,3,"9.10.0","4+","Shopping",37,5,8,1
"72","297694601","Touchgrind",55205888,"USD",4.99,35735,378,4,4.5,"1.5.1","4+","Games",40,0,0,1
"73","298127110","ProPresenter Remote",46922752,"USD",4.99,410,7,3,2.5,"4.8.1","4+","Utilities",37,5,1,1
"74","298206806","iReal Pro - Music Book & Play Along",63283200,"USD",12.99,1390,143,4.5,5,"7.0.1","4+","Music",37,5,33,1
"75","298596830","NRJ Radio",53426176,"USD",0,38,2,3.5,5,"5.2.6","4+","Music",37,5,4,1
"76","298867247","Chase Mobile℠",39505920,"USD",0,233270,14625,4.5,4.5,"2.610","4+","Finance",37,0,2,1
"77","299029654","大辞林",210088960,"USD",21.99,64,0,4.5,0,"4.1.1","4+","Reference",37,5,2,1
"79","299515267","Allrecipes Dinner Spinner",36399104,"USD",0,109349,1540,3.5,5,"6.3","12+","Food & Drink",37,5,1,1
"80","299853944","新浪新闻-阅读最新时事热门头条资讯视频",115143680,"USD",0,2229,4,3.5,1,"6.2.1","17+","News",37,0,1,1
"81","299949744","MotionX GPS",56481792,"USD",1.99,14970,24,3.5,4.5,"24.2","4+","Navigation",37,0,1,1
"82","300048137","AccuWeather - Weather for Life",181941248,"USD",0,144214,2162,3.5,4,"10.4.1","4+","Weather",37,1,43,1
"83","300238550","Mint: Personal Finance, Budget, Bills & Money",162891776,"USD",0,232940,683,4,4.5,"5.9.0","4+","Finance",37,5,1,1
"84","300255638","ABC News - US & World News + Live Video",98108416,"USD",0,48407,20,3,3.5,"5.16","12+","News",37,0,1,0
"85","300265786","Rowmote: Remote Control for Mac",54088704,"USD",0.99,5531,37,3.5,2.5,"4.3","4+","Utilities",40,3,13,1
"86","300590611","Peekaboo Barn",50155520,"USD",1.99,3393,77,4,4,"5.1.0","4+","Education",43,5,1,1
"87","300704847","Speedtest by Ookla",23936000,"USD",0,65016,274,3.5,5,"3.8.2","4+","Utilities",38,4,17,1
"89","301387274","Pocket God",145293312,"USD",0.99,187529,1071,4,4,"1.48.2","9+","Entertainment",43,5,1,1
"90","301521403","Nike+ Training Club - Workouts & Fitness Plans",140367872,"USD",0,33969,466,3.5,5,"5.4.1","4+","Health & Fitness",37,0,17,1
"91","301724680","Citi Mobile®",281244672,"USD",0,48822,193,3.5,4,"8.5.0","4+","Finance",37,0,1,1
"92","302049354","Phase 10 Pro - Play Your Friends!",66695168,"USD",1.99,59155,101,4.5,2.5,"3.2.0","4+","Games",40,5,1,1
"93","302584613","Kindle – Read eBooks, Magazines & Textbooks",169747456,"USD",0,252076,80,3.5,4.5,"5.11","4+","Book",37,5,9,1
"95","303058767","MASH",41691136,"USD",1.99,4913,1,4,4,"3.3.2","9+","Games",37,3,15,1
"96","303191318","同花顺-炒股、股票",122886144,"USD",0,1744,0,3.5,0,"10.10.46","4+","Finance",37,0,1,1
"97","303337299","Wedding Dash Deluxe",55803904,"USD",0.99,16567,1155,4.5,4.5,"2.29.13","4+","Games",43,4,1,1
"99","303849934","Beer Pong Game",188956672,"USD",0,187315,9,2,4,"17.05.15","17+","Games",37,5,9,1
"100","304731501","Tempo - Metronome with Setlists",22185984,"USD",2.99,4781,1,4.5,5,"3.9.2","4+","Music",37,5,10,1
"101","304770340","Skat",66160640,"USD",3.99,94,4,4.5,4.5,"11.0.10","4+","Games",37,0,1,1
"102","304871603","Color Splash",28135424,"USD",0.99,29554,55,4,5,"3.6.1","4+","Photo & Video",37,0,3,1
"103","304871622","Zombieville USA",27962441,"USD",0.99,32988,2489,4,4,"1.7","12+","Games",47,5,1,1
"104","304878510","Skype for iPhone",133238784,"USD",0,373519,127,3.5,4,"6.35.1","4+","Social Networking",37,0,32,1
"105","305343404","Tumblr",151573504,"USD",0,334293,919,4,4,"8.6","17+","Social Networking",37,5,16,1
"106","305557780","iSwap Faces",27069440,"USD",1.99,2302,3,3.5,5,"5.1","4+","Photo & Video",37,5,1,1
"107","305939712","Match™ - #1 Dating App.",101259264,"USD",0,60659,57,3,2.5,"17.05.01","17+","Social Networking",37,5,10,1
"108","306169895","Tozzle - Toddler's favorite puzzle",168192000,"USD",2.99,2562,10,4,4.5,"5.1","4+","Games",37,5,4,1
"109","306257910","HomeBudget with Sync",17485824,"USD",4.99,3042,6,3.5,4,"3.3.0","4+","Finance",37,5,11,1
"110","306375551","Wind Meter",5234688,"USD",0.99,338,12,2.5,2,"5.0","4+","Weather",43,0,1,1
"111","306468004","Map My Run+ - GPS Running & Workout Tracker",237913088,"USD",2.99,16434,3,4.5,4.5,"17.5.5","4+","Health & Fitness",37,0,9,1
"112","306561234","Map My Ride+ - GPS Cycling & Route Tracker",233513984,"USD",2.99,10046,7,4.5,5,"17.5.5","4+","Health & Fitness",37,0,9,1
"113","306621789","HuffPost - News, Politics & Entertainment",110420992,"USD",0,29107,85,3,4,"11.2","12+","News",37,5,10,1
"114","306628397","Phrase Party!",47774720,"USD",1.99,878,48,4,4.5,"8.7.5","17+","Games",38,5,1,1
"115","306937053","Minesweeper Classic",22259712,"USD",0.99,1140,20,3.5,3.5,"3.6","4+","Games",37,4,1,1
"116","307132353","Sally's Spa",431771648,"USD",2.99,35074,403,4.5,4,"3.3.0","4+","Games",43,0,6,1
"117","307184892","CBS Sports App - Sports Scores, News, Stats, Watch",120357888,"USD",0,59639,11,3,2.5,"10.2.2","17+","Sports",37,4,1,1
"118","307219387","Brain Wave ™ - 32 Advanced Binaural Brainwave Entrainment Programs with iTunes Music and Relaxing Ambience",90828800,"USD",4.99,2913,357,4,5,"7.4","4+","Health & Fitness",43,5,1,1
"119","307354030","iSwap Faces LITE",30796800,"USD",0,39722,0,3,0,"5.1","4+","Photo & Video",37,5,1,1
"120","307386350","DIRECTV",151397376,"USD",0,81006,25,3.5,3,"4.9.705","4+","Entertainment",37,0,1,1
"121","307569751","NYTimes Crossword - Daily Word Puzzle Game",46880768,"USD",0,53465,204,3.5,4,"2.8.1","4+","Games",37,5,1,1
"122","307727765","Doodle Jump",48741376,"USD",0.99,395261,88,4.5,4.5,"3.17.6","4+","Games",37,0,1,1
"123","307741537","LEDit – The LED Banner App",17145856,"USD",1.99,2021,147,4.5,4.5,"3.5.1","4+","Utilities",37,4,12,1
"124","307764057","niconico",25808896,"USD",0,182,0,3,0,"6.52","17+","Entertainment",37,5,3,1
"125","307906541","Fandango Movies - Times + Tickets",81924096,"USD",0,291787,589,4,5,"8.6","4+","Entertainment",37,4,1,1
"126","308111628","iCab Mobile (Web Browser)",19451904,"USD",1.99,2441,4,4,5,"9.9","17+","Utilities",38,4,12,1
"128","308339980","iRagdoll - Ragdoll Physics",118683648,"USD",0.99,1372,25,4,4,"1.8.3","12+","Games",37,2,1,1
"129","308368164","Proloquo2Go - Symbol-based AAC",723764224,"USD",249.99,773,10,4,3.5,"5.0.1","4+","Education",37,5,3,1
"130","308750436","Dictionary.com Dictionary & Thesaurus",111275008,"USD",0,200047,177,4,4,"7.1.3","4+","Reference",37,0,1,1
"132","308834491","20 Minutes.fr - l'actualité en continu",109616128,"USD",0,112,0,3.5,0,"5.0.11","12+","News",37,5,17,1
"133","309025938","The Masters Tournament",120725504,"USD",0,148160,63,4.5,3.5,"9.0.701","4+","Sports",37,5,1,1
"134","309172177","myAT&T",68491264,"USD",0,108507,628,3,3,"5.3","4+","Utilities",37,5,2,1
"135","309187846","SFR TV",122153984,"USD",0,46,0,3,0,"7.3.0","4+","Entertainment",37,5,1,1
"136","309465525","Shutterfly: Prints, Photo Books, Cards Made Easy",122315776,"USD",0,51427,874,4,5,"7.7.0","4+","Photo & Video",37,5,1,1
"137","309527804","StickWars",17010688,"USD",0.99,53821,165,3.5,4,"1.8.9","12+","Games",43,1,1,0
"138","309735670","Indeed Job Search",3691520,"USD",0,38681,563,4,4.5,"4.3","4+","Business",37,3,28,1
"139","310303959","World Cup Table Tennis™",31387648,"USD",0.99,17776,6,4,5,"4.6.1","4+","Games",37,0,11,1
"140","310633997","WhatsApp Messenger",135044096,"USD",0,287589,73088,4.5,4.5,"2.17.22","4+","Social Networking",12,0,35,1
"141","310636441","iStudiez Pro – Homework, Schedule, Grades",55815168,"USD",2.99,7308,15,4,4.5,"1.9.1","4+","Productivity",37,5,30,1
"142","310738695","Zillow Real Estate - Homes for Sale & for Rent",132632576,"USD",0,342969,88478,4.5,4.5,"10.4.5","4+","Lifestyle",37,5,1,1
"144","310951782","2XL Supercross",270729216,"USD",4.99,6093,3,4,5,"1.2.1","4+","Games",37,5,7,1
"146","311466554","Pocket Tanks Deluxe",39827456,"USD",4.99,5452,39,4.5,4.5,"2.3.1","9+","Games",38,5,1,1
"148","311548709","Wells Fargo Mobile",57328640,"USD",0,43064,216,3,2.5,"3.55","4+","Finance",37,0,2,1
"150","311762416","radio.de - Der Radioplayer",40717312,"USD",0,64,9,4.5,5,"4.0.5","4+","Music",37,5,14,1
"151","311785642","AutoScout24 - mobile used & new car market",141136896,"USD",0,220,2,4.5,5,"9.1.10","4+","Productivity",37,5,13,1
"152","311972587","Sky Burger - Build & Match Food Free",146228224,"USD",0,114096,2157,4.5,4,"3.0.3","4+","Games",37,5,3,1
"153","312220102","MindNode – Delightful Mind Mapping",52294656,"USD",9.99,1296,4,4,5,"4.5.3","4+","Productivity",37,4,13,1
"154","312266675","Packing Pro",16332800,"USD",2.99,1293,31,4,5,"12.2","4+","Travel",37,5,11,1
"155","312325565","USAA Mobile",164382720,"USD",0,19946,13,4,2.5,"7.32.3","4+","Finance",37,5,1,1
"156","312343159","The Moron Test",45712384,"USD",0,88613,392,4,4.5,"6.3.1","4+","Entertainment",37,5,1,1
"157","313199385","Sunday Lawn",16086016,"USD",0.99,107727,55,3.5,4.5,"1.41.1","4+","Games",37,3,1,1
"158","314303518","Peggle Classic",223805440,"USD",0.99,21416,974,4.5,4.5,"1.7.2","4+","Games",43,0,5,1
"159","314506629","SmartGo Player",22159360,"USD",2.99,533,27,4,4,"2.5.1","4+","Games",37,3,9,1
"160","314652382","I Am T-Pain 2.0",20542280,"USD",2.99,32650,754,3.5,3.5,"2.0.4","12+","Music",43,1,1,1
"161","314716233","TextNow - Unlimited Text + Calls",130637824,"USD",0,164963,69,3.5,4,"8.5.1","4+","Social Networking",37,5,3,1
"162","314819528","Boating Weather",8900608,"USD",1.99,141,15,3,3,"4.5","4+","Weather",40,0,1,1
"163","314855255","Best Buy",180500480,"USD",0,80424,46,4,4.5,"10.11.0","4+","Shopping",37,5,2,1
"164","314864297","I Dig It",19853312,"USD",0.99,17190,180,4,4.5,"1.12","4+","Games",40,0,1,1
"165","315021242","Unblock Me",42926080,"USD",0.99,7973,127,4,5,"1.5.95","4+","Games",40,5,15,1
"166","316025912","Sonic The Hedgehog",36692992,"USD",2.99,19621,1191,4,4.5,"2.1.2","4+","Games",37,5,1,1
"168","316227296","10 Pin Shuffle Pro Bowling",36647936,"USD",3.99,7315,138,4,4.5,"2.01","4+","Games",37,5,6,1
"169","316391924","Sky News",91697152,"USD",0,118,0,3,0,"4.6","12+","News",37,5,1,1
"171","317469184","ESPN: Get scores, news, alerts & watch live sports",51538944,"USD",0,290996,150,3.5,3.5,"5.7.1","4+","Sports",37,5,2,1
"172","317809458","LiveATC Air Radio",8302592,"USD",3.99,2785,90,4,4,"1.9.0","4+","Travel",37,5,26,1
"173","317904170","The Sims 3",430128128,"USD",6.99,54408,65,3.5,2,"1.4.10","12+","Games",37,5,8,1
"175","318304532","Chess Pro with Coach - Learn,Play & Online Friends",69960704,"USD",9.99,8138,107,4,4.5,"2.89","4+","Games",37,5,13,1
"176","318592730","Guess My Age Math Magic",767126,"USD",0,123190,68841,3,3,"1.1","4+","Education",47,0,1,1
"177","318639200","Crush the Castle",12996628,"USD",0.99,23810,582,3.5,4,"1.5","12+","Games",45,0,1,1
"178","319204550","2016 U.S. Open Golf Championship",139545600,"USD",0,54192,32,4,2,"8.0.263","4+","Sports",37,0,1,1
"179","319284643","The Championships, Wimbledon 2016 - Tennis Grand Slam",130394112,"USD",0,20953,481,4,4,"8.1","4+","Sports",37,5,1,1
"180","319295332","TuneIn Radio Pro - MLB Audiobooks Podcasts Music",101925888,"USD",9.99,71609,99,4.5,4,"11.9","12+","Music",37,4,14,1
"181","319740707","NBC News",52951040,"USD",0,32881,7,3.5,2,"5.11.0","12+","News",37,5,1,1
"182","319881193","Grindr - Gay and same sex guys chat, meet and date",80409600,"USD",0,23201,14,2.5,2,"3.9.1","17+","Social Networking",37,5,5,1
"183","320029256","Whole Foods Market",137312256,"USD",0,17906,4,3,3,"8.3.17","4+","Shopping",37,5,1,1
"184","320279293","NAVIGON Europe",144412672,"USD",74.99,927,3,3.5,2.5,"2.17","4+","Navigation",37,2,21,1
"185","320300350","Virtual Families",27746273,"USD",1.99,18920,3014,3.5,4.5,"1.1.2","9+","Games",47,0,1,1
"186","320596872","Sparkasse+",119648256,"USD",0.99,30,0,3,0,"3.1.3","4+","Finance",37,0,3,1
"187","320599923","Sparkasse - Your mobile branch",119574528,"USD",0,77,1,3,4,"3.1.3","4+","Finance",37,0,3,1
"188","320606217","Sleep Cycle alarm clock",79315968,"USD",0,104539,11,4.5,4.5,"5.4.1","4+","Health & Fitness",37,5,13,1
"189","320636131","FACEinHOLE®",12818432,"USD",0.99,4016,1,4,5,"5.7","12+","Photo & Video",37,5,1,1
"190","320650307","Harvest - Select the Best Produce",18165760,"USD",1.99,299,28,4,4.5,"3.1","4+","Food & Drink",38,0,1,1
"191","321369231","WORMS",253834240,"USD",1.99,5758,9,4,3,"2.6","12+","Games",40,0,1,1
"192","321756558","Pixel Starships™ : 8Bit MMORPG",69083136,"USD",0,5565,140,4.5,4.5,"0.39","9+","Games",37,5,17,1
"193","322423174","Traffic Rush",8573952,"USD",0.99,213092,51,3.5,4.5,"1.45.1","9+","Games",37,3,1,1
"194","322439990","MyRadar NOAA Weather Radar Forecast",127284224,"USD",0,150158,3392,4.5,5,"5.1.4","4+","Weather",37,2,8,1
"196","322523436","Resident Evil 4: PLATINUM",81374398,"USD",4.99,6046,446,4,4,"1.04.10","12+","Games",47,0,1,1
"197","323229106","Waze - GPS Navigation, Maps & Real-time Traffic",94139392,"USD",0,345046,3040,4.5,4.5,"4.24","4+","Navigation",37,5,36,1
"198","323242790","Cartoon Wars",13216994,"USD",0.99,35930,262,3.5,4,"114","12+","Games",43,0,1,1
"199","323438913","Moto X Mayhem",21010210,"USD",0.99,22557,526,4,4,"1.8.7","4+","Games",47,0,1,1
"200","324266640","Fantasy Football Manager - FFM for FPL",35998720,"USD",0.99,292,1,3,5,"9.3","17+","Sports",37,1,1,1
"202","324684580","Spotify Music",132510720,"USD",0,878563,8253,4.5,4.5,"8.4.3","12+","Music",37,5,18,1
"203","324887734","McDo France",37001216,"USD",0,22,0,3.5,0,"4.0.16","4+","Food & Drink",37,0,30,1
"204","325462190","PGA Championship 2016 – Baltusrol Golf Club",64147456,"USD",0,10472,58,3.5,2,"8.1","17+","Sports",37,5,1,0
"206","325658560","BFMTV : l'info en continu",100779008,"USD",0,115,70,4,5,"5.0.3","17+","News",37,4,1,0
"207","325683306","MyRadar Pro NOAA Weather Radar, Forecasts & Storms",123718656,"USD",1.99,13915,205,4.5,5,"5.1.4","4+","Weather",37,2,8,1
"208","325954996","Spider: The Secret of Bryce Manor",126312448,"USD",1.99,6780,68,4,4.5,"1.5","9+","Games",38,0,5,1
"209","325962257","My Measures PRO",79882240,"USD",7.99,1701,35,4,4.5,"6.06","4+","Productivity",37,5,21,1
"210","326082487","Food Additives Checker (E Numbers)",6418432,"USD",1.99,6,0,3.5,0,"4.1.2","4+","Health & Fitness",37,0,8,1
"212","326161564","SFR Mon Compte",74093568,"USD",0,19,0,3,0,"6.4.0","4+","Utilities",37,5,1,1
"213","326574411","Baby Connect (Activity Log)",12937216,"USD",4.99,3483,79,4.5,5,"5.4.3","4+","Medical",37,0,14,1
"214","326876192","Epson iPrint",53388288,"USD",0,2838,26,3,2.5,"6.3.1","4+","Photo & Video",37,5,12,1
"215","326885152","Mad Libs",118498304,"USD",0,117889,725,3,4.5,"3.3.3","4+","Entertainment",38,1,1,1
"217","326979430","BATTLE BEARS: Zombies!",103197675,"USD",0.99,50710,309,3.5,4,"1.6.7","9+","Games",45,0,1,1
"219","327193945","Hurricane Tracker",24574976,"USD",2.99,3960,0,4.5,0,"5.0","4+","Weather",37,0,1,1
"220","327243363","NFL Sunday Ticket",96093184,"USD",0,24258,305,3,2.5,"2.6.042","4+","Entertainment",37,0,1,1
"221","327455869","2016 US Open Tennis Championships",77700096,"USD",0,37522,39,4,3,"8.0.353","4+","Sports",37,4,1,1
"222","327630330","Dropbox",180804608,"USD",0,49578,16,3.5,3,"50.2","4+","Productivity",37,5,20,1
"223","328011357","Wa Kingyo - Goldfish Pond",56397824,"USD",0.99,626,44,4,5,"2.0.3","4+","Entertainment",38,5,2,1
"224","328205875","Monkey Preschool Lunchbox",229272576,"USD",1.99,9286,49,4,3.5,"4.02","4+","Games",38,5,1,1
"225","328415391","Yahoo Fantasy Sports",131000320,"USD",0,190670,19,3.5,2.5,"9.1.0","17+","Sports",37,3,45,1
"226","329127297","Gaia GPS Classic",53097472,"USD",19.99,2429,8,4.5,3.5,"10.9.13","4+","Navigation",37,5,16,1
"227","329174056","iLoan Calc (Loan calculator)",3375104,"USD",3.99,0,0,0,0,"5.1.0","4+","Finance",37,5,3,1
"228","329541503","Geocaching®",108166144,"USD",0,12811,134,3.5,1.5,"5.3","4+","Navigation",37,0,22,1
"229","329670577","Camera+",89187328,"USD",1.99,32338,261,4,4.5,"9.1","4+","Photo & Video",37,0,10,1
"230","329703516","Alter Ego",13647872,"USD",4.99,262,43,4,4,"1.3.0","12+","Games",40,5,1,1
"231","329887910","Parking Mania",123544576,"USD",0.99,9657,47,4.5,4.5,"2.5.0","4+","Games",38,0,12,1
"232","329981776","Sudoku⁺",1608704,"USD",2.99,18332,1007,4.5,5,"3.4","4+","Games",37,5,2,1
"234","330376830","Period Tracker Lite",50169856,"USD",0,53620,2872,4,5,"9.5.1","12+","Health & Fitness",38,0,15,1
"235","330803072","Camera Plus: For Macro Photos & Remote Photography",101181440,"USD",0.99,38533,36,2.5,3.5,"4.5.4","4+","Photo & Video",37,4,11,1
"236","331004675","The perfect Egg timer",15329280,"USD",0.99,40,0,3.5,0,"1.8.9","4+","Food & Drink",37,4,7,1
"237","331177703","Letter Quiz - alphabet tracing for kids",31845376,"USD",1.99,472,0,4,0,"2.4","4+","Games",37,5,1,1
"238","331177714","Starbucks",135032832,"USD",0,303856,7027,4.5,4.5,"4.3.5","4+","Food & Drink",37,0,2,1
"239","331259725","央视影音-海量央视内容高清直播",54648832,"USD",0,2070,0,2.5,0,"6.2.0","4+","Sports",37,0,1,1
"240","331271904","Bloons TD",8432232,"USD",2.99,7941,76,4,3.5,"1.2.1","4+","Games",47,0,1,1
"241","331308914","Weight Watchers",230720512,"USD",0,136833,64,3.5,4.5,"5.9.0","12+","Health & Fitness",37,5,6,1
"242","331786748","CNN: Breaking US & World News, Live Video",80211968,"USD",0,112886,298,3.5,1.5,"5.3","12+","News",37,1,1,1
"243","331804452","Gilt",148201472,"USD",0,26353,3,3.5,2.5,"5.1.3","4+","Shopping",37,5,2,1
"245","332568551","TRUTH or DARE!!! - FREE",20795392,"USD",0,171055,31,3,3.5,"5","12+","Entertainment",38,1,1,1
"246","333180061","Canabalt",27934720,"USD",2.99,4540,140,4,4.5,"2.31","9+","Games",43,5,15,1
"247","333206289","Alipay - Makes Life Easy",208309248,"USD",0,1926,2,3,3,"10.0.15","4+","Lifestyle",38,5,3,1
"248","333246187","Scanner911 Pro",33812480,"USD",3.99,14345,100,4,2.5,"4.0","12+","News",37,0,1,1
"249","333263435","Daily Teachings",20298752,"USD",4.99,1340,288,4.5,5,"1.7.3","4+","Lifestyle",38,0,1,1
"250","333710667","Scanner Pro - PDF document scanner app with OCR",101346304,"USD",3.99,31912,154,4.5,5,"7.1.3","4+","Business",37,5,9,1
"251","333903271","Twitter",210569216,"USD",0,354058,452,3.5,4,"6.79.1","17+","News",37,2,33,1
"252","334235181","Trainline UK: Live Train Times, Tickets & Planner",110198784,"USD",0,248,0,4,0,"22","4+","Travel",37,4,1,1
"253","334256223","CBS News - Watch Free Live Breaking News",78047232,"USD",0,11691,44,3.5,4.5,"3.5.1","12+","News",37,5,1,1
"254","334264405","iOvilus",9946112,"USD",1.99,381,6,3,2,"iOV 2.1.3","12+","Entertainment",38,0,1,1
"255","334503000","The Impossible Quiz!",44652544,"USD",0,18884,451,4,4.5,"1.62","9+","Entertainment",37,0,1,1
"257","334989259","WolframAlpha",30369792,"USD",2.99,7410,82,4,4.5,"1.7.3","9+","Reference",37,5,1,1
"258","335029050","Catan",376171520,"USD",1.99,15175,308,4,4,"4.6.2","4+","Games",38,0,6,1
"259","335047649","ScanBizCards Business Card Reader",96815104,"USD",0.99,3166,34,4,4.5,"6.08","4+","Business",37,5,5,1
"261","335364882","Walgreens – Pharmacy, Photo, Coupons and Shopping",169138176,"USD",0,88885,333,4.5,4,"6.5","12+","Shopping",37,5,1,1
"262","335545504","King of Dragon Pass",364490752,"USD",9.99,882,85,5,5,"2.3.2","12+","Games",43,5,1,1
"263","335709058","Stylebook",44135424,"USD",3.99,1729,599,4,4.5,"7.0","17+","Lifestyle",37,5,3,1
"264","335744614","NBA",112074752,"USD",0,43682,19,3.5,2.5,"2013.4.3","4+","Sports",37,5,1,1
"265","335862325","Blower",98942976,"USD",0.99,861,70,2,2.5,"4.2","4+","Entertainment",40,4,1,1
"266","335875911","My Cycles Period and Ovulation Tracker",77686784,"USD",0,7469,68,3.5,5,"5.10.3","12+","Health & Fitness",37,0,2,1
"267","335989871","Kmart – Download Now, Shop Online & Pick Up Today!",94496768,"USD",0,4186,6,3.5,4.5,"17.0","4+","Shopping",37,0,1,1
"268","336141475","优酷视频",204959744,"USD",0,4885,0,3.5,0,"6.7.0","12+","Entertainment",38,0,2,1
"269","336347946","DOOM Classic",32796672,"USD",4.99,3970,509,4,4,"2.7","17+","Games",40,3,5,1
"270","336353151","SoundCloud - Music & Audio",105009152,"USD",0,135744,594,4,4.5,"5.6.0","4+","Music",37,4,7,1
"271","336435697","imo video calls and chat",22562816,"USD",0,18841,0,4,0,"7.0.84","4+","Social Networking",38,2,29,1
"272","336477530","Plane Finder - Flight Tracker",52632576,"USD",3.99,1438,171,4,4,"9.4.1","4+","Navigation",37,3,10,1
"274","336599882","Runtastic Running, Jogging and Walking Tracker",151388160,"USD",0,10298,7,4.5,3.5,"7.3","4+","Health & Fitness",37,0,15,1
"275","336683524","iFiles",47323136,"USD",0.99,1842,23,3.5,2.5,"1.17.11","4+","Productivity",38,1,1,1
"276","336689375","TeachMe: Kindergarten",59846656,"USD",1.99,2548,5,4,4,"4.2.2","4+","Education",37,5,1,1
"277","336834650","Moorhuhn Deluxe - Crazy Chicken",27807744,"USD",0.99,319,12,3,5,"2.8.0","12+","Games",38,5,5,1
"278","336860594","Victoria’s Secret – The Sexiest Bras & Lingerie",60976128,"USD",0,34507,38,3.5,5,"5.2.1","12+","Shopping",37,0,1,1
"279","337021781","MONOPOLY Game",194386944,"USD",0.99,26482,331,3.5,2.5,"1.4.04","4+","Games",37,0,6,1
"281","337056601","n-tv Nachrichten",49470464,"USD",0,273,0,3,0,"5.25","12+","News",37,5,1,1
"282","337288863","Shazam Encore",147118080,"USD",2.99,8331,24,4,3.5,"11.0.2","12+","Music",37,3,15,1
"283","337402021","Harry Potter: Spells",125411328,"USD",0.99,17023,916,4,4.5,"2.2","4+","Games",40,0,1,1
"284","337462979","First Words Deluxe",63316992,"USD",4.99,1101,8,4,4,"7.0","4+","Games",38,5,1,1
"285","337571576","Clay Hunt",15313920,"USD",0.99,1193,1,4,2,"3.5.3","17+","Games",40,5,1,1
"286","337710261","Dream Team - be your own fantasy football manager",69816320,"USD",0,35,0,2.5,0,"12.8.0","17+","Sports",37,3,1,1
"287","337866370","Jet Car Stunts",32848910,"USD",1.99,4088,436,4,4.5,"1.5.0","4+","Games",47,4,1,1
"288","338057689","Call of Duty: Zombies",52821364,"USD",4.99,63943,31264,4,4,"1.5.0","17+","Games",47,0,1,1
"289","338137227","Walmart: Free 2-Day Shipping,* Easy Store Shopping",146507776,"USD",0,70286,51,3,4,"17.8","4+","Shopping",37,0,1,1
"290","338761996","AirWatch Agent",24747008,"USD",0,1150,0,2.5,0,"5.5","4+","Business",37,5,19,1
"291","338828953","Shop Savvy Barcode Scanner - Price Compare & Deals",89517056,"USD",0,54630,280,2.5,4.5,"12.0","4+","Shopping",37,4,1,1
"292","339440515","Voice Changer Plus",40722432,"USD",0,98777,233,3,4,"5.01","4+","Entertainment",37,2,12,1
"293","339462921","CatPaint",73332736,"USD",0.99,649,11,4,4,"3.5.1","4+","Photo & Video",37,5,1,1
"294","339532909","Redbox",83906560,"USD",0,60236,58,3,4.5,"5.24","12+","Entertainment",37,0,1,1
"295","340368403","クックパッド - No.1料理レシピ検索アプリ",76644352,"USD",0,115,0,3.5,0,"17.5.1.0","4+","Food & Drink",37,5,1,1
"296","340769953","Trenches",37340259,"USD",0.99,26732,1428,4,4.5,"1.9.3","17+","Games",43,0,1,1
"297","340779800","The Christmas List",26137600,"USD",1.99,2722,1,4.5,5,"2.1","4+","Shopping",37,0,1,1
"298","341036067","Macy's",107816960,"USD",0,11013,76,3.5,5,"5.11.0","4+","Shopping",37,0,1,1
"299","341232718","Calorie Counter & Diet Tracker by MyFitnessPal",152700928,"USD",0,507706,181,4.5,4.5,"7.16","4+","Health & Fitness",37,5,19,1
"300","341329033","BlaBlaCar - Trusted Carpooling",112024576,"USD",0,397,0,4.5,0,"4.10.1","4+","Travel",37,0,16,1
"301","341691394","Refills Calendar - Scheduler - Note",35864576,"USD",9.99,196,3,4,5,"4.0.1","4+","Productivity",38,5,2,1
"302","341776037","5-0 Radio Pro Police Scanner (Extra Feeds)",49594368,"USD",3.99,24553,2620,4,4.5,"39.1","9+","News",38,5,26,1
"303","342115564","Hipstamatic",114081792,"USD",2.99,12557,6,3.5,5,"337","4+","Photo & Video",37,5,15,1
"304","342138881","Sing Karaoke Songs Unlimited with StarMaker",91267072,"USD",0,26227,7,4,4.5,"6.0.3","9+","Music",37,4,14,1
"305","342548956","TurboScan™ Pro - document & receipt scanner: scan multiple pages and photos to PDF",8821760,"USD",4.99,28388,7009,5,5,"2.8.2","4+","Business",38,5,9,1
"307","342602105","Positivity with Andrew Johnson",69513216,"USD",2.99,282,1,4,5,"3.38","4+","Health & Fitness",38,4,1,1
"308","342699962","Rat On A Scooter XL",7767040,"USD",0.99,19296,7,4,4,"1.24.1","4+","Games",37,3,1,1
"309","342792525","IMDb Movies & TV - Trailers and Showtimes",88702976,"USD",0,183425,4724,4.5,5,"7.11","12+","Entertainment",37,5,10,1
"310","343200656","Angry Birds",175966208,"USD",0,824451,107,4.5,3,"7.4.0","4+","Games",38,0,10,1
"311","343555245","DB Navigator",84791296,"USD",0,512,6,3.5,5,"17.04.00","4+","Travel",38,0,2,1
"312","343638336","Video Calls with Santa",27997184,"USD",2.99,315,0,3.5,0,"5.1","4+","Lifestyle",37,0,31,1
"313","343889987","Voyages-sncf.com : book train and bus tickets",131463168,"USD",0,268,0,3.5,0,"38.0","4+","Travel",37,5,6,1
"314","344065205","The Font Game",5415000,"USD",1.99,438,295,4.5,4.5,"2.1","4+","Games",45,0,1,1
"316","344176018","ImmobilienScout24: Real Estate Search in Germany",126867456,"USD",0,187,0,3.5,0,"9.5","4+","Navigation",37,5,3,1
"317","344186162","Grand Theft Auto: Chinatown Wars",878883840,"USD",4.99,15142,73,4,4,"4.4","17+","Games",38,5,6,1
"318","344542975","Southwest Airlines",88773632,"USD",0,30552,18,3,2.5,"4.5.1","4+","Travel",37,0,1,1
"319","345445479","The Sims 3 World Adventures",812758016,"USD",2.99,9744,42,3.5,3,"1.2.21","12+","Games",37,4,6,1
"320","345542655","Star Chart",28616704,"USD",0,13482,2517,4.5,4.5,"3.98","4+","Education",38,5,8,1
"321","346184215","TaxCaster – Free tax refund calculator",7111680,"USD",0,17516,125,3.5,5,"7.2","4+","Finance",37,5,1,1
"322","346453382","Glow Hockey 2 FREE",34056767,"USD",0,186653,226,3.5,3.5,"2.2.9","4+","Games",43,0,1,1
"323","346513173","Big Button Box - funny sounds, sound effects buttons, pro fx soundboard, fun games board, scary music, annoying fart noises, jokes, super cool dj effect, cat, dog & animal fx",21450752,"USD",0.99,10031,142,4,5,"4.1","4+","Entertainment",43,0,1,1
"324","346997126","TV SPIELFILM - TV Programm mit Live TV",97879040,"USD",0,81,0,3,0,"5.2","4+","Entertainment",37,5,1,1
"325","347310316","All-in-1 Logic GameBox",22299021,"USD",0.99,9854,823,4,4,"1.19","4+","Games",47,0,1,1
"326","347393479","Roadside America",10231808,"USD",2.99,1093,106,4,4.5,"1.9.0","9+","Travel",38,0,1,1
"327","347400507","Pocket Yoga",132480000,"USD",2.99,4475,95,4.5,4.5,"5.3.2","4+","Health & Fitness",37,5,2,1
"328","347411942","Sonic the Hedgehog 2",47182848,"USD",2.99,9405,1089,4,4.5,"3.1.10","4+","Games",37,5,1,1
"330","347418999","Simply Being - Guided Meditation for Relaxation and Presence",100048896,"USD",1.99,2417,1366,4.5,4.5,"6.0","4+","Health & Fitness",38,2,1,1
"331","347803339","CamCard - Business card scanner & reader",174839808,"USD",0.99,2923,300,4.5,4.5,"7.9.5","4+","Business",37,0,7,1
"332","348530331","This American Life",13725696,"USD",2.99,8657,1468,3.5,4,"3.0.8","9+","Entertainment",38,4,1,1
"333","348543978","Timetracks - Slit-Scan Camera",11369472,"USD",0.99,70,1,2,1,"2.2.0","4+","Photo & Video",37,4,5,1
"335","348684697","franceinfo - l'actualité & les élections en direct",155857920,"USD",0,162,32,4,5,"5.2.0","17+","News",37,5,2,1
"337","349079731","DOUBUTSU URANAI®-Animal Fortune-",38718464,"USD",0.99,5,0,4,0,"2.9.5","4+","Lifestyle",40,0,2,1
"338","349276209","Doodle Army",17879270,"USD",0.99,12354,1428,4,4.5,"3.1.0","12+","Games",47,0,1,1
"339","349442137","Ameba",96635904,"USD",0,269,0,3,0,"8.6.1","12+","Social Networking",37,0,1,1
"340","350480010","eBook: War and Peace",8039424,"USD",3.99,0,0,0,0,"7.1","9+","Book",37,5,1,1
"341","350642635","Plants vs. Zombies",105379840,"USD",0.99,426463,680,5,4,"1.9.13","9+","Games",38,0,5,1
"342","350962117","Weibo",199585792,"USD",0,7265,11,3.5,4,"7.5.2","17+","Social Networking",37,5,2,1
"343","351091731","大众点评-发现品质生活",244516864,"USD",0,844,1,4,1,"9.2.4","17+","Lifestyle",37,5,2,1
"344","351184863","AlloCiné : Cinéma et Séries",123450368,"USD",0,101,1,4,5,"7.1.0","12+","Entertainment",37,5,1,1
"345","351331194","Badoo - Meet New People, Chat, Socialize.",157625344,"USD",0,34428,23,4.5,4,"5.8.0","17+","Social Networking",37,4,30,1
"346","351707231","Flick Kick Field Goal",75612160,"USD",1.99,36946,152,4.5,4,"1.11.0","4+","Games",38,5,3,1
"347","351727428","Venmo",68153344,"USD",0,21090,1325,4.5,5,"7.1.0","4+","Finance",37,4,1,1
"348","351939099","Dungeons & Such Treasures,Collectibles and Dragons",84469760,"USD",2.99,653,8,4.5,4.5,"3.4.2","12+","Games",37,1,31,1
"349","351986992","StarMap 3D+: Night Sky, Astronomy, Star View Guide",100368384,"USD",3.99,1118,29,4.5,5,"3.5.3","4+","Education",37,5,29,1
"350","352000376","Shift Worker",7344128,"USD",1.99,348,33,4,4,"1.5.4","4+","Productivity",40,0,1,0
"351","352041837","Spy Calc - Hide pictures, videos, documents",25097281,"USD",1.99,207,50,3.5,3,"3.0.3","9+","Utilities",40,0,34,1
"352","352199775","Waterlogged - Daily Hydration Tracker",43439104,"USD",0,5000,23,4.5,4.5,"2.5.11","12+","Health & Fitness",37,5,10,1
"353","352247139","MyNetDiary PRO - Calorie Counter and Food Diary",83851264,"USD",3.99,15188,272,4.5,4,"5.30","12+","Health & Fitness",37,0,2,1
"354","352509417","The Washington Post Classic",118980608,"USD",0,18572,307,4.5,4.5,"3.8.2","12+","News",37,3,1,1
"355","352670055","F-Sim Space Shuttle",76394496,"USD",4.99,6403,491,4.5,4.5,"2.10","4+","Games",43,5,1,1
"356","352683833","Groupon - Deals, Coupons & Discount Shopping App",127382528,"USD",0,417779,914,4.5,4.5,"17.7","12+","Shopping",37,4,10,1
"357","353372460","Learn to Speak Spanish Fast With MosaLingua",48819200,"USD",4.99,9,1,5,5,"9.2","12+","Education",38,5,5,1
"358","353573707","Coaster VR, Extreme Endless 3D Stereograph",30977024,"USD",0.99,107,0,2.5,0,"1.1.5","4+","Entertainment",37,5,1,1
"359","353603279","Parents Calling Easter Bunny",8073209,"USD",1.99,72,72,2,2,"1.0","4+","Lifestyle",47,0,1,1
"360","353642901","Sporcle",15676416,"USD",2.99,2044,10,3.5,3,"5.4","9+","Games",37,5,1,1
"361","353665650","Univision Deportes: Liga MX, MLS, Fútbol En Vivo",81876992,"USD",0,16683,21,3.5,2.5,"5.5","4+","Sports",37,5,2,1
"362","354051766","DOOM II RPG",48700821,"USD",0.99,1455,1450,3,3,"1.0","12+","Games",47,0,1,1
"364","354655665","STREET FIGHTER IV",581353472,"USD",4.99,15056,751,4,4,"1.00.12","17+","Games",40,0,3,1
"365","354850853","Dr. Seuss Camera - The Cat in the Hat Edition",9906176,"USD",0.99,249,5,4.5,4.5,"1.5.5","4+","Photo & Video",37,0,1,1
"366","354972939","FINAL FANTASY",114843648,"USD",7.99,6091,75,4,3.5,"1.1.2","9+","Games",38,3,8,1
"367","354974729","FINAL FANTASY II",199450624,"USD",7.99,2754,55,4,2.5,"1.1.1","9+","Games",38,5,6,1
"369","355524910","Worms 2: Armageddon",529755136,"USD",4.99,9870,12,4.5,4.5,"1.25","12+","Games",40,5,1,1
"370","355554941","SoundHound Song Search & Music Player",70516736,"USD",0,82602,13,4,4.5,"7.6","9+","Music",37,5,23,1
"371","355709084","Jourist Weltübersetzer",147066880,"USD",7.99,0,0,0,0,"2.8","4+","Travel",40,5,1,1
"372","355940964","TeachMe: 1st Grade",90241024,"USD",1.99,762,5,4,5,"4.0.2","4+","Education",37,5,1,1
"373","356618664","TeachMe: 3rd Grade",174268416,"USD",1.99,160,2,4,3,"2.0.2","4+","Education",37,5,1,1
"374","356968629","ヤフオク! 利用者数NO.1のオークション、フリマアプリ",187040768,"USD",0,9,0,3,0,"6.14.0","17+","Shopping",37,0,1,1
"375","357218860","Kik",151864320,"USD",0,260965,228,4,3,"11.21.0","12+","Social Networking",37,0,14,0
"376","357404131","Slow Shutter Cam",4466688,"USD",1.99,2305,100,4,5,"4.0","4+","Photo & Video",37,5,4,1
"377","357421934","PeakFinder Earth",35478528,"USD",4.99,137,21,4,5,"3.0.7","4+","Travel",37,3,10,1
"379","357467791","AgingBooth",31869952,"USD",0,11999,233,4,4.5,"3.9.5","4+","Entertainment",37,4,1,1
"380","357577420","iWatermark - Watermark 1 or Batch of Photos. Watermarking with Text, Logo, & Graphics Overlays.",21771264,"USD",1.99,1995,148,4.5,4.5,"6.5","12+","Photo & Video",38,5,14,1
"381","357828853","Tabs & Chords by Ultimate Guitar - learn and play",103049216,"USD",2.99,35045,250,4.5,4.5,"3.1.2","4+","Music",37,0,6,1
"382","358055270","Dude, your car!",40586240,"USD",0.99,343,15,4,4.5,"2.5","4+","Entertainment",38,0,30,1
"383","358207332","Drawing Pad",220397568,"USD",1.99,1824,113,4,4,"2.5.1","4+","Entertainment",24,5,22,1
"385","359891723","ESPN Tournament Challenge",69057536,"USD",0,39642,492,4,4,"5.5.3","4+","Sports",37,5,1,1
"386","359917414","Solitaire",101943296,"USD",0,679055,9673,4.5,4.5,"4.11.2","4+","Games",38,4,11,1
"388","360593530","Notability",122235904,"USD",9.99,17594,143,4,4,"6.5.2","4+","Productivity",37,5,14,1
"390","361231506","Rubik's® Cube",151954432,"USD",1.99,3531,177,4,4.5,"2.5","4+","Games",38,5,1,1
"391","362179828","Super Why! Power to Read",138047488,"USD",3.99,1080,5,3.5,2.5,"4.0","4+","Education",37,5,1,1
"392","362348516","Amex Mobile",105982976,"USD",0,11421,57,4,2.5,"5.21.1","4+","Finance",37,4,1,1
"393","362949845","Fruit Ninja Classic",104590336,"USD",1.99,698516,132,4.5,4,"2.3.9","4+","Games",38,5,13,1
"395","363201632","Animation Creator HD",32051200,"USD",3.99,4497,448,4,4,"1.14.3","12+","Entertainment",24,5,1,1
"396","363282253","Plants vs. Zombies HD",225859584,"USD",0.99,163598,503,5,4,"1.9.12","9+","Games",24,5,5,1
"397","363306776","SCRABBLE Premium for iPad",229992448,"USD",9.99,39678,114,3.5,3.5,"5.19.0","4+","Games",24,5,6,1
"398","363317633","Graphic - illustration and design",32604160,"USD",8.99,1809,52,4.5,3.5,"3.2.5","4+","Productivity",24,5,1,1
"399","363360636","Ship Finder",22948864,"USD",4.99,624,20,3.5,3.5,"9.0.1","4+","Navigation",37,1,1,1
"400","363448251","Photogene ⁴",35422208,"USD",2.99,3761,596,4.5,4.5,"4.3","4+","Photo & Video",40,5,1,1
"401","363451838","Hurricane HD",32083968,"USD",3.99,353,8,4,3.5,"3.0","12+","Weather",24,5,1,1
"402","363486802","Star Walk HD - Night Sky Map",150221824,"USD",4.99,6503,60,4.5,5,"7.2.3","4+","Education",24,5,12,1
"403","363486833","Space War HD",30270464,"USD",0.99,71,3,3,4.5,"5.3","4+","Games",37,2,4,1
"404","363590051","Netflix",125016064,"USD",0,308844,139,3.5,3,"9.21.3","4+","Entertainment",37,5,20,1
"405","363738376","forScore",35717120,"USD",9.99,3909,36,4.5,5,"10.2.5","4+","Music",24,5,14,1
"406","363992049","ComicGlass [ComicReader]",31955968,"USD",2.99,308,0,4.5,0,"9.11","12+","Utilities",40,5,7,1
"407","363998953","iAnnotate PDF",44099584,"USD",9.99,11156,8,4.5,2.5,"3.2.6","4+","Productivity",24,5,1,1
"408","364017607","ArtStudio for iPad - Draw Sketch and Paint",34310144,"USD",4.99,8542,543,4.5,5,"5.98","4+","Photo & Video",26,5,1,1
"409","364159440","Call of Duty: Zombies HD",35602607,"USD",4.99,5853,3860,3.5,4,"1.3.3","17+","Games",26,4,1,1
"410","364165557","Small World 2",234123264,"USD",1.99,1506,198,4,4.5,"2.5.1","9+","Games",26,5,6,1
"411","364183992","Qzone",133874688,"USD",0,1649,1,3.5,5,"7.2.8","4+","Social Networking",37,0,3,1
"412","364191819","ABC – Watch Live TV & Stream Full Episodes",85724160,"USD",0,78890,449,3,3.5,"5.0.14","12+","Entertainment",37,5,1,0
"413","364204209","Fieldrunners for iPad",219693056,"USD",3.99,2147,23,4,5,"1.3.177598","9+","Games",24,5,1,1
"414","364234221","Angry Birds HD",176164864,"USD",0,89110,114,4.5,4,"7.4.0","4+","Games",24,5,10,1
"415","364252504","The Weather Channel App for iPad – best local forecast, radar map, and storm tracking",59101184,"USD",0,208648,25664,4,4.5,"4.5.1","4+","Weather",24,4,1,1
"416","364267763","Do Not Press The Red Button HD",10907191,"USD",1.99,856,38,2.5,3.5,"1.2","12+","Entertainment",26,3,1,1
"417","364500115","Digits, the calculator for humans",4177920,"USD",3.99,7825,828,4.5,4.5,"2.2.1","4+","Productivity",43,5,1,1
"418","364502063","PDF Reader Pro Edition - Annotate,edit & sign PDFs",62978048,"USD",9.99,7033,119,4,4.5,"8.3","4+","Business",37,5,11,1
"422","364733950","National Geographic World Atlas",66138112,"USD",1.99,4255,209,4,2,"4.1.1","4+","Reference",38,5,1,1
"423","364738545","FileBrowser - Access files on remote computers",68073472,"USD",5.99,3230,5,4.5,4,"9.7","4+","Utilities",37,5,7,1
"424","364740856","Dictionary.com Dictionary & Thesaurus for iPad",165748736,"USD",0,54175,10176,4.5,4.5,"4.0","4+","Reference",24,5,9,1
"425","364762290","Animation & Drawing by Do Ink",33857536,"USD",4.99,308,8,4,4.5,"4.5","4+","Education",24,5,1,1
"426","364899325","AirCoaster - Roller Coaster Builder",22763520,"USD",0.99,2602,71,3,4.5,"2.0","9+","Games",37,4,1,1
"427","364901807","Documents 6 - File manager, PDF reader and browser",107259904,"USD",0,29110,324,4.5,4.5,"6.0","17+","Productivity",37,5,9,1
"428","364904019","The World Factbook for iPad",73224192,"USD",1.99,273,8,3.5,4.5,"1.2.3","4+","Reference",26,5,1,1
"429","365152940","Photo Transfer App - Easy backup of photos+videos",45182976,"USD",0,15654,24,4.5,4.5,"6.2.1","4+","Photo & Video",37,5,2,1
"431","365235835","TwitCasting Viewer - Watch Live Video & Radio",16292864,"USD",0,189,0,2.5,0,"4.169","12+","Entertainment",37,1,9,1
"432","365724094","Ski Tracks",24851456,"USD",0.99,829,16,4.5,4.5,"1.6.5","4+","Navigation",24,0,7,1
"433","366195670","The Photographer's Ephemeris",58463232,"USD",8.99,663,5,5,4,"3.14.1","4+","Photo & Video",37,5,1,1
"434","366247306","▻Sudoku",71002112,"USD",0,359832,17119,4.5,5,"5.4","4+","Games",40,5,7,1
"436","366562751","StubHub - Tickets to Sports, Concerts and Theatre",112609280,"USD",0,9011,49,3.5,4,"6.5.2","4+","Entertainment",37,5,6,1
"437","366626332","Runtastic PRO Running, Jogging and Fitness Tracker",149536768,"USD",4.99,17667,14,4.5,4,"7.3","4+","Health & Fitness",37,0,15,1
"438","366869252","OverDrive – Library eBooks and Audiobooks",39844864,"USD",0,65450,2721,4,4.5,"3.6.4","4+","Book",37,5,18,1
"440","367003839","Hotels & Vacation Rentals by Booking.com",105609216,"USD",0,31261,374,4.5,4.5,"14.4","4+","Travel",37,5,40,1
"441","367242040","The Impossible Game",14160896,"USD",0.99,9885,10,4,4,"1.6.1","4+","Games",40,0,1,1
"442","367287593","PrankDial - #1 Prank Call App",112515072,"USD",0,11091,415,3,4.5,"4.1.11","4+","Entertainment",37,0,6,1
"443","367623543","Fox News",64705536,"USD",0,132703,394,4,3,"2.6","4+","News",37,5,1,0
"444","367706767","Live Cams - HD",37161984,"USD",4.99,286,25,2.5,5,"2.0.100","4+","Travel",24,5,1,0
"446","368494609","QR Reader for iPhone",54776832,"USD",0,12683,108,4,4,"5.9.2","12+","Utilities",38,0,29,1
"448","368677368","Uber",283852800,"USD",0,49466,150,3,2,"3.247.2","4+","Travel",37,4,41,1
"450","368948250","WEB.DE Mail",101923840,"USD",0,168,0,4,0,"6.2","4+","Productivity",37,5,2,1
"451","369111608","iBunkoHD",40479744,"USD",6.99,114,0,4,0,"3.4.4","17+","Book",24,5,3,1
"452","369266386","Hurricane Tracker For iPad",10612736,"USD",2.99,2798,357,4.5,4.5,"4.2","4+","Weather",24,5,1,1
"453","369692259","6play, TV en direct et en replay",94592000,"USD",0,62,0,3.5,0,"4.3.7","4+","Entertainment",37,5,1,1
"455","369820957","AudioNote - Notepad and Voice Recorder",33213440,"USD",9.99,1756,53,4,5,"6.3","4+","Business",37,4,5,1
"456","369838631","Breathing Zone: Guided Breathing for Mindfulness",37140480,"USD",3.99,511,57,4.5,4.5,"3.1","4+","Health & Fitness",37,5,1,1
"457","369849199","My Virtual Girlfriend - Deluxe Dating Sim",144180224,"USD",0.99,2609,9,3.5,4.5,"3.62","17+","Games",40,5,1,1
"458","369970819","Fake-A-Location Free ™",7689537,"USD",0,354,215,1.5,1,"1.01","4+","Social Networking",43,0,1,1
"459","370139302","QQ 浏览器-搜新闻、选小说漫画、看视频",119812096,"USD",0,1750,19,3.5,5,"7.4.1","17+","Utilities",38,0,1,1
"460","370144476","Math Ninja HD",25137152,"USD",1.99,1121,209,4.5,4.5,"1.7","9+","Games",43,5,1,1
"462","370406465","Résultats Foot en Direct",65074176,"USD",0,339,7,4.5,4.5,"4.0.1","4+","Sports",38,0,1,1
"464","370697773","Chase Mobile",34950144,"USD",0,34322,3167,4.5,4.5,"3.620","4+","Finance",24,5,1,1
"465","370899391","Captio - Email yourself with 1 tap",19054592,"USD",1.99,162,17,4.5,4.5,"2.8.1","4+","Productivity",38,3,3,1
"466","370901726","My Vodafone",83575808,"USD",0,8,1,3,1,"6.5","4+","Utilities",37,3,1,1
"467","371338715","Math Bingo",14602240,"USD",2.99,4386,444,4.5,4.5,"1.7","4+","Education",43,5,1,1
"469","372283316","▻Sudoku +",61595648,"USD",4.99,5397,476,5,5,"5.4","4+","Games",40,5,7,1
"470","372513032","Tango - Free Video Call, Voice and Chat",134848512,"USD",0,75412,66,4.5,4.5,"4.1.219400","17+","Social Networking",37,5,18,1
"471","372648912","MeetMe - Chat and Meet New People",133956608,"USD",0,97072,143,4,3.5,"12.1.1.0","17+","Social Networking",37,0,18,1
"472","373185673","WebMD for iPad",17613824,"USD",0,9142,22,3.5,4,"3.5","12+","Health & Fitness",26,5,1,1
"473","373203236","GeoBee Challenge HD by National Geographic",35975168,"USD",1.99,1957,958,4.5,4.5,"2.2","4+","Games",40,5,1,1
"474","373236724","OPlayer HD - video player, classic media streaming",127020032,"USD",4.99,2944,40,4,4.5,"3.3","17+","Entertainment",24,5,29,1
"475","373311252","TouchRetouch",27962368,"USD",1.99,588,54,4,4,"4.0.1","4+","Photo & Video",37,0,14,1
"476","373342398","Cat Physics",14824448,"USD",1.99,40552,238,4.5,4.5,"1.26.1","4+","Games",40,3,1,1
"477","373454750","随手记(专业版)-好用的记账理财工具",83899392,"USD",0.99,1267,0,4.5,0,"10.6.3","4+","Finance",38,0,3,1
"478","373493387","AnkiMobile Flashcards",19371008,"USD",24.99,753,12,4,4.5,"2.0.30","4+","Education",37,5,1,1
"479","373515261","WeatherPro for iPad",59475968,"USD",2.99,725,26,4,4.5,"4.4.2","4+","Weather",24,5,13,1
"480","373563219","Real英会話",80203776,"USD",3.99,45,12,4.5,4.5,"5.1","12+","Education",38,5,1,1
"481","373714084","BATTLE BEARS -1",227403527,"USD",0.99,14910,1003,4,4.5,"1.5.7","12+","Games",45,5,1,1
"482","373849969","Crash Bandicoot Nitro Kart 2",75254654,"USD",2.99,3064,1428,3.5,3.5,"1.0.5","9+","Games",47,0,1,1
"483","373903654","WIRED Magazine",23879680,"USD",0,12074,43,2.5,1.5,"4.6.7","17+","News",24,5,1,1
"485","374151636","Popplet",4893696,"USD",4.99,336,2,4,3,"2.3","4+","Productivity",37,5,1,1
"486","374211477","Notes Plus",109620224,"USD",9.99,6257,15,4,4,"5.0","4+","Productivity",37,5,11,1
"488","374308914","Color Splash for iPad",18752512,"USD",1.99,2445,41,4.5,5,"3.6.1","4+","Photo & Video",24,5,1,1
"489","374791544","Robot Unicorn Attack",52117504,"USD",0.99,22150,1141,4,4.5,"3.4","9+","Games",43,5,1,1
"490","375239755","SimSimi",31358976,"USD",0,23530,7,4,2.5,"6.8.9","17+","Social Networking",37,0,25,1
"491","375295479","Carcassonne",359192576,"USD",9.99,10846,91,4.5,4.5,"4.28","4+","Games",38,5,2,1
"492","375380948","Apple Store",70782976,"USD",0,55171,187,3.5,3.5,"4.2","4+","Shopping",37,5,21,1
"493","376183339","TED",84056064,"USD",0,5782,149,3.5,3.5,"3.0.4","12+","Education",37,5,22,1
"494","376197239","Météo-France",124090368,"USD",0,24,2,3.5,5,"5.7.1150","4+","Weather",37,4,3,1
"495","376202925","Ma Banque",137866240,"USD",0,17,0,3.5,0,"11.0.1","4+","Finance",37,5,1,1
"496","376374689","Doodle God™",121715712,"USD",1.99,35759,64,4.5,4,"3.0.19","12+","Games",40,0,13,1
"497","376412660","Carnivores: Dinosaur Hunter Pro",304654336,"USD",2.99,18306,186,4,4.5,"1.7.0","12+","Games",37,5,4,1
"498","376413870","Blackboard Mobile Learn™",51179520,"USD",0,13567,2625,2,1.5,"4.1.2","4+","Education",40,5,14,1
"499","376436174","SEC Football Schedules, Scores & Radio",60380160,"USD",1.99,240,2,3,4.5,"5.2.135","4+","Sports",37,5,1,1
"500","376510438","Hulu: Watch TV Shows & Stream the Latest Movies",99568640,"USD",0,56170,1264,2,2,"4.10.1","12+","Entertainment",37,5,2,1
"501","376561911","かなもじ",61272064,"USD",3.99,19,0,4.5,0,"1.9.3","4+","Education",24,5,2,1
"503","377321278","恵方コンパス.",41207059,"USD",0,0,0,0,0,"2.1.0","4+","Navigation",39,5,1,1
"504","377342622","360 Panorama",7954432,"USD",1.99,10463,193,4.5,3.5,"4.4.3","4+","Photo & Video",38,5,3,1
"507","377677727","Mega Millions & Powerball - lottery games in the US with winning number results, lotto jackpots and prize payouts",7876608,"USD",0,1255,432,4.5,4.5,"3.2","12+","Lifestyle",38,5,1,1
"508","377704407","Cake Doodle",99558400,"USD",0.99,5803,10,4,4,"1.21","4+","Games",37,5,1,1
"509","377831429","The Impossible Quiz! for iPad",16857290,"USD",1.99,227,225,4,4,"1.0","9+","Games",26,5,1,1
"510","377908737","Boating USA",111196160,"USD",9.99,342,2,3.5,4,"10.4.3","4+","Navigation",37,0,5,1
"511","377989827","Diptic",36705280,"USD",2.99,7578,67,4.5,5,"10","4+","Photo & Video",37,5,1,1
"512","378326916","Family Feud™ HD",79312792,"USD",6.99,1156,951,3.5,3.5,"1.0.1","4+","Games",26,5,1,1
"513","378352300","Edmodo",127939584,"USD",0,7197,0,3.5,0,"5.9.2","4+","Education",37,4,4,1
"515","378781805","Auto Palmistry Premium",44349440,"USD",2.99,5,0,3,0,"4.0.3","4+","Entertainment",37,4,3,1
"516","378782714","Drift Mania Championship",1178477568,"USD",0.99,3432,0,3,0,"1.80","4+","Games",38,5,10,1
"517","379256460","「宅建士」過去問題《受験用》",24444928,"USD",3.99,0,0,0,0,"5.1","4+","Education",37,0,1,1
"518","379323382","Osmos for iPad",41772032,"USD",4.99,24306,6,4.5,5,"2.4.1","4+","Games",24,5,9,1
"519","379395415","携程旅行-酒店、机票、火车票预订助手",144488448,"USD",0,312,0,3.5,0,"7.4.1","17+","Travel",37,5,1,1
"520","379693831","Audible – audio books, original series & podcasts",81558528,"USD",0,105274,1774,4.5,4.5,"2.23","4+","Book",37,5,5,1
"521","379869627","Living Earth - Clock & Weather",169009152,"USD",2.99,25475,71,4.5,4,"3.82","4+","Utilities",37,4,11,1
"522","379937581","Sushi Cat",62373888,"USD",0.99,8718,381,4,4.5,"2.1.0","4+","Games",43,5,1,1
"523","379983299","Talking Tom Cat for iPad",75417600,"USD",0,29492,51,3.5,4,"3.3","4+","Entertainment",24,5,13,1
"524","380090605","Let's create! Pottery HD",175157248,"USD",4.99,12787,12,4.5,4.5,"1.71","4+","Entertainment",38,5,1,1
"525","380641055","Files HD Pro - File Manager & Web Browser",28118016,"USD",4.99,2237,41,4,3.5,"6.1.1","17+","Utilities",24,5,2,1
"526","380834987","Army Fitness APFT Calculator",15759360,"USD",0.99,108,74,4,4.5,"2.4","4+","Utilities",40,3,1,1
"527","380908399","Ringtones for iPhone & Ringtone Maker",109270016,"USD",0,25403,1598,4.5,4.5,"8.9.6","12+","Music",37,4,9,1
"528","380932800","Zoopla Property Search -UK Homes for Sale and Rent",59411456,"USD",0,210,4,3.5,4.5,"3.3.4","4+","Lifestyle",37,5,1,1
"529","380974668","Vestiaire Collective - Pre-Owned Luxury Fashion",138755072,"USD",0,169,16,4,4.5,"4.2.7","4+","Shopping",37,5,5,1
"530","381059732","Week Calendar",81845248,"USD",1.99,7447,18,4.5,4.5,"10.2.1","4+","Productivity",37,0,29,1
"531","381342267","Stack the States®",132377600,"USD",2.99,12833,282,4.5,4.5,"2.7","4+","Education",40,5,1,1
"532","381471023","Flashlight Ⓞ",42027008,"USD",0,130450,1010,5,4.5,"2.1.2","4+","Utilities",40,0,22,1
"533","381477230","ゲーム発展国++",191410176,"USD",4.99,6,0,4,0,"2.09","4+","Games",38,5,1,1
"535","381722077","Celebtwin: Celebrity Looks Like Lite",81773568,"USD",0,1111,0,1.5,0,"6.1","4+","Lifestyle",37,4,12,1
"536","382002079","Onefootball - Soccer Scores & Live News",113814528,"USD",0,3194,18,4.5,4.5,"10.12","12+","Sports",37,5,13,1
"537","382013715","SuperCam_Pro",27815936,"USD",1.99,1399,24,2.5,2.5,"4.3","4+","Business",43,0,7,1
"538","382045106","カロリー管理(痩せるアプリ)",44402688,"USD",3.99,10,0,4.5,0,"5.4","17+","Health & Fitness",37,0,1,1
"540","382201985","手机百度 - 百度一下你就得到",226406400,"USD",0,1990,0,4.5,0,"8.6.5","17+","Utilities",38,0,1,1
"541","382497397","Sam's Club: Wholesale Shopping & Bulk Buy Deals",113119232,"USD",0,8149,173,4,4.5,"17.4","4+","Shopping",37,5,1,1
"542","382509315","Splashtop Personal - Remote Desktop",55986176,"USD",4.99,29376,11,4.5,5,"2.7.4.1","4+","Business",24,5,11,1
"543","382596778","eBay Kleinanzeigen - Free. Easy. Local.",63022080,"USD",0,74,3,4.5,5,"7.5.2","4+","Shopping",37,4,1,1
"544","382617920","Viber Messenger – Text & Call",129657856,"USD",0,164249,206,4.5,4.5,"6.9.0","4+","Social Networking",37,5,32,1
"546","382991304","Osmos",33989632,"USD",2.99,14605,23,4.5,5,"2.4.1","4+","Games",37,0,9,1
"547","383298204","shopkick - Shopping Rewards & Discounts",74822656,"USD",0,130823,29363,4.5,5,"5.1.4","4+","Shopping",37,4,2,1
"548","383718755","Decide Now!",3462144,"USD",0.99,486,25,4.5,4,"2.0.1","4+","Entertainment",37,5,9,1
"549","383819300","Ringtone Designer Pro - Create Unlimited Ringtones, Text Tones, Email Alerts, and More!",3462266,"USD",0.99,8946,1776,4.5,4.5,"1.9","4+","Music",43,0,1,1
"551","384282298","The Secret of Grisly Manor",51794944,"USD",0.99,1993,36,4,4,"1.9.4","4+","Games",40,5,7,1
"552","384830320","Find My Family, Friends & iPhone - Life360 Locator",154507264,"USD",0,43877,80,4.5,4.5,"13.7.1","4+","Social Networking",37,0,13,1
"553","385145330","Pocketbooth - the photo booth in your pocket",72586240,"USD",0.99,2377,5,4.5,5,"3.5","4+","Photo & Video",37,5,1,1
"554","385285922","乐视视频-白鹿原,欢乐颂,奔跑吧全网热播",184689664,"USD",0,1590,6,4.5,5,"7.1","17+","Entertainment",38,0,2,1
"555","385533456","The Incident",19534848,"USD",0.99,2070,16,4,4.5,"1.7","4+","Games",37,5,1,1
"556","385724144","ホットペッパービューティー/サロン予約",65892352,"USD",0,9,0,4,0,"4.14.1","4+","Lifestyle",37,0,1,1
"557","385756768","Dictionary.com Dictionary & Thesaurus Premium",108836864,"USD",3.99,11530,81,4.5,4.5,"7.1.3","4+","Reference",37,0,1,1
"558","385919493","Autohome-Find new&Used Cars For Sale",89219072,"USD",0,194,0,4,0,"8.0.6","17+","Lifestyle",37,0,2,1
"559","385957032","OPEN Forum",83138560,"USD",0,200,0,3.5,0,"6.3","4+","Business",37,0,1,1
"560","386098453","Weibo HD",104387584,"USD",0,16772,293,4.5,3,"4.0.0","4+","Social Networking",24,4,3,1
"561","386239683","Reckless Racing HD",77139968,"USD",0.99,9,7,4,4.5,"1.4.3","4+","Games",43,5,5,1
"562","386241770","Bloons Super Monkey",28566528,"USD",0.99,2113,20,3.5,2.5,"1.5.4","4+","Games",40,5,1,1
"563","386505750","Lotto Results - Mega Millions Powerball Lottery",7990272,"USD",0,794,8,4,3.5,"3.5.1","12+","News",37,5,1,1
"565","386592716","IKEA Catalog",122979328,"USD",0,8939,15,4,1.5,"17.10","4+","Lifestyle",37,5,29,1
"566","387109554","QQ安全中心",32918528,"USD",0,308,0,3.5,0,"6.9.8","17+","Utilities",37,0,1,1
"567","387310377","Free IQ Test: Calculate your IQ",4034560,"USD",0,5,1,2,1,"3.0.2","4+","Education",38,0,2,1
"568","387428400","Infinity Blade",624107810,"USD",0.99,326482,177050,5,5,"1.4.1","12+","Games",43,5,13,1
"569","387682726","淘宝 - 随时随地,想淘就淘",309673984,"USD",0,3801,6,4,4,"6.7.2","4+","Shopping",37,1,1,1
"570","387893495","Virtual Regatta Offshore",123541504,"USD",0,209,1,3.5,5,"2.2.1","4+","Games",37,5,1,1
"571","388130466","iSlash",27619328,"USD",0.99,33868,463,4.5,4.5,"1.5.4","4+","Games",43,0,1,1
"573","388336485","Ugly Meter™",30441472,"USD",0.99,13741,58,3.5,2.5,"4.6","9+","Entertainment",43,4,1,1
"574","388389451","Muslim Pro: Ramadan 2017 Prayer Times, Azan, Quran",100551680,"USD",0,18418,706,4.5,5,"9.2.1","4+","Reference",37,5,16,1
"575","388459613","Carbs & Cals - Diet & Diabetes",209295360,"USD",4.99,21,0,1.5,0,"4.0.5","4+","Health & Fitness",37,5,1,1
"576","388462078","2XL Supercross HD",270729216,"USD",4.99,1588,6,3.5,4.5,"1.2.1","4+","Games",37,5,7,1
"577","388491656","Fly Delta",140803072,"USD",0,8094,191,3,2.5,"4.2.2","4+","Travel",37,0,1,1
"578","388497605","Google Authenticator",17235968,"USD",0,1652,202,3,2.5,"3.0.0","4+","Utilities",38,1,32,1
"579","388624839","CamScanner +| PDF Document Scanner and OCR",98450432,"USD",0.99,5482,25,4.5,4.5,"4.4.2","4+","Productivity",37,0,14,1
"580","388633565","Pocket Anatomy - Interactive 3D Human Anatomy and Physiology.",685733888,"USD",13.99,611,186,4.5,4.5,"6.0","12+","Medical",37,5,1,1
"581","388838723","Flashlight for iPhone , iPod and iPad",64041984,"USD",0,26697,3109,4.5,4.5,"4.1.1","4+","Utilities",37,5,1,1
"582","388932995","赶集网-工作生活啥都有!",106115072,"USD",0,317,0,4,0,"7.9.9","17+","Lifestyle",38,0,1,1
"583","389204861","The Sims 3 Ambitions",444821504,"USD",4.99,14202,638,3.5,3.5,"1.1.83","12+","Games",40,5,10,1
"585","389359495","Bookshelf",106445824,"USD",0,2064,2,2.5,4,"3.9.5","4+","Education",37,5,32,1
"586","389481236","QQ同步助手-新机一键换机必备工具",72941568,"USD",0,746,1,4.5,5,"6.7.8","4+","Utilities",40,0,1,1
"587","389543438","Der Feueralarm",30711808,"USD",0.99,0,0,0,0,"1.2","12+","Entertainment",40,5,1,1
"588","389638243","POF - Best Dating App for Conversations",59248640,"USD",0,52642,16,3.5,3.5,"5.90","17+","Social Networking",37,5,31,1
"589","389781154","NFL",131428352,"USD",0,27317,2,2.5,5,"14.1.4","4+","Sports",37,1,1,1
"590","389784247","Vernier Video Physics",40472576,"USD",4.99,76,2,4,1,"3.0.4","4+","Education",37,5,5,1
"591","389801252","Instagram",113954816,"USD",0,2161558,1289,4.5,4,"10.23","12+","Photo & Video",37,0,29,1
"592","390017969","Due — Reminders, Countdown Timers",32130048,"USD",4.99,2554,93,4.5,3.5,"2.4.2","4+","Productivity",37,5,17,1
"593","390109631","UFO on Tape",35359744,"USD",0.99,1058,3,3.5,3.5,"1.5","4+","Games",37,3,1,1
"594","390422167","Catan HD",812010496,"USD",1.99,10382,281,4,3.5,"4.6.2","4+","Games",24,5,6,1
"595","390523040","Polar Plunge ™",3700705,"USD",0.99,1428,1417,3.5,3.5,"1.0.0","4+","Games",47,0,1,1
"597","390577714","Sunday Ticket",92392448,"USD",0,3134,160,2.5,3,"2.6.041","4+","Entertainment",24,4,1,1
"598","391071343","央视影音HD-海量央视内容高清直播",64325632,"USD",0,596,0,2.5,0,"6.1.55","4+","Entertainment",24,5,3,1
"599","391297152","Neuroshima Hex",511094784,"USD",4.99,4378,251,4.5,4.5,"3.0","9+","Games",43,5,1,1
"600","391304000","Maps 3D PRO - GPS for Bike, Hike, Ski & Outdoor",25960448,"USD",4.99,280,12,4,4,"4.1.4","4+","Navigation",37,0,6,1
"601","391432693","ArtRage",58826752,"USD",4.99,1045,2,4,2.5,"2.1.11","4+","Entertainment",24,5,7,1
"602","391767653","Sleep Talk Recorder",25309184,"USD",0,1110,31,4.5,3.5,"5.4.4","17+","Utilities",38,0,31,1
"603","391855805","Spider Solitaire by MobilityWare",39446528,"USD",4.99,11154,1862,4.5,5,"3.2.1","4+","Games",38,5,3,1
"604","391947489","iSleeping by iSommeil SARL",24419328,"USD",0,0,0,0,0,"2.7.1","4+","Medical",38,0,3,1
"605","391965015","中国建设银行",209245184,"USD",0,258,0,2,0,"4.0.3.005","17+","Finance",37,0,1,1
"606","392084834","Lane Splitter",106458112,"USD",0.99,44567,202,4.5,4.5,"5.2.1","4+","Games",38,4,1,1
"607","392186427","Ryder Cup 2016 – Hazeltine National Golf Club",116247552,"USD",0,3818,69,2.5,1.5,"4.1.2","4+","Sports",37,1,1,0
"608","392188745","Noteshelf",117406720,"USD",9.99,7562,9,4.5,4,"11.9.6","4+","Productivity",24,5,7,1
"609","392198579","The Legend of Spookley the Square Pumpkin",36942848,"USD",2.99,120,12,4.5,4.5,"2.6.1","4+","Book",37,4,1,1
"611","392252535","BUBBLE BOBBLE DOUBLE",56954817,"USD",4.99,206,128,3,3.5,"2.0.0","4+","Games",47,5,1,1
"612","392408028","Paprika Recipe Manager",10432512,"USD",4.99,1755,83,4.5,4.5,"2.2.2","17+","Food & Drink",24,5,16,1
"613","392538848","ToonCamera",29494272,"USD",1.99,1037,95,4.5,4.5,"4.0","4+","Photo & Video",37,5,13,1
"614","392788790","Sonic The Hedgehog 4™ Episode I",124710912,"USD",2.99,4755,132,4,3.5,"1.5","9+","Games",38,5,1,1
"615","392790924","Cisco AnyConnect",46872576,"USD",0,825,28,3.5,4,"4.0.05066","4+","Business",40,1,1,1
"616","392796698","GroupMe",66864128,"USD",0,28260,294,4.5,4.5,"5.9.0","4+","Social Networking",37,1,14,1
"617","392899425","招商银行",154910720,"USD",0,306,1,3.5,1,"5.3.0","12+","Finance",37,0,2,1
"618","392915994","Jenga",97562624,"USD",0,32527,4411,4.5,4,"1.7.6","4+","Games",43,5,1,1
"619","392988420","Zappos: shop shoes & clothes, fast free shipping",70325248,"USD",0,103655,39452,5,5,"3.9.0","4+","Shopping",37,4,1,1
"620","393313223","Printer Pro - Print photos, pdf and emails",98820096,"USD",6.99,15981,440,4.5,4.5,"5.4.11","4+","Productivity",37,5,9,1
"621","393328150","Sephora Makeup & Beauty App – Insider Tips & Style",147001344,"USD",0,15593,301,4.5,5,"17.3","4+","Shopping",37,0,1,1
"623","393670998","欧路英语词典 Eudic 增强版",152671232,"USD",2.99,206,2,4,3.5,"8.2.1","17+","Reference",37,5,3,1
"624","393765873","爱奇艺 - 电视剧电影综艺娱乐视频播放器",235160576,"USD",0,786,0,3.5,0,"8.5.0","17+","Entertainment",38,0,2,1
"626","393989284","Mathmateer®",26029056,"USD",1.99,1207,2,4.5,4.5,"2.3","4+","Education",37,5,1,1
"627","394057299","Battleheart",275481600,"USD",2.99,6879,54,4.5,4.5,"1.6","9+","Games",38,5,1,1
"628","394075284","Youku HD",145140736,"USD",0,5683,7,4,4.5,"5.0","12+","Entertainment",24,5,1,1
"629","394342281","Bowitter for iPhone",3174400,"USD",0.99,0,0,0,0,"1.5.0","4+","Social Networking",43,0,2,1
"630","394732447","Need for Speed™ Hot Pursuit",1269152768,"USD",4.99,5059,20,4,3.5,"1.3.10","4+","Games",37,5,8,1
"631","395042892","Instant Heart Rate+: Heart Rate & Pulse Monitor",189514752,"USD",4.99,10158,475,4.5,4.5,"5.72","4+","Health & Fitness",37,0,31,1
"632","395096736","去哪儿旅行-预订机票酒店火车票特价旅游自由行",131723264,"USD",0,291,0,4,0,"4.10.12","17+","Travel",37,5,1,1
"633","395148744","NOAA Hurricane Center",8069120,"USD",1.99,31,15,3,3,"3.5","4+","Weather",43,0,1,1
"634","395545555","CVS Pharmacy",129167360,"USD",0,35981,237,4,4,"3.4.1","12+","Shopping",37,0,1,1
"635","395627741","Age of Zombies™",53805056,"USD",0.99,14493,384,4.5,4.5,"1.2.81","12+","Games",40,5,1,1
"636","395680819","AVPlayer",39790592,"USD",2.99,853,11,4,5,"2.84","17+","Entertainment",40,0,11,1
"637","395893124","土豆视频HD—高清影视综艺视频播放器",68668416,"USD",0,990,4,3,2,"5.5.2","12+","Entertainment",24,4,1,1
"638","395898626","土豆(短视频分享平台)",88601600,"USD",0,676,0,3,0,"6.3.3","12+","Entertainment",37,0,1,1
"639","395979574","Spider Solitaire Free by MobilityWare",91588608,"USD",0,128739,5515,4.5,4.5,"3.4.0","4+","Games",38,5,3,1
"640","396082453","The Calculator",71177216,"USD",2.99,1556,25,4.5,5,"4.7.0","4+","Utilities",38,5,11,1
"641","396085661","Game Dev Story",191455232,"USD",4.99,12331,11,4.5,4.5,"2.09","4+","Games",38,5,5,1
"643","396224808","French Words for Kids - Learn Letter Sounds",35518464,"USD",3.99,22,1,4.5,5,"5.0.1","4+","Education",37,5,2,1
"644","396669943","Death Worm",29303808,"USD",0.99,6527,15,4,4,"1.65","12+","Games",37,5,1,1
"646","396837225","Cartoon Wars 2: Heroes",42482779,"USD",0.99,13049,1180,4.5,4.5,"111","12+","Games",43,0,1,1
"647","396885309","MSNBC",92997632,"USD",0,3692,27,3.5,2,"6.0.5","12+","News",37,5,1,1
"648","397049430","Super Stickman Golf",88879104,"USD",2.99,41446,566,4.5,4.5,"2.0","4+","Games",43,5,1,1
"649","397533889","Black Friday 2017 Ads App - BlackFriday.fm",23296000,"USD",0,8221,0,4.5,0,"3.0.3","4+","Shopping",37,0,1,1
"650","397836467","Hotel Dash Deluxe",50085888,"USD",0.99,36190,221,4.5,4,"1.27.3","4+","Games",43,4,1,1
"651","397951063","Backbreaker 2: Vengeance",83214336,"USD",0.99,14491,304,4.5,4.5,"1.3.6","4+","Games",40,5,1,1
"653","398129933","The Calculator - Free and Easy Calculating!",84945920,"USD",0,99244,1760,4.5,4.5,"4.7.2","4+","Utilities",38,5,11,1
"654","398166286","出会い系アプリ i-Mail(アイメール)",3833856,"USD",0,0,0,0,0,"2.1.2","17+","Social Networking",43,0,1,1
"656","398329664","Angry Birds Seasons HD",710486016,"USD",0,75714,481,4,4.5,"6.6.1","4+","Games",24,5,1,1
"657","398348506","Gravity Guy",22577152,"USD",0.99,35161,1316,4.5,4,"1.4.4","9+","Games",43,0,1,1
"659","398436747","Fooducate - Lose Weight, Eat Healthy,Get Motivated",48590848,"USD",0,11875,73,4.5,4.5,"4.981","4+","Health & Fitness",37,0,1,1
"660","398453262","招商银行信用卡掌上生活",160764928,"USD",0,122,0,2.5,0,"5.5.9","17+","Finance",37,0,1,1
"661","398596699","myChevrolet",85515264,"USD",0,1083,36,2,2.5,"3.6.0","17+","Lifestyle",37,0,4,1
"662","398687544","Puzzle Quest 2",1319796736,"USD",2.99,1575,104,3.5,4,"1.3.4","12+","Games",38,5,1,1
"663","398860966","Mountain Biker",165394432,"USD",1.99,24,7,3.5,4,"1.0.3","4+","Games",37,5,8,1
"665","398954883","Yurekuru Call",56609792,"USD",0,53,0,4,0,"3.4.7","4+","Weather",37,5,2,1
"666","398975927","Stratego® Single Player",195406848,"USD",2.99,739,145,3.5,4,"1.3.9","4+","Games",40,5,1,1
"667","399355755","Text Free: Free Texting + Calling + MMS",136184832,"USD",0,100477,35,4,4.5,"9.25","4+","Lifestyle",37,5,1,1
"668","399363156","腾讯新闻-头条新闻热点资讯掌上阅读软件",114878464,"USD",0,718,4,4,2.5,"5.3.6","12+","News",37,0,1,1
"669","399452287","Merriam-Webster Dictionary",155593728,"USD",0,16849,1125,4.5,4.5,"4.1","4+","Reference",38,1,12,1
"670","399608199","中国银行手机银行",251711488,"USD",0,192,2,1.5,3,"3.0.7","4+","Finance",38,0,1,1
"672","399804936","Learn English quickly with MosaLingua",51665920,"USD",4.99,7,0,5,0,"9.2","12+","Education",38,5,5,1
"673","400213892","Reiner Knizia's Ra",34992128,"USD",3.99,1114,110,4.5,4,"1.5.1","4+","Games",45,5,1,1
"675","400666114","Guitar Pro",34405376,"USD",6.99,1218,11,4,4.5,"1.7.3","4+","Music",38,5,12,1
"678","400882072","Flick Golf!",59663360,"USD",0.99,9948,211,4.5,4,"1.8.1","4+","Games",40,0,1,1
"679","400971700","DirectVR Remote for DirecTV",7497728,"USD",0.99,528,1,4,2,"4.4.1","4+","Utilities",37,0,1,1
"680","401301276","World of Goo",119131136,"USD",4.99,4675,15,4.5,5,"1.6","4+","Games",37,5,1,1
"681","401626263","Airbnb",243776512,"USD",0,22302,0,4,0,"17.22","4+","Travel",37,5,29,1
"682","401643317","UPAD 3",34397184,"USD",5.99,3849,164,4,4.5,"3.29","4+","Productivity",24,5,2,1
"683","401644893","Tagesschau",83928064,"USD",0,233,56,4,5,"2.1.1","12+","News",37,5,1,1
"684","401746066","iExit Interstate Exit Guide",9784320,"USD",0,1798,8,4.5,4.5,"9.2.2","4+","Travel",37,5,1,1
"685","401818935","Genius Scan+ - PDF Scanner",43338752,"USD",7.99,916,39,4.5,4.5,"4.1.6","4+","Business",37,5,10,1
"686","402012828","iSafe Pro",95949824,"USD",0.99,2956,94,4.5,4,"10.11","17+","Utilities",37,0,32,1
"687","402370879","NBA JAM by EA SPORTS™",410202112,"USD",4.99,21648,460,4,3.5,"1.1.35","4+","Games",37,0,8,1
"688","402422247","iHandy Translator Pro",30382080,"USD",2.99,5163,86,4.5,4.5,"1.3.1","4+","Reference",38,0,11,1
"689","402614251","AR Missile - Automatic Target Tracking",17178624,"USD",0.99,49,2,4.5,4.5,"1.11","4+","Entertainment",38,0,2,1
"690","403037266","QuakeFeed Earthquake Map, Alerts, and News",70262784,"USD",0,6081,15,4.5,4.5,"4.1","4+","Weather",37,5,1,1
"691","403090531","Dungeon Raid",11911065,"USD",0.99,4401,2927,5,5,"1.3.4","9+","Games",47,0,1,0
"692","403684733","Badoo Premium - Meet new people. Extra features.",157370368,"USD",2.99,2231,3,4.5,5,"5.8.0","17+","Social Networking",37,4,30,1
"693","403858572","Fruit Ninja®",163801088,"USD",0,327025,82,4.5,4,"2.5.1","4+","Games",38,5,13,1
"694","404086528","LEGO Harry Potter: Years 1-4",475697678,"USD",4.99,10463,5018,4,4,"2.4","9+","Games",43,5,1,1
"695","404095058","Rat On A Skateboard",9458688,"USD",1.99,28672,11,4.5,4.5,"1.22.1","4+","Games",37,3,1,1
"696","404299862","iTrackBites Plus - Smart Weight Loss Tracker & Points Calculator for Diet Nutrition Watchers",67922944,"USD",3.99,4716,718,4.5,4.5,"5.5","12+","Health & Fitness",38,5,1,1
"697","404405151","Pocket God: Journey To Uranus",118435840,"USD",1.99,6278,98,3.5,3.5,"1.05.05","9+","Games",43,5,1,1
"698","404529222","ファッション通販 ZOZOTOWN",43611136,"USD",0,0,0,0,0,"4.8.2","4+","Shopping",37,0,2,1
"699","404553553","Bloons TD 4",23447492,"USD",2.99,8304,1401,4.5,4.5,"3.6.1","4+","Games",47,0,1,1
"700","404593641","Cartoon Network App – Teen Titans Go! And more!",101873664,"USD",0,15984,97,3,3.5,"3.6","9+","Entertainment",37,5,1,1
"701","404990064","SkyView® - Explore the Universe",93429760,"USD",1.99,5079,241,4.5,4.5,"3.5.1","4+","Education",37,5,1,1
"702","405338085","Coach Guitar - Lessons & Easy Tabs For Beginners",132141056,"USD",0,2416,45,4.5,4.5,"4.8.1","4+","Music",37,5,12,1
"703","405548206","Lobi",38540288,"USD",0,36,0,4,0,"9.1.5","17+","Social Networking",37,0,4,1
"704","405622181","MONOPOLY for iPad",979909632,"USD",4.99,8165,110,3.5,3.5,"1.1.93","4+","Games",24,5,8,1
"706","405667771","聚力视频HD-人民的名义,跨界歌王全网热播",90725376,"USD",0,7446,8,4,4.5,"5.0.8","12+","Entertainment",24,4,1,1
"707","405743220","Eden - World Builder",122429440,"USD",0.99,26419,1157,4,4.5,"2.1","9+","Games",43,5,1,1
"708","405891908","Holiday Greetings - 3D Animations, Emoji, Emoticons, Sounds & Videos for Special Occasions",12783616,"USD",0.99,208,13,4,4,"10.33","17+","Entertainment",38,4,1,1
"710","406239138","Puffin Browser Pro",63474688,"USD",3.99,7565,80,3.5,3,"5.2.0","17+","Utilities",37,5,28,1
"712","406541444","8mm Vintage Camera",22227968,"USD",1.99,3040,14,4.5,4,"2.5.1","4+","Photo & Video",37,0,4,1
"713","406719683","GasBuddy",145240064,"USD",0,145549,330,4.5,4.5,"4.4.6.1","17+","Travel",37,4,1,1
"714","406732590","Paprika Recipe Manager for iPhone",10426368,"USD",4.99,835,84,4.5,4.5,"2.2.1","17+","Food & Drink",37,0,16,1
"716","407262212","BillMinder - Bill Reminder and Organizer",4278742,"USD",1.99,4262,668,4.5,4,"3.7.6","4+","Finance",43,0,6,1
"717","407375789","myCardLists Christmas Card Address Label Printing",21371904,"USD",1.99,219,1,4,5,"4.40","4+","Utilities",37,5,1,1
"719","407558537","Capital One Mobile",273259520,"USD",0,56110,57,4.5,4,"5.19.1","4+","Finance",37,5,2,1
"720","407690035","HotelTonight - Great Deals on Last Minute Hotels",79332352,"USD",0,32341,1707,4.5,5,"10.15","12+","Travel",37,5,6,1
"721","407707744","The 7th Guest",655987075,"USD",4.99,1419,216,4,3.5,"7.5","12+","Games",43,5,1,1
"724","407838198","Stack the Countries®",188030976,"USD",2.99,3303,37,4.5,4.5,"2.7","4+","Education",40,5,1,1
"727","407925512","腾讯视频HD-楚乔传,明日之子6月全网首播",123563008,"USD",0,2058,4,4,4,"5.1.5","17+","Entertainment",24,5,3,1
"728","407949800","Secret of Mana",192136192,"USD",7.99,990,50,4,3.5,"3.2.0","9+","Games",37,0,6,1
"729","407976815","AVPlayerHD",39835648,"USD",2.99,1986,14,4,4.5,"2.84","17+","Entertainment",24,5,11,1
"730","408233979","SimplePhysics",8773632,"USD",1.99,8981,66,4.5,4,"2.1.3","9+","Games",43,5,1,1
"731","408854559","Hot Springs Story",183409664,"USD",4.99,554,1,4.5,1,"2.02","4+","Games",38,5,6,1
"732","409128287","The Guardian",92966912,"USD",0,8176,13,5,5,"4.30","12+","News",37,5,1,1
"733","409157308","Annabel Karmel's Baby & Toddler Recipe App",104406016,"USD",4.99,53,5,2,1,"1.29","4+","Food & Drink",37,5,1,1
"734","409299054","SecurityCam for iPhone",10469376,"USD",0.99,6,1,1,1,"1.131","4+","Photo & Video",39,0,2,1
"735","409362880","La Banque Postale",23792640,"USD",0,8,0,3,0,"5.5.0","4+","Finance",37,5,1,1
"736","409395695","My Score Plus Weight Loss, Food & Exercise Tracker",60144640,"USD",0,467,1,4,5,"4.2.1","4+","Health & Fitness",37,0,1,1
"737","409563112","爱奇艺HD -《欢乐颂2》电视剧热播",154600448,"USD",0,2394,0,4,0,"8.5.1","17+","Entertainment",24,5,2,1
"738","409605521","Quit Pro",33914880,"USD",0.99,287,18,4.5,4.5,"3.0","12+","Health & Fitness",37,0,3,1
"741","409838725","Splice - Video Editor + Movie Maker by GoPro",123070464,"USD",0,28189,2723,4.5,5,"3.5.3","4+","Photo & Video",37,5,22,1
"742","409869453","Localscope - Find places and people around you",13852672,"USD",2.99,868,8,4.5,4.5,"4.5","12+","Navigation",37,0,21,1
"743","409890132","Slingo Supreme HD",60013568,"USD",0.99,4094,15,4.5,3.5,"2.1.46","4+","Games",24,5,1,1
"744","410031728","VLC Streamer",82395136,"USD",2.99,3152,41,4.5,4.5,"5.71","4+","Entertainment",37,5,34,1
"745","410089731","Low Carb Diet Tracker PRO by Carb Manager",57810944,"USD",2.99,2950,1671,4.5,4.5,"4.4.3","4+","Health & Fitness",37,5,12,1
"746","410148139","NOAA Weather Radio",14232576,"USD",3.99,3245,53,4,4,"9.4.5","4+","Weather",37,0,1,1
"747","410229362","Mad Skills Motocross",16949248,"USD",0.99,9341,53,4.5,3.5,"3.7.0","12+","Games",43,5,1,1
"748","410315894","Pearson eText",21079040,"USD",0,981,4,2.5,2,"1.11","4+","Education",24,5,8,1
"749","410319945","QWOP for iOS",27227934,"USD",0.99,735,288,4,4.5,"1.07","4+","Games",43,4,1,1
"750","410351918","Sleep Pillow Sounds: white noise, rain, ocean, fan",124150784,"USD",2.99,15116,2692,4.5,5,"7.4","4+","Health & Fitness",37,5,31,1
"751","410395246","Microsoft OneNote",233533440,"USD",0,39638,1213,4.5,4.5,"16.0","4+","Productivity",37,5,33,1
"752","410896080","PlayStation®App",20168704,"USD",0,7256,491,3,2.5,"4.20.9","12+","Entertainment",37,4,19,1
"753","411206394","Scan - QR Code and Barcode Reader",10058752,"USD",1.99,12590,126,4.5,3.5,"2.7","4+","Utilities",38,4,14,1
"754","411430426","Carnivores: Ice Age Pro",198701056,"USD",2.99,13258,62,4.5,4,"1.71","12+","Games",37,5,4,1
"755","411608323","花しらべ 花認識/花検索",813500416,"USD",6.99,0,0,0,0,"3.4.1","4+","Reference",37,5,1,1
"756","411711646","Fighter Verses - memorize bible verses",13778944,"USD",2.99,331,1,4.5,1,"4.0.8","4+","Reference",37,4,3,1
"757","411766326","Schoology",120382464,"USD",0,1777,9,3,4,"3.15.0","4+","Education",37,5,4,1
"758","411843682","iDarkroom",29369344,"USD",0.99,554,1,4.5,4,"2.6","4+","Photo & Video",37,0,31,1
"759","411930498","GolfNow – Book Tee Times, Golf GPS, Scorecard",75874304,"USD",0,7535,99,4,4.5,"2.16.6","4+","Sports",37,5,3,1
"760","412223222","Hudl",233934848,"USD",0,2622,3,3.5,2.5,"5.12.1","4+","Sports",37,3,1,1
"761","412395632","乐视视频HD-白鹿原,欢乐颂,奔跑吧全网热播",136668160,"USD",0,2340,1,4,1,"6.1.4","17+","Entertainment",24,5,2,1
"762","412403556","TEDiSUB - Enjoy TED Talks with Subtitles",44099584,"USD",0,823,136,4.5,5,"5.7.2","12+","Entertainment",37,1,3,1
"763","412792865","SkyDroid - Golf GPS",25606144,"USD",1.99,261,1,4,5,"1.10.1","4+","Sports",37,0,1,1
"765","413246702","Verbrechen - echte Polizeifälle aus Deiner Umgebung",8161280,"USD",1.99,0,0,0,0,"3.0.1","4+","News",38,5,1,1
"766","413423472","Legendary Wars",247508992,"USD",0.99,29739,2253,4.5,5,"2.3","9+","Games",43,5,1,1
"767","413487517","ナビタイム ドライブサポーター - NAVITIMEのカーナビアプリ",125665280,"USD",0,0,0,0,0,"4.28.0","4+","Navigation",37,5,1,1
"768","413511993","Weather Radio by WDT",22879232,"USD",4.99,1359,26,3,3,"3.0.5","4+","Weather",38,5,1,1
"769","413515229","Home Design 3D - 3D Printing Edition",210538496,"USD",6.99,6001,72,4.5,4.5,"4.1.1","4+","Productivity",37,5,16,1
"770","413618155","マクドナルド - McDonald's Japan",61166592,"USD",0,10,0,3,0,"4.0.12","4+","Food & Drink",38,0,1,1
"771","413936865","SkyView® Free - Explore the Universe",87593984,"USD",0,4188,602,4.5,4.5,"3.5.1","4+","Education",37,5,1,1
"772","413993350","搜房网房天下-新房二手房租房交易平台",156446720,"USD",0,89,0,4,0,"8.4.3","4+","Lifestyle",37,3,3,1
"773","414002091","WordFoto",5800960,"USD",1.99,513,10,4,3.5,"1.1.1","4+","Photo & Video",38,5,1,1
"774","414113282","IRS2Go",10110976,"USD",0,1329,47,3,3,"5.3.1","17+","Finance",37,4,2,1
"775","414245413","手机京东-首次购买可领取188元优惠券",242618368,"USD",0,361,4,3.5,1.5,"6.1.0","17+","Shopping",38,0,2,1
"776","414430589","搜狐视频HD-欢乐颂2 全网首播",79696896,"USD",0,3768,5,4,3,"6.6","17+","Entertainment",24,5,1,1
"777","414478124","WeChat",182624256,"USD",0,34584,100,4.5,4,"6.5.8","12+","Social Networking",38,4,21,1
"778","414603431","QQ音乐-来这里“发现・音乐”",154551296,"USD",0,745,7,3.5,5,"7.5","4+","Music",37,0,3,1
"779","414706506","Google Translate",65281024,"USD",0,26786,27,3.5,4.5,"5.10.0","4+","Reference",37,5,59,1
"780","414834813","Pocket Casts",48323584,"USD",3.99,1911,39,4,4.5,"6.7.1","9+","News",37,5,1,1
"781","414835676","The Lost City",106427392,"USD",1.99,1393,33,4.5,4.5,"1.09","4+","Games",40,5,16,1
"782","415069562","Tasty Planet",22515712,"USD",2.99,430,35,4.5,4.5,"1.6","9+","Games",43,0,1,1
"783","415138546","Feed the Head",18358272,"USD",1.99,193,40,4.5,4,"2.1","4+","Games",38,5,1,1
"786","415468221","ContactsBook -AddressBook Organizer",7100416,"USD",0.99,7,1,4.5,4,"1.15.1","4+","Utilities",37,0,2,1
"787","415606289","安居客-二手房、新房、租房的找房助手",107184128,"USD",0,84,0,4.5,0,"10.7","4+","Lifestyle",37,5,2,1
"788","415842508","汽车之家-提供新车,二手车报价及资讯",54815744,"USD",0,116,3,4,5,"3.8.5","17+","Lifestyle",24,5,1,1
"789","415850124","PhotoSync – transfer and backup photos & videos",65495040,"USD",2.99,4352,33,4.5,5,"3.2","4+","Photo & Video",37,5,8,1
"791","416023011","My Verizon",150791168,"USD",0,126948,107245,4.5,4.5,"5.10.0","4+","Utilities",37,3,2,1
"792","416048305","Meitu",142101504,"USD",0,6478,21,5,5,"6.7.0","4+","Photo & Video",37,0,5,1
"793","416345444","Talking Ben the Dog for iPad",78565376,"USD",0,31116,77,4,4.5,"3.4.1","4+","Entertainment",24,5,13,1
"794","416457422","中国联通手机营业厅客户端(官方版)",78774272,"USD",0,248,1,3,1,"5.3","4+","Utilities",38,0,2,1
"796","416981420","Bodyweight Training: You Are Your Own Gym",425657344,"USD",4.99,3326,289,5,5,"4.5.3","9+","Health & Fitness",38,5,5,1
"797","417200582","唯品会-欢乐颂2独家电商 同款热卖",160313344,"USD",0,100,0,4.5,0,"6.1.2","12+","Shopping",38,0,1,1
"798","417352269","GMX Mail",100336640,"USD",0,102,1,4.5,5,"6.2","4+","Productivity",37,5,2,1
"799","417373312","Talking Carl",64342016,"USD",0.99,3662,37,4.5,4,"9.0","4+","Entertainment",37,5,8,1
"800","417817520","Tiny Wings",30252032,"USD",0.99,219418,328,4.5,4.5,"2.2","4+","Games",37,0,6,1
"801","417906074","NOAA Weather Alerts - Severe Weather Push Notifications & Warnings",10514432,"USD",3.99,2293,399,4.5,4,"4.2","4+","Weather",40,0,1,1
"802","418075935","Bleacher Report: Sports news, scores, & highlights",85283840,"USD",0,16979,183,4.5,4,"5.1","12+","Sports",37,0,8,1
"803","418987775","TuneIn Radio - MLB NBA Audiobooks Podcasts Music",101735424,"USD",0,110420,370,4.5,4.5,"11.9","12+","Music",37,4,14,1
"804","419135449","iTheme - Themes for iPhone and iPad",52618240,"USD",1.99,4719,61,4,4.5,"5.1","4+","Lifestyle",37,5,23,1
"805","419261235","Bitauto Autoprice",79730688,"USD",0,157,0,5,0,"7.6","17+","Utilities",38,0,3,1
"807","419411014","Math Fact Master: Addition, Subtraction, Multiplication, and Division",8029184,"USD",0.99,1537,159,4.5,4,"5.0","4+","Education",37,5,1,1
"808","419724490","Lieferando.de",31544320,"USD",0,29,1,3.5,5,"3.6.9","4+","Food & Drink",38,0,2,1
"809","419805549","万年历-值得信赖的日历黄历查询工具",112928768,"USD",0,2270,4,4.5,5,"4.5.6","12+","Utilities",38,4,3,1
"810","420009108","Temple Run",65921024,"USD",0,1724546,3842,4.5,4,"1.6.2","9+","Games",40,5,1,1
"811","420635506","Angry Birds Rio",138319872,"USD",0,170843,123,4.5,4,"2.6.6","4+","Games",40,0,1,1
"812","420636551","Angry Birds Rio HD",226899968,"USD",0,70122,251,4.5,4,"2.6.6","4+","Games",24,5,1,1
"813","420859056","My Baby's Beat - Prenatal Listener",70041600,"USD",4.99,1887,75,3,3.5,"3.08","4+","Lifestyle",37,4,4,1
"814","421167112","My Horse",301896704,"USD",0,293857,249,4.5,4,"1.30.0","4+","Games",40,5,8,1
"815","421168738","iStatVball 2 iPad Edition",15154176,"USD",19.99,193,0,4.5,0,"2.18.2","4+","Sports",24,4,1,1
"816","421254504","Magic Piano by Smule",55030784,"USD",0,131695,1102,4.5,4,"8.3.1","4+","Music",37,5,12,1
"817","421547368","DIRECTV App for iPad",209462272,"USD",0,47506,30,3.5,4,"4.9.705","4+","Entertainment",24,5,1,1
"819","421894356","PodCruncher podcast app - Player and manager for podcasts",6615040,"USD",2.99,2261,689,4.5,4,"3.2","4+","News",38,0,1,1
"820","421988577","Shell Shock 1.5",46864078,"USD",0.99,26,26,3,3,"1.5","4+","Games",26,5,1,1
"821","421998342","Talking Tom Cat 2 for iPad",73111552,"USD",0,56399,98,4,4,"5.2.2","4+","Entertainment",24,5,13,1
"822","422366403","MTV",113787904,"USD",0,5987,97,2.5,2,"4.0.0","12+","Entertainment",37,5,1,1
"823","422667065","Tiny Tower - Free City Building",124720128,"USD",0,414803,4536,4.5,4.5,"3.3.12","12+","Games",38,4,1,1
"824","422689480","Gmail - email by Google: secure, fast & organized",236067840,"USD",0,135962,677,4,4.5,"5.0.170507","4+","Productivity",37,5,56,1
"825","422845617","OneCam",4324352,"USD",1.99,0,0,0,0,"5.7.0","4+","Photo & Video",37,0,2,1
"826","423084029","美团 - 吃喝玩乐全都有",224955392,"USD",0,549,2,4.5,5,"8.1.0","4+","Lifestyle",37,5,2,1
"828","423198259","Chess Pro - with coach",43033600,"USD",9.99,10619,893,5,5,"2017.01","4+","Games",37,5,3,1
"829","423246594","NCAA March Madness Live - Men's College Basketball",113078272,"USD",0,13572,55,3,2.5,"7.0.4","4+","Sports",37,5,1,1
"830","423443665","Catholic New American Bible Revised Edition",60426240,"USD",2.99,149,0,3.5,0,"7.5","4+","Reference",37,5,1,1
"831","423492040","Planimeter - Measure Land Area and Distance on a Map",14495744,"USD",7.99,249,83,4.5,4,"3.5","4+","Productivity",38,5,6,1
"832","423514795","中国工商银行",86083584,"USD",0,152,0,2.5,0,"3.0.0.7.1","12+","Finance",38,0,1,1
"833","423855879","Bumpy Road",30275615,"USD",2.99,1073,186,4,4,"2.2","4+","Games",43,5,6,1
"835","424123969","Dude Perfect",140165120,"USD",0.99,9763,1556,4.5,4.5,"1.1.5","4+","Games",43,0,1,1
"836","424216726","Countdown‼ (Event Reminders and Timer)",81287168,"USD",0,60490,1102,4,4,"4.2.5","4+","Lifestyle",37,1,22,1
"837","424229589","Dude Perfect HD",139853824,"USD",1.99,2552,1041,4.5,4.5,"1.1.5","4+","Games",26,5,1,1
"838","424591347","FINAL FANTASY III",290695168,"USD",14.99,1378,17,4.5,3.5,"1.7.5","9+","Games",40,0,8,1
"839","424598114","苏宁易购-新人专享大礼包",185606144,"USD",0,38,0,3,0,"5.2.5","17+","Shopping",38,0,1,1
"840","424881832","SPIEGEL ONLINE - Nachrichten",31635456,"USD",0,299,29,4.5,5,"3.1.5","12+","News",37,5,2,1
"841","424912055","Superbrothers: Sword & Sworcery EP",212580352,"USD",3.99,5362,68,4.5,4,"1.16","12+","Games",37,3,2,1
"842","425073498","Procreate – Sketch, paint, create.",132968448,"USD",5.99,6109,356,4.5,4.5,"3.2.1","4+","Entertainment",24,5,13,1
"843","425349261","网易新闻 - 精选好内容,算出你的兴趣",133134336,"USD",0,4263,6,4.5,1,"23.2","17+","News",37,4,2,1
"845","425996445","Tiny Planet Photos and Video",84909056,"USD",0.99,714,8,4,4,"6.3.0","4+","Photo & Video",37,5,7,1
"846","426072035","Touchgrind BMX",194308096,"USD",4.99,3170,4,4,3,"1.6.1","4+","Games",37,5,9,1
"847","426097375","QQ浏览器HD-极速搜索浏览器",82982912,"USD",0,936,4,4,4,"5.8.2","17+","Utilities",24,5,1,1
"848","426170776","QR Reader for iPad",55071744,"USD",0,1341,63,4,4,"4.0","9+","Utilities",24,5,29,1
"849","426282304","NBA JAM by EA SPORTS™ for iPad",415420416,"USD",4.99,4934,164,4,4,"1.1.36","4+","Games",24,5,8,1
"850","426382105","Toca Hair Salon",51366912,"USD",2.99,9649,29,4,3.5,"1.2.7","4+","Education",40,5,1,1
"851","426414466","Showroomprive - Private Fashion Sales",31230976,"USD",0,11,0,4,0,"8.4","12+","Shopping",37,5,8,1
"852","426415634","Bloons TD 4 HD",164235264,"USD",2.99,2493,13,4,4,"3.0.4","4+","Games",24,5,1,1
"854","426747278","Elmo Loves ABCs for iPad",742145024,"USD",4.99,1888,26,3.5,3.5,"3.5.4","4+","Games",24,5,1,1
"855","427419772","Forbidden Island",149715968,"USD",4.99,923,48,4.5,4,"2.10","9+","Games",24,5,12,1
"856","427457043","1号店-全球超市 轻松到家",80944128,"USD",0,65,1,3.5,1,"5.0.0","17+","Shopping",37,5,1,1
"857","427555239","易到 - 低价专车,高品质出行",74724352,"USD",0,115,1,2,1,"8.0.1","4+","Travel",37,0,2,1
"858","427916203","Expedia Hotels, Flights & Vacation Package Deals",125872128,"USD",0,10278,112,3.5,4.5,"17.21","4+","Travel",37,5,19,1
"859","427941017","YY- 小全民手机直播交友软件",165367808,"USD",0,624,4,4,5,"6.3.8","17+","Social Networking",37,0,2,1
"860","428845974","ooVoo – Free Video Call, Text and Voice",113510400,"USD",0,177501,1014,4.5,4.5,"3.1.6","4+","Social Networking",37,5,21,1
"861","428970841","Virtual Villagers 4: The Tree of Life",36686604,"USD",0.99,500,479,4,4,"1.0.1","9+","Games",47,0,1,1
"862","429009175","WatchESPN",33714176,"USD",0,159735,2556,4,4.5,"1.9.9","4+","Sports",37,2,1,1
"863","429047995","Pinterest",74778624,"USD",0,1061624,1814,4.5,4,"6.26","12+","Social Networking",37,5,27,1
"864","429610587","iFunny :)",66599936,"USD",0,98344,877,3.5,4.5,"4.6.8","17+","Entertainment",37,2,2,1
"866","429775439","HBO GO",41109504,"USD",0,26278,9,3,3,"10.1.0","17+","Entertainment",37,5,1,1
"867","429851711","Flashlight !",14336000,"USD",0,35769,21,4.5,2,"2.6","4+","Utilities",37,1,1,1
"868","429870273","DEATHSMILES",519446528,"USD",9.99,540,48,4.5,5,"1.0.19","12+","Games",43,0,2,1
"869","429885089","QQ音乐HD",139457536,"USD",0,224,4,3.5,5,"5.3.1","4+","Music",24,5,3,1
"870","430152294","Talking Pierre the Parrot for iPad",60313600,"USD",0,11665,364,4,4.5,"3.3.1","4+","Entertainment",24,5,13,1
"871","430200224","Photon Flash Player for iPad - Flash Video & Games plus Private Web Browser",35695616,"USD",4.99,20951,935,4,4,"6.2","17+","Utilities",26,5,10,1
"872","430229059","Rota Calendar - Work Shift Manager",1824768,"USD",1.99,43,24,4.5,4.5,"7.3","4+","Productivity",37,0,1,1
"873","430234732","Site Audit Pro",54476800,"USD",16.99,125,3,4,4.5,"5.7.6","4+","Productivity",37,5,1,1
"874","430616332","It's Tyrannosaurus Rex - Smithsonian Institution",29496320,"USD",1.99,92,1,4.5,5,"2.6.1","4+","Book",37,4,1,1
"875","430823968","FINAL FANTASY III for iPad",283656192,"USD",16.99,857,14,4,4,"1.6.4","9+","Games",24,5,8,1
"876","430856616","True Red Eye Remover HD-Face Recovery",4511744,"USD",0.99,528,379,4,4,"2.9","4+","Photo & Video",40,0,1,1
"877","430920838","Tikal",27049083,"USD",2.99,626,435,4.5,4.5,"1.2","4+","Games",47,5,1,1
"878","431023686","美丽说-潮流穿搭快人一步",143117312,"USD",0,1026,0,4.5,0,"9.1.0","17+","Shopping",37,0,4,1
"879","431033044","Phone Drive - File Manager, Browser & Explorer",19738624,"USD",1.99,1403,121,4.5,4.5,"6.3.9","17+","Utilities",38,5,15,1
"880","431065024","Fake Location",6228992,"USD",0.99,117,7,1,1,"3.1","4+","Social Networking",37,5,13,1
"881","431229633","Summer Games 3D",99463168,"USD",0.99,193,1,3.5,4,"2.3","4+","Games",37,5,1,1
"882","431493086","Classic Explain Everything™",123312128,"USD",7.99,896,0,4,0,"3.46","4+","Education",37,5,17,1
"883","431865275","The JMU Bus App",4427776,"USD",2.99,35,0,3,0,"3.1.2","4+","Navigation",38,0,1,1
"884","431946152","ROBLOX",115178496,"USD",0,183621,300,4.5,4.5,"2.293.126451","12+","Games",37,5,1,1
"885","432080204","Pocket Academy",192954368,"USD",4.99,616,12,4.5,4,"2.01","4+","Games",38,5,5,1
"886","432274380","知乎",149436416,"USD",0,397,0,3,0,"3.52.1","17+","Social Networking",37,5,1,1
"887","432278816","プチ・ロワイヤル仏和辞典(第4版)・和仏辞典(第3版)",205664256,"USD",47.99,0,0,0,0,"2.4","9+","Reference",37,5,2,1
"888","432455516","Round1 お得なクーポン毎週配信!",5999616,"USD",0,0,0,0,0,"3.9","17+","Sports",40,5,2,1
"890","432504470","Ticket to Ride",345904128,"USD",2.99,4866,64,4.5,3,"2.4.1","4+","Games",40,5,3,1
"892","432749907","Dice With Buddies: Fun New Social Dice Game",409732096,"USD",2.99,20355,23,4.5,4.5,"4.30.5","4+","Games",37,5,1,1
"893","432771571","Money Origami - Learn How to Fold Money",15350784,"USD",1.99,6,0,3.5,0,"4.1.0","4+","Reference",37,5,2,1
"894","432791399","Cloud Baby Monitor ~ Video, Audio, Unlimited Range",62913536,"USD",3.99,1855,131,4.5,4.5,"4.0.2","4+","Lifestyle",38,5,1,1
"895","432849519","STREET FIGHTER IV VOLT",947195904,"USD",4.99,9741,924,4.5,4,"1.05.02","12+","Games",40,0,3,1
"896","432850619","FL Studio Mobile",791146496,"USD",13.99,818,9,3.5,2.5,"3.1.50","4+","Music",37,5,1,1
"897","433156786","Qzone HD",30027776,"USD",0,458,26,3.5,3,"4.1.4.1","4+","Social Networking",26,5,2,1
"898","433398108","PicFrame",36758528,"USD",0.99,6374,66,4.5,5,"9.7.2","4+","Photo & Video",37,5,21,1
"899","433508740","Bank of America - Mobile Banking for iPad",114268160,"USD",0,7569,31,3.5,3,"7.3.8","4+","Finance",24,5,1,1
"900","433592592","Nyan Cat: Lost In Space",96872448,"USD",0,76392,700,4.5,4.5,"9.0","4+","Games",37,5,1,1
"901","433596395","ZOOKEEPER DX",28983296,"USD",0.99,274,24,3.5,3.5,"1.0.7","4+","Games",43,4,3,1
"903","433620759","Fishing Kings Free+",610881536,"USD",0,35058,7453,4.5,4.5,"1.0.6","4+","Games",40,5,12,1
"904","433622275","Werewolf ""Nightmare in Prison""",17530880,"USD",0,78,0,4.5,0,"8.6","12+","Games",37,0,2,1
"905","433671262","PhotoToaster - Photo Editor, Filters, Effects and Borders",58143744,"USD",2.99,4748,391,5,5,"6.7.5","4+","Photo & Video",37,5,1,1
"906","433847884","Bike Baron",183046144,"USD",1.99,12162,57,4.5,4.5,"3.9.1","4+","Games",40,5,1,1
"907","434209233","Moji Weather - Free Weather Forecast",86968320,"USD",0,2333,0,4.5,0,"7.0.0","4+","Weather",38,0,3,1
"908","434374726","京东 HD",114121728,"USD",0,150,0,4,0,"4.1.0","17+","Shopping",24,4,1,1
"909","434826169","Toca Robot Lab",64152576,"USD",2.99,1006,17,4,4,"1.2.3","4+","Education",40,5,1,1
"910","434832826","Viator Tours & Activities",79013888,"USD",0,1839,174,4.5,4,"5.5.0","12+","Travel",37,5,1,1
"911","434893913","Lookout: Security and Identity Theft Protection",65608704,"USD",0,2661,41,4,3.5,"5.1.1","4+","Utilities",37,1,8,1
"912","435138734","PBS KIDS Video",57694208,"USD",0,8651,23,3.5,3.5,"3.0.5","4+","Education",37,5,1,1
"913","435476174","LetterSchool - learn to write letters and numbers",47030272,"USD",4.99,460,72,4.5,3.5,"1.1","4+","Education",40,5,1,1
"914","435693872","Kurumaki Calendar -month scroll calendar-",7558144,"USD",1.99,34,6,5,5,"2.6","4+","Productivity",37,0,31,1
"915","435728260","Building Parallel Circuits",31744669,"USD",0.99,32,7,3.5,3,"1.3.1","4+","Education",26,3,1,1
"916","435871950","HappyCow Vegan / Vegetarian Restaurant Guide",35261440,"USD",3.99,863,12,4.5,5,"3.7.1","12+","Travel",37,3,11,1
"917","435883126","Building Serial Circuits",21462305,"USD",0.99,23,2,4,3.5,"1.3.1","4+","Education",26,3,1,1
"918","435913585","Superimpose",25382912,"USD",1.99,2965,205,4.5,5,"6.2","4+","Photo & Video",37,5,8,1
"919","436114747","ComicBook!",92432384,"USD",0.99,3702,112,4.5,4.5,"2.1.1","9+","Photo & Video",37,4,1,1
"920","436134867","Jelly Defense",299294720,"USD",2.99,5058,363,4.5,4.5,"1.21","4+","Games",38,5,1,1
"921","436180275","Learn to Speak Italian Fast With MosaLingua",43553792,"USD",4.99,0,0,0,0,"9.2","12+","Education",38,5,5,1
"922","436491861","Domino's Pizza USA",105743360,"USD",0,258624,2481,5,4.5,"4.2.0","4+","Food & Drink",37,5,2,1
"923","436555490","Junk Jack Retro",33743872,"USD",2.99,8632,62,4.5,4,"1.3.1","9+","Games",38,5,1,1
"924","436577167","FiLMiC Pro",125991936,"USD",14.99,1478,18,3,4.5,"6.0.3","4+","Photo & Video",37,5,1,1
"925","436672029","AliExpress Shopping App",133053440,"USD",0,10647,185,4,4.5,"5.2.7","12+","Shopping",37,0,18,1
"926","436957087","搜狐新闻—新闻热点资讯掌上阅读软件",136421376,"USD",0,383,0,4.5,0,"5.8.9","17+","News",38,0,1,1
"927","437025413","ZDFmediathek",67734528,"USD",0,320,1,3.5,3,"4.2.1","4+","Entertainment",37,5,1,1
"928","437314677","Digital Domain",13512704,"USD",0,102,0,2,0,"3.0.4","9+","Photo & Video",37,4,9,1
"930","437818260","SayHi Translate",26569728,"USD",0,8623,292,4.5,5,"3.9.12","4+","Business",37,4,35,1
"931","438314348","Tank Hero",16048128,"USD",0.99,14361,918,4.5,4.5,"1.1.4","9+","Games",43,0,1,0
"932","438426078","聚力视频-蓝光电视剧电影在线热播",99607552,"USD",0,1670,4,4.5,4,"6.4.16","12+","Entertainment",38,0,1,1
"933","438475005","TextGrabber – image to text: OCR & translate photo",134786048,"USD",4.99,1153,39,4,4,"5.5.4","4+","Productivity",37,5,11,1
"934","438865278","淘宝HD-Taobao for iPad",119247872,"USD",0,1103,54,3.5,4.5,"5.0.1","4+","Shopping",24,5,2,1
"935","439176506","Timenote",4849664,"USD",0.99,11,5,4.5,5,"2.6","4+","Business",43,0,2,1
"937","439438619","Snapseed",141322240,"USD",0,8683,98,4,4.5,"2.17","4+","Photo & Video",37,3,34,1
"938","439495358","北京浮生记",1532640,"USD",0.99,44,21,4.5,4.5,"1.2.1","17+","Games",43,0,2,1
"940","439628153","My PlayHome",225615872,"USD",3.99,3523,181,4.5,4.5,"3.1.1","4+","Entertainment",43,5,18,1
"941","439638720","腾讯手机管家-拦截骚扰电话的QQ安全助手",60549120,"USD",0,527,1,4,1,"7.0","4+","Utilities",37,0,1,1
"942","439852091","5K Runner: 0 to 5K Run Trainer. Couch potato to 5K",84338688,"USD",4.99,10368,1051,5,5,"7.3","4+","Health & Fitness",37,5,31,1
"943","439873467","Magic Jigsaw Puzzles",235259904,"USD",0,187666,1263,4.5,4.5,"2.11.1","4+","Games",37,5,10,1
"944","440045374","DragonVale",153074688,"USD",0,503230,282,4.5,4.5,"3.15.0","4+","Games",37,5,10,1
"945","440141669","SHADOWGUN",517828608,"USD",4.99,4513,95,4,4.5,"1.6.0","12+","Games",43,5,1,1
"946","440488550","PlayerXtreme Media Player PRO - Movies & streaming",99442688,"USD",4.99,125,6,3.5,2,"7.0.8","4+","Utilities",37,5,2,1
"947","440677948","Lieferheld - Delicious food delivery service",46147584,"USD",0,29,1,4.5,5,"3.3.9","12+","Food & Drink",38,0,2,1
"949","440948110","Kwai - Share your video moments",91466752,"USD",0,668,4,4.5,5,"4.99.6","17+","Photo & Video",38,0,11,1
"950","441179131","ibis Paint - speed painting",31885312,"USD",4.99,112,1,4.5,5,"5.0.1","12+","Entertainment",37,5,19,1
"951","441216572","360手机卫士-超安全的来电防骚扰助手",103390208,"USD",0,944,0,4,0,"8.0.2","4+","Utilities",37,0,2,1
"952","441457218","Photo Lab: Picture Editor, effects & fun face app",102964224,"USD",0,34585,34,4.5,4.5,"2.8.24","12+","Photo & Video",37,5,10,1
"953","441599491","ConjuVerb - Spanish Verb Conjugation Helper",49025024,"USD",0.99,406,62,4.5,4.5,"2.2","4+","Education",40,5,1,1
"954","442012681","Skype for iPad",129096704,"USD",0,60163,104,4,4.5,"6.35.1","4+","Social Networking",24,5,32,1
"955","442378070","Book Creator for iPad",86345728,"USD",4.99,415,2,4,3,"5.1.1","4+","Education",24,5,11,1
"956","442522082","Modern Combat 3: Fallen Nation",1978085376,"USD",6.99,23766,582,4.5,4.5,"1.5.0","17+","Games",43,5,12,1
"957","442705759","Toca Store",69277696,"USD",2.99,1595,28,4,3.5,"1.1.5","4+","Education",40,5,18,1
"958","442839435","NBC – Watch Now and Stream Full TV Episodes",135252992,"USD",0,55950,248,4,3.5,"4.8.0","12+","Entertainment",37,5,1,1
"959","443321291","CCW – Concealed Carry 50 State Guide",22264832,"USD",1.99,644,45,5,4.5,"3.3","12+","Reference",40,5,1,1
"960","443324720","TOEIC®テスト文法640問1",10928128,"USD",2.99,0,0,0,0,"1.0.23","4+","Education",37,5,1,1
"962","443354861","Camera360 - Selfie Filter Camera, Photo Editor",161159168,"USD",0,16729,2,4.5,4.5,"8.5.6","12+","Photo & Video",37,0,12,1
"963","443369807","Hotspot Shield Free VPN Proxy & Wi-Fi Privacy",72476672,"USD",0,32499,438,4.5,4.5,"3.7.5","4+","Productivity",37,5,11,1
"964","443637419","Racing Penguin Free - Top Flying and Diving Game",79857664,"USD",0,141224,1909,4.5,4.5,"5.8.6","4+","Games",38,5,1,1
"965","443646748","Fitness Buddy+ Gym Workout Exercise, Home Trainer",224675840,"USD",2.99,10386,58,4.5,4,"5.86","4+","Health & Fitness",37,0,31,1
"966","443904275","LINE",212208640,"USD",0,11437,11,3.5,3,"7.5.0","4+","Social Networking",37,5,17,1
"967","443926246","驴妈妈旅游-订景点门票机票火车票特价酒店",145368064,"USD",0,30,0,5,0,"7.9.6","4+","Travel",37,5,1,1
"968","443932954","Calculator for iPad Free.",48484352,"USD",0,4021,538,4.5,4.5,"2.53","4+","Utilities",40,4,32,1
"969","444062672","NOAA Hurricane Center HD",8093696,"USD",1.99,43,27,3.5,3.5,"2.0","4+","Weather",26,5,1,1
"971","444553118","Jesus Calling Devotional by Sarah Young",125770752,"USD",9.99,1685,2,2.5,1.5,"5.0.0","4+","Book",38,5,1,1
"972","444553167","ADP Mobile Solutions",53805056,"USD",0,8324,306,4,3,"2.8.2","4+","Business",37,5,24,1
"973","444745181","Daily Audio Bible App",13282304,"USD",0.99,796,0,5,0,"4.6.0","4+","Lifestyle",37,3,5,1
"974","444844790","Scribblenauts Remix",209452032,"USD",0.99,86127,179,4.5,4,"7.1","9+","Games",40,5,2,1
"975","444934666","QQ",218936320,"USD",0,9109,17,3,1.5,"7.0.1","12+","Social Networking",37,0,1,1
"976","444947784","Talking Tom & Ben News for iPad",55250944,"USD",0,20988,963,4,4.5,"2.2.1","4+","Entertainment",24,5,13,1
"977","445300213","Calc for Loan",880640,"USD",3.99,0,0,0,0,"3.0.1","4+","Finance",40,5,2,1
"978","445338486","LOVOO - Dating Chat",85049344,"USD",0,1985,4,4.5,5,"3.26.0","17+","Social Networking",37,5,15,1
"979","445375097","爱奇艺PPS -《欢乐颂2》电视剧热播",224617472,"USD",0,14844,0,4,0,"6.3.3","17+","Entertainment",38,5,3,1
"981","445573854","当当-正品秒杀,首单立减5元",130363392,"USD",0,65,0,3,0,"6.9.1","4+","Shopping",38,0,1,1
"982","445791750","Phoenix HD",92713984,"USD",0,13106,230,4.5,4.5,"2.6.2","9+","Games",37,5,14,1
"983","445850671","Zaim",118128640,"USD",0,44,0,4,0,"6.1.3","4+","Finance",37,5,2,1
"984","445996226","MailShot Pro- Group Email Done Right!",9162752,"USD",3.99,425,11,4.5,4.5,"5.3","4+","Productivity",37,5,4,1
"988","446207961","Human Anatomy Atlas – 3D Anatomical Model of the Human Body",1312071680,"USD",24.99,1298,144,4.5,4.5,"8.0.27","12+","Medical",38,5,7,1
"989","446324234","欢乐斗地主•腾讯",214474752,"USD",0,403,5,3.5,4.5,"5.52.001","17+","Games",43,5,1,1
"990","446408493","Virtual Villagers 5: New Believers",36301672,"USD",0.99,309,309,4,4,"1.0.0","9+","Games",47,0,1,1
"993","446760220","FINAL FANTASY TACTICS: THE WAR OF THE LIONS",507508522,"USD",13.99,5180,3723,4.5,4.5,"1.2.0","9+","Games",45,0,1,1
"995","447024088","自転車ナビ by NAVITIME(ナビタイム) - 自転車のナビができるアプリ",48708608,"USD",0,0,0,0,0,"4.11.1","4+","Navigation",37,0,1,1
"996","447149103","Reckless Getaway",123644928,"USD",0.99,18259,77,4.5,4.5,"1.1.4","12+","Games",43,5,1,1
"997","447188370","Snapchat",203038720,"USD",0,323905,576,2.5,3,"10.9.2.0","12+","Photo & Video",37,0,22,1
"998","447313708","途牛旅游-订机票酒店,查旅行景点门票",161202176,"USD",0,51,1,4.5,5,"9.1.4","17+","Travel",37,0,1,1
"1000","447444215","PDF Converter - Convert Documents, Photos to PDF",55156736,"USD",4.99,1294,113,4.5,4.5,"2.3.5","4+","Business",37,5,9,1
"1001","447574907","Auto Palmistry",51680256,"USD",0,5,0,3,0,"4.0.3","4+","Entertainment",37,4,2,1
"1002","447610616","Muffin Knight",214679552,"USD",0.99,9302,401,4.5,4,"2.0","9+","Games",43,5,9,1
"1003","447689011","Infinity Blade II",1344401408,"USD",0.99,153588,595,4.5,4.5,"1.3.4","12+","Games",40,5,16,1
"1004","447752317","Quick Scan Pro - Barcode Scanner. Deal Finder. Money Saver.",24059904,"USD",0.99,3837,85,4.5,3.5,"1.6.6","4+","Productivity",43,0,1,1
"1005","447791438","Sprinkle: Water splashing fire fighting fun!",34025472,"USD",1.99,10509,712,4.5,4,"1.7.2","4+","Games",43,5,1,1
"1006","447983569","Lock Photos & Video.s Vault - Passcode Protect Your Secret Photo Album & Secure Private Picture.s Folders",14741504,"USD",2.99,4697,415,4.5,4.5,"4.3","4+","Photo & Video",38,5,1,1
"1007","448142450","Truecaller - Spam Identification & Block",84406272,"USD",0,27791,5779,4.5,4.5,"7.50","4+","Utilities",37,0,30,1
"1008","448165862","MOMO陌陌-开启视频社交,用直播分享生活",156017664,"USD",0,1862,0,4,0,"7.7.47","17+","Social Networking",37,0,1,1
"1009","448474423","Couch to 5K® - Running App and Training Coach",95468544,"USD",2.99,3820,319,4.5,4.5,"3.5.3","4+","Health & Fitness",37,0,1,1
"1010","448639966","Pic Collage - Picture Editor & Photo Collage Maker",109210624,"USD",0,123433,1521,5,5,"7.12.17","12+","Photo & Video",37,5,12,1
"1012","449735650","Where's My Water?",90853376,"USD",1.99,131656,484,4.5,4,"1.14.1.58","4+","Games",40,5,11,1
"1013","449945214","United Airlines",140942336,"USD",0,5748,106,2.5,2.5,"2.1.19","4+","Travel",37,1,1,1
"1014","450123799","Dictionary.com Premium Dictionary & Thesaurus for iPad",162652160,"USD",4.99,4922,1010,4.5,4.5,"4.0","4+","Reference",24,5,9,1
"1015","450542233","Cut the Rope: Experiments",124532736,"USD",0.99,63272,305,4.5,4.5,"1.7.6","4+","Games",40,0,11,1
"1016","450555662","The Singing Machine Mobile Karaoke App",32770048,"USD",0,130,9,2.5,1.5,"1.10.4","12+","Music",37,1,1,1
"1017","450722833","ibis Paint X - speed painting",40980480,"USD",0,1933,20,4.5,4.5,"5.0.1","12+","Entertainment",37,5,19,1
"1018","450987651","VIBO RealMassager",4009984,"USD",0,6,1,3,5,"1.0.6","4+","Health & Fitness",37,0,2,1
"1019","451113455","Peggle Classic HD",179580928,"USD",0.99,3912,627,4.5,4.5,"2.0.9","4+","Games",26,5,5,1
"1020","451287325","Monkey Math School Sunshine",235767808,"USD",1.99,1092,1,4,5,"1.43","4+","Games",38,5,1,1
"1021","451584035","Conservative Talk Radio",13180928,"USD",2.99,2436,274,4.5,5,"4.1","9+","News",37,2,1,1
"1022","451901829","Azuki Wave",21263360,"USD",1.99,14,1,4,5,"1.08","4+","Entertainment",37,4,2,1
"1023","452176796","蘑菇街-网红直播搭配的购物特卖平台",144661504,"USD",0,558,0,5,0,"9.4.1","17+","Shopping",37,0,4,1
"1024","452186370","百度地图-智能的手机导航,公交地铁出行必备",213586944,"USD",0,1014,23,4,4.5,"9.8.2","17+","Navigation",37,0,2,1
"1025","452830319","Smilebox Moments - Collages, Stickers, Filters, Frames & Animations",25620480,"USD",0.99,4510,627,4.5,4.5,"3.2.4","4+","Photo & Video",40,0,1,1
"1026","453051448","Gangstar Rio: City of Saints",1820196864,"USD",6.99,14724,1043,4.5,4.5,"1.4.1","17+","Games",43,5,12,1
"1027","453174055","去哪儿旅行HD-总有你要的低价",2706432,"USD",0,85,0,3.5,0,"3.1.5","4+","Travel",26,4,1,1
"1028","453480684","咕咚-你的跑步骑行运动社区",141333504,"USD",0,160,0,4.5,0,"7.16","17+","Health & Fitness",37,0,3,1
"1029","453546382","Photon Flash Player for iPhone - Flash Video & Games plus Private Web Browser",35683328,"USD",3.99,4676,255,4,4,"6.2","17+","Utilities",43,0,10,1
"1030","453571750","Knots 3D",75027456,"USD",1.99,3196,95,5,5,"5.0.0","4+","Reference",37,5,19,1
"1031","453629018","Sight Recover 3D",22749184,"USD",0.99,1,1,1,1,"3.18","4+","Health & Fitness",43,5,4,1
"1032","453670037","Kazehakase fu-ring bank - Tokoname & Nanbu",22928546,"USD",1.99,0,0,0,0,"1.2","4+","Entertainment",43,0,2,1
"1033","453691481","飞猪",148888576,"USD",0,154,0,4,0,"8.2.2","17+","Travel",37,0,1,1
"1034","453718989","QQ HD",118249472,"USD",0,5058,0,3.5,0,"6.6.1","4+","Social Networking",24,5,1,1
"1035","453809428","Bon Appetit",21647360,"USD",0,750,17,3.5,2,"4.6.7","4+","Food & Drink",24,5,1,1
"1036","454021277","Skins Pro Creator for Minecraft",25740288,"USD",1.99,7943,46,4.5,3,"6.4.3","4+","Utilities",38,2,11,1
"1037","454086751","Flick Home Run !",27196416,"USD",0.99,98851,478,4.5,4,"1.7.2","4+","Games",38,0,1,1
"1038","454136236","STEINS;GATE",1551412224,"USD",24.99,16,0,4,0,"1.71","12+","Games",37,0,1,1
"1039","454316134","Sonic CD",197306368,"USD",0,16358,1816,4,3.5,"2.0.1","4+","Games",37,3,1,1
"1041","454638411","Messenger",275729408,"USD",0,351466,892,3,3,"119.0","4+","Social Networking",37,1,33,1
"1042","454781476","Zombieville USA 2",175780864,"USD",0.99,79683,597,4.5,4.5,"1.6.1","12+","Games",40,3,1,1
"1043","454802329","F18 Carrier Landing",168557568,"USD",5.99,4656,54,4.5,4.5,"7.2","4+","Games",37,5,11,1
"1044","454958810","Flick Champions HD",117258240,"USD",1.99,7289,19,4.5,4.5,"2.1.0","4+","Games",37,5,1,1
"1045","454988262","Programme TV Télé Loisirs",81083392,"USD",0,23,0,3.5,0,"7.2.1","12+","Entertainment",37,5,4,1
"1047","455256615","White Tiles 2 : Piano Master ( Don't Hit The White Tiles 4 ) - Free Music Game",31578112,"USD",0,60,7,4,3.5,"2.21","4+","Games",40,4,5,1
"1048","455612214","Flashlight ◎",37967872,"USD",0,24744,171,4.5,4,"2.0.6","4+","Business",40,4,11,1
"1049","455650341","Real Steel",968384512,"USD",0.99,24880,13,4.5,4,"1.37.1","9+","Games",38,5,8,1
"1051","455826958","Pinball Arcade Plus",111875072,"USD",0.99,3716,6,4,2.5,"7.1.0","9+","Games",37,1,1,1
"1053","456229650","QQ游戏大厅HD",20161086,"USD",0,338,176,3.5,3.5,"1.4","4+","Entertainment",26,5,1,1
"1054","456355158","Doodle Jump FREE - BE WARNED: Insanely addictive",63676416,"USD",0,28153,100,4,4,"2.6.3","4+","Games",37,0,1,1
"1055","456726080","Pearson eText for Schools",21083136,"USD",0,609,4,2.5,3,"1.11","4+","Education",24,5,8,1
"1057","457446957","Jetpack Joyride",108813312,"USD",0,405647,877,4.5,4.5,"1.9.24","9+","Games",38,5,3,1
"1058","457517348","FotoRus -Camera & Photo Editor & Pic Collage Maker",119500800,"USD",0,32558,147,5,4.5,"7.0.4","4+","Photo & Video",38,5,3,1
"1059","457561360","Catholic Bible",103469056,"USD",1.99,999,44,4.5,5,"3.4","4+","Reference",37,5,15,1
"1060","457687954","Doodle Jump HD",164236288,"USD",2.99,8580,12,4.5,4.5,"3.16.4","4+","Games",24,5,1,1
"1062","457876088","ASOS",141503488,"USD",0,9725,109,5,5,"3.4.1","4+","Shopping",37,5,6,1
"1063","458225159","NOAA Hi-Def Radar Pro - Storm Warnings, Hurricane Tracker & Weather Forecast",27500544,"USD",1.99,15809,628,5,4.5,"2.1","4+","Weather",38,5,1,1
"1064","458272450","eHarmony™ Dating App - Meet Singles",102413312,"USD",0,11124,15,2.5,1,"5.5.1","17+","Social Networking",37,0,1,1
"1066","458318329","腾讯视频-欢乐颂2全网首播",112337920,"USD",0,613,9,4,4.5,"5.6.2","17+","Entertainment",38,0,1,1
"1067","458535809","Calculator ∞",80345088,"USD",2.99,1138,59,4.5,4.5,"4.5","4+","Education",37,5,15,1
"1068","458587755","搜狐视频-欢乐颂2 全网首播",109425664,"USD",0,774,0,4.5,0,"6.6","17+","Entertainment",38,0,1,1
"1069","458813562","Abby Monkey® Basic Skills: Preschool and Kindergarten Kids Educational Early Learning Adventure Games.▫ TeachMe Counting, Colors, Alphabet, Math, Numbers, Shapes Sorting, Patterns, Puzzles, Learn to Read Letters for Toddler Children",71766016,"USD",2.99,358,59,3.5,4,"1.71","4+","Games",40,5,1,1
"1070","459023164","唯品会 HD 全球精选,正品特卖",106416128,"USD",0,68,0,4,0,"6.0.2","17+","Shopping",24,5,1,1
"1071","459035295","Top Eleven 2017 - Be a Soccer Manager",144414720,"USD",0,14104,61,4.5,4.5,"5.7","4+","Games",38,5,28,1
"1072","459189186","Machinarium",258739200,"USD",4.99,7919,73,4.5,4,"2.1.1","12+","Games",37,5,14,1
"1073","459313476","Tenuto",13062144,"USD",3.99,562,0,5,0,"3.0.3","4+","Music",37,5,1,1
"1074","459660048","STREET FIGHTER II COLLECTION",196291794,"USD",3.99,242,218,4,4,"1.00.01","12+","Games",43,0,1,1
"1076","460177396","Twitch",79983616,"USD",0,109549,149,4.5,4.5,"3.20.2","12+","Entertainment",37,5,26,1
"1077","460494135","Watch TNT",138006528,"USD",0,6856,8,2,1.5,"4.1.1","17+","Entertainment",37,4,1,1
"1078","460712294","Kids Doodle - Movie Kids Color & Draw",21745664,"USD",0,8025,611,4.5,4,"2.4.1","4+","Games",37,5,8,1
"1081","461123279","Written Legends: Nightmare at Sea HD (Full)",248307057,"USD",4.99,234,234,4.5,4.5,"1.0.0","9+","Games",26,5,6,1
"1082","461218759","Drum Beats+ (Rhythm Metronome, Loops & Grooves Machine)",385908736,"USD",3.99,879,612,4.5,5,"3.4","4+","Music",38,5,1,1
"1083","461390784","Real Fishing 3D",184315904,"USD",1.99,880,58,3.5,4,"1.1.4","4+","Games",40,5,1,1
"1084","461504587","Trello",140944384,"USD",0,2793,7,4.5,4.5,"4.0.7","4+","Productivity",37,5,21,1
"1085","461703208","高德地图(精准专业的手机地图)",166025216,"USD",0,1040,5,4.5,4,"8.0.8","4+","Navigation",38,0,1,1
"1086","462125072","广东移动手机营业厅-话费流量一手掌握,专属优惠定期发放",30503936,"USD",0,33,0,3.5,0,"5.2.2","17+","Utilities",38,0,1,1
"1087","462134755","Puppet Pals HD Director's Pass",103233536,"USD",3.99,54,0,4,0,"1.9.2","4+","Education",24,4,1,1
"1088","462155908","Fisheye Lens - Retro Style Fisheye Camera",7671808,"USD",1.99,2485,1564,4.5,4.5,"2.1.0","4+","Photo & Video",40,4,6,1
"1090","462397814","Waking Mars",337177600,"USD",4.99,2101,0,4.5,0,"2.2","9+","Games",37,5,2,1
"1091","462638897","Fitbit",132913152,"USD",0,90496,399,4,3.5,"2.36","4+","Health & Fitness",37,0,9,1
"1093","462780547","Watch TBS",109416448,"USD",0,4050,12,2,2.5,"4.1.1","12+","Entertainment",37,4,1,1
"1095","463142843","twinkle",17612800,"USD",2.99,5,0,4,0,"6.6","17+","Entertainment",37,1,1,1
"1098","463240522","HISTORY Here",23040000,"USD",0,685,369,4,4.5,"3.1","4+","Travel",38,0,1,1
"1099","463295925","The Official DVSA Theory Test Kit for Car Drivers",403332096,"USD",4.99,0,0,0,0,"3.2.2","4+","Education",38,0,1,1
"1100","463422433","Meitu HD",107525120,"USD",0,2150,68,4.5,4.5,"5.4.0","4+","Photo & Video",24,5,3,1
"1102","463431091","Railway Route Search",46950400,"USD",0,5,0,3,0,"3.17.1","4+","Navigation",37,0,1,1
"1103","463630399","PINK Nation",86456320,"USD",0,49816,413,4.5,4.5,"4.13.2","12+","Lifestyle",37,0,1,1
"1105","463869460","Ricky Carmichael's Motocross Matchup Pro",170055680,"USD",0.99,4498,38,4,4.5,"1.1.8","4+","Games",37,5,6,1
"1107","464235764","Phonics Island • Early Reading, Spelling & Tracing Montessori Preschool and Kindergarten Kids Learning Adventure Games by Abby Monkey® Alphabet and Letter Sounds Reader",61427712,"USD",2.99,199,73,3.5,3,"1.71","4+","Education",40,5,1,1
"1108","464309202","LotteryHUB",47699968,"USD",0,2417,39,3,1.5,"5.0.3","12+","News",37,5,1,1
"1109","464352883","Infinite Campus Mobile Portal",28331008,"USD",0,2286,46,2.5,1.5,"3.0.9","4+","Education",37,1,1,1
"1110","464660903","Perfect Image - Pic Collage Maker, Add Text to Photo, Cool Picture Editor",77390848,"USD",0,1646,141,4.5,4.5,"3.8.2","4+","Photo & Video",38,5,5,1
"1111","465092669","NHL",160124928,"USD",0,15554,124,3.5,5,"8.6.1","4+","Sports",37,5,1,1
"1112","465173198","Cronometer",17243136,"USD",2.99,210,7,3,3.5,"1.8.4","4+","Health & Fitness",37,5,1,1
"1113","465694275","Zen Pinball",68499456,"USD",0,6534,94,4.5,4.5,"1.42.1","9+","Games",38,5,1,1
"1114","466252999","Green Kitchen – healthy vegetarian recipes",407632896,"USD",3.99,311,21,4.5,4.5,"2.11","4+","Food & Drink",37,4,8,1
"1118","466710109","HB2 PLUS",56817664,"USD",0.99,54073,73,5,4,"1.3.0","4+","Games",38,5,4,1
"1119","466965151","The Sims™ FreePlay",695603200,"USD",0,446880,1832,4.5,4,"5.29.0","12+","Games",38,5,12,1
"1122","467067151","百度糯米-电影,美食团购",127980544,"USD",0,383,0,4.5,0,"7.5.0","17+","Lifestyle",37,0,2,1
"1123","467329677","Mathway - Math Problem Solver",94260224,"USD",0,1854,28,3.5,3.5,"3.1.0","4+","Education",37,5,7,1
"1124","467703220","Elmo Calls",87581696,"USD",1.99,1915,38,4,4.5,"3.7","4+","Games",38,5,1,1
"1125","467738064","AEO|Aerie: Jeans, Dresses, Swimsuits & Bralettes",64024576,"USD",0,6408,77,4,4.5,"4.1.2","4+","Shopping",37,0,1,1
"1126","467923185","Loopy HD",26399744,"USD",3.99,561,4,4,5,"1.6.3","4+","Music",37,5,4,1
"1127","467953363","Best Hunting Times",6603776,"USD",2.99,123,9,4,4,"4.2","4+","Weather",38,0,1,1
"1129","468090416","SamCard Pro-card reader&business card scanner&ocr",21118976,"USD",5.99,875,123,4.5,4.5,"2.3.3","4+","Business",37,0,7,1
"1130","468401854","Daily Classifieds for iPhone",93220864,"USD",0.99,7973,884,4,4.5,"6.2.4.0","17+","News",37,0,5,1
"1131","468429333","Runtastic Road Bike GPS Cycling Route Tracker PRO",57786368,"USD",4.99,3800,99,4.5,4.5,"3.5","4+","Health & Fitness",37,0,15,1
"1132","468564994","Tasty Planet: Back for Seconds",31039488,"USD",2.99,264,56,4.5,4.5,"1.4","9+","Games",43,0,8,1
"1133","468566852","Tasty Planet: Back for Seconds HD",29511680,"USD",4.99,135,62,4.5,4.5,"1.4","9+","Games",26,5,8,1
"1135","468674094","Scanner911 HD Police Radio Pro",4348875,"USD",3.99,204,166,4,4,"3.95","12+","News",26,3,2,1
"1136","468996152","OfferUp - Buy. Sell. Simple.",73138176,"USD",0,57348,1213,4.5,4.5,"2.10.17","4+","Shopping",37,0,1,1
"1137","469024771","随手记专业版 for iPad",32996352,"USD",0.99,240,1,4.5,5,"4.0.0","4+","Finance",24,5,1,1
"1138","469284907","HP All-in-One Printer Remote",60647424,"USD",0,9819,415,4.5,4.5,"5.3","4+","Productivity",37,2,14,1
"1139","469337564","Adobe Acrobat Reader: View, Create, & Convert PDFs",81007616,"USD",0,20069,33,4,4.5,"17.05.23","4+","Business",37,5,19,1
"1140","469338840","飞常准Pro-全球航班查询机票酒店预订",94053376,"USD",0.99,132,1,4,5,"4.0.5","17+","Travel",37,0,2,1
"1142","469343097","MEGA MAN X",90374144,"USD",4.99,3099,105,4.5,4.5,"1.03.22","4+","Games",40,5,6,1
"1143","469369175","CSR Racing",524803072,"USD",0,677247,2029,4.5,4.5,"4.0.1","4+","Games",37,5,10,1
"1144","469610082","Riptide GP",41246720,"USD",0.99,3883,675,4,4,"1.4.1","4+","Games",40,4,1,1
"1145","469622080","Math Practice - Integers",2598912,"USD",0.99,11,0,4,0,"2.0","4+","Education",37,5,1,1
"1146","469863705","Khan Academy: you can learn anything",162706432,"USD",0,5459,10,4,4.5,"4.3.0","4+","Education",37,5,6,1
"1148","469960709","Bejeweled Blitz",91591680,"USD",0,221002,131,4,4,"1.29.1","4+","Games",38,5,1,1
"1149","469964520","Lloyds Bank Mobile Banking",104023040,"USD",0,17,5,4.5,4,"16.1","4+","Finance",37,0,1,1
"1150","470412139","Sleepy Hollow: Mystery Legends HD (Full)",375949016,"USD",4.99,168,168,4,4,"1.0.1","9+","Games",26,5,4,1
"1151","470412147","Poshmark: Buy & Sell Fashion",58299392,"USD",0,18035,156,4.5,4.5,"2.70","4+","Shopping",37,5,1,1
"1152","470578793","Secret Calculator Pro - Hide photos & videos",14578688,"USD",1.99,2504,644,4.5,5,"1.13","4+","Photo & Video",37,0,12,1