From 9864aa53e448babcc9346e0858e00866964996fe Mon Sep 17 00:00:00 2001
From: m-adles <148379774+m-adles@users.noreply.github.com>
Date: Wed, 1 Nov 2023 13:03:20 +0100
Subject: [PATCH 1/2] Update 03_Lists_and_For_Loops.ipynb

---
 .../EN/Basic/03_Lists_and_For_Loops.ipynb     | 356 ++++++++++++++----
 1 file changed, 288 insertions(+), 68 deletions(-)

diff --git a/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb b/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb
index f3b6816e..cfd0627d 100644
--- a/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb
+++ b/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb
@@ -126,12 +126,22 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 1,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Instagram', 0.0, 'USD', 2161558, 4.5] ['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n"
+     ]
+    }
+   ],
    "source": [
     "# Start your code below:\n",
-    "\n"
+    "row_two=[\"Instagram\", 0.0,\"USD\", 2161558, 4.5]\n",
+    "row_three=[\"Clash of Clans\", 0.0, \"USD\", 2130805, 4.5]\n",
+    "print(row_two, row_three)\n"
    ]
   },
   {
@@ -151,9 +161,19 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 2,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "5\n",
+      "3\n",
+      "0\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "print(len(row_one))\n",
@@ -197,9 +217,18 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 3,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "1.0\n",
+      "4.0\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_two = ['Instagram',0.0, 'USD', 2161558, 4.5]\n",
@@ -228,20 +257,29 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 6,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "2422346.3333333335\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_two = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
     "row_three = ['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n",
     "\n",
     "# Start your code below:\n",
-    "rating_one =\n",
-    "rating_two =\n",
-    "rating_three =\n",
-    "total_rating =\n",
-    "average_rating = "
+    "rating_one = row_one[3]\n",
+    "rating_two = row_two[3]\n",
+    "rating_three = row_three[3]\n",
+    "total_rating = (rating_one+rating_two+rating_three)\n",
+    "average_rating = total_rating/3\n",
+    "print(average_rating)"
    ]
   },
   {
@@ -292,15 +330,29 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 16,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "4.166666666666667\n"
+     ]
+    }
+   ],
    "source": [
     "row_1 = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_2 = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
     "row_3 = ['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n",
     "\n",
-    "##Your task starts here:\n"
+    "##Your task starts here:\n",
+    "rating_one=row_1[-1]\n",
+    "rating_two=row_2[-1]\n",
+    "rating_three=row_3[-1]\n",
+    "total_ratings=(rating_one +rating_two+rating_three)\n",
+    "average_rating=total_ratings/3\n",
+    "print(average_rating)"
    ]
   },
   {
@@ -314,14 +366,23 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 17,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Facebook 2974676 3.5\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "app_name = row_one[0]\n",
     "rating_count_total = row_one[3]\n",
-    "rating = row_one[-1] # or rating = row_one[4] \n"
+    "rating = row_one[-1] # or rating = row_one[4] \n",
+    "print(app_name, rating_count_total, rating)"
    ]
   },
   {
@@ -370,9 +431,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 40,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "4.0\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_two = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -381,7 +450,12 @@
     "row_five = ['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n",
     "\n",
     "# Start your code below:\n",
-    "\n"
+    "fb_rating_data=[row_one[0], row_one[3], row_one[4]]\n",
+    "insta_rating_data=[row_two[0],row_two[-2],row_two[-1]]\n",
+    "pan_rating_data=[row_five[0],row_five[-2],row_five[-1]]\n",
+    "\n",
+    "avg_rating=(fb_rating_data[-1]+ insta_rating_data[-1]+ pan_rating_data[-1])/3\n",
+    "print(avg_rating)"
    ]
   },
   {
@@ -454,9 +528,18 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 41,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Clash of Clans', 0.0, 'USD']\n",
+      "['USD', 2130805, 4.5]\n"
+     ]
+    }
+   ],
    "source": [
     "row_three = ['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n",
     "\n",
@@ -480,9 +563,19 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 45,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Facebook', 0.0, 'USD', 2974676]\n",
+      "[2974676, 3.5]\n",
+      "[0.0, 'USD', 1126879]\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_two = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -491,7 +584,13 @@
     "row_five = ['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n",
     "\n",
     "\n",
-    "# Start your code below:"
+    "# Start your code below:\n",
+    "first_four_elem_fb=row_one[:4]\n",
+    "last_two_elem_fb=row_one[-2:]\n",
+    "pan_2_3_4=row_five[1:4]\n",
+    "print(first_four_elem_fb)\n",
+    "print(last_two_elem_fb)\n",
+    "print(pan_2_3_4)"
    ]
   },
   {
@@ -506,9 +605,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 46,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[['Facebook', 0.0, 'USD', 2974676, 3.5], ['Instagram', 0.0, 'USD', 2161558, 4.5], ['Clash of Clans', 0.0, 'USD', 2130805, 4.5], ['Temple Run', 0.0, 'USD', 1724546, 4.5], ['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]]\n"
+     ]
+    }
+   ],
    "source": [
     "row_one = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_two = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -517,7 +624,8 @@
     "row_five = ['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n",
     "\n",
     "data_set = [row_one, row_two, row_three, row_four, row_five]\n",
-    "data_set"
+    "data_set\n",
+    "print(data_set)"
    ]
   },
   {
@@ -586,9 +694,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 47,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Facebook\n"
+     ]
+    }
+   ],
    "source": [
     "data_set = [row_one, row_two, row_three, row_four, row_five]\n",
     "\n",
@@ -610,9 +726,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 49,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "4.2\n"
+     ]
+    }
+   ],
    "source": [
     "row_1 = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_2 = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -622,7 +746,9 @@
     "\n",
     "\n",
     "# Start your code below:\n",
-    "\n"
+    "app_data_set=[row_1, row_2, row_3, row_4, row_5]\n",
+    "average_rating=(app_data_set[0][4]+app_data_set[1][4]+app_data_set[2][4]+app_data_set[3][4]+app_data_set[4][4])/5\n",
+    "print(average_rating)\n"
    ]
   },
   {
@@ -641,25 +767,20 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 2,
+   "execution_count": 50,
    "metadata": {},
    "outputs": [
     {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "[['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'], ['284882215', 'Facebook', '389879808', 'USD', '0.0', '2974676', '212', '3.5', '3.5', '95.0', '4+', 'Social Networking', '37', '1', '29', '1'], ['389801252', 'Instagram', '113954816', 'USD', '0.0', '2161558', '1289', '4.5', '4.0', '10.23', '12+', 'Photo & Video', '37', '0', '29', '1'], ['529479190', 'Clash of Clans', '116476928', 'USD', '0.0', '2130805', '579', '4.5', '4.5', '9.24.12', '9+', 'Games', '38', '5', '18', '1'], ['420009108', 'Temple Run', '65921024', 'USD', '0.0', '1724546', '3842', '4.5', '4.0', '1.6.2', '9+', 'Games', '40', '5', '1', '1']]\n"
+     "ename": "FileNotFoundError",
+     "evalue": "[Errno 2] No such file or directory: 'AppleStore.csv'",
+     "output_type": "error",
+     "traceback": [
+      "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
+      "\u001b[0;31mFileNotFoundError\u001b[0m                         Traceback (most recent call last)",
+      "\u001b[1;32m/Users/magdalenaadlesgruber/Python_Course/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb Cell 52\u001b[0m line \u001b[0;36m1\n\u001b[0;32m----> <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb#Y102sZmlsZQ%3D%3D?line=0'>1</a>\u001b[0m my_file \u001b[39m=\u001b[39m \u001b[39mopen\u001b[39m(\u001b[39m'\u001b[39m\u001b[39mAppleStore.csv\u001b[39m\u001b[39m'\u001b[39m, encoding\u001b[39m=\u001b[39m\u001b[39m'\u001b[39m\u001b[39mutf8\u001b[39m\u001b[39m'\u001b[39m)\n\u001b[1;32m      <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb#Y102sZmlsZQ%3D%3D?line=2'>3</a>\u001b[0m \u001b[39mfrom\u001b[39;00m \u001b[39mcsv\u001b[39;00m \u001b[39mimport\u001b[39;00m reader\n\u001b[1;32m      <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Exercises/EN/Basic/03_Lists_and_For_Loops.ipynb#Y102sZmlsZQ%3D%3D?line=3'>4</a>\u001b[0m read_file \u001b[39m=\u001b[39m reader(my_file)\n",
+      "File \u001b[0;32m~/anaconda3/lib/python3.11/site-packages/IPython/core/interactiveshell.py:286\u001b[0m, in \u001b[0;36m_modified_open\u001b[0;34m(file, *args, **kwargs)\u001b[0m\n\u001b[1;32m    279\u001b[0m \u001b[39mif\u001b[39;00m file \u001b[39min\u001b[39;00m {\u001b[39m0\u001b[39m, \u001b[39m1\u001b[39m, \u001b[39m2\u001b[39m}:\n\u001b[1;32m    280\u001b[0m     \u001b[39mraise\u001b[39;00m \u001b[39mValueError\u001b[39;00m(\n\u001b[1;32m    281\u001b[0m         \u001b[39mf\u001b[39m\u001b[39m\"\u001b[39m\u001b[39mIPython won\u001b[39m\u001b[39m'\u001b[39m\u001b[39mt let you open fd=\u001b[39m\u001b[39m{\u001b[39;00mfile\u001b[39m}\u001b[39;00m\u001b[39m by default \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m    282\u001b[0m         \u001b[39m\"\u001b[39m\u001b[39mas it is likely to crash IPython. If you know what you are doing, \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m    283\u001b[0m         \u001b[39m\"\u001b[39m\u001b[39myou can use builtins\u001b[39m\u001b[39m'\u001b[39m\u001b[39m open.\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m    284\u001b[0m     )\n\u001b[0;32m--> 286\u001b[0m \u001b[39mreturn\u001b[39;00m io_open(file, \u001b[39m*\u001b[39margs, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwargs)\n",
+      "\u001b[0;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: 'AppleStore.csv'"
      ]
-    },
-    {
-     "data": {
-      "text/plain": [
-       "7198"
-      ]
-     },
-     "execution_count": 2,
-     "metadata": {},
-     "output_type": "execute_result"
     }
    ],
    "source": [
@@ -729,9 +850,22 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 51,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3\n",
+      "10\n",
+      "2\n",
+      "6\n",
+      "8\n",
+      "1\n"
+     ]
+    }
+   ],
    "source": [
     "ratings = [3, 10, 2, 6, 8, 1]\n",
     "\n",
@@ -748,9 +882,21 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 52,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3.5\n",
+      "4.5\n",
+      "4.5\n",
+      "4.5\n",
+      "4.0\n"
+     ]
+    }
+   ],
    "source": [
     "app_data_set = [row_one, row_two, row_three, row_four, row_five]\n",
     "\n",
@@ -768,9 +914,21 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 53,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
+      "['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
+      "['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n",
+      "['Temple Run', 0.0, 'USD', 1724546, 4.5]\n",
+      "['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n"
+     ]
+    }
+   ],
    "source": [
     "app_data_set = [row_one, row_two, row_three, row_four, row_five]\n",
     "\n",
@@ -819,9 +977,21 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 55,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
+      "['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
+      "['Clash of Clans', 0.0, 'USD', 2130805, 4.5]\n",
+      "['Temple Run', 0.0, 'USD', 1724546, 4.5]\n",
+      "['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n"
+     ]
+    }
+   ],
    "source": [
     "row_1 = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_2 = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -832,7 +1002,8 @@
     "app_data_set = [row_1, row_2, row_3, row_4, row_5]\n",
     "\n",
     "# Start your code below:\n",
-    "\n"
+    "for each_list in app_data_set:\n",
+    "    print(each_list)\n"
    ]
   },
   {
@@ -851,15 +1022,32 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 58,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "1\n",
+      "0\n",
+      "1 0\n",
+      "2\n",
+      "1\n",
+      "2 1\n",
+      "3\n",
+      "2\n",
+      "3 2\n"
+     ]
+    }
+   ],
    "source": [
     "a_list = [1, 2, 3]\n",
     "\n",
     "for value in a_list:\n",
     "    print(value)\n",
     "    print(value - 1)\n",
+    "    print(value, value-1)\n",
     "\n",
     "# value - is the iteration variable\n",
     "# a_list - is the iterable variable\n",
@@ -881,9 +1069,19 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 59,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "1\n",
+      "3\n",
+      "6\n"
+     ]
+    }
+   ],
    "source": [
     "a_list = [1, 2, 3]\n",
     "\n",
@@ -917,9 +1115,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": null,
+   "execution_count": 61,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "4.2\n"
+     ]
+    }
+   ],
    "source": [
     "row_1 = ['Facebook', 0.0, 'USD', 2974676, 3.5]\n",
     "row_2 = ['Instagram', 0.0, 'USD', 2161558, 4.5]\n",
@@ -927,8 +1133,22 @@
     "row_4 = ['Temple Run', 0.0, 'USD', 1724546, 4.5]\n",
     "row_5 = ['Pandora - Music & Radio', 0.0, 'USD', 1126879, 4.0]\n",
     "\n",
-    "app_data_set = [row_1, row_2, row_3, row_4, row_5]"
+    "app_data_set = [row_1, row_2, row_3, row_4, row_5]\n",
+    "\n",
+    "rating_sum=0\n",
+    "for row in app_data_set:\n",
+    "        rating=row[-1]\n",
+    "        rating_sum=rating_sum+rating\n",
+    "avg_rating=rating_sum/5\n",
+    "print(avg_rating)\n"
    ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
   }
  ],
  "metadata": {
@@ -947,7 +1167,7 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.8.10"
+   "version": "3.11.5"
   }
  },
  "nbformat": 4,

From 0bbdcf028d5d06ccf89e28c40e35d47e298737dd Mon Sep 17 00:00:00 2001
From: m-adles <148379774+m-adles@users.noreply.github.com>
Date: Sat, 4 Nov 2023 20:32:16 +0100
Subject: [PATCH 2/2] exercises + notes

---
 .../EN/Basic/04_Conditional_Statements.ipynb  |  173 +-
 Exercises/EN/Basic/AppleStore.csv             | 7198 +++++++++++++++++
 Notebooks/Python_Basic/04_Scopes.ipynb        |   31 +-
 3 files changed, 7352 insertions(+), 50 deletions(-)
 create mode 100644 Exercises/EN/Basic/AppleStore.csv

diff --git a/Exercises/EN/Basic/04_Conditional_Statements.ipynb b/Exercises/EN/Basic/04_Conditional_Statements.ipynb
index d5cf40be..b78f1acf 100644
--- a/Exercises/EN/Basic/04_Conditional_Statements.ipynb
+++ b/Exercises/EN/Basic/04_Conditional_Statements.ipynb
@@ -46,7 +46,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 2,
+   "execution_count": 1,
    "metadata": {},
    "outputs": [
     {
@@ -63,6 +63,7 @@
     "read_file = reader(opened_file)\n",
     "apps_data = list(read_file)\n",
     "\n",
+    "\n",
     "ratings = []\n",
     "for row in apps_data[1:]:\n",
     "    rating = float(row[7])\n",
@@ -123,11 +124,42 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 43,
+   "execution_count": null,
    "metadata": {},
    "outputs": [],
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3.3767258382642997\n"
+     ]
+    }
+   ],
    "source": [
     "## Start your code below:\n",
+    "opened_file = open('AppleStore.csv', encoding='utf8')\n",
+    "from csv import reader\n",
+    "read_file = reader(opened_file)\n",
+    "apps_data = list(read_file)\n",
+    "\n",
+    "free_apps_ratings = []\n",
+    "\n",
+    "\n",
+    "for row in apps_data[1:]: ##for each row in the dataset\n",
+    "    rating = float(row[7]) ##the variable rating is a float of the 7th column in each row\n",
+    "    price=float(row[4]) ##the variable price is a float of the 4th column in each row\n",
+    "    if price==0.0: ##if the price is 0.0\n",
+    "        free_apps_ratings.append(rating) #then the rating is added to the free_apps_rating\n",
+    "\n",
+    "avg_rating_free = sum(free_apps_ratings) / len(free_apps_ratings) ##computing the average\n",
+    "print(avg_rating_free)\n",
     "\n",
     "\n"
    ]
@@ -224,17 +256,9 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 47,
+   "execution_count": 7,
    "metadata": {},
-   "outputs": [
-    {
-     "name": "stdout",
-     "output_type": "stream",
-     "text": [
-      "10\n"
-     ]
-    }
-   ],
+   "outputs": [],
    "source": [
     "#1. A Boolean value.\n",
     "\n",
@@ -363,13 +387,26 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 52,
+   "execution_count": 9,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "this is not free\n"
+     ]
+    }
+   ],
    "source": [
-    "price = 0\n",
+    "price = 4\n",
     "\n",
-    "#start your code here:\n"
+    "#start your code here:\n",
+    "if price ==0:\n",
+    "    print(\"this is free\")\n",
+    "else: \n",
+    "    if price>0:\n",
+    "        print(\"this is not free\")\n"
    ]
   },
   {
@@ -454,7 +491,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 55,
+   "execution_count": 10,
    "metadata": {},
    "outputs": [
     {
@@ -522,9 +559,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 58,
+   "execution_count": 13,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3.720948742438714\n"
+     ]
+    }
+   ],
    "source": [
     "# INITIAL CODE\n",
     "opened_file = open('AppleStore.csv', encoding='utf8')\n",
@@ -532,14 +577,15 @@
     "read_file = reader(opened_file)\n",
     "apps_data = list(read_file)\n",
     "\n",
-    "free_apps_ratings = []\n",
+    "non_free_apps_ratings = []\n",
     "for row in apps_data[1:]:\n",
     "    rating = float(row[7])\n",
     "    price = float(row[4])   \n",
-    "    if price == 0.0:\n",
-    "        free_apps_ratings.append(rating)\n",
+    "    if price != 0.0:\n",
+    "        non_free_apps_ratings.append(rating)\n",
     "    \n",
-    "avg_rating_free = sum(free_apps_ratings) / len(free_apps_ratings)"
+    "avg_rating_non_free = sum(non_free_apps_ratings) / len(non_free_apps_ratings)\n",
+    "print(avg_rating_non_free)"
    ]
   },
   {
@@ -638,9 +684,17 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 63,
+   "execution_count": 16,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3.343928035982009\n"
+     ]
+    }
+   ],
    "source": [
     "#reading the dataset\n",
     "opened_file = open('AppleStore.csv', encoding='utf8')\n",
@@ -650,6 +704,15 @@
     "\n",
     "#start your code here:\n",
     "#Initialize an empty list named non_games_ratings.\n",
+    "non_games_ratings=[]\n",
+    "for row in apps_data[1:]:\n",
+    "    rating=float(row[7])\n",
+    "    genre=row[11]\n",
+    "\n",
+    "    if genre !='Games':\n",
+    "        non_games_ratings.append(rating)\n",
+    "avg_ratings_non_games=sum(non_games_ratings)/len(non_games_ratings)\n",
+    "print(avg_ratings_non_games)\n",
     "\n",
     "#Loop through the apps_data\n",
     "\n",
@@ -1054,25 +1117,34 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 79,
+   "execution_count": 18,
    "metadata": {},
-   "outputs": [],
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "3.8904235727440146\n"
+     ]
+    }
+   ],
    "source": [
     "opened_file = open('AppleStore.csv', encoding='utf8')\n",
     "from csv import reader\n",
     "read_file = reader(opened_file)\n",
     "apps_data = list(read_file)\n",
     "\n",
-    "free_games_social_ratings = []\n",
+    "non_free_games_social_ratings = []\n",
     "for row in apps_data[1:]:\n",
     "    rating = float(row[7])\n",
     "    genre = row[11]\n",
     "    price = float(row[4])\n",
     "    \n",
-    "    if (genre == 'Social Networking' or genre == 'Games') and price == 0:\n",
-    "        free_games_social_ratings.append(rating)\n",
+    "    if (genre == 'Social Networking' or genre == 'Games') and price != 0:\n",
+    "        non_free_games_social_ratings.append(rating)\n",
     "        \n",
-    "avg_free = sum(free_games_social_ratings) / len(free_games_social_ratings)\n",
+    "avg_non_free = sum(non_free_games_social_ratings) / len(non_free_games_social_ratings)\n",
+    "print(avg_non_free)\n",
     "\n",
     "# Non-free apps (average)"
    ]
@@ -1555,7 +1627,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 94,
+   "execution_count": 20,
    "metadata": {},
    "outputs": [],
    "source": [
@@ -1567,8 +1639,41 @@
     "\n",
     "for app in apps_data[1:]:\n",
     "    price = float(app[4])\n",
-    "    # Complete code from here"
+    "    # Complete code from here\n",
+    "    if price==0.0:\n",
+    "        app.append(\"free)\")\n",
+    "    elif price >0 and price< 20:\n",
+    "        app.append(\"affordable\")\n",
+    "    elif price >=20 and price <50:\n",
+    "        app.append(\"expensive\")\n",
+    "    elif price >= 50: \n",
+    "        app.append(\"very expensive\")\n",
+    "apps_data[0].append(\"price_label\")"
    ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 22,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['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', 'price_label']\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(apps_data[0])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
   }
  ],
  "metadata": {
@@ -1587,7 +1692,7 @@
    "name": "python",
    "nbconvert_exporter": "python",
    "pygments_lexer": "ipython3",
-   "version": "3.7.1"
+   "version": "3.11.5"
   }
  },
  "nbformat": 4,
diff --git a/Exercises/EN/Basic/AppleStore.csv b/Exercises/EN/Basic/AppleStore.csv
new file mode 100644
index 00000000..8dbb8552
--- /dev/null
+++ b/Exercises/EN/Basic/AppleStore.csv
@@ -0,0 +1,7198 @@
+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
+284882215,Facebook,389879808,USD,0.0,2974676,212,3.5,3.5,95.0,4+,Social Networking,37,1,29,1
+389801252,Instagram,113954816,USD,0.0,2161558,1289,4.5,4.0,10.23,12+,Photo & Video,37,0,29,1
+529479190,Clash of Clans,116476928,USD,0.0,2130805,579,4.5,4.5,9.24.12,9+,Games,38,5,18,1
+420009108,Temple Run,65921024,USD,0.0,1724546,3842,4.5,4.0,1.6.2,9+,Games,40,5,1,1
+284035177,Pandora - Music & Radio,130242560,USD,0.0,1126879,3594,4.0,4.5,8.4.1,12+,Music,37,4,1,1
+429047995,Pinterest,74778624,USD,0.0,1061624,1814,4.5,4.0,6.26,12+,Social Networking,37,5,27,1
+282935706,Bible,92774400,USD,0.0,985920,5320,4.5,5.0,7.5.1,4+,Reference,37,5,45,1
+553834731,Candy Crush Saga,222846976,USD,0.0,961794,2453,4.5,4.5,1.101.0,4+,Games,43,5,24,1
+324684580,Spotify Music,132510720,USD,0.0,878563,8253,4.5,4.5,8.4.3,12+,Music,37,5,18,1
+343200656,Angry Birds,175966208,USD,0.0,824451,107,4.5,3.0,7.4.0,4+,Games,38,0,10,1
+512939461,Subway Surfers,156038144,USD,0.0,706110,97,4.5,4.0,1.72.1,9+,Games,38,5,1,1
+362949845,Fruit Ninja Classic,104590336,USD,1.99,698516,132,4.5,4.0,2.3.9,4+,Games,38,5,13,1
+359917414,Solitaire,101943296,USD,0.0,679055,9673,4.5,4.5,4.11.2,4+,Games,38,4,11,1
+469369175,CSR Racing,524803072,USD,0.0,677247,2029,4.5,4.5,4.0.1,4+,Games,37,5,10,1
+924373886,Crossy Road - Endless Arcade Hopper,165471232,USD,0.0,669079,1087,4.5,4.5,1.5.4,9+,Games,38,5,13,1
+575658129,Injustice: Gods Among Us,1829599232,USD,0.0,612532,410,4.5,4.5,2.15.1,12+,Games,39,5,13,1
+506627515,Hay Day,113641472,USD,0.0,567344,4887,4.5,4.5,1.33.134,4+,Games,38,5,18,1
+500116670,Clear Vision (17+),37879808,USD,0.99,541693,69225,4.5,4.5,1.1.3,17+,Games,43,5,1,1
+479516143,Minecraft: Pocket Edition,147787776,USD,6.99,522012,1148,4.5,4.5,1.1,9+,Games,37,1,11,1
+293778748,PAC-MAN,100849664,USD,0.0,508808,99,3.0,4.5,6.3.5,4+,Games,38,5,10,1
+341232718,Calorie Counter & Diet Tracker by MyFitnessPal,152700928,USD,0.0,507706,181,4.5,4.5,7.16,4+,Health & Fitness,37,5,19,1
+440045374,DragonVale,153074688,USD,0.0,503230,282,4.5,4.5,3.15.0,4+,Games,37,5,10,1
+295646461,"The Weather Channel: Forecast, Radar & Alerts",199734272,USD,0.0,495626,5893,3.5,4.5,8.11,4+,Weather,37,0,33,1
+487119327,Head Soccer,121319424,USD,0.0,481564,8518,5.0,5.0,5.4.1,4+,Games,40,4,11,1
+284815942,Google – Search made just for mobile,179979264,USD,0.0,479440,203,3.5,4.0,27.0,17+,Utilities,37,4,33,1
+596402997,Despicable Me: Minion Rush,147123200,USD,0.0,464312,444,4.5,4.5,4.6.0,9+,Games,38,5,16,1
+466965151,The Sims™ FreePlay,695603200,USD,0.0,446880,1832,4.5,4.0,5.29.0,12+,Games,38,5,12,1
+293622097,Google Earth,37214208,USD,0.0,446185,1359,3.5,3.5,7.1.6,4+,Travel,43,5,30,1
+350642635,Plants vs. Zombies,105379840,USD,0.99,426463,680,5.0,4.0,1.9.13,9+,Games,38,0,5,1
+582654048,Sonic Dash,186687488,USD,0.0,418033,419,4.5,4.5,3.7.1,4+,Games,37,5,7,1
+352683833,"Groupon - Deals, Coupons & Discount Shopping App",127382528,USD,0.0,417779,914,4.5,4.5,17.7,12+,Shopping,37,4,10,1
+543186831,8 Ball Pool™,86776832,USD,0.0,416736,19076,4.5,4.5,3.9.1,4+,Games,38,5,10,1
+422667065,Tiny Tower - Free City Building,124720128,USD,0.0,414803,4536,4.5,4.5,3.3.12,12+,Games,38,4,1,1
+457446957,Jetpack Joyride,108813312,USD,0.0,405647,877,4.5,4.5,1.9.24,9+,Games,38,5,3,1
+510461758,Bike Race - Top Motorcycle Racing Games,120187904,USD,0.0,405007,4053,4.5,5.0,7.3.11,4+,Games,38,5,9,1
+284993459,"Shazam - Discover music, artists, videos & lyrics",147093504,USD,0.0,402925,136,4.0,4.5,11.0.3,12+,Music,37,3,16,1
+860822992,Kim Kardashian: Hollywood,239976448,USD,0.0,397730,467,4.5,4.5,6.6.0,12+,Games,38,5,1,1
+307727765,Doodle Jump,48741376,USD,0.99,395261,88,4.5,4.5,3.17.6,4+,Games,37,0,1,1
+651510680,Trivia Crack,265484288,USD,0.0,393469,34,4.5,3.5,2.40,4+,Games,37,5,26,1
+708600202,WordBrain,110595072,USD,0.0,391401,82,4.5,4.5,1.21.1,4+,Games,38,5,1,1
+930574573,Sniper 3D Assassin: Shoot to Kill Gun Game,157851648,USD,0.0,386521,10332,5.0,5.0,1.17.6,17+,Games,40,5,9,1
+526641427,Flow Free,20669440,USD,0.0,373857,3428,4.5,4.5,2.9,4+,Games,38,5,11,1
+297368629,Lose It! – Weight Loss Program and Calorie Counter,182054912,USD,0.0,373835,402,4.0,4.5,8.0.2,4+,Health & Fitness,37,3,1,1
+304878510,Skype for iPhone,133238784,USD,0.0,373519,127,3.5,4.0,6.35.1,4+,Social Networking,37,0,32,1
+698255242,Geometry Dash Lite,69076992,USD,0.0,370370,2650,5.0,4.5,2.11,4+,Games,37,4,1,1
+488627858,Draw Something,84379648,USD,2.99,360974,3,4.5,4.5,3.0.17,4+,Games,38,5,1,1
+366247306,▻Sudoku,71002112,USD,0.0,359832,17119,4.5,5.0,5.4,4+,Games,40,5,7,1
+333903271,Twitter,210569216,USD,0.0,354058,452,3.5,4.0,6.79.1,17+,News,37,2,33,1
+454638411,Messenger,275729408,USD,0.0,351466,892,3.0,3.0,119.0,4+,Social Networking,37,1,33,1
+323229106,"Waze - GPS Navigation, Maps & Real-time Traffic",94139392,USD,0.0,345046,3040,4.5,4.5,4.24,4+,Navigation,37,5,36,1
+310738695,Zillow Real Estate - Homes for Sale & for Rent,132632576,USD,0.0,342969,88478,4.5,4.5,10.4.5,4+,Lifestyle,37,5,1,1
+305343404,Tumblr,151573504,USD,0.0,334293,919,4.0,4.0,8.6,17+,Social Networking,37,5,16,1
+403858572,Fruit Ninja®,163801088,USD,0.0,327025,82,4.5,4.0,2.5.1,4+,Games,38,5,13,1
+387428400,Infinity Blade,624107810,USD,0.99,326482,177050,5.0,5.0,1.4.1,12+,Games,43,5,13,1
+447188370,Snapchat,203038720,USD,0.0,323905,576,2.5,3.0,10.9.2.0,12+,Photo & Video,37,0,22,1
+363590051,Netflix,125016064,USD,0.0,308844,139,3.5,3.0,9.21.3,4+,Entertainment,37,5,20,1
+331177714,Starbucks,135032832,USD,0.0,303856,7027,4.5,4.5,4.3.5,4+,Food & Drink,37,0,2,1
+640111933,Pixel Gun 3D,1744486400,USD,0.0,301182,3493,4.5,4.5,12.1.1,12+,Games,38,5,1,1
+572395608,Temple Run 2,158025728,USD,0.0,295211,91,4.5,4.0,1.37,9+,Games,38,5,1,1
+421167112,My Horse,301896704,USD,0.0,293857,249,4.5,4.0,1.30.0,4+,Games,40,5,8,1
+290638154,iHeartRadio – Free Music & Radio Stations,116443136,USD,0.0,293228,110,4.0,3.0,8.0.0,12+,Music,37,5,2,1
+307906541,Fandango Movies - Times + Tickets,81924096,USD,0.0,291787,589,4.0,5.0,8.6,4+,Entertainment,37,4,1,1
+317469184,"ESPN: Get scores, news, alerts & watch live sports",51538944,USD,0.0,290996,150,3.5,3.5,5.7.1,4+,Sports,37,5,2,1
+310633997,WhatsApp Messenger,135044096,USD,0.0,287589,73088,4.5,4.5,2.17.22,4+,Social Networking,12,0,35,1
+1153883316,Word Cookies!,113321984,USD,0.0,287095,16109,4.5,4.5,1.2.6,4+,Games,38,5,1,1
+544007664,"YouTube - Watch Videos, Music, and Live Streams",124673024,USD,0.0,278166,0,2.5,0.0,12.21,17+,Photo & Video,37,4,34,1
+561941526,Dragon City Mobile,123612160,USD,0.0,277268,223,4.5,4.5,4.11,4+,Games,38,5,12,1
+497595276,The Simpsons™: Tapped Out,86079488,USD,0.0,274501,44,4.0,4.0,4.27.0,12+,Games,38,5,18,1
+597986893,Plants vs. Zombies™ 2,98507776,USD,0.0,267394,1763,4.5,4.5,6.0.1,9+,Games,37,5,6,1
+1053012308,Clash Royale,114408448,USD,0.0,266921,3967,4.5,4.0,1.8.2,9+,Games,38,5,15,1
+625334537,Geometry Dash,83931136,USD,1.99,266440,6263,5.0,4.5,2.10,4+,Games,37,4,1,1
+282614216,"eBay: Best App to Buy, Sell, Save! Online Shopping",128512000,USD,0.0,262241,649,4.0,4.5,5.10.0,12+,Shopping,37,5,9,1
+357218860,Kik,151864320,USD,0.0,260965,228,4.0,3.0,11.21.0,12+,Social Networking,37,0,14,0
+436491861,Domino's Pizza USA,105743360,USD,0.0,258624,2481,5.0,4.5,4.2.0,4+,Food & Drink,37,5,2,1
+1094591345,Pokémon GO,290762752,USD,0.0,257627,1284,3.0,3.5,1.33.1,9+,Games,37,5,8,1
+887947640,CSR Racing 2,1944321024,USD,0.0,257100,2025,5.0,5.0,1.11.3,4+,Games,37,5,11,1
+847985808,Star Wars™: Commander,187205632,USD,0.0,253448,315,4.5,4.5,4.10.0,9+,Games,37,5,11,1
+302584613,"Kindle – Read eBooks, Magazines & Textbooks",169747456,USD,0.0,252076,80,3.5,4.5,5.11,4+,Book,37,5,9,1
+1009442510,Colorfy: Coloring Book for Adults,124185600,USD,0.0,247809,217,4.5,4.5,3.7.1,4+,Entertainment,37,5,13,1
+672150402,Boom Beach,153955328,USD,0.0,241929,2013,4.5,4.5,30.125,9+,Games,38,5,4,1
+896112560,MARVEL Contest of Champions,868048896,USD,0.0,233599,299,4.5,4.5,13.1.0,12+,Games,38,5,17,1
+298867247,Chase Mobile℠,39505920,USD,0.0,233270,14625,4.5,4.5,2.610,4+,Finance,37,0,2,1
+300238550,"Mint: Personal Finance, Budget, Bills & Money",162891776,USD,0.0,232940,683,4.0,4.5,5.9.0,4+,Finance,37,5,1,1
+855627886,MADDEN NFL Mobile,147190784,USD,0.0,230289,411,4.5,4.5,3.9.1,4+,Games,37,5,1,1
+284910350,"Yelp - Nearby Restaurants, Shopping & Services",167407616,USD,0.0,223885,3726,4.0,4.5,11.15.0,12+,Travel,37,5,18,1
+469960709,Bejeweled Blitz,91591680,USD,0.0,221002,131,4.0,4.0,1.29.1,4+,Games,38,5,1,1
+417817520,Tiny Wings,30252032,USD,0.99,219418,328,4.5,4.5,2.2,4+,Games,37,0,6,1
+658293394,Can You Escape,64293888,USD,0.0,218024,1734,4.5,4.5,2.0,4+,Games,40,5,16,1
+322423174,Traffic Rush,8573952,USD,0.99,213092,51,3.5,4.5,1.45.1,9+,Games,37,3,1,1
+364252504,"The Weather Channel App for iPad – best local forecast, radar map, and storm tracking",59101184,USD,0.0,208648,25664,4.0,4.5,4.5.1,4+,Weather,24,4,1,1
+308750436,Dictionary.com Dictionary & Thesaurus,111275008,USD,0.0,200047,177,4.0,4.0,7.1.3,4+,Reference,37,0,1,1
+991153141,Fallout Shelter,1172922368,USD,0.0,199396,1131,4.5,4.5,1.12,12+,Games,38,5,5,1
+913292932,SimCity BuildIt,96606208,USD,0.0,198338,2078,4.5,4.5,1.16.94,4+,Games,38,5,15,1
+597855590,Real Basketball,70336512,USD,0.0,198050,94315,4.5,4.5,1.9,4+,Games,43,5,1,1
+328415391,Yahoo Fantasy Sports,131000320,USD,0.0,190670,19,3.5,2.5,9.1.0,17+,Sports,37,3,45,1
+281940292,"WeatherBug - Local Weather, Radar, Maps, Alerts",100524032,USD,0.0,188583,2822,3.5,4.5,5.0.0,4+,Weather,37,5,3,1
+610391947,Asphalt 8: Airborne,1777940480,USD,0.0,188568,2850,4.5,4.5,3.0.0,12+,Games,37,5,15,1
+439873467,Magic Jigsaw Puzzles,235259904,USD,0.0,187666,1263,4.5,4.5,2.11.1,4+,Games,37,5,10,1
+608206510,Farm Heroes Saga,262421504,USD,0.0,187579,286,4.5,4.5,2.72.16,4+,Games,38,4,14,1
+301387274,Pocket God,145293312,USD,0.99,187529,1071,4.0,4.0,1.48.2,9+,Entertainment,43,5,1,1
+303849934,Beer Pong Game,188956672,USD,0.0,187315,9,2.0,4.0,17.05.15,17+,Games,37,5,9,1
+346453382,Glow Hockey 2 FREE,34056767,USD,0.0,186653,226,3.5,3.5,2.2.9,4+,Games,43,0,1,1
+600674056,Pictoword: Fun 2 Pics Guess What's the Word Trivia,126216192,USD,0.0,186089,1010,5.0,4.5,2.4.2,4+,Games,37,5,1,1
+431946152,ROBLOX,115178496,USD,0.0,183621,300,4.5,4.5,2.293.126451,12+,Games,37,5,1,1
+342792525,IMDb Movies & TV - Trailers and Showtimes,88702976,USD,0.0,183425,4724,4.5,5.0,7.11,12+,Entertainment,37,5,10,1
+479536744,Bejeweled Classic,99593216,USD,0.0,183259,804,4.5,4.0,2.1,4+,Games,37,0,5,1
+570439968,Daily Celebrity Crossword,94110720,USD,0.0,181384,1766,4.0,4.5,4.12.23,4+,Games,37,5,1,1
+927006017,AdVenture Capitalist,292289536,USD,0.0,181359,11269,4.5,5.0,5.1,4+,Games,38,5,1,1
+289523017,Blackjack by MobilityWare,105431040,USD,0.0,180087,1101,3.5,4.5,5.5.3,12+,Games,37,5,5,1
+898968647,Call of Duty®: Heroes,210842624,USD,0.0,179416,839,4.5,4.5,4.0.1,12+,Games,38,5,7,1
+583222866,Deer Hunter Classic,185881600,USD,0.0,179111,167,4.5,4.5,3.4.0,17+,Games,38,5,12,1
+428845974,"ooVoo – Free Video Call, Text and Voice",113510400,USD,0.0,177501,1014,4.5,4.5,3.1.6,4+,Social Networking,37,5,21,1
+995999703,Agar.io,63954944,USD,0.0,176514,1310,4.5,4.0,1.7.1,9+,Games,38,5,1,1
+848160327,Piano Tiles (Don't Tap The White Tile),22286336,USD,0.0,172686,2026,4.5,4.0,4.1.1,4+,Games,38,4,13,1
+332568551,TRUTH or DARE!!! - FREE,20795392,USD,0.0,171055,31,3.0,3.5,5,12+,Entertainment,38,1,1,1
+420635506,Angry Birds Rio,138319872,USD,0.0,170843,123,4.5,4.0,2.6.6,4+,Games,40,0,1,1
+542180079,The Secret Society® - Hidden Mystery,1433910272,USD,0.0,168674,252,4.0,4.5,1.25.2500,4+,Games,37,5,11,1
+314716233,TextNow - Unlimited Text + Calls,130637824,USD,0.0,164963,69,3.5,4.0,8.5.1,4+,Social Networking,37,5,3,1
+556164008,Real Racing 3,874184704,USD,0.0,164483,171,4.5,4.5,5.3.0,4+,Games,38,5,12,1
+494833223,Highway Rider,169675776,USD,0.0,164377,78,4.5,4.0,2.0.2,12+,Games,37,4,1,1
+382617920,Viber Messenger – Text & Call,129657856,USD,0.0,164249,206,4.5,4.5,6.9.0,4+,Social Networking,37,5,32,1
+363282253,Plants vs. Zombies HD,225859584,USD,0.99,163598,503,5.0,4.0,1.9.12,9+,Games,24,5,5,1
+570060128,"Duolingo - Learn Spanish, French and more",89782272,USD,0.0,162701,1881,4.5,4.5,5.1.0,4+,Education,37,5,24,1
+281796108,Evernote - stay organized,158578688,USD,0.0,161065,26,4.0,3.5,8.2.2,4+,Productivity,37,5,23,1
+804379658,Words with Friends – Best Word Game,183009280,USD,0.0,160668,613,4.5,4.0,5.35,4+,Games,37,4,6,1
+429009175,WatchESPN,33714176,USD,0.0,159735,2556,4.0,4.5,1.9.9,4+,Sports,37,2,1,1
+1118431695,Bowmasters - Top Multiplayer Bowman Archery Game,164000768,USD,0.0,159323,24387,4.5,4.5,2.4,12+,Games,37,5,1,1
+905852173,aa,11337728,USD,0.0,158845,112,4.5,4.0,1.5.3,4+,Games,37,4,1,1
+840919914,2048,15536128,USD,0.0,157882,4710,4.5,4.5,2.0.4,4+,Games,40,5,7,1
+656971078,Episode - Choose Your Story,182361088,USD,0.0,155903,713,4.5,4.5,6.20,12+,Games,38,5,1,1
+585027354,Google Maps - Navigation & Transit,120232960,USD,0.0,154911,1253,4.5,4.0,4.31.1,12+,Navigation,37,5,34,1
+447689011,Infinity Blade II,1344401408,USD,0.99,153588,595,4.5,4.5,1.3.4,12+,Games,40,5,16,1
+639930688,Dumb Ways to Die,842893312,USD,0.0,151559,866,4.5,4.5,2.2.0,12+,Games,40,5,1,1
+322439990,MyRadar NOAA Weather Radar Forecast,127284224,USD,0.0,150158,3392,4.5,5.0,5.1.4,4+,Weather,37,2,8,1
+791211390,Jurassic World™: The Game,482223104,USD,0.0,149138,913,4.5,4.5,1.13.14,4+,Games,37,5,10,1
+309025938,The Masters Tournament,120725504,USD,0.0,148160,63,4.5,3.5,9.0.701,4+,Sports,37,5,1,1
+406719683,GasBuddy,145240064,USD,0.0,145549,330,4.5,4.5,4.4.6.1,17+,Travel,37,4,1,1
+1053533457,Color Switch,77757440,USD,0.0,145043,147,4.5,4.5,7.91,4+,Games,38,5,4,1
+300048137,AccuWeather - Weather for Life,181941248,USD,0.0,144214,2162,3.5,4.0,10.4.1,4+,Weather,37,1,43,1
+552039496,The Room,338273280,USD,0.99,143908,1056,5.0,5.0,1.0.4,9+,Games,24,5,1,1
+525818839,Plague Inc.,95603712,USD,0.99,143285,406,4.5,4.5,1.14.1,12+,Games,40,5,14,1
+547702041,Tinder,126720000,USD,0.0,143040,114,3.5,4.0,7.5.1,17+,Lifestyle,37,0,42,1
+530621395,Wish - Shopping Made Fun,48428032,USD,0.0,141960,579,4.5,4.5,3.20.6,12+,Shopping,37,5,30,1
+606190854,Iron Force,124666880,USD,0.0,141634,1655,5.0,4.0,2.4.1,17+,Games,38,5,12,1
+443637419,Racing Penguin Free - Top Flying and Diving Game,79857664,USD,0.0,141224,1909,4.5,4.5,5.8.6,4+,Games,38,5,1,1
+880178264,Two Dots,285004800,USD,0.0,139486,137,4.5,4.5,3.11.3,4+,Games,38,5,1,1
+495583717,Jigsaw Puzzle,104091648,USD,0.0,138726,385,4.5,4.5,3.6.2,4+,Games,37,5,46,1
+286058814,"Yahoo Sports - Teams, Scores, News & Highlights",130583552,USD,0.0,137951,131,4.0,4.5,6.9,4+,Sports,37,2,6,1
+852912420,Summoners War,38124544,USD,0.0,137122,336,4.5,4.0,3.4.3,12+,Games,38,5,15,1
+331308914,Weight Watchers,230720512,USD,0.0,136833,64,3.5,4.5,5.9.0,12+,Health & Fitness,37,5,6,1
+422689480,"Gmail - email by Google: secure, fast & organized",236067840,USD,0.0,135962,677,4.0,4.5,5.0.170507,4+,Productivity,37,5,56,1
+336353151,SoundCloud - Music & Audio,105009152,USD,0.0,135744,594,4.0,4.5,5.6.0,4+,Music,37,4,7,1
+635573390,Sniper Shooter: Gun Shooting Games,113509376,USD,0.0,134080,451,5.0,5.0,5.0.4,12+,Games,37,5,1,1
+850417475,Candy Crush Soda Saga,241862656,USD,0.0,133394,101,4.5,4.5,1.91.5,4+,Games,40,5,6,1
+367623543,Fox News,64705536,USD,0.0,132703,394,4.0,3.0,2.6,4+,News,37,5,1,0
+421254504,Magic Piano by Smule,55030784,USD,0.0,131695,1102,4.5,4.0,8.3.1,4+,Music,37,5,12,1
+449735650,Where's My Water?,90853376,USD,1.99,131656,484,4.5,4.0,1.14.1.58,4+,Games,40,5,11,1
+383298204,shopkick - Shopping Rewards & Discounts,74822656,USD,0.0,130823,29363,4.5,5.0,5.1.4,4+,Shopping,37,4,2,1
+521671873,My Singing Monsters,240521216,USD,0.0,130519,1445,4.5,5.0,2.0.8,4+,Games,37,5,7,1
+381471023,Flashlight Ⓞ,42027008,USD,0.0,130450,1010,5.0,4.5,2.1.2,4+,Utilities,40,0,22,1
+395979574,Spider Solitaire Free by MobilityWare,91588608,USD,0.0,128739,5515,4.5,4.5,3.4.0,4+,Games,38,5,3,1
+416023011,My Verizon,150791168,USD,0.0,126948,107245,4.5,4.5,5.10.0,4+,Utilities,37,3,2,1
+297606951,"Amazon App: shop, scan, compare, and read reviews",133688320,USD,0.0,126312,22,3.5,3.0,9.10.0,4+,Shopping,37,5,8,1
+603527166,Smash Hit,97505280,USD,0.0,126233,22200,4.5,4.5,1.4.0,4+,Games,40,5,9,1
+500963785,▻Solitaire,58882048,USD,0.0,124618,8588,4.5,4.5,5.4,4+,Games,40,5,7,1
+657500465,My Talking Tom,255747072,USD,0.0,123859,1174,4.5,4.5,4.1.2,4+,Games,38,5,13,1
+448639966,Pic Collage - Picture Editor & Photo Collage Maker,109210624,USD,0.0,123433,1521,5.0,5.0,7.12.17,12+,Photo & Video,37,5,12,1
+844570015,Funimate video editor: add cool effects to videos,104902656,USD,0.0,123268,64,4.5,4.5,6.5.7,12+,Photo & Video,37,4,7,1
+288113403,iTranslate - Language Translator & Dictionary,287933440,USD,0.0,123215,25,3.5,5.0,10.5.4,4+,Productivity,37,5,23,1
+318592730,Guess My Age  Math Magic,767126,USD,0.0,123190,68841,3.0,3.0,1.1,4+,Education,47,0,1,1
+561416817,Clumsy Ninja,255400960,USD,0.0,123032,608,4.5,4.5,1.29.0,4+,Games,40,5,5,1
+632827808,Tetris® Blitz,131477504,USD,0.0,122868,176,4.5,4.0,3.5.4,4+,Games,37,5,11,1
+921022358,Star Wars™: Galaxy of Heroes,119752704,USD,0.0,122260,1944,4.5,4.5,0.8.0,9+,Games,37,5,15,1
+534342529,Bubble Mania™,189151232,USD,0.0,122081,49,4.5,4.0,1.9,4+,Games,38,5,1,1
+284847138,Bank of America - Mobile Banking,160925696,USD,0.0,119773,2336,3.5,4.5,7.3.8,4+,Finance,37,0,2,1
+283646709,PayPal - Send and request money safely,227795968,USD,0.0,119487,879,4.0,4.5,6.12.0,4+,Finance,37,0,19,1
+509993510,Smule Sing!,109940736,USD,0.0,119316,33,4.5,4.0,5.2.3,9+,Music,37,5,12,1
+326885152,Mad Libs,118498304,USD,0.0,117889,725,3.0,4.5,3.3.3,4+,Entertainment,38,1,1,1
+1045901853,Geometry Dash Meltdown,55445504,USD,0.0,117470,117470,4.5,4.5,1.0,4+,Games,40,5,1,1
+572534490,Beat the Boss 2,205271040,USD,0.0,117338,22708,4.5,4.5,2.8.0,12+,Games,43,5,15,1
+616655687,"Village Life: Love, Marriage and Babies",502828032,USD,0.0,116620,6593,4.5,4.5,2.6.9,4+,Games,38,4,8,1
+471063940,Call of Duty: Black Ops Zombies,880267264,USD,6.99,116601,5839,4.5,4.5,1.3.5,17+,Games,43,4,1,1
+949701151,MORTAL KOMBAT X,1738707968,USD,0.0,114475,1265,4.5,4.5,1.13,17+,Games,39,5,13,1
+311972587,Sky Burger - Build & Match Food Free,146228224,USD,0.0,114096,2157,4.5,4.0,3.0.3,4+,Games,37,5,3,1
+538212549,Big Fish Casino – Best Vegas Slot Machines & Games,108107776,USD,0.0,113959,707,4.5,4.5,10.3.1,12+,Games,38,5,1,1
+296581815,OpenTable - Restaurant Reservations,93420544,USD,0.0,113936,150,4.5,5.0,10.18.0,4+,Food & Drink,37,1,6,1
+577586159,Yahoo Mail - Keeps You Organized!,177899520,USD,0.0,113709,18,4.0,4.5,4.16.1,4+,Productivity,37,5,45,1
+331786748,"CNN: Breaking US & World News, Live Video",80211968,USD,0.0,112886,298,3.5,1.5,5.3,12+,News,37,1,1,1
+552208596,Followers - Social Analytics For Instagram,59160576,USD,0.0,112778,139,4.5,4.5,6.8.4,4+,Social Networking,37,5,11,1
+628677149,Yahoo Weather,123047936,USD,0.0,112603,537,4.5,4.5,1.11.3,4+,Weather,37,5,39,1
+653508448,"Monster Legends RPG - War, Fight & Heroes Game",170844160,USD,0.0,111579,365,4.5,5.0,5.2.3,9+,Games,38,5,12,1
+418987775,TuneIn Radio - MLB NBA Audiobooks Podcasts Music,101735424,USD,0.0,110420,370,4.5,4.5,11.9,12+,Music,37,4,14,1
+685675706,Fairway Solitaire Blast,124966912,USD,0.0,110062,613,4.5,4.5,2.7.13,4+,Games,38,5,9,1
+460177396,Twitch,79983616,USD,0.0,109549,149,4.5,4.5,3.20.2,12+,Entertainment,37,5,26,1
+299515267,Allrecipes Dinner Spinner,36399104,USD,0.0,109349,1540,3.5,5.0,6.3,12+,Food & Drink,37,5,1,1
+880047117,Angry Birds 2,446483456,USD,0.0,109104,3636,4.0,4.5,2.13.0,4+,Games,37,5,10,1
+309172177,myAT&T,68491264,USD,0.0,108507,628,3.0,3.0,5.3,4+,Utilities,37,5,2,1
+564540143,Hill Climb Racing,108322816,USD,0.0,108183,186,4.5,4.5,1.33.0,9+,Games,37,5,1,1
+297430070,Target,138754048,USD,0.0,108131,13,3.0,2.0,8.21.0,4+,Shopping,37,0,1,1
+667728512,Game of War - Fire Age,220386304,USD,0.0,107916,507,4.0,3.0,3.22.510,9+,Games,37,5,29,1
+1091944550,slither.io,32516096,USD,0.0,107817,11929,3.5,4.0,1.4.2,4+,Games,40,4,1,1
+714796093,Cooking Fever,106808320,USD,0.0,107797,5073,4.5,4.5,2.3.1,4+,Games,38,5,14,1
+313199385,Sunday Lawn,16086016,USD,0.99,107727,55,3.5,4.5,1.41.1,4+,Games,37,3,1,1
+869231055,Angry Birds Transformers,364130304,USD,0.0,106434,535,4.5,4.5,1.27.1,4+,Games,37,5,10,1
+479280326,⋆Solitaire,49839104,USD,0.0,106398,12554,4.5,4.5,1.5.6,4+,Games,37,5,1,1
+510855668,Amazon Music,77778944,USD,0.0,106235,4605,4.5,5.0,6.5.0,4+,Music,37,5,6,1
+284815117,SCRABBLE Premium,227547136,USD,7.99,105776,166,3.5,2.5,5.19.0,4+,Games,37,0,6,1
+835599320,musical.ly - your video social network,173910016,USD,0.0,105429,0,4.5,0.0,5.7.3,12+,Photo & Video,37,0,21,1
+379693831,"Audible – audio books, original series & podcasts",81558528,USD,0.0,105274,1774,4.5,4.5,2.23,4+,Book,37,5,5,1
+320606217,Sleep Cycle alarm clock,79315968,USD,0.0,104539,11,4.5,4.5,5.4.1,4+,Health & Fitness,37,5,13,1
+951364656,ZigZag,120344576,USD,0.0,104502,20813,4.5,4.0,1.2.1,4+,Games,40,4,1,1
+838500730,Family Guy: The Quest for Stuff,131257344,USD,0.0,104060,269,4.5,4.0,1.48.3,17+,Games,38,4,19,1
+392988420,"Zappos: shop shoes & clothes, fast free shipping",70325248,USD,0.0,103655,39452,5.0,5.0,3.9.0,4+,Shopping,37,4,1,1
+519817714,"Credit Karma: Free Credit Scores, Reports & Alerts",95494144,USD,0.0,101679,181,5.0,5.0,4.11.1,4+,Finance,37,0,1,1
+485126024,DoubleDown Casino & Slots  – Vegas Slot Machines!,45689856,USD,0.0,101599,457,4.0,4.0,3.14.2,12+,Games,37,5,6,1
+489321253,Action Movie FX,142996480,USD,0.0,101222,160,4.5,4.5,3.2.12,9+,Entertainment,38,1,8,1
+399355755,Text Free: Free Texting + Calling + MMS,136184832,USD,0.0,100477,35,4.0,4.5,9.25,4+,Lifestyle,37,5,1,1
+626469977,MLB.com Home Run Derby 17,232590336,USD,0.0,100035,195,4.5,3.5,5.0.3,4+,Games,37,5,1,1
+398129933,The Calculator - Free and Easy Calculating!,84945920,USD,0.0,99244,1760,4.5,4.5,4.7.2,4+,Utilities,38,5,11,1
+696565994,Shadow Fight 2,144713728,USD,0.0,99206,1876,4.5,4.5,1.9.29,12+,Games,40,5,1,1
+454086751,Flick Home Run !,27196416,USD,0.99,98851,478,4.5,4.0,1.7.2,4+,Games,38,0,1,1
+339440515,Voice Changer Plus,40722432,USD,0.0,98777,233,3.0,4.0,5.01,4+,Entertainment,37,2,12,1
+429610587,iFunny :),66599936,USD,0.0,98344,877,3.5,4.5,4.6.8,17+,Entertainment,37,2,2,1
+640364616,Terraria,126036992,USD,4.99,98036,11022,4.5,4.5,1.2.12785,9+,Games,37,5,5,1
+491730359,The CW,30552064,USD,0.0,97368,9,4.5,3.5,v2.13.9,12+,Entertainment,37,5,9,1
+806077016,War Robots,600535040,USD,0.0,97122,380,4.5,4.5,2.9.0,12+,Games,38,5,17,1
+372648912,MeetMe - Chat and Meet New People,133956608,USD,0.0,97072,143,4.0,3.5,12.1.1.0,17+,Social Networking,37,0,18,1
+577232024,Lumosity - Brain Training,214962176,USD,0.0,96534,188,4.5,4.5,9.8,4+,Education,37,5,6,1
+499511971,Angry Birds Space,161200128,USD,0.0,95892,2,4.0,1.0,2.2.12,4+,Games,37,0,1,1
+530957474,Photo Collage Maker & Photo Editor - Live Collage,94266368,USD,0.0,93781,0,4.5,0.0,5.5.0,4+,Photo & Video,37,5,4,1
+1093190533,PewDiePie's Tuber Simulator,266766336,USD,0.0,90851,535,5.0,5.0,1.9.1,9+,Games,37,5,17,1
+462638897,Fitbit,132913152,USD,0.0,90496,399,4.0,3.5,2.36,4+,Health & Fitness,37,0,9,1
+539124565,"We Heart It - Fashion, wallpapers, quotes, tattoos",79953920,USD,0.0,90414,44,5.0,4.0,8.3.0,12+,Social Networking,37,5,31,1
+592447445,Vine Camera,51642368,USD,0.0,90355,150,3.5,1.5,6.0.2,4+,Photo & Video,37,0,25,1
+364234221,Angry Birds HD,176164864,USD,0.0,89110,114,4.5,4.0,7.4.0,4+,Games,24,5,10,1
+335364882,"Walgreens – Pharmacy, Photo, Coupons and Shopping",169138176,USD,0.0,88885,333,4.5,4.0,6.5,12+,Shopping,37,5,1,1
+962194608,Google Photos - unlimited photo and video storage,160215040,USD,0.0,88742,1145,5.0,5.0,2.17.0,4+,Photo & Video,37,5,75,1
+312343159,The Moron Test,45712384,USD,0.0,88613,392,4.0,4.5,6.3.1,4+,Entertainment,37,5,1,1
+1145275343,Super Mario Run,194245632,USD,0.0,87958,370,2.5,4.0,2.1.1,4+,Games,37,5,11,1
+940596201,Tap Titans,393954304,USD,0.0,87898,8763,4.5,5.0,4.0.0,4+,Games,43,5,18,1
+444844790,Scribblenauts Remix,209452032,USD,0.99,86127,179,4.5,4.0,7.1,9+,Games,40,5,2,1
+558512661,InsTrack for Instagram - Analytics Plus More,14225408,USD,0.0,85535,1897,4.5,4.5,2.3.4,4+,Social Networking,37,5,31,1
+847492141,Score! Hero,170775552,USD,0.0,85395,2856,4.5,4.5,1.55,4+,Games,37,5,12,1
+767319014,Angry Birds Epic RPG,581533696,USD,0.0,84680,68,4.5,4.5,2.1.2,4+,Games,37,5,11,1
+1031002863,Color Therapy Adult Coloring Book for Adults,135236608,USD,0.0,84062,1450,5.0,4.5,2.0,4+,Book,37,4,2,1
+535500008,Hungry Shark Evolution,320535552,USD,0.0,83784,358,4.5,4.5,4.8,12+,Games,38,5,33,1
+355554941,SoundHound Song Search & Music Player,70516736,USD,0.0,82602,13,4.0,4.5,7.6,9+,Music,37,5,23,1
+680022952,Candy Blast Mania,240198656,USD,0.0,81648,9,4.5,5.0,1.9.6,4+,Games,38,5,8,1
+815181808,Godus,167555072,USD,0.0,81311,709,4.5,4.5,1.14,4+,Games,38,4,1,1
+307386350,DIRECTV,151397376,USD,0.0,81006,25,3.5,3.0,4.9.705,4+,Entertainment,37,0,1,1
+638689075,Township,175876096,USD,0.0,80801,953,4.5,4.5,4.8.0,4+,Games,38,5,14,1
+314855255,Best Buy,180500480,USD,0.0,80424,46,4.0,4.5,10.11.0,4+,Shopping,37,5,2,1
+595558452,4 Pics 1 Word,131642368,USD,0.0,80308,489,4.5,4.5,7.3.3,12+,Games,37,5,1,1
+962969578,Blackbox - think outside the box,100392960,USD,0.0,80058,444,5.0,5.0,1.3.10,4+,Games,37,0,1,1
+512727332,Flipagram,84792320,USD,0.0,79905,324,4.5,4.5,8.19.2,12+,Photo & Video,37,5,36,1
+454781476,Zombieville USA 2,175780864,USD,0.99,79683,597,4.5,4.5,1.6.1,12+,Games,40,3,1,1
+993492744,"Egg, Inc.",53579776,USD,0.0,79074,8442,5.0,5.0,1.5,4+,Games,38,4,1,1
+533079551,DEAD TRIGGER,301228032,USD,0.0,78918,4345,4.5,4.5,1.9.0,17+,Games,43,4,1,1
+364191819,ABC – Watch Live TV & Stream Full Episodes,85724160,USD,0.0,78890,449,3.0,3.5,5.0.14,12+,Entertainment,37,5,1,0
+981633844,Block Craft 3D: Building Simulator Game For Free,93063168,USD,0.0,78412,11001,4.5,5.0,2.3.2,4+,Games,37,5,9,1
+723795263,Trivia Crack (No Ads),247385088,USD,2.99,77370,2,4.5,4.5,2.40,4+,Games,37,5,26,1
+284791396,Solitaire by MobilityWare,49618944,USD,4.99,76720,4017,4.5,4.5,4.10.1,4+,Games,38,4,11,1
+905921908,Daddy Long Legs,87174144,USD,0.0,76622,55,4.5,4.5,3.12.0,4+,Games,38,5,1,1
+433592592,Nyan Cat: Lost In Space,96872448,USD,0.0,76392,700,4.5,4.5,9.0,4+,Games,37,5,1,1
+890378044,Toy Blast,268521472,USD,0.0,75822,1321,4.5,4.5,3348,4+,Games,38,5,1,1
+642821482,Angry Birds Go!,499580928,USD,0.0,75793,953,4.0,3.5,2.6.3,4+,Games,37,5,10,1
+398329664,Angry Birds Seasons HD,710486016,USD,0.0,75714,481,4.0,4.5,6.6.1,4+,Games,24,5,1,1
+372513032,"Tango - Free Video Call, Voice and Chat",134848512,USD,0.0,75412,66,4.5,4.5,4.1.219400,17+,Social Networking,37,5,18,1
+620112416,Covet Fashion - The Game for Dresses & Shopping,112668672,USD,0.0,75034,66,4.0,4.0,3.02.25,4+,Games,38,5,6,1
+718421443,QuizUp™,139014144,USD,0.0,72989,327,4.5,3.5,3.2.7,12+,Games,37,2,5,1
+736179781,Xbox,111777792,USD,0.0,72187,909,4.5,4.5,1705.522.332,12+,Entertainment,37,3,18,1
+288429040,LinkedIn,273844224,USD,0.0,71856,62,3.5,4.5,9.1.32,4+,Social Networking,37,2,23,1
+319295332,TuneIn Radio Pro - MLB Audiobooks Podcasts Music,101925888,USD,9.99,71609,99,4.5,4.0,11.9,12+,Music,37,4,14,1
+517260318,Bejeweled Classic HD,151254016,USD,0.0,70926,927,4.5,4.5,2.1,4+,Games,24,5,5,1
+338137227,"Walmart: Free 2-Day Shipping,* Easy Store Shopping",146507776,USD,0.0,70286,51,3.0,4.0,17.8,4+,Shopping,37,0,1,1
+420636551,Angry Birds Rio HD,226899968,USD,0.0,70122,251,4.5,4.0,2.6.6,4+,Games,24,5,1,1
+531184261,Trigger Fist,144196155,USD,0.0,69624,58269,4.5,4.5,1.11,12+,Games,43,5,1,1
+522408559,Slots - Pharaoh's Way,76591104,USD,0.0,69610,69,4.5,4.0,7.4.0,12+,Games,43,4,1,1
+1080487957,Stack,115195904,USD,0.0,69368,28389,4.5,4.5,2.1.1,4+,Games,40,5,1,1
+537263603,UNO ™ & Friends,131464192,USD,0.0,68911,2137,4.0,4.0,3.3.3,9+,Games,38,5,14,1
+624533261,Bloons TD Battles,107245568,USD,0.0,67861,173,4.5,4.5,4.3.1,9+,Games,40,5,1,1
+1064216828,Reddit Official App: All That's Trending and Viral,30855168,USD,0.0,67560,1442,4.5,4.5,3.0,17+,News,37,1,1,1
+1010704842,Dream League Soccer 2017,359676928,USD,0.0,66004,6514,4.5,4.5,4.04,4+,Games,37,5,12,1
+593715088,Solitaire·,24890368,USD,0.0,66002,3238,4.5,4.5,3.1,4+,Games,37,4,18,1
+694972182,Ace Fishing: Wild Catch,224596992,USD,0.0,65831,30,4.5,4.5,2.5.4,4+,Games,40,5,14,1
+366869252,OverDrive – Library eBooks and Audiobooks,39844864,USD,0.0,65450,2721,4.0,4.5,3.6.4,4+,Book,37,5,18,1
+533173905,MY LITTLE PONY: Magic Princess Quests,107032576,USD,0.0,65201,148,4.5,4.0,3.5.0,4+,Games,38,4,13,1
+867964741,LINE: Disney Tsum Tsum,77043712,USD,0.0,65155,71,4.5,3.5,1.32.2,4+,Games,37,5,5,1
+300704847,Speedtest by Ookla,23936000,USD,0.0,65016,274,3.5,5.0,3.8.2,4+,Utilities,38,4,17,1
+555376968,ESPN Fantasy Football Baseball Basketball Hockey,25164800,USD,0.0,64925,1543,4.0,3.5,3.2.0,4+,Sports,37,5,1,1
+674657235,MARVEL Spider-Man Unlimited,906462208,USD,0.0,64586,330,4.5,4.5,3.1.0,12+,Games,38,5,15,1
+842842640,Google Docs,199993344,USD,0.0,64259,138,4.5,4.5,1.2017.20203,4+,Productivity,37,4,69,1
+338057689,Call of Duty: Zombies,52821364,USD,4.99,63943,31264,4.0,4.0,1.5.0,17+,Games,47,0,1,1
+767473889,Criminal Case,131917824,USD,0.0,63291,1991,4.5,4.5,1.16,12+,Games,37,5,12,1
+450542233,Cut the Rope: Experiments,124532736,USD,0.99,63272,305,4.5,4.5,1.7.6,4+,Games,40,0,11,1
+922488002,WordBubbles!,79702016,USD,0.0,62061,2363,4.5,4.5,1.3.9,4+,Games,37,5,1,1
+504631398,USA TODAY,96060416,USD,0.0,61724,100,3.5,4.5,4.14.1,4+,News,37,4,1,1
+305939712,Match™ - #1 Dating App.,101259264,USD,0.0,60659,57,3.0,2.5,17.05.01,17+,Social Networking,37,5,10,1
+648668184,Happy Wheels,38466560,USD,0.0,60601,5645,4.5,4.5,1.0.6,17+,Games,38,5,1,1
+424216726,Countdown‼ (Event Reminders and Timer),81287168,USD,0.0,60490,1102,4.0,4.0,4.2.5,4+,Lifestyle,37,1,22,1
+690852527,Cascade: Fun Spin and Match Puzzle Game,98864128,USD,0.0,60488,538,4.5,5.0,1.8.6,4+,Games,38,5,7,1
+959619034,Flight Pilot Simulator 3D: Flying Game For Free,142512128,USD,0.0,60360,6551,5.0,4.5,1.3.4,4+,Games,38,5,1,1
+769737983,Bowling King,174499840,USD,0.0,60271,114,4.5,4.0,1.40.23,4+,Games,38,4,1,1
+339532909,Redbox,83906560,USD,0.0,60236,58,3.0,4.5,5.24,12+,Entertainment,37,0,1,1
+442012681,Skype for iPad,129096704,USD,0.0,60163,104,4.0,4.5,6.35.1,4+,Social Networking,24,5,32,1
+307184892,"CBS Sports App - Sports Scores, News, Stats, Watch",120357888,USD,0.0,59639,11,3.0,2.5,10.2.2,17+,Sports,37,4,1,1
+507874739,Google Drive - free online storage,185695232,USD,0.0,59255,599,4.5,4.5,4.2017.17212,4+,Productivity,37,5,47,1
+828578246,Gummy Drop! – A Match 3 Puzzle Game,123356160,USD,0.0,59158,437,4.5,4.5,2.31.0,4+,Games,38,5,10,1
+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
+1017064541,Viva™ Slots Las Vegas Classic Casino Games,167431168,USD,0.0,58738,2560,4.5,5.0,1.34.3,12+,Games,38,5,1,1
+792595594,"Logos Quiz -Guess the most famous brands, new fun!",72567808,USD,0.0,58640,2023,5.0,5.0,2.0,4+,Games,38,2,1,1
+875063456,Elevate - Brain Training and Games,196350976,USD,0.0,58092,436,5.0,5.0,4.0.1,4+,Education,37,5,31,1
+615563599,Videoshop - Video Editor,140902400,USD,1.99,57878,6343,4.5,5.0,6.0.1,4+,Photo & Video,37,5,8,1
+294056623,FOX Sports Mobile,72748032,USD,0.0,57500,103,3.0,4.0,3.5.13,4+,Sports,37,0,1,0
+468996152,OfferUp - Buy. Sell. Simple.,73138176,USD,0.0,57348,1213,4.5,4.5,2.10.17,4+,Shopping,37,0,1,1
+546871573,Bingo!™,236914688,USD,0.0,56852,6,4.5,3.0,2.4.11,12+,Games,38,5,1,1
+421998342,Talking Tom Cat 2 for iPad,73111552,USD,0.0,56399,98,4.0,4.0,5.2.2,4+,Entertainment,24,5,13,1
+284876795,TripAdvisor Hotels Flights Restaurants,207907840,USD,0.0,56194,87,4.0,3.5,21.1,4+,Travel,37,1,26,1
+376510438,Hulu: Watch TV Shows & Stream the Latest Movies,99568640,USD,0.0,56170,1264,2.0,2.0,4.10.1,12+,Entertainment,37,5,2,1
+407558537,Capital One Mobile,273259520,USD,0.0,56110,57,4.5,4.0,5.19.1,4+,Finance,37,5,2,1
+1078643602,WordWhizzle,68079616,USD,0.0,56054,2972,4.5,4.5,1.1.5,4+,Games,37,5,1,1
+442839435,NBC – Watch Now and Stream Full TV Episodes,135252992,USD,0.0,55950,248,4.0,3.5,4.8.0,12+,Entertainment,37,5,1,1
+706099830,My Boo - Virtual Pet with Mini Games for Kids,105143296,USD,0.0,55783,521,4.5,4.5,2.6.1,4+,Games,38,5,5,1
+535886823,Google Chrome – The Fast and Secure Web Browser,95385600,USD,0.0,55750,163,3.5,3.0,58.0.3029.113,17+,Utilities,37,5,37,1
+604186826,Racing Rivals,339898368,USD,0.0,55548,97,4.0,3.5,6.2.3,4+,Games,38,5,8,1
+506460513,Emoji>,130970624,USD,0.0,55338,455,4.5,4.5,8.9,9+,Entertainment,38,5,21,1
+375380948,Apple Store,70782976,USD,0.0,55171,187,3.5,3.5,4.2,4+,Shopping,37,5,21,1
+1027688889,Piano Tiles 2™(Don't Tap The White Tile 2),81668096,USD,0.0,55077,251,4.5,4.5,3.1.9,4+,Games,38,5,17,1
+1032381310,Kendall and Kylie,556161024,USD,0.0,55011,774,4.5,4.5,2.8.0,12+,Games,38,5,1,1
+338828953,Shop Savvy Barcode Scanner - Price Compare & Deals,89517056,USD,0.0,54630,280,2.5,4.5,12.0,4+,Shopping,37,4,1,1
+909351158,My Talking Angela,398783488,USD,0.0,54549,404,4.5,4.5,3.1.1,4+,Games,38,5,13,1
+476555713,Alarm Clock HD Free - Digital Alarm Clock Display,82529280,USD,0.0,54496,252,4.5,4.0,3.0.5,4+,Utilities,37,5,12,1
+317904170,The Sims 3,430128128,USD,6.99,54408,65,3.5,2.0,1.4.10,12+,Games,37,5,8,1
+785638228,Mixgram - Picture Collage Maker - Pic Photo Editor,90218496,USD,0.0,54282,1440,4.5,4.5,4.2.2,4+,Photo & Video,37,5,16,1
+319204550,2016 U.S. Open Golf Championship,139545600,USD,0.0,54192,32,4.0,2.0,8.0.263,4+,Sports,37,0,1,1
+364740856,Dictionary.com Dictionary & Thesaurus for iPad,165748736,USD,0.0,54175,10176,4.5,4.5,4.0,4+,Reference,24,5,9,1
+466710109,HB2 PLUS,56817664,USD,0.99,54073,73,5.0,4.0,1.3.0,4+,Games,38,5,4,1
+309527804,StickWars,17010688,USD,0.99,53821,165,3.5,4.0,1.8.9,12+,Games,43,1,1,0
+330376830,Period Tracker Lite,50169856,USD,0.0,53620,2872,4.0,5.0,9.5.1,12+,Health & Fitness,38,0,15,1
+911793120,1010!,131249152,USD,0.0,53496,321,4.5,4.5,54,4+,Games,38,5,1,1
+307569751,NYTimes Crossword - Daily Word Puzzle Game,46880768,USD,0.0,53465,204,3.5,4.0,2.8.1,4+,Games,37,5,1,1
+645705454,Evil Apples: A Filthy Adult Card & Party Game,126050304,USD,0.0,53415,2938,4.5,4.5,1.9.23,17+,Games,37,5,1,1
+672828590,WGT Golf Game by Topgolf,250150912,USD,0.0,53285,623,4.5,4.5,1.31.2,17+,Games,40,5,1,1
+1020119327,Smashy Road: Wanted,200108032,USD,0.0,53162,1339,4.5,4.0,1.2.1,9+,Games,40,5,1,1
+727296976,Cookie Jam,148408320,USD,0.0,52831,89,4.5,4.5,6.50.110,4+,Games,38,5,16,1
+389638243,POF - Best Dating App for Conversations,59248640,USD,0.0,52642,16,3.5,3.5,5.90,17+,Social Networking,37,5,31,1
+309465525,"Shutterfly: Prints, Photo Books, Cards Made Easy",122315776,USD,0.0,51427,874,4.0,5.0,7.7.0,4+,Photo & Video,37,5,1,1
+509987785,"Pic Jointer – Photo Collage, Camera Effects Editor",81019904,USD,0.0,51330,58,4.5,4.5,5.0,4+,Photo & Video,37,5,7,1
+326979430,BATTLE BEARS: Zombies!,103197675,USD,0.99,50710,309,3.5,4.0,1.6.7,9+,Games,45,0,1,1
+692412579,Frozen Free Fall,272471040,USD,0.0,50593,3,4.5,5.0,5.2.1,4+,Games,37,5,9,1
+463630399,PINK Nation,86456320,USD,0.0,49816,413,4.5,4.5,4.13.2,12+,Lifestyle,37,0,1,1
+1105834924,WordWhizzle Search,83180544,USD,0.0,49635,3056,4.5,4.5,1.2.4,4+,Games,37,5,1,1
+327630330,Dropbox,180804608,USD,0.0,49578,16,3.5,3.0,50.2,4+,Productivity,37,5,20,1
+569077959,Timehop,67424256,USD,0.0,49510,90,3.5,2.0,4.0.12,4+,Social Networking,37,0,1,1
+368677368,Uber,283852800,USD,0.0,49466,150,3.0,2.0,3.247.2,4+,Travel,37,4,41,1
+486154808,Weather Underground: Custom Forecast & Local Radar,99829760,USD,0.0,49192,1649,4.5,4.5,5.9.4,4+,Weather,37,5,31,1
+293523031,Sonos Controller,107983872,USD,0.0,48905,2691,4.5,4.5,7.2,4+,Music,37,4,12,1
+301724680,Citi Mobile®,281244672,USD,0.0,48822,193,3.5,4.0,8.5.0,4+,Finance,37,0,1,1
+955327604,Jelly Jump,249597952,USD,0.0,48694,7168,4.5,4.5,1.4,4+,Games,40,5,1,1
+300255638,ABC News - US & World News + Live Video,98108416,USD,0.0,48407,20,3.0,3.5,5.16,12+,News,37,0,1,0
+632311326,Close Up Pics Quiz - Guess the Word Trivia Games,95661056,USD,0.0,48032,899,4.5,4.0,3.9.2,4+,Games,40,3,1,1
+586447913,Microsoft Word,334425088,USD,0.0,47999,691,4.5,4.5,2.1,4+,Productivity,37,5,33,1
+692669501,Castle Clash: Brave Squads,312680448,USD,0.0,47963,164,4.0,4.0,1.8.0,9+,Games,40,5,11,1
+938207958,Mahjong Journey®,161162240,USD,0.0,47949,4578,4.5,4.5,1.6.1600,4+,Games,37,5,11,1
+1024818709,HOOKED - Chat Stories,94545920,USD,0.0,47829,708,4.5,4.5,2.28.0,9+,Book,37,0,8,1
+749118884,Calculator Pro for iPad Free - Smart Calculator,89096192,USD,0.0,47803,6883,4.5,4.5,4.9,4+,Utilities,24,5,14,1
+421547368,DIRECTV App for iPad,209462272,USD,0.0,47506,30,3.5,4.0,4.9.705,4+,Entertainment,24,5,1,1
+519640317,Alice in the Mirrors of Albion: Hidden object game,1222732800,USD,0.0,47382,50,4.0,4.5,5.9.3,4+,Games,37,5,7,1
+542511686,NBC Sports,129395712,USD,0.0,47172,28,2.5,2.5,5.4,4+,Sports,37,5,31,1
+529379082,Lyft,157950976,USD,0.0,46922,414,4.5,4.5,4.33.3,4+,Travel,37,0,1,1
+585259203,Super Stickman Golf 2,96925696,USD,0.0,46859,2808,4.5,4.5,2.8,4+,Games,38,5,1,1
+571393580,Gangstar Vegas,2088777728,USD,0.0,46705,1118,4.5,4.5,3.1.0,17+,Games,38,5,13,1
+940292587,Seekers Notes: Hidden Mystery,137282560,USD,0.0,46384,3041,4.5,4.5,1.16.0,4+,Games,38,5,7,1
+565200595,Fit Brains Trainer,188902400,USD,0.0,46363,213,4.5,4.5,5.1.10,4+,Education,37,5,9,1
+749133753,NOAA Weather Radar - Weather Forecast & HD Radar,108172288,USD,0.0,45696,2673,4.5,4.5,3.17,4+,Weather,37,5,12,1
+1141762073,Tricky Test 2™: Genius Brain?,134669312,USD,0.0,45578,19952,5.0,5.0,5.1,4+,Games,38,5,1,1
+548580856,Slayin,22982656,USD,0.99,45574,34080,4.5,4.5,2.0,12+,Games,43,5,1,1
+940508574,Color Pop Effects - Photo Editor & Picture Editing,78735360,USD,0.0,45320,7896,4.5,4.5,5.3,4+,Photo & Video,37,3,1,1
+656176278,Modern Combat 5 : The Multiplayer eSports Shooter,1271361536,USD,0.0,45270,763,4.5,4.0,2.5.0,17+,Games,37,5,15,1
+1105855019,Gardenscapes - New Acres,195908608,USD,0.0,45227,4795,4.0,4.5,1.5.0,4+,Games,38,5,10,1
+503092422,Ski Safari,161255424,USD,0.99,45121,1168,5.0,4.5,1.5.4,4+,Games,40,5,1,1
+392084834,Lane Splitter,106458112,USD,0.99,44567,202,4.5,4.5,5.2.1,4+,Games,38,4,1,1
+559887125,"Ibotta: Cash Back App, Grocery Coupons & Shopping",192774144,USD,0.0,44313,0,4.5,0.0,5.0.3,12+,Shopping,37,0,1,1
+1078160821,Wooden Block Puzzle - Wood jigsaw fit 1010 matrix,50578432,USD,0.0,44237,1219,4.5,5.0,2.0.2,4+,Games,37,5,1,1
+384830320,"Find My Family, Friends & iPhone - Life360 Locator",154507264,USD,0.0,43877,80,4.5,4.5,13.7.1,4+,Social Networking,37,0,13,1
+598603610,CSR Classics,1080938496,USD,0.0,43770,722,4.5,4.5,2.0.0,4+,Games,38,5,5,1
+335744614,NBA,112074752,USD,0.0,43682,19,3.5,2.5,2013.4.3,4+,Sports,37,5,1,1
+545519333,Amazon Prime Video,69435392,USD,0.0,43667,1109,4.0,4.5,4.4.1,12+,Entertainment,37,5,3,1
+826523703,Soccer Stars™,67262464,USD,0.0,43216,264,4.5,4.5,3.6.2,4+,Games,40,5,9,1
+311548709,Wells Fargo Mobile,57328640,USD,0.0,43064,216,3.0,2.5,3.55,4+,Finance,37,0,2,1
+1157626939,Flippy Bottle Extreme! - Marker Flip Tricky 2K16,143591424,USD,0.0,42435,2957,4.5,4.5,1.7,4+,Games,40,5,1,1
+286911400,Hangman.,4765696,USD,0.0,42316,248,3.0,3.5,2.0.6,9+,Games,38,0,1,1
+563718995,Bloons TD 5,113020928,USD,2.99,42078,141,4.5,4.5,3.8.3,9+,Games,40,0,15,1
+881342787,Billionaire – Business Capitalist Tycoon!,83843072,USD,0.0,42058,602,4.5,4.5,1.8.3,12+,Games,37,5,1,1
+859204347,World of Tanks Blitz,2952593408,USD,0.0,41729,677,4.5,2.5,3.9.0,12+,Games,38,5,18,1
+292421271,Fieldrunners,66872320,USD,2.99,41633,6,4.0,3.0,1.7.177604,9+,Games,37,0,1,1
+397049430,Super Stickman Golf,88879104,USD,2.99,41446,566,4.5,4.5,2.0,4+,Games,43,5,1,1
+594802437,Pearl's Peril - Hidden Object Adventures,278532096,USD,0.0,41428,20,4.5,4.5,2.17,9+,Games,24,5,14,1
+659425518,Real Steel World Robot Boxing,935366656,USD,0.0,41277,220,4.5,4.5,31.31.840,9+,Games,38,5,10,1
+580175049,Blitz Brigade: Multiplayer FPS shooter online!,1024388096,USD,0.0,41266,153,4.5,3.5,2.9.1,17+,Games,38,5,11,1
+700970012,Panda Pop,263766016,USD,0.0,41214,88,4.5,4.5,5.5.101,4+,Games,40,5,1,1
+520777858,The Sandbox - Building & Crafting a Pixel World!,171482112,USD,0.0,41108,258,4.5,4.5,2.0,4+,Games,38,5,45,1
+1017551780,Disney Emoji Blitz,257001472,USD,0.0,41036,500,4.5,4.5,1.11.5,4+,Games,37,5,10,1
+1055502792,NBA LIVE Mobile Basketball,139769856,USD,0.0,40619,3279,4.0,4.0,1.5.2,4+,Games,38,5,10,1
+373342398,Cat Physics,14824448,USD,1.99,40552,238,4.5,4.5,1.26.1,4+,Games,40,3,1,1
+543577420,Photo Grid - photo collage maker & photo editor,112073728,USD,0.0,40531,10,4.5,4.5,6.1.80,4+,Photo & Video,37,5,22,1
+967422975,YAHTZEE® With Buddies: The Classic Dice Game,420385792,USD,0.0,40446,246,4.0,4.5,4.30.5,4+,Games,37,5,1,1
+642831690,Jigsaw Puzzle Collection HD,86220800,USD,0.0,40227,2371,4.5,4.5,1.2.4,12+,Games,24,5,2,1
+506141837,"Whisper - Share, Express, Meet",98764800,USD,0.0,39819,58,4.0,3.0,8.6.1,17+,Social Networking,37,0,6,1
+307354030,iSwap Faces LITE,30796800,USD,0.0,39722,0,3.0,0.0,5.1,4+,Photo & Video,37,5,1,1
+363306776,SCRABBLE Premium for iPad,229992448,USD,9.99,39678,114,3.5,3.5,5.19.0,4+,Games,24,5,6,1
+359891723,ESPN Tournament Challenge,69057536,USD,0.0,39642,492,4.0,4.0,5.5.3,4+,Sports,37,5,1,1
+410395246,Microsoft OneNote,233533440,USD,0.0,39638,1213,4.5,4.5,16.0,4+,Productivity,37,5,33,1
+501968250,Angry Birds Space HD,171300864,USD,0.0,39502,13,4.0,4.0,2.2.12,4+,Games,24,5,1,1
+608188610,"MOLDIV - Photo Editor, Collage & Beauty Camera",120056832,USD,0.0,39501,4851,4.5,4.5,3.2.1,4+,Photo & Video,37,5,18,1
+527445936,Photo Editor by Aviary,36269056,USD,0.0,39501,741,4.5,5.0,4.6.1,12+,Photo & Video,37,5,23,1
+530168168,CBS Full Episodes and Live TV,93207552,USD,0.0,39436,6,2.5,1.5,4.12,4+,Entertainment,37,5,1,1
+571096102,FOX NOW - Watch Full Episodes and Stream Live TV,56974336,USD,0.0,39391,1724,4.5,4.5,2.16.6,4+,Entertainment,37,4,1,1
+664575829,Fishdom,181924864,USD,0.0,39217,1947,4.5,4.5,2.1.0,4+,Games,38,5,12,1
+309735670,Indeed Job Search,3691520,USD,0.0,38681,563,4.0,4.5,4.3,4+,Business,37,3,28,1
+1046593064,Disney Crossy Road,187282432,USD,0.0,38571,1223,4.5,4.5,2.901.17125,4+,Games,37,5,10,1
+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
+986339882,letgo: Buy & Sell Second Hand Stuff,109915136,USD,0.0,38424,1022,4.5,4.5,1.18.1,12+,Shopping,37,4,16,1
+1057844059,Zombie Frontier 3 – Top Zombie Shooting Game,132756480,USD,0.0,38159,5370,4.5,4.5,1.3.6,17+,Games,37,5,1,1
+486717857,Lep's World Free - platformer games,60937216,USD,0.0,38075,1005,4.5,4.5,2.9.8,4+,Games,38,5,19,1
+868077558,Bitmoji - Your Personal Emoji,105198592,USD,0.0,37972,783,4.5,4.0,10.6.1,12+,Utilities,37,0,22,1
+610003290,Infinity Blade III,3013255168,USD,0.99,37673,9983,4.0,4.5,1.4.2,12+,Games,40,5,18,1
+868013618,Best Fiends,271392768,USD,0.0,37584,8,4.5,4.5,4.6.1,4+,Games,37,5,1,1
+327455869,2016 US Open Tennis Championships,77700096,USD,0.0,37522,39,4.0,3.0,8.0.353,4+,Sports,37,4,1,1
+722217471,Hidden City®: Mystery of Shadows,103477248,USD,0.0,37304,198,4.5,4.5,1.13.1301,9+,Games,37,5,11,1
+351707231,Flick Kick Field Goal,75612160,USD,1.99,36946,152,4.5,4.0,1.11.0,4+,Games,38,5,3,1
+486645049,Calculator‰,16766976,USD,0.0,36879,12021,4.5,4.5,4.0,4+,Utilities,38,3,31,1
+667362389,The Room Two,460077056,USD,1.99,36809,2858,5.0,5.0,1.0.4,9+,Games,39,4,1,1
+968953976,Unison League,71931904,USD,0.0,36414,32,4.5,4.5,1.2.4,9+,Games,40,5,1,1
+643496868,Hangouts,94750720,USD,0.0,36404,0,4.0,0.0,16.0.0,4+,Social Networking,37,5,34,1
+1068095192,Gin Rummy Plus - Multiplayer Online Card Game,178644992,USD,0.0,36355,304,5.0,4.5,2.4.1,12+,Games,38,5,1,1
+397836467,Hotel Dash Deluxe,50085888,USD,0.99,36190,221,4.5,4.0,1.27.3,4+,Games,43,4,1,1
+395545555,CVS Pharmacy,129167360,USD,0.0,35981,237,4.0,4.0,3.4.1,12+,Shopping,37,0,1,1
+323242790,Cartoon Wars,13216994,USD,0.99,35930,262,3.5,4.0,114,12+,Games,43,0,1,1
+429851711,Flashlight !,14336000,USD,0.0,35769,21,4.5,2.0,2.6,4+,Utilities,37,1,1,1
+376374689,Doodle God™,121715712,USD,1.99,35759,64,4.5,4.0,3.0.19,12+,Games,40,0,13,1
+297694601,Touchgrind,55205888,USD,4.99,35735,378,4.0,4.5,1.5.1,4+,Games,40,0,0,1
+937718942,Angry Birds POP! - Bubble Shooter,148629504,USD,0.0,35711,249,4.5,4.5,3.9.0,4+,Games,37,5,12,1
+749083919,Weather Live Free - Weather Forecast & Alerts,101524480,USD,0.0,35702,3768,4.5,4.5,5.3,4+,Weather,38,5,16,1
+871809581,Timberman,72761344,USD,0.0,35587,118,4.5,4.5,3.1.2,4+,Games,40,4,1,1
+1068378177,Yu-Gi-Oh! Duel Links,185152512,USD,0.0,35570,937,5.0,4.5,1.6.0,9+,Games,37,5,11,1
+552602056,ClassDojo,80195584,USD,0.0,35440,122,4.5,5.0,4.8.3,4+,Education,37,5,55,1
+398348506,Gravity Guy,22577152,USD,0.99,35161,1316,4.5,4.0,1.4.4,9+,Games,43,0,1,1
+609704981,Multiplayer for Minecraft PE,33418240,USD,2.99,35109,26,4.0,2.0,3.01,4+,Games,37,5,1,1
+307132353,Sally's Spa,431771648,USD,2.99,35074,403,4.5,4.0,3.3.0,4+,Games,43,0,6,1
+433620759,Fishing Kings Free+,610881536,USD,0.0,35058,7453,4.5,4.5,1.0.6,4+,Games,40,5,12,1
+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
+883393043,Need for Speed™ No Limits,1085844480,USD,0.0,34998,402,4.5,4.5,2.2.3,4+,Games,37,5,12,1
+868692227,Goat Simulator,436621312,USD,4.99,34819,167,4.5,4.0,1.9.3,9+,Games,38,5,1,1
+625257520,Hearthstone,2405958656,USD,0.0,34694,50,4.0,4.0,8.2.19371,12+,Games,40,5,12,1
+575147772,LINE PLAY - Your Avatar World,108691456,USD,0.0,34677,313,4.5,4.5,4.9.6,4+,Social Networking,37,5,6,1
+441457218,"Photo Lab: Picture Editor, effects & fun face app",102964224,USD,0.0,34585,34,4.5,4.5,2.8.24,12+,Photo & Video,37,5,10,1
+414478124,WeChat,182624256,USD,0.0,34584,100,4.5,4.0,6.5.8,12+,Social Networking,38,4,21,1
+336860594,Victoria’s Secret – The Sexiest Bras & Lingerie,60976128,USD,0.0,34507,38,3.5,5.0,5.2.1,12+,Shopping,37,0,1,1
+351331194,"Badoo - Meet New People, Chat, Socialize.",157625344,USD,0.0,34428,23,4.5,4.0,5.8.0,17+,Social Networking,37,4,30,1
+370697773,Chase Mobile,34950144,USD,0.0,34322,3167,4.5,4.5,3.620,4+,Finance,24,5,1,1
+557137623,Angry Birds Star Wars,177338368,USD,0.0,34138,7,4.5,3.5,1.5.11,4+,Games,37,0,1,1
+882507985,Dragon Mania Legends: Dragon Breeding Game,122903552,USD,0.0,34039,541,4.5,4.5,2.9.0,12+,Games,38,5,15,1
+301521403,Nike+ Training Club - Workouts & Fitness Plans,140367872,USD,0.0,33969,466,3.5,5.0,5.4.1,4+,Health & Fitness,37,0,17,1
+799406905,Rookie Cam - Photo Editor & Filter Camera,110953472,USD,0.0,33921,2404,4.5,4.5,3.2,4+,Photo & Video,37,5,18,1
+388130466,iSlash,27619328,USD,0.99,33868,463,4.5,4.5,1.5.4,4+,Games,43,0,1,1
+1146465836,Hill Climb Racing 2,120797184,USD,0.0,33854,732,4.5,4.5,1.5.1,9+,Games,37,5,1,1
+978866413,Cooking Dash™,154318848,USD,0.0,33808,513,4.0,4.0,1.30.10,4+,Games,37,5,11,1
+645859810,Angry Birds Star Wars II,226834432,USD,0.0,33724,64,4.5,4.5,1.9.22,4+,Games,37,5,1,1
+1071310449,Choices: Stories You Play,108666880,USD,0.0,33698,543,4.5,4.5,1.9.0,12+,Games,38,5,1,1
+289894882,White Noise,44129280,USD,0.99,33426,299,4.0,5.0,7.2,4+,Health & Fitness,37,5,3,1
+1034420003,Egg!,323473408,USD,0.0,33407,5946,4.5,4.5,2.08,4+,Games,38,5,11,1
+955157084,Mr Jump,66228224,USD,0.0,33282,286,4.5,4.5,3.4,4+,Games,37,5,14,1
+304871622,Zombieville USA,27962441,USD,0.99,32988,2489,4.0,4.0,1.7,12+,Games,47,5,1,1
+319740707,NBC News,52951040,USD,0.0,32881,7,3.5,2.0,5.11.0,12+,News,37,5,1,1
+951937596,Microsoft Outlook - email and calendar,185139200,USD,0.0,32807,178,3.5,4.5,2.27.0,4+,Productivity,37,5,58,1
+554936942,Talking Angela for iPad,76846080,USD,0.0,32763,191,3.5,3.5,2.7,4+,Entertainment,24,5,13,1
+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
+457517348,FotoRus -Camera & Photo Editor & Pic Collage Maker,119500800,USD,0.0,32558,147,5.0,4.5,7.0.4,4+,Photo & Video,38,5,3,1
+763692274,Grand Theft Auto: San Andreas,2060416000,USD,6.99,32533,188,4.0,4.0,2.0,17+,Games,37,5,7,1
+392915994,Jenga,97562624,USD,0.0,32527,4411,4.5,4.0,1.7.6,4+,Games,43,5,1,1
+443369807,Hotspot Shield Free VPN Proxy & Wi-Fi Privacy,72476672,USD,0.0,32499,438,4.5,4.5,3.7.5,4+,Productivity,37,5,11,1
+535609266,Into the Dead,171828224,USD,0.0,32492,2346,4.5,4.5,2.5,12+,Games,38,5,14,1
+1047246341,Candy Crush Jelly Saga,196369408,USD,0.0,32395,469,4.0,4.5,1.42.13,4+,Games,40,5,6,1
+407690035,HotelTonight - Great Deals on Last Minute Hotels,79332352,USD,0.0,32341,1707,4.5,5.0,10.15,12+,Travel,37,5,6,1
+329670577,Camera+,89187328,USD,1.99,32338,261,4.0,4.5,9.1,4+,Photo & Video,37,0,10,1
+892521917,Solitaire TriPeaks: Classic Card Game,149481472,USD,0.0,32215,442,4.5,4.5,3.8.1,4+,Games,38,5,1,1
+973005664,Arrow Ambush,25895936,USD,0.0,32020,192,5.0,4.0,1.8,4+,Games,38,2,1,1
+920482331,Fun Run 2 - Multiplayer Race,126603264,USD,0.0,31981,276,4.5,4.5,4.0,9+,Games,37,5,1,1
+333710667,Scanner Pro - PDF document scanner app with OCR,101346304,USD,3.99,31912,154,4.5,5.0,7.1.3,4+,Business,37,5,9,1
+918338898,Stick Hero,28680192,USD,0.0,31727,6017,4.5,4.0,1.5,4+,Games,40,5,1,1
+285005463,Crash Bandicoot Nitro Kart 3D,10735026,USD,2.99,31456,4178,4.0,3.5,1.0.0,4+,Games,47,0,1,1
+529652920,Zombie Tsunami,115895296,USD,0.0,31311,83,4.5,4.5,3.6.3,4+,Games,38,5,14,1
+367003839,Hotels & Vacation Rentals by Booking.com,105609216,USD,0.0,31261,374,4.5,4.5,14.4,4+,Travel,37,5,40,1
+923917775,Neko Atsume: Kitty Collector,44166144,USD,0.0,31219,249,4.5,4.5,1.9.6,4+,Games,40,5,2,1
+1027352017,Recolor - Coloring Book,68480000,USD,0.0,31180,76,4.5,5.0,3.5.1,4+,Entertainment,37,5,4,1
+416345444,Talking Ben the Dog for iPad,78565376,USD,0.0,31116,77,4.0,4.5,3.4.1,4+,Entertainment,24,5,13,1
+848218959,100 Balls,23143424,USD,0.0,30967,845,4.5,4.0,4.2,4+,Games,37,5,1,1
+471394851,Bandsintown Concerts,80923648,USD,0.0,30845,105,4.5,5.0,5.10,4+,Music,37,3,7,1
+487250856,Lep's World Plus - super best platformer games,42897408,USD,0.99,30830,100,4.5,4.5,2.8.4,4+,Games,40,5,18,1
+805845189,Crazy Kitchen,196248576,USD,0.0,30704,67,5.0,4.5,4.1.2,4+,Games,38,5,1,1
+1036661603,Rolling Sky,138529792,USD,0.0,30670,279,4.5,4.5,1.5.2,4+,Games,40,5,12,1
+344542975,Southwest Airlines,88773632,USD,0.0,30552,18,3.0,2.5,4.5.1,4+,Travel,37,0,1,1
+477128284,"Etsy: Shop Handmade, Vintage & Creative Goods",120922112,USD,0.0,30434,309,4.5,5.0,4.66,4+,Shopping,37,5,7,1
+941421328,WWE Immortals,2245948416,USD,0.0,29918,1401,4.5,4.5,2.4,12+,Games,39,5,12,1
+1010677881,World Chef: Restaurant & Cooking Game,136355840,USD,0.0,29886,103,4.5,4.5,1.34.7,12+,Games,38,5,12,1
+932463620,Dog Simulator 2015,195235840,USD,0.0,29817,6173,4.5,4.5,2.2.3,4+,Games,38,5,11,1
+413423472,Legendary Wars,247508992,USD,0.99,29739,2253,4.5,5.0,2.3,9+,Games,43,5,1,1
+304871603,Color Splash,28135424,USD,0.99,29554,55,4.0,5.0,3.6.1,4+,Photo & Video,37,0,3,1
+1052231801,Twist,140345344,USD,0.0,29548,29548,4.0,4.0,1.0,4+,Games,40,5,1,1
+736683061,A Dark Room,26759168,USD,0.99,29540,2749,4.5,5.0,2.33,12+,Games,38,1,1,1
+379983299,Talking Tom Cat for iPad,75417600,USD,0.0,29492,51,3.5,4.0,3.3,4+,Entertainment,24,5,13,1
+973482525,Blossom Blast Saga - Fun Flower Match & Grow Game,70504448,USD,0.0,29475,170,4.5,4.5,43.0.1,4+,Games,43,5,1,1
+382509315,Splashtop Personal - Remote Desktop,55986176,USD,4.99,29376,11,4.5,5.0,2.7.4.1,4+,Business,24,5,11,1
+364901807,"Documents 6 - File manager, PDF reader and browser",107259904,USD,0.0,29110,324,4.5,4.5,6.0,17+,Productivity,37,5,9,1
+306621789,"HuffPost - News, Politics & Entertainment",110420992,USD,0.0,29107,85,3.0,4.0,11.2,12+,News,37,5,10,1
+659283309,Trials Frontier,253294592,USD,0.0,29090,23,4.5,4.0,5.1.1,12+,Games,37,5,11,1
+587366035,PicsArt Photo Studio: Collage Maker & Pic Editor,124726272,USD,0.0,29078,6,4.5,4.0,9.8,12+,Photo & Video,37,5,21,1
+580765736,Megapolis,136165376,USD,0.0,28902,92,4.5,4.5,3.70.20429,4+,Games,38,5,10,1
+959498315,Extreme Car Driving Simulator Free,170371072,USD,0.0,28900,7165,4.5,4.5,4.10,4+,Games,38,5,1,1
+979100082,Pop the Lock,39330816,USD,0.0,28754,1656,4.5,4.0,2.0.1,4+,Games,40,4,1,1
+404095058,Rat On A Skateboard,9458688,USD,1.99,28672,11,4.5,4.5,1.22.1,4+,Games,37,3,1,1
+694164275,Quik – GoPro Video Editor to edit clips with music,211343360,USD,0.0,28654,21,4.5,4.5,4.0.1,4+,Photo & Video,37,5,15,1
+566223681,Followers + for Instagram - Follower Analytics,17986560,USD,0.0,28633,402,4.0,3.5,2.1.1,12+,Social Networking,38,5,29,1
+547109049,"Karaoke - Sing Karaoke, Unlimited Songs!",95711232,USD,0.0,28606,955,4.5,4.5,4.1.5,4+,Music,38,5,19,1
+936971630,YouTube Kids,119236608,USD,0.0,28560,125,4.5,4.5,2.19.13,4+,Entertainment,37,5,34,1
+1095572547,Block! Hexa Puzzle,132425728,USD,0.0,28524,1307,4.5,4.5,1.4.0,4+,Games,38,5,1,1
+749078962,"Weather Live - Weather Forecast, Radar and Alerts",57539584,USD,4.99,28497,4672,4.5,4.5,5.4,4+,Weather,38,5,20,1
+567767430,Yoga Studio,162386944,USD,4.99,28439,1067,5.0,5.0,3.4,4+,Health & Fitness,37,5,1,1
+342548956,TurboScan™ Pro - document & receipt scanner: scan multiple pages and photos to PDF,8821760,USD,4.99,28388,7009,5.0,5.0,2.8.2,4+,Business,38,5,9,1
+942494098,Dude Perfect 2,103986176,USD,0.0,28361,681,4.5,4.5,1.6.1,4+,Games,40,5,6,1
+566199224,Bloons TD 5 HD,217499648,USD,2.99,28341,184,4.5,5.0,3.8.3,9+,Games,24,5,15,1
+392796698,GroupMe,66864128,USD,0.0,28260,294,4.5,4.5,5.9.0,4+,Social Networking,37,1,14,1
+976173170,Basketball Stars™,141687808,USD,0.0,28216,1508,4.0,4.5,1.8.0,4+,Games,38,5,8,1
+409838725,Splice - Video Editor + Movie Maker by GoPro,123070464,USD,0.0,28189,2723,4.5,5.0,3.5.3,4+,Photo & Video,37,5,22,1
+1078553808,FINAL FANTASY BRAVE EXVIUS,108917760,USD,0.0,28187,38,4.5,4.0,2.1.2,12+,Games,40,5,1,1
+456355158,Doodle Jump FREE - BE WARNED: Insanely addictive,63676416,USD,0.0,28153,100,4.0,4.0,2.6.3,4+,Games,37,0,1,1
+749133301,NOAA Radar Pro – Weather Alerts & Forecast,82765824,USD,3.99,28032,3123,4.5,4.5,3.16,4+,Weather,37,5,12,1
+448142450,Truecaller - Spam Identification & Block,84406272,USD,0.0,27791,5779,4.5,4.5,7.50,4+,Utilities,37,0,30,1
+979401801,Browser and File Manager for Documents,42198016,USD,0.0,27750,27213,5.0,5.0,2.0.1,17+,Utilities,37,4,5,1
+681370499,Batman: Arkham Origins,910774272,USD,0.0,27738,14077,4.5,4.5,1.2.1,9+,Games,39,5,1,1
+496218553,Tom's Love Letters,29392896,USD,0.0,27711,1965,4.0,4.5,2.1,4+,Entertainment,43,4,13,1
+912561374,Marco Polo Video Walkie Talkie,122692608,USD,0.0,27662,381,4.5,4.5,0.14.87,4+,Social Networking,37,2,1,1
+524509185,Temple Run: Brave,130115584,USD,1.99,27593,386,4.0,4.0,1.6,4+,Games,40,5,1,1
+839599050,Make It Rain: The Love of Money,169664512,USD,0.0,27556,35,4.5,5.0,5.8,4+,Games,37,5,31,1
+590216134,Plant Nanny - Water Reminder with Cute Plants,74738688,USD,0.0,27421,2544,4.5,4.5,1.9.2,4+,Health & Fitness,38,0,12,1
+912536422,Five Nights at Freddy's,49946624,USD,2.99,27388,27388,4.5,4.5,1.0,12+,Games,43,5,1,1
+389781154,NFL,131428352,USD,0.0,27317,2,2.5,5.0,14.1.4,4+,Sports,37,1,1,1
+686365571,Cops N Robbers (FPS) - Block Survival Multiplayer,467697664,USD,0.0,27122,0,4.5,0.0,5.3.0,12+,Games,38,5,1,1
+1003820457,Animal Jam - Play Wild!,620323840,USD,0.0,26990,189,4.5,4.5,14.0,9+,Games,38,5,5,1
+510461370,Bike Race Pro - Top Motorcycle Racing Game,119231488,USD,0.99,26881,5,4.5,3.5,7.4.3,4+,Games,38,5,9,1
+414706506,Google Translate,65281024,USD,0.0,26786,27,3.5,4.5,5.10.0,4+,Reference,37,5,59,1
+340769953,Trenches,37340259,USD,0.99,26732,1428,4.0,4.5,1.9.3,17+,Games,43,0,1,1
+388838723,"Flashlight for iPhone , iPod and iPad",64041984,USD,0.0,26697,3109,4.5,4.5,4.1.1,4+,Utilities,37,5,1,1
+1075939556,Driving School 2016,293660672,USD,0.0,26685,1961,4.5,4.5,1.7.1,4+,Games,37,5,1,1
+479662730,Grand Theft Auto III,726392832,USD,4.99,26547,1682,4.0,4.5,1.3.5,17+,Games,43,4,7,1
+337021781,MONOPOLY Game,194386944,USD,0.99,26482,331,3.5,2.5,1.4.04,4+,Games,37,0,6,1
+405743220,Eden - World Builder,122429440,USD,0.99,26419,1157,4.0,4.5,2.1,9+,Games,43,5,1,1
+331804452,Gilt,148201472,USD,0.0,26353,3,3.5,2.5,5.1.3,4+,Shopping,37,5,2,1
+484090401,Akinator the Genie,93021184,USD,1.99,26333,537,4.5,4.5,4.8,12+,Entertainment,37,5,14,1
+525781368,My Mixtapez Music,84864000,USD,0.0,26286,2,4.5,3.5,7.0.57,12+,Music,25,0,1,1
+429775439,HBO GO,41109504,USD,0.0,26278,9,3.0,3.0,10.1.0,17+,Entertainment,37,5,1,1
+533451786,Bad Piggies,260106240,USD,0.0,26259,38,4.5,3.5,2.3.3,4+,Games,37,0,1,1
+342138881,Sing Karaoke Songs Unlimited with StarMaker,91267072,USD,0.0,26227,7,4.0,4.5,6.0.3,9+,Music,37,4,14,1
+518158653,FreePrints – Photos Delivered,112790528,USD,0.0,26060,0,5.0,0.0,2.11.3,4+,Photo & Video,37,5,1,1
+719972451,DoorDash - Food Delivery,100554752,USD,0.0,25947,3,4.5,3.5,3.0.18,4+,Food & Drink,37,0,1,1
+1162255664,SMILE Inc.,137533440,USD,0.0,25859,839,5.0,4.5,1.11,12+,Games,37,5,1,1
+958763157,War Dragons,137094144,USD,0.0,25834,115,4.5,4.5,3.21,12+,Games,38,5,12,1
+1050831202,Tap Sports Baseball 2016,178905088,USD,0.0,25834,2004,4.5,4.5,2.2.1,12+,Games,38,5,1,1
+852801667,Looney Tunes Dash!,179526656,USD,0.0,25806,43,4.5,4.0,1.89,9+,Games,39,1,16,1
+923268741,N.O.V.A. 3: Freedom Edition - Near Orbit Vanguard Alliance game,1400971264,USD,0.0,25716,25716,4.5,4.5,1.0.0,17+,Games,43,5,12,1
+994905763,Triller - Music Video & Film Maker,87287808,USD,0.0,25683,186,5.0,4.5,4.2.2,12+,Photo & Video,37,5,1,1
+537931449,Rayman Jungle Run,78690304,USD,2.99,25517,273,4.5,4.0,1.3.6,9+,Games,38,5,8,1
+379869627,Living Earth - Clock & Weather,169009152,USD,2.99,25475,71,4.5,4.0,3.82,4+,Utilities,37,4,11,1
+380908399,Ringtones for iPhone & Ringtone Maker,109270016,USD,0.0,25403,1598,4.5,4.5,8.9.6,12+,Music,37,4,9,1
+591560124,Musi - Unlimited Music For YouTube,16686080,USD,0.0,25193,245,4.5,5.0,5.8.5,17+,Music,37,5,2,1
+705211891,Royal Revolt 2 – Defend Your Castle,146573312,USD,0.0,25152,153,4.5,5.0,3.2.0,9+,Games,38,5,17,1
+794524208,Disco Zoo,116933632,USD,0.0,24999,573,4.5,4.5,1.4.2,4+,Games,37,5,1,1
+934596429,Mobile Strike,256203776,USD,0.0,24935,265,3.5,3.5,3.22.515,12+,Games,37,5,29,1
+728293409,Monument Valley,673243136,USD,3.99,24909,510,4.5,4.5,2.4.60,4+,Games,38,5,1,1
+455650341,Real Steel,968384512,USD,0.99,24880,13,4.5,4.0,1.37.1,9+,Games,38,5,8,1
+1122444037,Angry Birds Blast,129589248,USD,0.0,24878,712,4.5,4.5,1.3.5,4+,Games,37,5,12,1
+881155044,Turbo Dismount®,317992960,USD,0.0,24808,937,4.5,4.5,1.25.0,12+,Games,38,5,1,1
+1116876789,Tank War - Geometry Go Shot Color Dot.IO,32032768,USD,0.0,24760,1251,4.5,4.5,1.4,4+,Games,40,2,31,1
+455612214,Flashlight ◎,37967872,USD,0.0,24744,171,4.5,4.0,2.0.6,4+,Business,40,4,11,1
+842849113,Google Sheets,292418560,USD,0.0,24602,39,4.5,4.5,1.2017.20204,4+,Productivity,37,3,69,1
+341776037,5-0 Radio Pro Police Scanner (Extra Feeds),49594368,USD,3.99,24553,2620,4.0,4.5,39.1,9+,News,38,5,26,1
+937737946,Survivors: the Quest®,102812672,USD,0.0,24547,2262,4.0,4.0,1.6.401,9+,Games,37,5,11,1
+626583252,Faded - Photo Editor,118618112,USD,1.99,24530,3551,4.5,4.5,2.3.1,4+,Photo & Video,38,5,5,1
+1073286211,Wizard of OZ: Magic Match,160321536,USD,0.0,24507,1198,4.5,4.5,1.0.2551,4+,Games,38,5,16,1
+586683407,Microsoft Excel,323411968,USD,0.0,24430,357,4.5,4.5,2.1,4+,Productivity,37,5,33,1
+528805631,Where's My Perry?,126416896,USD,2.99,24314,123,4.5,3.5,1.7.7.78,4+,Games,38,5,14,1
+379323382,Osmos for iPad,41772032,USD,4.99,24306,6,4.5,5.0,2.4.1,4+,Games,24,5,9,1
+327243363,NFL Sunday Ticket,96093184,USD,0.0,24258,305,3.0,2.5,2.6.042,4+,Entertainment,37,0,1,1
+896130944,Mercari: Shopping Marketplace to Buy & Sell Stuff,72579072,USD,0.0,24244,215,4.0,3.5,4.2.0,4+,Shopping,37,4,1,1
+1171814682,Paper.io,281393152,USD,0.0,24097,4469,4.0,4.5,2.8,4+,Games,37,4,1,1
+1046846443,Hungry Shark World,952222720,USD,0.0,24057,340,4.5,4.5,2.1.0,12+,Games,37,5,12,1
+1062006344,Pigment - Coloring Book for Adults,145373184,USD,0.0,23967,240,4.5,4.5,1.6.6,4+,Entertainment,37,5,8,1
+1073816197,Miitomo,112008192,USD,0.0,23965,299,4.0,4.5,2.2.2,4+,Social Networking,37,5,9,1
+945274928,Clash of Kings - CoK,157344768,USD,0.0,23910,7,4.5,3.5,2.44.0,9+,Games,38,5,20,1
+692717444,Assassin's Creed Pirates,775233536,USD,0.0,23895,1660,4.5,4.5,2.9.1,12+,Games,38,5,13,1
+918054748,The Room Three,1005560832,USD,4.99,23878,21769,5.0,5.0,1.0.1,9+,Games,39,5,1,1
+318639200,Crush the Castle,12996628,USD,0.99,23810,582,3.5,4.0,1.5,12+,Games,45,0,1,1
+671464704,Vainglory,1182578688,USD,0.0,23779,128,4.5,4.0,2.5.0,9+,Games,38,5,32,1
+711923939,Square Cash - Send Money for Free,90040320,USD,0.0,23775,132,4.5,4.5,2.16,4+,Finance,37,0,1,1
+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
+979759584,Words Crush: Hidden Words!,117254144,USD,0.0,23735,102,4.5,4.5,2.2.2,4+,Games,38,5,1,1
+555936735,Angry Birds Friends,190382080,USD,0.0,23655,376,4.0,4.5,3.4.0,4+,Games,37,5,1,1
+1068204657,My Cafe: Recipes & Stories - World Restaurant Game,133657600,USD,0.0,23556,604,4.5,4.5,2017.6,4+,Games,38,5,46,1
+375239755,SimSimi,31358976,USD,0.0,23530,7,4.0,2.5,6.8.9,17+,Social Networking,37,0,25,1
+569632660,Toca Hair Salon 2,99796992,USD,2.99,23349,308,4.5,4.0,1.1.5,4+,Education,40,5,18,1
+1010962391,Design Home,173576192,USD,0.0,23298,468,4.5,4.0,1.02.51,4+,Games,38,5,1,1
+319881193,"Grindr - Gay and same sex guys chat, meet and date",80409600,USD,0.0,23201,14,2.5,2.0,3.9.1,17+,Social Networking,37,5,5,1
+652945710,100 PICS Quiz - guess the picture trivia games,67786752,USD,0.0,23160,44,4.5,4.5,2.50,4+,Games,37,5,7,1
+1060704812,Castle Crush: Epic Strategy Game,106132480,USD,0.0,23148,684,5.0,5.0,2.5.0,12+,Games,37,5,11,1
+915637540,"RainbowKey - Color keyboard themes, fonts & GIF",86156288,USD,0.0,23063,101,4.5,4.5,4.0.9,4+,Utilities,37,5,14,1
+1002340615,PAC-MAN 256 - Endless Arcade Maze,145424384,USD,0.0,23015,1730,4.5,4.5,2.0.3,4+,Games,38,5,11,1
+898838405,Empires & Allies,145223680,USD,0.0,22902,102,4.5,4.0,1.38.1012249,12+,Games,38,5,13,1
+794507331,Crazy Taxi™ City Rush,237275136,USD,0.0,22877,993,4.5,4.5,1.7.1,4+,Games,38,5,8,1
+955957721,Storm Radar,93304832,USD,0.0,22792,1563,4.5,3.5,1.9.9,4+,Weather,37,5,31,1
+544118997,"Shopular Coupons, Weekly Deals for Target, Walmart",52582400,USD,0.0,22729,997,5.0,5.0,6.80,4+,Shopping,37,4,1,1
+557138109,Angry Birds Star Wars HD,212249600,USD,0.0,22674,10,4.5,4.5,1.5.11,4+,Games,24,5,1,1
+323438913,Moto X Mayhem,21010210,USD,0.99,22557,526,4.0,4.0,1.8.7,4+,Games,47,0,1,1
+885823239,Dungeon Hunter 5 - Multiplayer RPG on iOS,2288456704,USD,0.0,22513,62,4.5,4.5,2.8.2,12+,Games,37,5,15,1
+547101139,Traffic Racer,132160512,USD,0.0,22458,369,4.5,4.5,2.4.1,4+,Games,40,4,16,1
+979598664,Kill Shot Bravo,104240128,USD,0.0,22444,148,4.5,4.5,2.10,17+,Games,37,5,46,1
+574123647,iGun Pro HD - The Original Gun Application,69952512,USD,0.0,22324,543,4.5,4.5,5.24,12+,Games,40,5,6,1
+401626263,Airbnb,243776512,USD,0.0,22302,0,4.0,0.0,17.22,4+,Travel,37,5,29,1
+638853147,Where's My Water? 2,181628928,USD,0.0,22302,221,3.5,4.0,1.5.1,4+,Games,37,5,11,1
+516875543,Offroad Legends,96497664,USD,0.99,22281,49,4.5,4.0,1.3.3,4+,Games,38,5,30,1
+374791544,Robot Unicorn Attack,52117504,USD,0.99,22150,1141,4.0,4.5,3.4,9+,Games,43,5,1,1
+576588894,Sky Guide: View Stars Night or Day,175430656,USD,2.99,22100,1939,5.0,5.0,6.2.2,4+,Reference,37,5,11,1
+606413051,Solitaire Classic Card Game™,141391872,USD,0.0,22079,193,4.5,4.0,1.1.0,4+,Games,43,4,1,1
+914079393,Amazing Thief,17489920,USD,0.0,21984,5528,4.0,4.0,1.1.1,4+,Games,40,4,14,1
+1045165396,Vlogger Go Viral - Clicker Game & Vlog Simulator,100562944,USD,0.0,21977,563,5.0,5.0,1.17,4+,Games,38,5,7,1
+918780702,Inside Out Thought Bubbles,164248576,USD,0.0,21881,113,4.5,4.0,1.19.0,4+,Games,38,5,9,1
+694133485,Capital One for iPad,92510208,USD,0.0,21858,389,4.5,4.5,2.8.0,4+,Finance,24,5,1,1
+493619333,MLB.com At Bat,91044864,USD,0.0,21830,247,3.5,4.5,10.2.2,4+,Sports,37,5,2,1
+293760823,iFart - The Original Fart Sounds App,60320768,USD,1.99,21825,10,3.0,4.0,4.0.8,9+,Entertainment,37,5,1,1
+1089048531,Restaurant DASH with Gordon Ramsay,174926848,USD,0.0,21804,803,4.5,4.0,2.0.9,9+,Games,37,5,11,1
+893393414,Juice Jam,131652608,USD,0.0,21733,82,4.5,4.5,2.1.11,4+,Games,37,5,19,1
+402370879,NBA JAM by EA SPORTS™,410202112,USD,4.99,21648,460,4.0,3.5,1.1.35,4+,Games,37,0,8,1
+290807369,Line Rider iRide™,1646592,USD,1.99,21609,69,3.5,2.5,2.4,9+,Entertainment,40,0,1,1
+645949180,Jelly Splash,138738688,USD,0.0,21601,14,4.0,3.5,3.13.0,4+,Games,38,5,19,1
+905060486,Inbox by Gmail,219122688,USD,0.0,21561,373,4.5,4.5,1.3.170423,4+,Productivity,37,4,63,1
+1020187921,Colorfly : Coloring Book for Adults - Free Games,61465600,USD,0.0,21472,245,4.5,4.5,3.19,4+,Games,40,5,3,1
+541672969,Robot Unicorn Attack 2,106917888,USD,0.0,21432,269,4.5,4.5,1.7.3,9+,Games,40,5,6,1
+314303518,Peggle Classic,223805440,USD,0.99,21416,974,4.5,4.5,1.7.2,4+,Games,43,0,5,1
+880735556,Gods of Olympus,116436992,USD,0.0,21414,540,4.5,5.0,1.12,9+,Games,37,5,12,1
+797639732,RollerCoaster Tycoon® 4 Mobile™,195613696,USD,0.0,21407,1146,3.5,4.0,1.10.14,4+,Games,37,5,14,1
+982354972,Lifeline...,29690880,USD,1.99,21347,1187,4.5,4.5,1.10.1,9+,Games,37,5,6,1
+535176909,BADLAND,222380032,USD,2.99,21325,195,4.5,4.5,3.3.3,9+,Games,37,5,13,1
+281656475,PAC-MAN Premium,100788224,USD,3.99,21292,26,4.0,4.5,6.3.5,4+,Games,38,5,10,1
+351727428,Venmo,68153344,USD,0.0,21090,1325,4.5,5.0,7.1.0,4+,Finance,37,4,1,1
+529997671,"Disney Channel – Watch Full Episodes, Movies & TV",132038656,USD,0.0,21082,37,3.5,3.5,5.7.0,4+,Entertainment,37,5,1,1
+927060395,MONOPOLY Bingo!,253120512,USD,0.0,21025,24,4.5,2.5,2.5.1,12+,Games,38,5,1,1
+970417047,The Walking Dead: No Man's Land,574139392,USD,0.0,21016,1124,4.5,4.5,2.5.0,17+,Games,37,5,1,1
+1032301062,BuzzTube - Video Player for YouTube,15563776,USD,0.0,21012,1427,4.5,4.5,2.0,17+,Entertainment,37,5,1,1
+444947784,Talking Tom & Ben News for iPad,55250944,USD,0.0,20988,963,4.0,4.5,2.2.1,4+,Entertainment,24,5,13,1
+776132132,Dungeon Boss,169657344,USD,0.0,20980,616,4.5,4.5,0.5.7961,9+,Games,38,5,5,1
+319284643,"The Championships, Wimbledon 2016 - Tennis Grand Slam",130394112,USD,0.0,20953,481,4.0,4.0,8.1,4+,Sports,37,5,1,1
+430200224,Photon Flash Player for iPad - Flash Video & Games plus Private Web Browser,35695616,USD,4.99,20951,935,4.0,4.0,6.2,17+,Utilities,26,5,10,1
+939906112,Tubex - Videos and Music for YouTube,13450240,USD,0.0,20943,1562,4.0,2.5,3.0,17+,Entertainment,37,4,20,1
+952715194,King of Thieves,183342080,USD,0.0,20911,142,4.5,4.5,2.18,9+,Games,38,5,13,1
+961875786,Roll the Ball™ - slide puzzle,173849600,USD,0.0,20911,1110,4.5,4.5,1.7.2,4+,Games,38,5,1,1
+955705796,MARVEL Future Fight,1350787072,USD,0.0,20906,433,4.5,4.5,3.0.0,9+,Games,38,5,15,1
+992448528,Spinny Circle,16656384,USD,0.0,20812,213,4.5,4.0,1.9,4+,Games,38,2,1,1
+497693461,VS. Racing 2,58599424,USD,0.0,20805,2995,4.5,4.5,1.6.3,4+,Games,40,5,1,1
+836071680,Wishbone - Compare Anything,117052416,USD,0.0,20649,49,4.5,3.0,5.17.4,12+,Social Networking,37,0,1,1
+1001286466,Minecraft: Story Mode,1089228800,USD,0.0,20621,6745,4.0,4.5,1.6,9+,Games,38,4,1,1
+489185828,happn — Dating app — Find and meet your crush,78902272,USD,0.0,20546,78,4.5,4.5,7.8.2,17+,Lifestyle,37,0,14,1
+885661130,Paradise Bay,322693120,USD,0.0,20383,404,4.0,4.5,2.5.0,4+,Games,38,5,13,1
+635966718,Memrise: learn languages,83949568,USD,0.0,20383,138,5.0,4.5,2.2.22,4+,Education,37,5,24,1
+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
+806223188,Peak - Brain Training,254793728,USD,0.0,20322,29,4.5,4.5,3.20,4+,Education,37,5,14,1
+916281743,Sugar Smash: Book of Life,128648192,USD,0.0,20254,71,5.0,4.5,3.32.162,4+,Games,37,4,16,1
+710535379,"DraftKings - Daily Fantasy Golf, Baseball, & More",144820224,USD,0.0,20251,53,4.5,5.0,3.9.0,17+,Sports,37,4,18,1
+918820076,Dubsmash,101078016,USD,0.0,20243,44,4.5,4.0,2.21.0,12+,Entertainment,37,4,20,1
+688319243,PicLab Studio - Creative Editing & Graphic Design,53941248,USD,2.99,20200,94,4.5,4.0,2.10,4+,Photo & Video,37,5,1,1
+955682952,Century City,83817472,USD,0.0,20147,381,4.5,4.5,3.4.0,12+,Games,37,5,1,1
+742625884,Blek,118883328,USD,2.99,20144,64,4.5,4.5,1.7,4+,Games,37,4,1,1
+578448682,Grand Theft Auto: Vice City,1161168896,USD,4.99,20113,1153,4.0,4.5,1.6,17+,Games,43,3,8,1
+469337564,"Adobe Acrobat Reader: View, Create, & Convert PDFs",81007616,USD,0.0,20069,33,4.0,4.5,17.05.23,4+,Business,37,5,19,1
+531325150,Talking Ginger for iPad,79683584,USD,0.0,20065,113,4.5,4.0,2.4.2,4+,Entertainment,24,5,13,1
+986110430,Hot Shot Slots Games – Vegas Casino Slot Machines,179004416,USD,0.0,20064,690,4.5,4.5,1.24,12+,Games,38,5,1,1
+480883488,Canvas by Instructure,138883072,USD,0.0,19981,36,4.5,4.5,3.18.3,4+,Education,37,4,16,1
+561625752,T-Mobile,65560576,USD,0.0,19977,828,4.0,4.5,2.9.5,4+,Productivity,37,3,1,1
+312325565,USAA Mobile,164382720,USD,0.0,19946,13,4.0,2.5,7.32.3,4+,Finance,37,5,1,1
+622613679,Survivalcraft,55344128,USD,3.99,19784,1086,4.0,4.5,1.29.21.0,9+,Games,43,5,1,1
+964436963,Drive Ahead!,250080256,USD,0.0,19776,105,4.5,4.5,1.51,9+,Games,40,5,17,1
+316025912,Sonic The Hedgehog,36692992,USD,2.99,19621,1191,4.0,4.5,2.1.2,4+,Games,37,5,1,1
+475976577,Perfect365 - Custom makeup designs and beauty tips,143038464,USD,0.0,19540,5,4.5,4.0,6.50.10,4+,Lifestyle,37,3,12,1
+785537179,Heart of Vegas Slots – Casino Slot Machine Games,96088064,USD,0.0,19355,317,4.5,4.5,2.22.0,12+,Games,38,5,1,1
+900721327,EA SPORTS™ UFC®,985080832,USD,0.0,19354,408,4.5,4.5,1.9.3,12+,Games,38,5,10,1
+727420266,LEGO® Star Wars™:  The Complete Saga,865561600,USD,0.0,19340,289,4.0,4.0,1.9.15,9+,Games,40,5,1,1
+342699962,Rat On A Scooter XL,7767040,USD,0.99,19296,7,4.0,4.0,1.24.1,4+,Games,37,3,1,1
+1047961826,Rodeo Stampede - Sky Zoo Safari,252826624,USD,0.0,19199,189,4.5,4.5,1.8.2,4+,Games,38,5,12,1
+1067589627,Racing in Car,106005504,USD,0.0,19067,19067,4.0,4.0,1.0,4+,Games,40,5,1,1
+545229893,Bad Piggies HD,260040704,USD,0.0,19018,81,4.5,4.5,2.3.3,4+,Games,24,5,1,1
+547305617,Bingo Pop,274991104,USD,0.0,18971,36,4.0,4.0,3.11.25,12+,Games,38,5,1,1
+297606726,Fish Tycoon,13564835,USD,0.99,18943,1787,3.5,4.5,1.1.0,4+,Games,47,0,1,1
+320300350,Virtual Families,27746273,USD,1.99,18920,3014,3.5,4.5,1.1.2,9+,Games,47,0,1,1
+334503000,The Impossible Quiz!,44652544,USD,0.0,18884,451,4.0,4.5,1.62,9+,Entertainment,37,0,1,1
+336435697,imo video calls and chat,22562816,USD,0.0,18841,0,4.0,0.0,7.0.84,4+,Social Networking,38,2,29,1
+574375380,Sky Gamblers: Storm Raiders,1820131328,USD,4.99,18822,25,4.5,4.0,1.5.2,12+,Games,37,5,10,1
+972013240,100! Block Puzzle - Color jigsaw 10x10 board game,26438656,USD,0.0,18821,96,4.5,5.0,2.3.1,4+,Games,37,4,1,1
+576836614,SpongeBob Moves In,634097664,USD,2.99,18758,44,4.0,4.0,4.37.7,4+,Games,40,4,9,1
+586328581,ABCmouse.com - Early Learning Academy,266735616,USD,0.0,18749,119,4.5,4.5,5.5,4+,Education,38,4,1,1
+911800950,Dawn of Titans,1213626368,USD,0.0,18735,46,4.5,4.5,1.15.4,9+,Games,37,5,16,1
+1089336971,Talking Tom Gold Run: Fun & Endless Running Game,202542080,USD,0.0,18733,737,4.5,4.5,1.7.4,4+,Games,38,5,13,1
+352509417,The Washington Post Classic,118980608,USD,0.0,18572,307,4.5,4.5,3.8.2,12+,News,37,3,1,1
+521207075,"RetailMeNot Shopping Deals, Coupons, Savings",133086208,USD,0.0,18544,14,4.5,4.5,4.25,4+,Shopping,37,0,1,1
+779157948,Threes!,93796352,USD,2.99,18494,1983,4.5,3.5,1.3.5,4+,Games,40,5,1,1
+505728417,Freeform – watch live TV & stream full episodes,56845312,USD,0.0,18492,8,2.5,4.5,4.2.3,12+,Entertainment,37,5,1,1
+918396645,After School - Funny Anonymous School News,148799488,USD,0.0,18482,1,4.0,5.0,1.90,17+,Social Networking,37,0,1,1
+388389451,"Muslim Pro: Ramadan 2017 Prayer Times, Azan, Quran",100551680,USD,0.0,18418,706,4.5,5.0,9.2.1,4+,Reference,37,5,16,1
+1084252650,Letter Soup - Word Game,88837120,USD,0.0,18358,2426,4.5,4.5,5.1.1,4+,Games,37,5,1,1
+329981776,Sudoku⁺,1608704,USD,2.99,18332,1007,4.5,5.0,3.4,4+,Games,37,5,2,1
+860011430,Ghost Lens+Scary Photo Video Edit&Collage Maker,102500352,USD,0.0,18316,756,5.0,4.5,3.91,12+,Photo & Video,40,5,3,1
+376412660,Carnivores: Dinosaur Hunter Pro,304654336,USD,2.99,18306,186,4.0,4.5,1.7.0,12+,Games,37,5,4,1
+447149103,Reckless Getaway,123644928,USD,0.99,18259,77,4.5,4.5,1.1.4,12+,Games,43,5,1,1
+506003812,"Paper by FiftyThree - Sketch, Diagram, Take Notes",134009856,USD,0.0,18219,5,4.0,4.0,3.6.9,4+,Productivity,37,5,11,1
+524299475,AutoRap by Smule,71257088,USD,0.0,18202,514,4.0,3.5,2.3.5,12+,Music,37,5,12,1
+1080816579,Animation Throwdown: The Quest for Cards,358231040,USD,0.0,18141,255,4.5,4.5,1.0.37,17+,Games,38,5,1,1
+941143328,Five Nights at Freddy's 2,37310464,USD,2.99,18107,18107,4.5,4.5,1.0,12+,Games,43,5,1,1
+653967729,Charades!™,44654592,USD,0.0,18072,129,4.5,4.0,2.5.1,4+,Games,40,1,1,1
+975139176,Head Basketball,133572608,USD,0.0,18037,924,4.5,4.5,1.4.3,4+,Games,38,5,1,1
+470412147,Poshmark: Buy & Sell Fashion,58299392,USD,0.0,18035,156,4.5,4.5,2.70,4+,Shopping,37,5,1,1
+828005193,Kitchen Scramble: Cooking Game,117025792,USD,0.0,17925,13,3.5,2.5,4.3.1,4+,Games,40,4,6,1
+320029256,Whole Foods Market,137312256,USD,0.0,17906,4,3.0,3.0,8.3.17,4+,Shopping,37,5,1,1
+524359189,The Amazing Spider-Man,829148559,USD,6.99,17895,10970,4.5,4.0,1.0.3,12+,Games,39,4,12,1
+1055672607,Merged!,95139840,USD,0.0,17867,154,4.5,4.5,1.8.0,4+,Games,38,5,1,1
+1058959277,UberEATS: Uber for Food Delivery,75443200,USD,0.0,17865,243,4.0,4.0,1.86.1,4+,Food & Drink,37,5,36,1
+1070492711,Zombie Castaways,144084992,USD,0.0,17865,911,4.5,4.5,2.3,4+,Games,37,5,7,1
+310303959,World Cup Table Tennis™,31387648,USD,0.99,17776,6,4.0,5.0,4.6.1,4+,Games,37,0,11,1
+957764690,"Quick Reposter - Repost, Regram and Reshare Photos",16826368,USD,0.0,17694,72,4.5,4.0,15,17+,Social Networking,37,2,1,1
+366626332,"Runtastic PRO Running, Jogging and Fitness Tracker",149536768,USD,4.99,17667,14,4.5,4.0,7.3,4+,Health & Fitness,37,0,15,1
+360593530,Notability,122235904,USD,9.99,17594,143,4.0,4.0,6.5.2,4+,Productivity,37,5,14,1
+1130829481,New Furniture Mods - Pocket Wiki & Game Tools for Minecraft PC Edition,52959232,USD,0.0,17588,17588,4.5,4.5,1.0,4+,Reference,38,3,2,1
+346184215,TaxCaster – Free tax refund calculator,7111680,USD,0.0,17516,125,3.5,5.0,7.2,4+,Finance,37,5,1,1
+1016673544,"ipsy - Makeup, subscription and beauty tips",35611648,USD,0.0,17489,729,5.0,5.0,2.0.0,4+,Lifestyle,37,5,1,1
+908989995,Bruh-Button,52343808,USD,0.0,17487,157,5.0,4.0,2.1,17+,Entertainment,37,5,1,1
+1074470421,Willy Wonka Slots: Vegas Casino Slot Machines,117741568,USD,0.0,17436,429,4.5,4.5,27.0.84,12+,Games,37,5,1,1
+1061768547,MARVEL Avengers Academy,170858496,USD,0.0,17376,12,4.0,3.5,1.15.0,9+,Games,37,5,45,1
+608847384,X-War: Clash of Zombies,42917888,USD,0.0,17254,237,5.0,4.5,5.4,9+,Games,40,5,3,1
+731592936,Disney Magic Kingdoms,468258816,USD,0.0,17213,495,4.0,4.5,2.1.1,4+,Games,37,5,15,1
+574001818,Beat the Boss 2 (17+),205250560,USD,0.99,17203,553,4.5,4.5,2.8.0,17+,Games,43,5,15,1
+314864297,I Dig It,19853312,USD,0.99,17190,180,4.0,4.5,1.12,4+,Games,40,0,1,1
+337402021,Harry Potter: Spells,125411328,USD,0.99,17023,916,4.0,4.5,2.2,4+,Games,40,0,1,1
+1045516045,Flip Diving,189799424,USD,0.0,17012,3154,4.5,4.5,2.7.0,12+,Games,37,5,1,1
+418075935,"Bleacher Report: Sports news, scores, & highlights",85283840,USD,0.0,16979,183,4.5,4.0,5.1,12+,Sports,37,0,8,1
+718153412,Swamp Attack,123780096,USD,0.0,16968,4969,4.5,4.5,2.1.5,17+,Games,40,5,12,1
+962993853,Shooty Skies - Endless Arcade Flyer,221495296,USD,0.0,16948,26,4.5,4.5,2.0000,4+,Games,37,5,22,1
+749046891,Wallpapers for Me - Themes & Background Images,80015360,USD,0.0,16925,454,4.5,4.5,4.4,4+,Entertainment,37,5,13,1
+1043640363,"Warhammer 40,000: Freeblade",1425611776,USD,0.0,16879,25,4.5,4.0,2.4.5,12+,Games,37,5,12,1
+482066631,Roku,46033920,USD,0.0,16867,634,4.5,4.5,4.0.4,4+,Entertainment,37,0,1,1
+580991034,The Silent Age,1522363392,USD,0.0,16852,457,4.5,4.5,2.16,12+,Games,37,5,1,1
+399452287,Merriam-Webster Dictionary,155593728,USD,0.0,16849,1125,4.5,4.5,4.1,4+,Reference,38,1,12,1
+527219710,Sworkit - Custom Workouts for Exercise & Fitness,143166464,USD,0.0,16819,348,5.0,5.0,5.4.1,4+,Health & Fitness,37,5,12,1
+845918296,Zombie Catchers,103388160,USD,0.0,16805,1136,4.5,4.5,1.17,12+,Games,38,5,10,1
+386098453,Weibo HD,104387584,USD,0.0,16772,293,4.5,3.0,4.0.0,4+,Social Networking,24,4,3,1
+443354861,"Camera360 - Selfie Filter Camera, Photo Editor",161159168,USD,0.0,16729,2,4.5,4.5,8.5.6,12+,Photo & Video,37,0,12,1
+353665650,"Univision Deportes: Liga MX, MLS, Fútbol En Vivo",81876992,USD,0.0,16683,21,3.5,2.5,5.5,4+,Sports,37,5,2,1
+546473125,"Quizlet: Study Flashcards, Languages & Vocabulary",95381504,USD,0.0,16683,23,4.5,4.0,2.11,4+,Education,37,5,13,1
+951346423,The Line Zen,28614656,USD,0.0,16674,3641,4.5,4.5,1.1.1,4+,Games,40,5,1,1
+303337299,Wedding Dash Deluxe,55803904,USD,0.99,16567,1155,4.5,4.5,2.29.13,4+,Games,43,4,1,1
+578979413,MyScript Calculator - Handwriting calculator,21319680,USD,0.0,16555,1776,4.5,4.0,1.3.2,4+,Productivity,38,5,11,1
+919087726,Photomath - Camera Calculator,34342912,USD,0.0,16523,161,4.5,5.0,3.1.2,4+,Education,37,3,20,1
+932500451,DC Legends,271538176,USD,0.0,16460,276,4.5,4.0,1.12.1,9+,Games,38,5,10,1
+1085899628,FarmVille: Tropic Escape - Harvest in Paradise,204402688,USD,0.0,16457,0,4.5,0.0,1.9.763,4+,Games,37,5,15,1
+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
+552764013,NASCAR MOBILE,70040576,USD,0.0,16385,6556,4.0,4.5,6.3.0,4+,Sports,37,4,1,1
+454316134,Sonic CD,197306368,USD,0.0,16358,1816,4.0,3.5,2.0.1,4+,Games,37,3,1,1
+1000876192,Plants vs. Zombies™ Heroes,153967616,USD,0.0,16305,1327,4.5,4.5,1.14.13,9+,Games,37,4,10,1
+1058370552,"Farm Heroes Super Saga: Match, Collect and Grow!",299586560,USD,0.0,16259,52,4.5,4.5,0.57.3,4+,Games,38,5,17,1
+615187629,InstaMag - Free Pic and Photo Collage Maker,95378432,USD,0.0,16221,262,4.5,5.0,3.8.7,4+,Photo & Video,38,5,4,1
+535811906,"Over— Edit Photos, Add Text & Captions to Pictures",109300736,USD,0.0,16221,165,4.5,4.5,4.3.1,4+,Photo & Video,37,5,1,1
+969316884,The Walking Dead: Road to Survival - Strategy Game,151109632,USD,0.0,16116,151,4.5,4.5,5.0.1,17+,Games,38,5,12,1
+917554930,5miles: Buy and Sell Used Stuff Locally,54063104,USD,0.0,16105,3420,4.5,4.5,5.0.5,4+,Shopping,37,4,8,1
+404593641,Cartoon Network App – Teen Titans Go! And more!,101873664,USD,0.0,15984,97,3.0,3.5,3.6,9+,Entertainment,37,5,1,1
+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
+766894692,Disney Movies Anywhere: Watch Your Disney Movies!,81021952,USD,0.0,15900,78,3.5,3.5,1.7.8,12+,Entertainment,37,5,1,1
+1068366937,Tap Tap Fish - Abyssrium,209029120,USD,0.0,15876,477,4.5,4.5,1.4.1,4+,Games,37,5,5,1
+700637744,Deemo,2219819008,USD,1.99,15855,270,5.0,5.0,3.0.5,4+,Games,38,5,1,1
+458225159,"NOAA Hi-Def Radar Pro -  Storm Warnings, Hurricane Tracker & Weather Forecast",27500544,USD,1.99,15809,628,5.0,4.5,2.1,4+,Weather,38,5,1,1
+490217893,iTunes U,55641088,USD,0.0,15801,26,4.0,4.0,3.5,4+,Education,37,5,34,1
+1020818294,ColorArt: Coloring Book For Adults,90105856,USD,0.0,15797,239,4.5,4.5,1.6.0,4+,Entertainment,37,5,1,1
+365152940,Photo Transfer App - Easy backup of photos+videos,45182976,USD,0.0,15654,24,4.5,4.5,6.2.1,4+,Photo & Video,37,5,2,1
+711455226,Forge of Empires,138510336,USD,0.0,15617,11,4.5,4.5,1.102.1,9+,Games,38,5,20,1
+576649830,"InstaSize: Photo Editor, Picture Effects & Collage",99624960,USD,0.0,15605,1288,4.0,4.5,4.3.41,4+,Photo & Video,37,1,23,1
+393328150,Sephora Makeup & Beauty App – Insider Tips & Style,147001344,USD,0.0,15593,301,4.5,5.0,17.3,4+,Shopping,37,0,1,1
+465092669,NHL,160124928,USD,0.0,15554,124,3.5,5.0,8.6.1,4+,Sports,37,5,1,1
+586280100,Block Fortress,343504896,USD,1.99,15430,63,4.5,4.5,1.6.3,12+,Games,37,5,1,1
+668159524,Ninja Kid Run VR: Runner & Racing Games For Free,165612544,USD,0.0,15399,613,4.5,4.5,1.2.13,4+,Games,40,5,1,1
+619517698,Teenage Mutant Ninja Turtles: Rooftop Run,149581824,USD,3.99,15398,2492,4.0,4.0,3.0.2,9+,Games,43,4,7,1
+1094930513,FIFA Mobile Soccer,87408640,USD,0.0,15365,880,4.0,3.0,6.0.1,4+,Games,37,5,17,1
+867833019,Cupcake Mania™,167641088,USD,0.0,15336,332,4.5,4.5,1.5.6,4+,Games,43,5,9,1
+1081221532,Hovercraft: Takedown - Custom Combat Cars,123773952,USD,0.0,15290,523,4.5,4.5,1.4.4,9+,Games,38,5,12,1
+743974925,"PDF Expert 6: Read, annotate & edit PDF documents",123600896,USD,9.99,15248,111,4.5,3.5,6.0.3,4+,Productivity,37,5,9,1
+352247139,MyNetDiary PRO - Calorie Counter and Food Diary,83851264,USD,3.99,15188,272,4.5,4.0,5.30,12+,Health & Fitness,37,0,2,1
+570315854,Repost for Instagram,46076928,USD,0.0,15185,407,4.5,5.0,3.2.5,12+,Social Networking,37,0,1,1
+335029050,Catan,376171520,USD,1.99,15175,308,4.0,4.0,4.6.2,4+,Games,38,0,6,1
+344186162,Grand Theft Auto: Chinatown Wars,878883840,USD,4.99,15142,73,4.0,4.0,4.4,17+,Games,38,5,6,1
+410351918,"Sleep Pillow Sounds: white noise, rain, ocean, fan",124150784,USD,2.99,15116,2692,4.5,5.0,7.4,4+,Health & Fitness,37,5,31,1
+1122649984,"Prisma: Photo Editor, Art Filters Pic Effects",76442624,USD,0.0,15060,97,4.5,4.0,3.3.1,9+,Photo & Video,37,0,2,1
+354655665,STREET FIGHTER IV,581353472,USD,4.99,15056,751,4.0,4.0,1.00.12,17+,Games,40,0,3,1
+642064350,Spinrilla - Mixtapes For Free,40071168,USD,0.0,15053,1032,4.5,4.0,3.2.5,12+,Music,37,0,3,1
+656951157,LIMBO,135050240,USD,4.99,15030,319,4.5,4.5,1.1.15,12+,Games,37,5,13,1
+833756002,Flappy Golf,98557952,USD,0.0,14995,3840,4.5,4.5,1.7,4+,Games,38,4,31,1
+487127942,Calculator HD Free,68090880,USD,0.0,14986,260,4.5,4.5,3.1.0,4+,Utilities,37,4,14,1
+299949744,MotionX GPS,56481792,USD,1.99,14970,24,3.5,4.5,24.2,4+,Navigation,37,0,1,1
+595831580,Temple Run: Oz,218399744,USD,1.99,14912,151,4.0,4.0,1.7.0,9+,Games,40,5,10,1
+373714084,BATTLE BEARS -1,227403527,USD,0.99,14910,1003,4.0,4.5,1.5.7,12+,Games,45,5,1,1
+445375097,爱奇艺PPS -《欢乐颂2》电视剧热播,224617472,USD,0.0,14844,0,4.0,0.0,6.3.3,17+,Entertainment,38,5,3,1
+951704333,"Filterra – Photo Editor, Effects for Pictures",99465216,USD,0.0,14744,2178,4.5,4.5,1.10,4+,Photo & Video,37,5,13,1
+1089836344,Live.me – Live Video Chat & Make Friends Nearby,163832832,USD,0.0,14724,97,4.5,4.5,3.6.20,17+,Social Networking,37,0,9,1
+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
+659563061,Cartwheel by Target,49570816,USD,0.0,14682,0,3.5,0.0,2.5.2,4+,Shopping,37,3,1,1
+988476572,Arrow,128421888,USD,0.0,14673,7369,4.5,4.5,1.1.1,4+,Games,40,4,1,1
+382991304,Osmos,33989632,USD,2.99,14605,23,4.5,5.0,2.4.1,4+,Games,37,0,9,1
+892092770,Zombie Highway 2,154164224,USD,0.0,14593,2800,4.5,4.5,1.4.3,12+,Games,38,5,1,1
+951744068,Traffic Rider,244306944,USD,0.0,14592,1085,4.5,4.5,1.4,4+,Games,40,5,18,1
+1137673647,Six!,112238592,USD,0.0,14505,332,4.5,4.5,2.2.0,4+,Games,38,5,1,1
+962680846,Fruit Nibblers,150988800,USD,0.0,14505,12,4.5,5.0,1.21.1,4+,Games,37,5,11,1
+395627741,Age of Zombies™,53805056,USD,0.99,14493,384,4.5,4.5,1.2.81,12+,Games,40,5,1,1
+397951063,Backbreaker 2: Vengeance,83214336,USD,0.99,14491,304,4.5,4.5,1.3.6,4+,Games,40,5,1,1
+522626820,iTranslate Voice - Speak & Translate in Real Time,56189952,USD,6.99,14469,81,4.0,4.0,3.1.5,4+,Productivity,37,5,22,1
+893372761,Deer Hunter 2017,253903872,USD,0.0,14461,422,4.0,4.0,4.1.0,17+,Games,38,5,13,1
+634235735,Duet Game,87994368,USD,2.99,14407,207,5.0,4.5,3.8,4+,Games,37,5,14,1
+640360962,Nextdoor,82531328,USD,0.0,14402,104,4.5,4.5,3.11,4+,Social Networking,37,0,4,1
+489479624,Hatchi - A retro virtual pet,85693440,USD,0.99,14381,56,4.5,4.0,7.5.4,4+,Games,37,1,5,1
+438314348,Tank Hero,16048128,USD,0.99,14361,918,4.5,4.5,1.1.4,9+,Games,43,0,1,0
+333246187,Scanner911 Pro,33812480,USD,3.99,14345,100,4.0,2.5,4.0,12+,News,37,0,1,1
+584557117,Napster - Top Music & Radio,184817664,USD,0.0,14268,80,4.0,3.5,5.7.5,12+,Music,37,4,11,1
+1135657766,Bottle Flip 2k16,38429696,USD,0.0,14263,3,4.0,3.5,2.1,4+,Games,37,5,1,1
+537773100,Bastion,1281059840,USD,4.99,14247,320,4.5,4.5,1.4,12+,Games,43,4,1,1
+527358348,Fieldrunners 2,89068544,USD,2.99,14214,11,5.0,3.5,1.9.177609,9+,Games,37,0,1,1
+389204861,The Sims 3 Ambitions,444821504,USD,4.99,14202,638,3.5,3.5,1.1.83,12+,Games,40,5,10,1
+731629156,XFINITY Stream,136228864,USD,0.0,14198,722,3.0,4.0,4.2.1,12+,Entertainment,37,5,2,1
+863844475,YouCam Makeup: Magic Makeup Selfie Cam,133124096,USD,0.0,14188,264,4.5,5.0,5.20.0,9+,Photo & Video,37,4,16,1
+962144693,Hovercraft - Build Fly Retry,107164672,USD,0.0,14123,91,4.5,4.5,1.6.12,4+,Games,38,5,11,1
+459035295,Top Eleven 2017 - Be a Soccer Manager,144414720,USD,0.0,14104,61,4.5,4.5,5.7,4+,Games,38,5,28,1
+573116090,Afterlight,76231680,USD,0.99,14057,79,4.5,4.5,3.2,4+,Photo & Video,37,5,1,1
+325683306,"MyRadar Pro NOAA Weather Radar, Forecasts & Storms",123718656,USD,1.99,13915,205,4.5,5.0,5.1.4,4+,Weather,37,2,8,1
+1156192844,Followers Analytics for Instagram - InstaReport,35136512,USD,0.0,13914,493,4.5,4.0,2.3,4+,Social Networking,37,0,8,1
+711074743,FOX Sports GO,99644416,USD,0.0,13898,336,3.0,4.0,3.5.0,12+,Sports,37,4,1,0
+1104692136,Snakeio,76058624,USD,0.0,13870,713,4.5,4.5,1.9.4,4+,Games,38,2,1,1
+775402833,WWE SuperCard,395563008,USD,0.0,13842,157,4.5,4.0,1.7.248694,9+,Games,37,5,9,1
+862303071,94%,121039872,USD,0.0,13805,20,4.5,4.0,3.3.2,4+,Games,37,4,9,1
+388336485,Ugly Meter™,30441472,USD,0.99,13741,58,3.5,2.5,4.6,9+,Entertainment,43,4,1,1
+1025707485,VPN Proxy Master - Unlimited WiFi security VPN,27117568,USD,0.0,13674,0,5.0,0.0,2.4.2,4+,Productivity,37,1,9,1
+1058526204,Transformers: Earth Wars,189870080,USD,0.0,13664,274,4.5,4.5,1.43,12+,Games,37,5,10,1
+1028362533,Slots - Huuuge Casino: Slot Machines,91105280,USD,0.0,13637,115,4.5,3.0,2.4.151,12+,Games,38,5,12,1
+493226494,edjing Mix:DJ turntable to remix and scratch music,144888832,USD,0.0,13580,1208,4.5,4.5,6.6.3,4+,Music,37,5,12,1
+423246594,NCAA March Madness Live - Men's College Basketball,113078272,USD,0.0,13572,55,3.0,2.5,7.0.4,4+,Sports,37,5,1,1
+376413870,Blackboard Mobile Learn™,51179520,USD,0.0,13567,2625,2.0,1.5,4.1.2,4+,Education,40,5,14,1
+841098932,Pokémon TCG Online,629442560,USD,0.0,13559,155,3.5,4.0,2.44.2,9+,Games,24,5,1,1
+474764934,N.O.V.A. 3 - Near Orbit Vanguard Alliance,1984958464,USD,6.99,13503,825,4.5,4.5,1.0.5,17+,Games,43,5,12,1
+345542655,Star Chart,28616704,USD,0.0,13482,2517,4.5,4.5,3.98,4+,Education,38,5,8,1
+1110273623,Free Music - MP3 Streamer & Playlist Manager Pro,10542080,USD,0.0,13443,1229,4.5,4.5,2.3,4+,Music,37,5,1,1
+657189652,Clue Period Tracker: Period & Ovulation Tracker,103040000,USD,0.0,13436,39,4.5,4.5,3.5.6,12+,Health & Fitness,37,0,15,1
+289084315,Period Tracker Deluxe,40216576,USD,1.99,13350,489,4.5,5.0,9.6,12+,Health & Fitness,38,0,15,1
+955286870,CPlus for Craigslist app - mobile classifieds,120219648,USD,0.0,13345,2788,5.0,5.0,3.0.0,17+,Catalogs,37,5,1,1
+1040172229,my KONAMI Slots - Vegas Casino Slot Machine Games,218488832,USD,0.0,13345,556,4.5,4.5,1.19.0,12+,Games,38,5,1,1
+1083229791,KleptoCats,391116800,USD,0.0,13300,436,4.5,4.5,3.11,4+,Games,37,5,1,1
+411430426,Carnivores: Ice Age Pro,198701056,USD,2.99,13258,62,4.5,4.0,1.71,12+,Games,37,5,4,1
+502912815,Regal Cinemas,76895232,USD,0.0,13257,109,4.5,5.0,4.3.2,4+,Entertainment,37,0,1,1
+791341471,Card Wars - Adventure Time Card Game,1256266752,USD,3.99,13245,1095,3.5,4.0,1.11.0,9+,Games,40,5,6,1
+1030804846,Churchill Solitaire - World War Card Game,153385984,USD,0.0,13241,212,4.5,4.5,1.3.0,12+,Games,37,5,1,1
+596133590,Nick,38045696,USD,0.0,13237,102,3.5,3.5,3.2,4+,Entertainment,37,4,13,1
+619481402,Farm Story 2™,112607232,USD,0.0,13142,77,4.0,4.0,2.6.5,4+,Games,43,5,8,1
+445791750,Phoenix HD,92713984,USD,0.0,13106,230,4.5,4.5,2.6.2,9+,Games,37,5,14,1
+790203750,Block Сity Wars: game and skin export to minecraft,793368576,USD,0.0,13097,468,4.5,4.5,6.4.5,17+,Games,38,5,1,1
+396837225,Cartoon Wars 2: Heroes,42482779,USD,0.99,13049,1180,4.5,4.5,111,12+,Games,43,0,1,1
+890740165,Free Piano app by Yokee,73091072,USD,0.0,13016,1818,4.5,5.0,1.0.32,4+,Music,38,5,18,1
+1065249424,MSQRD — Live Filters & Face Swap for Video Selfies,198906880,USD,0.0,12982,750,4.5,4.5,1.3.5,9+,Photo & Video,37,5,11,1
+1137893020,Artisto – Video and Photo Editor with Art Filters,55673856,USD,0.0,12963,979,5.0,5.0,1.17,4+,Photo & Video,37,3,8,1
+558433129,Modern Combat 4: Zero Hour,2169602048,USD,6.99,12916,1213,4.0,4.0,1.2.1,17+,Games,39,5,13,1
+835969177,MMX Racing,836734976,USD,0.0,12854,1703,4.5,4.5,1.16.9309,4+,Games,38,4,33,1
+381342267,Stack the States®,132377600,USD,2.99,12833,282,4.5,4.5,2.7,4+,Education,40,5,1,1
+493145008,Headspace,121170944,USD,0.0,12819,1326,5.0,5.0,2.13.2,4+,Health & Fitness,37,0,1,1
+329541503,Geocaching®,108166144,USD,0.0,12811,134,3.5,1.5,5.3,4+,Navigation,37,0,22,1
+497936366,Catapult King,210625536,USD,0.99,12799,95,4.5,4.0,1.5.1,9+,Games,40,5,10,1
+477537958,Microsoft OneDrive – File & photo cloud storage,207656960,USD,0.0,12797,126,4.0,4.0,8.16,4+,Productivity,37,5,30,1
+380090605,Let's create! Pottery HD,175157248,USD,4.99,12787,12,4.5,4.5,1.71,4+,Entertainment,38,5,1,1
+997362197,"InShot Video Editor Music, No Crop, Cut",55851008,USD,0.0,12779,3366,5.0,5.0,1.19.1,4+,Photo & Video,37,0,9,1
+528919633,"Seeds Pro For Minecraft - Server, Skins, Community",29258752,USD,1.99,12770,18,4.5,3.5,8.0.5,9+,Games,40,5,1,1
+703177890,Ever - Capture Your Memories,134952960,USD,0.0,12755,122,4.5,5.0,1.56.0,4+,Productivity,37,5,16,1
+486947533,Airport Scanner,226961408,USD,1.99,12701,8,4.5,5.0,1.6.5,12+,Games,37,5,1,1
+368494609,QR Reader for iPhone,54776832,USD,0.0,12683,108,4.0,4.0,5.9.2,12+,Utilities,38,0,29,1
+491594445,BIG WIN Basketball,66056192,USD,0.0,12669,291,4.0,4.0,4.0.2,12+,Games,40,5,1,1
+878577184,SHEIN Shopping - Women's Clothing & Fashion,58648576,USD,0.0,12663,102,4.5,4.5,5.2.7,12+,Shopping,37,5,7,1
+723134859,"Ebates: Cash Back, Coupons & Rebate Shopping App",108079104,USD,0.0,12617,99,5.0,4.5,4.15.0,4+,Shopping,37,5,5,1
+967351793,Layout from Instagram,9355264,USD,0.0,12616,2397,4.5,4.5,1.2.4,4+,Photo & Video,37,0,27,1
+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
+836767708,"Wayfair - Shop Furniture, Home Decor, Daily Sales",165069824,USD,0.0,12578,146,5.0,5.0,4.24.2,4+,Shopping,37,5,3,1
+1147002179,The Trail,542597120,USD,0.0,12573,372,4.0,4.5,1.6,9+,Games,25,5,1,1
+342115564,Hipstamatic,114081792,USD,2.99,12557,6,3.5,5.0,337,4+,Photo & Video,37,5,15,1
+533055738,cute icon&wallpaper dressup - CocoPPa,65789952,USD,0.0,12508,810,4.0,4.0,3.2.8,4+,Lifestyle,38,0,10,1
+1094138419,Steppy Pants,166893568,USD,0.0,12506,39,4.5,4.5,1.7,9+,Games,37,5,13,1
+602716057,CVS,78570496,USD,0.0,12402,338,4.5,4.0,1.13,17+,Shopping,24,5,2,1
+681814050,Cut the Rope 2,141105152,USD,1.99,12376,162,4.5,4.5,1.6.9,4+,Games,40,5,10,1
+349276209,Doodle Army,17879270,USD,0.99,12354,1428,4.0,4.5,3.1.0,12+,Games,47,0,1,1
+396085661,Game Dev Story,191455232,USD,4.99,12331,11,4.5,4.5,2.09,4+,Games,38,5,5,1
+1041631196,Football Clicker,172334080,USD,0.0,12326,1412,4.5,5.0,1.6,4+,Games,38,4,1,1
+530957470,LiveCollage Pro-Photo Collage Maker&Photo Editor,88022016,USD,1.99,12319,0,4.5,0.0,5.5.0,4+,Photo & Video,37,5,4,1
+911130812,SNKRS,79418368,USD,0.0,12298,813,4.5,5.0,2.7.0,4+,Shopping,37,0,1,1
+525246631,Fair Food Maker Game - Make Yummy Carnival Treats,111604736,USD,0.0,12251,93,4.0,4.0,2.1,4+,Games,38,5,1,1
+541517597,Tiny Wings HD,28681216,USD,2.99,12181,76,4.5,4.5,2.2,4+,Games,24,5,6,1
+582486077,"ElfYourself by Office Depot, Inc.",109844480,USD,0.0,12177,184,4.0,3.5,5.2.0,4+,Entertainment,37,5,4,1
+433847884,Bike Baron,183046144,USD,1.99,12162,57,4.5,4.5,3.9.1,4+,Games,40,5,1,1
+992640880,Rick and Morty: Pocket Mortys,955524096,USD,0.0,12124,961,4.5,4.5,1.10,17+,Games,37,5,10,1
+1035696371,CLUE Bingo,232353792,USD,0.0,12123,107,4.5,4.0,2.4.6,12+,Games,38,5,1,1
+475772902,Night Sky,596499456,USD,0.0,12122,60,4.5,4.5,4.4.1,4+,Reference,37,5,29,1
+720825227,Optical Inquisitor 17+,54808576,USD,0.99,12099,1922,5.0,5.0,1.5,17+,Games,43,5,16,1
+471347413,YouNow: Live Stream Video Chat,91615232,USD,0.0,12079,24,3.5,3.5,13.25.0,12+,Social Networking,37,5,7,1
+1154436120,Hop,119472128,USD,0.0,12079,7635,4.5,4.5,1.2,4+,Games,40,5,1,1
+1066752474,Solitaire Ⓞ,68179968,USD,0.0,12077,1373,5.0,5.0,1.0.228,4+,Games,40,2,15,1
+373903654,WIRED Magazine,23879680,USD,0.0,12074,43,2.5,1.5,4.6.7,17+,News,24,5,1,1
+804641004,Speak & Translate - Voice and Text Translator,78640128,USD,0.0,12062,537,4.5,4.5,3.5,4+,Productivity,38,5,12,1
+511841016,Extreme Fishing 2 Free,54148397,USD,0.0,12002,759,4.5,3.5,1.0.9,4+,Games,43,4,3,1
+357467791,AgingBooth,31869952,USD,0.0,11999,233,4.0,4.5,3.9.5,4+,Entertainment,37,4,1,1
+986073281,Face Swap App- Funny Face Changer Photo Effects,16275456,USD,0.0,11977,92,4.5,4.0,2.4,4+,Photo & Video,37,5,1,1
+651309421,FollowMeter for Instagram - Followers Tracking,11819008,USD,0.0,11976,172,4.5,4.5,3.6,4+,Social Networking,37,0,1,1
+991346515,Moments - private albums with friends and family,204382208,USD,0.0,11955,0,4.5,0.0,23.5,4+,Photo & Video,37,0,33,1
+473596157,Haunted Halloween Escape,15481361,USD,0.0,11945,11863,4.5,4.5,1.1,12+,Games,47,5,0,1
+761363261,Pakka Pets Village - Build a Cute Virtual Pet Town,205014016,USD,0.0,11933,755,4.5,5.0,2.0.11,4+,Games,37,5,1,1
+632285588,Dots: A Game About Connecting,112562176,USD,0.0,11900,7,4.0,4.0,2.3.3,4+,Games,37,5,1,1
+898040123,Wheel of Fortune: Game Show Word Puzzles,245901312,USD,0.0,11876,52,4.5,4.5,3.25,4+,Games,38,5,1,1
+398436747,"Fooducate - Lose Weight, Eat Healthy,Get Motivated",48590848,USD,0.0,11875,73,4.5,4.5,4.981,4+,Health & Fitness,37,0,1,1
+1057510303,Hair Color Changer - Styles Salon & Recolor Booth,33427456,USD,0.0,11828,0,4.5,0.0,2.4,4+,Entertainment,37,5,1,1
+760645916,Skyline Skaters,155365376,USD,0.0,11785,4,4.5,4.0,2.16.1,4+,Games,38,5,30,1
+697927927,Calendars 5 - Daily Planner and Task Manager,76848128,USD,6.99,11768,423,4.5,4.5,5.10.5,4+,Productivity,37,5,9,1
+1034630958,Tap Tap Dash,68935680,USD,0.0,11748,1113,4.5,4.5,1.8.4,4+,Games,37,5,15,1
+1040093707,Scanner App - PDF Document Scan,96234496,USD,0.0,11696,2109,4.5,4.5,3.0.1,4+,Business,37,5,13,1
+334256223,CBS News - Watch Free Live Breaking News,78047232,USD,0.0,11691,44,3.5,4.5,3.5.1,12+,News,37,5,1,1
+564874986,Backflip Madness,17436862,USD,0.99,11687,11687,4.5,4.5,1.1.3,9+,Games,43,5,1,1
+472937654,Puffin Web Browser,66607104,USD,0.0,11677,121,4.0,4.0,5.2.2,17+,Utilities,37,5,28,1
+430152294,Talking Pierre the Parrot for iPad,60313600,USD,0.0,11665,364,4.0,4.5,3.3.1,4+,Entertainment,24,5,13,1
+1160056295,Mobile Legends: Bang bang,187168768,USD,0.0,11602,191,4.5,4.5,1.1.85.1581,12+,Games,38,5,9,1
+550946484,Word Chums,90521600,USD,3.99,11536,171,5.0,5.0,2.2.3,4+,Games,38,5,1,1
+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
+853834250,Peggle Blast,454746112,USD,0.0,11528,1153,4.0,3.5,2.10.0,9+,Games,38,5,6,1
+641900855,Tayasui Sketches,198511616,USD,0.0,11505,67,4.5,4.5,16.2,4+,Productivity,37,5,15,1
+285994151,:) Sudoku +,6169600,USD,2.99,11447,781,5.0,5.0,5.2.6,4+,Games,40,5,1,1
+598581619,Kingdom Rush Frontiers HD,438824960,USD,2.99,11447,726,5.0,5.0,1.9.2,9+,Games,24,5,1,1
+443904275,LINE,212208640,USD,0.0,11437,11,3.5,3.0,7.5.0,4+,Social Networking,37,5,17,1
+362348516,Amex Mobile,105982976,USD,0.0,11421,57,4.0,2.5,5.21.1,4+,Finance,37,4,1,1
+724816878,Lep's World 3,85154816,USD,0.0,11341,582,4.5,4.5,1.8.9,4+,Games,37,5,19,1
+1058528141,War Machines: 3D Multiplayer Tank Shooting Game,163080192,USD,0.0,11325,172,5.0,4.5,2.0.6,12+,Games,38,5,9,1
+591840203,CARROT To-Do - Talking Task List,7669760,USD,2.99,11322,10,5.0,4.5,5.2.4,9+,Productivity,37,0,1,1
+929346489,Dumb Ways to Die 2: The Games,104282112,USD,0.0,11295,270,4.0,4.0,1.7.2,12+,Games,38,5,16,1
+697996579,Flick Kick Football Legends,109421568,USD,0.0,11250,105,4.5,4.5,1.9.83,12+,Games,38,5,12,1
+481028647,Ice Rage,71846912,USD,1.99,11190,43,4.5,4.5,4.2,4+,Games,37,5,1,1
+503190232,Bridge Constructor,145968128,USD,1.99,11187,5,4.5,5.0,5.9,4+,Games,38,5,13,1
+588013838,VSCO,98576384,USD,0.0,11174,0,3.5,0.0,27.0,12+,Photo & Video,37,5,16,1
+363998953,iAnnotate PDF,44099584,USD,9.99,11156,8,4.5,2.5,3.2.6,4+,Productivity,24,5,1,1
+391855805,Spider Solitaire by MobilityWare,39446528,USD,4.99,11154,1862,4.5,5.0,3.2.1,4+,Games,38,5,3,1
+888251661,Bee Brilliant,199310336,USD,0.0,11151,152,5.0,5.0,1.42.0,4+,Games,38,5,30,1
+458272450,eHarmony™ Dating App - Meet Singles,102413312,USD,0.0,11124,15,2.5,1.0,5.5.1,17+,Social Networking,37,0,1,1
+1057961675,MMX Hill Dash — Off-Road Racing,202866688,USD,0.0,11123,202,4.5,4.5,1.0.5761,4+,Games,37,5,1,1
+1043589663,Rayman Adventures,437230592,USD,0.0,11100,15,4.0,4.5,2.4.0,4+,Games,37,5,16,1
+367287593,PrankDial - #1 Prank Call App,112515072,USD,0.0,11091,415,3.0,4.5,4.1.11,4+,Entertainment,37,0,6,1
+549105915,True Skate,66697216,USD,1.99,11065,35,4.0,3.5,1.4.24,4+,Games,37,4,1,1
+1009979707,Snapimals: Discover & Snap Amazing & Cute Animals!,221279232,USD,0.0,11060,713,4.5,4.5,1.1.8,4+,Games,37,5,1,1
+588358613,"Drawing Desk - Draw, Paint, Doodle & Sketch board",116443136,USD,0.0,11040,644,4.0,4.5,5.4.2,4+,Productivity,37,5,11,1
+1058709520,Tap Tycoon - Country vs Country,246093824,USD,0.0,11034,3142,4.5,5.0,2.0.8,4+,Games,37,5,1,1
+577423493,"Retrica - Selfie Camera with Filter, Sticker & GIF",112688128,USD,0.0,11021,9,4.5,4.5,4.1.1,4+,Photo & Video,37,0,16,1
+341036067,Macy's,107816960,USD,0.0,11013,76,3.5,5.0,5.11.0,4+,Shopping,37,0,1,1
+578467798,Fish Out Of Water!,72671232,USD,0.99,11000,935,4.5,4.5,1.2.8,4+,Games,38,5,13,1
+586449534,Microsoft PowerPoint,336831488,USD,0.0,10939,92,4.0,4.5,2.1,4+,Productivity,37,5,33,1
+943453328,Dictator: Outbreak,148776960,USD,0.0,10871,37,4.0,4.0,1.5.12,12+,Games,37,5,1,1
+839210443,Sunken Secrets,180488192,USD,0.0,10849,273,4.5,4.0,1.9.7,4+,Games,38,5,10,1
+375295479,Carcassonne,359192576,USD,9.99,10846,91,4.5,4.5,4.28,4+,Games,38,5,2,1
+1028623510,PewDiePie: Legend of the Brofist,457690112,USD,4.99,10828,1850,5.0,5.0,1.4.0,12+,Games,38,5,17,1
+922793622,Email - Fast & Secure mail for Gmail iCloud Yahoo,142936064,USD,0.0,10778,683,4.5,4.5,1.5.0,4+,Productivity,37,5,1,1
+1033282601,Teenage Mutant Ninja Turtles: Legends,920238080,USD,0.0,10771,186,4.5,4.5,1.8.21,9+,Games,37,5,12,1
+476312888,"Photo Lab PRO HD: frames for pictures, face sketch",101117952,USD,4.99,10754,5,4.5,5.0,2.8.24,12+,Photo & Video,37,3,10,1
+549027629,Super Hexagon,33219584,USD,2.99,10748,1842,4.5,4.5,2.3,4+,Games,38,4,1,1
+569185650,Pudding Monsters,35096576,USD,0.99,10703,0,4.5,0.0,1.3.0,4+,Games,40,0,11,1
+1051124278,Rival Fire,892332032,USD,0.0,10701,150,4.5,4.5,1.4.0,12+,Games,38,5,7,1
+1100331256,Dots & Co: A New Puzzle Adventure,180679680,USD,0.0,10693,19,4.5,4.5,2.9.3,4+,Games,37,5,1,1
+436672029,AliExpress Shopping App,133053440,USD,0.0,10647,185,4.0,4.5,5.2.7,12+,Shopping,37,0,18,1
+423198259,Chess Pro - with coach,43033600,USD,9.99,10619,893,5.0,5.0,2017.01,4+,Games,37,5,3,1
+738897668,VivaVideo - Best Video Editor & Photo Movie Maker,136221696,USD,0.0,10618,267,4.5,4.5,5.8.2,4+,Photo & Video,37,0,19,1
+602065803,Cover Orange 2: Journey,84934656,USD,0.99,10604,3488,4.5,4.5,1.2,4+,Games,43,5,11,1
+1087489471,War Tortoise,407088128,USD,0.0,10555,1026,5.0,5.0,1.2.1,12+,Games,40,5,1,1
+591626572,Endless Alphabet,76482560,USD,8.99,10534,20,5.0,5.0,3.4,4+,Education,37,4,1,1
+606800657,RPG AVABEL ONLINE,135512064,USD,0.0,10514,86,4.5,5.0,4.0.45,9+,Games,38,5,2,1
+621574163,Prime Photos from Amazon,76257280,USD,0.0,10511,2201,4.0,4.5,4.5.1,4+,Photo & Video,37,5,9,1
+447791438,Sprinkle: Water splashing fire fighting fun!,34025472,USD,1.99,10509,712,4.5,4.0,1.7.2,4+,Games,43,5,1,1
+598241102,Clear Vision 2,34690172,USD,0.99,10477,10477,4.5,4.5,1.0,17+,Games,43,0,1,1
+325462190,PGA Championship 2016 – Baltusrol Golf Club,64147456,USD,0.0,10472,58,3.5,2.0,8.1,17+,Sports,37,5,1,0
+404086528,LEGO Harry Potter: Years 1-4,475697678,USD,4.99,10463,5018,4.0,4.0,2.4,9+,Games,43,5,1,1
+377342622,360 Panorama,7954432,USD,1.99,10463,193,4.5,3.5,4.4.3,4+,Photo & Video,38,5,3,1
+443646748,"Fitness Buddy+ Gym Workout Exercise, Home Trainer",224675840,USD,2.99,10386,58,4.5,4.0,5.86,4+,Health & Fitness,37,0,31,1
+390422167,Catan HD,812010496,USD,1.99,10382,281,4.0,3.5,4.6.2,4+,Games,24,5,6,1
+1092463295,Monster Super League,163893248,USD,0.0,10368,110,5.0,4.5,1.3.7,12+,Games,38,5,11,1
+439852091,5K Runner: 0 to 5K Run Trainer. Couch potato to 5K,84338688,USD,4.99,10368,1051,5.0,5.0,7.3,4+,Health & Fitness,37,5,31,1
+768592901,Hide N Seek : Mini Multiplayer Game,185019392,USD,0.0,10358,293,4.0,4.0,4.6,12+,Games,38,5,1,1
+336599882,"Runtastic Running, Jogging and Walking Tracker",151388160,USD,0.0,10298,7,4.5,3.5,7.3,4+,Health & Fitness,37,0,15,1
+1012604262,Cat Kitty Kitten Coloring Pages - Free Girl Games,39411712,USD,0.0,10278,873,4.5,4.5,2.3,4+,Games,43,5,2,1
+427916203,"Expedia Hotels, Flights & Vacation Package Deals",125872128,USD,0.0,10278,112,3.5,4.5,17.21,4+,Travel,37,5,19,1
+1040608649,Mahjong Classic Board Game,68122624,USD,0.0,10275,240,4.5,4.5,1.1.4,4+,Games,37,3,1,1
+1071976327,Lords Mobile,351562752,USD,0.0,10263,287,4.5,4.5,1.43,9+,Games,38,5,18,1
+678448523,Skip-Bo™ Pro - The Classic Family Card Game,93094912,USD,1.99,10239,93,4.5,4.0,3.0.2,4+,Games,38,5,9,1
+979967712,Stupid Zombies 3,154107904,USD,0.0,10159,933,5.0,5.0,2.7,12+,Games,38,4,1,1
+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
+941380906,Attack the Light - Steven Universe Light RPG,312962048,USD,2.99,10132,2143,5.0,4.5,1.1.2,9+,Games,38,5,11,1
+1034019709,Weed Firm: RePlanted,122604544,USD,0.0,10122,1060,4.5,4.5,1.8.1,17+,Games,38,2,1,1
+691797987,Google Play Music,82697216,USD,0.0,10118,231,3.5,3.5,3.26.1007,12+,Music,37,5,32,1
+930441707,"Bumble – Find a Date, Meet Friends & Network",91858944,USD,0.0,10109,66,3.5,4.0,1.12.6,17+,Lifestyle,37,0,16,1
+490129379,Fresh Tracks Snowboarding,104357888,USD,0.0,10107,6726,4.5,4.5,1.52,4+,Games,43,5,6,1
+306561234,Map My Ride+ - GPS Cycling & Route Tracker,233513984,USD,2.99,10046,7,4.5,5.0,17.5.5,4+,Health & Fitness,37,0,9,1
+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.0,5.0,4.1,4+,Entertainment,43,0,1,1
+517329357,Dark Sky Weather,20826112,USD,3.99,10014,514,4.0,4.5,5.2.9,4+,Weather,37,3,1,1
+535338086,Certified Mixtapes - Hip Hop Albums & Mixtapes,41123840,USD,0.0,9975,15,4.5,3.0,2.7.3,12+,Music,37,1,1,1
+400882072,Flick Golf!,59663360,USD,0.99,9948,211,4.5,4.0,1.8.1,4+,Games,40,0,1,1
+673354210,High 5 Casino - Real Vegas Slots!,167804928,USD,0.0,9930,53,4.0,4.0,3.6.2,12+,Games,38,5,1,1
+879478102,Google Slides,249625600,USD,0.0,9920,44,4.0,4.5,1.2017.20204,4+,Productivity,37,5,69,1
+514345557,Home Design 3D GOLD,207154176,USD,9.99,9889,262,4.5,4.5,4.1.1,4+,Productivity,37,5,16,1
+367242040,The Impossible Game,14160896,USD,0.99,9885,10,4.0,4.0,1.6.1,4+,Games,40,0,1,1
+571801488,365Scores,129219584,USD,0.0,9879,192,4.5,5.0,4.4.9,4+,Sports,37,5,32,1
+973482987,Five Nights at Freddy's 3,47722496,USD,2.99,9876,3392,4.5,4.5,1.3,12+,Games,43,4,1,1
+599515468,Mr. Crab,133768192,USD,0.0,9875,33,4.5,4.0,1.7.3,4+,Games,37,5,9,1
+355524910,Worms 2: Armageddon,529755136,USD,4.99,9870,12,4.5,4.5,1.25,12+,Games,40,5,1,1
+347310316,All-in-1 Logic GameBox,22299021,USD,0.99,9854,823,4.0,4.0,1.19,4+,Games,47,0,1,1
+469284907,HP All-in-One Printer Remote,60647424,USD,0.0,9819,415,4.5,4.5,5.3,4+,Productivity,37,2,14,1
+852197796,Red Ball 4,105723904,USD,0.99,9818,177,4.5,4.5,1.3.11,4+,Games,38,5,15,1
+522826277,"Remind: Fast, Efficient School Messaging",117131264,USD,0.0,9796,60,4.5,4.5,7.10.1,4+,Education,37,5,6,1
+1032443533,Genies & Gems,280523776,USD,0.0,9768,90,4.5,4.5,62.20.102,4+,Games,37,5,13,1
+424123969,Dude Perfect,140165120,USD,0.99,9763,1556,4.5,4.5,1.1.5,4+,Games,43,0,1,1
+1071154495,Drop Flip,114199552,USD,1.99,9752,5730,4.5,4.5,1.3,4+,Games,38,4,10,1
+345445479,The Sims 3 World Adventures,812758016,USD,2.99,9744,42,3.5,3.0,1.2.21,12+,Games,37,4,6,1
+432849519,STREET FIGHTER IV VOLT,947195904,USD,4.99,9741,924,4.5,4.0,1.05.02,12+,Games,40,0,3,1
+645746786,Word Swag - Cool fonts & typography generator,112843776,USD,4.99,9731,1840,5.0,4.5,2.1.5,4+,Photo & Video,38,5,1,1
+457876088,ASOS,141503488,USD,0.0,9725,109,5.0,5.0,3.4.1,4+,Shopping,37,5,6,1
+814656403,Restaurant Story 2,154361856,USD,0.0,9699,2440,4.0,4.0,1.7.9,12+,Games,43,5,8,1
+329887910,Parking Mania,123544576,USD,0.99,9657,47,4.5,4.5,2.5.0,4+,Games,38,0,12,1
+426382105,Toca Hair Salon,51366912,USD,2.99,9649,29,4.0,3.5,1.2.7,4+,Education,40,5,1,1
+940247939,TurboTax Tax Return App - File 2016 income taxes,151153664,USD,0.0,9635,0,4.5,0.0,3.6,4+,Finance,37,5,1,1
+623592465,Heads Up!,90467328,USD,0.99,9567,356,4.5,4.5,3.8.6,12+,Games,37,5,2,1
+512393983,"Postmates - Food Delivery, Faster",87960576,USD,0.0,9519,3,3.5,4.0,3.9.21,4+,Food & Drink,37,0,1,1
+975364678,SongPop 2 - Guess The Song,117985280,USD,0.0,9517,119,4.5,4.5,2.7,12+,Games,37,5,17,1
+767268733,"FXNOW - Full Episodes, Movies, and Stream Live TV",71529472,USD,0.0,9496,208,3.0,4.0,1.11,12+,Entertainment,37,4,1,1
+534160364,Snail Bob,210245632,USD,0.99,9453,11,4.5,4.5,1.2.1,4+,Games,25,5,1,1
+560372072,Mini Golf Stars! Retro Golf Game,224983040,USD,0.0,9411,165,4.5,4.5,5.72,17+,Games,37,5,9,1
+347411942,Sonic the Hedgehog 2,47182848,USD,2.99,9405,1089,4.0,4.5,3.1.10,4+,Games,37,5,1,1
+1114751883,diep.io,32992256,USD,0.0,9397,1113,4.0,4.0,1.2.4,9+,Games,40,5,1,1
+410229362,Mad Skills Motocross,16949248,USD,0.99,9341,53,4.5,3.5,3.7.0,12+,Games,43,5,1,1
+917912662,Afterpulse,970903552,USD,0.0,9321,167,4.5,4.5,1.7.3,17+,Games,25,5,16,1
+680819774,Google Home,143726592,USD,0.0,9303,101,3.5,2.5,1.23.905,12+,Entertainment,37,5,55,1
+447610616,Muffin Knight,214679552,USD,0.99,9302,401,4.5,4.0,2.0,9+,Games,43,5,9,1
+1009134067,Bullet Force,501043200,USD,0.0,9289,1037,4.5,4.5,1.05,17+,Games,37,5,1,1
+960120322,Batman: Arkham Underworld,783700992,USD,0.0,9287,41,4.5,4.5,1.0.205806,12+,Games,37,5,1,1
+328205875,Monkey Preschool Lunchbox,229272576,USD,1.99,9286,49,4.0,3.5,4.02,4+,Games,38,5,1,1
+1138360976,Evolution Calculator - CP & XP - for Pokemon GO!,19608576,USD,0.0,9269,5,5.0,1.0,1.2.3,4+,Utilities,37,2,1,1
+1124836530,Tank.IO War - Free Tank games of snake,25571328,USD,0.0,9259,136,5.0,4.5,1.1.2,4+,Games,38,4,2,1
+985746746,Discord - Chat for Gamers,26890240,USD,0.0,9152,0,4.5,0.0,1.8.7,4+,Social Networking,37,5,1,1
+373185673,WebMD for iPad,17613824,USD,0.0,9142,22,3.5,4.0,3.5,12+,Health & Fitness,26,5,1,1
+1120294802,Tap Titans 2,511670272,USD,0.0,9122,155,4.5,4.5,1.5.0,4+,Games,37,5,1,1
+532138534,Dragon Island Blue,53772288,USD,0.99,9119,1541,5.0,4.5,1.1.0,9+,Games,43,5,2,1
+897446215,Canva - Graphic Design & Photo Editing,126391296,USD,0.0,9114,337,4.5,5.0,2.3.0,4+,Photo & Video,37,5,17,1
+686542963,Sonic & All-Stars Racing Transformed,1117057024,USD,0.0,9109,8553,4.0,4.0,2.0,4+,Games,38,5,7,1
+444934666,QQ,218936320,USD,0.0,9109,17,3.0,1.5,7.0.1,12+,Social Networking,37,0,1,1
+655619282,Call of Duty®: Strike Team,1790959616,USD,6.99,9097,2662,4.0,4.5,1.4.0,17+,Games,39,5,5,1
+601831815,Ridiculous Fishing - A Tale of Redemption,49524736,USD,2.99,9095,3789,4.5,4.5,1.31,12+,Games,43,5,1,1
+546821797,Photo Editor-,46732288,USD,0.0,9095,411,4.5,4.5,5.0.4,4+,Photo & Video,37,5,31,1
+1056813463,"Dunkin' Donuts - Get Offers, Coupons & Rewards",149793792,USD,0.0,9068,6398,4.0,5.0,4.12.0,4+,Food & Drink,37,0,2,1
+662090840,My Talking Pet,51005440,USD,1.99,9035,72,4.5,5.0,2.4,4+,Entertainment,37,4,11,1
+1102054727,Snake Slither Run - Hungry Worm Eat Color Dot,35186688,USD,0.0,9034,4474,4.5,4.5,1.3,4+,Games,40,2,16,1
+691025552,Font Candy+ Typography - Editor Add Text To Photos,101650432,USD,2.99,9021,37,4.5,4.5,5.0,4+,Photo & Video,37,5,9,1
+366562751,"StubHub - Tickets to Sports, Concerts and Theatre",112609280,USD,0.0,9011,49,3.5,4.0,6.5.2,4+,Entertainment,37,5,6,1
+584485870,ZEDGE™ Ringtones,52864000,USD,0.0,9010,165,3.5,1.0,3.4.2,12+,Entertainment,37,3,12,1
+950022424,Jet: Online Shopping Deals & Bulk Wholesale Prices,203396096,USD,0.0,9006,216,4.5,5.0,3.7.2,4+,Shopping,37,5,1,1
+608899141,Cut the Rope: Time Travel,67177472,USD,0.99,9003,1038,5.0,4.5,1.5.0,4+,Games,40,0,10,1
+408233979,SimplePhysics,8773632,USD,1.99,8981,66,4.5,4.0,2.1.3,9+,Games,43,5,1,1
+550221096,STARZ,110111744,USD,0.0,8971,267,3.5,4.5,3.3.1,17+,Entertainment,37,5,1,1
+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
+386592716,IKEA Catalog,122979328,USD,0.0,8939,15,4.0,1.5,17.10,4+,Lifestyle,37,5,29,1
+295430577,Star Walk - Find Stars And Planets in Sky Above,150195200,USD,4.99,8932,55,4.5,5.0,7.2.3,4+,Education,37,0,12,1
+1006878949,Dear Diary - Interactive Story,74420224,USD,0.0,8922,1196,4.5,4.5,1.4.1,4+,Games,38,5,3,1
+1121971067,Archery King,133175296,USD,0.0,8905,473,4.5,4.5,1.0.14,4+,Games,38,5,15,1
+794859457,Mimitos Virtual cat with minigames,59750400,USD,0.0,8899,146,4.5,4.5,2.10,12+,Games,38,5,3,1
+1091700242,Gboard — a new keyboard from Google,125534208,USD,0.0,8873,196,4.0,3.5,1.4.4,4+,Utilities,37,5,23,1
+1152533846,Despicable Bear - Top Beat Action Game,218849280,USD,0.0,8872,728,5.0,4.5,1.2,17+,Games,37,5,1,1
+779561331,The Amazing Spider-Man 2,1452716032,USD,6.99,8843,4622,4.0,4.5,1.2.0,12+,Games,38,5,16,1
+611436052,Star Wars®: Knights of the Old Republic™,2469642240,USD,9.99,8767,965,4.0,4.5,1.2.5,12+,Games,40,5,5,1
+1075181011,Smashy City,102383616,USD,0.0,8742,36,4.5,4.0,1.1.6,9+,Games,38,5,1,1
+866617777,"8fit - Workouts, meal plans and personal trainer",101789696,USD,0.0,8730,1108,5.0,5.0,2.8.12,4+,Health & Fitness,37,4,4,1
+379937581,Sushi Cat,62373888,USD,0.99,8718,381,4.0,4.5,2.1.0,4+,Games,43,5,1,1
+439438619,Snapseed,141322240,USD,0.0,8683,98,4.0,4.5,2.17,4+,Photo & Video,37,3,34,1
+1035331258,iScanner - PDF Document Scanner App,81171456,USD,4.99,8675,245,4.5,5.0,3.2,4+,Business,37,5,13,1
+731645633,Hitman GO,1098042368,USD,4.99,8673,227,4.5,4.5,1.12.9,9+,Games,40,5,10,1
+567533074,Sonic Jump™,104692736,USD,2.99,8661,117,4.5,4.0,2.0.2,4+,Games,43,5,10,1
+348530331,This American Life,13725696,USD,2.99,8657,1468,3.5,4.0,3.0.8,9+,Entertainment,38,4,1,1
+435138734,PBS KIDS Video,57694208,USD,0.0,8651,23,3.5,3.5,3.0.5,4+,Education,37,5,1,1
+436555490,Junk Jack Retro,33743872,USD,2.99,8632,62,4.5,4.0,1.3.1,9+,Games,38,5,1,1
+437818260,SayHi Translate,26569728,USD,0.0,8623,292,4.5,5.0,3.9.12,4+,Business,37,4,35,1
+978759625,Sniper Fury: Fun Mobile Shooter Game,1042634752,USD,0.0,8596,263,4.5,4.5,2.2.0,17+,Games,37,5,15,1
+457687954,Doodle Jump HD,164236288,USD,2.99,8580,12,4.5,4.5,3.16.4,4+,Games,24,5,1,1
+553921725,Crazy Taxi,277301248,USD,0.0,8573,42,4.0,4.0,2.02,9+,Games,37,5,11,1
+529096189,Granny Smith,68317184,USD,1.99,8568,1902,4.5,4.5,1.3.1,4+,Games,43,5,1,1
+1080248000,Romwe shopping- Fashion Clothing for women,38983680,USD,0.0,8558,459,5.0,4.5,2.4.3,4+,Shopping,37,4,4,1
+992309647,Fit The Fat 2,169729024,USD,0.0,8557,1040,4.5,4.5,1.4,4+,Games,37,5,1,1
+364017607,ArtStudio for iPad - Draw Sketch and Paint,34310144,USD,4.99,8542,543,4.5,5.0,5.98,4+,Photo & Video,26,5,1,1
+1135575003,City Maps for Minecraft PE - The Best Maps for Minecraft Pocket Edition (MCPE),90124288,USD,0.0,8535,8535,4.0,4.0,1.0,4+,Reference,37,4,1,1
+517871755,"You Doodle - draw on photos & pictures, add text",72188928,USD,0.0,8520,49,4.5,4.5,7.5.8,4+,Photo & Video,37,5,18,1
+687877464,Stop - Fun Categories Word Game,104550400,USD,0.0,8516,28,4.5,4.0,3.2.11,12+,Games,38,5,6,1
+479943969,TETRIS®,63226880,USD,1.99,8480,66,4.0,3.0,2.0.36,4+,Games,37,0,11,1
+521922264,PIP Camera-Selfie Cam&Pic Collage&Photo Editor,74172416,USD,0.0,8454,26,4.5,5.0,3.2.2,4+,Photo & Video,40,5,2,1
+904278510,Hitman Sniper,1156409344,USD,0.99,8452,41,4.5,4.5,2.1.12,17+,Games,37,4,11,1
+883237617,My Emma :),136275968,USD,0.0,8412,149,4.5,4.5,2.7.0,4+,Games,38,5,1,1
+529096824,Lep's World 2 Plus - super best platformer games,66832384,USD,0.99,8404,79,4.5,4.5,2.6.5,4+,Games,40,5,3,1
+1072950932,Spin It Rich! Casino Slots: Free Slot Machines,150571008,USD,0.0,8402,1277,4.5,4.5,1.0.7541,12+,Games,38,5,7,1
+1009200976,Futurama: Game of Drones,385683456,USD,0.0,8394,414,4.5,4.5,1.12.0,12+,Games,37,5,45,1
+914433115,One More Line,127930368,USD,0.0,8392,778,4.5,4.5,2.0,4+,Games,40,5,1,1
+583446403,Garmin Connect™ Mobile,285233152,USD,0.0,8341,156,3.0,4.5,3.18,4+,Health & Fitness,37,0,29,1
+337288863,Shazam Encore,147118080,USD,2.99,8331,24,4.0,3.5,11.0.2,12+,Music,37,3,15,1
+444553167,ADP Mobile Solutions,53805056,USD,0.0,8324,306,4.0,3.0,2.8.2,4+,Business,37,5,24,1
+623158699,Talking Ginger 2,81372160,USD,0.0,8311,101,4.5,4.5,2.4.2,4+,Entertainment,38,5,13,1
+404553553,Bloons TD 4,23447492,USD,2.99,8304,1401,4.5,4.5,3.6.1,4+,Games,47,0,1,1
+1067644352,Diggy's Adventure,102445056,USD,0.0,8271,413,4.5,4.5,1.1.25,9+,Games,37,5,2,1
+283619399,Shanghai Mahjong,10485713,USD,0.99,8253,5516,4.0,4.0,1.8,4+,Games,47,5,1,1
+608707318,IMPOSSIBLE ROAD,128262144,USD,2.99,8249,18,4.0,4.5,1.3.3,4+,Games,37,5,1,1
+876054082,NFL Fantasy Football - Official NFL Fantasy App,81811456,USD,0.0,8234,4,3.0,3.5,2.10.1,4+,Sports,37,4,1,1
+852224786,Pet Buddies HD,108698624,USD,0.0,8227,178,4.5,4.5,1.0.27,4+,Games,24,5,1,1
+397533889,Black Friday 2017 Ads App - BlackFriday.fm,23296000,USD,0.0,8221,0,4.5,0.0,3.0.3,4+,Shopping,37,0,1,1
+409128287,The Guardian,92966912,USD,0.0,8176,13,5.0,5.0,4.30,12+,News,37,5,1,1
+405622181,MONOPOLY for iPad,979909632,USD,4.99,8165,110,3.5,3.5,1.1.93,4+,Games,24,5,8,1
+1079464948,Mekorama,9348096,USD,0.0,8157,6871,4.5,4.5,1.1,4+,Games,40,5,1,1
+382497397,Sam's Club: Wholesale Shopping & Bulk Buy Deals,113119232,USD,0.0,8149,173,4.0,4.5,17.4,4+,Shopping,37,5,1,1
+318304532,"Chess Pro with Coach - Learn,Play & Online Friends",69960704,USD,9.99,8138,107,4.0,4.5,2.89,4+,Games,37,5,13,1
+388491656,Fly Delta,140803072,USD,0.0,8094,191,3.0,2.5,4.2.2,4+,Travel,37,0,1,1
+530001625,"Disney Junior – Watch Full Episodes, Movies & TV",113905664,USD,0.0,8077,29,3.0,2.0,5.7.0,4+,Entertainment,37,5,1,1
+510301841,Toca Kitchen Monsters,64406528,USD,0.0,8062,197,4.0,3.5,1.0.5,4+,Education,40,5,1,1
+1057889290,Tomb of the Mask,103051264,USD,0.0,8054,44,4.5,4.5,1.2.13,9+,Games,37,5,1,1
+481623941,Toca Hair Salon - Christmas Gift,40584192,USD,0.0,8049,115,4.0,3.5,1.0.9,4+,Education,40,5,1,1
+460712294,Kids Doodle - Movie Kids Color & Draw,21745664,USD,0.0,8025,611,4.5,4.0,2.4.1,4+,Games,37,5,8,1
+599664106,"FanDuel - Daily Fantasy Baseball, Golf & Sports",89138176,USD,0.0,8014,59,4.5,5.0,2.16,17+,Sports,37,5,1,1
+1064078609,Swing,134987776,USD,0.0,8013,4421,4.5,4.5,1.2,4+,Games,38,5,1,1
+315021242,Unblock Me,42926080,USD,0.99,7973,127,4.0,5.0,1.5.95,4+,Games,40,5,15,1
+468401854,Daily Classifieds for iPhone,93220864,USD,0.99,7973,884,4.0,4.5,6.2.4.0,17+,News,37,0,5,1
+966810173,Vikings: War of Clans,142196736,USD,0.0,7969,97,4.5,4.5,2.5.0,9+,Games,38,5,8,1
+454021277,Skins Pro Creator for Minecraft,25740288,USD,1.99,7943,46,4.5,3.0,6.4.3,4+,Utilities,38,2,11,1
+331271904,Bloons TD,8432232,USD,2.99,7941,76,4.0,3.5,1.2.1,4+,Games,47,0,1,1
+877831982,Fantasy Forest Story: Land Before Dragons,191102976,USD,0.0,7935,310,4.5,4.5,1.7.3,4+,Games,43,5,8,1
+485246824,Cytus,1560187904,USD,1.99,7925,330,5.0,5.0,10.0.0,4+,Games,38,5,1,1
+459189186,Machinarium,258739200,USD,4.99,7919,73,4.5,4.0,2.1.1,12+,Games,37,5,14,1
+1012032539,Sideline - 2nd Phone Number,133328896,USD,0.0,7907,47,4.5,5.0,2.25,4+,Business,11,0,1,1
+907239855,Run!!!,75441152,USD,0.0,7891,1134,4.5,4.5,1.11.4,4+,Games,37,5,1,1
+284736660,Ms. PAC-MAN,70023168,USD,3.99,7885,40,4.0,4.0,4.0.4,4+,Games,38,0,10,1
+1078819328,Pokémon Duel,184539136,USD,0.0,7868,158,3.5,4.0,3.0.9,4+,Games,38,5,2,1
+949838009,Dreamdays: Count Down to the Days that Matter,52049920,USD,0.99,7863,99,5.0,4.0,1.3.7,4+,Utilities,37,0,12,1
+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
+950812012,Alto's Adventure,128664576,USD,4.99,7824,458,4.5,4.5,1.4.2,9+,Games,38,5,19,1
+867427452,Clash of Lords 2: New Age,207059968,USD,0.0,7795,25,4.0,4.5,2.0.65,9+,Games,38,5,1,1
+1033873301,Super Sharp,15110144,USD,1.99,7776,7776,5.0,5.0,1.1,4+,Games,38,4,14,1
+890390751,Soccer Star 2016 World Legend,328875008,USD,0.0,7765,4,4.5,4.5,3.2.16,12+,Games,38,5,1,1
+895425891,"Record by Under Armour, connects with UA HealthBox",226079744,USD,0.0,7754,425,4.5,4.5,3.17,12+,Health & Fitness,37,0,8,1
+1090617661,Steve - The Jumping Dinosaur Widget Arcade Game,26888192,USD,0.0,7751,39,4.5,4.5,1.6.1,4+,Games,37,5,3,1
+1010739052,My Singing Monsters: Dawn of Fire,149613568,USD,0.0,7749,336,4.5,4.5,1.11.0,4+,Games,38,5,1,1
+1135126803,Burrito Bison: Launcha Libre,468171776,USD,0.0,7740,1167,5.0,5.0,2.14,9+,Games,38,5,1,1
+570306657,LEGO Batman: DC Super Heroes,1139261440,USD,4.99,7717,1748,4.0,4.0,1.7,9+,Games,43,5,1,1
+474205928,The Price is Right™ Decades,310633804,USD,0.99,7693,7693,4.0,4.0,1.0.0,4+,Games,45,0,1,1
+1093108529,Coloring Book for Me - Coloring pages for adults,109358080,USD,0.0,7692,663,4.5,4.5,1.8,4+,Entertainment,37,5,20,1
+1020327340,DragonSoul RPG,212710400,USD,0.0,7681,15,4.5,3.0,2.13.0,9+,Games,38,5,17,1
+892320294,Tactile Wars,592302080,USD,0.0,7674,459,3.5,4.5,1.6.2,9+,Games,38,5,1,1
+909319292,Google Calendar – Make the most of every day,148507648,USD,0.0,7656,12,4.0,4.0,2.2.0,4+,Productivity,37,5,33,1
+945621521,Quick Hit Slots – Casino Slot Machines Games,186679296,USD,0.0,7646,46,4.0,4.0,v2.2.21,17+,Games,38,5,1,1
+606310581,Facetune,61157376,USD,3.99,7643,110,4.5,4.5,2.6.3,4+,Photo & Video,38,0,12,1
+476467441,Midway Arcade,120819712,USD,0.99,7639,632,4.0,4.0,1.8,12+,Games,43,3,2,1
+1039848719,Galaxy on Fire 3 - Manticore,1496265728,USD,0.0,7609,293,4.0,4.5,1.4.0,12+,Games,25,5,8,1
+888683802,Shades: A Simple Puzzle Game,44048384,USD,1.99,7598,447,4.5,4.5,1.3.1,4+,Games,38,5,14,1
+377989827,Diptic,36705280,USD,2.99,7578,67,4.5,5.0,10,4+,Photo & Video,37,5,1,1
+686449807,Telegram Messenger,71896064,USD,0.0,7573,142,4.0,4.5,4.0,4+,Social Networking,40,3,8,1
+536049508,Full Fitness : Exercise Workout Trainer,104803328,USD,2.99,7573,884,4.5,4.5,3.1,4+,Health & Fitness,37,0,11,1
+433508740,Bank of America - Mobile Banking for iPad,114268160,USD,0.0,7569,31,3.5,3.0,7.3.8,4+,Finance,24,5,1,1
+406239138,Puffin Browser Pro,63474688,USD,3.99,7565,80,3.5,3.0,5.2.0,17+,Utilities,37,5,28,1
+392188745,Noteshelf,117406720,USD,9.99,7562,9,4.5,4.0,11.9.6,4+,Productivity,24,5,7,1
+551798799,WWE,88150016,USD,0.0,7553,29,4.0,3.5,3.16.0,12+,Entertainment,37,4,9,1
+411930498,"GolfNow – Book Tee Times, Golf GPS, Scorecard",75874304,USD,0.0,7535,99,4.0,4.5,2.16.6,4+,Sports,37,5,3,1
+981796690,Dan The Man (Retro Action Platformer),99317760,USD,0.0,7527,228,5.0,5.0,1.1.4,12+,Games,38,5,10,1
+493136154,"Clear – Tasks, Reminders & To-Do Lists",38476800,USD,4.99,7521,539,4.0,3.5,1.7.4,4+,Productivity,37,5,1,1
+1065980436,POP! Slots – Las Vegas Casino Slot Machine Games,82688000,USD,0.0,7518,643,4.5,4.5,2.42.0,12+,Games,38,5,2,1
+1031228862,Crafty Candy - Match 3 Puzzle Game,151161856,USD,0.0,7511,4,4.5,4.5,1.45,4+,Games,38,5,5,1
+622434129,BeautyPlus - Selfie Camera for a Beautiful Image,128229376,USD,0.0,7503,334,5.0,5.0,6.4.5,4+,Photo & Video,37,0,9,1
+535640259,Fitstar Personal Trainer,50043904,USD,0.0,7496,79,4.5,4.5,3.1,4+,Health & Fitness,37,5,5,1
+911107930,Clicker Heroes,90272768,USD,0.0,7495,435,4.5,4.5,2.3.2,9+,Games,40,5,11,1
+974135847,Bejeweled Stars,161083392,USD,0.0,7486,26,4.0,4.0,2.8.2,4+,Games,37,5,6,1
+971265422,"HBO NOW: Stream original series, hit movies & more",41041920,USD,0.0,7477,18,2.5,2.0,2.4.1,17+,Entertainment,37,5,1,1
+335875911,My Cycles Period and Ovulation Tracker,77686784,USD,0.0,7469,68,3.5,5.0,5.10.3,12+,Health & Fitness,37,0,2,1
+381059732,Week Calendar,81845248,USD,1.99,7447,18,4.5,4.5,10.2.1,4+,Productivity,37,0,29,1
+405667771,"聚力视频HD-人民的名义,跨界歌王全网热播",90725376,USD,0.0,7446,8,4.0,4.5,5.0.8,12+,Entertainment,24,4,1,1
+976116090,Sky Force Reloaded,600387584,USD,0.0,7429,761,4.5,5.0,1.80,9+,Games,37,5,13,1
+647594931,Monogram - Wallpaper & Backgrounds Maker HD DIY with Glitter Themes,85420032,USD,0.0,7427,693,4.5,3.5,4.5.1,4+,Lifestyle,37,4,8,1
+1140495295,Super Cat Tales,64337920,USD,0.0,7423,7421,5.0,5.0,1.1,4+,Games,38,5,16,1
+334989259,WolframAlpha,30369792,USD,2.99,7410,82,4.0,4.5,1.7.3,9+,Reference,37,5,1,1
+913943275,TIDAL,63882240,USD,0.0,7398,639,4.0,4.5,1.18.0,12+,Music,37,5,9,1
+881330346,RoverCraft Space Racing,475708416,USD,0.0,7375,42,4.5,4.5,1.28.1,4+,Games,37,5,1,1
+1060433597,BBTAN by 111%,53789696,USD,0.0,7367,149,4.5,4.5,2.2,4+,Games,40,5,1,1
+903799541,Free QR Code Reader & Barcode Scanner for iPhone,5851136,USD,0.0,7343,1680,4.5,4.5,0.13,4+,Utilities,38,5,16,1
+316227296,10 Pin Shuffle Pro Bowling,36647936,USD,3.99,7315,138,4.0,4.5,2.01,4+,Games,37,5,6,1
+540925164,Need for Speed™ Most Wanted,2023336960,USD,4.99,7315,161,4.0,3.0,1.0.54,4+,Games,37,5,11,1
+567008119,e-Sword HD: Bible Study Made Easy,20587520,USD,4.99,7309,136,5.0,5.0,6.0,4+,Reference,24,5,3,1
+310636441,"iStudiez Pro – Homework, Schedule, Grades",55815168,USD,2.99,7308,15,4.0,4.5,1.9.1,4+,Productivity,37,5,30,1
+454958810,Flick Champions HD,117258240,USD,1.99,7289,19,4.5,4.5,2.1.0,4+,Games,37,5,1,1
+350962117,Weibo,199585792,USD,0.0,7265,11,3.5,4.0,7.5.2,17+,Social Networking,37,5,2,1
+410896080,PlayStation®App,20168704,USD,0.0,7256,491,3.0,2.5,4.20.9,12+,Entertainment,37,4,19,1
+916365675,Swype,39969792,USD,0.99,7216,383,3.0,2.0,1.6.3,4+,Utilities,37,5,22,1
+506462353,Emoji - inTextMoji Pro ;),130950144,USD,0.99,7204,337,4.5,4.5,7.9,9+,Entertainment,38,5,21,1
+990345796,Builder Buddies: 3D City Building Simulator,10946560,USD,0.0,7197,296,4.0,4.5,1.2.0,9+,Games,38,5,1,1
+378352300,Edmodo,127939584,USD,0.0,7197,0,3.5,0.0,5.9.2,4+,Education,37,4,4,1
+1050745469,Slots: DoubleUp Free Slot Games - Slot Machines,168200192,USD,0.0,7177,123,5.0,4.5,1.127,12+,Games,40,5,10,1
+472014516,"Kohl's App: Scan, Shop, Pay and Save!",98870272,USD,0.0,7174,166,4.0,4.0,7.19.46,4+,Shopping,37,0,1,1
+543054341,Word Search Colorful,19643392,USD,0.0,7131,17,4.0,4.5,4.98.98,12+,Games,38,5,13,1
+1017492454,YouTube Music,114122752,USD,0.0,7109,48,3.5,3.0,1.78,17+,Music,37,0,1,1
+471341991,Infinite Flight - Flight Simulator,114197504,USD,4.99,7100,0,4.5,0.0,16.13.0,4+,Games,38,5,30,1
+931130399,Smash Monsters - City Rampage,111940608,USD,0.0,7084,8,4.5,4.5,4.40,9+,Games,38,5,7,1
+687888390,République,3646993408,USD,1.99,7078,102,4.5,3.5,5.03,12+,Games,37,1,1,1
+1008519817,Hungry Babies Mania,207542272,USD,0.0,7075,31,4.5,4.0,2.3.2,4+,Games,38,5,1,1
+1004539546,Olympus Rising,126610432,USD,0.0,7072,150,4.5,4.5,3.3.0,12+,Games,37,5,10,1
+364502063,"PDF Reader Pro Edition - Annotate,edit & sign PDFs",62978048,USD,9.99,7033,119,4.0,4.5,8.3,4+,Business,37,5,11,1
+778658393,GoodNotes 4 - Notes & PDF,195221504,USD,7.99,7004,85,4.5,4.5,4.11.10,4+,Productivity,37,5,11,1
+933623806,StickyBalls Deluxe - Addicting Fall Down Game,148612096,USD,0.0,7002,4,4.5,5.0,3.1.1,4+,Games,40,5,1,1
+823804745,Multiplayer Terraria edition,15790080,USD,3.99,6981,628,4.0,4.0,1.5,9+,Games,37,5,1,1
+554937499,Earn to Die,56385536,USD,0.99,6977,893,4.5,4.5,1.0.17,12+,Games,43,0,1,1
+938183394,Christmas Food Fever Cooking Maker Kids Games,72098816,USD,0.0,6975,1013,4.0,4.0,1.1,4+,Games,40,5,1,1
+645704840,"Solitaire Deluxe® Social - Classic, Spider, more",112141312,USD,0.0,6970,93,4.5,4.5,3.5.1,4+,Games,37,5,1,1
+852152318,The Impossible Letter Game,25113600,USD,0.0,6956,380,4.5,4.5,5.2,4+,Games,37,3,1,1
+904052407,"Hopper - Predict, Watch & Book Flights",96394240,USD,0.0,6944,88,4.5,4.0,3.6.3,4+,Travel,37,0,1,1
+730878935,Christmas Dentist Doctor Kid Games (Girls & Boys),38051840,USD,0.0,6917,454,4.5,4.0,1.6,4+,Games,40,4,1,1
+601584735,Junk Jack,161118208,USD,4.99,6891,34,4.5,4.0,3.1,4+,Games,37,5,1,1
+394057299,Battleheart,275481600,USD,2.99,6879,54,4.5,4.5,1.6,9+,Games,38,5,1,1
+1059405547,Best Fiends Forever,210092032,USD,0.0,6872,989,4.5,5.0,2.4.1,4+,Games,37,5,11,1
+852250176,No Brakes,21550080,USD,0.0,6865,171,4.5,4.5,1.3.9,4+,Games,40,5,1,1
+460494135,Watch TNT,138006528,USD,0.0,6856,8,2.0,1.5,4.1.1,17+,Entertainment,37,4,1,1
+979151411,Nonstop Knight,161026048,USD,0.0,6841,139,4.5,4.5,1.9.6,9+,Games,37,5,15,1
+913105070,Fist of Fury,45833216,USD,0.0,6813,102,4.5,4.5,1.1.7,9+,Games,38,5,1,1
+650276551,Seven - 7 Minute Workout Training Challenge,142803968,USD,0.0,6808,9,4.5,4.0,5.1.1,4+,Health & Fitness,37,5,8,1
+325954996,Spider:  The Secret of Bryce Manor,126312448,USD,1.99,6780,68,4.0,4.5,1.5,9+,Games,38,0,5,1
+830544402,Leo's Fortune,96093184,USD,4.99,6776,346,4.5,4.5,1.0.7,9+,Games,37,5,11,1
+633443676,Deus Ex: The Fall,1654582272,USD,4.99,6764,105,4.0,4.5,1.0.6,17+,Games,37,5,5,1
+1116027365,Mystic Messenger,405535744,USD,0.0,6754,70,4.5,4.5,1.7.5,12+,Games,37,0,1,1
+916585802,Tobuscus Adventures: Wizards,438812672,USD,4.99,6741,825,5.0,5.0,1.0.9,9+,Games,37,4,1,1
+1068110571,Baby Story - Pregnancy Pics Baby Milestones Photo,166354944,USD,0.0,6700,5964,4.5,4.5,1.6,4+,Photo & Video,37,5,12,1
+673120263,Step Out Of Bed! Smart alarm clock to get awake early with a tricky and awakening steps counter - Best alarm app to wake up on time with alarmy music ringtone,35266560,USD,1.99,6696,5031,4.0,4.0,1.2.2,4+,Lifestyle,40,0,10,1
+1105577194,Tinker Island: Survival Adventure,315353088,USD,0.0,6686,7,4.5,4.5,1.2.5,9+,Games,37,4,1,1
+950795722,Prodigy Math Game,10961920,USD,0.0,6683,6051,4.5,4.5,1.6,9+,Education,37,5,1,1
+725097967,"Flipp - Weekly Ads, Shopping List, and Coupons",92380160,USD,0.0,6677,78,4.5,4.5,6.0.3,4+,Shopping,37,4,2,1
+719219382,Epic! - Unlimited Books for Kids,166014976,USD,0.0,6676,122,4.5,4.0,3.01,4+,Education,37,5,7,1
+1112858566,Nerve — Truth or Dare Dirty Houseparty Party Games,89057280,USD,0.0,6658,130,4.0,4.5,2.0.1,17+,Lifestyle,37,4,7,1
+749113886,Calculator Pro for iPad - Scientific Calculator,68042752,USD,2.99,6645,629,4.5,4.5,4.8,4+,Utilities,24,5,14,1
+941931465,Hidden Objects: Mystery Society: Solve Crime Cases,94069760,USD,0.0,6624,12,4.0,4.5,3.14,12+,Games,40,5,1,1
+951417499,Touchdown Hero,163222528,USD,0.0,6570,152,4.5,4.5,2.5,4+,Games,38,5,1,1
+1098189387,Mahjong Treasure Quest,122580992,USD,0.0,6557,39,4.5,4.5,2.14.3,4+,Games,38,5,6,1
+1123132173,Suicide Squad: Special Ops,363020288,USD,0.0,6551,437,4.5,4.5,1.1.2,12+,Games,38,5,1,1
+561350520,Capture - Control Your GoPro Camera - Share Video,94800896,USD,0.0,6542,145,3.0,1.5,3.3.2,12+,Photo & Video,37,4,10,1
+465694275,Zen Pinball,68499456,USD,0.0,6534,94,4.5,4.5,1.42.1,9+,Games,38,5,1,1
+396669943,Death Worm,29303808,USD,0.99,6527,15,4.0,4.0,1.65,12+,Games,37,5,1,1
+1100883805,Bud Farm: Grass Roots,65891328,USD,0.0,6523,485,4.5,5.0,1.10.0,17+,Games,37,5,1,1
+363486802,Star Walk HD - Night Sky Map,150221824,USD,4.99,6503,60,4.5,5.0,7.2.3,4+,Education,24,5,12,1
+1133031538,Pixel Color Ball Fell From The Sky,33778688,USD,0.0,6493,75,5.0,4.5,1.8,4+,Entertainment,40,2,1,1
+645682444,Verizon Cloud,104749056,USD,0.0,6482,409,4.5,4.5,17.2.4,4+,Productivity,37,5,1,1
+1011788068,Would You Rather?,33028096,USD,0.0,6479,2263,4.5,4.5,1.70,12+,Games,40,5,2,1
+416048305,Meitu,142101504,USD,0.0,6478,21,5.0,5.0,6.7.0,4+,Photo & Video,37,0,5,1
+971304016,Lara Croft GO,1176644608,USD,4.99,6431,166,5.0,5.0,2.1.7,9+,Games,37,5,10,1
+1159035153,Pineapple Pen,97951744,USD,0.0,6430,2225,4.5,4.5,1.4,4+,Games,38,5,1,1
+1119856566,NARUTO SHIPPUDEN: Ultimate Ninja Blazing,189709312,USD,0.0,6426,393,4.5,4.5,1.5.10,9+,Games,38,5,1,1
+749057895,Pimp Your Screen - Custom Themes & Wallpapers,81352704,USD,1.99,6424,533,4.5,4.5,4.2,4+,Lifestyle,37,5,13,1
+476508724,A Charlie Brown Christmas + iMessage Sticker Pack!,121874432,USD,5.99,6420,36,4.5,5.0,4.0,4+,Book,37,5,1,1
+598581396,Kingdom Rush Frontiers,292712448,USD,1.99,6419,531,4.5,5.0,1.9.2,9+,Games,40,0,1,1
+467738064,"AEO|Aerie: Jeans, Dresses, Swimsuits & Bralettes",64024576,USD,0.0,6408,77,4.0,4.5,4.1.2,4+,Shopping,37,0,1,1
+636240052,RUNNING for weight loss: workout & meal plans,110701568,USD,0.0,6407,267,4.5,4.5,6.2,4+,Health & Fitness,37,0,10,1
+352670055,F-Sim Space Shuttle,76394496,USD,4.99,6403,491,4.5,4.5,2.10,4+,Games,43,5,1,1
+1044867788,Day One Journal,182986752,USD,4.99,6380,71,4.5,4.5,2.1.10,4+,Lifestyle,37,5,16,1
+979713827,DragonVale World,117929984,USD,0.0,6379,46,4.5,4.5,1.11.0,4+,Games,25,5,11,1
+433398108,PicFrame,36758528,USD,0.99,6374,66,4.5,5.0,9.7.2,4+,Photo & Video,37,5,21,1
+284862767,FreeCell,55153664,USD,4.99,6340,668,4.5,4.5,4.0.3,4+,Games,38,5,2,1
+984394908,Order & Chaos 2: 3D MMO RPG Online Game,703052800,USD,0.0,6325,56,4.0,4.5,2.0.0,12+,Games,38,5,15,1
+1032997004,Endless Sky,35807232,USD,0.0,6313,2349,4.5,4.5,1.1.1,4+,Games,40,5,1,1
+749132901,"Notepad+: Take Notes, Annotate and Write on PDF",63457280,USD,14.99,6288,268,4.5,4.5,3.9,4+,Productivity,24,5,12,1
+1069160488,Taps to Riches,221522944,USD,0.0,6286,291,4.5,4.5,2.06,4+,Games,37,5,1,1
+1067684327,Good Knight Story,153513984,USD,0.0,6282,6282,5.0,5.0,1.0.2,12+,Games,35,5,12,1
+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
+932779605,Real Boxing 2 ROCKY,666117120,USD,0.0,6263,277,4.5,4.5,1.8.3,12+,Games,37,5,11,1
+576443892,InstaLogo Logo Creator - Graphic design maker,123656192,USD,2.99,6263,172,4.5,4.5,3.1,4+,Business,37,5,28,1
+374211477,Notes Plus,109620224,USD,9.99,6257,15,4.0,4.0,5.0,4+,Productivity,37,5,11,1
+1151831172,Twin Moons Society™: Hidden Mystery,83590144,USD,0.0,6219,1510,4.0,4.5,0.4.400,4+,Games,24,5,11,1
+904737541,Kingdom Rush Origins HD,567183360,USD,4.99,6209,864,5.0,4.5,1.8.2,9+,Games,24,5,1,1
+1134858124,"Cheats For Pokemon Go - Gameplay, PokeCoins Guide, Catch Videos",13390848,USD,0.0,6205,26,4.5,3.0,1.2,12+,Entertainment,38,4,1,1
+1063191689,Faily Brakes,196969472,USD,0.0,6183,88,4.0,4.0,1.19,9+,Games,38,5,18,1
+935754064,Duet Display,30325760,USD,9.99,6165,25,4.5,4.0,1.4.1,4+,Productivity,37,5,15,1
+491075156,LEGO® Juniors Create & Cruise,241110016,USD,0.0,6152,157,4.0,4.0,6.3.1519,4+,Games,37,5,1,1
+775888026,Shadowmatic,314895360,USD,3.99,6136,342,4.5,5.0,1.9.5,4+,Games,40,5,13,1
+1108964305,Mars: Mars,157614080,USD,0.0,6116,291,4.5,5.0,11,9+,Games,38,5,1,1
+425073498,"Procreate – Sketch, paint, create.",132968448,USD,5.99,6109,356,4.5,4.5,3.2.1,4+,Entertainment,24,5,13,1
+958604518,Lumino City,2441955328,USD,4.99,6097,190,4.5,5.0,2.5,4+,Games,37,5,11,1
+310951782,2XL Supercross,270729216,USD,4.99,6093,3,4.0,5.0,1.2.1,4+,Games,37,5,7,1
+354972939,FINAL FANTASY,114843648,USD,7.99,6091,75,4.0,3.5,1.1.2,9+,Games,38,3,8,1
+582790430,"SeatGeek – Tickets to Sports, Concerts & Broadway",68196352,USD,0.0,6088,196,4.5,5.0,4.6.0,4+,Entertainment,37,5,1,1
+1051767749,Live Wallpapers by Themify: Dynamic Animated Theme,25202688,USD,0.0,6083,112,4.0,3.5,1.4,4+,Entertainment,37,0,11,1
+403037266,"QuakeFeed Earthquake Map, Alerts, and News",70262784,USD,0.0,6081,15,4.5,4.5,4.1,4+,Weather,37,5,1,1
+940452319,Dragon Land,146343936,USD,0.0,6079,357,4.5,4.5,3.2.3,4+,Games,37,5,12,1
+777111034,ChineseSkill -Learn Mandarin Chinese Language Free,174596096,USD,0.0,6077,157,5.0,5.0,4.1.1,4+,Education,37,3,8,1
+972909677,Periscope - Live Video Streaming Around the World,108550144,USD,0.0,6062,17,3.5,4.0,1.10,4+,Social Networking,37,3,34,1
+651209536,Battle Camp HD - Collect & Evolve Your Monsters,335650816,USD,0.0,6055,34,4.5,4.0,4.11,4+,Games,24,5,20,1
+1001425491,Thumb Drift - Furious One Touch Car Racing,184078336,USD,0.0,6051,173,4.5,4.5,1.4.3,4+,Games,37,5,12,1
+322523436,Resident Evil 4: PLATINUM,81374398,USD,4.99,6046,446,4.0,4.0,1.04.10,12+,Games,47,0,1,1
+1097025180,Fish Mania™,141017088,USD,0.0,6038,153,5.0,5.0,1.0.418,4+,Games,38,5,12,1
+714086913,Cops N Robbers (Jail Break) - Survival Mini Game,269532160,USD,0.0,6013,125,4.0,3.5,1.5.1,9+,Games,40,5,1,1
+599083564,Disney Junior Appisodes,394020864,USD,0.0,6009,16,3.5,4.0,2.10.0,4+,Entertainment,37,5,2,1
+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
+422366403,MTV,113787904,USD,0.0,5987,97,2.5,2.0,4.0.0,12+,Entertainment,37,5,1,1
+917932200,GIF Keyboard,71191552,USD,0.0,5979,591,4.0,4.5,3.5,17+,Utilities,37,4,22,1
+960128616,Plug for Minecraft PE,14828544,USD,2.99,5969,41,4.0,4.0,3.15,4+,Games,37,5,1,1
+879828836,World Of Navy Ships,96100352,USD,1.99,5956,5956,4.5,4.5,1.0.0,12+,Games,43,5,1,1
+924620788,Google Classroom,143749120,USD,0.0,5942,25,4.0,4.5,2.2017.21202,4+,Education,37,5,33,1
+1053874290,Free VPN HexaTech - Unlimited VPN Proxy for iPhone,18821120,USD,0.0,5934,797,4.5,4.5,1.6.4,4+,Productivity,37,2,1,1
+364159440,Call of Duty: Zombies HD,35602607,USD,4.99,5853,3860,3.5,4.0,1.3.3,17+,Games,26,4,1,1
+946496840,Ball King,74174464,USD,0.0,5834,131,4.5,4.5,2.0.6,9+,Games,38,5,8,1
+1111665247,Ketchapp Basketball,72118272,USD,0.0,5833,1862,4.5,4.5,1.2,4+,Games,38,5,1,1
+1014919815,Pokémon Shuffle Mobile,106076160,USD,0.0,5805,560,4.5,5.0,1.10.0,4+,Games,38,3,7,1
+377704407,Cake Doodle,99558400,USD,0.99,5803,10,4.0,4.0,1.21,4+,Games,37,5,1,1
+286906691,Lifesum – Inspiring healthy lifestyle app,188017664,USD,0.0,5795,12,3.5,4.0,8.4.1,4+,Health & Fitness,37,5,11,1
+376183339,TED,84056064,USD,0.0,5782,149,3.5,3.5,3.0.4,12+,Education,37,5,22,1
+1030548464,hocus.,26484736,USD,0.99,5778,813,4.5,5.0,1.9.0,4+,Games,40,5,1,1
+1114681193,Snake.io - Worm.io - Agar Slither Snake Battle,61143040,USD,0.0,5768,1963,4.5,4.5,1.0.5,4+,Entertainment,38,4,1,1
+489833171,Visage makeup editor plus photo teeth whitener,134016000,USD,0.0,5767,9,4.0,4.5,4.0.9,4+,Photo & Video,37,3,10,1
+321369231,WORMS,253834240,USD,1.99,5758,9,4.0,3.0,2.6,12+,Games,40,0,1,1
+1012151919,Bakery Story 2,173878272,USD,0.0,5753,1991,4.0,4.0,1.6,4+,Games,38,5,1,1
+449945214,United Airlines,140942336,USD,0.0,5748,106,2.5,2.5,2.1.19,4+,Travel,37,1,1,1
+1006414665,Soda Dungeon,74728448,USD,0.0,5717,557,4.5,5.0,1.2.02,12+,Games,40,5,1,1
+530003802,"Disney XD – Watch Full Episodes, Movies & Live TV",109049856,USD,0.0,5703,13,3.5,3.0,5.7.0,4+,Entertainment,37,4,1,1
+968744559,Sonic Dash 2: Sonic Boom,190799872,USD,0.0,5697,684,4.5,4.5,1.7.5,4+,Games,37,5,7,1
+945077360,Sling TV: A La Carte TV. Watch Live Shows & Sports,100124672,USD,0.0,5693,476,2.5,4.0,5.0.5,12+,Entertainment,37,5,1,1
+664939913,"Tile - Find & track your lost phone, wallet, keys",78533632,USD,0.0,5684,33,4.0,5.0,2.12.1,4+,Lifestyle,37,5,5,1
+394075284,Youku HD,145140736,USD,0.0,5683,7,4.0,4.5,5.0,12+,Entertainment,24,5,1,1
+907405413,Video & TV Cast for Chromecast: Best Browser to cast and stream webvideos and local videos on TV & Displays,9646080,USD,0.0,5676,4694,4.0,4.0,1.8,17+,Photo & Video,38,5,1,1
+488818252,Chick-fil-A,96230400,USD,0.0,5665,643,3.5,3.5,5.9.1,4+,Food & Drink,37,0,1,1
+955387547,Green the Planet,14761984,USD,0.0,5660,1036,4.5,4.5,1.1.3,4+,Games,38,5,2,1
+969934912,Nom Cat - Endless feeding frenzy arcade game,65225728,USD,0.0,5655,375,4.5,4.5,2.2.7,4+,Games,37,5,1,1
+971756507,Does not Commute,87481344,USD,0.0,5645,1563,4.0,4.5,1.4.0,4+,Games,40,5,9,1
+556500145,"Tiny Scanner+ - PDF scanner to scan document, receipt & fax",57836544,USD,4.99,5611,1549,5.0,5.0,4.1.1,4+,Business,38,4,9,1
+511332635,Sonic The Hedgehog 4™ Episode II,721056768,USD,2.99,5606,44,3.5,4.0,2.1.4,9+,Games,40,5,9,1
+887362336,RGB Express - Mini Truck Puzzle,37166080,USD,1.99,5575,209,4.5,4.5,1.4.1,4+,Games,40,5,8,1
+321756558,Pixel Starships™ : 8Bit MMORPG,69083136,USD,0.0,5565,140,4.5,4.5,0.39,9+,Games,37,5,17,1
+300265786,Rowmote: Remote Control for Mac,54088704,USD,0.99,5531,37,3.5,2.5,4.3,4+,Utilities,40,3,13,1
+680733772,Gods Of Rome,958016512,USD,0.0,5526,816,4.5,4.5,1.4.1,12+,Games,37,5,14,1
+921160527,Everpix HD Wallpapers - Cool Backgrounds & Themes,67971072,USD,0.0,5521,24,4.5,5.0,2.2.2,4+,Entertainment,37,5,20,1
+655749677,Breach & Clear,1015242752,USD,3.99,5513,665,4.5,4.5,2.3.0,17+,Games,39,5,1,1
+963093508,Dragon Hills,175003648,USD,1.99,5508,730,4.5,4.5,1.2.1,9+,Games,38,5,1,1
+876520365,E! Now,95158272,USD,0.0,5506,26,4.5,4.0,6.0.5,12+,Entertainment,37,5,1,1
+816283225,PKTBALL - Endless Arcade Smash Sport,123222016,USD,0.0,5492,145,4.5,5.0,1.2.2,4+,Games,40,5,1,1
+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
+1023146677,Five Nights at Freddys 4,50814976,USD,2.99,5478,5478,4.5,4.5,1.0,12+,Games,43,5,1,1
+1004227662,Brain Dots - Draw and solve! Brain Training Game,53430272,USD,0.0,5469,2053,4.5,4.5,2.6.1,4+,Games,38,5,1,1
+1095459556,Nike+,149407744,USD,0.0,5464,309,5.0,4.5,1.3.3,4+,Shopping,37,0,1,1
+469863705,Khan Academy: you can learn anything,162706432,USD,0.0,5459,10,4.0,4.5,4.3.0,4+,Education,37,5,6,1
+311466554,Pocket Tanks Deluxe,39827456,USD,4.99,5452,39,4.5,4.5,2.3.1,9+,Games,38,5,1,1
+1046684325,Sam’s Club Scan & Go,32470016,USD,0.0,5448,371,4.5,5.0,1.4.5,4+,Shopping,37,0,1,1
+501220013,LEGO Harry Potter: Years 5-7,489748292,USD,4.99,5435,3205,4.0,4.0,1.3,9+,Games,43,5,1,1
+716932895,Force Saber of Light,60180480,USD,0.0,5424,571,4.5,4.5,2.5.3,4+,Entertainment,37,5,1,1
+864880531,Civilization Revolution 2,1009885184,USD,9.99,5416,2804,4.0,4.0,1.5.3,12+,Games,38,5,6,1
+718043190,Fantastical 2 for iPhone - Calendar and Reminders,45045760,USD,4.99,5405,95,4.5,4.5,2.8.4,4+,Productivity,37,0,6,1
+372283316,▻Sudoku +,61595648,USD,4.99,5397,476,5.0,5.0,5.4,4+,Games,40,5,7,1
+951627425,DRAGON BALL Z DOKKAN BATTLE,116492288,USD,0.0,5362,796,4.0,4.0,3.0.1,9+,Games,40,4,4,1
+424912055,Superbrothers: Sword & Sworcery EP,212580352,USD,3.99,5362,68,4.5,4.0,1.16,12+,Games,37,3,2,1
+500003565,"Ticketmaster - Tickets for Concerts, Sports, Shows",174097408,USD,0.0,5356,63,3.0,3.5,1.12.1,4+,Entertainment,37,4,2,1
+665001825,Hunter Island: Monsters & Dragons,91312128,USD,0.99,5305,632,4.5,4.5,2.02,9+,Games,40,5,6,1
+826921329,Face Swap Booth – photo faceswap & face changer,27779072,USD,0.0,5300,198,4.0,4.0,1.6.4,4+,Entertainment,37,5,1,1
+841377297,Windy ~ Sleep Relax Meditate & white noise sounds,95154176,USD,1.99,5285,259,4.5,4.5,4.2.3,4+,Health & Fitness,37,5,2,1
+885271158,"Adobe Photoshop Mix - Cut out, combine, create",202334208,USD,0.0,5253,87,4.5,4.5,2.7.1,4+,Photo & Video,37,5,19,1
+929195587,Clockmaker – Mystery Match3 Puzzle,143858688,USD,0.0,5246,466,4.5,4.5,24.92.0,4+,Games,38,4,8,1
+599852923,School of Chaos Online MMORPG,209825792,USD,0.0,5237,129,4.5,4.5,1.597,12+,Games,38,5,1,1
+646100661,"AOL: News, Email, Weather & Video",85273600,USD,0.0,5233,0,4.0,0.0,4.6.6,12+,News,37,5,3,1
+595303942,Baby Care & Dress Up - Love & Have Fun with Babies,123812864,USD,0.0,5230,73,4.0,4.5,3.4,4+,Games,38,5,11,1
+675628523,Skinseed - Skin Creator for Minecraft Skins,46197760,USD,0.0,5222,199,4.0,4.5,5.12,4+,Entertainment,37,5,1,1
+1051334048,RISK: Global Domination,222176256,USD,0.0,5217,60,4.0,4.5,1.11.38,9+,Games,38,5,1,1
+571640421,Slender Rising,228978688,USD,2.99,5214,76,4.5,4.5,1.7,12+,Games,40,4,1,1
+1077024869,Nicki Minaj: The Empire,601800704,USD,0.0,5196,357,4.5,4.0,1.2.1,12+,Music,38,5,1,1
+865958296,Kritika: The White Knights,1062202368,USD,0.0,5185,2,4.5,5.0,2.37.6,12+,Games,38,5,12,1
+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
+1151747316,Grumpy Cat's Worst Game Ever,138964992,USD,0.0,5170,154,5.0,5.0,1.4.2,4+,Games,37,5,1,1
+402422247,iHandy Translator Pro,30382080,USD,2.99,5163,86,4.5,4.5,1.3.1,4+,Reference,38,0,11,1
+885788690,Online Head Ball,111458304,USD,0.0,5160,6,4.5,4.0,18.97,4+,Games,40,4,9,1
+730712409,ProCam 4 - Manual Camera + RAW,45063168,USD,4.99,5150,236,4.5,4.5,8.9,4+,Photo & Video,37,5,13,1
+923760656,Radiation Island,1537737728,USD,2.99,5148,1465,4.5,4.0,1.0.6,12+,Games,38,5,10,1
+1115733806,Hand of God - Top Clicker & Tap Games,162750464,USD,0.0,5141,140,4.5,4.5,1.4,12+,Games,37,5,1,1
+1122488716,Make More!,35957760,USD,0.0,5134,186,4.5,4.5,1.4.1,9+,Games,37,5,11,1
+496438671,Real Fishing 3D Free,184348672,USD,0.0,5131,561,4.0,3.5,1.0.9,4+,Games,40,5,1,1
+852318295,Sounds app - Music And Friends,132413440,USD,0.0,5126,35,4.5,4.0,2.43,12+,Music,37,0,14,1
+903183877,Pako - Car Chase Simulator,166803456,USD,1.99,5115,194,4.5,4.5,1.18,9+,Games,40,5,1,1
+1112307917,Geometry Dash World,64278528,USD,0.0,5114,5114,4.5,4.5,1.0,4+,Games,37,5,1,1
+1099862552,Tap Smiths,141621248,USD,0.0,5112,114,4.5,5.0,1.2.3,4+,Games,40,5,1,1
+1085652055,"Collageable - Photo Collage Maker, Pic Grid Free",90942464,USD,0.0,5112,1764,4.5,4.5,1.5,4+,Photo & Video,37,0,11,1
+1073693724,Ghostbusters™: Slime City,521508864,USD,0.0,5111,354,4.5,4.5,1.4.0,12+,Games,38,5,1,1
+652077009,Toca Builders,87713792,USD,2.99,5102,114,4.5,4.0,1.0.5,4+,Education,40,5,18,1
+499289888,My Bowling 3D,176737280,USD,0.0,5090,6,4.0,3.5,1.12,4+,Games,37,5,1,1
+404990064,SkyView® - Explore the Universe,93429760,USD,1.99,5079,241,4.5,4.5,3.5.1,4+,Education,37,5,1,1
+657811530,Rayman Fiesta Run,146302976,USD,2.99,5078,761,4.5,4.5,1.5.3,4+,Games,38,5,13,1
+1112989865,Chat for Whatsapp - iPad Version,24287232,USD,0.0,5060,4189,3.5,3.5,1.2,12+,Social Networking,24,2,1,1
+394732447,Need for Speed™ Hot Pursuit,1269152768,USD,4.99,5059,20,4.0,3.5,1.3.10,4+,Games,37,5,8,1
+436134867,Jelly Defense,299294720,USD,2.99,5058,363,4.5,4.5,1.21,4+,Games,38,5,1,1
+453718989,QQ HD,118249472,USD,0.0,5058,0,3.5,0.0,6.6.1,4+,Social Networking,24,5,1,1
+652039347,"Princess Salon™ - Girls Makeup, Dressup and Makeover Games",53260288,USD,0.0,5030,1014,4.0,4.0,1.2,4+,Games,43,5,1,1
+910559026,Close5 - Buy & Sell Stuff Locally,62879744,USD,0.0,5010,60,4.0,4.0,2.10.0,17+,Shopping,37,0,1,1
+1077871641,SongFlip - Free Music Streamer,32579584,USD,0.0,5004,1883,4.5,4.5,1.0.5,4+,Music,37,3,1,1
+1108417718,PinOut!,118693888,USD,0.0,5003,3214,4.0,4.0,1.0.2,4+,Games,40,5,12,1
+352199775,Waterlogged - Daily Hydration Tracker,43439104,USD,0.0,5000,23,4.5,4.5,2.5.11,12+,Health & Fitness,37,5,10,1
+583066190,AVP: Evolution,875347968,USD,2.99,4996,732,4.5,4.5,3.0,12+,Games,38,5,8,1
+1146601414,Bold Moves,226617344,USD,0.0,4980,433,4.5,4.0,1.1,4+,Games,37,5,1,1
+573516833,Warhammer Quest,936792064,USD,2.99,4965,301,4.5,4.5,1.29,12+,Games,40,5,5,1
+480102733,Awesome Calendar - Personal Planner,30700544,USD,9.99,4962,4,4.5,5.0,5.4,4+,Productivity,37,5,16,1
+749124884,Alarm Clock for Me - Best Wake Up Music & Clock,120000512,USD,0.0,4959,768,4.0,4.0,2.17,4+,Utilities,37,5,12,1
+884880797,Magic Tiles : Music Maker - Don't Touch the White,36531200,USD,0.0,4944,564,4.5,4.5,2.7,4+,Games,37,5,1,1
+426282304,NBA JAM by EA SPORTS™ for iPad,415420416,USD,4.99,4934,164,4.0,4.0,1.1.36,4+,Games,24,5,8,1
+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
+970044095,The Last Vikings,89121792,USD,0.0,4919,12,4.5,4.5,1.3.18,9+,Games,37,4,1,1
+930026670,Enlight,127879168,USD,3.99,4915,337,4.5,4.5,1.3.3,4+,Photo & Video,37,5,13,1
+303058767,MASH,41691136,USD,1.99,4913,1,4.0,4.0,3.3.2,9+,Games,37,3,15,1
+961390574,CARROT Weather - Talking Forecast Robot,57446400,USD,3.99,4913,57,4.5,4.5,3.1.1,12+,Weather,37,5,1,1
+1073501073,Doomsday Clicker,198155264,USD,0.0,4910,8,4.5,4.5,1.9.8,9+,Games,37,5,22,1
+515094775,Bazaart Photo Editor Pro and Picture Collage Maker,120474624,USD,0.0,4909,479,4.5,5.0,4.6.3,4+,Photo & Video,37,2,13,1
+797535508,"Got It - Homework Help Math, Chem, Physics Solver",32726016,USD,0.0,4903,47,4.5,4.5,3.5.2,9+,Education,37,5,1,1
+965965461,Pancake – The Game,12034048,USD,0.0,4903,497,4.5,4.5,1.12,4+,Games,40,3,1,1
+1087685392,Solitaire Free: card games for adults,34105344,USD,0.0,4891,1105,4.5,4.5,1.26,4+,Entertainment,40,5,2,1
+336141475,优酷视频,204959744,USD,0.0,4885,0,3.5,0.0,6.7.0,12+,Entertainment,38,0,2,1
+577333970,Checkout 51: Grocery Coupons & Cash Back Savings,18385920,USD,0.0,4878,209,4.0,4.5,5.6,4+,Shopping,37,0,3,1
+432504470,Ticket to Ride,345904128,USD,2.99,4866,64,4.5,3.0,2.4.1,4+,Games,40,5,3,1
+665873523,"Retale - Coupons, Weekly Ads & Stores Nearby",113300480,USD,0.0,4861,19,4.5,4.5,7.8.0,4+,Shopping,37,5,1,1
+784797900,J&J Official 7 Minute Workout,242486272,USD,0.0,4861,138,5.0,5.0,2.6.3,4+,Health & Fitness,37,4,31,1
+814977594,Surgeon Simulator,514434048,USD,4.99,4820,43,4.0,3.5,1.5,12+,Games,37,5,1,1
+599534650,InstaBeauty -Camera&Photo Editor&Pic Collage Maker,88886272,USD,0.0,4818,53,4.5,4.5,2.9.2,4+,Photo & Video,25,5,3,1
+1003168863,BLEACH Brave Souls,181778432,USD,0.0,4815,27,4.5,4.5,4.5.1,12+,Games,38,4,3,1
+1146274176,Monster Craft GO - Find and Catch pixelmon CarToon,35549184,USD,0.0,4808,1503,4.5,5.0,1.8,4+,Games,37,4,1,1
+582793399,Rocket Video for Google Cast and Chromecast to TV,48523264,USD,1.99,4806,153,5.0,4.5,3.2,17+,Productivity,38,4,5,1
+483353496,Tap the Frog,95601664,USD,1.99,4802,5,5.0,5.0,1.5,4+,Games,37,5,8,1
+891132290,Simple Radio - Live AM & FM Radio Stations,36992000,USD,0.0,4787,13,4.5,4.5,4.2.5,4+,Music,37,5,3,1
+483336864,Quick Scan - QR Code Reader,38498304,USD,0.0,4783,285,4.5,4.0,1.1.6,4+,Utilities,40,0,1,1
+304731501,Tempo - Metronome with Setlists,22185984,USD,2.99,4781,1,4.5,5.0,3.9.2,4+,Music,37,5,10,1
+777310222,"GoodReader - PDF Reader, Annotator and File Manager",64333824,USD,4.99,4756,1191,4.5,4.5,4.12.1,4+,Productivity,40,5,1,1
+392788790,Sonic The Hedgehog 4™ Episode I,124710912,USD,2.99,4755,132,4.0,3.5,1.5,9+,Games,38,5,1,1
+433671262,"PhotoToaster - Photo Editor, Filters, Effects and Borders",58143744,USD,2.99,4748,391,5.0,5.0,6.7.5,4+,Photo & Video,37,5,1,1
+480375355,The Bard's Tale,1807310848,USD,2.99,4746,455,4.5,4.5,1.8.1,12+,Games,43,5,8,1
+983826477,Productive habits & daily goals tracker,9256960,USD,0.0,4736,1519,5.0,5.0,1.3.4,4+,Productivity,38,0,1,1
+1001250333,Star Trek Timelines,161198080,USD,0.0,4721,156,4.0,4.0,2.0.0,12+,Games,37,5,1,1
+419135449,iTheme - Themes for iPhone and iPad,52618240,USD,1.99,4719,61,4.0,4.5,5.1,4+,Lifestyle,37,5,23,1
+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
+1115249449,Fight List,38133760,USD,0.0,4702,15,3.5,4.0,2.29.0,4+,Games,37,0,3,1
+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
+1132715891,LUCKY BLOCK MOD ™ for Minecraft PC Edition - The Best Pocket Wiki & Mods Installer Tools,86874112,USD,0.0,4693,4693,4.0,4.0,1.0,12+,Reference,37,4,1,1
+290986013,Deliveries: a package tracker,30016512,USD,4.99,4684,10,4.0,4.0,8.0.3,4+,Utilities,37,4,9,1
+581463445,Lep's World 3 Plus - the super best platformer games,70962176,USD,0.99,4678,205,4.5,4.0,1.8.4,4+,Games,38,5,19,1
+292738169,Deezer - Listen to your Favorite Music & Playlists,127470592,USD,0.0,4677,12,3.0,4.0,6.19.0,12+,Music,37,5,21,1
+453546382,Photon Flash Player for iPhone - Flash Video & Games plus Private Web Browser,35683328,USD,3.99,4676,255,4.0,4.0,6.2,17+,Utilities,43,0,10,1
+401301276,World of Goo,119131136,USD,4.99,4675,15,4.5,5.0,1.6,4+,Games,37,5,1,1
+1041517543,Fitbod Workout Log: Strength Lifting Bodybuilding,71352320,USD,0.0,4668,4256,5.0,5.0,2.8.1,4+,Health & Fitness,37,0,1,1
+454802329,F18 Carrier Landing,168557568,USD,5.99,4656,54,4.5,4.5,7.2,4+,Games,37,5,11,1
+902026228,PNP 2016 Portable North Pole—Create Santa Videos,56075264,USD,0.0,4650,44,4.5,5.0,3.0.9,4+,Entertainment,37,4,6,1
+579581125,SmartNews - Trending News & Stories,26681344,USD,0.0,4645,28,4.0,4.5,4.1.10,17+,News,37,5,2,1
+685310398,Voice Recorder (FREE),42368000,USD,0.0,4640,1192,4.5,4.5,2.1,9+,Utilities,38,4,1,1
+989080135,Sling Kong,189335552,USD,0.0,4638,133,4.5,4.5,2.7.1,9+,Games,37,5,18,1
+1035993638,Crazy Cake Swap,207080448,USD,0.0,4638,6,5.0,5.0,1.29.1,4+,Games,38,5,1,1
+1043318628,BattleHand,199417856,USD,0.0,4623,35,4.5,4.5,1.2.12,9+,Games,37,5,1,1
+1132537738,Legacy of Discord - Furious Wings,154840064,USD,0.0,4618,303,4.5,4.0,1.1.3,12+,Games,40,5,14,1
+1084860489,Chameleon Run,93931520,USD,1.99,4580,2868,4.5,4.5,1.3,4+,Games,38,5,1,1
+1076615810,WordBrain 2,150532096,USD,0.0,4577,14,4.5,4.5,1.6.9,4+,Games,38,5,1,1
+575119311,FINAL FANTASY IV,537749504,USD,14.99,4558,225,4.5,4.5,1.4.4,9+,Games,40,5,12,1
+1121463708,Moji Maker™,159161344,USD,1.99,4553,57,4.0,3.0,2.0,4+,Entertainment,37,5,1,1
+1064429971,Blocky Football,99435520,USD,0.0,4549,125,4.5,4.0,2.3,4+,Games,38,5,1,1
+973741088,PowerSchool Mobile,39950336,USD,0.0,4547,1582,4.0,4.5,1.1.3,4+,Education,37,4,3,1
+1070999857,Trump Dump ⁢,36849664,USD,0.0,4544,2534,4.5,4.5,1.3,9+,Games,40,2,1,1
+333180061,Canabalt,27934720,USD,2.99,4540,140,4.0,4.5,2.31,9+,Games,43,5,15,1
+930563044,Sandstorm: Pirate Wars,519218176,USD,0.0,4518,409,4.5,4.5,1.19.4,9+,Games,37,5,5,1
+1116164772,Tankio - Battle Arena,53370880,USD,0.0,4513,9,4.0,3.5,1.3.7,4+,Games,40,1,1,1
+440141669,SHADOWGUN,517828608,USD,4.99,4513,95,4.0,4.5,1.6.0,12+,Games,43,5,1,1
+669196929,djay 2,119949312,USD,4.99,4511,111,4.5,4.5,2.8.5,4+,Music,24,5,7,1
+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
+1048130311,Shuffle Cats,157835264,USD,0.0,4499,106,4.0,4.0,1.2.58,4+,Games,40,5,12,1
+463869460,Ricky Carmichael's Motocross Matchup Pro,170055680,USD,0.99,4498,38,4.0,4.5,1.1.8,4+,Games,37,5,6,1
+363201632,Animation Creator HD,32051200,USD,3.99,4497,448,4.0,4.0,1.14.3,12+,Entertainment,24,5,1,1
+1143052259,Narcos: Cartel Wars,178887680,USD,0.0,4490,15,4.5,4.5,1.1.13,12+,Games,38,5,7,1
+347400507,Pocket Yoga,132480000,USD,2.99,4475,95,4.5,4.5,5.3.2,4+,Health & Fitness,37,5,2,1
+649822618,Craft your games! - Createrria 2,449130496,USD,0.0,4475,177,4.0,4.0,2.0.6,4+,Games,40,5,1,1
+783753727,R.B.I. Baseball 14,839073792,USD,4.99,4459,1703,3.0,4.0,1.0.5,4+,Games,40,5,1,1
+1086379636,Twisty Arrow - Shoot the Circle Wheel,80547840,USD,0.0,4440,495,4.5,4.0,1.1,4+,Games,38,3,1,1
+562989701,Vector for iPhone,137792512,USD,0.99,4432,61,4.5,4.5,1.2.0,9+,Games,40,0,1,1
+941620316,Lock Screens - Free Wallpapers & Background Themes,54643712,USD,0.0,4429,432,4.5,4.5,1.8,4+,Entertainment,37,5,13,1
+596677177,Worms3,361828352,USD,4.99,4422,2200,4.0,4.0,1.16,9+,Games,43,5,8,1
+403090531,Dungeon Raid,11911065,USD,0.99,4401,2927,5.0,5.0,1.3.4,9+,Games,47,0,1,0
+1030447361,Weed Firm 2: Back To College,180713472,USD,0.0,4387,698,4.5,5.0,1.7.2,17+,Games,37,5,1,1
+882119723,Beach Buggy Racing,115208192,USD,0.0,4386,42,4.5,4.5,1.2.13,9+,Games,37,4,1,1
+371338715,Math Bingo,14602240,USD,2.99,4386,444,4.5,4.5,1.7,4+,Education,43,5,1,1
+1032845453,BB-8™ App Enabled Droid Powered by Sphero,399747072,USD,0.0,4385,118,4.5,4.5,1.3.0,4+,Entertainment,35,5,1,1
+909480609,Rival Stars Basketball,112316416,USD,0.0,4383,105,4.5,4.5,2.9,4+,Games,38,5,24,1
+391297152,Neuroshima Hex,511094784,USD,4.99,4378,251,4.5,4.5,3.0,9+,Games,43,5,1,1
+1033014013,Warrior Balls,32857088,USD,0.0,4375,400,4.5,4.5,1.8,4+,Games,38,1,1,1
+972627811,Flick Quarterback 17,103305216,USD,0.0,4371,1081,4.5,4.5,2.3,4+,Games,38,5,1,1
+717555969,Jam League,144881664,USD,0.0,4361,150,4.5,4.0,1.3.4,4+,Games,37,5,1,1
+415850124,PhotoSync – transfer and backup photos & videos,65495040,USD,2.99,4352,33,4.5,5.0,3.2,4+,Photo & Video,37,5,8,1
+768591497,MiP App,96199680,USD,0.0,4350,994,4.5,4.5,1.2.2,4+,Entertainment,35,5,1,1
+804637783,Speak & Translate - Live Voice and Text Translator,60432384,USD,19.99,4344,283,4.5,4.5,3.5,4+,Reference,38,5,12,1
+526590469,Jake's Never Land Pirate School,303058944,USD,0.99,4337,398,4.0,4.0,1.0.7,4+,Entertainment,40,5,1,1
+708196645,Oceanhorn ™,428865536,USD,7.99,4336,8,4.5,4.5,3.0.1,9+,Games,37,5,11,1
+958415876,Descendants,402404352,USD,0.0,4333,512,3.5,3.0,1.23,4+,Games,37,5,7,1
+1094429166,Lifeline: Whiteout,71406592,USD,1.99,4327,3882,4.5,4.5,1.0.4,9+,Games,37,5,8,1
+735945527,Cut the Rope: Time Travel Free,122609664,USD,0.0,4327,1094,4.0,4.5,1.1.0,4+,Games,38,5,1,1
+852555131,"Adobe Spark Video, Animated Videos in minutes",154832896,USD,0.0,4302,35,4.5,4.5,3.0.5,4+,Productivity,37,5,1,1
+608901634,Cut the Rope: Time Travel HD,118273024,USD,0.99,4294,829,4.5,4.5,1.5.0,4+,Games,24,5,10,1
+768469908,YouCam Perfect - Photo & Selfie Editor,131635200,USD,0.0,4293,44,4.5,5.0,5.20.1,4+,Photo & Video,37,5,16,1
+685857245,Runtastic Six Pack Abs Workout & Core Trainer,132628480,USD,0.0,4283,106,4.5,4.5,2.6.2,4+,Health & Fitness,37,5,14,1
+1084805156,Card Wars Kingdom - Adventure Time,997171200,USD,0.0,4283,332,3.5,4.0,1.0.10,12+,Games,38,5,10,1
+871169596,PHHHOTO - Look Alive,54254592,USD,0.0,4280,59,4.0,3.0,3.2,12+,Photo & Video,37,0,3,1
+888104696,Diamond Quest!,177651712,USD,0.0,4278,911,4.5,4.5,1.3.2,4+,Games,43,5,8,1
+949785353,Invasion: Modern Empire,150786048,USD,0.0,4276,4,4.0,2.5,1.34.60,12+,Games,38,5,16,1
+1085461253,YO-KAI WATCH Wibble Wobble,77443072,USD,0.0,4275,69,4.5,4.5,2.1.2,4+,Games,38,5,5,1
+1047340501,MuseCam - Edit Photos & Manual Camera,16869376,USD,0.0,4267,800,4.5,4.5,1.2.2,4+,Photo & Video,37,5,2,1
+425349261,网易新闻 - 精选好内容,算出你的兴趣,133134336,USD,0.0,4263,6,4.5,1.0,23.2,17+,News,37,4,2,1
+407262212,BillMinder - Bill Reminder and Organizer,4278742,USD,1.99,4262,668,4.5,4.0,3.7.6,4+,Finance,43,0,6,1
+1013992870,Peanuts: Snoopy's Town Tale,95766528,USD,0.0,4260,4,3.5,5.0,1.3.2,4+,Games,38,5,45,1
+364733950,National Geographic World Atlas,66138112,USD,1.99,4255,209,4.0,2.0,4.1.1,4+,Reference,38,5,1,1
+1030505688,Followers Analysis Tool For Instagram App Free,7891968,USD,0.0,4253,251,4.0,4.0,1.3,4+,Social Networking,38,1,31,1
+603092599,A Beautiful Mess,63549440,USD,0.99,4251,786,4.0,4.5,2.4,4+,Photo & Video,38,5,1,1
+523403945,Best Skins Creator Pro - for Minecraft PE & PC,36002816,USD,1.99,4243,48,4.0,4.5,5.3.5,4+,Utilities,37,5,2,1
+557285579,Total - Free browser with file manager and cloud storage support,75883520,USD,0.0,4231,288,4.5,4.0,2.6.4,17+,Entertainment,38,3,7,1
+1081132864,Risky Road,122281984,USD,0.0,4226,1031,4.5,4.5,2.0,4+,Games,40,5,1,1
+1081431390,NCIS: Hidden Crimes,118456320,USD,0.0,4222,318,4.5,4.5,1.18.0,12+,Games,37,5,10,1
+413936865,SkyView® Free - Explore the Universe,87593984,USD,0.0,4188,602,4.5,4.5,3.5.1,4+,Education,37,5,1,1
+335989871,"Kmart – Download Now, Shop Online & Pick Up Today!",94496768,USD,0.0,4186,6,3.5,4.5,17.0,4+,Shopping,37,0,1,1
+1024306067,Slash Mobs,249143296,USD,0.0,4179,790,4.5,4.5,1.2,9+,Games,38,5,1,1
+749094885,Emoji Keyboard for Me - Free Emoji Keyboard Themes,152071168,USD,0.0,4162,208,4.5,4.5,6.4,4+,Utilities,38,5,12,1
+778378115,Naughty Kitties,221608960,USD,0.0,4162,207,4.5,4.5,1.2.17,4+,Games,40,5,1,1
+1085024470,live.ly - live video streaming,143863808,USD,0.0,4145,18,3.5,4.0,4.12,12+,Social Networking,37,0,21,1
+1022667752,Land Sliders,124692480,USD,0.0,4142,366,4.5,4.5,1.7.1,9+,Games,38,5,14,1
+1140798536,VR Tube - Virtual Reality 360 Video Player,11880448,USD,0.0,4142,103,4.0,4.0,4.3,17+,Photo & Video,37,4,11,1
+680170305,7 Minute Workout Challenge,102137856,USD,2.99,4137,2391,4.5,4.5,1.5,4+,Health & Fitness,40,0,17,1
+862863329,Fyuse - 3D Photos,118107136,USD,0.0,4126,10,4.5,4.5,4.1.0,12+,Photo & Video,37,0,25,1
+1118878857,Fun Run Arena - Online Multiplayer Running Game,294744064,USD,0.0,4116,161,4.5,4.5,1.9,12+,Games,38,5,1,1
+926058555,Atom – Movie Tickets and Showtimes,102137856,USD,0.0,4105,2831,5.0,5.0,2.5.3,4+,Entertainment,37,0,1,1
+1005783927,Frozen Frenzy Mania: Challenging Match 3 Games,296790016,USD,0.0,4104,143,4.5,4.5,2.1.1,4+,Games,37,5,1,1
+478523928,Rebuild,63201280,USD,2.99,4095,91,4.5,4.5,3.14,12+,Games,43,5,1,1
+409890132,Slingo Supreme HD,60013568,USD,0.99,4094,15,4.5,3.5,2.1.46,4+,Games,24,5,1,1
+337866370,Jet Car Stunts,32848910,USD,1.99,4088,436,4.0,4.5,1.5.0,4+,Games,47,4,1,1
+1085348419,Oz: Broken Kingdom™,955086848,USD,0.0,4074,45,4.5,3.5,2.0.1,12+,Games,38,5,17,1
+837860959,Mini Metro,113240064,USD,4.99,4064,338,5.0,5.0,1.6.1,4+,Games,37,5,1,1
+1068019093,KIMOJI,43337728,USD,2.99,4062,9,2.5,4.0,4.1.1,17+,Entertainment,37,0,5,1
+556430416,Toca Tailor,57734144,USD,2.99,4059,28,4.5,4.0,1.0.7,4+,Education,40,5,19,1
+617098629,Hopscotch,117678080,USD,0.0,4057,111,4.5,4.0,3.16.0,4+,Education,37,5,3,1
+487285735,Vudu - Movies & TV,105972736,USD,0.0,4052,65,2.0,2.0,5.2.0,12+,Entertainment,37,5,1,1
+462780547,Watch TBS,109416448,USD,0.0,4050,12,2.0,2.5,4.1.1,12+,Entertainment,37,4,1,1
+922103212,McDonald's,202457088,USD,0.0,4050,49,2.0,2.5,5.4.1,4+,Food & Drink,37,0,2,1
+902720170,Guess The Song - New music quiz!,43749376,USD,0.0,4050,2938,4.5,4.5,1.03,4+,Games,40,3,1,1
+937922348,Big Win Football 2016,79904768,USD,0.0,4035,401,4.0,4.0,1.2.2,12+,Games,40,5,1,1
+443932954,Calculator for iPad Free.,48484352,USD,0.0,4021,538,4.5,4.5,2.53,4+,Utilities,40,4,32,1
+320636131,FACEinHOLE®,12818432,USD,0.99,4016,1,4.0,5.0,5.7,12+,Photo & Video,37,5,1,1
+1036141497,Ringtones for iPhone with Ringtone Maker,38459392,USD,0.0,4013,163,4.5,4.5,5.4,4+,Music,38,0,11,1
+1065849294,Loop Drive 2,72770560,USD,0.0,4009,3893,4.5,4.5,1.16,4+,Games,38,5,1,1
+563546294,Minecraft: Skin Studio,46211072,USD,3.99,4006,60,4.0,4.5,4.8.0,4+,Games,37,5,11,1
+1018955135,Little Nugget® - capture pregnancy & baby pics,76221440,USD,2.99,4006,18,4.5,4.5,1.2.2,4+,Photo & Video,37,0,1,1
+1065781769,Houseparty - Group Video Chat,79375360,USD,0.0,3991,110,4.0,4.5,1.1.3,12+,Social Networking,37,4,1,1
+973337925,"MakeupPlus - Natural, Professional Makeup Looks",115112960,USD,0.0,3987,72,4.5,5.0,3.3.6,4+,Photo & Video,37,0,13,1
+1040227414,Exploding Kittens® - The Official Game,214897664,USD,1.99,3980,120,4.0,4.5,3.1.9,9+,Games,37,4,1,1
+558094294,Dashy Crashy,166305792,USD,0.0,3979,374,4.5,4.5,2.0.1,4+,Games,37,5,12,1
+516561342,"LINE Camera - Photo editor, Animated Stamp, Filter",77113344,USD,0.0,3978,58,4.5,5.0,14.0.4,4+,Photo & Video,37,5,16,1
+336347946,DOOM Classic,32796672,USD,4.99,3970,509,4.0,4.0,2.7,17+,Games,40,3,5,1
+1086378532,Fireboy and Watergirl: Online in the Forest Temple - Multiplayer Running and Adventure Game,108116992,USD,0.0,3965,1360,3.5,4.0,1.2.6,4+,Games,37,2,1,1
+1161641255,Kids Shave Salon Spa Games (Boys & Girls),60314624,USD,0.0,3963,3963,4.0,4.0,1.0,4+,Games,40,4,1,1
+971233157,Asphalt Xtreme: Offroad Rally Racing,1165103104,USD,0.0,3960,90,4.0,4.0,1.4.2,12+,Games,37,5,15,1
+327193945,Hurricane Tracker,24574976,USD,2.99,3960,0,4.5,0.0,5.0,4+,Weather,37,0,1,1
+943419894,Dictator: Revolt,147761152,USD,0.99,3939,5,4.0,4.0,1.5.12,12+,Games,37,5,1,1
+1097172005,Slots: Hot Vegas Slot Machines - Free Slot Games,163115008,USD,0.0,3938,124,5.0,4.5,1.121,12+,Games,40,5,10,1
+586854309,STAR WARS™: FORCE COLLECTION,373793792,USD,0.0,3936,3,4.0,3.5,5.4.2,4+,Games,38,5,1,1
+834854351,Scanbot - Scanner App & Fax,149340160,USD,0.0,3936,38,4.5,4.5,6.5.3,4+,Utilities,37,5,23,1
+823518885,World Craft HD,154244096,USD,0.0,3933,82,3.0,2.5,2.9,4+,Games,40,4,1,1
+451113455,Peggle Classic HD,179580928,USD,0.99,3912,627,4.5,4.5,2.0.9,4+,Games,26,5,5,1
+363738376,forScore,35717120,USD,9.99,3909,36,4.5,5.0,10.2.5,4+,Music,24,5,14,1
+570103834,Printicular Print Photos - 1 Hour Pickup,54000640,USD,0.0,3909,53,5.0,5.0,2.22.0,4+,Photo & Video,37,5,22,1
+904737816,Kingdom Rush Origins,278003712,USD,2.99,3898,796,5.0,5.0,1.8.2,9+,Games,38,0,1,1
+949876643,Lumyer - augmented reality camera effects,121899008,USD,0.0,3896,251,4.5,5.0,4.0.1,12+,Photo & Video,37,0,11,1
+1044871992,Watch OWN,66934784,USD,0.0,3895,13,4.5,4.5,1.1.0,12+,Entertainment,37,4,1,1
+469610082,Riptide GP,41246720,USD,0.99,3883,675,4.0,4.0,1.4.1,4+,Games,40,4,1,1
+493849232,Machine World,143887360,USD,1.99,3875,304,4.5,4.5,1.6.2,4+,Games,37,5,1,1
+998286883,Scrubby Dubby Saga,112135168,USD,0.0,3874,71,4.5,4.0,1.28.4,4+,Games,38,5,11,1
+695948278,War Commander: Rogue Assault,179770368,USD,0.0,3858,63,4.5,3.5,2.15.2,12+,Games,37,5,46,1
+401643317,UPAD 3,34397184,USD,5.99,3849,164,4.0,4.5,3.29,4+,Productivity,24,5,2,1
+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
+833951143,FTL: Faster Than Light,179816448,USD,9.99,3832,21,4.5,5.0,1.5.14,9+,Games,24,5,1,1
+933921849,A Call From Santa! Voicemail & Text Messages,64863232,USD,0.0,3823,451,4.5,4.5,2.1,4+,Entertainment,38,5,2,1
+796333129,Dr. Panda's Restaurant 2,157179904,USD,2.99,3821,3477,4.5,4.5,1.2,4+,Education,40,5,1,1
+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
+392186427,Ryder Cup 2016 – Hazeltine National Golf Club,116247552,USD,0.0,3818,69,2.5,1.5,4.1.2,4+,Sports,37,1,1,0
+1120072154,Athlete Shave Salon Games,62823424,USD,0.0,3815,5,4.0,1.0,1.4,9+,Games,37,4,1,1
+1038653883,Yellow - Make new friends,84699136,USD,0.0,3809,216,4.5,4.5,2.26,12+,Lifestyle,37,0,3,1
+1151680145,Slots - Lucky Win Casino Games & Slot Machines,117479424,USD,0.0,3807,24,5.0,4.5,1.2.5,12+,Games,40,5,1,1
+387682726,淘宝 - 随时随地,想淘就淘,309673984,USD,0.0,3801,6,4.0,4.0,6.7.2,4+,Shopping,37,1,1,1
+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
+1049234587,Sweat: Kayla Itsines' Bikini Body Fitness Workouts,106551296,USD,0.0,3788,363,3.5,4.5,3.0.2,4+,Health & Fitness,37,5,8,1
+575154654,Pou,40968192,USD,0.0,3783,804,4.5,4.0,1.4.69,4+,Games,40,5,20,1
+586910133,Smart Alarm Clock : sleep cycle & snoring recorder,49837056,USD,0.0,3779,14,4.0,4.5,8.4,4+,Health & Fitness,37,0,9,1
+497880658,J23 - Jordan Release Dates and History,13518848,USD,1.99,3775,132,5.0,5.0,3.1.2,4+,Sports,37,4,6,1
+994855806,Word Trek  - WordTrek Brain game & Word puzzles,47884288,USD,0.0,3774,63,4.5,4.5,1.172,4+,Games,38,4,1,1
+904223061,Troll Face Quest Video Memes,61993984,USD,0.0,3770,2736,4.5,4.5,1.3.0,12+,Games,38,5,16,1
+414430589,搜狐视频HD-欢乐颂2 全网首播,79696896,USD,0.0,3768,5,4.0,3.0,6.6,17+,Entertainment,24,5,1,1
+1083451870,Leap Day,196566016,USD,0.0,3763,46,4.5,4.5,1.3.20,4+,Games,37,5,1,1
+363448251,Photogene ⁴,35422208,USD,2.99,3761,596,4.5,4.5,4.3,4+,Photo & Video,40,5,1,1
+1006393168,The Battle of Polytopia,36184064,USD,0.0,3757,206,4.5,4.5,1.7.0,12+,Games,40,4,1,1
+875561136,JibJab,113507328,USD,0.0,3755,2,4.5,5.0,4.5.3,9+,Entertainment,37,0,1,1
+892279069,Star Walk 2 Night Sky Map: Watch Stars and Planets,239720448,USD,2.99,3751,91,4.5,4.5,2.3.8,4+,Education,37,5,12,1
+573859785,Joe Danger,171192320,USD,1.99,3748,176,4.5,4.0,1.2,9+,Games,38,5,8,1
+959954514,Progress to 100,98574336,USD,0.99,3746,793,4.5,5.0,1.2,4+,Games,37,5,1,1
+1012298403,Don't Starve: Pocket Edition,403637248,USD,4.99,3742,236,4.0,4.5,1.10,9+,Games,37,1,1,1
+1140680115,Ketchapp Summer Sports,64692224,USD,0.0,3731,1248,4.5,4.5,2.0,4+,Games,38,5,1,1
+455826958,Pinball Arcade Plus,111875072,USD,0.99,3716,6,4.0,2.5,7.1.0,9+,Games,37,1,1,1
+533893269,KODAK Kiosk Connect App,21434368,USD,0.0,3711,525,4.5,4.5,1.23,4+,Photo & Video,38,0,27,1
+1146138135,Zip—Zap,17095680,USD,1.99,3711,3307,5.0,5.0,2.02,4+,Games,40,3,10,1
+436114747,ComicBook!,92432384,USD,0.99,3702,112,4.5,4.5,2.1.1,9+,Photo & Video,37,4,1,1
+739234325,Ski Safari: Adventure Time - Stunt Skiing Endless Runner with Finn and BMO,315658240,USD,0.99,3699,827,4.5,4.5,1.5.5,4+,Games,43,5,11,1
+951761438,Cool Wallpapers for Pokemon,18546688,USD,0.0,3694,3041,5.0,5.0,2.7,4+,Photo & Video,37,0,1,1
+396885309,MSNBC,92997632,USD,0.0,3692,27,3.5,2.0,6.0.5,12+,News,37,5,1,1
+708379313,Bose SoundTouch,54193152,USD,0.0,3687,2763,4.0,4.5,14.80.6,12+,Music,37,4,1,1
+1078297893,Cookie Cats - a singing puzzle adventure,173197312,USD,0.0,3687,31,5.0,4.5,1.17.0,4+,Games,38,5,30,1
+476553281,Toca Kitchen,61840384,USD,2.99,3686,39,4.0,4.0,1.1.4,4+,Education,40,5,1,1
+1025601254,My Challenge Tracker,78232576,USD,0.0,3682,14,5.0,5.0,1.12.1,4+,Health & Fitness,37,0,1,1
+887153944,Pro Editor - Video Maker for FaceBook & Youtube,53158912,USD,0.0,3668,1005,2.5,3.0,4.1,9+,Photo & Video,38,1,33,1
+417373312,Talking Carl,64342016,USD,0.99,3662,37,4.5,4.0,9.0,4+,Entertainment,37,5,8,1
+1091974564,MOBIUS FINAL FANTASY,138045440,USD,0.0,3640,7,4.5,4.5,1.4.100,12+,Games,38,5,1,1
+969488951,UNKILLED: MULTIPLAYER ZOMBIE SURVIVAL SHOOTER GAME,790288384,USD,0.0,3634,14,4.0,4.0,0.8.3,17+,Games,37,5,12,1
+946811576,Game of Dice,187652096,USD,0.0,3629,46,4.5,4.5,2.5,12+,Games,38,5,7,1
+738717933,Farming Simulator 14,133218304,USD,0.0,3615,1267,4.0,4.5,1.3.2,4+,Games,43,5,6,1
+668354926,Air Video HD - Now with multitasking and PiP support!,14665728,USD,5.99,3610,724,4.5,4.5,2.2.1,4+,Photo & Video,38,5,1,1
+292628469,Juxtaposer,45229056,USD,2.99,3610,7,4.5,5.0,3.8.2,4+,Photo & Video,37,5,1,1
+987360477,COOKING MAMA Let's Cook!,178185216,USD,0.0,3594,14,4.0,4.0,1.24.0,4+,Games,38,5,22,1
+504677517,CoPilot GPS – Car Navigation & Offline Maps,82534400,USD,0.0,3582,70,4.0,3.5,10.0.0.984,4+,Navigation,38,5,25,1
+988318940,Toca Life: City,332123136,USD,2.99,3571,1395,4.5,4.5,1.3,4+,Education,39,5,18,1
+693689912,IXL - Math and English,118697984,USD,0.0,3546,62,3.0,3.0,3.3.8,4+,Education,24,5,1,1
+951177560,Dark Echo,92751872,USD,1.99,3542,38,4.5,4.5,1.3.1,12+,Games,40,5,10,1
+735128536,God of Light,320721920,USD,1.99,3542,92,4.5,4.5,1.2,4+,Games,37,5,10,1
+999263877,"It Girl Story - Styling, Fashion & Celebrity Life",931567616,USD,0.0,3537,848,4.5,4.5,2.396,4+,Games,38,5,11,1
+361231506,Rubik's® Cube,151954432,USD,1.99,3531,177,4.0,4.5,2.5,4+,Games,38,5,1,1
+660982355,EPOCH.2,802537472,USD,0.99,3525,970,4.5,4.5,1.3.1,9+,Games,40,5,13,1
+439628153,My PlayHome,225615872,USD,3.99,3523,181,4.5,4.5,3.1.1,4+,Entertainment,43,5,18,1
+880971164,Assassin's Creed Identity,2538487808,USD,4.99,3517,1187,4.0,4.0,2.8.2,12+,Games,38,5,11,1
+834315918,Space Marshals,443423744,USD,3.99,3515,87,4.5,4.5,1.3.3,12+,Games,38,5,9,1
+884009993,Lomotif Music Video Editor - Add Music & Effects!,138831872,USD,0.0,3507,24,4.0,4.0,2.2.0,4+,Photo & Video,37,5,20,1
+992730639,Down The Mountain,252966912,USD,0.0,3491,25,4.5,4.5,1.2.14,9+,Games,40,5,1,1
+326574411,Baby Connect (Activity Log),12937216,USD,4.99,3483,79,4.5,5.0,5.4.3,4+,Medical,37,0,14,1
+1147195439,Bubble Island 2 - Pop Bubble Shooter,242101248,USD,0.0,3480,67,4.5,5.0,1.14.9,4+,Games,37,5,15,1
+895670960,阴阳师-全区互通现世集结,1040563200,USD,0.0,3478,68,4.5,3.0,1.0.20,9+,Games,37,5,1,1
+632079234,Star Command,153100288,USD,2.99,3473,619,4.0,4.0,1.1.4,12+,Games,43,5,1,1
+497788271,TETRIS® for iPad,58479616,USD,2.99,3464,42,4.5,3.5,2.0.36,4+,Games,24,5,11,1
+288419283,RadarScope,172772352,USD,9.99,3449,23,4.0,4.5,3.4.1,4+,Weather,37,5,1,1
+570180361,"Runtastic Push Ups PRO: Workouts, Trainer, Counter",45799424,USD,1.99,3434,58,5.0,5.0,2.4.1,4+,Health & Fitness,37,5,15,1
+378782714,Drift Mania Championship,1178477568,USD,0.99,3432,0,3.0,0.0,1.80,4+,Games,38,5,10,1
+669198374,djay 2 for iPhone,76720128,USD,1.99,3431,93,4.5,4.0,2.8.5,4+,Music,37,0,7,1
+1068596150,Wheel of Fortune Slots Casino with Vanna White,110957568,USD,0.0,3413,291,4.5,4.5,1.6.0,17+,Games,37,5,1,1
+721639879,Trial Xtreme 4,936401920,USD,0.0,3403,2,4.0,3.0,1.97,4+,Games,40,5,1,1
+300590611,Peekaboo Barn,50155520,USD,1.99,3393,77,4.0,4.0,5.1.0,4+,Education,43,5,1,1
+1137927971,Rolling Snake.io - Worm IO Multiplayer Online Slither War Game - Free Agar Skins Version,25849856,USD,0.0,3392,3392,4.5,4.5,1.0.1,4+,Games,38,4,2,1
+533024665,Organ Trail: Director's Cut,245444608,USD,2.99,3389,203,4.5,4.5,2.0.4,12+,Games,40,4,1,1
+1178454068,Bottle Flip!,124506112,USD,0.0,3384,3124,4.5,4.5,1.1.1,4+,Games,40,5,1,1
+1118406919,Wordalot – Picture Crossword,166720512,USD,0.0,3383,28,4.5,4.5,4.420,4+,Games,40,4,1,1
+480805652,TETRIS® FREE,97248256,USD,0.0,3383,299,3.5,4.0,2.2.12,4+,Games,37,5,11,1
+568939466,ReindeerCam,47512576,USD,1.99,3379,776,4.5,5.0,2.0,4+,Entertainment,37,3,1,1
+666508823,Battleheart Legacy,889060352,USD,4.99,3376,336,4.5,4.5,1.3.1,12+,Games,43,5,1,1
+991018252,Horizon Chase - World Tour,587313152,USD,0.0,3375,672,4.5,4.0,1.4.3,4+,Games,38,5,1,1
+910738761,The Maze Runner ™,261382144,USD,0.0,3370,636,4.0,4.5,1.8.3,12+,Games,43,5,1,1
+960251959,Lara Croft: Relic Run,240062464,USD,0.0,3366,476,4.0,4.5,1.10.0,9+,Games,40,5,1,1
+1036435323,go90 – Stream TV & Live Sports,48359424,USD,0.0,3355,8,4.0,4.0,3.0.26,12+,Entertainment,37,4,1,1
+1035837482,Home - Design & Decor Shopping,50572288,USD,0.0,3354,5,4.5,5.0,1.6.6,4+,Lifestyle,37,5,30,1
+916728593,Stormfall: Rise of Balur,158947328,USD,0.0,3340,21,4.5,5.0,1.85.1,9+,Games,38,5,8,1
+1095539172,Make7! Hexa Puzzle,112582656,USD,0.0,3336,13,4.5,4.5,1.4.4,4+,Games,38,5,1,1
+910608607,The Voice Official App on NBC,23755776,USD,0.0,3327,1355,4.5,4.5,3.3.0,4+,Entertainment,37,5,1,1
+416981420,Bodyweight Training: You Are Your Own Gym,425657344,USD,4.99,3326,289,5.0,5.0,4.5.3,9+,Health & Fitness,38,5,5,1
+1084930849,King of Avalon: Dragon Warfare,191580160,USD,0.0,3326,25,4.0,3.5,3.0.2,9+,Games,40,5,33,1
+1040083067,Last Empire – War Z: Zombie Strategy Game,149037056,USD,0.0,3323,0,4.0,0.0,1.0.138,12+,Games,40,5,2,1
+482361332,Deluxe Moon Pro - Moon Phases Calendar,79185920,USD,2.99,3312,1710,5.0,5.0,3.95,4+,Weather,38,0,21,1
+662569685,Riptide GP2,59541504,USD,1.99,3311,380,4.5,4.5,1.3.1,4+,Games,40,5,1,1
+407838198,Stack the Countries®,188030976,USD,2.99,3303,37,4.5,4.5,2.7,4+,Education,40,5,1,1
+294934058,HotSchedules,82037760,USD,2.99,3292,2,3.0,5.0,4.56.1,4+,Business,37,2,2,1
+1131342792,Uber Driver,162263040,USD,0.0,3289,39,3.0,3.0,3.158.1,4+,Business,37,5,37,1
+515850648,Prize Wheel ™,36770816,USD,0.0,3287,88,4.0,4.0,7.1.4,17+,Entertainment,37,0,1,1
+720725216,Blocky Roads,51849216,USD,0.99,3282,3,4.5,4.5,1.2.3,4+,Games,37,5,26,1
+634672279,McPlay™,408755200,USD,0.0,3278,39,2.5,3.0,4.0.1,4+,Games,37,5,1,1
+1002597082,Trivia Crack Kingdoms,237295616,USD,0.0,3250,25,4.0,4.0,1.3.6,4+,Games,37,5,21,1
+969247886,Sky Whale - a Game Shakers App,306733056,USD,0.0,3248,217,4.5,4.5,2.1,4+,Games,38,5,13,1
+410148139,NOAA Weather Radio,14232576,USD,3.99,3245,53,4.0,4.0,9.4.5,4+,Weather,37,0,1,1
+955170175,Zig Zag Boom,113618944,USD,0.0,3242,765,4.5,4.5,1.3.2,4+,Games,40,5,1,1
+286799607,Cleartune - Chromatic Tuner,11423008,USD,3.99,3241,297,4.0,4.0,2.1.3,4+,Music,43,2,10,1
+992004655,SOMA Messenger,92802048,USD,0.0,3232,3,4.5,3.5,1.7.4,4+,Social Networking,40,0,33,1
+364738545,FileBrowser - Access files on remote computers,68073472,USD,5.99,3230,5,4.5,4.0,9.7,4+,Utilities,37,5,7,1
+1044677336,Cut the Rope: Magic,193079296,USD,0.99,3229,1109,4.5,4.5,1.5.0,4+,Games,38,5,10,1
+944393180,The Sandbox Evolution - Craft a 2D Pixel Universe,171243520,USD,0.0,3220,35,4.5,4.5,1.3.0,4+,Games,37,5,3,1
+1123434406,Tank.io war - Free Classic Tank games,24354816,USD,0.0,3219,2342,4.5,5.0,1.4.1,4+,Games,37,3,2,1
+930350602,PES CLUB MANAGER,1257910272,USD,0.0,3216,9,4.5,4.5,1.5.2,4+,Games,37,5,15,1
+911156590,Adobe Illustrator Draw,107823104,USD,0.0,3215,100,4.5,4.5,4.1.1,4+,Productivity,37,5,18,1
+1077864246,"Word Flow Keyboard - GIF, swipe, custom theme",92122112,USD,0.0,3213,372,4.0,3.5,2.5.1,4+,Utilities,37,0,1,1
+1111876388,T-Mobile Tuesdays,78128128,USD,0.0,3213,2,2.5,1.5,3.5.0,17+,Lifestyle,38,0,1,1
+1106014973,LEGO® Star Wars™: The Force Awakens,1287553024,USD,0.0,3207,729,4.0,4.0,1.4.0,9+,Games,37,5,1,1
+1073476012,Smashy Road: Arena,208391168,USD,0.0,3207,911,4.5,4.5,1.1.4,9+,Games,38,5,1,1
+453571750,Knots 3D,75027456,USD,1.99,3196,95,5.0,5.0,5.0.0,4+,Reference,37,5,19,1
+382002079,Onefootball - Soccer Scores & Live News,113814528,USD,0.0,3194,18,4.5,4.5,10.12,12+,Sports,37,5,13,1
+516349924,Slingshot Racing,78962688,USD,0.99,3189,1459,4.5,4.5,1.3.2.0,4+,Games,43,5,1,1
+893677228,Plants vs. Zombies FREE HD,175163392,USD,0.0,3185,193,4.5,4.5,1.19,9+,Games,24,5,5,1
+988752315,Nono Islands,135064576,USD,0.0,3180,28,4.5,4.5,1.7.2,9+,Games,38,5,14,1
+871694174,Toca Life: Town,453559296,USD,2.99,3174,884,4.5,4.0,1.4.1,4+,Education,40,5,1,1
+999183538,Honest App: Shop baby & diaper products,121671680,USD,0.0,3173,113,5.0,4.5,1.8.5,4+,Shopping,37,0,1,1
+426072035,Touchgrind BMX,194308096,USD,4.99,3170,4,4.0,3.0,1.6.1,4+,Games,37,5,9,1
+1146128499,White Tiles 4: Piano Master (All mini games in 1),94298112,USD,0.0,3168,145,4.5,4.5,4.96.1,4+,Games,38,5,2,1
+335047649,ScanBizCards Business Card Reader,96815104,USD,0.99,3166,34,4.0,4.5,6.08,4+,Business,37,5,5,1
+576939960,Minigore 2: Zombies,138681344,USD,1.99,3164,107,4.5,4.5,2.0,17+,Games,37,5,1,1
+1121157685,Buffalo Slots - Royal Casino Fun Slot Machines!,81576960,USD,0.0,3153,0,5.0,0.0,1.2.2,12+,Games,40,5,1,1
+410031728,VLC Streamer,82395136,USD,2.99,3152,41,4.5,4.5,5.71,4+,Entertainment,37,5,34,1
+1076350557,Twisty Wheel,192272384,USD,0.0,3148,330,4.5,4.5,1.1.1,4+,Games,40,3,1,1
+909170492,Digimon Heroes!,176620544,USD,0.0,3144,65,4.5,4.5,1.0.45,9+,Games,38,5,1,1
+1141876504,Hot Wheels: Race Off,245804032,USD,0.0,3141,280,4.5,4.5,1.1.5768,4+,Games,37,5,11,1
+390577714,Sunday Ticket,92392448,USD,0.0,3134,160,2.5,3.0,2.6.041,4+,Entertainment,24,4,1,1
+1057415521,Basketball Clicker,175750144,USD,0.0,3130,2400,4.5,4.5,1.3,4+,Games,38,4,1,1
+725222149,Battle Supremacy,1079500800,USD,4.99,3124,319,4.0,4.0,1.3.0,12+,Games,38,5,10,1
+1059665257,MLB 9 Innings 17,657721344,USD,0.0,3120,147,4.0,3.0,2.0.3,4+,Games,37,5,6,1
+966758561,GOAT: Buy & Sell Sneakers,133889024,USD,0.0,3116,147,4.5,5.0,1.9.2,9+,Shopping,37,5,1,1
+505253234,Charity Miles: Walking & Running Distance Tracker,140154880,USD,0.0,3115,87,4.0,4.5,4.2.2,4+,Health & Fitness,37,0,1,1
+1025243640,Kylie Jenner Official App,51452928,USD,0.0,3111,4,2.5,3.5,1.4,12+,Entertainment,37,5,1,1
+521640648,Toca Band,323621888,USD,2.99,3107,110,4.5,3.5,1.0.6,4+,Education,40,5,1,1
+1025120568,AMC,59480064,USD,0.0,3105,188,2.0,4.0,1.10.6,12+,Entertainment,37,5,1,1
+560586497,"Concepts - Sketch, Design, Illustrate",130532352,USD,0.0,3101,61,4.5,4.5,4.5.1,4+,Productivity,37,5,12,1
+469343097,MEGA MAN X,90374144,USD,4.99,3099,105,4.5,4.5,1.03.22,4+,Games,40,5,6,1
+983143183,Neo Monsters,229527552,USD,0.99,3093,22,4.5,4.5,1.4.8,9+,Games,38,5,6,1
+992140314,Total War Battles: KINGDOM,630600704,USD,0.0,3092,770,4.0,4.5,1.3,12+,Games,37,5,1,1
+566394373,Mutant Fridge Mayhem - Gumball,93663232,USD,2.99,3090,869,4.5,4.5,4.1.1,9+,Games,43,5,1,1
+891194610,Earn to Die 2,102755328,USD,1.99,3072,82,4.5,4.5,1.3,12+,Games,39,5,14,1
+547566699,Infectonator,25939813,USD,0.99,3069,1315,4.5,4.5,1.4,9+,Games,43,5,16,1
+1079852672,Build Away! - Idle City Game,162522112,USD,0.0,3065,47,4.5,4.5,2.2,4+,Games,37,5,12,1
+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
+1165924249,Monkey,68677632,USD,0.0,3060,122,4.0,3.5,2.1.1,12+,Social Networking,37,0,1,1
+495680460,Toca House,84990976,USD,2.99,3048,43,4.0,3.5,1.0.8,4+,Education,40,5,1,1
+1038796140,Shopkins World!,660983808,USD,0.0,3047,42,4.0,4.5,2.7.5,4+,Games,37,4,3,1
+1027230451,Magic Rush: Heroes,129245184,USD,0.0,3046,1,4.5,5.0,1.1.122,12+,Games,40,5,13,1
+306257910,HomeBudget with Sync,17485824,USD,4.99,3042,6,3.5,4.0,3.3.0,4+,Finance,37,5,11,1
+406541444,8mm Vintage Camera,22227968,USD,1.99,3040,14,4.5,4.0,2.5.1,4+,Photo & Video,37,0,4,1
+968999008,Goat Simulator GoatZ,408956928,USD,4.99,3035,159,4.0,4.5,1.6.2,12+,Games,40,5,1,1
+1126769121,Taxi Sim 2016,281550848,USD,0.0,3026,904,4.5,4.5,1.4.0,4+,Games,37,5,1,1
+594811233,Star Wars™ Pinball 5,89981952,USD,1.99,3025,275,4.5,4.5,1.5,9+,Games,40,2,1,1
+884023735,AT&T Mobile Transfer - Free,26359808,USD,0.0,3024,86,4.5,5.0,3.4.3,4+,Utilities,38,1,2,1
+944011620,Amazon Alexa,78435328,USD,0.0,3018,141,2.0,1.5,2.0.2478,4+,Music,37,3,2,1
+927117171,Football Heroes PRO 2016,141340672,USD,0.0,3018,665,4.0,4.0,1.10,9+,Games,40,3,1,1
+1114127463,Reigns,128684032,USD,2.99,3017,120,4.5,4.5,1.06,12+,Games,37,5,11,1
+990652974,The Paranormal Society™: Hidden Adventure,659142656,USD,0.0,3000,203,4.0,4.0,1.3.205,9+,Games,24,5,11,1
+1097895359,50 50 - The Addictive Slicing Game,245484544,USD,0.0,2998,212,4.5,4.5,1.8,4+,Games,37,5,1,1
+719401490,FINAL FANTASY VI,698171392,USD,14.99,2998,592,4.5,4.5,2.0.4,9+,Games,38,5,12,1
+1086859120,KINGDOM HEARTS Union χ[Cross],82377728,USD,0.0,2984,241,4.0,2.5,2.0.2,4+,Games,38,5,1,1
+603529731,Sprinkle Islands,48369664,USD,1.99,2972,1160,4.5,4.0,1.1.2,4+,Games,43,5,9,1
+667819594,Rhonna Designs,177529856,USD,1.99,2971,1,4.5,5.0,2.21,4+,Photo & Video,38,5,24,1
+435913585,Superimpose,25382912,USD,1.99,2965,205,4.5,5.0,6.2,4+,Photo & Video,37,5,8,1
+1158667565,Water Bottle Flip Challenge 2,27547648,USD,0.0,2964,997,4.0,4.0,1.2.3,4+,Games,40,2,1,1
+702810576,Slam Dunk Basketball 2 - Play & Do Good,247033856,USD,0.0,2963,6,4.5,4.0,1.3.4,12+,Games,40,5,1,1
+402012828,iSafe Pro,95949824,USD,0.99,2956,94,4.5,4.0,10.11,17+,Utilities,37,0,32,1
+577499909,TapeACall Pro - Call Recorder For Phone Calls,49825792,USD,9.99,2951,505,4.0,5.0,3.4.7,4+,Business,11,0,32,1
+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
+373236724,"OPlayer HD - video player, classic media streaming",127020032,USD,4.99,2944,40,4.0,4.5,3.3,17+,Entertainment,24,5,29,1
+834993441,Spellspire,68319232,USD,0.0,2939,513,4.5,4.5,1.1.4,9+,Games,38,5,1,1
+1119351068,PolitiCats: Awesome Clicker Game,304375808,USD,0.0,2938,102,4.5,5.0,2.7.2,4+,Games,38,5,1,1
+285946052,iQuran,70707916,USD,1.99,2929,966,4.5,4.5,3.3,4+,Reference,43,0,2,1
+1019442026,Simply Piano by JoyTunes - Learn & play piano,185430016,USD,0.0,2925,88,4.5,4.5,4.7,4+,Education,37,5,11,1
+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
+981903698,Battle Copters,267590656,USD,0.0,2922,101,4.5,4.5,1.6.0,12+,Games,37,5,12,1
+791134629,"Warhammer 40,000: Deathwatch - Tyranid Invasion",1676402688,USD,1.99,2917,2550,4.5,4.5,1.3,12+,Games,37,4,1,1
+307219387,Brain Wave ™ - 32 Advanced Binaural Brainwave Entrainment Programs with iTunes Music and Relaxing Ambience,90828800,USD,4.99,2913,357,4.0,5.0,7.4,4+,Health & Fitness,43,5,1,1
+985653378,Cookie Clickers 2,63004672,USD,0.0,2912,203,5.0,4.5,1.12.0,4+,Games,38,5,8,1
+919045939,Javelin Masters 2,60551168,USD,0.0,2909,305,4.5,4.5,1.4.2,4+,Games,40,5,11,1
+1056683884,Love and Hip Hop The Game,1335678976,USD,0.0,2908,256,4.0,4.5,1.50,12+,Games,37,5,45,1
+1034383306,Sea Hero Quest,360306688,USD,0.0,2908,270,5.0,5.0,1.3.0,4+,Games,37,5,17,1
+986540048,Ab & Core Sworkit - Free Workout Trainer,59845632,USD,0.0,2901,744,5.0,5.0,1.3.1,4+,Health & Fitness,37,5,12,1
+563027226,NFL HUDDLE: Football Card Trader,228352000,USD,0.0,2896,17,4.0,3.0,6.5.14,12+,Sports,37,5,1,1
+748048441,Alpha Omega,180259840,USD,0.0,2892,59,4.5,4.5,3.1.1,4+,Games,37,5,1,1
+839301889,Jupiter Jump,16756736,USD,0.0,2890,862,4.5,4.5,1.2,4+,Games,40,5,31,1
+474207297,Kids A-Z,100699136,USD,0.0,2887,0,3.5,0.0,3.10.0,4+,Education,38,5,1,1
+1066091585,Fernanfloo,63286272,USD,0.0,2886,93,4.5,4.5,2.4,9+,Games,40,5,1,1
+1118247592,Shopkins: Chef Club,277154816,USD,0.0,2881,14,4.5,4.5,1.1.9,4+,Games,38,5,1,1
+1081847121,INKS.,375656448,USD,1.99,2869,277,4.5,4.5,1.4,4+,Games,37,5,1,1
+1100578622,Solitaire ∞,67928064,USD,0.0,2865,142,5.0,5.0,1.0.97,4+,Games,40,2,14,1
+1118803687,Lollipop: Sweet Taste Match3,150807552,USD,0.0,2861,32,4.5,5.0,1.4.7,4+,Games,38,5,1,1
+477927812,百度贴吧-全球最大兴趣交友社区,123991040,USD,0.0,2860,4,4.0,4.0,8.4.3,17+,Social Networking,37,0,1,1
+881270303,XCOM®: Enemy Within,3508826112,USD,9.99,2855,2515,4.0,4.0,1.1.0,17+,Games,38,5,9,1
+1037414606,Talking Tom Jetski,106321920,USD,0.0,2853,220,4.0,4.0,1.1.5,4+,Games,38,5,13,1
+624653112,Where's My Mickey?,130893824,USD,1.99,2846,89,4.0,2.5,1.2.1.61,9+,Games,38,0,11,1
+478126577,Merriam-Webster Dictionary & Thesaurus,148458496,USD,4.99,2843,139,4.5,4.5,4.1.1,4+,Reference,38,4,12,1
+557405467,"Network Analyzer - wifi scanner, speed test, tools",12513280,USD,3.99,2840,258,4.5,5.0,7.2,4+,Utilities,37,5,1,1
+326876192,Epson iPrint,53388288,USD,0.0,2838,26,3.0,2.5,6.3.1,4+,Photo & Video,37,5,12,1
+941057494,Love You To Bits,370935808,USD,3.99,2833,611,5.0,5.0,1.3.0,9+,Games,38,5,11,1
+960161732,Skiing Yeti Mountain,73926656,USD,0.0,2830,1201,5.0,5.0,1.1.1,9+,Games,38,5,1,1
+680436745,Colossatron: Massive World Threat,79237120,USD,0.99,2817,475,4.5,4.5,1.0.8,12+,Games,38,5,13,1
+953831664,1+2=3,21727232,USD,0.0,2816,37,4.0,3.5,9.13.0,4+,Games,37,4,1,1
+720068876,Touchgrind Skate 2,168042496,USD,4.99,2816,15,4.5,4.5,1.5,4+,Games,37,5,9,1
+835217317,DatPiff,88672256,USD,0.0,2815,115,3.5,4.5,4.6.1,17+,Music,37,4,19,1
+519077434,Text 2 Group Pro - Quickly send SMS messages,49426432,USD,2.99,2798,277,4.0,4.5,7.5,4+,Productivity,38,5,15,1
+369266386,Hurricane Tracker For iPad,10612736,USD,2.99,2798,357,4.5,4.5,4.2,4+,Weather,24,5,1,1
+530060483,METAL SLUG 3,151613440,USD,2.99,2798,529,3.5,4.0,1.2.4,9+,Games,43,5,2,1
+949870726,Gear.Club - True Racing,2386132992,USD,0.0,2793,71,4.5,4.5,1.12.1,4+,Games,37,5,6,1
+461504587,Trello,140944384,USD,0.0,2793,7,4.5,4.5,4.0.7,4+,Productivity,37,5,21,1
+1145541321,Flow Free: Hexes,20476928,USD,0.0,2791,55,5.0,5.0,1.3,4+,Games,38,5,11,1
+317809458,LiveATC Air Radio,8302592,USD,3.99,2785,90,4.0,4.0,1.9.0,4+,Travel,37,5,26,1
+944808252,Stray Dog Simulator,127668224,USD,0.99,2781,2499,4.0,4.0,1.1,9+,Games,43,5,1,1
+1080608190,Galaxy Reavers-Space Strategy game(RTS),402762752,USD,0.0,2778,472,4.5,4.5,1.2.17,4+,Games,37,5,7,1
+1169545955,Juju on the Beat,34719744,USD,0.0,2772,2495,3.5,3.5,1.4,4+,Games,37,3,1,1
+823869162,SimplePlanes,338566144,USD,4.99,2767,539,4.5,5.0,1.5.3,4+,Games,40,5,1,1
+544695089,The World Ends with You: Solo Remix,2664228864,USD,17.99,2760,187,4.5,5.0,1.2.4,9+,Games,16,0,2,1
+623789705,World of Cubes Survival Craft,187049984,USD,0.0,2758,53,4.0,3.5,2.8,9+,Games,37,5,1,1
+1048896882,Big Bang Racing,253070336,USD,0.0,2758,26,4.5,4.5,3.3.8,9+,Games,37,5,7,1
+354974729,FINAL FANTASY II,199450624,USD,7.99,2754,55,4.0,2.5,1.1.1,9+,Games,38,5,6,1
+1106002394,Pocket Politics,180105216,USD,0.0,2748,4,4.0,3.5,1.406,4+,Games,40,5,1,1
+596684220,Essential Anatomy 5,843794432,USD,19.99,2747,183,4.5,5.0,5.0.3,12+,Medical,37,5,1,1
+1039971965,Amateur Surgeon 4,118773760,USD,0.0,2743,149,4.5,4.5,1.6,12+,Games,38,5,10,1
+1062318595,Tennis Champs Returns,58877952,USD,0.0,2740,31,4.5,4.5,3.01,9+,Games,37,4,5,1
+576505181,Ingress,126825472,USD,0.0,2739,4,3.5,3.5,1.119.0,9+,Games,38,3,16,1
+1003822659,Ultimate Wolf Simulator,138526720,USD,0.99,2737,1989,4.5,4.5,1.0.1,9+,Games,40,5,1,1
+1115911787,Slots: VIP Deluxe Slots Machines - Free Slot Games,169353216,USD,0.0,2732,135,5.0,5.0,1.112,12+,Games,40,5,10,1
+547951480,ZARA,61317120,USD,0.0,2731,48,4.5,4.5,3.3,4+,Shopping,37,0,29,1
+1099961721,Mahjong Solitaire Star! Your Favorite Game!,60092416,USD,0.0,2731,92,4.5,4.5,1.0.7,4+,Games,37,3,1,1
+340779800,The Christmas List,26137600,USD,1.99,2722,1,4.5,5.0,2.1,4+,Shopping,37,0,1,1
+1140248640,MANSION MAPS for Minecraft PE - The Best Maps for Minecraft Pocket Edition (MCPE),92536832,USD,0.0,2720,2720,4.0,4.0,1.0,4+,Entertainment,37,4,1,1
+1050162071,Multiplayer Servers for Minecraft PE & PC w Mods,35025920,USD,1.99,2718,254,4.5,4.5,1.19,4+,Entertainment,37,2,26,1
+560692867,Lili™,797827072,USD,0.99,2701,825,4.0,4.0,1.3,12+,Games,39,5,1,1
+472006138,Coach's Eye - Video Analysis,81444864,USD,4.99,2676,27,4.5,4.5,6.0.2,4+,Sports,37,5,1,1
+434893913,Lookout: Security and Identity Theft Protection,65608704,USD,0.0,2661,41,4.0,3.5,5.1.1,4+,Utilities,37,1,8,1
+1037420924,Talking Tom Bubble Shooter,191398912,USD,0.0,2659,64,4.5,4.5,1.4.3,4+,Games,38,5,13,1
+1057340661,Christmas Sweeper 3,79211520,USD,0.0,2645,6,4.5,4.5,1.8.7,4+,Games,37,5,7,1
+679753195,KICK: Official Football Card Trader,227790848,USD,0.0,2641,22,3.5,4.0,6.5.14,12+,Sports,37,5,1,1
+1126723825,Super Atomic,22029312,USD,0.0,2638,882,4.5,4.5,1.4,4+,Games,37,5,1,1
+992051355,Farming Simulator 16,185572352,USD,4.99,2637,1127,4.5,4.5,1.1.4,4+,Games,37,5,10,1
+959515619,Star Trek ® - Wrath of Gems,319692800,USD,0.0,2636,11,4.0,4.0,2.5.4,9+,Games,37,5,11,1
+575590994,Infect Them All 2 : Zombies,42951284,USD,0.99,2630,1469,5.0,5.0,1.3,12+,Games,43,5,2,1
+412223222,Hudl,233934848,USD,0.0,2622,3,3.5,2.5,5.12.1,4+,Sports,37,3,1,1
+989804926,Firefox web browser,91155456,USD,0.0,2619,26,3.5,3.5,7.5,17+,Utilities,37,5,50,1
+483910781,Ultimate Food Value Diary - Diet & Weight Tracker,45659136,USD,3.99,2618,86,4.5,4.5,3.4.0,4+,Health & Fitness,37,5,1,1
+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
+1036859032,Bakery Blitz: Cooking Game,121535488,USD,0.0,2605,27,4.0,2.5,2.9.4,4+,Games,40,5,5,1
+881323364,Video Merger Pro Combine Multiple Videos to Video,40767488,USD,0.99,2604,11,4.0,1.0,1.7,4+,Photo & Video,37,5,1,1
+1068808996,Pixel Car Racer,93115392,USD,0.0,2602,29,4.0,4.0,1.0.83,4+,Games,38,5,1,1
+364899325,AirCoaster - Roller Coaster Builder,22763520,USD,0.99,2602,71,3.0,4.5,2.0,9+,Games,37,4,1,1
+1116536171,Can You Dab?,73590784,USD,0.0,2601,481,4.0,3.5,2.0,4+,Games,38,2,1,1
+951627022,Scanner App by Photomyne: Scan & Auto-Crop Photos,71397376,USD,1.99,2582,568,4.5,5.0,5.4,4+,Photo & Video,37,5,11,1
+294536447,First Words Animals,32164864,USD,1.99,2576,4,4.0,5.0,7.0,4+,Games,38,5,1,1
+1026832671,Bits of Sweets,112641024,USD,0.0,2572,4,4.5,4.0,3.7,4+,Games,38,5,16,1
+912390687,Trebel Music - Unlimited Music Downloader,54278144,USD,0.0,2570,305,4.5,4.5,3.7.1,12+,Music,37,0,2,1
+933236570,The Trace: Murder Mystery Game - Analyze evidence and solve the criminal case,278077440,USD,3.99,2570,1251,4.0,4.5,1.5.2,12+,Games,38,5,1,1
+829739720,Red Onion - Tor-powered web browser for anonymous browsing and darknet,49845248,USD,1.99,2566,777,4.5,4.5,2.2,17+,Utilities,38,5,5,1
+306169895,Tozzle - Toddler's favorite puzzle,168192000,USD,2.99,2562,10,4.0,4.5,5.1,4+,Games,37,5,4,1
+932389062,Give It Up!,137146368,USD,0.99,2560,1,4.0,5.0,1.9.3,4+,Games,37,5,6,1
+1149330452,Jelly Blast: New Exciting Match 3,158268416,USD,0.0,2557,405,4.5,4.5,4.2.0,4+,Games,40,5,1,1
+1057415516,Soccer Clicker,184253440,USD,0.0,2556,268,4.5,4.5,1.3,4+,Games,38,4,1,1
+605057245,Pirate Power,112133120,USD,0.0,2555,332,4.5,4.5,1.2.150,9+,Games,38,5,2,1
+507051584,Nom Nom Paleo,51230720,USD,5.99,2555,44,4.5,4.0,3.3,4+,Food & Drink,37,5,1,1
+390017969,"Due — Reminders, Countdown Timers",32130048,USD,4.99,2554,93,4.5,3.5,2.4.2,4+,Productivity,37,5,17,1
+1006385486,Glowing Snake King - Anaconda Diep War Battle Game,29124608,USD,0.0,2554,508,4.5,4.5,1.0.10,4+,Games,40,5,16,1
+424229589,Dude Perfect HD,139853824,USD,1.99,2552,1041,4.5,4.5,1.1.5,4+,Games,26,5,1,1
+893194736,Kitty Powers' Matchmaker,198530048,USD,2.99,2552,171,4.5,5.0,1.29.1,12+,Games,37,5,1,1
+336689375,TeachMe: Kindergarten,59846656,USD,1.99,2548,5,4.0,4.0,4.2.2,4+,Education,37,5,1,1
+487767194,Mad Skills BMX,42697029,USD,0.99,2547,658,4.5,4.5,1.4.0,9+,Games,43,5,1,1
+1153025759,Mine Blitz,29322240,USD,0.0,2541,992,4.5,4.5,1.2,4+,Games,38,4,1,1
+1018920593,Athletics 2: Summer Sports - Free,243888128,USD,0.0,2541,2541,4.5,4.5,1.6,4+,Games,37,5,1,1
+715822238,Papa's Freezeria HD,58384384,USD,2.99,2535,287,4.5,4.5,1.1.3,4+,Games,24,5,1,1
+833517462,Just Dance Now,67874816,USD,0.0,2535,181,3.5,3.5,1.6.6,4+,Games,38,5,14,1
+991526007,Down To Lunch,35410944,USD,0.0,2535,9,4.0,3.5,1.72,12+,Social Networking,37,0,1,1
+1084407935,Fear the Walking Dead: Dead Run–Tactical Runner,835548160,USD,0.0,2533,174,4.5,4.5,1.4.4,17+,Games,37,5,1,1
+872424895,Torque Burnout,672060416,USD,0.0,2531,83,4.0,4.5,1.9.1,4+,Games,37,5,12,1
+968433730,Adobe Spark Page — Create Stunning Web Pages,120110080,USD,0.0,2528,80,4.5,4.5,1.6.4,4+,Productivity,37,5,1,1
+993290127,League of War: Mercenaries,164357120,USD,0.0,2523,0,4.5,0.0,7.4.57,12+,Games,38,5,1,1
+982175678,This War of Mine,427715584,USD,14.99,2523,455,4.5,4.5,1.4.0,17+,Games,37,5,12,1
+1136617049,YouCam Fun - Live Selfie Video Filters,108771328,USD,0.0,2522,405,4.5,5.0,1.9.0,4+,Photo & Video,37,5,16,1
+526831380,Storm Shield,26501120,USD,2.99,2516,994,4.5,5.0,3.8.3,12+,Weather,38,5,1,1
+1007929736,VOEZ,299850752,USD,0.0,2508,78,4.5,4.5,1.1.2,4+,Games,38,5,1,1
+592682163,Flick Champions Winter Sports,92662784,USD,0.99,2505,0,4.5,0.0,2.9.9,4+,Games,37,5,1,1
+470578793,Secret Calculator Pro - Hide photos & videos,14578688,USD,1.99,2504,644,4.5,5.0,1.13,4+,Photo & Video,37,0,12,1
+1032743715,Teeny Titans - Teen Titans Go! Figure Battles,709790720,USD,3.99,2503,404,4.5,4.5,1.1.3,9+,Games,38,5,9,1
+621491290,Design This Castle,243441664,USD,0.0,2500,162,4.0,4.5,1.0.8,4+,Games,38,5,1,1
+970777078,Free Music Play - Mp3 Streamer & Player,18927616,USD,0.0,2496,2374,4.5,4.5,1.3.0,4+,Music,38,5,31,1
+1093360165,Simple Habit,134466560,USD,0.0,2494,75,5.0,5.0,3.2,4+,Health & Fitness,37,0,1,1
+426415634,Bloons TD 4 HD,164235264,USD,2.99,2493,13,4.0,4.0,3.0.4,4+,Games,24,5,1,1
+1024488164,OPUS: The Day We Found Earth,245289984,USD,0.0,2491,163,5.0,5.0,1.7.1,4+,Games,40,5,1,1
+1066018502,Meditation Studio – Guided Meditations and Courses,107767808,USD,3.99,2491,90,5.0,5.0,1.3.1,4+,Health & Fitness,37,5,1,1
+924635678,Acapella from PicPlayPost,134921216,USD,0.0,2487,23,4.0,4.0,2.23,12+,Music,37,5,11,1
+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
+625985591,Stupid Test!,31798272,USD,0.0,2485,2112,4.5,5.0,4.0,4+,Games,37,5,1,1
+518684914,"Depop - Buy, Sell and Share",85724160,USD,0.0,2478,109,4.5,4.0,1.35,12+,Shopping,37,0,2,1
+934030757,Foot Locker,87000064,USD,0.0,2477,467,4.5,5.0,2.6.5,4+,Shopping,37,0,1,1
+959270676,Player for Acapella Triller illuminati Edition,9934848,USD,0.0,2476,6,4.0,4.5,2.5,9+,Lifestyle,40,2,1,1
+1117719909,Funny Face - Filters Swap Effects Pic for Snapchat,154999808,USD,0.0,2471,20,4.0,3.0,1.9,4+,Lifestyle,37,3,1,1
+651978174,Construction Simulator 2014,395522048,USD,0.99,2470,984,4.0,4.0,1.04,4+,Games,36,5,18,1
+1067860796,Asana Rebel - Yoga Inspired Fitness,128882688,USD,0.0,2459,27,4.5,4.5,3.7.2,4+,Health & Fitness,37,5,3,1
+374308914,Color Splash for iPad,18752512,USD,1.99,2445,41,4.5,5.0,3.6.1,4+,Photo & Video,24,5,1,1
+308111628,iCab Mobile (Web Browser),19451904,USD,1.99,2441,4,4.0,5.0,9.9,17+,Utilities,38,4,12,1
+1015059175,A Color Story,39306240,USD,0.0,2436,629,4.5,5.0,1.1.3,4+,Photo & Video,37,5,1,1
+451584035,Conservative Talk Radio,13180928,USD,2.99,2436,274,4.5,5.0,4.1,9+,News,37,2,1,1
+547166701,百度网盘,114601984,USD,0.0,2434,7,4.5,5.0,7.1.1,12+,Productivity,38,0,1,1
+587823548,1 Second Everyday: Video Diary,114876416,USD,4.99,2433,10,3.5,4.5,1.60000.1,4+,Photo & Video,37,0,1,1
+1103438575,Microsoft Solitaire Collection,189497344,USD,0.0,2432,185,4.0,4.0,1.6.1,4+,Games,37,5,1,1
+588722840,"SportsManias: Sports Emojis, Fantasy & Team News",53601280,USD,0.0,2431,14,4.5,4.5,3.1.18,12+,Sports,37,4,1,1
+329127297,Gaia GPS Classic,53097472,USD,19.99,2429,8,4.5,3.5,10.9.13,4+,Navigation,37,5,16,1
+1082986584,Mods for Pc & Addons for Minecraft Pocket Edition,33801216,USD,1.99,2419,588,4.5,4.5,1.22,4+,Entertainment,37,3,26,1
+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
+464309202,LotteryHUB,47699968,USD,0.0,2417,39,3.0,1.5,5.0.3,12+,News,37,5,1,1
+405338085,Coach Guitar - Lessons & Easy Tabs For Beginners,132141056,USD,0.0,2416,45,4.5,4.5,4.8.1,4+,Music,37,5,12,1
+1114921009,NBA 2K17,2950687744,USD,7.99,2408,398,3.0,3.0,1.07,4+,Games,25,5,1,1
+776865453,Motorsport Manager,714420224,USD,1.99,2394,1821,4.5,4.5,1.1.5,9+,Games,38,5,6,1
+409563112,爱奇艺HD -《欢乐颂2》电视剧热播,154600448,USD,0.0,2394,0,4.0,0.0,8.5.1,17+,Entertainment,24,5,2,1
+1059622588,Round Balls,30622720,USD,0.0,2381,437,4.5,4.5,1.4,4+,Games,38,3,1,1
+385145330,Pocketbooth - the photo booth in your pocket,72586240,USD,0.99,2377,5,4.5,5.0,3.5,4+,Photo & Video,37,5,1,1
+607527020,Glow Puzzle,24502272,USD,1.99,2374,464,4.5,4.5,2.3.3,4+,Games,43,5,1,1
+1092850344,Monster Girls Creator Catch em for Pokémon fans,87511040,USD,0.0,2374,231,4.5,4.5,2.7,4+,Games,37,3,1,1
+1041596399,Boomerang from Instagram,15664128,USD,0.0,2373,525,3.5,3.5,1.4.2,4+,Photo & Video,37,3,27,1
+587842308,The Walking Dead: Dead Yourself,109892608,USD,0.0,2369,11,4.5,5.0,3.4,17+,Entertainment,37,4,8,1
+886445756,Tubi TV - Watch Free Movies & TV Shows,50238464,USD,0.0,2368,1,4.0,5.0,4.0.1,17+,Entertainment,37,5,1,1
+1119322616,Auralux: Constellations,112653312,USD,0.0,2354,821,4.5,4.5,1.09,4+,Games,37,5,7,1
+487922291,Eventbrite - Local Events & Fun Things To Do Near Me,52518912,USD,0.0,2353,411,4.0,4.5,4.3.3,4+,Entertainment,38,0,8,1
+695108484,Icycle: On Thin Ice,82700288,USD,2.99,2347,91,4.5,4.5,2.0.3,4+,Games,38,5,6,1
+412395632,"乐视视频HD-白鹿原,欢乐颂,奔跑吧全网热播",136668160,USD,0.0,2340,1,4.0,1.0,6.1.4,17+,Entertainment,24,5,2,1
+475249619,"My Macros+ Diet, Weight and Calorie Tracker",75580416,USD,2.99,2334,298,4.5,4.5,7.0.1,4+,Health & Fitness,37,5,1,1
+434209233,Moji Weather - Free Weather Forecast,86968320,USD,0.0,2333,0,4.5,0.0,7.0.0,4+,Weather,38,0,3,1
+1116609570,Shopping Mall Girl - Dress Up & Style Game,267441152,USD,0.0,2332,322,4.5,4.5,1.5.0,4+,Games,38,5,11,1
+587922128,"ProTracker Plus Weight, Calorie & Exercise Tracker",75834368,USD,2.99,2319,40,4.5,4.0,2.1.3,4+,Health & Fitness,37,5,2,1
+970421850,rop,21389312,USD,0.99,2318,397,4.5,4.5,3.1,4+,Games,40,5,12,1
+920054061,Tiny Miners,175606784,USD,0.0,2317,97,4.5,4.5,2.7,4+,Games,37,5,10,1
+1130610367,Donut Dazzle,65595392,USD,0.0,2317,102,5.0,4.5,1.3,4+,Games,37,0,1,1
+357404131,Slow Shutter Cam,4466688,USD,1.99,2305,100,4.0,5.0,4.0,4+,Photo & Video,37,5,4,1
+305557780,iSwap Faces,27069440,USD,1.99,2302,3,3.5,5.0,5.1,4+,Photo & Video,37,5,1,1
+492076105,iCalendar,21714944,USD,2.99,2300,27,4.5,3.5,5.0,4+,Productivity,37,5,1,1
+595689324,Marvel Pinball,87406592,USD,0.99,2298,63,4.0,4.5,1.8,9+,Games,40,2,1,1
+1117405948,The Game of Life,305483776,USD,2.99,2298,157,4.5,4.5,1.8.5,4+,Games,37,5,1,1
+417906074,NOAA Weather Alerts - Severe Weather Push Notifications & Warnings,10514432,USD,3.99,2293,399,4.5,4.0,4.2,4+,Weather,40,0,1,1
+1126835894,Epic Jackpot Slots: Slot Machines & Bonus Games,181364736,USD,0.0,2291,116,5.0,5.0,1.111,12+,Games,40,5,10,1
+1134529728,Donald's Empire,295349248,USD,0.0,2288,571,4.5,4.5,1.5.61,4+,Games,37,4,2,1
+995014054,Pinchworm,100635648,USD,0.0,2288,74,5.0,5.0,1.0.5,4+,Games,37,5,11,1
+1054033219,VIZIO SmartCast™ - Cast & Control Movies & TV Show,126672896,USD,0.0,2288,2,2.5,1.5,1.1.44,12+,Entertainment,37,0,3,1
+464352883,Infinite Campus Mobile Portal,28331008,USD,0.0,2286,46,2.5,1.5,3.0.9,4+,Education,37,1,1,1
+526012271,Tom Loves Angela for iPad,55357440,USD,2.99,2286,1060,4.0,4.5,2.0,4+,Entertainment,26,4,13,1
+1109008912,Craft Royale: Clash of Pixels,222895104,USD,0.0,2285,192,4.0,4.5,2.7,9+,Games,37,5,1,1
+963034692,Streaks,66332672,USD,3.99,2279,229,4.5,4.5,2.2,4+,Productivity,37,0,26,1
+977646169,Goat Simulator MMO Simulator,530618368,USD,4.99,2277,23,4.5,4.5,1.5.2,9+,Games,38,5,1,1
+904209370,"B612 - Trendy Filters, Selfiegenic Camera",81220608,USD,0.0,2275,207,4.5,4.5,5.5.1,4+,Photo & Video,37,5,21,1
+955290679,Domino Drop,43565056,USD,1.99,2272,2150,4.5,4.5,1.0.1,4+,Games,40,5,13,1
+419805549,万年历-值得信赖的日历黄历查询工具,112928768,USD,0.0,2270,4,4.5,5.0,4.5.6,12+,Utilities,38,4,3,1
+1072380719,My Little Pony: Harmony Quest,714358784,USD,0.0,2265,81,4.0,4.0,1.4,4+,Entertainment,38,5,9,1
+421894356,PodCruncher podcast app - Player and manager for podcasts,6615040,USD,2.99,2261,689,4.5,4.0,3.2,4+,News,38,0,1,1
+472642407,Trial Xtreme 2,158416896,USD,2.99,2254,29,4.5,4.0,2.14,4+,Games,43,5,1,1
+1036088441,Basket Fall - Basketball Dunking Sim,103661568,USD,0.0,2251,201,4.5,4.5,5.0,4+,Games,37,5,13,1
+1051927783,Skylanders Battlecast,931504128,USD,0.0,2250,483,4.5,4.5,1.4.3673,9+,Games,37,5,10,1
+525790167,Fuel Rewards® program,58839040,USD,0.0,2249,495,4.5,4.5,2.5.4,4+,Shopping,37,0,1,1
+988173374,Polarr Photo Editor - Photo Editing Tools for All,57919488,USD,0.0,2246,224,4.5,4.5,3.7.1,4+,Photo & Video,37,5,17,1
+1141304181,Higher Higher!,22544384,USD,0.0,2241,422,4.5,4.5,1.2,4+,Games,38,5,1,1
+491126018,My Sprint Mobile,38004736,USD,0.0,2238,3,2.0,4.0,6.2.0,4+,Utilities,37,0,2,1
+380641055,Files HD Pro - File Manager & Web Browser,28118016,USD,4.99,2237,41,4.0,3.5,6.1.1,17+,Utilities,24,5,2,1
+914517987,Retouch Vogue - Facetune Wrinkles & Pimples Makeup,25153536,USD,0.0,2235,220,4.5,4.0,1.5,4+,Photo & Video,38,0,30,1
+970721313,The Quest Keeper,119513088,USD,0.0,2232,1066,4.5,4.5,1.03,4+,Games,40,5,1,1
+593658634,Trenches II,256817152,USD,0.99,2232,70,4.5,3.5,1.4,12+,Games,40,5,5,1
+403684733,Badoo Premium - Meet new people. Extra features.,157370368,USD,2.99,2231,3,4.5,5.0,5.8.0,17+,Social Networking,37,4,30,1
+299853944,新浪新闻-阅读最新时事热门头条资讯视频,115143680,USD,0.0,2229,4,3.5,1.0,6.2.1,17+,News,37,0,1,1
+536433148,Trainz Driver - train driving game and realistic railroad simulator,384385024,USD,2.99,2228,252,4.0,4.0,1.1.4,4+,Games,43,5,1,1
+716262008,SafeTrek - Personal Safety,30316544,USD,0.0,2227,160,4.5,4.5,2.2.4,4+,Lifestyle,11,0,1,1
+992796509,Fast Motorcycle Driver,150142976,USD,0.0,2224,2211,4.5,4.5,2.0,4+,Games,40,3,1,1
+1086101495,ZEDGE™ Wallpapers,61203456,USD,0.0,2215,1076,3.5,5.0,2.7.6,12+,Entertainment,37,2,12,1
+1018355599,Tweetbot 4 for Twitter,12481536,USD,9.99,2213,58,4.0,3.5,4.6.2,17+,Social Networking,37,5,7,1
+1040451985,Musicloud - MP3 and FLAC Music Player for Cloud Platforms.,49267712,USD,0.0,2211,803,4.0,4.5,1.5,4+,Music,38,5,14,1
+579446739,Wells Fargo for iPad,67862528,USD,0.0,2207,20,2.5,1.5,2.95,4+,Finance,24,5,2,1
+628267678,Icon Pop Song,52387840,USD,0.0,2199,554,4.5,4.0,1.5,4+,Games,43,5,1,1
+1078599766,Simulator Hoverboard,66310144,USD,0.0,2198,41,2.0,1.5,1.6,4+,Games,40,3,1,1
+1075920778,Combo Critters,88105984,USD,0.0,2196,98,4.5,5.0,1.3.1,4+,Games,37,5,1,1
+613398383,PlayKids - Educational Cartoons and Games for Kids,376676352,USD,0.0,2196,63,4.0,4.5,4.1.2,4+,Education,37,5,8,1
+1100110635,He-Man™ Tappers of Grayskull™,446764032,USD,0.0,2190,7,4.5,5.0,2.3.2,9+,Games,37,5,12,1
+512142109,Max Payne Mobile,1428322304,USD,2.99,2183,64,4.5,4.0,1.4.3,17+,Games,40,4,1,1
+1077565500,Dream City: Metropolis,162561024,USD,0.0,2181,198,4.0,4.0,1.2.92,4+,Games,38,5,1,1
+653298682,Kanvas - Express Yourself,222722048,USD,0.0,2177,0,4.5,0.0,6.3,9+,Photo & Video,37,0,30,1
+744769918,MONSTER HUNTER FREEDOM UNITE for iOS,1219313664,USD,14.99,2170,87,4.5,4.5,1.00.11,12+,Games,36,5,5,1
+749094938,Emoji Keyboard for Me - Keyboard Themes & Emojis,147377152,USD,2.99,2167,69,4.0,4.0,6.4,4+,Utilities,38,5,12,1
+1073014391,Endless Frontier - Idle RPG with Tactical PVP,107478016,USD,0.0,2163,18,4.5,4.5,1.5.4,4+,Games,37,5,11,1
+1067594919,Easy Save - Repost your Instagram Photos & Videos,24253440,USD,0.0,2159,41,4.5,4.5,3.0,12+,Photo & Video,37,0,1,1
+933135994,Akinator the Genie FREE,117224448,USD,0.0,2154,1269,4.0,4.0,4.2,12+,Entertainment,37,5,14,1
+558270538,File Manager Pro App,14442496,USD,4.99,2154,27,4.5,4.0,2.5,17+,Business,37,1,2,1
+634158738,e-Sword LT: Bible Study on the Go,18964480,USD,1.99,2152,241,5.0,5.0,6.0,4+,Reference,37,0,3,1
+1098307964,Iron Maiden: Legacy of the Beast,270031872,USD,0.0,2152,7,4.5,4.5,3.6.2,12+,Games,37,5,1,1
+463422433,Meitu HD,107525120,USD,0.0,2150,68,4.5,4.5,5.4.0,4+,Photo & Video,24,5,3,1
+364204209,Fieldrunners for iPad,219693056,USD,3.99,2147,23,4.0,5.0,1.3.177598,9+,Games,24,5,1,1
+590250573,Little Inferno HD,121733120,USD,4.99,2145,189,4.5,4.5,1.33,12+,Games,39,5,7,1
+515884174,Flick Home Run ! HD,21049015,USD,0.99,2144,1700,4.5,4.5,1.3.3,4+,Games,26,5,1,1
+918902604,DUAL!,19860480,USD,0.0,2140,425,4.5,4.5,1.2.34,4+,Games,43,5,1,1
+862550306,Flinch - Video Chat Staring Contest,88759296,USD,0.0,2134,7,3.0,1.5,1.7.4,17+,Social Networking,37,0,1,1
+840190552,"VIDO - Rewards, Music and Videos for YouTube",47266816,USD,0.0,2133,32,4.5,3.5,4.23,17+,Entertainment,37,4,1,1
+1031706898,Britney Spears: American Dream,528184320,USD,0.0,2129,189,4.5,4.0,2.0.1,12+,Games,38,5,13,1
+1073959479,Galaga Wars,230596608,USD,0.0,2129,53,4.5,4.0,2.3.0,4+,Games,37,5,1,1
+919218502,Camp Pokémon,1035772928,USD,0.0,2125,480,4.0,4.0,1.2,4+,Entertainment,40,5,5,1
+517685886,Le Havre (The Harbor),157290496,USD,4.99,2125,561,4.5,4.5,1.4.1,4+,Games,47,5,1,1
+654898029,Weaphones WW2: Firearms Simulator,62558208,USD,2.99,2122,129,5.0,4.5,1.5.0,12+,Games,43,5,16,1
+1129234419,Troll Face Quest Video Games,72438784,USD,0.0,2118,1182,4.5,4.5,1.11,12+,Games,38,5,16,1
+955298998,Pursuit of Light,33284096,USD,0.99,2114,178,4.5,4.5,1.1.2,4+,Games,38,5,6,1
+1055397979,Tap My Katamari - Endless Cosmic Clicker,228460544,USD,0.0,2114,63,4.5,4.0,3.0,4+,Games,37,5,2,1
+386241770,Bloons Super Monkey,28566528,USD,0.99,2113,20,3.5,2.5,1.5.4,4+,Games,40,5,1,1
+876336838,喜马拉雅FM(听书社区)电台有声小说相声英语,130731008,USD,0.0,2111,0,5.0,0.0,6.3.6,12+,Book,37,5,2,1
+291430598,Hurricane Pro,29518848,USD,2.99,2104,0,4.5,0.0,5.2,17+,Weather,37,0,1,1
+965137032,World Craft - Epic Dream Island,150025216,USD,0.0,2102,460,2.5,3.0,2.5,4+,Games,37,5,1,1
+462397814,Waking Mars,337177600,USD,4.99,2101,0,4.5,0.0,2.2,9+,Games,37,5,2,1
+526783584,"Pixlr - Photo Collages, Effects, Overlays, Filters",73878528,USD,0.0,2099,4,4.0,3.5,3.1.2,4+,Photo & Video,37,5,11,1
+1042273323,Splash Cars,182239232,USD,0.0,2094,24,4.5,5.0,1.5.2,4+,Games,38,5,1,1
+992421775,Patternator Pattern Maker Backgrounds & Wallpapers,47943680,USD,0.0,2092,625,5.0,5.0,2.1,4+,Photo & Video,37,5,12,1
+973055274,Fix It Girls - House Makeover,98941952,USD,0.0,2091,40,4.5,4.0,1.5,4+,Games,38,5,11,1
+537524388,Block Earth,85463040,USD,4.99,2089,278,4.0,5.0,1.8.5,4+,Games,38,5,1,1
+1071426243,Bushido Bear,284124160,USD,0.0,2088,299,4.5,5.0,01.03.00,9+,Games,37,4,1,1
+997811612,Fishing Break,578273280,USD,0.0,2088,44,4.5,4.5,2.8.1,9+,Games,38,5,1,1
+592331499,BeautyCam - AR Carnie selfie,161335296,USD,0.0,2082,12,5.0,5.0,6.0.1,4+,Photo & Video,37,0,6,1
+536495161,Lapse It Pro • Time Lapse & Stop Motion Camera • Professional HD,22585344,USD,2.99,2079,760,4.5,4.5,2.52,4+,Photo & Video,40,5,9,1
+942990867,My Om Nom,211459072,USD,4.99,2074,32,4.5,4.5,1.1.8,4+,Games,40,5,11,1
+331259725,央视影音-海量央视内容高清直播,54648832,USD,0.0,2070,0,2.5,0.0,6.2.0,4+,Sports,37,0,1,1
+385533456,The Incident,19534848,USD,0.99,2070,16,4.0,4.5,1.7,4+,Games,37,5,1,1
+974748812,GIPHY. The GIF Search Engine for All the GIFs,48201728,USD,0.0,2069,46,4.5,4.5,2.6.1,17+,Photo & Video,37,0,1,1
+897062509,Memorado Brain Training for Memory & Mindfulness,149256192,USD,0.0,2067,108,5.0,5.0,5.1.0,4+,Education,37,5,26,1
+389359495,Bookshelf,106445824,USD,0.0,2064,2,2.5,4.0,3.9.5,4+,Education,37,5,32,1
+1087839782,MuvaMoji by Amber Rose,73638912,USD,1.99,2061,217,4.5,4.5,1.5,17+,Entertainment,37,0,1,1
+857555369,Wayward Souls,47943680,USD,6.99,2061,108,4.5,4.5,1.34,9+,Games,43,5,1,1
+1140351199,⋆Solitaire⋆,44193792,USD,0.0,2059,590,5.0,4.5,1.1.3,4+,Games,37,5,15,1
+407925512,"腾讯视频HD-楚乔传,明日之子6月全网首播",123563008,USD,0.0,2058,4,4.0,4.0,5.1.5,17+,Entertainment,24,5,3,1
+586575092,Coin Party: Carnival Pusher,221737984,USD,0.0,2057,109,4.5,4.5,2.6.7,12+,Games,40,5,1,1
+664783704,LEGO® The Lord of the Rings™,1497927680,USD,4.99,2054,2054,4.5,4.5,1.0,9+,Games,40,5,1,1
+1136238277,DIRECTV NOW,72806400,USD,0.0,2054,157,2.0,2.0,1.0.9,12+,Entertainment,37,5,1,1
+910208432,Boom Boom Football,173314048,USD,0.0,2048,878,4.0,4.0,1.2,9+,Games,38,5,1,1
+353642901,Sporcle,15676416,USD,2.99,2044,10,3.5,3.0,5.4,9+,Games,37,5,1,1
+897544254,Seashine,250017792,USD,0.0,2043,33,4.5,5.0,1.2.0,9+,Games,38,5,11,1
+874845056,"Skater - Skate Legendary Spots, Perfect Board Feel",398277632,USD,4.99,2040,137,4.0,3.5,1.6.5,4+,Games,37,5,1,1
+680366065,DEVICE 6,851309568,USD,3.99,2036,243,4.5,4.5,1.2,12+,Games,38,5,1,1
+554941343,Earn to Die HD,49803264,USD,2.99,2028,489,4.5,5.0,1.0.17,12+,Games,26,4,1,1
+1132217067,DRAGONS MODS FREE for Minecraft PC Game Edition,86984704,USD,0.0,2027,160,4.0,3.0,1.1,4+,Catalogs,37,4,1,1
+911781335,Heroes and Castles 2,766031872,USD,1.99,2027,172,4.5,4.5,1.3.6,12+,Games,38,5,1,1
+914865605,Run Sackboy! Run!,271454208,USD,0.0,2027,359,4.0,4.0,01.19,4+,Games,40,5,1,1
+297244048,VLC Remote,31505408,USD,4.99,2027,2,4.0,5.0,9.30,4+,Entertainment,37,5,33,1
+1097200146,Trump On The Run,84445184,USD,0.0,2025,158,3.5,3.5,1.2,4+,Games,40,3,1,1
+1096825045,Coin Dozer: Casino,151451648,USD,0.0,2024,340,5.0,5.0,1.6,12+,Games,37,5,1,1
+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
+949281035,You Stupid,24551424,USD,0.0,2018,106,4.0,3.0,1.4,4+,Games,38,3,1,1
+1144164707,Idle Armies,77953024,USD,0.0,2015,26,4.5,5.0,1.175,12+,Games,37,5,1,1
+924589795,Highrise - Your Avatar Community,116480000,USD,0.0,2011,15,4.0,4.5,2.2.3,12+,Social Networking,37,5,15,1
+901722848,Find my Fitbit - Finder app for lost fitbits,23547904,USD,5.99,2007,116,4.0,4.5,2.6.2,4+,Health & Fitness,37,5,1,1
+497933996,Shoot The Zombirds,134242304,USD,0.99,2007,80,4.5,4.5,1.20,9+,Games,40,5,9,1
+804177739,Adobe Photoshop Lightroom for iPad,146830336,USD,0.0,2005,2,4.0,1.0,2.7.4,4+,Photo & Video,24,5,12,1
+998276924,Fetty Wap: Nitro Nation Stories,1027908608,USD,0.0,2005,14,4.5,4.5,2.12,4+,Games,37,4,1,1
+1086937448,High School Crush - My First Love,228554752,USD,0.0,2003,1296,4.5,4.5,1.2.0,9+,Games,38,5,11,1
+1055281310,Philips Hue,73561088,USD,0.0,1999,53,1.5,1.5,2.11.0,4+,Lifestyle,37,5,14,1
+1042987645,Face Swap Live,89829376,USD,1.99,1995,271,4.0,4.5,2.1.3,12+,Photo & Video,37,5,13,1
+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
+384282298,The Secret of Grisly Manor,51794944,USD,0.99,1993,36,4.0,4.0,1.9.4,4+,Games,40,5,7,1
+500098096,FINAL FANTASY TACTICS: THE WAR OF THE LIONS for iPad,656429019,USD,15.99,1992,1583,4.5,4.5,1.2.0,9+,Games,26,5,1,1
+382201985,手机百度 - 百度一下你就得到,226406400,USD,0.0,1990,0,4.5,0.0,8.6.5,17+,Utilities,38,0,1,1
+573885698,百度视频HD-高清电视剧、电影在线观看神器,105649152,USD,0.0,1987,5,4.0,4.5,6.0.0,17+,Entertainment,24,5,1,1
+407976815,AVPlayerHD,39835648,USD,2.99,1986,14,4.0,4.5,2.84,17+,Entertainment,24,5,11,1
+445338486,LOVOO - Dating Chat,85049344,USD,0.0,1985,4,4.5,5.0,3.26.0,17+,Social Networking,37,5,15,1
+1008111072,Fieldrunners Attack!,276512768,USD,0.0,1984,13,3.5,5.0,3.4.176411,9+,Games,37,5,1,1
+905488045,Goblin Sword,34040832,USD,1.99,1983,306,4.5,4.5,2.5.2,9+,Games,40,5,4,1
+963067330,Cookie Run: OvenBreak,123984896,USD,0.0,1976,132,4.5,4.5,1.82,4+,Games,37,5,11,1
+978697315,Scanner For Me - PDF Scan with OCR for Documents,172691456,USD,4.99,1976,377,4.5,4.5,1.5,4+,Business,37,5,14,1
+1096938298,Battleborn® Tap,127321088,USD,0.0,1974,465,4.5,4.5,1.2.5,12+,Games,37,4,5,1
+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
+517989834,SuperPhoto - Photo Effects & Filters,55636992,USD,0.0,1952,29,4.5,4.5,4.39,4+,Photo & Video,38,5,24,1
+555916407,Year Walk,213773594,USD,3.99,1951,1333,4.5,4.5,1.1,12+,Games,43,5,1,1
+899003026,Colorburn - 1000 filters camera for photo & video,39219200,USD,0.99,1947,53,4.5,4.5,3.0.1,4+,Photo & Video,37,5,10,1
+1055455919,Looty Dungeon,150384640,USD,0.0,1946,15,4.5,5.0,2.5,9+,Games,37,5,1,1
+969044213,Smurfs Epic Run - Fun Platform Adventure,335666176,USD,0.0,1944,13,4.0,3.5,2.2.2,4+,Games,37,5,12,1
+593451567,Gin Rummy Pro,68932608,USD,1.99,1941,154,4.5,4.5,3.7,4+,Games,43,1,1,1
+977354430,Battlestar Galactica: Squadrons™,351164416,USD,0.0,1938,74,4.0,4.0,1.3.9,12+,Games,37,5,6,1
+980384565,Wrassling,53612544,USD,0.0,1934,108,4.5,4.5,2.2,4+,Games,37,1,1,1
+450722833,ibis Paint X - speed painting,40980480,USD,0.0,1933,20,4.5,4.5,5.0.1,12+,Entertainment,37,5,19,1
+1153896723,Icy Ropes,93580288,USD,0.0,1931,183,4.0,4.5,1.12,4+,Games,37,5,0,1
+702871560,100 PICS Coloring - free color in book game app,269298688,USD,0.0,1929,17,5.0,5.0,1.96,4+,Games,37,5,1,1
+333206289,Alipay - Makes Life Easy,208309248,USD,0.0,1926,2,3.0,3.0,10.0.15,4+,Lifestyle,38,5,3,1
+682046579,The Human Body by Tinybop,669071360,USD,3.99,1922,51,4.0,4.0,3.0.1,4+,Education,38,5,58,1
+1053285387,PlayStation®Messages,48062464,USD,0.0,1918,92,2.0,2.5,4.50.17,12+,Social Networking,37,5,19,1
+1129050711,Piggy Boom,121419776,USD,0.0,1918,57,4.5,4.0,2.10.1,4+,Games,38,5,2,1
+467703220,Elmo Calls,87581696,USD,1.99,1915,38,4.0,4.5,3.7,4+,Games,38,5,1,1
+414834813,Pocket Casts,48323584,USD,3.99,1911,39,4.0,4.5,6.7.1,9+,News,37,5,1,1
+1031152574,LONEWOLF,108982272,USD,0.0,1906,1152,4.5,4.5,1.1.3,17+,Games,38,5,9,1
+982218746,Splish Splash Pong,67235840,USD,0.0,1902,5,4.0,3.5,1.0.4,4+,Games,38,5,1,1
+1103901846,Fantastic Beasts™: Cases,301272064,USD,0.0,1896,50,4.5,4.0,2.3.7804,12+,Games,37,5,15,1
+799471892,Out There: Ω Edition,164665344,USD,3.99,1895,32,4.5,4.0,2.5,4+,Games,40,5,7,1
+969211750,Stray Cat Simulator,170766336,USD,0.99,1892,1574,4.5,4.5,1.0.1,9+,Games,40,5,1,1
+720208070,Block Fortress: War,451338240,USD,1.99,1889,804,4.5,4.5,1.2.4,12+,Games,43,5,1,1
+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
+420859056,My Baby's Beat - Prenatal Listener,70041600,USD,4.99,1887,75,3.0,3.5,3.08,4+,Lifestyle,37,4,4,1
+977865620,A Noble Circle,79404032,USD,0.99,1886,57,5.0,5.0,7.3,9+,Games,37,3,1,1
+487126596,Calculator HD,57990144,USD,1.99,1883,30,4.5,4.0,3.1.0,4+,Utilities,37,4,14,1
+1092854935,Flying Car Driving Simulator Free: Extreme Muscle Car - Airplane Flight Pilot,69772288,USD,0.0,1882,1882,4.5,4.5,1.0,4+,Games,40,4,1,1
+558818638,Weblock - AdBlock for apps and websites,37883904,USD,1.99,1880,118,3.5,3.5,4.4.1,4+,Utilities,37,5,7,1
+1073059009,Chaos Chronicle,132649984,USD,0.0,1878,17,4.5,5.0,1.9.5,12+,Games,38,5,8,1
+653031147,WaterMinder®,94605312,USD,2.99,1875,176,4.5,4.5,3.2,4+,Health & Fitness,37,4,14,1
+965474816,Baby Pics - pregnancy & baby milestone photos,188807168,USD,2.99,1872,30,4.5,5.0,2.2.1,4+,Photo & Video,37,5,12,1
+1079178967,Soundtrack Attack - Steven Universe Rhythm Runner,775102464,USD,0.0,1872,127,4.0,4.0,1.0.2,9+,Games,40,5,1,1
+866450515,"Forest: Stay focused, be present",57554944,USD,1.99,1869,57,5.0,5.0,3.26.1,4+,Productivity,37,0,7,1
+937988895,Feed’em Burger,54180864,USD,0.0,1865,31,4.5,4.0,2.2.1,4+,Games,37,5,1,1
+1028984371,Angry Birds Action!,1504883712,USD,0.0,1863,462,4.0,4.5,2.6.2,4+,Games,37,5,1,1
+708142626,Jet Car Stunts 2,51465216,USD,0.0,1862,9,3.5,4.5,1.0.24,4+,Games,40,5,1,1
+448165862,"MOMO陌陌-开启视频社交,用直播分享生活",156017664,USD,0.0,1862,0,4.0,0.0,7.7.47,17+,Social Networking,37,0,1,1
+943869618,Toca Kitchen 2,112056320,USD,2.99,1858,346,4.5,4.5,1.2.1,4+,Education,39,5,18,1
+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
+467329677,Mathway - Math Problem Solver,94260224,USD,0.0,1854,28,3.5,3.5,3.1.0,4+,Education,37,5,7,1
+823443083,Skiplagged — Actually Cheap Flights & Hotels,106739712,USD,0.0,1851,11,4.5,4.5,2.0.1,4+,Travel,37,5,2,1
+1095623181,Rio 2016 Olympic Games,237578240,USD,0.0,1850,322,4.5,4.5,1.1.2,4+,Games,37,5,14,1
+785725887,"Yoshirt - Design Your Own Custom Tshirt, Tote Bag, Socks and More",49271808,USD,0.0,1849,87,4.0,4.0,3.3.3,4+,Lifestyle,37,5,8,1
+336683524,iFiles,47323136,USD,0.99,1842,23,3.5,2.5,1.17.11,4+,Productivity,38,1,1,1
+434832826,Viator Tours & Activities,79013888,USD,0.0,1839,174,4.5,4.0,5.5.0,12+,Travel,37,5,1,1
+1005017298,The 7 Second Challenge,40531968,USD,1.99,1838,532,5.0,5.0,1.3.0,4+,Games,38,4,1,1
+1153515245,Stickman Basketball 2017,203829248,USD,0.0,1835,1819,5.0,5.0,1.1.2,4+,Games,38,5,1,1
+1091684426,My Boo Town - Create your own Village of Boos,118087680,USD,0.0,1829,354,4.5,4.5,1.12.2,4+,Games,38,5,4,1
+1134680712,Vehicles & Weapons Mods for Minecraft PC Edition - Best Pocket Wiki & Tools for MCPC,105310208,USD,0.0,1828,1828,4.0,4.0,1.0,12+,Entertainment,37,4,1,1
+764925064,Waterlogue,55678976,USD,3.99,1827,141,4.5,4.5,1.3.1,4+,Photo & Video,37,5,8,1
+358207332,Drawing Pad,220397568,USD,1.99,1824,113,4.0,4.0,2.5.1,4+,Entertainment,24,5,22,1
+1119569595,Redungeon,76619776,USD,0.0,1821,104,4.5,4.5,3.0,12+,Games,38,5,1,1
+1110286206,MOBA Legends,699091968,USD,0.0,1815,67,4.0,4.0,1.3.1,9+,Games,37,5,0,1
+546287349,PetWorld 3D: My Animal Rescue Premium,177914880,USD,5.99,1815,6,4.0,4.5,4.1,4+,Games,38,5,8,1
+909349642,WWE 2K,1254719488,USD,7.99,1810,1112,4.0,4.0,1.1,12+,Games,38,5,7,1
+543119010,Wireless Transfer App:Sync backup photo and video,35957760,USD,2.99,1810,15,4.5,4.0,4.5,4+,Photo & Video,37,5,6,1
+363317633,Graphic - illustration and design,32604160,USD,8.99,1809,52,4.5,3.5,3.2.5,4+,Productivity,24,5,1,1
+609577016,FINAL FANTASY V,167030784,USD,14.99,1808,212,4.5,5.0,1.1.3,9+,Games,43,5,12,1
+1094167473,BOO! - Video chat camera with filters & stickers,112069632,USD,0.0,1805,48,4.0,5.0,2.4.0,9+,Social Networking,35,0,1,1
+1071711895,ULTIMATE Lucky Block Mod for Minecraft PC Edition Plus MC Pocket Guide,9359360,USD,1.99,1802,237,4.0,4.0,2.1,4+,Entertainment,37,3,1,1
+479067148,The Moron Test 2,17226765,USD,0.99,1801,236,4.0,4.5,3.1,4+,Entertainment,43,5,1,1
+1070864992,Solo Selfie,140281856,USD,0.0,1799,267,4.0,4.5,2.2.1,4+,Photo & Video,37,4,11,1
+401746066,iExit Interstate Exit Guide,9784320,USD,0.0,1798,8,4.5,4.5,9.2.2,4+,Travel,37,5,1,1
+1113736426,RollerCoaster Tycoon® Classic,424826880,USD,5.99,1794,60,4.0,3.5,1.1.6,4+,Games,38,5,5,1
+1139391147,My NBA 2K17,484489216,USD,0.0,1784,161,3.0,3.0,1.0.243903,4+,Games,37,5,1,1
+737006024,LEGO® Marvel Super Heroes: Universe in Peril,1265238016,USD,4.99,1784,884,4.0,4.0,1.4,9+,Games,38,5,1,1
+1074006236,Hammer Bomb - Creepy Dungeon Mazes!,101526528,USD,0.0,1784,294,4.5,4.5,1.2,9+,Games,38,1,1,1
+563910324,MarineTraffic - Ship Tracking,45089792,USD,4.99,1782,114,4.5,4.5,3.6.2,4+,Travel,40,5,1,1
+1057554325,Tracky Train,98378752,USD,0.0,1781,573,4.5,4.5,1.2,4+,Games,37,5,9,1
+411766326,Schoology,120382464,USD,0.0,1777,9,3.0,4.0,3.15.0,4+,Education,37,5,4,1
+471458190,Reiner Knizia's Tigris & Euphrates,54852324,USD,4.99,1777,321,4.5,4.5,2.0.1,4+,Games,47,5,1,1
+1032040117,Legendary - Game of Heroes,175010816,USD,0.0,1776,45,4.5,4.5,1.8.8,12+,Games,37,5,7,1
+534282109,Topia World Builder,59056128,USD,1.99,1775,161,3.5,3.5,1.6.1,4+,Games,43,5,1,1
+977028266,∞ Infinity Loop,53278720,USD,0.0,1773,70,4.5,4.5,4.6,4+,Games,37,3,11,1
+648019675,D&D Lords of Waterdeep,563081216,USD,6.99,1772,545,4.5,4.5,1.2.4,9+,Games,43,5,1,1
+1073389796,King Rabbit,109119488,USD,0.0,1771,22,4.5,5.0,2.4.0,9+,Games,37,5,16,1
+1022301472,Zombie Anarchy: Survival Strategy Game,255653888,USD,0.0,1768,83,4.5,4.0,1.2.1,17+,Games,37,5,15,1
+616027251,Redline Rush,53620736,USD,0.99,1766,397,4.5,4.5,1.3.1,4+,Games,43,5,30,1
+1034995058,theSkimm,28734464,USD,0.0,1765,0,4.5,0.0,2.0.6,12+,News,37,4,1,1
+1108780504,HIT - Heroes of Incredible Tales,146959360,USD,0.0,1765,24,4.5,4.5,1.24.130666,12+,Games,37,5,10,1
+671867510,Tayasui Sketches Pro,198499328,USD,4.99,1761,13,4.5,5.0,16.2,4+,Productivity,37,5,15,1
+490979746,Visage Lab PRO HD: perfect makeup plus face editor,118072320,USD,4.99,1760,2,4.5,5.0,4.0.9,4+,Photo & Video,37,3,10,1
+1064955217,Life Cycle - Track Your Time Automatically,14761984,USD,0.0,1760,12,4.5,4.0,1.7.0,4+,Health & Fitness,9,0,1,1
+1085131523,Hackers - Join the Cyberwar!,248681472,USD,0.0,1759,87,4.5,4.5,1.025,9+,Games,37,5,1,1
+369820957,AudioNote - Notepad and Voice Recorder,33213440,USD,9.99,1756,53,4.0,5.0,6.3,4+,Business,37,4,5,1
+392408028,Paprika Recipe Manager,10432512,USD,4.99,1755,83,4.5,4.5,2.2.2,17+,Food & Drink,24,5,16,1
+953953312,Video Saver & Uploader-Save & Upload your Photo&Movie,11715584,USD,0.99,1754,684,4.0,4.0,1.8,4+,Photo & Video,40,5,1,1
+1045436888,Microgolf Masters,206807040,USD,0.0,1753,16,4.0,4.0,1.91,4+,Games,38,5,1,1
+1017367213,Octodad: Dadliest Catch,303450112,USD,4.99,1752,886,4.0,4.0,1.0.21,9+,Games,37,5,8,1
+370139302,QQ 浏览器-搜新闻、选小说漫画、看视频,119812096,USD,0.0,1750,19,3.5,5.0,7.4.1,17+,Utilities,38,0,1,1
+929302239,Jump on piano stack,18375680,USD,0.0,1750,177,4.0,4.0,1.8,4+,Games,40,5,27,1
+919395844,The Survivor: Rusty Forest,342490112,USD,0.99,1746,215,3.5,3.5,1.2.4,17+,Games,43,5,1,1
+1043579926,Toca Life: School,331207680,USD,2.99,1744,1096,4.5,4.5,1.2,4+,Education,39,5,18,1
+303191318,同花顺-炒股、股票,122886144,USD,0.0,1744,0,3.5,0.0,10.10.46,4+,Finance,37,0,1,1
+1109788041,Polyforge,91620352,USD,0.0,1744,570,4.5,4.5,1.1,4+,Games,40,5,11,1
+1163777816,Solitaire One,47924224,USD,0.0,1740,158,4.5,4.5,1.0.3,4+,Games,37,3,1,1
+1060739646,NinjAwesome,127212544,USD,0.0,1738,610,4.5,4.5,1.0.4,12+,Games,38,5,1,1
+1063166978,Quidd,154158080,USD,0.0,1736,77,4.5,4.5,1.8.1,12+,Entertainment,37,0,1,1
+1095571204,KIXIFY - Buy & Sell Sneakers,50725888,USD,0.0,1735,125,5.0,4.5,2.0.2,4+,Shopping,37,5,31,1
+892812659,80 Days,197683200,USD,4.99,1732,81,4.5,4.5,1.25,12+,Games,39,5,1,1
+1114886979,Toca Life: Vacation,300401664,USD,2.99,1730,493,4.5,4.5,1.0.3,4+,Education,38,5,18,1
+335709058,Stylebook,44135424,USD,3.99,1729,599,4.0,4.5,7.0,17+,Lifestyle,37,5,3,1
+903954182,Prop Hunt,158244864,USD,0.0,1728,878,4.0,4.0,1.025b,9+,Games,43,5,1,1
+1064962398,Planes Live - Flight Status Tracker and Radar,76452864,USD,6.99,1726,443,4.5,4.5,1.4,4+,Travel,37,5,17,1
+921902664,Felt: Birthday & Greeting Cards & Thank You Card,240285696,USD,0.0,1724,24,4.5,5.0,3.1.1,4+,Photo & Video,37,5,1,1
+923947429,Monster & Commander,281846784,USD,0.0,1723,515,4.5,4.5,1.4.5,9+,Games,38,5,33,1
+1058952530,Face Paint Party Salon - Girls Makeup & Kids Games,63633408,USD,0.0,1722,30,4.5,3.5,2.5,4+,Games,37,5,25,1
+1061733193,Tower Conquest,525279232,USD,0.0,1722,184,4.5,4.5,22.00.08,9+,Games,38,5,1,1
+654810212,Freeletics Bodyweight - Workouts and Training,103856128,USD,0.0,1722,18,4.5,4.0,4.9,4+,Health & Fitness,37,5,8,1
+808296431,Crashlands,117937152,USD,4.99,1721,32,4.5,5.0,1.2.14,9+,Games,37,5,1,1
+1035263816,Runtastic Results: Workout & Bodyweight Training,210848768,USD,0.0,1718,4,4.5,5.0,2.3,4+,Health & Fitness,37,5,14,1
+688831692,Facetune for iPad,72655872,USD,5.99,1718,22,4.5,4.0,2.6.3,4+,Photo & Video,24,5,12,1
+815218412,Vocabulary.com,8671232,USD,2.99,1718,1650,4.5,4.5,1.0.1,9+,Education,40,5,1,1
+1076468537,Flutter: Starlight,110692352,USD,0.0,1714,33,4.5,4.5,1.31,4+,Games,37,5,2,1
+1105903447,Goat Simulator Waste of Space,615645184,USD,4.99,1709,52,4.5,3.5,1.5.1,9+,Games,38,5,1,1
+1001501844,Deliveroo: Restaurant Delivery - Order Food Nearby,62734336,USD,0.0,1702,580,4.5,5.0,2.16.1,12+,Food & Drink,37,0,9,1
+667579844,Move to measure - Flying Ruler,51470336,USD,1.99,1702,127,4.0,4.0,3.0,4+,Utilities,38,5,9,1
+325962257,My Measures PRO,79882240,USD,7.99,1701,35,4.0,4.5,6.06,4+,Productivity,37,5,21,1
+860620713,Table Tennis Touch,318714880,USD,2.99,1701,120,4.5,5.0,2.2.1230,4+,Games,37,5,12,1
+1061912080,Cristiano Ronaldo: Kick'n'Run,149391360,USD,0.0,1701,240,4.5,4.5,1.0.26,4+,Games,38,5,18,1
+930868205,Haunt the House: Terrortown,192302080,USD,1.99,1698,151,4.5,4.5,1.4.5,9+,Games,38,5,1,1
+899606169,Bullet Boy,156652544,USD,0.0,1697,195,4.5,4.5,1.1.2,4+,Games,38,5,1,1
+1031569021,Primal Legends,166575104,USD,0.0,1692,49,4.5,4.5,18.32,9+,Games,40,5,1,1
+473219519,Royal Trouble: Hidden Adventures HD (Full),285982720,USD,6.99,1690,1644,4.5,4.5,1.2,4+,Games,26,5,13,1
+636485814,"Thunderspace 5k ~ Focus, Sleep, Relax, Meditate in a thunderstorm with rain and nature sounds",119598080,USD,2.99,1690,112,4.5,4.5,5.3,9+,Health & Fitness,38,5,4,1
+992879171,Puppy Love - My Dream Pet,269402112,USD,0.0,1689,140,4.5,4.5,1.3.0,4+,Games,38,5,11,1
+748057890,Toca Lab: Elements,179275776,USD,2.99,1689,1,4.0,5.0,1.1.0,4+,Entertainment,37,5,18,1
+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
+573916046,Fitness Point Pro,68373504,USD,4.99,1685,112,4.5,4.5,6.6.2,9+,Health & Fitness,37,5,18,1
+1032708262,Downwell,82202624,USD,2.99,1679,1131,5.0,4.5,1.0.2,9+,Games,43,5,1,1
+536040665,Tentacles: Enter the Dolphin,580818944,USD,2.99,1678,4,4.5,5.0,1.2.1,9+,Games,40,5,1,1
+438426078,聚力视频-蓝光电视剧电影在线热播,99607552,USD,0.0,1670,4,4.5,4.0,6.4.16,12+,Entertainment,38,0,1,1
+1000773093,Rapala Fishing - Daily Catch,201266176,USD,0.0,1666,11,4.5,4.0,1.4.6,4+,Games,37,5,1,1
+960506557,Gun Fu: Stickman 2,110213120,USD,0.0,1664,49,4.5,4.5,1.16.1,12+,Games,38,4,31,1
+1059554895,The Walls,137289728,USD,0.0,1662,1373,4.5,4.5,1.0.2,4+,Games,40,5,1,1
+925338276,JCPenney,113282048,USD,0.0,1661,82,3.5,4.0,7.0.2,4+,Shopping,37,2,1,1
+1040871937,Dulp,42303488,USD,0.0,1660,38,4.5,4.0,1.2.0,4+,Games,38,5,10,1
+1054501757,Lifeline: Silent Night,74267648,USD,1.99,1656,1558,4.5,4.5,1.2,9+,Games,37,5,6,1
+1017148055,Stash Invest: Investing & Financial Education,110992384,USD,0.0,1655,91,4.0,4.5,1.6.12,4+,Finance,37,0,1,1
+732908963,Disney Applause,14128128,USD,0.0,1654,47,2.0,4.5,1.8,17+,Entertainment,37,4,1,1
+388497605,Google Authenticator,17235968,USD,0.0,1652,202,3.0,2.5,3.0.0,4+,Utilities,38,1,32,1
+1096834193,Apple TV Remote,12637184,USD,0.0,1651,277,2.5,2.0,1.1.1,4+,Entertainment,37,5,34,1
+364183992,Qzone,133874688,USD,0.0,1649,1,3.5,5.0,7.2.8,4+,Social Networking,37,0,3,1
+1127933116,Kerflux,58624000,USD,0.0,1648,180,4.5,5.0,1.1.2,4+,Games,40,5,1,1
+906936224,快看漫画,63058944,USD,0.0,1647,225,5.0,5.0,4.1.1,17+,Book,38,4,2,1
+1164046790,Epic Battle Simulator,125122560,USD,0.0,1647,44,4.5,4.5,1.5.10,9+,Games,38,5,1,1
+464660903,"Perfect Image - Pic Collage Maker, Add Text to Photo, Cool Picture Editor",77390848,USD,0.0,1646,141,4.5,4.5,3.8.2,4+,Photo & Video,38,5,5,1
+1137320380,GO Gear - Live Maps for Pokémon GO,58569728,USD,3.99,1645,77,1.5,1.0,1.1.0,4+,Utilities,37,0,1,1
+867827909,SONIC Drive-In,71068672,USD,0.0,1645,109,4.0,4.0,3.0.0,4+,Food & Drink,37,0,1,1
+870322730,Implosion - Never Lose Hope,2610579456,USD,9.99,1644,469,4.5,4.5,1.2.4,12+,Games,35,5,1,1
+887649233,Broken Age ™,2890245120,USD,4.99,1641,864,4.5,4.5,2.3.10,9+,Games,39,5,6,1
+694133630,Piano - Play Keyboard Music Games with Magic Tiles,117793792,USD,0.0,1636,125,4.5,4.5,1.23,4+,Music,37,5,22,1
+749125114,Alarm Clock for Me - Sleep Timer & Event Countdown,74212352,USD,3.99,1635,120,4.0,4.0,3.1,4+,Utilities,37,5,12,1
+1062168249,Dead Zone: Zombie Crisis,87025664,USD,0.0,1632,28,4.5,4.5,1.2.25,12+,Games,38,5,11,1
+1145500015,Drifty Chase,189778944,USD,0.0,1631,40,4.5,4.0,1.7,9+,Games,37,5,1,1
+1067903136,Splash,121606144,USD,0.0,1631,1631,4.5,4.5,1.0,4+,Games,40,5,1,1
+578203499,Bridge Constructor Playground,82499584,USD,1.99,1628,14,4.5,5.0,2.0,4+,Games,38,5,13,1
+474679690,BTN2Go,134715392,USD,0.0,1628,0,2.0,0.0,6.6,4+,Sports,37,5,1,0
+963668030,Coco Pony - My Dream Pet,256222208,USD,0.0,1627,60,4.5,5.0,1.2.0,4+,Games,38,5,11,1
+691617940,Nowait Guest,86040576,USD,0.0,1625,113,3.0,3.0,3.1.14,4+,Food & Drink,37,0,1,1
+1063892879,Slide the Shakes,80974848,USD,0.0,1623,603,4.5,4.5,1.2,4+,Games,38,5,13,1
+663547503,rymdkapsel,78278656,USD,3.99,1622,236,4.5,4.5,3.0.2,9+,Games,38,3,1,1
+1103637547,Coach Bus Simulator,283934720,USD,0.0,1621,365,4.0,4.5,1.3.0,4+,Games,37,5,1,1
+557130558,HelloTalk Language Exchange Learning App,167054336,USD,0.0,1619,50,4.0,4.5,2.3.4,4+,Education,38,4,20,1
+985631644,Hockey Stars,76464128,USD,0.0,1619,212,4.5,4.0,1.4.2,4+,Games,40,5,6,1
+499794670,Sid Meier's Pirates!,461555595,USD,2.99,1618,1267,4.5,4.5,1.1.2,12+,Games,43,0,1,1
+640702076,Sago Mini Forest Flyer,168208384,USD,2.99,1617,50,4.5,4.5,2.1,4+,Education,38,5,1,1
+698054232,Chatous - Chat with new people,103056384,USD,0.0,1609,5,3.0,5.0,3.8.10,12+,Social Networking,37,0,11,1
+1119200610,Bowmasters (Ad Free) - Top Multiplayer Bowman Game,164000768,USD,3.99,1608,249,4.5,4.5,2.4,12+,Games,37,5,1,1
+1029375276,Pixduel™,102730752,USD,0.0,1602,0,4.0,0.0,1.1.12,4+,Games,38,5,1,1
+964748094,My Water Balance: Daily Drink Tracker & Reminder,91650048,USD,0.0,1601,502,4.5,4.5,3.4.3,4+,Health & Fitness,37,5,13,1
+1090276143,Tap Tap Trillionaire,142701568,USD,0.0,1595,2,4.5,3.5,1.12.0,4+,Games,37,5,1,1
+442705759,Toca Store,69277696,USD,2.99,1595,28,4.0,3.5,1.1.5,4+,Education,40,5,18,1
+1002132680,Super Stickman Golf 3,132153344,USD,0.0,1593,56,4.5,4.0,1.7.8,4+,Games,37,5,11,1
+385285922,"乐视视频-白鹿原,欢乐颂,奔跑吧全网热播",184689664,USD,0.0,1590,6,4.5,5.0,7.1,17+,Entertainment,38,0,2,1
+514634235,Papa's Burgeria,42811392,USD,2.99,1589,60,4.5,4.5,1.1.3,4+,Games,24,5,16,1
+388462078,2XL Supercross HD,270729216,USD,4.99,1588,6,3.5,4.5,1.2.1,4+,Games,37,5,7,1
+954372033,Musical Video Creator Music+Videos illuminati Pro,17254400,USD,0.0,1588,40,3.5,3.5,3.0,17+,Entertainment,38,1,1,1
+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
+683942610,My PlayHome Stores,193986560,USD,2.99,1582,61,4.5,4.5,3.1.1,4+,Entertainment,43,4,18,1
+972657175,Severed,236545024,USD,2.99,1580,66,5.0,4.5,1.0.14,12+,Games,37,5,11,1
+805839157,Lastronaut,25448448,USD,0.0,1576,235,4.5,4.5,1.1.3,9+,Games,38,0,1,1
+502344938,OnSong,75674624,USD,24.99,1576,33,4.0,4.5,1.99995,4+,Music,43,5,16,1
+398687544,Puzzle Quest 2,1319796736,USD,2.99,1575,104,3.5,4.0,1.3.4,12+,Games,38,5,1,1
+993160329,Airmail - Your Mail With You,170175488,USD,4.99,1575,15,3.5,4.0,1.6.4,4+,Productivity,37,5,27,1
+294631159,WeatherPro,69079040,USD,1.99,1572,34,4.0,4.5,4.8.2,4+,Weather,37,0,13,1
+534174529,InstaBoard  for Instagram - photos & videos repost,53230592,USD,0.0,1571,9,3.5,1.5,3.0,12+,Photo & Video,37,1,1,1
+538407602,SpellingCity,109510656,USD,0.0,1566,402,3.5,3.5,1.9.13,4+,Education,40,4,16,1
+542397575,Space Agency,34965504,USD,1.99,1565,1,4.5,5.0,1.5.2,4+,Games,37,5,1,1
+1074333609,Mods for Minecraft PC & Addons for Minecraft PE,34062336,USD,1.99,1560,161,4.5,4.0,1.14,4+,Utilities,37,3,26,1
+996802374,Cops N Robbers (Jail Break 2) - Survival Mini Game,226083840,USD,0.0,1559,126,4.0,4.0,2.2.1,9+,Games,40,5,1,1
+396082453,The Calculator,71177216,USD,2.99,1556,25,4.5,5.0,4.7.0,4+,Utilities,38,5,11,1
+974599171,Mimpi Dreams,171659264,USD,0.99,1554,1386,4.5,4.5,2.02,9+,Games,38,5,11,1
+770177884,Microtrip,32567296,USD,0.0,1551,797,4.5,4.5,1.5.1,4+,Games,38,5,1,1
+905121703,Sir Match-a-Lot – Match 3 Puzzle Game,125194240,USD,0.0,1546,116,4.5,4.5,1.15.0,9+,Games,37,5,10,1
+1011501094,Disney Jigsaw Puzzles!,107602944,USD,0.0,1546,99,4.5,4.5,5.0,4+,Games,37,5,4,1
+911115712,Nick Jr.,85286912,USD,0.0,1541,16,3.5,3.5,2.3.2,4+,Education,37,5,1,1
+965609252,Kiwi - Q&A,101882880,USD,0.0,1538,17,4.0,4.5,3.0.20,12+,Social Networking,37,4,34,1
+419411014,"Math Fact Master: Addition, Subtraction, Multiplication, and Division",8029184,USD,0.99,1537,159,4.5,4.0,5.0,4+,Education,37,5,1,1
+951876055,Kiwake Alarm Clock - Take back your mornings,57243648,USD,2.99,1536,9,4.0,3.5,2.6.5,4+,Lifestyle,37,0,11,1
+793096595,VPN SecureLine - privacy & security by Avast,79377408,USD,0.0,1534,16,4.0,5.0,4.1.1,4+,Utilities,37,4,26,1
+829587759,"Babbel – Learn Languages Spanish, French & more",135982080,USD,0.0,1533,15,4.0,4.0,5.5.0,4+,Education,37,5,7,1
+953969225,Snow Roll,36985856,USD,0.0,1533,17,4.0,4.0,1.1.11,4+,Games,38,5,11,1
+872899311,Instant Repost for Instagram-Stories Repost Upload,7704576,USD,0.0,1528,144,4.5,3.5,3.5,12+,Utilities,37,4,1,1
+694647259,ProCamera.,96517120,USD,4.99,1525,13,4.5,4.5,10.3,4+,Photo & Video,37,0,10,1
+662749248,. Calculator .,59232256,USD,0.0,1525,352,4.5,5.0,3.15,4+,Utilities,37,5,31,1
+1070615218,Ice Age: Arctic Blast,213266432,USD,0.0,1523,158,4.5,4.5,1.13.891,4+,Games,38,5,16,1
+639615384,Pacific Rim,695918592,USD,0.99,1522,277,4.0,4.0,1.9.13,9+,Games,36,5,1,1
+1045102110,Into the Dim,55447552,USD,0.0,1521,129,4.5,4.0,1.0.1,9+,Games,38,5,1,1
+478862935,Runtastic Mountain Bike Ride & Route Tracker PRO,58073088,USD,4.99,1520,24,4.5,4.5,3.5,4+,Health & Fitness,37,0,15,1
+979599928,R.B.I. Baseball 15,2318708736,USD,4.99,1510,346,3.5,4.0,1.08,4+,Games,38,5,1,1
+364165557,Small World 2,234123264,USD,1.99,1506,198,4.0,4.5,2.5.1,9+,Games,26,5,6,1
+1011935076,Digit: Save Money Without Thinking About It,68513792,USD,0.0,1506,287,3.5,3.0,1.4.3,4+,Finance,37,0,1,1
+1128839212,Forest Rescue 2: Friends United Match 3 Puzzle,88672256,USD,0.0,1505,79,5.0,5.0,1.75,4+,Games,40,5,1,1
+546937504,Blendamaze,53692416,USD,2.99,1504,40,4.5,4.5,3.1,4+,Games,40,5,1,1
+1041260001,FINAL FANTASY Ⅸ,3860406272,USD,20.99,1502,63,4.5,4.0,1.4.9,12+,Games,38,5,5,1
+672175251,Caveman Feast - 250 Paleo Recipes,97841152,USD,2.99,1501,60,5.0,4.5,3.1,12+,Food & Drink,37,5,1,1
+1148022751,Knights Fight: Medieval Arena,479453184,USD,0.0,1501,141,4.0,4.0,1.0.11,12+,Games,38,5,1,1
+966333863,Pathfinder Adventures,729790464,USD,0.0,1498,166,4.0,4.5,1.1.6.4.3,9+,Games,38,4,1,1
+915249334,Workflow: Powerful Automation Made Simple,115055616,USD,0.0,1498,40,4.0,4.0,1.7.4,4+,Productivity,37,5,1,1
+1120936238,Cafe Story - Play Cooking & Farming Game,116981760,USD,0.0,1498,79,5.0,5.0,1.1.55,4+,Games,38,5,2,1
+1137683736,GUNS MODS for Minecraft PC Edition - Mods Tools,85424128,USD,0.0,1497,245,4.0,3.0,1.1,12+,Reference,37,4,1,1
+1110480334,Dunkers,54802432,USD,0.0,1495,467,4.0,4.0,1.2,4+,Games,38,5,1,1
+878783582,Adobe Photoshop Lightroom for iPhone,143550464,USD,0.0,1494,9,4.0,3.0,2.7.4,4+,Photo & Video,15,0,12,1
+1060266198,BuzzFeed Video,45025280,USD,0.0,1492,519,5.0,5.0,1.1.4,12+,Entertainment,37,0,1,1
+1062945251,Five Minute Journal,21196800,USD,4.99,1492,64,5.0,5.0,1.4.1,4+,Lifestyle,37,0,1,1
+629059031,Draw Rider Plus,37103616,USD,1.99,1490,3,4.5,4.5,6.4,12+,Games,37,5,1,1
+482669234,Intro Designer for iMovie and Youtube,96086016,USD,2.99,1484,9,4.5,4.0,3.1,9+,Photo & Video,37,5,7,1
+474011277,Jurassic Park: The Game 1 HD,509022208,USD,2.99,1483,78,4.0,3.0,1.4.1,12+,Games,40,5,1,1
+1021721629,Gogo Entertainment,16390144,USD,0.0,1482,29,2.0,2.5,1.6.1.002,12+,Travel,37,3,4,1
+618790117,Cute CUT Pro - Full Featured Video Editor,52002816,USD,5.99,1478,253,4.0,4.5,1.8.5,4+,Photo & Video,38,5,12,1
+436577167,FiLMiC Pro,125991936,USD,14.99,1478,18,3.0,4.5,6.0.3,4+,Photo & Video,37,5,1,1
+1028003495,Hidden Pictures by Highlights Magazine,164859904,USD,0.0,1478,88,4.5,4.5,1.44,4+,Games,37,5,1,1
+517642765,Weaphones: Firearms Simulator Volume 1,61468672,USD,2.99,1478,72,4.5,4.5,2.3.1,12+,Games,43,5,16,1
+691121579,AdBlock,19179520,USD,1.99,1477,57,4.0,3.5,2.8.2,4+,Utilities,37,5,11,1
+673673795,RoomScan Pro - The app that draws floor plans by itself,12126208,USD,4.99,1476,666,4.5,4.5,5.0.2,4+,Utilities,38,3,9,1
+1088300283,Vintage Slots Las Vegas - Old Slot Machine Games!,69826560,USD,0.0,1474,252,5.0,5.0,1.8.2,12+,Games,38,5,31,1
+562772514,Devil's Attorney,321376256,USD,2.99,1474,125,4.5,4.5,1.0.4,12+,Games,38,5,1,0
+1132358193,Slots: Fast Fortune Slot Machines & Fun Slot Games,168288256,USD,0.0,1474,94,5.0,4.5,1.111,12+,Games,40,5,10,1
+925838610,Electric Screen Socket Prank,21296128,USD,0.0,1469,220,3.5,3.5,2.2,12+,Entertainment,43,4,2,1
+1030634472,Outfolded,71029760,USD,0.0,1468,85,4.5,4.5,1.1.1,4+,Games,37,4,10,1
+833958016,LongStory: Choose your own dating game,70488064,USD,0.0,1467,70,4.0,3.5,7.2.0,12+,Games,43,5,1,1
+1012712705,Tropical Wars - Pirate Battles,110904320,USD,0.0,1465,45,4.5,4.5,1.11.04,12+,Games,38,5,5,1
+950955524,Card Crawl,147526656,USD,2.99,1461,79,4.5,5.0,2.2.8,12+,Games,37,5,1,1
+1016279124,360 Degree,332068864,USD,0.0,1460,7,4.5,4.5,3.4.0,4+,Games,38,5,21,1
+1061802598,Grand Theft Auto: Liberty City Stories,2026973184,USD,6.99,1460,841,3.5,4.0,1.13,17+,Games,37,5,7,1
+660842333,Santa Call & Tracker Free - North Pole Command,200338432,USD,0.0,1458,914,4.5,4.5,6.1.3,4+,Entertainment,37,5,1,1
+354051766,DOOM II RPG,48700821,USD,0.99,1455,1450,3.0,3.0,1.0,12+,Games,47,0,1,1
+515114051,Baldur's Gate: Enhanced Edition,2441125888,USD,9.99,1454,102,4.0,4.0,1.3.1,12+,Games,43,5,1,1
+698925807,QR Code Reader by Scan,12734464,USD,0.0,1452,207,4.5,4.0,1.7,4+,Utilities,38,3,14,1
+904418768,Google Street View,95927296,USD,0.0,1450,48,4.0,4.0,2.9.0,4+,Travel,37,0,32,1
+994933845,Free Fur All – We Bare Bears Minigame Collection,362530816,USD,0.0,1449,468,4.5,4.5,1.0.5,4+,Games,38,4,10,1
+1087433788,Tap Hero,26119168,USD,0.0,1444,182,4.5,4.5,1.01,12+,Games,37,5,1,1
+1181904201,4x4 Dirt Track Trials Forest Driving Parking Sim,278811648,USD,0.0,1441,1441,5.0,5.0,1.0.1,4+,Games,37,5,1,1
+893141226,Pumped BMX 2,98525184,USD,2.99,1440,1440,5.0,5.0,1.0,4+,Games,38,5,1,1
+934510730,Astropad Standard,25945088,USD,29.99,1439,21,4.5,4.5,2.2.1,4+,Productivity,24,5,2,1
+336477530,Plane Finder - Flight Tracker,52632576,USD,3.99,1438,171,4.0,4.0,9.4.1,4+,Navigation,37,3,10,1
+663068211,SimpleRockets,25284608,USD,2.99,1436,155,4.5,4.5,1.6.10,4+,Games,43,5,1,1
+958825016,adidas Confirmed,62336000,USD,0.0,1434,14,2.5,3.0,4.3.2,4+,Lifestyle,37,0,9,1
+1101691540,Worm.is: The Game,81690624,USD,0.0,1433,68,4.5,5.0,2.1.0,9+,Games,38,3,16,1
+996345745,EvilBane: Rise of Ravens,180629504,USD,0.0,1428,15,4.5,4.0,1.3.0,9+,Games,38,5,14,1
+390523040,Polar Plunge ™,3700705,USD,0.99,1428,1417,3.5,3.5,1.0.0,4+,Games,47,0,1,1
+993605516,CatHotel - Care for cute cats,230216704,USD,0.0,1425,136,4.5,4.5,2.1,4+,Games,38,5,12,1
+839897809,Yup - Homework Help with Math & Science Tutors,99890176,USD,0.0,1424,8,4.5,4.5,5.8.8,4+,Education,37,5,1,1
+1021566244,FINAL FANTASY VII,1938644992,USD,15.99,1421,228,4.0,4.0,1.0.5,12+,Games,37,5,5,1
+1165525994,PhotoScan - scanner by Google Photos,71370752,USD,0.0,1421,268,4.5,5.0,1.4.1,4+,Photo & Video,25,0,36,1
+726147252,Sunday Lawn Seasons,15258624,USD,0.99,1420,173,4.5,4.5,1.04.1,4+,Games,40,3,1,1
+407707744,The 7th Guest,655987075,USD,4.99,1419,216,4.0,3.5,7.5,12+,Games,43,5,1,1
+1068076031,Titan Slots™ III,110205952,USD,0.0,1419,92,4.5,4.0,1.9,12+,Games,37,5,1,1
+504575083,Tank Hero: Laser Wars,23957504,USD,0.99,1418,138,4.5,4.0,1.3,9+,Games,43,5,1,0
+1044848003,Surfingers,291862528,USD,0.0,1416,16,4.5,3.5,1.2.3,9+,Games,40,5,1,1
+496191902,Flight!,64777216,USD,0.99,1411,15,4.5,4.5,1.2.7,4+,Games,40,5,1,1
+976150380,Draw a Stickman: EPIC 2,265324544,USD,1.99,1410,615,4.5,4.5,1.2.1,9+,Games,38,5,1,1
+1086252028,Gravity Switch,43257856,USD,0.0,1405,1016,4.5,4.5,1.1.2,4+,Games,38,5,1,1
+868759616,Rocket Cars,154898432,USD,0.0,1404,549,4.0,4.5,1.1.2,4+,Games,38,5,12,1
+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
+382013715,SuperCam_Pro,27815936,USD,1.99,1399,24,2.5,2.5,4.3,4+,Business,43,0,7,1
+521640355,Toca Train,81991680,USD,2.99,1397,25,4.0,3.5,1.0.5,4+,Education,40,5,18,1
+1080114119,Pixomatic - layer based photo editor,117997568,USD,4.99,1396,11,4.5,5.0,3.1,12+,Photo & Video,37,5,12,1
+987873536,Mondly: Learn 33 Languages: Spanish English French,77725696,USD,0.0,1395,229,4.5,4.5,5.6,4+,Education,38,5,1,1
+946903436,I am Bread,1084654592,USD,4.99,1394,439,3.5,4.0,1.5,4+,Games,37,4,8,1
+414835676,The Lost City,106427392,USD,1.99,1393,33,4.5,4.5,1.09,4+,Games,40,5,16,1
+1033521131,Adventure Company,389818368,USD,0.0,1392,486,4.5,4.5,1.0.5,12+,Games,40,5,1,1
+940006911,Agent A: A puzzle in disguise,239047680,USD,2.99,1390,202,4.5,5.0,3.0.2,9+,Games,37,5,11,1
+298206806,iReal Pro - Music Book & Play Along,63283200,USD,12.99,1390,143,4.5,5.0,7.0.1,4+,Music,37,5,33,1
+1020481008,Deus Ex GO - Puzzle Challenge,293599232,USD,4.99,1385,176,4.5,4.5,2.1.1,12+,Games,37,5,10,1
+581920331,WWF Together,1272736768,USD,0.0,1385,25,4.5,4.5,2.1.5,4+,Education,37,5,5,1
+921852522,Bean Dreams,71748608,USD,0.99,1382,108,4.5,4.5,4.0,9+,Games,37,5,13,1
+906287108,Monster Strike,122131456,USD,0.0,1381,32,3.5,4.0,8.2.3,4+,Games,37,5,3,1
+1070057529,Warriors of Glory,804577280,USD,0.0,1380,52,4.5,3.5,1.2.2,12+,Games,40,5,1,1
+424591347,FINAL FANTASY III,290695168,USD,14.99,1378,17,4.5,3.5,1.7.5,9+,Games,40,0,8,1
+816177666,Scan & Translate - image Scanner and Translator,102495232,USD,2.99,1376,52,4.0,4.0,4.0,4+,Utilities,37,5,15,1
+1065511007,Boom: Best Equalizer & Magical Surround Sound,88309760,USD,0.0,1375,41,4.0,5.0,1.2.1,4+,Music,37,4,4,1
+824421012,Brushstroke,61438976,USD,3.99,1373,116,4.5,4.5,3.1,4+,Photo & Video,37,5,12,1
+308339980,iRagdoll - Ragdoll Physics,118683648,USD,0.99,1372,25,4.0,4.0,1.8.3,12+,Games,37,2,1,1
+849145835,"Union - Combine, Blend, and Edit Photos",52169728,USD,1.99,1372,378,4.5,5.0,1.5.4,4+,Photo & Video,37,5,2,1
+1034018838,Beat the Boss 4,786240512,USD,0.0,1368,766,4.0,4.0,1.1.0,12+,Games,37,5,15,1
+991357716,Lifeline 2,81724416,USD,1.99,1364,843,4.5,4.5,1.4,9+,Games,37,5,1,1
+1178082935,Stickman Base Jumper 2,323822592,USD,0.0,1362,1142,5.0,5.0,1.0.1,4+,Games,38,5,1,1
+902062673,Desert Golfing,1259520,USD,1.99,1362,209,4.5,4.5,1.12,4+,Games,40,4,1,1
+1108580508,Running Man Challenge - Game,30601216,USD,0.0,1360,108,3.5,3.5,1.0.3,4+,Games,40,2,1,1
+413511993,Weather Radio by WDT,22879232,USD,4.99,1359,26,3.0,3.0,3.0.5,4+,Weather,38,5,1,1
+589653414,"7-Eleven, Inc.",42894336,USD,0.0,1356,73,2.5,2.5,2.3.6,4+,Food & Drink,38,0,1,1
+1001989098,Supermarket Girl - Shopping Fun!,91478016,USD,0.0,1354,153,4.5,4.5,1.7,4+,Games,38,5,11,1
+889985763,FreeFlight Pro.,226129920,USD,0.0,1352,0,3.5,0.0,4.3.9,4+,Entertainment,37,4,12,1
+1030902626,Scribblenauts Unlimited,567910400,USD,4.99,1350,325,4.0,4.5,1.20,9+,Games,37,5,1,1
+1035690802,Titan Quest,1323163648,USD,7.99,1350,388,4.0,4.5,1.0.4,9+,Games,25,5,7,1
+515890480,Little Writer - The Tracing App for Kids,37417984,USD,0.99,1348,2,4.5,3.0,2.0,4+,Education,37,5,1,1
+1135354652,Drive Ahead! Sports,218459136,USD,0.0,1345,1,4.0,5.0,1.12.1,9+,Games,38,5,15,1
+496177674,Voice Dream Reader,89168896,USD,14.99,1343,1,4.5,5.0,4.2.0,17+,Education,37,4,26,1
+426170776,QR Reader for iPad,55071744,USD,0.0,1341,63,4.0,4.0,4.0,9+,Utilities,24,5,29,1
+529443604,SnoreLab : Record Your Snoring,56814592,USD,0.0,1341,266,4.5,4.5,3.7.3,12+,Medical,38,5,9,1
+333263435,Daily Teachings,20298752,USD,4.99,1340,288,4.5,5.0,1.7.3,4+,Lifestyle,38,0,1,1
+1058287503,酷我音乐HD-无损在线播放,40784896,USD,0.0,1340,264,5.0,5.0,4.0.6,4+,Entertainment,24,5,1,1
+1135518748,Suрer Toss The Turtle,564712448,USD,0.0,1339,52,5.0,4.0,1.171.11,12+,Games,38,5,1,1
+517271093,Virtua Tennis Challenge,401727488,USD,4.99,1339,459,4.0,4.0,1.2,4+,Games,39,4,9,1
+634467171,Glitché,30717952,USD,0.99,1338,202,4.0,4.5,2.12,4+,Photo & Video,37,5,1,1
+482365195,Kinectimals,185228498,USD,2.99,1336,615,4.0,4.0,1.1,4+,Games,43,5,3,1
+545623778,Camera360 Concept - HelloCamera,45243392,USD,0.99,1335,9,4.5,4.5,1.1.1,4+,Photo & Video,38,0,3,1
+1008692660,RollerCoaster Tycoon® 3,701620224,USD,4.99,1334,469,4.0,4.0,1.0.4,4+,Games,25,4,6,1
+1148321705,Bully: Anniversary Edition,2413393920,USD,6.99,1334,305,4.5,4.5,1.04,12+,Games,37,5,7,1
+948715059,Venture Kid,27722752,USD,0.99,1333,372,4.5,4.5,1.1,9+,Games,38,5,1,1
+980132410,To-Fu Fury,651927552,USD,0.99,1331,1331,4.5,4.5,1.0,9+,Games,37,5,8,1
+414113282,IRS2Go,10110976,USD,0.0,1329,47,3.0,3.0,5.3.1,17+,Finance,37,4,2,1
+1012231677,METAL SLUG ATTACK,106136576,USD,0.0,1324,10,4.5,4.0,2.6.0,12+,Games,38,5,2,1
+1134895689,Phoenix II,104267776,USD,0.0,1321,6,4.5,4.0,2.4,4+,Games,25,5,13,1
+1083057569,GhostCodes - a discovery app for Snapchat,54652928,USD,0.0,1313,223,4.5,4.5,1.9.9,12+,Social Networking,37,0,1,1
+1052491589,Pelé: Soccer Legend,164545536,USD,0.0,1310,169,4.5,4.5,1.3.0,4+,Games,37,5,8,1
+917555054,My Movies Pro - Movie & TV Collection Library,95249408,USD,7.99,1309,163,4.5,5.0,2.28,12+,Catalogs,38,5,13,1
+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
+791077159,KORG Gadget,918957056,USD,39.99,1297,92,4.5,5.0,3.0.1,4+,Music,37,5,5,1
+1107355213,Bullet Hell Monday,90488832,USD,0.0,1296,120,5.0,5.0,2.0.1,9+,Games,37,5,2,1
+1017581225,Skylanders SuperChargers,1322848256,USD,0.0,1296,441,4.0,4.0,1.2.2,9+,Games,35,5,1,1
+312220102,MindNode – Delightful Mind Mapping,52294656,USD,9.99,1296,4,4.0,5.0,4.5.3,4+,Productivity,37,4,13,1
+483049169,Motion Math: Hungry Fish,40546304,USD,2.99,1294,44,4.0,4.0,2.8,4+,Education,40,5,11,1
+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
+312266675,Packing Pro,16332800,USD,2.99,1293,31,4.0,5.0,12.2,4+,Travel,37,5,11,1
+554597348,Vector HD,137798656,USD,0.99,1291,30,4.5,3.5,1.2.0,9+,Games,24,5,1,1
+640941236,Doc McStuffins:  Time For Your Check Up!,321802240,USD,3.99,1286,289,3.5,3.0,1.1,4+,Entertainment,40,5,1,1
+922188121,My PlayHome School,206561280,USD,2.99,1286,43,4.5,4.5,3.1.1,4+,Entertainment,43,4,18,1
+1104945393,"Miss Hollywood: Lights, Camera, Fashion! - Pet Fun",598120448,USD,0.0,1283,171,4.5,4.5,1.3,4+,Entertainment,38,5,10,1
+1093326711,TRUMP'S WALL - Build it Huge,54270976,USD,0.0,1278,98,4.0,3.5,1.3,12+,Games,37,5,1,1
+911006986,Banner Saga,2030561280,USD,9.99,1276,19,4.5,4.0,1.06,12+,Games,37,5,7,1
+552330708,Stock Market HD: Real Time Stocks Tracker + Forex,77485056,USD,2.99,1275,8,3.5,4.0,2023,4+,Finance,37,1,1,1
+666575946,RealTimes: Video Maker,187350016,USD,0.0,1274,0,4.5,0.0,4.10.004,4+,Photo & Video,37,4,10,1
+373454750,随手记(专业版)-好用的记账理财工具,83899392,USD,0.99,1267,0,4.5,0.0,10.6.3,4+,Finance,38,0,3,1
+1035238692,GyroSphere Trials,201877504,USD,0.0,1267,11,3.5,3.0,1.4.6,4+,Games,38,5,1,1
+1076683233,Quartz • News in a whole new way,45088768,USD,0.0,1267,16,4.0,3.5,1.4.0,12+,News,37,0,1,1
+1098099856,Trolls: Crazy Party Forest!,312641536,USD,0.0,1260,10,4.0,4.0,3.4.1,4+,Games,37,5,11,1
+1086316112,Disney LOL,59685888,USD,0.0,1259,77,4.0,4.5,1.7.2,4+,Entertainment,37,5,1,1
+700793523,Pandemic: The Board Game,72974336,USD,2.99,1259,415,4.5,4.5,1.2.5,4+,Games,38,5,17,1
+1065906948,The Pit,41295872,USD,0.0,1257,1257,4.5,4.5,1.0,4+,Games,38,5,1,1
+611071723,Duck Life,235831296,USD,0.99,1257,2,4.0,4.5,2.54,4+,Games,37,5,1,1
+377677727,"Mega Millions & Powerball - lottery games in the US with winning number results, lotto jackpots and prize payouts",7876608,USD,0.0,1255,432,4.5,4.5,3.2,12+,Lifestyle,38,5,1,1
+1136259229,PokeWhere - Live Radar Map for Pokemon GO,13818880,USD,0.0,1254,104,3.5,2.0,3.0.0,4+,Games,37,0,1,1
+966509113,My New Baby Story - Makeup Spa & Dressup Games,55869440,USD,0.0,1253,17,4.0,2.5,4.1,12+,Games,37,4,25,1
+822797943,Page: English Grammar & Spell Checker + Translator,24753152,USD,3.99,1252,6,4.5,3.0,4.93,4+,Productivity,38,5,9,1
+1159072426,Tiny Rails,296011776,USD,0.0,1252,5,4.0,4.0,1.3.3,4+,Games,38,4,1,1
+1011714860,Tap Quest : Gate Keeper,172115968,USD,0.0,1252,29,4.5,4.0,3.8,4+,Games,37,5,4,1
+948857526,Transistor,2414573568,USD,4.99,1250,141,4.5,4.5,1.6,12+,Games,33,5,1,1
+1014459049,Fontmania - Add Artworks & Text to Your Photos!,37767168,USD,4.99,1249,306,4.5,4.5,1.6,4+,Photo & Video,37,5,11,1
+893448956,Tiny Guardians,457842688,USD,3.99,1246,221,4.5,4.5,1.1.1,9+,Games,40,5,1,1
+1075820557,Super Arc Light,109820928,USD,1.99,1246,936,4.0,4.5,2.02,4+,Games,40,5,1,0
+952871251,Music Freedom - Unlimited Free MP3 Music Streaming,22730752,USD,0.0,1246,9,4.0,4.0,1.3.8,12+,Music,37,3,1,1
+701112447,Mindfulness Daily,101669888,USD,1.99,1245,693,5.0,5.0,1.072,4+,Health & Fitness,38,5,1,1
+1007115851,Spellbinders,152692736,USD,0.0,1245,256,4.0,4.5,1.6.1,9+,Games,37,5,1,1
+689936776,Toca Cars,97187840,USD,2.99,1238,29,4.0,4.0,1.0.5,4+,Education,40,5,18,1
+932228293,Train Conductor World,158641152,USD,0.0,1238,6,4.5,5.0,1.11.2,4+,Games,37,5,7,1
+948561621,City Police Car Driver Simulator – Drive Cops Auto,212642816,USD,0.0,1238,36,4.0,4.0,4.1,17+,Games,37,5,1,1
+1005077069,Army of Heroes,153125888,USD,0.0,1235,113,4.5,4.5,1.02.08,12+,Games,38,5,33,1
+840146800,Ninja UP!,37830656,USD,0.0,1233,366,4.0,4.5,1.1.0,4+,Games,39,4,2,1
+1085272239,Guild of Dungeoneering,377589760,USD,5.99,1232,152,4.5,5.0,1.5,12+,Games,37,5,1,1
+496499395,Guess The Person? HD,40747008,USD,0.99,1227,15,4.5,4.5,1.61,4+,Games,37,5,22,1
+849095637,Thomas Was Alone,228364288,USD,4.99,1226,1022,5.0,5.0,2.0,9+,Games,38,5,1,1
+497716362,TonalEnergy Chromatic Tuner and Metronome,65954816,USD,3.99,1226,53,4.5,5.0,1.5.3,4+,Music,37,5,25,1
+1059604202,Alliance: Air War - Airplane Flight Simulator Game,194171904,USD,0.0,1225,89,4.5,4.5,2.1.0,12+,Games,25,5,5,1
+585801479,iMaps+ for Google Maps ™ and Street View ™ : Transit and Offline Contacts,18010112,USD,2.99,1225,63,4.0,4.0,4.1.1,4+,Navigation,37,4,1,1
+550252401,Pac-12 Now,71500800,USD,0.0,1221,6,3.0,3.0,2.13,4+,Sports,37,5,1,1
+789356890,AG Drive,541367296,USD,3.99,1218,93,4.0,3.5,1.8.2,4+,Games,37,5,1,1
+400666114,Guitar Pro,34405376,USD,6.99,1218,11,4.0,4.5,1.7.3,4+,Music,38,5,12,1
+996246479,SHOWTIME,25903104,USD,0.0,1214,20,2.5,2.0,2.0.2,17+,Entertainment,37,5,1,1
+632344249,Make-Up Touch 2 - Kids Games & Girls Dressup Game,52653056,USD,0.0,1214,68,3.5,4.0,2.4,4+,Games,38,5,25,1
+993570169,Swaggy Ninja,31567872,USD,0.0,1210,119,4.5,4.0,1.5.2,4+,Games,40,5,1,1
+567244903,Bubble Guppies: Animal School Day HD,826970112,USD,4.99,1207,264,3.5,3.5,1.4,4+,Education,26,5,1,1
+393989284,Mathmateer®,26029056,USD,1.99,1207,2,4.5,4.5,2.3,4+,Education,37,5,1,1
+1041873285,Super Phantom Cat - Be a jumping bro.,120711168,USD,0.0,1206,23,4.5,5.0,1.60,4+,Games,37,4,7,1
+597426372,Speech Jammer,35823616,USD,0.0,1205,2,3.0,5.0,3.1.11,4+,Entertainment,37,2,2,1
+987732117,DANDY DUNGEON Legend of Brave Yamada,247331840,USD,0.0,1204,46,5.0,4.5,2.4.1,9+,Games,38,5,2,1
+1009227147,Vault!,135558144,USD,0.0,1203,123,4.5,4.0,1.0.4,9+,Games,40,5,1,1
+1085429285,Hex Crush!,138152960,USD,0.0,1202,13,4.5,4.0,1.1.0,4+,Games,40,5,2,1
+937261650,Christmas Sweeper 2,74791936,USD,0.0,1200,32,4.5,4.5,1.8.8,4+,Games,38,4,1,1
+1069361548,Live Wallpapers for Me - Free Moving Backgrounds,52854784,USD,0.0,1200,223,4.5,4.5,1.6,4+,Entertainment,37,0,15,1
+998560520,Blink Health,38117376,USD,0.0,1198,6,5.0,5.0,1.7.15,17+,Medical,37,0,9,1
+1062166395,Bear Pop - Bubble Shooter Game,110608384,USD,0.0,1195,0,4.0,0.0,1.38,4+,Games,38,5,1,1
+746894884,Google Play Movies & TV,64877568,USD,0.0,1195,92,3.0,4.0,2.10.0106,12+,Entertainment,37,5,39,1
+1091000556,Growing Pug,54922240,USD,0.99,1194,455,4.0,4.0,1.03,4+,Games,38,5,1,1
+1026909621,Sophia - My Little Sis,138332160,USD,0.0,1193,92,4.5,4.5,1.6.1,4+,Games,38,5,11,1
+1097825440,Juggernaut Champions,146553856,USD,0.0,1193,9,4.5,4.5,1.5,9+,Games,37,5,9,1
+615256100,Ghost Observer - ghost detector & spirit radar,51575808,USD,0.0,1193,38,3.5,3.5,1.7,9+,Entertainment,37,3,8,1
+337571576,Clay Hunt,15313920,USD,0.99,1193,1,4.0,2.0,3.5.3,17+,Games,40,5,1,1
+789870026,Jodel,56655872,USD,0.0,1193,19,4.5,5.0,3.58,17+,Social Networking,37,0,14,1
+1060103787,Dungeon Monsters RPG,123286528,USD,0.0,1192,12,4.5,5.0,2.6,12+,Games,37,5,1,1
+588682669,Alpaca World HD+,229460992,USD,0.0,1191,572,4.5,4.5,3.2.2,4+,Games,40,3,1,1
+847334708,Meipai,147106816,USD,0.0,1190,0,4.5,0.0,6.1.5,12+,Photo & Video,37,0,3,1
+1040671838,Star Skater,270223360,USD,0.0,1189,180,4.0,4.5,1.12.383,9+,Games,37,5,18,1
+653453499,Yoga.com: 300 Poses & Video Classes,51133440,USD,3.99,1189,11,4.5,3.5,3.1,4+,Health & Fitness,37,5,6,1
+1081832850,Handbrake Valet,66203648,USD,0.0,1187,108,4.0,4.5,1.1,4+,Games,37,5,1,1
+980368562,Fit Men Cook - Healthy Recipes,159452160,USD,3.99,1187,10,5.0,4.5,4.2,4+,Food & Drink,37,5,2,1
+570182662,"Runtastic Squats PRO – Workouts, Trainer & Counter",45754368,USD,1.99,1186,23,5.0,4.5,2.4.1,4+,Health & Fitness,37,5,15,1
+904239552,Hero Simulator: clicker game and idle adventure,44328960,USD,0.0,1182,57,4.0,4.0,1.7.4,4+,Games,37,5,1,1
+1023218196,Burger – The Game,14188544,USD,0.0,1179,473,4.5,4.5,1.03,9+,Games,40,3,1,1
+1087286731,Warp Shift,342428672,USD,0.0,1178,918,4.5,4.5,1.0.1,4+,Games,37,5,16,1
+585307861,PicTapGo,32724992,USD,1.99,1175,0,4.5,0.0,3.5.2,4+,Photo & Video,37,5,6,1
+1070255846,Mahjöng,15863808,USD,0.0,1173,126,4.5,4.5,1.2,4+,Games,43,2,1,1
+899593829,Eagle Simulator,84611072,USD,0.99,1170,1170,4.0,4.0,1.0,9+,Games,43,5,1,1
+949498190,iSlash Heroes,150040576,USD,0.0,1170,0,4.0,0.0,1.5.2,4+,Games,38,5,1,1
+1116296327,Slots: Get Rich Slot Machines Casino Slot Games,170819584,USD,0.0,1168,5,5.0,5.0,1.117,12+,Games,40,5,10,1
+527173191,Pumped: BMX,38629376,USD,1.99,1164,76,5.0,4.5,1.60,4+,Games,43,5,13,1
+489221652,Barefoot World Atlas,1629196288,USD,4.99,1161,26,3.5,3.0,3.0.10,4+,Reference,37,5,6,1
+940249281,Halo: Spartan Strike,802975744,USD,2.99,1159,660,4.0,3.5,1.1,12+,Games,37,5,0,1
+539943615,Voice Translate Pro,20605952,USD,3.99,1158,4,4.5,5.0,1.1.7,4+,Business,38,0,1,1
+545689128,Hurricane by American Red Cross,54710272,USD,0.0,1158,5,4.0,3.0,3.4,4+,Weather,37,5,1,1
+1061132313,CHOMP by Christoph Niemann,49474560,USD,1.99,1156,228,4.5,5.0,1.3,4+,Book,37,5,16,1
+378326916,Family Feud™ HD,79312792,USD,6.99,1156,951,3.5,3.5,1.0.1,4+,Games,26,5,1,1
+508433124,Real Pool 3D,76383232,USD,1.99,1156,77,4.0,4.0,2.1,4+,Games,38,5,1,1
+543032054,WiFi Map Pro - Scan & Get Passwords for free Wi-Fi,87569408,USD,4.99,1155,10,4.0,5.0,4.0,4+,Travel,37,4,4,1
+438475005,TextGrabber – image to text: OCR & translate photo,134786048,USD,4.99,1153,39,4.0,4.0,5.5.4,4+,Productivity,37,5,11,1
+526011730,Tom Loves Angela,53489664,USD,0.99,1151,129,4.0,4.0,2.0,4+,Entertainment,43,0,13,1
+338761996,AirWatch Agent,24747008,USD,0.0,1150,0,2.5,0.0,5.5,4+,Business,37,5,19,1
+1038849525,POTO - Photo Collage Maker,53268480,USD,0.0,1149,197,4.5,4.5,2.6.1,4+,Photo & Video,37,5,11,1
+949255899,Earn to Die 2 Lite,70754304,USD,0.0,1147,1147,4.5,4.5,1.0.8,12+,Games,39,5,1,1
+985923564,One More Dash,109096960,USD,0.0,1142,879,4.5,4.5,1.1,4+,Games,38,5,1,1
+306937053,Minesweeper Classic,22259712,USD,0.99,1140,20,3.5,3.5,3.6,4+,Games,37,4,1,1
+458535809,Calculator ∞,80345088,USD,2.99,1138,59,4.5,4.5,4.5,4+,Education,37,5,15,1
+914673497,World of Dragons: Dragon Simulator,111820800,USD,0.99,1138,1138,4.5,4.5,1.0,9+,Games,43,5,1,1
+1127108818,EA SPORTS™ FIFA 17 Companion,41966592,USD,0.0,1137,492,4.0,4.0,17.0.2,4+,Games,37,0,7,1
+546630411,Can Knockdown 3,151453696,USD,1.99,1135,213,4.5,5.0,1.30,4+,Games,38,5,11,1
+558202790,CUBE SNAP,85362688,USD,0.99,1133,142,4.5,4.5,3.14,4+,Games,37,5,1,1
+1031728646,Frozen Free Fall: Icy Shot,186636288,USD,0.0,1133,32,4.5,4.5,2.5.1,4+,Games,37,5,11,1
+1113223808,Rival Stars College Football,271124480,USD,0.0,1132,51,4.0,4.5,1.3.2,4+,Games,37,5,22,1
+1109425556,"Tinycards - Learn with Fun, Free Flashcards",48802816,USD,0.0,1131,299,4.5,4.5,1.0.19,12+,Education,37,5,1,1
+504170504,Louvre HD,125812736,USD,1.99,1129,93,5.0,5.0,4.4,4+,Lifestyle,40,4,12,1
+520978510,ZENFORMS: Protectors,111136768,USD,1.99,1127,25,4.0,4.5,1.3.6,12+,Games,40,2,1,1
+1120695201,Blocky Racer - Endless Arcade Racing,150992896,USD,0.0,1122,303,4.5,4.5,2.0,4+,Games,37,5,1,1
+917463360,Geometry Wars 3: Dimensions Evolved,120050688,USD,9.99,1122,280,4.5,4.5,2.0.3,4+,Games,37,5,5,1
+370144476,Math Ninja HD,25137152,USD,1.99,1121,209,4.5,4.5,1.7,9+,Games,43,5,1,1
+351986992,"StarMap 3D+: Night Sky, Astronomy, Star View Guide",100368384,USD,3.99,1118,29,4.5,5.0,3.5.3,4+,Education,37,5,29,1
+284666222,PCalc - The Best Calculator,49250304,USD,9.99,1117,4,4.5,5.0,3.6.6,4+,Utilities,37,5,1,1
+1022267439,"SNOW - Selfie, Motion sticker, Fun camera",119274496,USD,0.0,1115,2,4.0,2.5,3.2.5,4+,Photo & Video,37,0,5,1
+914893190,"RAMBOAT - Game of Shoot and Dash, Run and Jump !",64588800,USD,0.0,1114,0,4.5,0.0,2.7.7,17+,Games,37,5,1,1
+400213892,Reiner Knizia's Ra,34992128,USD,3.99,1114,110,4.5,4.0,1.5.1,4+,Games,45,5,1,1
+522008611,ATracker - Daily Task and Time Tracking,153064448,USD,0.0,1114,34,4.5,4.5,8.70,4+,Productivity,37,5,12,1
+1018215577,Ultimate Fox Simulator,139665408,USD,0.99,1112,1035,4.0,4.0,1.1,9+,Games,40,5,1,1
+485534181,Dictionary ( قاموس عربي / انجليزي + ودجيت الترجمة),69448704,USD,3.99,1112,7,4.5,4.0,6.4,4+,Reference,37,5,2,1
+381722077,Celebtwin: Celebrity Looks Like Lite,81773568,USD,0.0,1111,0,1.5,0.0,6.1,4+,Lifestyle,37,4,12,1
+568543007,Watch NFL Network,73063424,USD,0.0,1110,30,2.0,2.0,2.3,4+,Sports,38,3,25,1
+391767653,Sleep Talk Recorder,25309184,USD,0.0,1110,31,4.5,3.5,5.4.4,17+,Utilities,38,0,31,1
+888988372,Offroad Legends 2,83378176,USD,0.99,1108,748,4.5,4.5,1.2.0,4+,Games,39,5,26,1
+561521557,Agricola,349272064,USD,6.99,1107,27,4.0,4.5,1.2.3,12+,Games,40,5,7,1
+1003706384,Double Juggle,102620160,USD,0.0,1105,149,4.5,4.0,1.1.2,4+,Games,38,4,1,1
+1054948424,Complete Anatomy,974118912,USD,0.0,1104,18,4.5,5.0,2.5.1,12+,Medical,24,5,1,1
+554499054,滴滴出行,108676096,USD,0.0,1103,4,4.0,1.5,5.0.20,4+,Travel,37,0,2,1
+438865278,淘宝HD-Taobao for iPad,119247872,USD,0.0,1103,54,3.5,4.5,5.0.1,4+,Shopping,24,5,2,1
+886666245,MultiCraft -- Survival Craft Build Sandbox Game,65483776,USD,0.0,1102,58,3.5,4.0,2.032,4+,Games,37,5,11,1
+1103278932,Slip Away,214481920,USD,0.0,1102,18,4.0,3.0,3.0.5,4+,Games,37,5,1,1
+337462979,First Words Deluxe,63316992,USD,4.99,1101,8,4.0,4.0,7.0,4+,Games,38,5,1,1
+1086929344,Dancing with the Stars: The Official Game,350794752,USD,0.0,1098,27,4.0,4.5,2.7,4+,Games,37,4,1,1
+979092836,World Conqueror 3,69404672,USD,0.99,1094,170,4.5,4.5,1.3.0,9+,Games,38,5,5,1
+347393479,Roadside America,10231808,USD,2.99,1093,106,4.0,4.5,1.9.0,9+,Travel,38,0,1,1
+451287325,Monkey Math School Sunshine,235767808,USD,1.99,1092,1,4.0,5.0,1.43,4+,Games,38,5,1,1
+1070107731,BlazBlue RR - the Real Action Game,446949376,USD,0.0,1091,28,4.0,4.0,1.16,12+,Games,37,4,2,1
+1141118819,Flappy Golf 2,131863552,USD,0.0,1089,327,4.0,4.0,2.0.1,4+,Games,37,5,11,1
+540392362,Castle Raid,47127849,USD,0.99,1087,895,4.5,4.5,1.02,9+,Games,43,5,1,1
+1080980064,Stretch Dungeon,111543296,USD,0.0,1087,1087,4.0,4.0,1.0.1,9+,Games,40,5,1,1
+1044953131,Smash Fu - Endless Arcade Smasher,72565760,USD,0.0,1086,112,4.5,4.0,1.1.2,4+,Games,38,5,1,1
+989178902,Timepage – Calendar by Moleskine,87201792,USD,4.99,1085,7,4.0,4.0,2.5.1,4+,Productivity,37,0,7,1
+486270850,Where is Santa Lite - Santa Tracker,14657536,USD,0.0,1085,278,4.0,4.0,1.4.0,4+,Entertainment,38,5,1,1
+398596699,myChevrolet,85515264,USD,0.0,1083,36,2.0,2.5,3.6.0,17+,Lifestyle,37,0,4,1
+1168304142,Keepy Ducky,434906112,USD,0.0,1083,46,4.5,4.5,1.4,4+,Games,37,5,1,1
+931201696,ProTube for YouTube,28517376,USD,3.99,1082,63,3.5,3.5,2.5.5,17+,Entertainment,37,5,2,1
+362179828,Super Why! Power to Read,138047488,USD,3.99,1080,5,3.5,2.5,4.0,4+,Education,37,5,1,1
+1010803520,Ultimate Dinosaur Simulator,153828352,USD,0.99,1079,216,3.5,4.0,1.2,9+,Games,40,5,1,1
+916540089,Sunny ~ Calm wave & ocean sounds to Sleep Relax Meditate on the beach with rain and sea birds,86542336,USD,1.99,1079,71,5.0,5.0,3.0.1,9+,Health & Fitness,38,5,2,1
+1080634585,Barbie Dreamtopia - Magical Hair,471601152,USD,0.0,1079,35,4.5,4.0,1.4,4+,Entertainment,38,5,9,1
+1127229619,Brick Splits,62238720,USD,0.0,1077,98,4.5,4.5,2.8,4+,Games,38,5,1,1
+1042322028,twofold inc.,38733824,USD,3.99,1075,661,4.5,4.5,1.2.0,4+,Games,38,4,11,1
+1038866266,Sky Chasers,96497664,USD,0.0,1074,76,4.5,4.5,3.0.6,4+,Games,37,5,1,1
+423855879,Bumpy Road,30275615,USD,2.99,1073,186,4.0,4.0,2.2,4+,Games,43,5,6,1
+719320397,Dominos Pro,54100992,USD,1.99,1072,37,4.5,4.0,2.5,4+,Games,43,1,1,1
+691102150,Octagon - A Minimal Arcade Game with Maximum Challenge,30543872,USD,1.99,1072,514,4.5,4.0,3.1,4+,Games,40,5,1,1
+1061197325,R.B.I. Baseball 16,2801234944,USD,4.99,1068,656,4.0,4.0,1.04,4+,Games,38,5,1,1
+932248553,Piloteer,276369408,USD,2.99,1059,23,3.5,4.0,1.36,9+,Games,38,5,1,1
+390109631,UFO on Tape,35359744,USD,0.99,1058,3,3.5,3.5,1.5,4+,Games,37,3,1,1
+523540409,Nearpod,75843584,USD,0.0,1057,1,4.0,2.0,9.8.5,4+,Education,37,5,31,1
+1075818491,Bike Traffic Rider an Extreme Real Endless Road Racer Racing Game,229864448,USD,0.0,1052,1052,5.0,5.0,1.1,4+,Games,38,5,1,1
+584927317,Warbits,185147392,USD,4.99,1051,43,4.5,5.0,1.2,9+,Games,40,5,1,1
+1007720559,Mix+Smash: Marvel Super Hero Mashers,484895744,USD,0.0,1050,615,4.5,4.5,2.0,4+,Entertainment,37,5,6,1
+940202798,Dirt Trackin,341243904,USD,2.99,1049,9,4.5,4.0,4.0.02,4+,Games,38,1,1,1
+986905979,AmpMe - A Portable Social Party Music Speaker,69876736,USD,0.0,1047,2,4.0,4.0,5.6.0,12+,Music,37,4,9,1
+977958854,Harvest Land,139517952,USD,0.0,1047,36,4.5,4.5,1.4.9,9+,Games,38,5,17,1
+1042326602,Neon Drive - '80s style arcade game,194145280,USD,3.99,1046,289,4.5,5.0,1.24,4+,Games,38,5,9,1
+391432693,ArtRage,58826752,USD,4.99,1045,2,4.0,2.5,2.1.11,4+,Entertainment,24,5,7,1
+599955633,Minecraft: Papercraft Studio,82397184,USD,2.99,1044,1,4.5,5.0,3.8.0,4+,Games,37,4,1,1
+495546638,"Thermo-Hygrometer (Barometer, Feels Like, THI)",8309760,USD,1.99,1043,119,4.5,4.5,4.0.1,4+,Weather,37,5,30,1
+461703208,高德地图(精准专业的手机地图),166025216,USD,0.0,1040,5,4.5,4.0,8.0.8,4+,Navigation,38,0,1,1
+1135811739,Fax from iPhone - send fax app,54827008,USD,3.99,1039,987,4.0,4.0,1.4,4+,Business,37,4,13,1
+719829352,FireChat,15021056,USD,0.0,1037,42,3.0,3.5,8.0.12,12+,Social Networking,37,3,13,1
+392538848,ToonCamera,29494272,USD,1.99,1037,95,4.5,4.5,4.0,4+,Photo & Video,37,5,13,1
+838455884,Sumotori Dreams,6471680,USD,0.99,1036,150,4.0,4.0,1.3,4+,Games,38,4,1,1
+953511734,Bestie-Beauty Camera 360 & Portrait Selfie Editor,107235328,USD,0.0,1035,6,4.5,4.5,3.9.90,4+,Photo & Video,37,0,15,1
+649820448,"Stock Market Pro: Stock Trading, Charts & Alerts",77472768,USD,5.99,1034,8,3.5,2.5,2023,4+,Finance,37,1,1,1
+557932128,"Inkly: Greeting Cards, Postcards, Flowers & Gifts",139865088,USD,0.0,1034,859,4.5,5.0,7.5.1,9+,Shopping,37,5,21,1
+1096918571,Google Duo - simple video calling,44514304,USD,0.0,1033,3,4.0,4.5,12.0,4+,Social Networking,37,0,74,1
+575487269,aerofly FS - Flight Simulator,2251403264,USD,3.99,1033,211,4.5,4.5,1.2.1,4+,Games,39,5,1,1
+666202151,movieStudio-Video Editor&Slideshow Maker(pro),99328000,USD,2.99,1033,54,4.5,4.5,5.7,4+,Utilities,40,1,12,1
+565847343,百度HD-极速安全浏览器,167631872,USD,0.0,1033,8,4.0,3.5,5.4.0,17+,Utilities,24,5,2,1
+965552611,AO Creator - Creator for Pokémon,87649280,USD,6.99,1032,132,3.5,3.0,1.4.1,4+,Utilities,38,0,1,1
+1066338494,Live Wallpapers for Me - Animated HD Backgrounds,29489152,USD,1.99,1030,57,4.0,4.5,1.7,4+,Entertainment,37,0,15,1
+894918913,Wildlife Simulator: Wolf,97669120,USD,0.99,1030,911,4.5,4.5,2.0,9+,Games,43,5,1,1
+924695435,Pixelmator,132711424,USD,4.99,1029,156,4.0,4.0,2.3,4+,Photo & Video,37,5,11,1
+431023686,美丽说-潮流穿搭快人一步,143117312,USD,0.0,1026,0,4.5,0.0,9.1.0,17+,Shopping,37,0,4,1
+849796318,Kiwanuka,49516544,USD,0.99,1025,313,4.5,4.5,1.2,4+,Games,43,5,1,1
+1037285199,"Themify - Full HD Themes for iPhone with Live Wallpapers, Backgrounds and Keyboards.",84629504,USD,3.99,1024,390,4.5,4.5,1.3,4+,Utilities,37,0,11,1
+1092276838,Pixel Cup Soccer 16,66974720,USD,2.99,1024,32,4.5,4.5,1.0.8,4+,Games,37,5,1,1
+707189889,Starfall FREE,94261248,USD,0.0,1019,620,3.5,4.0,1.26.010,4+,Education,43,5,1,1
+1125608061,WoW Legion Companion,286431232,USD,0.0,1019,50,3.0,2.0,1.2.1,9+,Entertainment,37,5,4,1
+1008234539,Capital One CreditWise - Credit score and report,64735232,USD,0.0,1019,79,4.5,5.0,1.4.0,4+,Finance,37,0,1,1
+980241548,Buddy Toss,129190912,USD,0.0,1018,1,4.0,1.0,1.17,9+,Games,38,5,1,1
+1042345185,Candy Party: Coin Carnival Dozer,250047488,USD,0.0,1017,912,4.5,4.5,7.1.0,12+,Games,38,5,1,1
+783636913,First Strike 1.3,149073920,USD,3.99,1016,3,4.0,4.5,1.3.1.1,12+,Games,38,5,1,1
+499470113,"FileExplorer Pro - File Manager for Computer, NAS",83620864,USD,4.99,1016,45,4.5,4.5,6.1,4+,Utilities,37,5,9,1
+1109751921,Really Bad Chess,70149120,USD,0.0,1015,600,4.5,4.5,1.1.2,4+,Games,40,5,1,1
+989254177,Good Morning Alarm Clock - Sleep Cycle Tracker,59503616,USD,3.99,1014,279,4.5,4.5,1.5,4+,Health & Fitness,37,5,11,1
+452186370,百度地图-智能的手机导航,公交地铁出行必备,213586944,USD,0.0,1014,23,4.0,4.5,9.8.2,17+,Navigation,37,0,2,1
+892510181,Reflex Student,102887424,USD,0.0,1010,323,4.0,3.5,1.7.1,4+,Education,24,5,3,1
+989148225,Sky Gamblers Air Supremacy,1654782976,USD,2.99,1010,272,4.0,4.5,1.8.2,12+,Games,38,5,10,1
+1149994032,Facetune 2,141808640,USD,0.0,1009,12,3.0,3.5,1.5,4+,Photo & Video,25,5,12,1
+514205253,Majiang Mahjong(单机+川麻+二人+武汉+国标),74442752,USD,0.0,1007,3,5.0,2.5,3.762,12+,Games,43,5,1,1
+434826169,Toca Robot Lab,64152576,USD,2.99,1006,17,4.0,4.0,1.2.3,4+,Education,40,5,1,1
+700653178,Pocket Troops,515005440,USD,0.0,1005,49,4.5,4.5,1.21.0,12+,Games,38,5,7,1
+1018743724,Lost in Harmony,207105024,USD,0.0,1002,79,4.5,4.0,2.1.1,9+,Games,37,5,17,1
+925201227,GoldieBlox and the Movie Machine,93580288,USD,0.0,1000,11,4.0,4.0,1.5.2,4+,Education,37,5,1,1
+1102508135,PAC-MAN Pop,247194624,USD,0.0,1000,216,4.5,4.0,2.1.6471,4+,Games,37,5,7,1
+530445196,Dungeon Village,187506688,USD,4.99,1000,15,4.5,4.5,2.02,4+,Games,38,5,5,1
+457561360,Catholic Bible,103469056,USD,1.99,999,44,4.5,5.0,3.4,4+,Reference,37,5,15,1
+1097114930,Tap Tap Builder,148815872,USD,0.0,999,28,4.5,4.5,2.7.8,4+,Games,37,5,1,1
+1087490734,Emoji Blitz,15467520,USD,0.0,999,999,4.0,4.0,1.0,4+,Games,40,3,1,1
+1068847177,Monster Tail,140006400,USD,0.0,998,155,4.0,4.5,1.6,9+,Games,37,5,0,1
+395893124,土豆视频HD—高清影视综艺视频播放器,68668416,USD,0.0,990,4,3.0,2.0,5.5.2,12+,Entertainment,24,4,1,1
+407949800,Secret of Mana,192136192,USD,7.99,990,50,4.0,3.5,3.2.0,9+,Games,37,0,6,1
+1075872386,Mr. Crab 2,114213888,USD,0.0,989,21,4.0,4.5,1.6.2,4+,Games,37,5,14,1
+1042770650,ROCKY™,345278464,USD,0.0,989,132,4.0,4.5,1.1,9+,Games,38,5,1,1
+854245283,Cooking Academy 2: World Cuisine (Full),133746688,USD,2.99,988,530,4.5,4.5,1.0.4,4+,Games,40,5,0,1
+785904635,Farming USA,92385280,USD,1.99,987,35,4.5,4.0,1.7,4+,Games,38,1,1,1
+1142578941,Tropical Twist,75849728,USD,0.0,982,10,4.5,4.5,1.16.0,4+,Games,38,5,9,1
+410315894,Pearson eText,21079040,USD,0.0,981,4,2.5,2.0,1.11,4+,Education,24,5,8,1
+1029273159,Anki OVERDRIVE,341238784,USD,0.0,981,23,4.5,4.5,2.6.0,9+,Entertainment,35,5,15,1
+1056364454,Musictrax - Unlimited Music,65548288,USD,0.0,979,18,3.0,3.0,3.0,17+,Entertainment,37,5,9,1
+919010633,Cartoon Wars 3,123680768,USD,0.0,979,27,4.0,4.5,150,12+,Games,40,5,3,1
+1164801111,AutoSleep. Auto Sleep Tracker for Watch,7802880,USD,2.99,979,368,4.5,4.5,4.0.1,4+,Health & Fitness,13,0,9,1
+1008719508,Shadow Bug,246233088,USD,3.99,978,934,4.5,4.5,1.3,12+,Games,38,5,11,1
+969447496,Xenowerk,160539648,USD,0.99,978,117,4.5,4.5,1.3.4,12+,Games,37,5,10,1
+923441570,codeSpark Academy with The Foos - coding for kids,161695744,USD,0.0,977,9,4.5,4.5,2.09.00,4+,Education,38,5,1,1
+922281347,Cheetah Simulator,106536960,USD,0.99,976,940,4.5,4.5,1.1,9+,Games,43,5,1,1
+886565180,FRAMED,357446656,USD,3.99,971,0,4.5,0.0,1.2,12+,Games,38,5,12,1
+935216956,"Papers, Please",51179520,USD,7.99,970,89,5.0,5.0,1.0.12,17+,Games,24,5,8,1
+972627326,Flick Field Goal 17,98314240,USD,0.0,968,106,4.5,4.5,2.2,4+,Games,38,5,1,1
+724295527,Pitu,102120448,USD,0.0,968,4,5.0,5.0,4.9.2,4+,Photo & Video,38,0,5,1
+908073488,The Ensign,15657984,USD,0.99,968,177,4.5,4.5,1.55,12+,Games,38,1,1,1
+841118013,BET NOW - Watch Shows,37992448,USD,0.0,967,507,2.5,3.5,3.3.0,17+,Entertainment,37,4,1,1
+1116046099,Fancy Cats,281761792,USD,0.0,966,2,4.5,5.0,2.7.2,4+,Games,37,5,1,0
+571227995,"All-in Fitness: 1200 Exercises, Workouts, Calorie Counter, BMI calculator by Sport.com",96468992,USD,2.99,965,15,4.5,2.0,1.9.1,12+,Health & Fitness,38,0,6,1
+609598558,Alarmy Pro (Sleep If U Can) - Alarm Clock,170882048,USD,1.99,964,3,4.5,5.0,4.2.1,4+,Lifestyle,37,0,32,1
+922199867,Wild Horse Simulator,78684160,USD,0.99,961,961,4.0,4.0,1.0,9+,Games,43,5,1,1
+1128855720,Motor World: Bike Factory,81243136,USD,0.0,960,4,4.5,4.0,1.300,9+,Games,40,4,1,1
+1000708019,Butt Sworkit - Free Workout Trainer to tone & lift,58649600,USD,0.0,960,130,5.0,5.0,1.3.1,4+,Health & Fitness,37,5,12,1
+853706620,Botanicula,660328448,USD,4.99,959,99,4.5,4.5,1.1.3,9+,Games,37,5,16,1
+956794130,"""HOOK""",76611584,USD,0.99,959,150,5.0,5.0,1.04,4+,Games,40,5,1,1
+1010999283,Ultimate Horse Simulator,153812992,USD,0.99,958,757,4.5,4.5,1.1,9+,Games,40,5,1,1
+1112350146,Night Terrors: The Beginning,124721152,USD,0.0,954,307,4.0,4.0,1.6.0,12+,Entertainment,37,0,1,1
+635252156,Santa Call & Tracker - North Pole Command Center,206322688,USD,3.99,953,202,4.5,4.5,6.1.6,4+,Entertainment,37,5,1,1
+1135127134,Batman - The Telltale Series,1061347328,USD,4.99,953,121,3.5,3.5,1.6,17+,Games,25,5,1,1
+985082895,Forsaken World Mobile MMORPG,640595968,USD,0.0,952,2,4.0,4.0,1.3.0,12+,Games,38,5,14,1
+1134511982,Color 6,85723136,USD,0.0,951,30,3.5,4.0,1.1.8,4+,Games,37,5,1,1
+958796099,The Rock Clock™,89194496,USD,0.0,951,53,4.0,3.0,1.0.3,9+,Utilities,37,0,1,1
+957255155,Disney Magical Dice,270143488,USD,0.0,947,172,4.0,4.5,1.1.0,4+,Games,38,5,15,1
+1116808304,Nightgate,153664512,USD,4.99,947,809,4.5,4.5,1.0.1,4+,Games,38,5,10,1
+649983655,Sniper Shooter Pro by Fun Games For Free,110870528,USD,0.99,945,95,5.0,5.0,4.9,17+,Games,40,5,1,1
+962473684,RAD Boarding,121370624,USD,0.0,944,24,4.0,4.0,1.4,9+,Games,38,5,1,1
+441216572,360手机卫士-超安全的来电防骚扰助手,103390208,USD,0.0,944,0,4.0,0.0,8.0.2,4+,Utilities,37,0,2,1
+1140507373,Mini Games Maps for Minecraft PE - The Best Maps for Minecraft Pocket Edition (MCPE),93831168,USD,0.0,943,943,4.0,4.0,1.0,4+,Entertainment,37,4,1,1
+918035581,Dr. Panda Mailman,169786368,USD,3.99,942,10,4.5,3.5,1.81,4+,Education,40,5,18,1
+1034658841,Dungelot: Shattered Lands,402743296,USD,3.99,940,135,4.5,4.0,1.371,12+,Games,38,3,1,1
+1061859052,intoLive - Custom Live Photos wallpaper maker,47119360,USD,0.0,938,656,4.5,4.5,2.0.2,4+,Photo & Video,37,0,18,1
+1019447011,V LIVE - Broadcasting App,84481024,USD,0.0,937,32,3.5,3.5,2.2.1,4+,Entertainment,37,0,8,1
+855274310,Cinamatic,43502592,USD,2.99,937,9,3.5,4.0,1.6.4,4+,Photo & Video,37,5,9,1
+426097375,QQ浏览器HD-极速搜索浏览器,82982912,USD,0.0,936,4,4.0,4.0,5.8.2,17+,Utilities,24,5,1,1
+940268124,Medly - Music Maker,138166272,USD,0.0,933,121,4.5,4.5,3.4.2,4+,Music,37,5,11,1
+553211336,Daniel Tiger’s Neighborhood: Play at Home with Daniel,58736640,USD,2.99,930,88,3.5,3.5,2.0.4,4+,Education,43,5,1,1
+475820434,Notion,223332352,USD,14.99,929,17,4.0,3.0,2.0.177,4+,Music,37,5,8,1
+320279293,NAVIGON Europe,144412672,USD,74.99,927,3,3.5,2.5,2.17,4+,Navigation,37,2,21,1
+1130297669,The Higher Lower Game,76716032,USD,0.0,924,20,4.5,4.0,1.4.9,12+,Games,37,5,1,1
+427419772,Forbidden Island,149715968,USD,4.99,923,48,4.5,4.0,2.10,9+,Games,24,5,12,1
+895875773,Halo: Spartan Assault,716275712,USD,2.99,920,582,3.5,3.0,1.1.1,12+,Games,37,5,0,1
+952555810,Ski Safari 2,223045632,USD,0.99,919,12,4.5,5.0,1.5.1,4+,Games,37,4,8,1
+1082309664,Multiplayer for Minecraft PE Server Pocket Edition,32445440,USD,1.99,917,16,4.5,4.5,1.33,4+,Entertainment,37,2,26,1
+967624193,Noodles!,30650368,USD,1.99,917,158,4.5,5.0,1.7,4+,Games,37,5,9,1
+401818935,Genius Scan+ - PDF Scanner,43338752,USD,7.99,916,39,4.5,4.5,4.1.6,4+,Business,37,5,10,1
+1046510029,Bose Connect,92542976,USD,0.0,915,104,3.0,2.5,4.1.0,4+,Music,35,5,19,1
+1082958340,Justmoji,11343872,USD,1.99,914,64,5.0,4.0,1.0.3,9+,Entertainment,37,5,1,1
+964738592,Bubble Shoot Pet,58332160,USD,0.0,914,0,4.5,0.0,2.5.9,4+,Games,38,5,3,1
+1028950091,The Greedy Cave,160432128,USD,0.99,914,3,4.5,4.5,1.7.1,9+,Games,38,5,7,1
+1069737892,Splat Wars,119801856,USD,0.0,913,589,4.5,4.5,1.7.1,4+,Games,37,5,33,1
+1166596707,Fitness Girl - Dance and Play at the Gym,268526592,USD,0.0,913,134,4.5,4.5,1.4.1,4+,Games,38,5,11,1
+853926670,Webcams – EarthCam,43324416,USD,0.0,912,298,4.0,4.5,1.2.99,4+,Travel,37,5,1,0
+1036437162,Music Memos,146113536,USD,0.0,909,106,4.0,3.5,1.0.3,4+,Music,35,5,34,1
+1148979232,Nekosan,49047552,USD,0.0,905,163,4.5,4.5,1.7,4+,Games,37,5,14,1
+610955645,Frozen: Storybook Deluxe - Now with Frozen Fever!,1223352320,USD,4.99,903,12,3.5,4.0,2.0,4+,Entertainment,38,5,5,1
+1060986698,Simulator Run Real Hologram,60719104,USD,0.0,903,64,1.5,2.0,1.2,12+,Games,40,3,1,1
+904013027,Galaxy Trucker,187704320,USD,4.99,901,12,5.0,5.0,2.2.13,9+,Games,24,5,1,1
+627994145,Doodle Jump Easter Special,17430528,USD,0.0,900,5,4.5,4.0,1.0.5,4+,Games,37,4,1,1
+830708155,Fantastical 2 for iPad - Calendar and Reminders,43115520,USD,9.99,900,15,4.5,5.0,2.8.4,4+,Productivity,24,5,6,1
+981819100,Robbery Bob 2: Double Trouble,1006264320,USD,0.0,899,260,4.5,4.5,1.4.0,9+,Games,37,5,5,1
+1007120869,BADLAND 2,124445696,USD,3.99,898,89,4.5,4.5,1.3,9+,Games,38,5,13,1
+663965632,Teen Titans Go Arcade,25169920,USD,0.0,897,553,3.5,3.5,1.1,12+,Games,43,5,16,1
+1130723425,Leveled!,105438208,USD,0.0,897,142,4.5,4.5,1.4,4+,Games,37,0,1,1
+675054186,OfficeSuite Pro (Mobile Office),172608512,USD,14.99,896,10,4.0,4.5,5.3.1,4+,Business,37,5,10,1
+431493086,Classic Explain Everything™,123312128,USD,7.99,896,0,4.0,0.0,3.46,4+,Education,37,5,17,1
+947644950,Amazon Prime Now,48007168,USD,0.0,895,1,3.0,1.0,4.0,4+,Shopping,37,0,1,1
+730873197,Toca Hair Salon Me,132188160,USD,2.99,895,25,4.0,3.0,1.0.3,4+,Entertainment,40,5,18,1
+556867879,Draw a Stickman: EPIC HD,113565696,USD,2.99,895,164,4.5,4.5,1.4.4,9+,Games,24,5,1,1
+911138230,Fullscreen,108388352,USD,0.0,894,10,3.5,3.0,1.5.4,12+,Entertainment,37,5,1,1
+1086577498,Puzzle Monster Quest - New MultiPlayer,1125521408,USD,0.0,894,43,4.5,4.5,3.4.1,9+,Games,40,5,1,1
+924438909,"ProShot - RAW, DSLR Controls & Video",5897216,USD,3.99,893,19,4.5,4.0,3.8,4+,Photo & Video,37,2,11,1
+1016366447,Bear,29283328,USD,0.0,891,7,4.5,4.5,1.2.1,4+,Productivity,37,5,11,1
+1114234507,StephMoji by Steph Curry,66413568,USD,1.99,888,106,4.5,4.5,1.2,4+,Utilities,37,0,1,1
+905995602,Easy Lock Pro - Lock Screen Wallpaper,41463808,USD,2.99,888,156,4.5,3.5,2.0,4+,Photo & Video,38,0,1,1
+824305459,Papa's Freezeria To Go!,53638144,USD,0.99,885,28,4.5,4.0,1.1.2,4+,Games,37,0,1,1
+1061724021,Fiesta by Tango - Chat & Meet New People,179022848,USD,0.0,885,148,4.5,4.5,4.57.1,17+,Social Networking,37,1,30,1
+1040451375,Musicloud Pro - MP3 and FLAC Music Player for Cloud Platforms.,22317056,USD,2.99,885,312,4.5,4.5,1.5,4+,Music,38,5,14,1
+1020962158,Dust: An Elysian Tail,977829888,USD,5.99,884,446,4.5,5.0,1.6,9+,Games,38,4,1,1
+335545504,King of Dragon Pass,364490752,USD,9.99,882,85,5.0,5.0,2.3.2,12+,Games,43,5,1,1
+1181358720,VPN Go - Safe Fast & Stable VPN Proxy,55926784,USD,0.0,881,5,5.0,4.5,1.6.6,4+,Business,37,3,4,1
+1114312105,Consultant Aide,27880448,USD,7.99,881,38,3.5,2.5,1.3.2,4+,Business,37,5,1,1
+461390784,Real Fishing 3D,184315904,USD,1.99,880,58,3.5,4.0,1.1.4,4+,Games,40,5,1,1
+482728980,BookShout: Read eBooks & Track Your Reading Goals,106071040,USD,0.0,879,22,4.0,3.5,10.1,12+,Book,37,5,1,1
+461218759,"Drum Beats+ (Rhythm Metronome, Loops & Grooves Machine)",385908736,USD,3.99,879,612,4.5,5.0,3.4,4+,Music,38,5,1,1
+306628397,Phrase Party!,47774720,USD,1.99,878,48,4.0,4.5,8.7.5,17+,Games,38,5,1,1
+1002228096,Ookujira - Giant Whale Rampage,47969280,USD,0.0,878,37,4.5,4.5,2.2,9+,Games,37,5,13,1
+1085908608,Able Black,312574976,USD,1.99,876,812,5.0,5.0,3.0,12+,Games,40,5,1,1
+1031843950,Truck Simulator PRO 2016,592898048,USD,3.99,875,252,4.0,4.0,1.8,4+,Games,37,5,1,1
+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
+962397288,Exit Zone,16692224,USD,0.0,875,12,4.0,4.5,1.4,4+,Games,37,5,1,1
+524644575,BabyScope - Prenatal Listener,61694976,USD,4.99,875,51,3.0,4.0,4.7.0,4+,Utilities,37,5,1,1
+917670924,搜狗输入法-Sogou Keyboard,89465856,USD,0.0,874,2,3.0,3.0,4.5.1,4+,Utilities,37,5,1,1
+493536432,Hundreds,45957120,USD,2.99,873,56,4.0,4.0,1.45,4+,Games,43,5,1,1
+1141341835,Duel Master - Best Duelist,228511744,USD,0.0,871,871,4.5,4.5,1.0.0,9+,Games,38,5,3,1
+1141358828,Mushroom Wars 2,1309380608,USD,0.0,871,33,3.0,3.5,2.0.0,4+,Games,25,5,1,1
+1034201612,Finger Hero: Avoid Obstacles,150419456,USD,0.0,870,8,4.5,4.5,1.6.0,12+,Games,37,5,9,1
+554602005,百度网盘 HD,50118656,USD,0.0,869,1,4.0,1.0,4.6.2,4+,Productivity,24,5,1,1
+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
+1144018570,Water Bottle Flip Challenge,21496832,USD,0.0,868,269,4.0,4.0,1.0.7,4+,Games,40,2,1,1
+621561671,Oldify - Old Face Photo Booth App,97549312,USD,0.99,864,0,4.5,0.0,2.2.1,4+,Entertainment,37,5,13,1
+435871950,HappyCow Vegan / Vegetarian Restaurant Guide,35261440,USD,3.99,863,12,4.5,5.0,3.7.1,12+,Travel,37,3,11,1
+946434924,Aerofly FS 2 Flight Simulator,2634030080,USD,2.99,863,211,3.5,3.5,2.4.7,4+,Games,37,5,1,1
+1096801294,Google Allo — smart messaging,171962368,USD,0.0,862,54,3.5,3.5,11.0,17+,Social Networking,37,0,68,1
+335862325,Blower,98942976,USD,0.99,861,70,2.0,2.5,4.2,4+,Entertainment,40,4,1,1
+935306292,Sync Solver for Fitbit,14583808,USD,2.99,859,52,4.0,3.0,2.3,4+,Health & Fitness,13,0,1,1
+915074326,Snake Simulator,71372800,USD,0.99,859,812,4.5,4.5,1.1,9+,Games,43,5,1,1
+1111486949,PROmoji,59741184,USD,1.99,857,102,4.0,3.5,2.1,9+,Utilities,37,0,1,1
+430823968,FINAL FANTASY III for iPad,283656192,USD,16.99,857,14,4.0,4.0,1.6.4,9+,Games,24,5,8,1
+1070007906,LUCKY BLOCK MOD FOR MINECRAFT PC - POCKET GUIDE EDITION,13533184,USD,1.99,856,409,3.0,3.5,1.2,9+,Entertainment,38,4,1,1
+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
+1053688442,Combo Quest 2,202029056,USD,0.0,855,38,4.5,4.5,1.0.4,4+,Games,40,5,1,1
+1147863312,Clashy Colors,20506624,USD,0.0,854,850,5.0,5.0,1.1,4+,Games,38,4,1,1
+1013854622,KSI Unleashed,456900608,USD,0.0,854,44,5.0,5.0,1.3.2,17+,Games,37,5,1,1
+395680819,AVPlayer,39790592,USD,2.99,853,11,4.0,5.0,2.84,17+,Entertainment,40,0,11,1
+1050017714,Zootopia Crime Files: Hidden Object,176801792,USD,0.0,853,142,4.5,4.5,1.3.2,4+,Games,37,5,11,1
+950593959,Dr. Panda Restaurant Asia,261428224,USD,0.0,853,176,4.5,4.0,1.2,4+,Education,40,4,15,1
+646489967,Castle of Illusion Starring Mickey Mouse,555233280,USD,4.99,852,852,3.5,3.5,1.0,9+,Games,35,5,6,1
+1134516647,Cake Break,140116992,USD,0.0,852,14,4.5,4.5,1.0.5,4+,Games,40,5,16,1
+564247778,Stone Age: The Board Game,137375744,USD,6.99,850,448,4.5,4.5,2.1,4+,Games,43,5,2,1
+787141016,Patrick Kane's MVP Hockey,162003968,USD,3.99,849,113,4.5,4.5,1.4.0,4+,Games,38,5,1,1
+952578897,LOL Movie: Change your face + voice!,64729088,USD,0.0,849,61,4.5,4.0,1.4,4+,Photo & Video,38,5,14,1
+934484238,Adventure Time Game Wizard - Draw Your Own Adventure Time Games,1218220032,USD,4.99,848,203,4.0,4.0,1.2,9+,Games,37,5,11,1
+893927401,Toca Nature,156082176,USD,2.99,845,105,4.0,4.0,1.0.2,4+,Education,39,5,18,1
+351091731,大众点评-发现品质生活,244516864,USD,0.0,844,1,4.0,1.0,9.2.4,17+,Lifestyle,37,5,2,1
+890343394,Jurassic Life: Tyrannosaurus Rex Dinosaur Simulator,95854592,USD,0.99,842,800,4.5,4.5,1.1,9+,Games,43,5,1,1
+586379597,Golf Live Extra,11104256,USD,0.0,840,0,3.0,0.0,3.31,4+,Sports,37,1,1,1
+1112532917,Perchang,315626496,USD,1.99,839,507,3.5,4.0,2.02,4+,Games,37,5,11,1
+1057403847,Hammer Time!,190286848,USD,0.0,839,126,4.0,4.0,1.1.0,4+,Games,40,5,1,1
+1120034048,MARVEL Tsum Tsum,117726208,USD,0.0,838,8,4.5,4.5,2.9.0,4+,Games,38,5,8,1
+944808246,Snow Leopard Simulator,106881024,USD,0.99,837,837,4.5,4.5,1.0,9+,Games,43,5,1,1
+1007143930,LEGO® NEXO KNIGHTS™ : MERLOK 2.0,576817152,USD,0.0,837,140,4.0,4.0,2.1.0,9+,Games,37,5,22,1
+551407760,Jumping Horses Champions,41161832,USD,0.99,835,835,4.5,4.5,1.0,4+,Games,43,5,1,1
+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
+840811083,Rules!,56890368,USD,2.99,835,17,4.5,4.5,4.0.4,4+,Games,38,5,4,1
+882059071,SLOTS: TRUMP vs. HILLARY CLINTON Free Slot Games,168546304,USD,0.0,834,107,5.0,5.0,1.130,12+,Games,43,5,10,1
+794730213,Slice Fractions,209878016,USD,3.99,834,140,4.5,5.0,1.04.00,4+,Education,38,5,15,1
+758453889,AJ Jump: Animal Jam Kangaroos!,160192512,USD,1.99,834,65,4.5,3.5,1.6,4+,Games,40,5,1,1
+1021967723,Dawn of Gods,230893568,USD,0.0,833,45,4.5,4.0,2.1.0,9+,Games,40,1,33,1
+1148320769,Ketchapp Tennis,167264256,USD,0.0,830,830,4.0,4.0,1.0,4+,Games,38,5,4,1
+1036066107,Camcorder - Record VHS Home Videos,15195136,USD,0.0,830,540,4.5,4.5,1.1.1,4+,Photo & Video,38,5,1,1
+1061999170,All is Lost,296101888,USD,0.0,829,643,4.5,4.5,1.0.1,9+,Games,40,5,1,1
+365724094,Ski Tracks,24851456,USD,0.99,829,16,4.5,4.5,1.6.5,4+,Navigation,24,0,7,1
+978882773,Family Organizer - Calendar Planner,72469504,USD,0.0,828,227,4.5,4.5,1.2.0,4+,Productivity,37,0,1,1
+472896868,Infect Them All : Vampires,52539392,USD,0.99,826,135,5.0,4.5,3.1,12+,Games,43,5,1,1
+1133678984,Guides for Pokémon GO - Pokemon GO News and Cheats,27029504,USD,0.0,826,58,4.5,4.0,1.1,17+,Reference,37,2,1,1
+392790924,Cisco AnyConnect,46872576,USD,0.0,825,28,3.5,4.0,4.0.05066,4+,Business,40,1,1,1
+494302506,Scotland Yard,157572096,USD,3.99,824,0,4.5,0.0,2.3,4+,Games,37,4,5,1
+412403556,TEDiSUB - Enjoy TED Talks with Subtitles,44099584,USD,0.0,823,136,4.5,5.0,5.7.2,12+,Entertainment,37,1,3,1
+1116980952,Eden: The Game - Build Your Village!,148648960,USD,0.0,823,74,4.0,4.5,1.3,4+,Games,37,5,9,0
+982805507,har•mo•ny 3,172551168,USD,2.99,823,12,4.5,4.0,2.3.1,4+,Games,37,5,10,1
+917236063,讯飞输入法-智能语音输入和表情斗图神器,124801024,USD,0.0,822,13,4.5,4.0,7.0.1789,4+,Utilities,37,0,1,1
+948478740,MacID,6208512,USD,3.99,820,26,4.0,4.5,1.3.6,4+,Utilities,37,5,2,1
+1097757301,Clash of Queens: Dragons Rise,167815168,USD,0.0,820,0,4.5,0.0,2.0.3,9+,Games,38,5,16,1
+571172432,Mutant Mudds,37110784,USD,4.99,819,49,4.0,4.0,1.0.7,9+,Games,43,5,1,1
+939529493,Defenders 2: Tower Defense battle of the frontiers,680251392,USD,0.0,818,89,4.0,4.0,1.5.5,12+,Games,38,5,11,1
+432850619,FL Studio Mobile,791146496,USD,13.99,818,9,3.5,2.5,3.1.50,4+,Music,37,5,1,1
+648862644,"Videon - Video Camera and Editor with Zoom, Pause, Effects, Filters",11747328,USD,4.99,818,180,4.5,4.0,2.11,4+,Photo & Video,38,5,11,1
+690016261,Mimpi,262037504,USD,0.0,816,157,4.5,4.5,1.0.4,4+,Games,40,5,1,1
+1016915419,Trick Shot,105433088,USD,1.99,816,339,4.5,4.5,1.2.0,4+,Games,38,5,1,1
+939272201,Crayola Color Alive,215654400,USD,0.0,816,8,3.0,3.5,1.8.5,4+,Entertainment,38,1,1,1
+1033617377,Snowboarding The Fourth Phase,474566656,USD,0.0,815,484,4.5,5.0,1.3,9+,Games,37,5,1,1
+1061907653,Pretty Ballerina - Ballet Dreams,209787904,USD,0.0,814,168,4.5,4.5,1.4.0,4+,Games,38,5,11,1
+1027279455,Gather - In real life,78394368,USD,0.0,813,48,2.5,3.5,1.10.3,4+,Lifestyle,37,0,1,1
+966057213,Focus To-Do: The Best Focus Timer for Work & Study,42187776,USD,0.99,813,96,4.5,4.5,3.3,4+,Productivity,37,5,9,1
+796959534,Nintype,77518848,USD,4.99,813,7,3.5,3.5,1.99,9+,Productivity,37,1,1,1
+1057416982,Hockey Clicker,179764224,USD,0.0,813,802,4.5,4.5,1.2,4+,Games,38,4,1,1
+295759189,Big Day - Event Countdown,13156352,USD,0.99,812,14,3.0,4.0,8.2.0,4+,Lifestyle,38,0,7,1
+534568162,UFC ®,45790208,USD,0.0,809,4,2.5,3.0,3.0,12+,Sports,37,4,1,1
+991558368,INKHUNTER try tattoo designs in augmented reality,68191232,USD,0.0,809,35,4.5,4.5,2.6.7,4+,Entertainment,37,4,1,1
+992872278,Abby Lee Dance Secrets,51111936,USD,4.99,808,17,4.0,2.5,1.4.3,4+,Entertainment,37,0,1,1
+1116112829,Anime Power FX,97897472,USD,0.0,807,807,4.5,4.5,1.0,9+,Photo & Video,37,5,1,1
+963038076,One More Jump,110811136,USD,0.0,806,46,4.5,4.5,1.4.1,4+,Games,38,5,1,1
+1011000146,Ultimate Dragon Simulator,157528064,USD,0.99,806,806,4.5,4.5,1.0,12+,Games,40,5,1,1
+556382158,Pacific Fleet,92250112,USD,5.99,806,461,4.0,4.5,2.10,12+,Games,43,5,1,1
+909195466,Last Voyage,318521344,USD,1.99,805,163,4.0,4.5,2.0.1,4+,Games,38,5,1,1
+1035361376,Outback,73947136,USD,0.0,805,191,4.5,4.5,2.3.1,12+,Food & Drink,37,0,1,1
+1057391061,Sky Hoppers,82813952,USD,0.0,805,89,4.5,4.0,1.1.0,4+,Games,40,5,1,1
+634896669,美柚 - 女生助手,128416768,USD,0.0,804,0,5.0,0.0,6.0.1,17+,Health & Fitness,38,0,2,1
+1062425347,ReRunners: Race for the World,242724864,USD,0.0,804,6,4.5,4.0,1.13,9+,Games,37,5,5,1
+894342370,Plantera - Idle Farm Clicker,98745344,USD,0.0,802,115,4.5,5.0,1.4,4+,Games,38,5,12,1
+882687823,Heroes® of Might & Magic® III – HD Edition,1859333120,USD,9.99,800,203,3.5,4.0,1.2.0,12+,Games,24,5,8,1
+1150821668,Twisty Board,117156864,USD,0.0,800,49,4.5,4.5,1.18,4+,Games,37,4,1,1
+444745181,Daily Audio Bible App,13282304,USD,0.99,796,0,5.0,0.0,4.6.0,4+,Lifestyle,37,3,5,1
+1072456036,Strawberry Shortcake Dress Up Dreams,512804864,USD,0.0,796,796,4.0,4.0,1.1,4+,Entertainment,38,5,9,1
+1016360869,Marry Me - Perfect Wedding Day!,201636864,USD,0.0,795,43,4.0,4.5,1.3,4+,Games,38,5,10,1
+1145465310,Strawberry Shortcake Holiday Hair - Fashion World,413144064,USD,0.0,795,144,4.0,4.5,1.2,4+,Entertainment,38,5,9,1
+1132992868,Flowing ~ Meditation & Mindfulness,99457024,USD,1.99,795,781,4.5,4.5,1.2,4+,Health & Fitness,37,5,2,1
+386505750,Lotto Results - Mega Millions Powerball Lottery,7990272,USD,0.0,794,8,4.0,3.5,3.5.1,12+,News,37,5,1,1
+1034310786,Mad City Crime,250993664,USD,0.0,793,457,3.0,3.5,2.0,12+,Games,38,4,1,1
+1062745479,HeartWatch. Heart & Activity Monitor for Watch,16178176,USD,2.99,791,247,4.5,4.5,3.2,4+,Health & Fitness,13,0,6,1
+1079644135,Droppy Balls!,34074624,USD,0.0,791,257,4.5,4.5,1.3,4+,Games,38,2,1,1
+1138895159,Premier League - Official App,74441728,USD,0.0,791,2,3.5,5.0,1.0.31,12+,Sports,37,5,1,1
+995112030,U by BB&T,74385408,USD,0.0,790,13,2.0,3.5,1.6.5,4+,Finance,38,5,1,1
+901787752,Knights of Pen & Paper 2,441925632,USD,0.0,790,37,4.0,3.0,2.5.59,12+,Games,37,5,1,1
+738201550,"FandangoNOW - Movies + TV - anytime, anywhere",109808640,USD,0.0,787,82,2.0,1.5,2.2.5,12+,Entertainment,37,5,1,1
+393765873,爱奇艺 - 电视剧电影综艺娱乐视频播放器,235160576,USD,0.0,786,0,3.5,0.0,8.5.0,17+,Entertainment,38,0,2,1
+971414822,Battleplans - #1 Battle Strategy & Defense Game,291126272,USD,0.0,785,52,4.5,4.0,1.9.1,9+,Games,37,5,1,1
+932828299,NOGGIN - Preschool Shows & Educational Kids Videos,73499648,USD,0.0,782,8,3.5,4.5,3.1.0,4+,Education,37,5,1,1
+288120394,TouchOSC,4263936,USD,4.99,782,7,4.0,3.5,1.9.8,4+,Music,43,1,1,1
+1080661330,One Tap Tennis,125418496,USD,0.0,779,161,4.0,4.0,1.2.2,4+,Games,38,5,12,1
+687792357,Squaready for Video - Convert Rectangle Movie Clip into Square Shape for Instagram,38898688,USD,0.0,778,44,3.0,2.5,1.5.0,4+,Photo & Video,37,0,2,1
+1165391697,Crazy Clown Chase,21992448,USD,0.0,778,191,4.0,4.0,1.26,9+,Games,38,5,4,1
+522029577,Brutal Street,68812800,USD,0.0,777,0,4.5,0.0,2.8.0,12+,Games,37,5,7,1
+1133064144,Just Rolling,147982336,USD,0.0,776,40,4.5,4.5,3.2,4+,Games,38,5,1,1
+1107931279,Dolphin Zero Incognito Browser -Mini Web Explorer,22635520,USD,2.99,776,128,4.5,4.0,2.3,17+,Productivity,37,5,7,1
+458587755,搜狐视频-欢乐颂2 全网首播,109425664,USD,0.0,774,0,4.5,0.0,6.6,17+,Entertainment,38,0,1,1
+308368164,Proloquo2Go - Symbol-based AAC,723764224,USD,249.99,773,10,4.0,3.5,5.0.1,4+,Education,37,5,3,1
+553771681,百度地图HD,107509760,USD,0.0,771,22,4.5,4.0,4.5.1,4+,Navigation,24,2,2,1
+805869467,Tynker - Learn to Code. Programming Made Easy.,168828928,USD,0.0,771,1,4.5,1.0,4.0.14,4+,Education,24,5,1,1
+1035355817,VPN Proxy Master Pro,22918144,USD,5.99,771,34,5.0,5.0,1.7.0,4+,Productivity,37,3,9,1
+1030395486,Plug Pocketmine for Minecraft PE,22670336,USD,2.99,770,91,3.0,3.0,2.21,4+,Games,37,5,13,1
+297332787,gFlashPro - Flashcards & Tests,25997312,USD,3.99,768,4,4.0,4.0,7.1,4+,Education,37,3,3,1
+909911026,Maps Pro For Minecraft PE,7331840,USD,2.99,768,696,2.5,2.5,1.21,4+,Games,40,5,1,1
+741292507,Red-shop the world,64273408,USD,0.0,768,1,4.5,1.0,4.21,4+,Shopping,37,5,3,1
+477120941,iDoceo - teacher's assistant gradebook and planner,112567296,USD,11.99,768,104,4.5,5.0,4.8.1,4+,Education,24,5,11,1
+943587620,Paribus - Rebates When Prices Drop,92841984,USD,0.0,768,32,3.0,1.5,2.9.0,4+,Finance,37,5,1,1
+1034533362,Focus! - Can You Tell Them Apart?,37068800,USD,0.0,766,459,3.5,3.0,1.3,4+,Games,40,5,1,1
+1084590704,Versus Run,213704704,USD,0.0,766,320,4.5,4.5,1.1,4+,Games,40,5,1,1
+1079607960,Oh She Glows - Healthy Plant-Based Recipes,69006336,USD,1.99,764,22,5.0,4.5,1.1.6,4+,Food & Drink,37,5,1,1
+1010801519,Ultimate Lion Simulator,149815296,USD,0.99,763,763,4.5,4.5,1.0,12+,Games,40,4,1,1
+355940964,TeachMe: 1st Grade,90241024,USD,1.99,762,5,4.0,5.0,4.0.2,4+,Education,37,5,1,1
+1088211144,Buddyman Run - keep running!,278796288,USD,0.0,762,94,4.5,4.5,1.8.1,9+,Games,38,5,4,1
+640199958,WWDC,34959360,USD,0.0,762,7,3.5,4.5,6.0.0,4+,Reference,37,5,1,1
+981305941,LEGO® Batman: Beyond Gotham,1264988160,USD,4.99,756,308,4.0,4.0,1.4.6,9+,Games,37,5,1,1
+894930703,Peel Smart Remote: TV guide & Universal Remote,70322176,USD,0.0,756,135,2.5,2.0,2.6.8,4+,Utilities,37,0,16,1
+903911740,Forks Over Knives - Healthy Recipes & Easy Meals,107174912,USD,4.99,756,144,5.0,4.5,1.300,4+,Food & Drink,37,0,1,1
+1115681877,TRANSPORT MODS for MINECRAFT Pc EDITION,32416768,USD,1.99,754,44,4.5,4.0,1.02,4+,Navigation,37,2,2,1
+1138819531,Dustoff Heli Rescue 2,424078336,USD,0.0,754,49,4.5,4.5,1.3.1,12+,Games,38,5,1,1
+918609651,"Money Pro - Personal Finance, Budget, Bills",133555200,USD,2.99,754,168,4.5,5.0,1.8.5,4+,Finance,37,5,33,1
+590652256,Slots Discovery,65385472,USD,0.0,754,21,4.0,4.0,6.6,12+,Games,40,5,3,1
+1028272877,Mods for Minecraft PC & Servers for Minecraft PE,18505728,USD,1.99,753,3,4.5,3.5,1.1,12+,Utilities,38,5,1,1
+373493387,AnkiMobile Flashcards,19371008,USD,24.99,753,12,4.0,4.5,2.0.30,4+,Education,37,5,1,1
+953923489,Play Basketball Hoops 2017 - Real slam dunks game,175461376,USD,0.0,751,16,3.0,4.0,5.0,4+,Games,40,5,1,1
+1155162058,Don't Grind,79020032,USD,0.0,751,132,3.5,4.0,1.0.35,9+,Games,40,5,1,1
+453809428,Bon Appetit,21647360,USD,0.0,750,17,3.5,2.0,4.6.7,4+,Food & Drink,24,5,1,1
+481679745,Pocket Earth PRO Offline Maps & Travel Guides,51828736,USD,4.99,748,15,4.5,4.0,3.4.4,4+,Navigation,38,5,7,1
+794884903,Jumpy Horse Show Jumping,1122046976,USD,2.99,746,39,4.0,4.5,1.9,4+,Games,37,2,1,1
+389481236,QQ同步助手-新机一键换机必备工具,72941568,USD,0.0,746,1,4.5,5.0,6.7.8,4+,Utilities,40,0,1,1
+797818385,Repost It! for Instagram Pro - Video Photo Whiz,54003712,USD,2.99,745,98,4.0,4.5,1.6.0,4+,Social Networking,37,3,1,1
+414603431,QQ音乐-来这里“发现・音乐”,154551296,USD,0.0,745,7,3.5,5.0,7.5,4+,Music,37,0,3,1
+497236102,"NOAA Snow Forecast - Accurate Winter Weather, Chance of Snowfall & Snowday Prediction",22798336,USD,1.99,743,259,4.5,4.5,1.31,4+,Weather,40,5,1,1
+567289775,Mickey Mouse Clubhouse: Mickey's Wildlife Count Along,971752448,USD,2.99,743,22,3.5,3.5,1.6.82,4+,Entertainment,40,5,3,1
+1092704571,UA Shop by Under Armour,202311680,USD,0.0,741,16,4.5,4.5,1.15,4+,Shopping,37,0,1,1
+647804489,Solitaire ∘,103740416,USD,0.0,741,161,4.5,4.5,3.5.2,4+,Games,37,5,15,1
+398975927,Stratego® Single Player,195406848,USD,2.99,739,145,3.5,4.0,1.3.9,4+,Games,40,5,1,1
+1050893183,Medal Masters : Call of destiny,263524352,USD,0.0,738,1,4.5,5.0,1.6.0,9+,Games,38,5,12,1
+969154545,RAID HQ,150372352,USD,0.0,737,8,3.5,4.0,3.901,12+,Games,38,5,12,1
+1073166647,Hop Shot,128888832,USD,0.0,737,197,4.5,4.5,1.1,4+,Games,40,5,9,1
+916741290,Pennies – Budget and Expense Tracker,80970752,USD,3.99,736,63,4.5,5.0,5.3,4+,Finance,37,5,7,1
+410319945,QWOP for iOS,27227934,USD,0.99,735,288,4.0,4.5,1.07,4+,Games,43,4,1,1
+517812925,Block Story Premium,224559104,USD,2.99,734,23,4.0,4.5,11.2.3,9+,Games,37,5,1,1
+998424233,Kick Hero,107540480,USD,0.0,733,15,4.5,4.5,2.1,9+,Games,38,5,1,1
+1070998254,Wheel of Fortune PUZZLE POP,191639552,USD,0.99,732,36,4.0,4.5,1.9,4+,Games,38,5,1,1
+1156110079,Toca Life: Stable,267330560,USD,2.99,732,156,4.5,4.5,1.1,4+,Education,38,5,18,1
+1000559499,Wonder Tactics,653022208,USD,0.0,730,3,4.5,4.5,1.4.8,12+,Games,37,5,12,1
+1106606457,Truth Or Dare — Party Game,24810496,USD,0.0,730,181,4.5,5.0,2.0,12+,Entertainment,37,0,1,1
+1044286515,Micro Machines,257494016,USD,0.0,729,58,4.5,4.0,1.1.11,12+,Games,37,5,1,1
+583308290,Naughty or Nice Scan Free,18944000,USD,0.0,729,194,3.5,3.5,1.6,4+,Entertainment,38,2,2,1
+1067891186,Peach — share vividly,15626240,USD,0.0,727,98,4.0,4.0,1.2.1,12+,Social Networking,37,0,1,1
+656163700,Icebreaker: A Viking Voyage,60375040,USD,0.99,726,52,4.5,4.5,1.3.0,9+,Games,43,0,1,1
+373515261,WeatherPro for iPad,59475968,USD,2.99,725,26,4.0,4.5,4.4.2,4+,Weather,24,5,13,1
+688285246,Doom and Destiny,164665344,USD,2.99,725,461,4.5,4.5,1.8.3,12+,Games,38,5,1,1
+1062765947,Glob Trotters - Endless Arcade Blobber,136354816,USD,0.0,724,188,4.5,4.5,2.0,4+,Games,40,5,1,1
+1024951639,Lonely One,206535680,USD,0.0,723,60,4.5,4.5,2.9,4+,Games,40,5,6,1
+1149845877,Break Liner,136130560,USD,0.0,721,349,4.0,4.0,1.1.1,4+,Games,38,5,1,1
+988383602,Death Run : Mini Game With Worldwide Multiplayer,121913344,USD,0.99,721,273,4.0,4.5,1.5,9+,Games,43,4,1,1
+1156258040,The Walking Dead: A New Frontier,993859584,USD,4.99,721,443,4.0,4.0,1.1,17+,Games,25,5,1,1
+1126563858,The Counter Of Death,57303040,USD,0.0,719,24,4.5,4.5,1.55,12+,Games,40,5,10,1
+1043337296,Hey! VINA - Where Women Meet New Friends,103951360,USD,0.0,719,83,3.0,4.5,1.13,12+,Social Networking,37,0,1,1
+972319818,Prune,105950208,USD,3.99,719,145,4.0,4.0,1.0.68,4+,Games,40,5,1,1
+497088907,Mystery Case Files: 13th Skull HD - A Hidden Object Adventure (Full),882049024,USD,6.99,718,207,4.0,3.0,1.0.16,9+,Games,26,5,4,1
+399363156,腾讯新闻-头条新闻热点资讯掌上阅读软件,114878464,USD,0.0,718,4,4.0,2.5,5.3.6,12+,News,37,0,1,1
+917795718,Fingerprint Login: PassKey Password & Apps Lock,80351232,USD,0.0,718,39,2.0,2.5,4.2,17+,Productivity,38,4,1,1
+1133706938,Horror Maps for Minecraft PE - Download The Scariest Maps for Minecraft Pocket Edition (MCPE) Free,89927680,USD,0.0,718,718,4.0,4.0,1.0,12+,Reference,37,4,1,1
+492502649,Cape Creator for Minecraft,15948800,USD,1.99,718,85,2.5,2.5,3.1,4+,Utilities,38,5,3,1
+980286865,Til Morning's Light,1431842816,USD,3.99,715,398,4.5,4.5,1.0.2,9+,Games,37,5,8,1
+1115022026,The Secret To Money,25714688,USD,4.99,715,118,4.5,4.5,1.1.4,4+,Lifestyle,37,5,1,1
+960744514,The Mesh,102760448,USD,1.99,714,679,4.5,4.5,1.2.1,4+,Games,37,4,8,1
+425996445,Tiny Planet Photos and Video,84909056,USD,0.99,714,8,4.0,4.0,6.3.0,4+,Photo & Video,37,5,7,1
+923555295,Oddworld: Stranger's Wrath,1190330368,USD,2.99,713,252,4.5,4.5,1.0.4,12+,Games,38,5,10,1
+525507410,Potty Time with Elmo,47083520,USD,2.99,712,53,3.5,2.0,3.0,4+,Education,43,5,1,1
+1165315677,My First Crush - High School Love,131100672,USD,0.0,710,157,4.5,4.5,1.1,4+,Games,38,5,11,1
+1093825530,Baby Twins - Terrible Two,121673728,USD,0.0,710,193,4.0,4.0,1.2,4+,Games,38,5,11,1
+1048702554,Battle Bears Overclock FPS Epic Multiplayer Shooting Games,464481280,USD,0.0,709,142,3.5,4.0,1.2,12+,Games,37,5,1,1
+1080940988,Live Wallpapers & Themes Free - Moving Backgrounds,73891840,USD,0.0,708,23,4.5,4.0,1.1.5,4+,Lifestyle,37,0,11,1
+524988885,realMyst,1043664896,USD,6.99,708,59,4.0,4.0,1.1.1,12+,Games,37,5,1,1
+1101436320,TLC GO - Watch Full Episodes and Live TV,32314368,USD,0.0,708,46,3.0,3.0,2.5.2,12+,Entertainment,37,4,1,1
+960708632,Riddle Stones - Cross Numbers,115761152,USD,0.0,707,111,4.0,3.5,4.3.0,4+,Games,43,5,7,1
+1061703886,Stay in the Line - Free,18297856,USD,0.0,705,132,4.0,4.0,1.3.1,4+,Games,37,0,1,1
+1126585243,Coin Dozer: Haunted,162514944,USD,0.0,704,132,4.5,4.5,1.10,12+,Games,38,5,1,1
+908842747,Themeboard,52408320,USD,0.0,704,87,3.0,2.5,1.2.2,4+,Utilities,37,4,1,1
+794960248,Tengami,259990528,USD,3.99,703,31,4.0,4.5,1.4.1,4+,Games,37,5,14,1
+952929696,Furdemption - A Quest For Wings,38349824,USD,2.99,703,39,5.0,5.0,1.3.5,12+,Games,38,4,11,1
+663820495,Tomb Raider I,341276672,USD,0.99,702,38,4.0,4.0,1.0.4,12+,Games,38,5,11,1
+1078203772,Golf Island,78748672,USD,0.0,702,396,4.5,4.5,1.3,4+,Games,38,5,1,1
+577628510,TeamSpeak 3,27543552,USD,4.99,697,8,2.5,3.0,3.1.23,17+,Social Networking,38,1,4,1
+1024953824,Dictator 2,240695296,USD,0.0,694,25,3.0,2.5,1.4.4,12+,Games,37,5,1,1
+969589921,Hello Kitty Lunchbox – Food Maker,478513152,USD,0.0,694,213,4.5,4.5,1.3,4+,Games,38,5,14,1
+1049682098,"TopBuzz: Best Viral Videos, GIFs, TV & News",83196928,USD,0.0,692,29,4.5,5.0,3.6.2,17+,News,37,5,4,1
+741224942,Dr. Panda Home,312545280,USD,2.99,691,24,4.5,4.5,1.6,4+,Education,40,4,18,1
+1065480798,Bubble Buggie,104014848,USD,0.0,691,4,4.5,4.5,3.6,4+,Games,37,5,1,1
+1077142297,Catch Rate,28363776,USD,0.0,691,12,4.0,4.5,2.1,4+,Games,37,0,1,1
+519296448,Onion Browser - Secure & Anonymous Web with Tor,42329088,USD,0.0,691,1,3.5,5.0,1.7.6,17+,Utilities,37,3,1,1
+1116329647,Football Heroes PRO 2017 - featuring NFL Players,141317120,USD,0.0,691,125,4.0,4.0,1.3,9+,Games,37,5,1,1
+731041554,Sago Mini Ocean Swimmer,189380608,USD,2.99,690,16,4.5,4.5,1.5,4+,Education,38,5,1,1
+1167651042,Demi Lovato - Zombarazzie Adventure,87374848,USD,0.0,690,136,5.0,4.5,1.4,4+,Games,37,5,0,1
+1061782177,Escalate,77448192,USD,0.0,689,0,4.0,0.0,1.3,4+,Games,40,1,1,1
+1095280287,My PlayHome Hospital,221880320,USD,2.99,689,53,4.5,4.5,3.1.1,4+,Entertainment,43,5,18,1
+664425773,Canon PRINT Inkjet/SELPHY,25640960,USD,0.0,689,102,2.5,2.5,2.3.4,4+,Photo & Video,38,5,20,1
+505311207,Battlefield™ Companion,58883072,USD,0.0,689,338,2.5,2.5,3.0.4,12+,Social Networking,37,5,11,1
+589351740,H&M,27372544,USD,0.0,687,19,3.0,2.5,2.21.0,4+,Shopping,37,0,6,1
+1051638513,Gas Station Car Parking Simulator a Real Road Racing Park Game,249482240,USD,0.0,687,496,4.0,4.0,1.0.2,4+,Games,38,5,1,1
+463240522,HISTORY Here,23040000,USD,0.0,685,369,4.0,4.5,3.1,4+,Travel,38,0,1,1
+537452201,BrainHQ - Brain Training,72673280,USD,0.0,684,0,4.0,0.0,5.9,4+,Education,37,5,2,1
+693045097,Lost Echo,613933056,USD,2.99,684,87,4.5,4.0,1.9.12,12+,Games,40,5,11,1
+1072353174,Themeable,54550528,USD,1.99,684,684,3.0,3.0,1.0.1,4+,Utilities,37,0,1,1
+1117310816,Diamond Story: Jewelry Quest,107376640,USD,0.0,683,8,4.5,5.0,1.1.2,4+,Games,38,5,16,1
+1066416979,All Devices for WhatsApp - Messenger for iPad,30306304,USD,0.0,682,25,3.0,2.0,1.64,4+,Social Networking,24,2,32,1
+727466621,THE KING OF FIGHTERS '97,106971136,USD,2.99,681,560,4.5,4.5,1.1,12+,Games,43,5,2,1
+875273243,Lumo Deliveries,230297600,USD,0.0,679,17,3.0,3.5,1.5.0,4+,Games,37,4,1,1
+1127910488,Microsoft Pix Camera,131016704,USD,0.0,678,31,4.0,4.0,1.0.32,4+,Photo & Video,25,4,9,1
+395898626,土豆(短视频分享平台),88601600,USD,0.0,676,0,3.0,0.0,6.3.3,12+,Entertainment,37,0,1,1
+932315244,Stickman Ice Hockey,51140608,USD,0.0,676,390,4.0,4.0,1.4,4+,Games,40,5,1,1
+1138587244,PokeExplorer - Realtime Map for Pokemon GO,46682112,USD,0.0,672,33,4.0,3.5,1.0.7,4+,Entertainment,37,2,1,1
+1043003599,caRRage,369336320,USD,0.0,671,8,4.5,5.0,2.2,12+,Games,37,5,7,1
+834715612,Forgotten Memories: Alternate Realities,1361486848,USD,5.99,669,222,4.0,4.5,1.0.6,12+,Games,38,5,1,1
+1173990889,Mannequin Challenge,109705216,USD,0.0,668,87,3.0,3.0,1.4,9+,Games,37,4,1,1
+440948110,Kwai - Share your video moments,91466752,USD,0.0,668,4,4.5,5.0,4.99.6,17+,Photo & Video,38,0,11,1
+1112071930,"Kubo: A Samurai Quest ™ - Match, Collect, Battle!",191382528,USD,0.0,668,16,4.0,4.5,3.1.1,4+,Games,37,5,1,1
+1089193839,Super Slime Blitz – Gumball Endless Arcade Climber,338222080,USD,0.0,668,499,4.5,4.5,1.0.2,4+,Games,38,4,1,1
+674069291,Top Hat Lecture,88988672,USD,0.0,668,0,3.0,0.0,5.19.0,4+,Education,37,5,1,1
+1069786966,Blocky Soccer - Endless Arcade Runner,103757824,USD,0.0,667,667,4.0,4.0,1.1,4+,Games,38,5,1,1
+915861546,Project Life,181997568,USD,2.99,666,3,4.5,5.0,2.5,4+,Photo & Video,37,5,24,1
+509260769,iSleep Easy - Meditations for Restful Sleep,178581504,USD,3.99,664,70,4.5,4.5,6.23,4+,Health & Fitness,37,3,1,1
+366195670,The Photographer's Ephemeris,58463232,USD,8.99,663,5,5.0,4.0,3.14.1,4+,Photo & Video,37,5,1,1
+1085543061,Smash Slots,113942528,USD,0.0,663,192,4.5,4.5,1.5,12+,Games,37,5,1,1
+627879091,Sorcery!,170172416,USD,4.99,662,22,4.0,3.5,1.6.1,12+,Games,38,5,1,1
+490077681,Baby Monitor 3G,56885248,USD,3.99,658,23,4.5,4.0,4.7.0,4+,Lifestyle,37,5,16,1
+957471210,Disney Color and Play,193829888,USD,0.0,658,1,3.0,5.0,1.96,4+,Entertainment,37,5,1,1
+1106374233,"Tayasui Color, a relaxing coloring book for adults",127693824,USD,2.99,656,18,4.5,5.0,4.0,4+,Entertainment,37,4,14,1
+1018236462,boohoo.com,14284800,USD,0.0,655,9,4.5,2.0,6.1.1,4+,Shopping,37,5,1,1
+1073594113,Bridge Construction Simulator 3D a Real City Building Physics Sim,320579584,USD,0.0,653,569,4.0,4.0,1.1,4+,Games,38,5,1,1
+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
+972387337,Scrivener,13418496,USD,19.99,651,88,4.5,4.0,1.0.1,4+,Productivity,37,5,1,1
+1064785404,Mystic Castle - the Simplest & Best RPG and Adventure Game,73411584,USD,0.0,650,488,5.0,4.5,2.6.4,9+,Games,38,5,33,1
+1052123679,BARRIER X,63243264,USD,0.0,650,339,4.5,4.5,1.3,4+,Games,38,4,1,1
+914189520,The Complete Adventures of Pan (Books 1-7),2334249984,USD,27.99,649,39,4.5,4.5,7.4.1,4+,Book,37,5,1,1
+339462921,CatPaint,73332736,USD,0.99,649,11,4.0,4.0,3.5.1,4+,Photo & Video,37,5,1,1
+1013585593,_PRISM,400202752,USD,2.99,648,330,4.5,4.5,1.1,4+,Games,40,5,1,1
+1033746864,风行视频+ HD - 电影电视剧体育视频播放器,65872896,USD,0.0,648,11,4.5,4.0,2.0.24.2,17+,Entertainment,24,5,1,1
+1141118823,Gravity Trump,32374784,USD,0.0,647,35,4.0,4.5,1.0.1,4+,Games,37,5,1,1
+900404152,Extreme Landings Pro,966167552,USD,29.99,647,44,4.5,4.5,3.4.0,4+,Games,38,5,8,1
+1041808803,Beat Stomper,136069120,USD,1.99,646,48,5.0,4.5,0.4,4+,Games,40,5,1,1
+500108743,仙劍奇俠傳5 - 劍傲丹楓,258815519,USD,2.99,646,369,4.0,4.5,1.2.1,4+,Games,43,5,1,1
+443321291,CCW – Concealed Carry 50 State Guide,22264832,USD,1.99,644,45,5.0,4.5,3.3,12+,Reference,40,5,1,1
+1156121311,Toca Life: Farm,236893184,USD,2.99,643,330,4.5,4.5,1.0.1,4+,Education,38,5,18,1
+917229473,Warmlight - Manual Camera & Photo Editor,57647104,USD,4.99,643,50,4.0,4.5,2.1,4+,Photo & Video,37,5,16,1
+953426154,Be Focused Pro - Focus timer & Goal Tracker,45358080,USD,1.99,643,133,4.5,4.5,1.6,4+,Productivity,37,5,1,1
+550902799,Camera+ for iPad,62664704,USD,4.99,641,22,3.5,3.5,2,4+,Photo & Video,24,5,10,1
+1117844680,Endless Ducker,159752192,USD,0.0,639,306,4.0,4.5,1.0.2,4+,Games,38,5,1,1
+478396998,NCAA Sports,39018496,USD,0.0,636,11,2.0,1.5,3.0.9,4+,Sports,37,1,1,1
+957316969,Psych,38133760,USD,0.0,635,136,4.0,4.5,1.02,4+,Games,40,4,1,1
+1028464453,Strawberry Shortcake Candy Garden,232399872,USD,0.0,633,633,4.5,4.5,Update 1.1,4+,Entertainment,39,5,10,1
+552498441,"It's The Great Pumpkin, Charlie Brown",141408256,USD,5.99,632,0,4.0,0.0,1.4,4+,Book,37,5,1,1
+482380153,Santa's Naughty or Nice Scan-O-Matic Free,39937024,USD,0.0,632,74,3.5,3.5,3.8,4+,Entertainment,38,5,1,1
+950902520,Polaroid Print App - ZIP,85582848,USD,0.0,631,44,1.5,1.5,3.1,4+,Photo & Video,37,0,22,1
+888615473,LINE PokoPoko,287759360,USD,0.0,631,1,4.5,5.0,1.4.5,4+,Games,38,0,3,1
+941087958,Bike Unchained,545665024,USD,0.0,629,193,4.0,4.5,1.15,4+,Games,37,5,1,1
+1003996643,TexMoji,11371520,USD,1.99,628,33,2.0,1.5,2.2,4+,Utilities,37,0,1,1
+1114692553,TIME LOCKER - Shooter,55975936,USD,0.0,627,5,4.5,5.0,1.6.1,9+,Games,37,5,10,1
+958455860,CHAOS RINGS Ⅲ,1731159040,USD,19.99,627,47,4.0,5.0,1.1.1,12+,Games,40,5,2,1
+1063192467,Double Dog - Dare for money if you have the nerve,30467072,USD,4.99,627,49,4.0,4.0,1.13.0,17+,Games,37,0,1,1
+328011357,Wa Kingyo - Goldfish Pond,56397824,USD,0.99,626,44,4.0,5.0,2.0.3,4+,Entertainment,38,5,2,1
+430920838,Tikal,27049083,USD,2.99,626,435,4.5,4.5,1.2,4+,Games,47,5,1,1
+1148435076,Roofbot: Puzzler On The Roof,156247040,USD,2.99,625,589,4.5,4.5,1.1.1,4+,Games,37,5,11,1
+1019230398,Moodnotes - Thought Journal / Mood Diary,54482944,USD,3.99,625,154,5.0,5.0,2.2.1,12+,Health & Fitness,37,0,1,1
+427941017,YY- 小全民手机直播交友软件,165367808,USD,0.0,624,4,4.0,5.0,6.3.8,17+,Social Networking,37,0,2,1
+363360636,Ship Finder,22948864,USD,4.99,624,20,3.5,3.5,9.0.1,4+,Navigation,37,1,1,1
+510717503,KeyBank Mobile,32492544,USD,0.0,623,1,2.5,1.0,4.1.0,17+,Finance,37,0,1,1
+1093466319,"Girls PJ Party - Dress Up, Spa & Fun",253245440,USD,0.0,621,621,4.0,4.0,1.1,4+,Games,38,5,11,1
+432080204,Pocket Academy,192954368,USD,4.99,616,12,4.5,4.0,2.01,4+,Games,38,5,5,1
+1132158938,"Baby Boss - Care, Dress Up and Play",266678272,USD,0.0,616,267,4.5,4.5,1.5,4+,Games,38,5,11,1
+819197891,Don't Touch This - Secret Data Vault,40141824,USD,6.99,615,117,4.5,4.5,2.8,17+,Photo & Video,37,5,12,1
+679454835,VHS Camcorder,16485376,USD,2.99,613,38,4.0,4.0,1.2.4,4+,Photo & Video,37,4,1,1
+458318329,腾讯视频-欢乐颂2全网首播,112337920,USD,0.0,613,9,4.0,4.5,5.6.2,17+,Entertainment,38,0,1,1
+1164013670,Super Jabber Jump,146922496,USD,0.0,612,76,4.5,4.5,2.3.3006,4+,Games,37,5,1,1
+1088585714,ThemeOut,91664384,USD,0.0,612,612,2.5,2.5,1.0.1,4+,Utilities,37,0,1,1
+632344648,UE BOOM,27680768,USD,0.0,612,12,2.5,3.5,5.3,4+,Music,38,0,8,1
+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
+1041951266,Titan Brawl,248264704,USD,0.0,611,1,4.5,5.0,2.4.2,9+,Games,37,5,33,1
+1141018731,Baby Skins and Aphmau Skins and Boy Skins and Girl Skins For Minecraft PE,19434496,USD,0.0,610,359,4.5,4.5,1.1,4+,Lifestyle,37,4,1,1
+456726080,Pearson eText for Schools,21083136,USD,0.0,609,4,2.5,3.0,1.11,4+,Education,24,5,8,1
+504201783,The Fourth Dimension,9167872,USD,2.99,609,12,4.5,5.0,1.7,4+,Education,37,5,10,1
+646436754,Machines at War 3 RTS,191706112,USD,6.99,608,96,4.5,5.0,2.1,17+,Games,40,5,10,1
+1152267556,String Rush,42434560,USD,0.0,606,324,4.0,4.0,1.10,4+,Games,38,5,1,1
+1105426659,Joan Mad Run,58632192,USD,0.0,605,58,4.5,4.5,1.0.5,12+,Games,37,5,1,1
+985950986,Gun Master 3: Zombie Slayer,220948480,USD,0.0,604,527,4.5,4.5,1.0.6,17+,Games,38,5,1,1
+994556645,"Curious World: Games, Videos, Books for Children",186588160,USD,0.0,604,9,3.5,3.5,1.18,4+,Education,37,5,1,1
+937616953,Cloud Video Player Pro - Play Videos from Cloud,52418560,USD,2.99,602,70,3.5,4.0,2.5,17+,Photo & Video,40,5,54,1
+1073698593,LEGO® Jurassic World™,1016400896,USD,4.99,602,602,4.0,4.0,1.0,9+,Games,37,5,1,1
+982923857,GodFinger 2,117507072,USD,0.0,602,235,3.5,3.5,1.3.4,9+,Games,37,5,8,1
+700227648,Race The Sun,151481344,USD,4.99,602,106,4.5,4.5,1.02,4+,Games,25,5,1,1
+1171663655,BoycottTrump,7025664,USD,0.0,601,8,3.0,3.0,2.0.3,4+,Lifestyle,37,0,1,1
+1063637102,Choppa,95278080,USD,0.0,600,51,4.5,4.5,1.5.2,9+,Games,38,5,1,1
+1137330227,Flip That Bottle,105654272,USD,0.0,599,50,3.5,3.5,2.2,4+,Games,37,4,1,1
+968666409,Robocide,243791872,USD,0.0,599,180,4.5,4.5,1.16.3,9+,Games,38,5,8,1
+680258201,Photo Quilt - Auto Collage Maker,15210496,USD,0.0,599,236,4.5,4.5,1.5.1,4+,Photo & Video,37,0,1,1
+1118441024,Bloons Supermonkey 2,208455680,USD,0.99,599,68,4.5,4.5,1.3,9+,Games,37,5,18,1
+680581294,Rabbids Big Bang,199843840,USD,0.99,598,115,4.5,4.5,2.1.5,9+,Games,39,5,10,1
+494776019,中华万年历-2亿用户首选的日历软件,59154432,USD,0.0,598,1,5.0,5.0,6.8.9,12+,Utilities,40,0,3,1
+645797558,Hero Emblems,144809984,USD,3.99,597,289,4.5,4.5,1.06,12+,Games,40,5,7,1
+1058602106,Peter Panic,289495040,USD,0.0,597,72,4.0,4.0,1.2.1,9+,Games,37,4,1,1
+391071343,央视影音HD-海量央视内容高清直播,64325632,USD,0.0,596,0,2.5,0.0,6.1.55,4+,Entertainment,24,5,3,1
+544549986,McGraw-Hill K-12 ConnectED Mobile,26227712,USD,0.0,594,10,2.5,3.5,1.6.9,4+,Education,24,5,1,1
+598542901,Perfect Video - Video Editor & Movie Maker (Pro),20610048,USD,3.99,594,68,4.5,5.0,4.6.1,4+,Photo & Video,37,5,19,1
+1141365117,PokéFind - IV & CP Calculator and Map for Poké GO,139862016,USD,0.0,591,3,4.0,3.5,1.25,4+,Utilities,37,5,1,1
+373311252,TouchRetouch,27962368,USD,1.99,588,54,4.0,4.0,4.0.1,4+,Photo & Video,37,0,14,1
+1105390093,"""klocki""",97887232,USD,0.99,587,587,4.5,4.5,1.01,4+,Games,37,2,1,1
+1164468822,Shell by Bellabeat - Baby Heartbeat Listener,58326016,USD,0.0,587,14,3.0,1.5,1.13,4+,Lifestyle,25,0,1,1
+565355431,Ticket Scanner for Powerball & MegaMillions Pool,84973568,USD,0.0,581,0,3.5,0.0,5.7.6,12+,News,38,0,1,1
+649246860,"NOAA World Radar – Rain, Hurricanes & Weather",59233280,USD,2.99,581,8,4.0,5.0,3.2.3,4+,Weather,37,5,14,1
+477618130,Socrative Student,885760,USD,0.0,581,54,3.0,2.0,2.2.3,4+,Education,40,5,1,1
+1161136955,Extreme Trucks Simulator,474310656,USD,0.0,579,120,4.0,4.5,1.3.1,4+,Games,37,5,1,1
+908519492,Swift Playgrounds,254489600,USD,0.0,578,59,4.0,3.5,1.2,4+,Education,16,5,6,1
+1093833768,Candy Makeup - Sweet Salon Game for Girls,127670272,USD,0.0,575,110,4.0,4.5,1.6,4+,Games,38,5,11,1
+890479211,Bio Inc. Platinum - Biomedical Plague,104038400,USD,2.99,573,6,4.5,4.5,2.62,12+,Games,40,5,7,1
+1034091427,Goosebumps Night of Scares,345457664,USD,0.0,572,353,4.0,4.0,1.3,12+,Games,37,4,1,1
+813330182,Autumn Dynasty Warlords,240103424,USD,6.99,572,222,4.5,4.5,2.11,9+,Games,40,5,1,1
+988518358,Twin Shooter - Invaders,147472384,USD,0.0,572,74,4.5,4.0,1.5,4+,Games,40,5,10,1
+1079527277,Save Dan,515490816,USD,0.0,571,35,4.0,4.0,2.0,12+,Games,37,5,1,1
+582719476,"Instant Fitness : 600+ exercises, 100+ workouts, home, exercise workout trainer, 7 minute workout, on-the-go personal mobile fitness trainer by Fitness Buddy and Instant Heart Rate",80175104,USD,9.99,571,214,4.5,4.5,2.0,4+,Health & Fitness,38,0,1,1
+519530925,Visual Anatomy,215178240,USD,2.99,571,28,4.5,4.5,5.5,12+,Medical,37,5,4,1
+903418970,My Newborn Baby - Mommy & Baby Care,102180864,USD,0.0,570,10,3.5,4.0,1.8,4+,Games,38,5,11,1
+600626116,Papa's Burgeria To Go!,43646976,USD,0.99,570,5,4.5,4.0,1.1.2,4+,Games,37,0,16,1
+912320999,Tiny Archers,167745536,USD,0.0,568,13,4.0,3.5,1.7.0,12+,Games,38,5,1,1
+1126394027,Dictator: Emergence,149266432,USD,0.0,567,11,4.0,2.5,1.0.10,12+,Games,37,5,1,1
+616728264,Eyes - the horror game,103088128,USD,0.99,567,312,4.5,4.5,2.1,12+,Games,40,5,1,1
+904207373,Lines the Game,32642048,USD,2.99,563,39,4.5,4.5,1.0.3,4+,Games,43,5,1,1
+459313476,Tenuto,13062144,USD,3.99,562,0,5.0,0.0,3.0.3,4+,Music,37,5,1,1
+467923185,Loopy HD,26399744,USD,3.99,561,4,4.0,5.0,1.6.3,4+,Music,37,5,4,1
+965114347,Farming PRO 2015,142140416,USD,1.99,560,80,4.0,4.5,2.0,4+,Games,40,5,1,1
+655890150,"Screens - Remote Desktop, VNC, Screen Sharing",43640832,USD,19.99,559,15,4.0,4.5,4.4.1,4+,Productivity,37,5,11,1
+1046617847,Pull My Tongue,256558080,USD,0.99,559,172,4.0,4.0,1.3.2,9+,Games,40,5,1,1
+452176796,蘑菇街-网红直播搭配的购物特卖平台,144661504,USD,0.0,558,0,5.0,0.0,9.4.1,17+,Shopping,37,0,4,1
+1030792602,Word²,37148672,USD,1.99,556,202,4.5,4.5,1.1,4+,Games,38,5,1,1
+973056418,LiveMixtapes,63872000,USD,0.0,555,105,4.0,4.5,2.1,12+,Music,37,0,1,1
+411843682,iDarkroom,29369344,USD,0.99,554,1,4.5,4.0,2.6,4+,Photo & Video,37,0,31,1
+408854559,Hot Springs Story,183409664,USD,4.99,554,1,4.5,1.0,2.02,4+,Games,38,5,6,1
+1082965369,Vector 2,272344064,USD,0.0,554,521,4.5,4.5,1.0.7,9+,Games,37,5,1,1
+969961138,HoPiKo,84405248,USD,1.99,553,452,4.0,4.0,1.0.5,4+,Games,40,4,1,1
+1097094906,MagiMobile – Mighty Magiswords Collection App,149731328,USD,0.0,553,8,3.5,4.5,1.0.5,9+,Entertainment,37,5,1,1
+952694580,Keep - 移动健身教练 自由运动场,168207360,USD,0.0,550,2,4.5,3.5,4.1.0,17+,Health & Fitness,37,5,3,1
+423084029,美团 - 吃喝玩乐全都有,224955392,USD,0.0,549,2,4.5,5.0,8.1.0,4+,Lifestyle,37,5,2,1
+987962261,Google Cardboard,127627264,USD,0.0,546,137,4.0,3.5,1.2,4+,Entertainment,37,0,33,1
+982763237,Hyperburner,95036416,USD,2.99,545,545,4.5,4.5,1.0,9+,Games,37,5,1,1
+1145258456,Faily Rider,152148992,USD,0.0,544,55,4.0,4.0,1.07,9+,Games,38,4,18,1
+648228242,百度贴吧HD,106000384,USD,0.0,542,366,3.5,4.0,6.8.0,17+,Social Networking,24,3,1,1
+775737172,iA Writer,28087296,USD,3.99,541,20,4.0,4.5,4.0.5,4+,Productivity,37,5,3,1
+1088263864,Rising Warriors: War Games - The New Order,51471360,USD,0.0,541,73,3.5,2.0,2.2,9+,Games,37,5,1,1
+909254807,PDF Markup Ultimate - Annotate PDFs and Web Pages,108191744,USD,9.99,541,21,4.5,4.5,6.9.1,17+,Productivity,37,5,13,1
+1123795045,High 5 Vegas - Hit Slots Casino,157871104,USD,0.0,541,22,4.5,3.0,1.5.8,12+,Games,37,4,1,1
+429870273,DEATHSMILES,519446528,USD,9.99,540,48,4.5,5.0,1.0.19,12+,Games,43,0,2,1
+574641836,METAL SLUG 1,59441152,USD,2.99,540,240,4.0,4.0,1.1.1,9+,Games,43,5,2,1
+1123631069,Is-it Love ? Ryan (Visual Novel),146797568,USD,0.0,539,53,4.5,4.5,1.2.118,12+,Games,40,5,1,1
+1048559057,Rooms of Doom,569653248,USD,0.0,539,13,4.5,5.0,1.1.5,4+,Games,38,5,3,1
+957124541,Tsuro - The Game of the Path,104660992,USD,2.99,539,166,4.5,4.5,1.3,4+,Games,38,4,5,1
+977183254,Little Broken Robots,62683136,USD,0.0,539,28,4.5,4.5,1.05,4+,Games,37,5,1,1
+1126424472,Rings.,85477376,USD,0.0,538,8,4.5,3.5,1.3.2,4+,Games,40,5,1,1
+899247664,TestFlight,5558272,USD,0.0,538,41,2.5,2.0,1.5,4+,Utilities,37,1,1,1
+1135638235,SplitMoji,86930432,USD,0.99,537,536,5.0,5.0,1.2,12+,Utilities,37,0,1,1
+1174041307,Linda Brown: Interactive Story,162812928,USD,0.0,537,36,4.5,4.5,1.2.6,12+,Games,37,3,1,1
+640564761,Stop Motion Studio Pro,52312064,USD,4.99,537,2,4.5,5.0,8.3.1,4+,Photo & Video,37,5,10,1
+1118046725,City Maps for Minecraft PE - Best Maps for Minecraft Pocket Edition (MCPE),11083776,USD,1.99,536,536,3.5,3.5,1.0,4+,Entertainment,38,4,1,1
+741224931,Dr. Panda Bus Driver,173861888,USD,2.99,536,12,4.5,4.5,1.3,4+,Education,40,4,19,1
+924491991,Cesium Music Player,5883904,USD,1.99,536,24,4.5,4.0,3.8.7,4+,Music,37,0,10,1
+718082838,Toca Mini,533006336,USD,2.99,536,71,4.0,4.0,1.0.3,4+,Education,40,5,18,1
+1086644209,Loop Mania,67451904,USD,0.0,534,128,4.5,4.5,1.1.4,4+,Games,40,5,1,1
+314506629,SmartGo Player,22159360,USD,2.99,533,27,4.0,4.0,2.5.1,4+,Games,37,3,9,1
+1044374093,Halfpipe Hero - Retro Arcade Skateboarding,60072960,USD,0.0,532,64,4.5,4.5,1.1.1,4+,Games,40,5,1,1
+670133026,Clip Video Download Pro.,31154176,USD,6.99,530,526,4.0,4.0,1.4,17+,Photo & Video,43,5,28,1
+797157312,MarcoPolo Ocean,771670016,USD,0.0,529,51,4.5,5.0,3.0.4,4+,Education,38,5,8,1
+688983474,IQ Test - Pro Edition,66921472,USD,2.99,529,8,4.5,4.5,5.7,4+,Games,37,4,1,1
+1055708498,Multiplayer for Minecraft PE (Minecraft Online),39995392,USD,0.99,528,98,3.5,4.5,1.1.2,12+,Entertainment,37,2,1,1
+400971700,DirectVR Remote for DirecTV,7497728,USD,0.99,528,1,4.0,2.0,4.4.1,4+,Utilities,37,0,1,1
+430856616,True Red Eye Remover HD-Face Recovery,4511744,USD,0.99,528,379,4.0,4.0,2.9,4+,Photo & Video,40,0,1,1
+439638720,腾讯手机管家-拦截骚扰电话的QQ安全助手,60549120,USD,0.0,527,1,4.0,1.0,7.0,4+,Utilities,37,0,1,1
+1160692648,I Have A Pen,30351360,USD,0.0,527,92,4.5,4.5,1.5,4+,Games,38,5,1,1
+623193844,Dr. Panda Beauty Salon,154353664,USD,2.99,527,17,4.5,4.5,1.6,4+,Education,40,5,19,1
+1024522751,Beneath The Lighthouse,149087232,USD,0.0,526,37,4.0,4.5,1.1.5,9+,Games,40,5,1,1
+1048542880,War of Warship:Pacific War,109920256,USD,0.0,526,14,3.0,1.5,2.2.0,12+,Games,37,5,1,1
+593306620,Units Plus Converter - Convert Any Unit & Currency,6323200,USD,3.99,525,140,4.5,4.5,2.9,4+,Utilities,38,5,1,1
+1076700027,Stirfry Stunts – We Bare Bears Cooking Game Starring Chef Ice Bear,366301184,USD,0.0,525,234,4.0,4.0,1.2.0,4+,Games,38,5,1,1
+1072737282,Space Marshals 2,590484480,USD,4.99,524,76,4.5,4.5,1.2.3,12+,Games,25,5,10,1
+1062647883,Tesla Tubes: Solve our Logic Games & Brain Puzzles,101735424,USD,0.0,524,1,4.5,2.0,1.3.7,4+,Games,38,5,12,1
+1086647459,Independence Day Resurgence: Battle Heroes,275680256,USD,0.0,523,22,4.0,3.5,1.12,9+,Games,37,5,1,1
+553807264,Cymera - Photo & Beauty Editor & Collage,123231232,USD,0.0,523,0,3.0,0.0,3.3.1,4+,Photo & Video,38,0,13,1
+1057172667,Loop Taxi,73382912,USD,0.0,522,513,4.5,4.5,1.2,4+,Games,38,5,1,1
+1124395796,All Star Quarterback 17 - Football Lifestyle Sim,110787584,USD,0.0,521,131,4.5,4.5,1.4,12+,Games,37,5,1,1
+1145460364,Boo - The World's Cutest Dog Game!,236668928,USD,0.0,521,136,4.5,4.5,1.3,4+,Games,38,5,11,1
+650684932,OBD Fusion - OBD2 vehicle scan tool & diagnostics,78813184,USD,9.99,521,35,4.0,4.5,4.0.1,4+,Travel,37,5,1,1
+807411101,"Baby Food Fair - Make, Eat, Play - Have Fun!",83722240,USD,0.0,520,51,3.5,4.0,1.8,4+,Games,40,5,12,1
+973324681,Hallmark eCards,46342144,USD,0.0,520,8,4.0,2.0,1.5.3,4+,Lifestyle,37,5,1,1
+1100094604,Magic Legion - Age of Heroes,238582784,USD,0.0,517,8,4.5,4.5,2.06,12+,Games,38,5,9,1
+997446291,PAC-MAN Championship Edition DX,126681088,USD,4.99,517,175,4.5,4.5,1.0.1,9+,Games,38,5,10,1
+1086354043,Flappy Bird : original version !,7298048,USD,0.0,516,516,4.5,4.5,1.1,4+,Games,38,3,1,1
+634013256,Transport Tycoon,384600064,USD,6.99,516,8,4.5,4.5,1.3.4,4+,Games,40,5,5,1
+975683986,Door Kickers,1017208832,USD,4.99,515,267,5.0,5.0,1.0.5,12+,Games,24,5,1,1
+937166097,The Survival Games 2 : Mini Game With Worldwide Multiplayer,248512512,USD,0.99,514,84,3.5,4.0,1.6,12+,Games,43,5,1,1
+726895069,FACIE,35204096,USD,0.0,514,3,3.5,4.5,3.4,4+,Photo & Video,37,5,14,1
+943837049,Around The World in 80 Days - Hidden Object Games,97043456,USD,1.99,513,28,4.5,4.0,3.0,4+,Games,38,5,11,1
+1069729519,Live Wallpapers for iPhone 6s and 6s Plus,2671616,USD,0.0,513,224,4.0,4.0,1.3,4+,Lifestyle,37,0,1,1
+414002091,WordFoto,5800960,USD,1.99,513,10,4.0,3.5,1.1.1,4+,Photo & Video,38,5,1,1
+901500107,"Smart Baby Touch HD - Amazing sounds in toddler flashcards of animals, vehicles, musical instruments and much more",150765568,USD,2.99,512,236,4.5,4.5,2.5,4+,Education,40,5,2,1
+343555245,DB Navigator,84791296,USD,0.0,512,6,3.5,5.0,17.04.00,4+,Travel,38,0,2,1
+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
+681942253,Talisman,73767936,USD,1.99,511,9,4.0,4.0,10.5,4+,Games,40,5,6,1
+1057870288,Defend the Planet,132108288,USD,0.0,510,66,4.0,4.0,1.34,4+,Games,38,5,13,1
+980274086,Lost Within,1196982272,USD,3.99,510,510,4.5,4.5,1.0,12+,Games,37,4,9,1
+735752897,Beat the Boss 3 (17+),344064000,USD,0.99,507,90,4.5,4.0,2.0.0,17+,Games,40,5,15,1
+1123959760,Amusement Park Tour,94867456,USD,0.0,506,4,4.5,4.5,1.6,4+,Games,38,5,16,1
+1161194581,Fit In The Hole,138645504,USD,0.0,506,246,4.0,4.0,1.1,4+,Games,38,5,1,1
+984451115,Sky Charms,183284736,USD,0.0,505,78,4.5,4.5,1.8.0,4+,Games,38,5,11,1
+923772792,Sentinels of the Multiverse,913693696,USD,6.99,505,26,4.5,4.5,2.4,12+,Games,37,5,1,1
+566286915,Colin McRae Rally,822431744,USD,2.99,504,171,3.5,4.0,1.11.4,4+,Games,40,5,1,1
+868897264,Pink Pong,17800192,USD,0.0,504,0,3.5,0.0,2.5,4+,Games,37,3,1,1
+898611505,Fox Simulator,79949824,USD,1.99,503,503,3.5,3.5,1.0,9+,Games,43,5,1,1
+783960953,Shadow Blade,606646272,USD,1.99,503,37,4.5,4.5,1.5.2,12+,Games,43,5,1,1
+687421118,buddhify - modern mindfulness for busy lives,285338624,USD,4.99,501,12,4.5,4.0,2.6.9,4+,Health & Fitness,37,4,1,1
+428970841,Virtual Villagers 4: The Tree of Life,36686604,USD,0.99,500,479,4.0,4.0,1.0.1,9+,Games,47,0,1,1
+1129553203,Chat for Pokemon Go - GoChat,18925568,USD,0.0,500,500,2.0,2.0,1.0,4+,Social Networking,37,0,1,1
+1036723978,Voice Translator with Offline Dictionary Pro,103895040,USD,13.99,499,126,4.5,4.5,2.2,4+,Reference,37,0,11,1
+950335311,Ulysses,97912832,USD,24.99,498,29,4.5,5.0,2.8.2,4+,Productivity,37,5,7,1
+1073766982,CLUE Bingo: Valentine’s Day,106405888,USD,0.0,497,497,4.5,4.5,1.8.3,12+,Games,43,5,1,1
+1005098334,Human Resource Machine,68730880,USD,4.99,497,112,4.5,4.5,1.0.6,9+,Games,37,5,16,1
+1032451280,The Blacklist: Conspiracy,101144576,USD,0.0,496,242,4.0,4.0,1.1.0,12+,Games,37,5,15,1
+916215494,VOX: FLAC Music Player with MP3 & Equalizer,73674752,USD,3.99,495,13,4.0,4.0,2.1.10,4+,Music,37,0,5,1
+1073992168,Pro Series Drag Racing,433164288,USD,0.0,495,32,3.5,3.5,1.71,12+,Games,40,4,1,1
+1147297267,Don't Starve: Shipwrecked,633698304,USD,4.99,495,55,3.5,3.5,1.5,9+,Games,25,5,1,1
+950574221,Deck Heroes: Legacy,112683008,USD,0.0,494,0,4.0,0.0,10.8.0,17+,Games,40,5,1,1
+1044535426,Mobike - Dockless Bike Share,93101056,USD,0.0,494,11,4.5,4.5,5.0.0,4+,Travel,37,0,3,1
+557121061,MetaMoJi Note - note taking and PDF annotation app,103659520,USD,7.99,493,2,4.0,4.5,3.9.3,4+,Productivity,38,5,13,1
+1056681903,djay Pro,293967872,USD,19.99,493,95,4.5,4.5,1.0.6,4+,Music,24,5,7,1
+775201158,MiFlight™ – Airport security line wait times at checkpoints for domestic and international travelers,40896512,USD,0.0,493,76,4.5,2.0,1.966,4+,Travel,40,0,1,1
+977909424,Red Ball UP! - Bounce Dash & Dodge Spikes,18182144,USD,0.0,493,25,3.5,3.0,1.8,4+,Games,40,5,1,1
+818779127,TestNav,4448256,USD,0.0,491,122,1.5,1.5,1.5.1,4+,Education,24,4,2,1
+891450541,PAW Patrol Rescue Run HD,452648960,USD,6.99,491,23,3.0,2.5,3.1,4+,Education,24,5,1,1
+1066784117,Kickerinho World,198001664,USD,0.0,490,24,4.0,4.0,1.3.5,4+,Games,37,5,11,1
+1002417141,Project Color™ by The Home Depot,47817728,USD,0.0,490,19,2.5,2.0,1.1.43,4+,Lifestyle,37,2,1,1
+669287954,School Lunch Food!,87296000,USD,0.0,488,5,3.5,4.0,2.0,12+,Games,38,5,1,1
+1158640510,High Risers,35659776,USD,0.0,486,49,4.5,4.5,4.0,4+,Games,37,5,13,1
+383718755,Decide Now!,3462144,USD,0.99,486,25,4.5,4.0,2.0.1,4+,Entertainment,37,5,9,1
+1018142904,Color•多彩手帐,81757184,USD,0.0,485,18,5.0,4.5,3.2.9,9+,Lifestyle,37,5,10,1
+941956069,Sprinkle of Jesus,29444096,USD,0.0,485,34,3.5,2.0,7.4.3,17+,Lifestyle,37,3,1,1
+901999406,The LEGO® Movie Video Game,1177923584,USD,4.99,484,368,4.0,4.0,1.5,4+,Games,38,5,1,1
+959304067,Falcon Simulator,170082304,USD,0.99,482,482,4.5,4.5,1.0,9+,Games,40,5,1,1
+580002794,Followers + EA - Analytics for Instagram,19306496,USD,0.99,482,24,2.5,1.0,3.0.2,12+,Social Networking,25,3,29,1
+882931712,XtraMath,74678272,USD,4.99,482,37,3.0,3.0,3.19.10,4+,Education,37,5,10,1
+760295036,Weaphones: Firearms Simulator Volume 2,35201024,USD,2.99,481,264,4.5,4.5,1.3.0,12+,Games,43,5,16,1
+507161324,饿了么外卖-大牌美食,折扣热卖,82781184,USD,0.0,481,1,4.5,5.0,7.9,17+,Food & Drink,37,5,1,1
+948805709,SpongeBob: Sponge on the Run,171291648,USD,3.99,481,2,4.0,2.5,1.2.1,4+,Games,38,5,1,1
+1024951378,Punch Club,323284992,USD,4.99,480,30,4.0,4.0,1.30,12+,Games,40,1,1,1
+1123652342,Jurassic GO - Dinosaur Snap Adventures,331335680,USD,3.99,477,315,5.0,5.0,1.0.1,4+,Games,38,5,11,1
+1055677337,Firefox Focus: The privacy browser,15081472,USD,0.0,477,20,4.0,4.0,3.2,17+,Utilities,25,4,41,1
+659448144,Sago Mini Pet Cafe,79953920,USD,2.99,477,6,4.5,3.5,1.4,4+,Education,38,5,16,1
+950130103,Panther Simulator,138006528,USD,0.99,476,476,4.0,4.0,1.0,9+,Games,40,5,1,1
+1138121520,Skylanders™ Creator,794261504,USD,0.0,475,130,4.0,3.5,1.2,9+,Games,37,5,1,1
+508558296,Cooking Academy (Full),43375753,USD,1.99,475,475,4.5,4.5,1.0.1,4+,Games,43,0,1,1
+1070709625,Dark Sword,176114688,USD,0.0,475,6,4.5,4.5,1.8.0,12+,Games,37,5,8,1
+1133749572,Wave,111087616,USD,0.0,474,474,4.5,4.5,1.0,4+,Games,38,5,1,1
+551817261,Starfall Learn to Read,107464704,USD,0.0,474,3,4.0,5.0,3.11,4+,Education,40,5,1,1
+871458763,Stay In The Line Pro,6758400,USD,0.99,474,107,4.0,4.5,1.0.3,4+,Games,40,0,1,1
+1055274701,Soda World - Your Soda Inc,123640832,USD,0.0,473,37,4.5,5.0,26.0,4+,Games,37,5,1,1
+1105918031,Stickman Soccer 2016,202745856,USD,0.0,473,217,4.0,4.0,1.4.2,4+,Games,38,5,1,1
+1093131935,Incredibox,66006016,USD,3.99,472,105,4.5,5.0,2.0,4+,Games,37,5,5,1
+331177703,Letter Quiz - alphabet tracing for kids,31845376,USD,1.99,472,0,4.0,0.0,2.4,4+,Games,37,5,1,1
+1085432257,Bernie Sandwiches - Run For The White House,46030848,USD,0.0,472,66,4.5,4.0,1.2.1,4+,Games,40,5,1,1
+808794344,The Olympics - Official App for the Olympic Games,11540480,USD,0.0,470,0,1.5,0.0,2.1.3,4+,Sports,38,5,2,1
+1069786972,Blocky Basketball - Endless Arcade Dunker,101370880,USD,0.0,470,284,4.5,4.5,1.2,4+,Games,37,5,1,1
+1063149922,Xmas Swipe - Christmas Match 3 Puzzle,68613120,USD,0.0,469,0,4.5,0.0,1.2,4+,Games,38,5,1,1
+1072527403,Nasty Goats – a Game Shakers App,284321792,USD,0.0,468,123,4.0,4.0,1.2,4+,Games,38,5,1,1
+869329921,WorldCraft : 3D Build & Craft,185914368,USD,0.99,468,50,4.0,4.0,2.4.7,4+,Games,43,5,1,1
+1129966892,Age of Heroes: Conquest,65469440,USD,0.0,468,1,4.5,5.0,1.0.833,12+,Games,37,5,1,1
+409395695,"My Score Plus Weight Loss, Food & Exercise Tracker",60144640,USD,0.0,467,1,4.0,5.0,4.2.1,4+,Health & Fitness,37,0,1,1
+891528055,MTN,252547072,USD,0.99,466,97,3.0,3.0,1.2,4+,Games,40,4,1,1
+892955084,Mafia Mystery,24090624,USD,0.0,465,24,4.0,4.5,2.1.2,4+,Games,37,3,1,1
+848515450,ALONE...,50423808,USD,0.99,465,3,4.5,5.0,1.0.10,4+,Games,37,5,1,1
+982102809,GreenVPN - Free & fast VPN with unlimited traffic,16384000,USD,0.0,464,54,4.5,4.5,5.3.1,4+,Business,40,5,2,1
+1076297448,IAmNaughty – Dating App to Meet New People Online,40430592,USD,0.0,463,5,3.0,2.0,2.3,17+,Social Networking,38,0,17,1
+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
+1140586546,*Solitaire*,124961792,USD,0.0,460,10,4.5,4.5,2.3.1,4+,Games,37,5,1,1
+1029588869,Brothers: A Tale of Two Sons,1925599232,USD,2.99,460,128,3.5,4.0,1.7,12+,Games,33,5,9,1
+1138484918,Mr. Robot:1.51exfiltrati0n.ipa,66592768,USD,2.99,459,82,3.5,3.0,1.0.6,17+,Games,40,5,1,1
+1034773723,Power Hover,182592512,USD,3.99,458,23,4.5,4.5,1.7.0,4+,Games,38,5,9,1
+433156786,Qzone HD,30027776,USD,0.0,458,26,3.5,3.0,4.1.4.1,4+,Social Networking,26,5,2,1
+1101445404,Starbucks Keyboard,36112384,USD,0.0,457,8,3.0,3.0,1.3,4+,Food & Drink,37,0,1,1
+523063187,宝宝树孕育-火爆的备孕怀孕育儿社区,120731648,USD,0.0,456,1,4.5,5.0,7.3.0,17+,Health & Fitness,38,0,2,1
+1106515427,Go Up,119754752,USD,0.0,456,394,4.0,4.0,1.0.2,4+,Games,40,5,1,1
+899441948,Dr. Panda & Toto's Treehouse,163213312,USD,3.99,455,274,4.5,4.5,1.8,4+,Entertainment,40,5,21,1
+1074403804,Real Bouncy Basketball,59183104,USD,0.0,455,429,4.0,4.0,1.1,4+,Games,38,5,1,1
+1017112774,Battle Golf,48627712,USD,0.0,455,27,4.0,3.5,2.1.1,9+,Games,37,5,1,1
+989330818,iMaschine 2,508655616,USD,9.99,454,63,4.0,3.5,2.2.0,4+,Music,37,5,1,1
+1011776388,Give It Up! 2,165923840,USD,0.0,453,1,4.0,5.0,1.5.8,4+,Games,37,5,8,1
+1061909513,Top Model - Next Fashion Star,131962880,USD,0.0,453,154,4.0,4.5,1.3,4+,Games,38,5,11,1
+1132662330,MUTANT CREATURES MODS for Minecraft PC - Best Pocket Wiki Edition & Installation Tools,86775808,USD,0.0,452,452,4.0,4.0,1.0,4+,Entertainment,37,5,1,1
+635819133,Castle Raid 2,346927104,USD,2.99,452,340,4.5,4.5,1.1,9+,Games,40,5,1,1
+965096605,Legend of Grimrock,1215169536,USD,4.99,452,211,4.5,4.5,1.1.3,9+,Games,38,5,1,1
+1081690522,ThemeKit,97818624,USD,1.99,452,452,3.5,3.5,1.0,4+,Utilities,37,0,1,1
+658426204,Mickey Mouse Clubhouse - Color & Play,313371648,USD,2.99,452,40,4.0,4.0,2.3,4+,Entertainment,38,5,3,1
+1006408029,Youtubers Life - Gaming Channel,910734336,USD,8.99,451,46,4.0,4.0,1.2.6,4+,Games,37,5,1,1
+1056672891,Fallen London,214480896,USD,0.0,451,37,3.5,2.5,1.11.1430,12+,Games,37,5,1,1
+909110675,Dr. Seuss Treasury — 50 best kids books,100943872,USD,0.0,451,31,4.5,4.5,1.8.3,4+,Book,37,4,1,1
+1097727390,VEHICLES & WEAPONS MODS for Minecraft Pc Guide,24669184,USD,1.99,450,15,4.0,2.5,1.05,12+,Entertainment,37,2,26,1
+1055376602,Last Horizon,88514560,USD,2.99,450,115,4.0,4.0,1.2.0,9+,Games,43,5,1,1
+1105999795,Splashy Cats: Endless Zigzag Arcade Water Game,246411264,USD,0.0,450,13,4.5,5.0,1.4,9+,Games,37,5,1,1
+905729701,Jurassic Life: Velociraptor Dinosaur Simulator,92622848,USD,0.99,450,401,4.5,4.5,1.1,9+,Games,43,5,1,1
+797809194,TMNT: Brothers Unite,270014464,USD,2.99,449,0,4.0,0.0,1.0.3,9+,Games,40,5,1,1
+1005468883,Sleep Pulse 2 Motion - The Sleep Tracker for Watch,15470592,USD,3.99,448,11,2.0,2.0,2.07,4+,Health & Fitness,13,0,1,1
+1029033692,Pastry Picnic,160301056,USD,0.0,447,153,4.5,4.5,1.0.6,4+,Games,38,5,6,1
+1079321578,"I, Viking",506650624,USD,0.0,447,1,4.5,5.0,1.10.1,12+,Games,37,5,7,1
+1073129594,Pumped BMX 3,161188864,USD,3.99,447,202,4.5,4.5,1.0.4,4+,Games,37,5,6,1
+973113361,Rummikub®,168663040,USD,2.99,447,116,3.0,1.5,3.1.27,4+,Games,38,5,1,1
+1145738671,Eggggg - The Platform Puker,366030848,USD,2.99,446,323,4.5,4.5,1.5.3,9+,Games,37,5,13,1
+950593464,Dr. Panda's Ice Cream Truck,205928448,USD,1.99,445,294,4.0,4.0,1.33,4+,Education,40,4,20,1
+599456380,Sleep Meister - Sleep Cycle Alarm Lite,23047168,USD,0.0,445,12,4.5,5.0,1.13.24,4+,Health & Fitness,37,0,2,1
+971215921,Splendor™,130527232,USD,2.99,444,4,4.0,2.5,2.1.2,4+,Games,38,5,3,1
+990692830,ZAGA,307658752,USD,0.0,444,167,4.5,4.5,1.2,4+,Games,40,4,1,1
+881404173,Hoopa City,246142976,USD,2.99,444,26,4.5,4.5,2.3,4+,Education,40,5,5,1
+811397653,You Must Build A Boat,98627584,USD,2.99,444,194,4.0,4.0,1.2.1769,4+,Games,40,5,1,1
+1087784913,Disco Dave,93434880,USD,0.0,444,9,4.5,4.0,1.5.0,4+,Games,37,5,1,1
+537280156,Raiden Legacy,177562624,USD,4.99,443,12,4.5,4.0,1.8,9+,Games,37,5,1,1
+950519698,VivaVideo PRO Best Video Editor & Movie Maker HD,135152640,USD,2.99,442,42,4.5,5.0,5.8.0,4+,Photo & Video,37,0,19,1
+910513149,全民K歌,119202816,USD,0.0,441,10,4.5,4.5,3.9.5,12+,Entertainment,38,5,3,1
+555208351,Baby Rattle with Child Lock,22364160,USD,1.99,441,402,4.5,4.5,1.5.3,4+,Games,40,5,14,1
+1087266454,Move the Match - Matchstick Puzzles for Free,35869696,USD,0.0,441,38,4.0,4.5,1.1.1,4+,Games,37,5,10,1
+1061009889,Ulterior,20283392,USD,0.0,441,124,3.5,4.0,1.2.0,4+,Games,37,5,1,1
+913545185,Just Dance Controller,183842816,USD,0.0,440,33,2.5,2.5,3.2.5,4+,Games,38,0,15,1
+600093661,Speakaboos Reading App: Stories & Songs for Kids,76558336,USD,0.0,440,23,4.0,4.0,4.4.0,4+,Education,38,5,1,1
+1061143997,Super Duper Punch,138056704,USD,0.0,439,29,4.0,4.0,1.1.1,9+,Games,38,5,11,1
+962973848,Moji™,28156928,USD,0.0,439,89,2.5,3.0,1.9.4,17+,Entertainment,37,0,1,1
+961662290,Lords & Castles - Medieval War Strategy MMO Games,251610112,USD,0.0,439,4,4.0,3.5,1.59,12+,Games,38,5,10,1
+981035758,Neon Chrome,206268416,USD,9.99,439,121,5.0,5.0,1.0.11,12+,Games,37,5,1,1
+740602894,Detective Grimoire,168226816,USD,1.99,439,382,4.5,4.5,1.0.2,9+,Games,43,5,1,1
+766695512,懂球帝 - 足球迷必备神器,77705216,USD,0.0,439,2,4.5,4.5,5.6,12+,Sports,38,0,8,1
+344065205,The Font Game,5415000,USD,1.99,438,295,4.5,4.5,2.1,4+,Games,45,0,1,1
+648998642,Pan Book 1: The Fearless Beribolt,915262464,USD,5.99,438,3,4.5,4.5,5.4.1,4+,Book,37,5,1,1
+1052065651,Offroad 4x4 Truck Trials Parking Simulator a Real Car Stunt Driving Racing Sim,322198528,USD,0.0,438,438,4.0,4.0,1.0,4+,Games,38,5,1,1
+508401605,360云盘,81857536,USD,0.0,437,0,4.5,0.0,7.0.3,4+,Productivity,37,0,2,1
+895761422,LINE Bubble 2,119820288,USD,0.0,436,3,4.5,4.5,1.13.1,4+,Games,38,5,5,1
+973901066,Princess Fairy Rush - Pony Rainbow Adventure,185982976,USD,0.0,435,435,4.5,4.5,1.0,4+,Games,40,5,11,1
+1059634715,VyStar Mobile Banking for iPhone,27553792,USD,0.0,434,114,1.5,1.5,5.0.34,4+,Finance,43,0,1,1
+888382460,College Lacrosse 2014,128839680,USD,3.99,432,0,4.0,0.0,1.2,4+,Games,38,4,1,1
+1078573759,Dream Defense,237266944,USD,0.0,432,1,4.5,5.0,1.8,12+,Games,37,5,1,1
+919097064,Toca Boo,216041472,USD,2.99,431,82,4.0,4.0,1.0.4,4+,Education,39,5,18,1
+970202342,Solitairica,207793152,USD,3.99,431,46,4.5,4.5,1.0.16,9+,Games,37,5,1,1
+613980069,Face Swap and Copy Free – Switch & Fusion Faces in a Photo,11411456,USD,0.0,431,326,4.0,5.0,1.3,4+,Catalogs,38,5,1,1
+1123042939,Javelin Masters 3,134029312,USD,0.0,430,16,4.5,4.5,1.6.0,4+,Games,38,5,11,1
+415069562,Tasty Planet,22515712,USD,2.99,430,35,4.5,4.5,1.6,9+,Games,43,0,1,1
+965000875,OK K.O.! Lakewood Plaza Turbo,1614744576,USD,0.0,430,41,4.5,4.5,1.3.0,9+,Games,37,5,7,1
+1031406492,Train Driver Journey 4 - Introduction to Steam,705732608,USD,0.99,429,429,4.5,4.5,1.0.0,4+,Games,38,5,1,1
+1010587367,Stickman Football,47736832,USD,0.0,429,0,4.0,0.0,1.4,4+,Games,40,5,1,1
+819627009,Micromedex Drug Reference Essentials,5693440,USD,2.99,428,37,1.5,2.5,1.77.0,12+,Medical,40,3,1,1
+529092160,今日头条 - 热点新闻资讯、娱乐视频,108229632,USD,0.0,428,0,4.5,0.0,6.1.5,17+,News,38,4,2,1
+822701037,Sometimes You Die,27910144,USD,1.99,428,88,4.0,4.5,1.31,12+,Games,40,3,2,1
+1123078102,NBC Sports Scores,61116416,USD,0.0,428,3,2.0,4.5,2.3,4+,Sports,37,5,1,1
+730919094,Double Dragon Trilogy,133456896,USD,2.99,427,73,4.0,4.0,1.2,12+,Games,39,5,2,1
+838848566,Zenly - Locate your friends in realtime,126879744,USD,0.0,427,0,4.0,0.0,3.1.0,4+,Social Networking,37,0,23,1
+1097469600,Beyond 14,99192832,USD,0.0,426,29,4.5,5.0,1.1.2,4+,Games,38,5,6,1
+518966501,天猫-购物,211127296,USD,0.0,426,14,4.5,5.0,6.0.0,17+,Shopping,37,0,4,1
+1003201868,Fancy Makeup Shop - Brush & Blush,106096640,USD,0.0,425,12,4.0,4.5,1.4,4+,Games,38,5,11,1
+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
+749109884,Pimp Your Sound,59085824,USD,1.99,425,126,4.0,4.0,2.6,4+,Music,38,5,12,1
+634885478,The Inner World,2213945344,USD,2.99,425,316,4.5,4.5,1.3,4+,Games,40,5,1,1
+955102484,Unblue,3767296,USD,2.99,424,2,1.5,4.5,1.5.8,17+,Productivity,37,2,2,1
+1117365978,LEGO® City My City 2,490951680,USD,0.0,424,99,3.5,3.5,17.0.631,4+,Games,37,5,19,1
+946477821,Evoland,72448000,USD,4.99,424,20,4.0,4.5,1.3.1,9+,Games,40,5,8,1
+1020473684,VERSUS: The Lost Ones,41671680,USD,3.99,423,120,5.0,5.0,1.0.5,12+,Games,38,5,1,1
+762630884,"Blokus™ – Attack, Block & Defend!",108665856,USD,1.99,423,36,3.5,3.0,1.2.0,4+,Games,37,5,31,1
+1102810225,FURBY CONNECT World,270409728,USD,0.0,422,313,2.5,2.5,1.4.3,4+,Games,37,5,2,1
+1058786785,Beat Racer,124008448,USD,0.0,422,1,4.5,4.0,1.5.1,4+,Games,38,5,13,1
+876291194,Photo Editing Effects & Collage Maker - Effectshop,56615936,USD,0.0,422,3,4.5,4.5,4.0.1,4+,Photo & Video,37,5,5,1
+1098006458,Flying Police Car Driving Simulator Free: Criminal Craft Chase,70970368,USD,0.0,422,422,4.0,4.0,1.0,9+,Games,40,4,1,1
+1064459184,Plane Flying Parking Sim a Real Airplane Driving Test Run Simulator Racing Games,299873280,USD,0.0,421,421,4.5,4.5,1.0.1,4+,Games,38,5,1,1
+589779009,METAL SLUG 2,83660800,USD,2.99,421,174,4.5,4.5,1.0.2,9+,Games,43,5,2,1
+1121782467,Samorost 3,1329823744,USD,4.99,421,51,4.0,4.0,1.2,9+,Games,37,5,16,1
+1156406002,Water Bottle Flip Challenge : Endless Diving 2K16,40321024,USD,0.0,421,421,4.5,4.5,1.0,4+,Games,40,2,1,1
+1077150310,League of Legends Friends,97852416,USD,0.0,420,15,3.5,3.5,1.3.7,4+,Social Networking,37,0,21,1
+911201894,DRAGON QUEST,27130880,USD,2.99,419,16,4.5,5.0,1.0.4,9+,Games,40,5,3,1
+896890211,Remove Caption for Snapchat* Screenshots,41888768,USD,3.99,418,46,3.0,4.0,3.1.3,4+,Social Networking,37,0,1,1
+604376012,Little Inferno,48181248,USD,2.99,418,52,4.0,4.5,1.33,12+,Games,39,0,6,1
+635206028,沪江开心词场-英语、日语、韩语学习助手,129157120,USD,0.0,417,8,4.5,5.0,6.3.1,4+,Education,37,5,24,1
+933471941,Griffin Simulator,105254912,USD,0.99,417,417,4.0,4.0,1.0,9+,Games,43,5,1,1
+519781433,Burrito Bison,58088448,USD,0.99,416,7,4.0,3.5,1.4,12+,Games,37,5,1,1
+1142334232,DK Live – Fantasy Sports Play by Play and News,81046528,USD,0.0,416,3,4.5,2.0,1.5.4,17+,Sports,37,0,1,1
+635080617,"Casino X - Free Slot Machines, Poker, Blackjack",74799104,USD,0.0,416,11,4.0,4.5,1.98,12+,Games,37,0,18,1
+834246564,Hairy Face Salon - Messy Shave Makeover,78550016,USD,0.0,416,4,2.5,3.0,1.7,4+,Games,38,4,11,1
+1067848964,Slingshot Rush,130173952,USD,0.0,416,140,4.0,4.0,1.1,4+,Games,38,5,22,1
+442378070,Book Creator for iPad,86345728,USD,4.99,415,2,4.0,3.0,5.1.1,4+,Education,24,5,11,1
+1150901618,splix.io!,70096896,USD,0.0,415,116,3.0,2.5,1.5,4+,Games,40,5,1,1
+937289819,Pic-it Collage - Photo Collage Maker and Editor,36184064,USD,0.0,415,72,4.5,4.5,2.21,4+,Photo & Video,38,0,26,1
+846073598,WordNerd - The picture puzzle game for word nerds,161055744,USD,0.0,414,36,4.5,3.5,1.74,4+,Games,38,5,1,1
+1115848946,DINOSAUR MOD FOR MINECRAFT PC EDITION - MODS POCKET GUIDE,27295744,USD,1.99,413,406,4.0,4.0,1.1,4+,Reference,38,4,1,1
+555641008,Draw a Stickman: EPIC,72376320,USD,1.99,413,42,4.5,4.5,1.4.4,9+,Games,38,0,1,1
+1090577736,Riptide GP: Renegade,107640832,USD,2.99,412,109,4.5,4.5,1.1.0,9+,Games,37,5,1,1
+643857704,Walk for a Dog,63271936,USD,0.0,412,22,3.0,3.5,3.3.0,4+,Health & Fitness,23,0,1,1
+922380267,Space Age: A Cosmic Adventure,85868544,USD,1.99,412,50,4.0,4.0,1.1.5,9+,Games,40,5,1,1
+891280237,"CollageKing pro - 2 in one (Two applications in one) create Photo and Video collage frame for instagram, vine",51412992,USD,1.99,412,393,4.0,4.0,1.1,4+,Photo & Video,40,5,31,1
+601137830,"SFind Premium Search for Spotify, YouTube & iTunes",8078336,USD,2.99,411,11,3.0,4.5,1.7,4+,Entertainment,40,2,15,1
+1104415942,UNCHARTED: Fortune Hunter™,454384640,USD,0.0,411,66,4.5,4.5,1.2.2,12+,Games,37,5,10,1
+298127110,ProPresenter Remote,46922752,USD,4.99,410,7,3.0,2.5,4.8.1,4+,Utilities,37,5,1,1
+840469989,Skullduggery!,149618688,USD,2.99,409,132,4.5,5.0,1.3,9+,Games,40,5,1,1
+1052729607,Flower Girl - Crazy Wedding Day,105948160,USD,0.0,409,22,4.5,4.5,1.2,4+,Games,38,5,11,1
+672002602,Blackbar,3671040,USD,2.99,409,46,4.0,3.5,1.1.3,9+,Games,37,3,2,1
+824281761,Sago Mini Monsters,87442432,USD,2.99,409,9,4.5,3.0,1.9,4+,Education,38,5,1,1
+632297587,Costume Quest,717484032,USD,2.99,408,356,4.0,4.0,1.03,12+,Games,40,4,1,1
+1065127755,Never Alone: Ki Edition,760836096,USD,4.99,408,225,4.5,4.5,1.03,9+,Games,25,5,16,1
+895913573,Papa's Wingeria HD,51105792,USD,2.99,407,75,4.5,4.5,1.0.4,4+,Games,24,5,1,1
+907002334,豆瓣,109557760,USD,0.0,407,0,3.5,0.0,4.18.1,12+,Social Networking,37,5,2,1
+783214985,"Quick Fit - 7 Minute Workout, Abs, and Yoga",187962368,USD,0.0,407,39,4.5,4.5,2.8,4+,Health & Fitness,37,5,30,1
+441599491,ConjuVerb - Spanish Verb Conjugation Helper,49025024,USD,0.99,406,62,4.5,4.5,2.2,4+,Education,40,5,1,1
+504001448,"Muscle Premium - Human Anatomy, Kinesiology, Bones",1101865984,USD,19.99,406,3,4.5,3.5,7.1.02,12+,Medical,37,5,7,1
+1033387365,倩女幽魂-周年庆资料片开启新主角剧情,1038312448,USD,0.0,405,7,4.5,4.5,1.0.8,9+,Games,38,5,1,1
+1151423446,Landix.io Online,110459904,USD,0.0,405,48,4.5,4.0,2.1.2,4+,Games,37,5,1,1
+899515785,Snowball Fight : Mini Game With Worldwide Multiplayer,93380608,USD,0.99,404,86,4.0,4.0,1.5,9+,Games,43,5,1,1
+1047610405,Rope Racers - Fun Multiplayer Racing Game,137255936,USD,0.0,404,9,4.0,4.5,1.7.2,9+,Games,38,5,9,1
+535153636,Celebrity Look Alike App - Face Compare,49332224,USD,0.0,403,5,2.5,1.0,4.45,4+,Entertainment,37,0,1,1
+952658839,Oil Hunt,243789824,USD,0.0,403,66,3.5,3.5,4.1.0,4+,Games,37,5,1,1
+835731296,MuseScore Songbook - Sheet Music,86334464,USD,1.99,403,5,4.0,3.5,1.13,4+,Music,38,4,1,1
+446324234,欢乐斗地主•腾讯,214474752,USD,0.0,403,5,3.5,4.5,5.52.001,17+,Games,43,5,1,1
+1073529893,Escape With Words,267543552,USD,0.0,402,31,4.5,4.5,2.0.0,4+,Games,37,5,1,1
+575812869,Dr. Panda Daycare,79133696,USD,2.99,401,39,4.0,4.5,2.4,4+,Education,40,5,15,1
+885792725,THE KING OF FIGHTERS '98,131387392,USD,2.99,401,401,4.5,4.5,1.0,12+,Games,38,5,2,1
+1087075743,Snakebird,124343296,USD,0.0,401,401,3.5,3.5,1.0,4+,Games,43,5,1,1
+771989093,LEGO® Friends,766447616,USD,4.99,400,316,4.0,4.5,1.2.67152,4+,Games,38,5,1,1
+1058603368,Spinning Rings,19117056,USD,0.0,399,17,4.5,4.0,1.1,4+,Games,38,5,1,1
+966038711,Blackthorn Castle,113778688,USD,2.99,399,349,5.0,5.0,1.2,4+,Games,40,5,1,1
+991032122,Candid - Speak Your Mind Freely,47065088,USD,0.0,398,0,3.5,0.0,1.7.3,17+,Social Networking,37,0,1,1
+915083784,Orca Simulator,147263488,USD,0.99,397,397,4.5,4.5,1.0,9+,Games,40,5,1,1
+490109661,Fingle,58532864,USD,1.99,397,3,4.5,4.5,2.5,9+,Games,24,5,1,1
+1073002250,Fit Girls Guide,33677312,USD,0.0,397,18,4.0,2.0,1.2.1,12+,Health & Fitness,37,0,1,1
+950669893,"Walking for Weight Loss: training plans, GPS, tips",111419392,USD,0.0,397,52,3.5,4.0,4.4.1,4+,Health & Fitness,37,0,10,1
+341329033,BlaBlaCar - Trusted Carpooling,112024576,USD,0.0,397,0,4.5,0.0,4.10.1,4+,Travel,37,0,16,1
+894022200,The Guides,45310976,USD,2.99,397,232,4.5,5.0,1.3,4+,Games,40,5,1,1
+529815782,The Wonder Weeks,28716032,USD,1.99,397,5,2.5,3.0,6.1.82,17+,Health & Fitness,37,4,1,1
+432274380,知乎,149436416,USD,0.0,397,0,3.0,0.0,3.52.1,17+,Social Networking,37,5,1,1
+881267423,Candy Camera,61046784,USD,0.0,397,1,4.0,3.0,2.5.4,9+,Photo & Video,37,5,8,1
+1057925633,Toca Blocks,98095104,USD,2.99,395,38,4.5,4.5,1.2.1,4+,Education,38,5,18,1
+729686081,Pan Book 2: Chasing the Keeper,792521728,USD,5.99,394,2,4.5,5.0,3.3.1,4+,Book,37,5,1,1
+977242839,Green Riding Hood,316589056,USD,0.0,392,2,4.0,5.0,1.2.1,4+,Book,37,5,12,1
+989447181,iPlum Business Phone Number for Calling & Texting,39709696,USD,0.0,392,23,4.5,4.5,4.1.7,4+,Business,38,4,22,1
+1001229698,PAC-MAN Bounce - Puzzle Adventure,359372800,USD,0.0,392,111,4.0,4.0,2.1,4+,Games,43,5,1,1
+1020587577,League of Stickmen VIP Edition,192278528,USD,1.99,391,15,4.5,4.5,1.0.8,9+,Games,38,5,5,1
+903033050,Safari Simulator: Lion,88043520,USD,1.99,391,391,4.0,4.0,1.0,9+,Games,43,5,1,1
+1117905680,Rhinbo - Endless Runner Game,154710016,USD,0.0,391,5,4.0,5.0,1.0.1.5,12+,Games,37,5,1,1
+1093824646,"Dream Diary - My Life, My Adventure!",83220480,USD,0.0,390,390,4.0,4.0,1.0,4+,Games,38,5,11,1
+1126382960,Thomas & Friends: Magical Tracks - Kids Train Set,308592640,USD,0.0,389,58,4.0,4.5,1.3,4+,Entertainment,38,5,8,1
+1130498044,Apple Support,110385152,USD,0.0,388,3,4.0,3.0,1.1.1,4+,Utilities,37,5,13,1
+915071248,Dolphin Simulator,104689664,USD,0.99,388,388,4.0,4.0,1.0,9+,Games,43,5,1,1
+1070525362,Cosmic Challenge: Best online space racing game,451740672,USD,0.0,387,0,4.5,0.0,2.972,4+,Games,38,5,1,1
+659353189,IntroMate - Intro Maker for iMovie,189254656,USD,2.99,386,28,4.5,4.0,2.5,4+,Photo & Video,37,5,12,1
+1088625279,Hexavoid,89885696,USD,0.0,386,15,4.5,4.5,2.6.1,4+,Games,37,5,1,1
+1090877424,Lewandowski: Football Star,337468416,USD,0.0,385,2,5.0,5.0,1.2.1,4+,Games,38,5,1,1
+467067151,"百度糯米-电影,美食团购",127980544,USD,0.0,383,0,4.5,0.0,7.5.0,17+,Lifestyle,37,0,2,1
+436957087,搜狐新闻—新闻热点资讯掌上阅读软件,136421376,USD,0.0,383,0,4.5,0.0,5.8.9,17+,News,38,0,1,1
+1123897951,PHAROS Earth,409825280,USD,0.0,383,6,4.5,4.0,3.0,4+,Entertainment,38,0,1,1
+1041528293,"Bloxels: Build, Play & Share Your Own Video Games",255226880,USD,0.0,382,18,3.5,4.0,1.4.8,4+,Education,37,5,1,1
+548753732,"Handwriting Without Tears: Wet-Dry-Try for Capitals, Numbers & Lowercase",69922816,USD,4.99,382,10,3.5,4.0,1.49,4+,Education,26,5,1,1
+334264405,iOvilus,9946112,USD,1.99,381,6,3.0,2.0,iOV 2.1.3,12+,Entertainment,38,0,1,1
+982819497,Sword Of Xolan,116097024,USD,0.99,381,381,4.5,4.5,1.0.4,12+,Games,40,5,1,1
+981535263,Worms™ 4,268636160,USD,4.99,380,178,3.5,4.0,1.07,9+,Games,37,5,8,1
+962566898,Evil Minds: Dirty Charades!,123353088,USD,0.99,380,12,4.5,5.0,1.5.0,17+,Games,38,1,1,1
+498425561,ALON Dictaphone - Voice Recorder,37910528,USD,4.99,379,0,4.0,0.0,2.1,4+,Business,37,5,24,1
+1002503055,"Please, Don't Touch Anything",57004032,USD,4.99,379,239,4.0,3.5,1.0.3,9+,Games,43,4,1,1
+884377252,Lucky Cactus,8708096,USD,9.99,378,378,3.5,3.5,1,4+,Entertainment,43,1,1,1
+1072090698,Jump Buddies,248603648,USD,0.0,378,8,4.5,5.0,2.1.1,4+,Games,37,5,1,1
+1128070374,1-Bit Rogue: A dungeon crawler RPG!,64439296,USD,0.0,378,106,4.5,4.5,1.3,12+,Games,38,3,1,1
+479665601,iZip Pro - Zip Unzip Unrar Tool,55524352,USD,5.99,378,12,4.0,4.5,13.01,4+,Utilities,37,5,3,1
+998528159,Path of War,88379392,USD,0.0,377,8,4.5,5.0,1.0.88463,12+,Games,37,5,6,1
+1037781582,iFaces - Custom Themes and Faces for Apple Watch,27377664,USD,1.99,376,281,2.5,3.0,1.3,4+,Lifestyle,37,0,1,1
+1057030968,Forecast Bar,129855488,USD,0.0,375,107,4.0,4.5,3.4.1,4+,Weather,37,5,1,1
+1086391724,Wonder Keyboard: Sound Smart & Funny with AI,71102464,USD,0.0,375,18,4.5,5.0,1.6.6,9+,Utilities,37,1,1,1
+1064676206,Microsoft Selfie,68282368,USD,0.0,375,24,4.0,4.0,2.2.0,4+,Photo & Video,37,0,24,1
+1048026594,MaxCurve - Photo editor for pro photography,40071168,USD,3.99,375,60,4.5,5.0,2.4,4+,Photo & Video,38,5,18,1
+1091699305,OctoPie - a Game Shakers App,264453120,USD,0.0,374,182,4.0,4.5,2.0,4+,Games,37,5,13,1
+1010582800,Battlevoid: Harbinger,108232704,USD,0.99,374,68,4.5,5.0,2.0.1,12+,Games,38,5,1,1
+1155982200,Ire - Blood Memory,1669448704,USD,0.0,373,7,3.5,4.5,2.2.1,12+,Games,37,5,13,1
+1146828763,Stony Road,106221568,USD,0.0,373,155,4.0,4.0,1.1,4+,Games,40,5,1,1
+633625517,Baldur's Gate II:EE,2272493568,USD,9.99,373,134,4.0,4.0,1.3,12+,Games,43,5,1,1
+519052678,FOCUS Online - Aktuelle Nachrichten,68831232,USD,0.0,373,8,4.5,5.0,2.282,12+,News,37,5,2,1
+1106831630,ROME: Total War,4025969664,USD,9.99,373,4,4.5,4.5,1.7.3,12+,Games,16,5,6,1
+1050712293,GoNoodle Kids,60706816,USD,0.0,372,98,4.0,4.0,1.0.8,4+,Education,37,5,1,1
+534477679,Dr. Panda Hospital,417707008,USD,2.99,372,24,4.0,4.0,1.7,4+,Education,40,5,15,1
+916130071,Dr. Panda’s Swimming Pool,221777920,USD,1.99,371,162,4.5,4.0,1.5,4+,Education,40,4,17,1
+550971517,Dr. Panda's Restaurant,125091840,USD,1.99,370,116,4.0,4.5,2.5,4+,Games,40,5,17,1
+904481505,Wildlife Simulator: Shark,79527936,USD,1.99,369,369,3.5,3.5,1.0,9+,Games,43,5,1,1
+1011915604,AGT: America's Got Talent Official App on NBC,24906752,USD,0.0,367,16,3.0,4.5,1.3.0,4+,Entertainment,37,5,1,1
+1030487391,Selfeo,86573056,USD,0.0,366,3,4.0,5.0,1.6.2,17+,Social Networking,37,1,1,1
+1046884557,Filterra – Photo Editor,83418112,USD,3.99,366,81,4.5,4.5,1.5,4+,Photo & Video,37,5,13,1
+1060599603,Stupid Again,56807424,USD,0.0,366,317,4.5,4.5,1.5,9+,Games,40,3,5,1
+808108897,Toca Pet Doctor,330686464,USD,2.99,365,25,4.0,4.0,1.0.4,4+,Education,40,4,18,1
+1122439453,Multi Level Car Parking 5 a Real Airport Driving Test Simulator,238359552,USD,0.0,365,365,4.5,4.5,1.0,4+,Games,38,5,1,1
+581906929,Athletics: Summer Sports (Full Version),85116928,USD,0.99,365,3,4.5,4.5,1.6,4+,Games,37,5,1,1
+1093405374,Sugar Slide: The Path Home,166046720,USD,0.0,365,196,4.5,4.5,1.0.12,4+,Games,38,5,1,1
+698154775,Fitness and Bodybuilding by VGFIT,66485248,USD,0.99,364,37,4.5,4.5,5.3.1,4+,Health & Fitness,38,5,15,1
+1072898300,Footaction,61330432,USD,0.0,364,0,4.0,0.0,2.6.5,4+,Shopping,37,0,1,1
+1154282030,Cozmo ®,425026560,USD,0.0,364,7,4.5,4.5,1.5.0,4+,Entertainment,35,5,1,1
+1104986393,Game Switch,42371072,USD,0.0,363,32,4.0,4.0,1.6,4+,Games,37,0,1,1
+665678340,12 Minute Athlete HIIT Workouts,24664064,USD,2.99,362,1,4.5,5.0,4.6,4+,Health & Fitness,37,0,1,1
+1163113876,Water Bottle Flip Challenge: Flippy Bottle Diving,40116224,USD,0.0,362,362,4.5,4.5,1.1,4+,Games,40,2,1,1
+1076093996,80s Arcade Nes Games : Best Retro Collection,90843136,USD,1.99,362,362,1.0,1.0,1.0,4+,Entertainment,37,3,1,1
+999771588,Swapperoo,24163328,USD,1.99,361,55,4.0,4.0,1.0.2,4+,Games,37,5,1,1
+414245413,手机京东-首次购买可领取188元优惠券,242618368,USD,0.0,361,4,3.5,1.5,6.1.0,17+,Shopping,38,0,2,1
+897003024,Mail Master by NetEase,127514624,USD,0.0,361,1,4.0,5.0,5.5.2,4+,Productivity,37,5,3,1
+1117621317,Steps,70959104,USD,0.0,361,361,4.5,4.5,1.0,4+,Games,38,5,1,1
+850863885,Ambition: Strategy War Game,54139904,USD,3.99,360,27,3.5,3.5,2.7,9+,Games,37,5,1,1
+1022647461,Infinite Skater,257843200,USD,0.0,360,100,4.0,3.5,2.0.3,4+,Games,38,5,1,1
+1113756219,Doggy Box,89756672,USD,0.0,360,88,4.0,4.0,1.2,4+,Games,40,3,1,1
+1095003754,Hoverboard Simulator - Night Drive,23927808,USD,0.0,360,2,3.5,5.0,1.1,4+,Games,40,3,1,1
+900333528,"iMacro - Diet, Weight and Food Score Tracker",36675584,USD,4.99,360,160,4.0,4.0,3.1.2,4+,Health & Fitness,37,5,1,1
+1061897092,"Baby Kim - Care, Play & Dress Up",179871744,USD,0.0,360,360,4.5,4.5,1.1,4+,Games,40,5,11,1
+532046195,Tone Sphere,411227136,USD,1.99,360,4,4.5,5.0,1.3.1,4+,Games,40,5,1,1
+1047264616,Papa's Cupcakeria HD,53637120,USD,2.99,359,164,4.5,4.5,1.0.1,4+,Games,24,5,1,1
+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.0,1.71,4+,Games,40,5,1,1
+491899548,Pocket League Story,186905600,USD,4.99,357,4,4.0,3.0,2.00,4+,Games,38,5,4,1
+883997728,Monty Python's The Ministry of Silly Walks,421027840,USD,1.99,356,145,4.0,4.5,1.2.7,4+,Games,38,2,1,1
+1011132019,NOISE,99423232,USD,0.0,355,5,3.0,2.0,2.3.3,4+,Music,25,5,0,1
+1046432580,Why You Lying?,46980096,USD,0.0,355,29,2.5,2.5,2.1,12+,Entertainment,37,4,1,1
+369970819,Fake-A-Location Free ™,7689537,USD,0.0,354,215,1.5,1.0,1.01,4+,Social Networking,43,0,1,1
+1077346638,Star Knight,512762880,USD,0.99,354,354,4.5,4.5,1.1.3,12+,Games,38,5,1,1
+1064913577,Multi Level 4 Car Parking Simulator a Real Driving Test Run Racing Games,312097792,USD,0.0,353,353,4.5,4.5,1.0,4+,Games,38,5,1,1
+1093924230,"iAnnotate 4 - read, markup and share PDFs and more",29554688,USD,9.99,353,28,3.5,4.0,4.2.8,4+,Productivity,37,5,1,1
+363451838,Hurricane HD,32083968,USD,3.99,353,8,4.0,3.5,3.0,12+,Weather,24,5,1,1
+988953433,Six Flags,88558592,USD,0.0,353,18,3.5,4.0,2.5.4,4+,Travel,37,0,3,1
+1114710947,Color Pop Free - Selective Color Splash Effects and Black & White Photography Editor,5553152,USD,0.0,352,325,4.0,4.0,1.0.2,4+,Photo & Video,38,5,1,1
+871197819,FOTONICA,263354368,USD,2.99,352,13,4.5,4.5,1.1.9,4+,Games,40,5,10,1
+678861146,Dr. Panda's Airport,95670272,USD,2.99,352,223,4.5,4.5,1.8,4+,Education,40,5,21,1
+1003765913,Auto Warriors - Tactical Car Combat,1107044352,USD,0.0,352,35,4.0,4.0,1.102,12+,Games,25,5,1,1
+531968389,Deck Pass Plus,10240000,USD,1.99,350,170,3.5,3.5,3.0.1,4+,Sports,43,5,1,1
+631446426,"Writing Wizard - Kids Learn to Write Letters, Alphabet & Words",42598400,USD,3.99,349,94,4.5,4.5,3.0.2,4+,Education,38,5,6,1
+1101141411,Police Sniper Prison Guard,225862656,USD,0.0,349,80,4.0,4.0,2.5,17+,Games,38,5,1,1
+893938765,Dentist Mania: Doctor X Crazy Clinic,95283200,USD,0.0,349,59,3.5,4.0,1.7,4+,Games,38,5,11,1
+656723874,Home - A Unique Horror Adventure,49221632,USD,2.99,348,35,3.5,3.5,1.5.4,12+,Games,43,5,1,1
+352000376,Shift Worker,7344128,USD,1.99,348,33,4.0,4.0,1.5.4,4+,Productivity,40,0,1,0
+1050973882,Arma Mobile Ops,119991296,USD,0.0,347,7,4.0,3.5,1.8.0,12+,Games,37,5,7,1
+1111617387,Mutant Creatures Mod for Minecraft PC Edition - Pocket Mods Guide,27025408,USD,1.99,346,11,4.0,2.5,1.1,4+,Reference,38,4,1,1
+1072395467,60 Seconds! Atomic Adventure,348491776,USD,3.99,346,196,4.0,4.0,1.22,12+,Games,40,5,8,1
+1075851197,Patchwork The Game,113985536,USD,2.99,346,6,4.0,4.0,1.45,4+,Games,37,5,1,1
+1132201707,"Wedding Planner - Dress Up, Makeup & Cake Design",266102784,USD,0.0,346,152,4.0,4.5,1.0.4,4+,Games,38,5,11,1
+907159478,Cycloramic for iPhone SE/5/5S,24351744,USD,1.99,346,6,2.5,2.0,2.03,4+,Photo & Video,37,3,11,1
+517488939,Cortex Camera,3409920,USD,2.99,346,14,4.0,4.0,2.12,4+,Photo & Video,37,1,1,1
+1013596666,Hoodclips,15900672,USD,0.0,346,23,4.0,3.0,2.2.7,17+,Entertainment,37,5,1,1
+952658953,Her Story,1881128960,USD,2.99,346,346,4.0,4.0,1.1,17+,Games,38,4,1,1
+927823151,Pro HDR X,1953792,USD,1.99,345,321,3.5,3.5,1.1,4+,Photo & Video,37,4,1,1
+1136936929,Ultimate Savanna Simulator,138456064,USD,0.99,344,338,4.5,4.5,1.1,9+,Games,40,5,1,1
+358055270,"Dude, your car!",40586240,USD,0.99,343,15,4.0,4.5,2.5,4+,Entertainment,38,0,30,1
+871230822,Sago Mini Road Trip,80607232,USD,2.99,343,10,4.5,4.0,1.3,4+,Education,38,5,1,1
+1130901077,F1 2016,2532376576,USD,4.99,343,160,4.0,4.0,1.0.6,4+,Games,25,5,1,1
+1114245788,Funny Face - Filters Pic Swap Effects Photo Editor,132928512,USD,0.0,343,35,4.5,4.0,1.7,4+,Entertainment,37,3,1,1
+1067084549,Epic Flail,51681280,USD,0.0,343,14,3.5,3.5,1.2,12+,Games,37,5,1,1
+1047666264,Ultimate Briefcase,57072640,USD,0.0,343,130,4.0,4.5,1.0.6,9+,Games,43,5,1,1
+959327054,Within - VR (Virtual Reality),118566912,USD,0.0,343,3,4.0,3.0,2.6.8,12+,Entertainment,25,5,1,1
+1087817882,Puppy Life - Secret Pet Party,195533824,USD,0.0,343,22,4.0,4.5,1.1,4+,Games,38,5,11,1
+1099152229,Sports Hero,80888832,USD,0.0,343,147,4.0,4.0,1.0.3,4+,Games,38,5,1,1
+377908737,Boating USA,111196160,USD,9.99,342,2,3.5,4.0,10.4.3,4+,Navigation,37,0,5,1
+1039141908,LEGO® Ninjago™: Shadow of Ronin™,1277468672,USD,4.99,342,213,4.5,4.0,1.2,9+,Games,37,5,1,1
+1077590028,Diner Dynasty,111960064,USD,0.0,342,165,4.0,4.5,1.1.0,4+,Games,37,5,20,1
+1131422575,Circuroid,103378944,USD,0.0,342,78,4.5,5.0,1.1,4+,Games,38,5,1,1
+609405853,Dr. Panda Supermarket,138589184,USD,2.99,342,24,4.0,4.5,1.7,4+,Education,40,4,19,1
+482688777,Jurassic Park: The Game 2 HD,501567488,USD,2.99,341,20,4.0,4.0,1.2.1,12+,Games,40,5,1,1
+1043824696,The Cooking Game- With Cute iMessage Food Stickers,98185216,USD,0.0,340,30,4.5,4.5,1.5.1,4+,Games,37,5,1,1
+1084331400,Folioscope,19379200,USD,0.0,339,11,4.5,4.5,1.10,12+,Entertainment,37,5,14,1
+1105548368,Spinny Phone,148122624,USD,0.0,339,4,4.0,2.0,1.3.2,17+,Games,37,0,9,1
+370406465,Résultats Foot en Direct,65074176,USD,0.0,339,7,4.5,4.5,4.0.1,4+,Sports,38,0,1,1
+1123455917,Ketchapp Soccer,63180800,USD,0.0,339,138,4.0,4.0,1.1.1,4+,Games,38,5,1,1
+456229650,QQ游戏大厅HD,20161086,USD,0.0,338,176,3.5,3.5,1.4,4+,Entertainment,26,5,1,1
+306375551,Wind Meter,5234688,USD,0.99,338,12,2.5,2.0,5.0,4+,Weather,43,0,1,1
+1126101226,Archangel Michael Guidance - Doreen Virtue,116185088,USD,3.99,338,63,4.5,4.5,1.5.2,4+,Lifestyle,37,5,2,1
+966030326,KORG iM1,95298560,USD,29.99,338,97,4.5,4.5,1.0.5,4+,Music,24,5,31,1
+1095336248,Crazy Love Story - Wedding Dreams,135127040,USD,0.0,337,10,4.0,4.0,1.9,4+,Games,38,5,11,1
+916366645,Procreate Pocket,74910720,USD,2.99,337,55,4.0,4.0,1.6.3,4+,Entertainment,37,0,13,1
+374151636,Popplet,4893696,USD,4.99,336,2,4.0,3.0,2.3,4+,Productivity,37,5,1,1
+1108697438,Slaymoji - Emoji Keyboard & iMessage Stickers,35466240,USD,0.0,336,0,4.5,0.0,1.0.6,17+,Entertainment,37,5,1,1
+570772231,Global Shark Tracker,36946944,USD,0.0,336,8,3.0,3.5,1.7,4+,Education,37,1,1,1
+964743113,LOOPIMAL by YATATOY,58019840,USD,3.99,336,272,4.5,4.5,1.1.0,4+,Education,43,4,5,1
+1045947023,Sacred Legends,528630784,USD,0.0,335,35,4.0,4.5,1.1.5,12+,Games,38,5,13,1
+936966605,The Robot Factory by Tinybop,298121216,USD,0.0,335,21,4.0,4.0,1.1.6,4+,Education,38,5,58,1
+967082741,Devious Dungeon 2,114266112,USD,2.99,335,185,4.5,4.5,1.2,12+,Games,40,5,1,1
+725440538,Christmas Countdown 2017,55493632,USD,0.0,334,0,4.5,0.0,6.1,4+,Entertainment,37,5,1,1
+953936584,Tower Knights!,310361088,USD,0.0,334,24,4.0,4.5,1.4.0,4+,Games,37,5,11,1
+1033342465,Just Press Record,2425856,USD,4.99,334,4,4.0,4.5,2.2.1,4+,Utilities,37,5,1,1
+1102828488,Delicious - Emily’s Message in a Bottle,336847872,USD,0.0,333,42,4.0,5.0,1.5,4+,Games,38,5,11,1
+908511009,Wildlife Simulator: Crocodile,86482944,USD,1.99,333,333,4.5,4.5,1.0,9+,Games,43,5,1,1
+909087462,Ideas for Elves — The Elf on the Shelf®,109601792,USD,0.0,333,49,4.5,4.5,1.3.0,4+,Entertainment,37,5,1,1
+1007479011,Athletics 2: Summer Sports,243613696,USD,1.99,333,329,4.5,4.5,1.5,4+,Games,37,5,1,1
+566752651,Rainy Mood - Rain Sounds for Sleep & Study,91877376,USD,2.99,333,140,4.5,4.5,2.2,4+,Health & Fitness,37,4,1,1
+1082679672,SkillTwins Football Game,192502784,USD,0.0,332,75,4.5,4.5,1.5,4+,Games,38,5,1,1
+411711646,Fighter Verses - memorize bible verses,13778944,USD,2.99,331,1,4.5,1.0,4.0.8,4+,Reference,37,4,3,1
+871235562,Tomb Raider II,310942720,USD,0.99,330,31,4.0,4.0,1.0.3,12+,Games,38,4,7,1
+994624624,Champs Sports,63553536,USD,0.0,330,5,3.5,1.0,2.6.5,4+,Lifestyle,37,0,1,1
+649202100,Authentic Weather,23582720,USD,1.99,330,30,3.0,3.0,4.1,12+,Weather,37,2,1,1
+1073948898,MP3 Music Player & Streamer for Clouds,12675072,USD,0.0,329,1,3.0,2.0,1.6,4+,Music,37,4,1,1
+1081561570,Google Trips – Travel planner,55794688,USD,0.0,329,40,3.0,3.5,1.10,4+,Travel,37,0,1,1
+1110261314,Face Filters - Dog & Other Funny Face Effects,37760000,USD,0.0,329,82,4.0,4.0,2.4,17+,Entertainment,38,4,5,1
+1049321283,Univision NOW – Stream TV en Vivo y On Demand,82720768,USD,0.0,329,11,2.0,2.0,2.8,12+,Entertainment,37,5,2,1
+976429128,CloudPets Gold,293900288,USD,4.99,329,2,2.5,5.0,3.6,4+,Entertainment,40,5,3,1
+1047205902,Cops & Robbers!,170550272,USD,0.0,328,89,4.0,3.5,1.2,4+,Games,38,5,23,1
+945177811,Hyena Simulator,156360704,USD,0.99,327,327,4.5,4.5,1.0,9+,Games,40,5,1,1
+1099420627,Color Dotz,17227776,USD,0.0,326,22,3.5,3.5,1.4,4+,Games,37,3,1,1
+650645305,Quiver - 3D Coloring App,183631872,USD,0.0,325,16,3.5,4.0,3.15,4+,Entertainment,38,5,1,1
+968858645,Hoverboard Simulator,29434880,USD,0.0,325,20,3.5,3.5,1.1.8,4+,Games,40,2,1,1
+821560738,AnyFont,6157312,USD,1.99,324,16,4.0,5.0,2.8,4+,Utilities,37,5,7,1
+634329875,Crane Game Toreba!,36301824,USD,0.0,323,8,2.5,2.0,1.4.3,4+,Games,37,5,5,1
+953876014,Sabertooth Tiger Simulator,122327040,USD,0.99,323,323,4.5,4.5,1.0,9+,Games,43,5,1,1
+1145057065,FaZes - Run & Jump,45919232,USD,0.0,322,36,4.5,4.0,2.4,4+,Games,40,0,1,1
+599694143,Second Grade Learning Games,20853760,USD,2.99,322,13,4.5,5.0,2.6,4+,Education,37,5,1,1
+542909191,Unfilth Your Habitat,12316672,USD,0.99,321,112,4.5,4.5,1.4,17+,Productivity,43,5,1,1
+897154382,Baby Airlines - Airport Adventures,106456064,USD,0.0,321,11,3.5,3.5,2.5,4+,Games,38,5,11,1
+548946769,Stick Texting Emoji Emoticons Killer,90030080,USD,1.99,321,13,3.0,2.5,1.10,9+,Utilities,37,5,1,1
+970131308,Musical Video Maker - Create Music clips lip sync,28518400,USD,0.0,320,68,3.5,3.5,3.0,9+,Music,37,3,1,1
+437025413,ZDFmediathek,67734528,USD,0.0,320,1,3.5,3.0,4.2.1,4+,Entertainment,37,5,1,1
+527143310,CamCard HD -business card scanner & reader,80380928,USD,7.99,319,13,4.0,4.5,1.2.10,4+,Business,24,5,7,1
+1054011814,Cloud Music Player - Downloader & Playlist Manager,9063424,USD,0.0,319,286,3.5,3.5,1.2,12+,Music,37,5,1,1
+336834650,Moorhuhn Deluxe - Crazy Chicken,27807744,USD,0.99,319,12,3.0,5.0,2.8.0,12+,Games,38,5,5,1
+1153136025,Crooked Path: Infinity Run,97175552,USD,0.0,318,52,4.0,4.5,1.15,4+,Games,37,5,1,1
+1110512888,DRAGON MODS MINE EDITION FOR MINECRAFT GAME PC,115707904,USD,0.99,318,23,4.0,3.5,1.1,12+,Reference,38,3,1,1
+388932995,赶集网-工作生活啥都有!,106115072,USD,0.0,317,0,4.0,0.0,7.9.9,17+,Lifestyle,38,0,1,1
+673612506,Alice Trapped in Wonderland,363242496,USD,0.99,317,12,4.5,4.0,1.3,4+,Games,37,5,4,1
+1031155880,Solar Walk ™ 2 - Space Missions & Solar System,610393088,USD,2.99,316,35,4.0,4.5,1.4.2,4+,Education,37,5,10,1
+1076751035,Tennis Bits,154455040,USD,0.0,316,133,4.0,4.5,2.0,4+,Games,38,5,1,1
+976510666,Giffage – The GIF Keyboard for GIFs,64018432,USD,0.0,315,30,3.5,4.5,4.0.2,17+,Utilities,37,0,1,1
+343638336,Video Calls with Santa,27997184,USD,2.99,315,0,3.5,0.0,5.1,4+,Lifestyle,37,0,31,1
+1061610336,Kids Movie Night - Popcorn & Soda,98892800,USD,0.0,314,55,4.0,4.5,1.5,4+,Games,38,5,11,1
+1087638293,Batman v Superman: Who Will Win,194196480,USD,0.0,314,225,3.0,3.0,1.1,9+,Games,38,5,1,1
+1119482395,Toca Hair Salon 3,129079296,USD,2.99,314,82,4.5,4.5,1.2,4+,Education,38,5,18,1
+690106176,Daniel Tiger’s Day & Night,536041472,USD,0.0,314,34,3.5,4.0,1.0.3,4+,Education,40,5,1,1
+544119998,Magellan,44860416,USD,2.99,313,16,4.5,4.5,4.0,4+,Music,24,5,1,1
+858226685,Disney Karaoke: Frozen,103239680,USD,6.99,313,80,3.5,3.0,1.7,4+,Music,38,5,12,1
+944985743,Evel Knievel,320951296,USD,0.0,313,34,4.5,4.0,1.0.10,4+,Games,38,5,1,1
+1037830332,Ringtones for iPhone Unlimited.,48986112,USD,2.99,313,119,4.0,4.0,1.5,4+,Music,38,0,11,1
+1043689670,Tap Cats: Idle Warfare,254233600,USD,0.0,313,1,4.5,5.0,2.4.0,12+,Games,37,5,1,1
+1157555235,Musical Video Maker & Editor Live Videoly Studio,17094656,USD,0.0,312,168,2.5,2.5,1.1,12+,Lifestyle,37,3,1,1
+379395415,携程旅行-酒店、机票、火车票预订助手,144488448,USD,0.0,312,0,3.5,0.0,7.4.1,17+,Travel,37,5,1,1
+1118012993,Creatures Mod for Minecraft PC Game Edition - Mods Pocket Guide,30298112,USD,1.99,311,311,4.0,4.0,1.0,12+,Utilities,38,5,1,1
+1140266903,Hidden my game by mom - escape room,36419584,USD,0.0,311,16,5.0,4.5,1.0.2,9+,Games,40,3,12,1
+892521757,Premium Music Search,2158592,USD,4.99,311,81,2.5,2.0,1.3.5,4+,Utilities,38,2,15,1
+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
+744882019,GraphNCalc83,14244864,USD,6.99,311,63,4.5,5.0,1.6,4+,Education,40,5,1,1
+1092258126,Back To Square One,128863232,USD,0.0,310,85,4.5,4.5,1.0.8,9+,Games,40,5,1,1
+1092899813,Soccer Hit,175507456,USD,0.0,309,308,4.0,4.0,1.0.2,4+,Games,40,4,1,1
+446408493,Virtual Villagers 5: New Believers,36301672,USD,0.99,309,309,4.0,4.0,1.0.0,9+,Games,47,0,1,1
+1011987577,Sputnik Eyes,65553408,USD,1.99,309,303,4.0,4.0,1.5,4+,Games,38,5,1,1
+363992049,ComicGlass [ComicReader],31955968,USD,2.99,308,0,4.5,0.0,9.11,12+,Utilities,40,5,7,1
+364762290,Animation & Drawing by Do Ink,33857536,USD,4.99,308,8,4.0,4.5,4.5,4+,Education,24,5,1,1
+957302048,Battle Supremacy: Evolution,1114858496,USD,4.99,308,117,3.5,3.5,1.1.0,9+,Games,37,5,1,1
+585599497,Ski Jumping Pro,233041920,USD,0.99,308,56,4.0,4.0,1.3.0,4+,Games,39,5,22,1
+522700349,腾讯微云-安全备份共享文件和照片,63563776,USD,0.0,308,11,4.0,5.0,5.1.3,4+,Productivity,37,0,1,1
+387109554,QQ安全中心,32918528,USD,0.0,308,0,3.5,0.0,6.9.8,17+,Utilities,37,0,1,1
+627880433,Sorcery! 2,270895104,USD,4.99,308,10,5.0,5.0,1.3.2,12+,Games,38,5,1,1
+1110376793,voi,20856832,USD,0.99,308,192,4.5,4.5,1.1.0,4+,Games,43,5,12,1
+863960527,Mucho Party,87665664,USD,0.0,307,30,4.5,4.5,1.4.44,4+,Games,38,5,12,1
+591923366,Photo and Video Transfer over wifi app,9756672,USD,2.99,307,152,4.5,4.5,2.0,4+,Productivity,40,5,6,1
+647554947,Clone Magic,18268160,USD,1.99,306,79,4.0,4.0,3.0.1,4+,Photo & Video,40,5,1,1
+976690555,Patterning : Drum Machine,134340608,USD,9.99,306,21,5.0,5.0,1.2.3,4+,Music,24,5,8,1
+392899425,招商银行,154910720,USD,0.0,306,1,3.5,1.0,5.3.0,12+,Finance,37,0,2,1
+1078180470,Pop The Circle!,175391744,USD,0.0,304,71,4.0,4.0,1.2,4+,Games,38,5,23,1
+1011415692,QB Hero,29577216,USD,0.0,304,114,4.5,4.5,1.2.1,9+,Games,37,5,1,1
+636248681,RUNNING for weight loss PRO: workout & meal plans,110566400,USD,1.99,304,18,4.0,3.5,6.2.1,4+,Health & Fitness,37,0,10,1
+1061572575,Rockstar Girls - Crazy Concert Day,113567744,USD,0.0,303,135,4.0,4.0,1.2,4+,Games,38,5,11,1
+1079253434,The Walking Dead: Michonne - A Telltale Miniseries,904699904,USD,4.99,303,134,3.0,3.0,1.1,17+,Games,38,5,1,1
+1052582820,Rock The School - Class Clown,83648512,USD,0.0,303,165,4.0,4.5,1.2,4+,Games,40,5,12,1
+657222343,7 Minute Workout Pro,76668928,USD,0.99,303,40,4.5,5.0,3.0,4+,Health & Fitness,38,5,26,1
+486692623,"""Burn your fat with me!!""",149757952,USD,1.99,302,14,4.5,4.0,5.2.4,17+,Health & Fitness,38,0,3,1
+1152576183,KEVMOJI by Kevin Hart,22587392,USD,1.99,302,301,4.0,4.0,1.2,17+,Utilities,37,0,1,1
+554245373,SMART Notebook for iPad,97378304,USD,5.99,301,13,2.5,3.5,3.2,4+,Education,24,5,6,1
+1126269043,Z Buster,480581632,USD,0.0,301,2,4.0,4.5,1.4,9+,Games,38,5,1,1
+1022268606,Beat da Beat,262926336,USD,0.99,301,180,5.0,5.0,1.3,9+,Games,40,4,1,1
+942003779,Sneaky Sneaky,491360256,USD,2.99,300,32,4.5,4.0,1.0.2,9+,Games,38,5,1,1
+1131203560,Kahoot! Play Fun Learning Games,19548160,USD,0.0,300,29,3.5,3.5,1.0.3,4+,Education,37,3,1,1
+1076037275,Trio,132141056,USD,0.0,300,162,4.0,4.0,1.0.1,4+,Games,40,5,1,1
+1127930385,Content Transf,29114368,USD,0.0,299,78,4.5,5.0,3.5.0,4+,Productivity,38,5,1,1
+1087793008,Blair's Fashion Boutique - School Style,112493568,USD,0.0,299,39,4.5,4.5,1.1,4+,Games,38,5,2,1
+320650307,Harvest - Select the Best Produce,18165760,USD,1.99,299,28,4.0,4.5,3.1,4+,Food & Drink,38,0,1,1
+882453590,Reckless Racing 3,784058368,USD,2.99,299,39,4.0,4.0,1.1.7,17+,Games,38,5,10,1
+671123035,Burger Shop,25294848,USD,0.99,299,18,5.0,5.0,1.2,4+,Games,40,0,12,1
+424881832,SPIEGEL ONLINE - Nachrichten,31635456,USD,0.0,299,29,4.5,5.0,3.1.5,12+,News,37,5,2,1
+1041465860,Model 15,205972480,USD,29.99,298,35,5.0,5.0,1.1.1,4+,Music,25,5,1,1
+1058355648,Driving Zone,157679616,USD,0.0,298,83,4.0,4.0,1.12,4+,Games,37,4,13,1
+1123697672,Cube Skip,125918208,USD,0.0,298,72,4.5,4.0,1.0.2,4+,Games,40,5,1,1
+1089982285,Zen,58142720,USD,0.0,298,117,4.5,4.5,2.5.0,4+,Health & Fitness,37,2,3,1
+529646208,Frax HD - The First Realtime Immersive Fractals,94023680,USD,1.99,298,20,5.0,5.0,1.4.2,4+,Entertainment,24,5,8,1
+583976519,Cubasis 2 - Mobile Music Creation System,1032812544,USD,49.99,297,17,4.0,4.5,2.1,4+,Music,24,5,1,1
+1032432287,HOUND Voice Search & Assistant,63474688,USD,0.0,297,23,4.0,4.5,1.7.1,9+,Productivity,37,0,1,1
+699687299,Feed Me Oil 2,71624704,USD,0.99,296,2,4.0,4.0,1.3.6,4+,Games,38,5,10,1
+1112208725,PARKOUR MAPS FOR MINECRAFT PC EDITION - DOWNLOAD BEST POCKET MAPS FOR MINECRAFT,11141120,USD,1.99,296,55,4.0,3.5,1.0,4+,Entertainment,38,4,1,1
+1049386519,Tiny Rogue,56366080,USD,2.99,296,296,4.0,4.0,1.0,12+,Games,40,5,1,1
+525929300,DiveChamp,41779200,USD,0.99,295,133,4.5,4.5,1.22,4+,Games,43,5,1,1
+1097821445,Mad City Gangs: Nice City,164147200,USD,0.0,294,10,2.5,3.5,1.3.32,12+,Games,37,5,1,1
+659672658,"Morning — Weather, To-Do, News, and more",15432704,USD,0.99,294,6,3.5,3.0,1.6.6,12+,Productivity,38,5,30,1
+491998279,Articulation Station Pro,425919488,USD,59.99,294,130,4.5,5.0,2.2.3,4+,Education,38,5,1,1
+1019616705,Rayman Classic,191037440,USD,0.0,293,147,4.5,4.0,1.0.4,9+,Games,38,5,10,1
+935566920,Polar Bear Simulator,116490240,USD,0.99,293,293,4.5,4.5,1.0,9+,Games,43,5,1,1
+1108097491,FURNITURE MOD FOR MINECRAFT EDITION PC GAME - POCKET GUIDE,20215808,USD,1.99,292,292,4.0,4.0,1.0,4+,Entertainment,38,5,1,1
+1185580782,Survivalcraft 2,57349120,USD,3.99,292,292,4.0,4.0,2.0.20.1,9+,Games,40,5,1,1
+324266640,Fantasy Football Manager - FFM for FPL,35998720,USD,0.99,292,1,3.0,5.0,9.3,17+,Sports,37,1,1,1
+1120861209,Road Not Taken,274795520,USD,4.99,291,96,4.5,4.0,1.0.8,9+,Games,25,3,1,1
+395096736,去哪儿旅行-预订机票酒店火车票特价旅游自由行,131723264,USD,0.0,291,0,4.0,0.0,4.10.12,17+,Travel,37,5,1,1
+658828559,Mancala Pro,56049664,USD,1.99,289,46,4.5,4.0,2.0,4+,Games,43,2,1,1
+919132359,"Mixels Rush - Use Mixes, Maxes and Murps to Outrun the Nixels",90406912,USD,0.0,288,176,4.0,4.0,2.0,9+,Games,38,4,12,1
+991563953,Blyss,163149824,USD,0.99,288,11,4.0,4.5,2.9,4+,Games,40,5,1,1
+1058801458,Remixlive - Remix loops with pads,103392256,USD,0.0,288,100,4.5,4.5,2.1.1,4+,Music,37,5,2,1
+1097564743,CRAZY CRAFT MOD EDITION FOR MINECRAFT PC GAME MODE,11585536,USD,0.99,287,17,3.5,1.5,1.1,9+,Entertainment,38,3,1,1
+1133173046,Warlords - Turn Based Strategy,275863552,USD,0.0,287,104,4.5,4.5,0.23.25,12+,Games,37,5,45,1
+866786833,iThoughts (mindmap),56014848,USD,11.99,287,3,4.5,3.5,4.7,17+,Productivity,37,5,11,1
+538248967,暴风影音-BaoFeng Player,83532800,USD,0.0,287,0,4.5,0.0,5.2.0,17+,Entertainment,38,0,1,1
+409605521,Quit Pro,33914880,USD,0.99,287,18,4.5,4.5,3.0,12+,Health & Fitness,37,0,3,1
+1102448232,Rule with an Iron Fish: A Pirate Fishing RPG,100349952,USD,2.99,286,105,5.0,4.5,1.4,4+,Games,40,5,1,1
+367706767,Live Cams - HD,37161984,USD,4.99,286,25,2.5,5.0,2.0.100,4+,Travel,24,5,1,0
+510909506,闲鱼-让你的闲置游起来,84877312,USD,0.0,286,2,4.0,5.0,5.8.4,9+,Shopping,37,5,1,1
+1017186083,Haywire Hospital,503320576,USD,0.0,285,2,4.5,3.5,2.3.4,12+,Games,38,5,4,1
+1024507512,Cut the Rope HD™,125702144,USD,0.0,285,9,4.0,3.5,3.1.2,4+,Games,24,5,10,1
+1123539597,Arcane Online - Fantasy MMORPG,93643776,USD,0.0,285,3,4.5,5.0,2.2.2,12+,Games,37,5,1,1
+820802943,Social Picket - Stalker & Spy for Instagram,11301888,USD,0.0,285,88,4.0,3.5,1.3.1,12+,Utilities,38,2,2,1
+1164492728,LVL,94370816,USD,1.99,284,2,4.5,5.0,1.1.4,4+,Games,38,5,11,1
+1147225129,Tidal Rider,85362688,USD,0.0,284,2,4.0,4.5,1.4,4+,Games,38,5,1,1
+952632588,Export Messages - Save Print Backup Recover Text SMS iMessages,8663040,USD,4.99,284,275,3.5,3.5,1.1,4+,Entertainment,38,0,1,1
+907407546,MLB Manager 2016,180300800,USD,4.99,284,160,4.0,4.0,6.1.23,12+,Games,37,5,1,1
+1176492470,Ice Princess - Royal Wedding Day,279991296,USD,0.0,283,65,4.5,4.5,1.7.0,4+,Games,38,5,11,1
+1073806361,Spoon Pet Collector,69463040,USD,0.0,282,2,4.5,5.0,1.14.0,4+,Games,40,5,2,1
+342602105,Positivity with Andrew Johnson,69513216,USD,2.99,282,1,4.0,5.0,3.38,4+,Health & Fitness,38,4,1,1
+997252057,Popcorn Buzz - Free Group Calls,17457152,USD,0.0,281,97,3.5,3.5,1.3.2,4+,Social Networking,38,0,17,1
+473225145,QQ邮箱,110243840,USD,0.0,281,1,3.5,1.0,5.3.0,4+,Utilities,38,0,1,1
+1176486119,Fast Food Rampage,95555584,USD,0.0,281,52,4.5,4.5,1.0.7,12+,Games,38,3,1,1
+909730184,Leap of Fate,999398400,USD,3.99,280,280,4.5,4.5,1.0,12+,Games,38,5,1,1
+391304000,"Maps 3D PRO - GPS for Bike, Hike, Ski & Outdoor",25960448,USD,4.99,280,12,4.0,4.0,4.1.4,4+,Navigation,37,0,6,1
+1050367912,What Dog A Microsoft Garage Project,63880192,USD,0.0,280,9,3.0,2.5,1.2.3,4+,Entertainment,37,0,1,1
+490152130,A Brief History of the World,143462400,USD,3.99,280,100,4.0,4.0,1.0.2,4+,Games,43,5,1,1
+1141154420,Wire Bounce,96992256,USD,0.0,279,22,4.5,4.5,2.1,4+,Games,37,3,1,1
+1145528262,Bonk! Presented by The Tonight Show Starring Jimmy Fallon,104864768,USD,0.0,279,30,3.5,4.0,1.0.1,4+,Entertainment,37,5,1,1
+1185328193,Fam — Group video calling for iMessage,113382400,USD,0.0,279,5,3.5,3.0,0.6.41,4+,Social Networking,37,4,1,1
+515840296,Hidden World,104166400,USD,1.99,279,21,4.5,4.5,1.0.5,4+,Games,40,5,17,1
+1003138996,Baseball Highlights 2045,135406592,USD,3.99,278,32,4.5,5.0,1.10.4,4+,Games,40,5,1,1
+567141387,Vampify - Turn yourself into a Vampire,102176768,USD,0.99,278,0,4.5,0.0,2.1.9,9+,Entertainment,37,5,13,1
+1120547622,Shopkins: Shoppie Dash!,192231424,USD,3.99,278,52,4.5,4.5,1.2.1,4+,Games,38,5,3,1
+983149271,Muhammad Ali: Puzzle King,153622528,USD,0.0,277,2,5.0,3.5,1.1.7,4+,Games,37,5,11,1
+1093396572,SteamWorld Heist,242657280,USD,9.99,277,223,4.5,4.5,1.1,9+,Games,37,5,1,1
+765256153,Hard Time VIP (Prison Sim),47905792,USD,4.99,276,12,4.0,4.5,1.36,17+,Games,40,4,16,1
+1085698206,Snail Bob 2,611215360,USD,0.0,276,9,4.5,4.0,1.2.1,4+,Games,37,5,21,1
+1011562903,Spanish SOLO: Learn Spanish With Lessons On The Go,75766784,USD,0.0,275,0,4.5,0.0,2.0,9+,Education,37,5,1,1
+517166184,内涵段子 - 精选搞笑图片、视频,96586752,USD,0.0,275,0,5.0,0.0,6.3.1,17+,Entertainment,38,4,2,1
+433596395,ZOOKEEPER DX,28983296,USD,0.99,274,24,3.5,3.5,1.0.7,4+,Games,43,4,3,1
+907470416,Paper Girl - Morning Madness Adventures,94368768,USD,0.0,274,33,3.5,3.0,1.7,4+,Games,38,5,11,1
+550067264,Cafeteria Nipponica,186856448,USD,4.99,274,4,4.5,5.0,2.01,4+,Games,38,5,4,1
+710380093,QQ International,103233536,USD,0.0,274,0,2.0,0.0,4.8.4,4+,Social Networking,38,0,8,1
+337056601,n-tv Nachrichten,49470464,USD,0.0,273,0,3.0,0.0,5.25,12+,News,37,5,1,1
+1071767366,"CubeMator - Craft, Build and Explore the World",150966272,USD,0.0,273,85,4.5,4.0,2.0.0,4+,Games,37,5,3,1
+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
+668598022,My Little Pony - A Canterlot Wedding,298639360,USD,2.99,273,55,3.5,3.5,1.6.2,4+,Book,39,5,20,1
+1038376578,Carmen Sandiego Returns-A Global Spy Game for Kids,200816640,USD,3.99,273,18,3.0,3.0,1.10,4+,Education,37,5,1,1
+1147424561,NFL Rush Gameday,824104960,USD,0.0,272,10,4.0,5.0,1.4.2,4+,Sports,37,5,1,1
+1100292960,Castles of Mad King Ludwig,89542656,USD,6.99,272,126,4.5,4.5,1.1,4+,Games,38,3,1,1
+1088389081,Lucky Block Mod Survival Game PE - Pocket Edition,111525888,USD,0.99,272,272,4.0,4.0,1.0,12+,Games,40,3,1,1
+992425516,Atlantic Fleet,220282880,USD,9.99,271,107,4.5,4.5,1.11,12+,Games,38,5,1,1
+926366251,Elf Pets® Virtual Reindeer – The Elf on the Shelf®,376027136,USD,0.99,271,60,4.5,5.0,2.1,4+,Games,40,5,1,1
+1132539563,Linia,87257088,USD,1.99,271,51,4.0,4.5,1.4,4+,Games,37,5,7,1
+1093829912,Daddy's Little Helper - Messy Home Adventure,106568704,USD,0.0,270,5,4.0,4.0,1.1,4+,Games,38,5,11,1
+1040930654,A Good Snowman Is Hard To Build,94819328,USD,4.99,270,51,4.5,4.5,1.0.9,4+,Games,40,5,1,1
+1093582666,Krome Studio Service Plus,32825344,USD,1.99,269,57,3.5,4.5,3.0,4+,Photo & Video,37,0,1,1
+1179462965,Farming USA 2,299749376,USD,2.99,269,35,4.5,4.5,1.33,4+,Games,37,5,1,1
+349442137,Ameba,96635904,USD,0.0,269,0,3.0,0.0,8.6.1,12+,Social Networking,37,0,1,1
+1116214450,3D GUNS MOD FOR MINECRAFT PC EDITION - GUN MODS POCKET GUIDE,19122176,USD,1.99,268,268,4.5,4.5,1.0,4+,Utilities,38,4,1,1
+343889987,Voyages-sncf.com : book train and bus tickets,131463168,USD,0.0,268,0,3.5,0.0,38.0,4+,Travel,37,5,6,1
+1107282504,NeoWars,138093568,USD,0.0,267,68,4.0,4.5,1.0.7,9+,Games,37,5,2,1
+1076483949,VR Roller Coaster for Google Cardboard,113678336,USD,0.0,266,171,3.5,4.0,1.3,4+,Games,38,0,1,1
+863882795,斗鱼--王者大神在直播,200382464,USD,0.0,266,1,2.5,1.0,2.500,4+,Entertainment,37,5,1,1
+1061531453,Hot Pot Master,212542464,USD,0.0,265,69,4.5,4.5,1.4,4+,Games,40,5,1,1
+977056011,Dragon Heroes: Shooter RPG,672897024,USD,0.0,265,12,4.5,4.5,1.1.8,4+,Games,40,5,5,1
+1136678843,Dungeon Warfare,202242048,USD,3.99,264,116,5.0,5.0,1.01,12+,Games,37,5,1,1
+1134998522,myFitnessSync for Fitbit - Fitbit to Apple Health,5574656,USD,4.99,264,32,4.5,4.5,1.5.2,4+,Health & Fitness,37,0,1,1
+468564994,Tasty Planet: Back for Seconds,31039488,USD,2.99,264,56,4.5,4.5,1.4,9+,Games,43,0,8,1
+1013780477,Star Cheerleader - High School Tryouts,222483456,USD,0.0,263,53,4.0,4.0,1.4,4+,Games,38,5,11,1
+645384141,Cachly - Simple and powerful Geocaching for iPhone,25072640,USD,4.99,263,101,4.5,4.5,2.0.3,4+,Navigation,37,0,9,1
+948861271,Owl Simulator,104480768,USD,0.99,263,231,4.0,4.5,1.1,9+,Games,43,5,1,1
+632598552,Rivals for Catan,288161792,USD,0.99,263,94,3.5,3.0,1.3.0,4+,Games,43,5,2,1
+1131590898,LUMINES PUZZLE & MUSIC,114325504,USD,2.99,263,6,4.5,4.0,2.1.0,4+,Games,37,5,2,1
+814323051,Bridge Constructor Medieval,104359936,USD,1.99,262,39,4.5,4.5,1.5,4+,Games,43,5,13,1
+994822255,Infinite Tanks,1920265216,USD,4.99,262,92,4.0,4.0,1.0.3,9+,Games,37,5,10,1
+329703516,Alter Ego,13647872,USD,4.99,262,43,4.0,4.0,1.3.0,12+,Games,40,5,1,1
+869011374,The Lost Ship,68837376,USD,0.99,262,153,4.5,4.5,1.7,4+,Games,40,5,1,1
+412792865,SkyDroid - Golf GPS,25606144,USD,1.99,261,1,4.0,5.0,1.10.1,4+,Sports,37,0,1,1
+626362411,The Fast Metabolism Diet– customized meal planning,36395008,USD,2.99,261,21,3.5,3.5,2.9.3,4+,Health & Fitness,38,0,1,1
+640484311,AZZL,130421760,USD,2.99,261,84,5.0,4.5,1.2,4+,Games,37,5,10,1
+1022732646,Fruit Pop! Puzzles in Paradise - Fruit Pop Sequel,155375616,USD,0.0,261,9,4.5,4.5,1.20,4+,Games,38,5,1,1
+1061572339,Tooth Fairy Princess - Magical Adventure,115398656,USD,0.0,260,10,4.0,4.0,1.1,4+,Games,38,5,1,1
+906826053,Ember,2796380160,USD,9.99,260,35,4.0,4.0,1.043,9+,Games,25,5,1,1
+947402822,Galaxy Trucker Pocket,118829056,USD,4.99,259,3,5.0,4.0,2.2.12,9+,Games,40,0,1,1
+1019838009,The Martian: Official Game,74873856,USD,0.99,259,96,4.0,3.5,1.1.3,9+,Games,37,5,3,1
+670910957,VVebo - 微博客户端,17336320,USD,0.99,259,8,4.5,5.0,2.0.9,4+,Social Networking,38,5,2,1
+575357589,Christmas Stories: Nutcracker Collector's Edition HD (Full),611252780,USD,6.99,259,259,4.5,4.5,1.0.0,4+,Games,24,5,1,1
+1047733214,Learn 2 Fly,353280000,USD,0.0,258,258,4.0,4.0,1.0,4+,Games,38,2,1,1
+765224318,7 Minute Workout Challenge HD for iPad,116260864,USD,2.99,258,219,4.5,4.5,1.4,4+,Health & Fitness,24,5,17,1
+950386914,Sweet Shop,80953344,USD,0.99,258,172,4.0,4.0,1.0.3,4+,Games,38,5,16,1
+1140186382,Solitaire ▪,97139712,USD,0.0,258,32,4.5,5.0,1.4,4+,Games,37,2,15,1
+391965015,中国建设银行,209245184,USD,0.0,258,0,2.0,0.0,4.0.3.005,17+,Finance,37,0,1,1
+730091131,Green Screen by Do Ink,28033024,USD,2.99,257,23,3.5,3.5,2.3.4,4+,Education,37,5,1,1
+1049078653,NFL Gridiron from Panini - Card Collecting-Trading,80755712,USD,0.0,257,1,3.5,2.0,2.0.1,12+,Sports,37,5,10,1
+714180827,Star Chart Infinite,140150784,USD,4.99,257,104,4.5,4.5,1.29,4+,Education,38,4,8,1
+1010801515,Ultimate Shark Simulator,143093760,USD,0.99,256,225,4.0,4.0,1.1,9+,Games,40,5,1,1
+1096204046,Caterzillar,73056256,USD,2.99,256,256,4.5,4.5,1.0,4+,Games,38,5,8,1
+492571492,Jurassic Park: The Game 4 HD,468103168,USD,2.99,256,41,4.0,4.0,1.1.1,12+,Games,40,5,1,1
+1049257954,Maximum Car,177830912,USD,0.0,256,14,4.0,4.0,1.0.6,9+,Games,40,2,1,1
+1069508452,League of Light: Silent Mountain - A Hidden Object Mystery (Full),1188780032,USD,6.99,256,256,5.0,5.0,1.0.0,9+,Games,38,5,4,1
+1033781064,EatMe.io: Hungry Fish Attack!,289340416,USD,0.0,256,8,3.5,2.5,3.4.3,4+,Games,38,5,1,1
+937236311,YeahKeys - Customize your keyboard,20318208,USD,2.99,255,12,2.0,1.5,3.7,12+,Utilities,37,1,1,1
+1114170869,Day of the Tentacle Remastered,2779450368,USD,4.99,255,42,5.0,4.5,1.2,12+,Games,37,5,5,1
+1123605369,Magic Mansion,44227584,USD,0.0,255,132,3.0,3.5,1.0.1,9+,Games,37,4,1,1
+1000668798,King Tongue,422011904,USD,1.99,255,63,4.5,4.5,1.0.2,9+,Games,40,5,1,1
+1102520605,CNN Politics,30449664,USD,0.0,254,1,3.0,5.0,2.8.2,4+,News,37,0,1,1
+1035217840,[the Sequence],132829184,USD,0.99,254,164,5.0,5.0,1.4,4+,Games,43,5,1,1
+1063194066,Ultimate Bird Simulator,151135232,USD,0.99,254,254,4.0,4.0,1.0,12+,Games,38,5,1,1
+970416885,New Emoji - Extra Emoji Stickers,93091840,USD,1.99,253,5,1.5,2.0,2.6.2,17+,Utilities,37,5,2,1
+1052223765,SnowCast - See how much snowfall you could get,53058560,USD,2.99,253,6,3.5,2.5,2.5.6,4+,Weather,37,5,1,1
+1122909751,WIND runner adventure,332139520,USD,0.0,253,43,4.5,4.5,1.11,4+,Games,37,5,17,1
+956373528,The Lost Heir: The Fall of Daria,47482880,USD,2.99,253,140,5.0,5.0,1.1.0,12+,Games,38,5,1,1
+1081404850,Car Factory Parking Simulator a Real Garage Repair Shop Racing Game,221317120,USD,0.0,253,209,4.0,4.0,1.0.1,4+,Games,38,5,1,1
+637897973,Buddy & Me,130174976,USD,1.99,252,123,4.5,4.5,1.3.0,4+,Games,38,5,1,1
+1014277964,SelfieCity,71816192,USD,0.0,252,1,5.0,5.0,2.9.1,4+,Photo & Video,37,0,5,1
+907174449,Blaze and the Monster Machines - Racing Game HD,532379648,USD,6.99,251,10,3.0,3.5,6.0,4+,Education,24,5,1,1
+1046429579,Gang City,163401728,USD,0.0,251,34,2.5,3.0,5.3,17+,Games,40,4,1,1
+957212695,Sisters: A Virtual Reality Ghost Story,306997248,USD,0.0,251,59,4.0,4.0,2.0,12+,Entertainment,37,0,1,1
+1118756851,Stop Curry,67836928,USD,0.0,250,14,4.5,3.5,1.0.3,4+,Games,40,2,1,1
+959801877,Block Party : Mini Game With Worldwide Multiplayer,95862784,USD,0.99,250,56,4.0,4.0,1.2,12+,Games,43,5,1,1
+1035582408,Supermodel Star - Rule the Runway,139894784,USD,0.0,250,159,4.0,4.0,1.1,4+,Games,40,5,11,1
+478643661,Handy Art Reference Tool,141081600,USD,1.99,250,87,4.5,5.0,4.0,4+,Education,37,5,1,1
+888701288,Instaflash Pro,17196032,USD,4.99,249,79,5.0,5.0,4.0.1,4+,Photo & Video,37,5,2,1
+1112922482,SBK16 - Official Mobile Game,333368320,USD,0.0,249,52,4.5,4.0,1.0.6,4+,Games,38,5,8,1
+423492040,Planimeter - Measure Land Area and Distance on a Map,14495744,USD,7.99,249,83,4.5,4.0,3.5,4+,Productivity,38,5,6,1
+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
+947824428,Hydra - Amazing Photography,16631808,USD,4.99,249,3,3.5,3.5,1.3.4,4+,Photo & Video,37,1,15,1
+968907076,High Dive,120923136,USD,0.0,249,0,4.5,0.0,2.1.1,4+,Games,37,3,12,1
+543672169,ownCloud,34676736,USD,0.99,249,1,3.0,2.0,3.6.0,17+,Productivity,37,5,26,1
+334235181,"Trainline UK: Live Train Times, Tickets & Planner",110198784,USD,0.0,248,0,4.0,0.0,22,4+,Travel,37,4,1,1
+416457422,中国联通手机营业厅客户端(官方版),78774272,USD,0.0,248,1,3.0,1.0,5.3,4+,Utilities,38,0,2,1
+925770322,Haunted Manor 2 - The Horror behind the Mystery - FULL (Christmas Edition),313634816,USD,2.99,248,104,4.5,4.5,1.3,12+,Games,38,5,1,1
+664457128,Math 42,45851648,USD,0.0,248,2,4.0,4.5,3.2.1,4+,Education,37,5,6,1
+1028546978,Dreampath - The Two Kingdoms HD - A Magical Hidden Object Game (Full),923066368,USD,6.99,248,23,4.5,5.0,1.0.8,9+,Games,24,5,4,1
+521577043,VinoCell: manage your wine cellar like a pro,37157888,USD,8.99,248,20,4.0,4.5,3.5.1,17+,Food & Drink,37,5,6,1
+513836029,电信营业厅,107940864,USD,0.0,248,9,3.5,3.0,6.0.1,4+,Utilities,38,0,2,1
+947529440,Osmo Masterpiece,191596544,USD,0.0,247,0,3.5,0.0,2.1.24,4+,Games,24,5,12,1
+1085123968,Crypt of the NecroDancer Pocket Edition,1180269568,USD,4.99,247,33,4.5,4.5,1.09,12+,Games,37,5,11,1
+940595599,Galactic Nemesis,52578304,USD,0.99,247,165,5.0,5.0,1.03,4+,Games,38,4,1,1
+1128311260,The EO Bar,41403392,USD,6.99,247,0,5.0,0.0,1.2.2,4+,Health & Fitness,37,5,1,1
+964351449,Hiking Project,88667136,USD,0.0,247,48,4.0,4.5,3.1.6,4+,Sports,37,5,1,1
+1039264027,Motor Trend OnDemand,67274752,USD,0.0,247,1,2.5,3.0,2.0.13,4+,Entertainment,37,5,1,1
+777512000,miCal - the missing calendar with reminders,32152576,USD,1.99,245,35,4.0,4.0,7.8,4+,Productivity,38,5,8,1
+568827824,Frax - The First Realtime Immersive Fractals,99244032,USD,0.99,245,22,4.5,4.5,1.4.2,4+,Entertainment,37,0,8,1
+1024374740,Dirt Racing Mobile 3D,233611264,USD,3.99,245,175,4.5,4.5,1.0.1,4+,Games,40,4,1,1
+1121740066,PetMOJI – Character Creator & Emoji Keyboard,23908352,USD,0.0,244,19,3.0,2.5,1.0.3,4+,Entertainment,37,0,1,1
+1150132840,BeetMoji,13500416,USD,1.99,244,84,2.5,2.5,1.0.2,12+,Entertainment,37,4,1,1
+1080434313,FabFocus - portraits with depth and bokeh,83113984,USD,3.99,244,163,4.0,4.5,1.0.6,4+,Photo & Video,25,3,9,1
+772561884,News Pro - Breitbart Edition,2683904,USD,0.99,244,129,3.5,4.5,1.0.10,4+,News,37,1,1,1
+1065834036,Chaos Centurions,41930752,USD,0.0,244,1,3.0,5.0,2.3.0,12+,Games,38,4,13,1
+982235342,Take Off - The Flight Simulator,1406915584,USD,0.99,244,19,4.0,4.5,1.0.6,4+,Games,35,5,17,1
+1065599938,HARVEST MOON: Seeds Of Memories,340971520,USD,9.99,244,45,4.0,3.5,1.6,4+,Games,40,5,1,1
+1128075013,InstaSave for Instagram - Download & Repost your own Videos & Photos for Free,11674624,USD,0.0,243,243,4.0,4.0,1.0.0,12+,Photo & Video,40,3,1,1
+1137456779,Poke Map Realtime Locator & Radar for Pokémon Go,62693376,USD,0.0,243,5,3.5,2.0,1.2.5,4+,Utilities,37,1,8,1
+1100092726,Dropple,204987392,USD,0.0,243,0,4.5,0.0,3.2.0,4+,Games,40,5,27,1
+950279845,"Questerium: Sinister Trinity, Collector's Edition HD (Full)",1176809472,USD,6.99,243,243,4.5,4.5,1.2,9+,Games,24,5,11,1
+459660048,STREET FIGHTER II COLLECTION,196291794,USD,3.99,242,218,4.0,4.0,1.00.01,12+,Games,43,0,1,1
+1118082679,Oh...Sir! The Insult Simulator,190519296,USD,1.99,242,12,4.5,5.0,4.0,12+,Games,37,5,1,1
+479889140,DreamZ - Lucid Dreaming. Control your dreams!,46876672,USD,3.99,242,5,4.0,3.0,2.6.0,4+,Games,38,0,1,1
+918997182,EvoCreo - A Monster Capture RPG,138688512,USD,0.99,242,17,4.0,4.0,1.5.0,9+,Games,38,5,1,1
+546688555,Super Why! ABC Adventures,147821568,USD,3.99,242,1,3.0,2.0,3.3,4+,Education,40,5,1,1
+1087282720,Sloomy,76509184,USD,0.0,241,22,4.5,4.5,1.4.1,4+,Games,37,5,1,1
+1086758579,VR HORROR,107664384,USD,0.0,241,145,3.5,3.5,0.93,12+,Games,40,0,1,1
+1140023495,VeeR VR - Virtual Reality,130640896,USD,0.0,241,1,4.0,1.0,1.8.5,12+,Entertainment,37,0,2,1
+469024771,随手记专业版 for  iPad,32996352,USD,0.99,240,1,4.5,5.0,4.0.0,4+,Finance,24,5,1,1
+376436174,"SEC Football Schedules, Scores & Radio",60380160,USD,1.99,240,2,3.0,4.5,5.2.135,4+,Sports,37,5,1,1
+1074278256,SoundCloud Pulse: for creators,18540544,USD,0.0,240,53,3.0,3.0,1.3.2,4+,Social Networking,37,0,1,1
+1074628617,LEGO® Ninjago: Skybound,289332224,USD,0.0,239,97,4.0,4.0,10.0.33,9+,Games,38,5,1,1
+1070855108,Sniper: Traffic Hunter,91393024,USD,0.0,239,129,4.0,4.0,2.0,12+,Games,40,5,1,1
+534960206,Rhonna Collage,123987968,USD,1.99,239,2,4.0,5.0,3.4.1,4+,Photo & Video,38,5,29,1
+1076619087,HISTORY Vault,51880960,USD,0.0,239,24,4.0,4.5,2.2,12+,Entertainment,37,5,1,1
+1053388964,Tap the Blocks,109751296,USD,0.0,238,4,4.5,5.0,1.2.6,4+,Games,38,5,12,1
+1164376202,Flirty Emoji Pro with Stickers Pack for Texting,39568384,USD,1.99,238,230,3.5,3.5,1.2,17+,Utilities,37,2,2,1
+998936876,Dawnbringer,799076352,USD,0.0,238,51,3.5,4.0,1.3.0,12+,Games,37,5,1,1
+670109767,Rebuild 3: Gangs of Deadsville,105250816,USD,4.99,238,12,4.5,4.5,1.6.16,12+,Games,38,5,1,1
+1119003636,Moji Edit- Your Custom Emoji Avatar Face,56797184,USD,0.0,238,41,3.5,4.0,1.3,4+,Utilities,37,0,1,1
+501108781,"Guitar Suite - Metronome, Tuner, and Chords Library for Guitar, Bass, Ukulele",72814592,USD,2.99,238,24,4.5,5.0,2.5.2,4+,Music,38,0,12,1
+910076264,Plug & Play,272482304,USD,2.99,238,166,4.0,4.0,1.1.1,9+,Games,40,4,1,1
+891448329,Model My Diet - Women - Weight Loss Motivation,45313024,USD,0.0,236,3,4.0,3.5,1.12,4+,Health & Fitness,37,4,1,1
+1080290867,Garfield: My BIG FAT Diet,294095872,USD,0.0,236,10,4.0,4.5,1.0.24,4+,Games,38,5,11,1
+482475948,Math Evolve: A Fun Math Game For Kids,161501184,USD,1.99,236,29,4.5,4.0,3.0,4+,Education,43,5,1,1
+1033803652,VR Street Jump for Google Cardboard,107298816,USD,0.0,236,19,3.5,4.0,5.0,4+,Games,37,0,1,1
+579712380,"Alarm Clock Sleep Sounds Pro: Guided Meditation for Relaxation Cycle, Hypnosis and insomnia",89534464,USD,6.99,235,121,4.5,4.5,2.1,4+,Health & Fitness,38,0,6,1
+978524071,Grim Fandango Remastered,3521220608,USD,4.99,235,4,4.0,4.0,1.0.2,12+,Games,25,5,6,1
+861891048,Tantan,35807232,USD,0.0,235,0,4.5,0.0,2.7.4,17+,Social Networking,37,0,5,1
+1059911569,Rusty Lake Hotel,45322240,USD,1.99,235,191,5.0,5.0,1.1.3,12+,Games,43,5,1,1
+1146398155,My Teacher - School Classroom Play & Learn,123944960,USD,0.0,234,24,4.0,4.0,1.3,4+,Games,38,5,10,1
+955260074,Chrome Death,81897472,USD,0.0,234,17,3.5,4.5,1.0.5,9+,Games,37,5,1,1
+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
+1123920179,EXORUN,75174912,USD,0.0,234,4,4.0,5.0,1.3.1,4+,Games,38,5,1,1
+1106666606,Bonecrusher: Free Awesome Endless Skull & Bone Game,115027968,USD,0.0,233,70,3.5,3.5,1.8,9+,Games,40,5,1,1
+401644893,Tagesschau,83928064,USD,0.0,233,56,4.0,5.0,2.1.1,12+,News,37,5,1,1
+1069236120,Green the Planet 2,33005568,USD,0.0,233,123,5.0,5.0,1.6.0,4+,Games,25,5,10,1
+1078050410,Animately - Live Wallpapers,26862592,USD,1.99,233,11,1.5,1.5,1.12,4+,Entertainment,37,0,1,1
+477891975,Train Drive ATS,124789760,USD,3.99,233,2,4.5,4.0,4.10,4+,Games,37,5,14,1
+1174729560,Icarus - A Star's Journey,114270208,USD,0.0,230,209,3.5,3.5,1.01,4+,Games,40,5,1,1
+959937622,My Newborn Kitty - Fluffy Care,97374208,USD,0.0,230,85,3.5,4.0,1.2,4+,Games,40,5,12,1
+834248867,SKRWT,34190336,USD,1.99,230,29,4.5,4.5,1.4,4+,Photo & Video,37,5,21,1
+616728746,Slow Shutter!,2039808,USD,1.99,230,141,4.0,4.5,2.6,4+,Photo & Video,38,5,1,1
+1173688324,Flip,128708608,USD,0.0,230,230,4.5,4.5,1.0,4+,Games,40,5,1,1
+1033076651,TALES OF LINK,111104000,USD,0.0,229,13,4.0,4.5,3.5.6,4+,Games,40,5,2,1
+842617644,AirAttack 2,510278656,USD,0.99,229,34,4.5,5.0,1.1,9+,Games,37,5,1,1
+947281623,Video Call Santa Claus Christmas - Catch Kids Wish,68760576,USD,0.0,228,190,2.5,2.5,3.43,4+,Entertainment,37,5,1,1
+1166974799,"CATCHY Photos-Easter Bunny, Tooth Fairy and more..",81744896,USD,0.0,228,32,1.5,1.5,1.55,4+,Photo & Video,37,2,1,1
+967502646,Air Display 3,60604416,USD,9.99,228,107,3.0,2.5,3.0.3,4+,Utilities,38,4,7,1
+1078170269,Ice Road Trucker Parking Simulator 2 a Real Monster Truck Car Park Racing Game,230511616,USD,0.0,228,228,4.5,4.5,1.1,4+,Games,38,5,1,1
+507937883,THE KING OF FIGHTERS-i 2012,1196212224,USD,2.99,228,228,4.5,4.5,1.0.4,12+,Games,38,0,2,1
+816202468,Crazy Freekick,33681408,USD,0.0,228,11,4.5,4.5,1.0.5,4+,Games,40,5,12,1
+1037820836,Build Your Palace,169842688,USD,0.99,228,19,4.0,4.5,1.3,4+,Games,37,5,1,1
+1081609724,Logic Traces,89832448,USD,0.0,228,97,4.5,4.0,1.0.2,4+,Games,40,4,1,1
+1001473964,Picolo drinking game,35566592,USD,0.0,227,6,5.0,5.0,1.18.0,17+,Entertainment,37,5,6,1
+377831429,The Impossible Quiz! for iPad,16857290,USD,1.99,227,225,4.0,4.0,1.0,9+,Games,26,5,1,1
+1149479233,Christmas Stories: The Gift of the Magi,704336896,USD,0.0,227,120,4.5,4.5,1.0.2,9+,Games,37,5,5,1
+1138117315,Maze Walk VR - Virtual Reality Game Puzzle Apps,268432384,USD,0.0,227,9,3.5,3.0,3.3.1,4+,Games,37,5,1,1
+1079843974,Wizard Swipe,59842560,USD,0.0,226,12,4.5,4.5,1.2.5,4+,Games,40,5,1,1
+1160380201,■ Square it!,76039168,USD,0.0,226,13,4.5,4.5,1.2.2,4+,Games,38,5,1,1
+656773485,BlackOut: Bring the color back in the sky,170045440,USD,2.99,226,96,4.0,4.0,1.07,4+,Games,43,5,1,1
+1107822876,Chef's Quest,128232448,USD,0.0,225,2,4.5,5.0,1.1.4,4+,Games,38,5,14,1
+1013818720,Heroki,373096448,USD,4.99,225,37,4.0,4.5,1.2,9+,Games,37,5,1,1
+737310995,美团外卖-甜点生鲜等零食配送,鲜花蛋糕准时必达,72879104,USD,0.0,225,17,4.5,5.0,5.6.0,4+,Food & Drink,37,0,4,1
+909434792,My College Bookstore,8933376,USD,0.0,225,2,2.5,3.0,2.4.2,4+,Shopping,37,0,1,1
+1080294836,Jumping Balls!,151495680,USD,0.0,225,52,4.0,4.0,1.2,4+,Games,38,5,21,1
+997392079,My Uncrowded,171746304,USD,0.99,224,6,3.0,2.5,18,17+,Games,40,5,1,1
+553918524,Ugly,47773530,USD,0.0,224,224,4.0,4.0,1.0,4+,Entertainment,43,0,1,1
+429885089,QQ音乐HD,139457536,USD,0.0,224,4,3.5,5.0,5.3.1,4+,Music,24,5,3,1
+1050199833,Crossy Maze,123295744,USD,0.0,223,6,4.0,5.0,1.2.7,4+,Games,37,5,1,1
+1171552390,MacMoji ™  by Conor McGregor,69789696,USD,1.99,223,30,5.0,5.0,1.2.1,9+,Entertainment,37,0,1,1
+541868325,Presidential Election & Electoral College Maps,32719872,USD,2.99,222,1,3.5,3.0,2.1,4+,News,37,5,1,1
+942435348,Runtastic Butt Workout & Booty Trainer Plans,94068736,USD,0.0,222,16,4.5,5.0,2.6.2,4+,Health & Fitness,37,5,14,1
+898346723,Color Keyboard Maker - Custom Themes & Emoji,121268224,USD,1.99,222,14,3.5,3.5,2.6.2,4+,Utilities,37,1,7,1
+1035142291,SW/NG - Living Photos. Memories that Swing.,89583616,USD,0.0,222,0,3.0,0.0,2.4.1,12+,Photo & Video,25,0,9,1
+1102362078,Las Vegas Valet Limo and Sports Car Parking,250655744,USD,0.0,220,220,4.5,4.5,1.0,4+,Games,38,5,1,1
+875242534,"Little Builders - Trucks, Cranes & Digger for Kids",245778432,USD,1.99,220,11,3.5,4.5,3.3,4+,Education,37,5,14,1
+644106186,LiveTunes - Live Concert Music Player,128413696,USD,0.99,220,20,4.5,4.5,3.1,4+,Music,37,5,5,1
+909904428,Real Razor (Prank),8322048,USD,0.0,220,25,3.0,2.5,1.6,4+,Entertainment,38,0,5,1
+689859603,SlideStory - Create a slideshow movie and a snap video,54693888,USD,0.0,220,60,4.5,4.5,1.5.7,4+,Photo & Video,40,0,9,1
+311785642,AutoScout24 - mobile used & new car market,141136896,USD,0.0,220,2,4.5,5.0,9.1.10,4+,Productivity,37,5,13,1
+1103942426,ChyMoji by Blac Chyna,10137600,USD,1.99,220,1,4.5,1.0,1.3,17+,Entertainment,37,0,1,1
+1100591575,enzo!,13344768,USD,1.99,220,202,3.5,3.0,1.0.2,4+,Games,38,5,1,1
+872040692,Fresco — Be a part of the news,51374080,USD,0.0,219,1,4.0,4.0,3.1.5,12+,News,37,0,1,1
+481964944,PolyFrame - All In One Collage Maker,108412928,USD,1.99,219,0,4.0,0.0,11.1,4+,Photo & Video,37,5,4,1
+407375789,myCardLists Christmas Card Address Label Printing,21371904,USD,1.99,219,1,4.0,5.0,4.40,4+,Utilities,37,5,1,1
+1079527526,Asterix and Friends,167136256,USD,0.0,219,5,4.5,4.0,1.4.6,9+,Games,38,5,12,1
+1125478670,Nerve - Do You Dare?,173320192,USD,0.0,219,88,2.0,2.5,1.02,12+,Entertainment,40,5,1,1
+649181106,Dr. Panda Handyman,138967040,USD,2.99,218,12,4.0,4.0,1.3,4+,Education,40,5,18,1
+681966300,SUBURBIA City Building Board Game,56918016,USD,4.99,217,7,4.0,2.5,1.2.5,4+,Games,38,5,2,1
+780458840,Fonta,22478848,USD,0.99,217,94,4.0,4.0,1.2.0,4+,Photo & Video,38,0,30,1
+1129755661,Flick Soccer 17,83832832,USD,0.0,217,217,4.0,4.0,1.0,4+,Games,37,5,1,1
+1093409783,Through The Fog!,186491904,USD,0.0,216,90,4.0,4.5,1.6,4+,Games,37,5,23,1
+1094603241,Flappy Hoopers: The Shooting Basketball Players,21773312,USD,0.0,216,213,4.5,4.5,1.8,4+,Games,38,3,1,1
+1176877177,Sweet Tales: Match 3 Christmas,102147072,USD,0.0,215,40,4.5,4.5,1.0.2,4+,Games,38,5,16,1
+1146971602,Star Wars™ Force Band™ by Sphero,559704064,USD,0.0,215,178,4.5,4.5,1.0.6,4+,Entertainment,35,4,1,1
+1063317238,Adventure Cube,143679488,USD,0.0,215,215,4.0,4.0,1.0,4+,Games,40,5,6,1
+1033645055,Smart Watch Notice,1547264,USD,4.99,214,3,1.0,1.0,1.1.0,4+,Utilities,38,1,1,1
+1181582218,Addon Creator Studio for Minecraft PE,61915136,USD,1.99,214,137,4.0,4.5,1.2,12+,Entertainment,37,4,1,1
+938194086,Douchebag Beach Club,33927168,USD,0.0,213,152,4.0,4.0,1.0.3,12+,Games,43,3,16,1
+477091899,Cougar Dating & Life Style App for Mature Women,109448192,USD,0.0,213,30,4.5,4.5,5.2.2,17+,Social Networking,37,5,1,1
+921954809,Craft The World - Pocket Edition,330018816,USD,4.99,213,0,4.5,0.0,1.4.009,9+,Games,37,5,9,1
+1107742773,Bouncy Tower,49349632,USD,0.0,213,5,4.5,4.0,1.2.1,4+,Games,40,5,1,1
+966764324,Ringtone Remixes - Marimba Remix Ringtones,13437952,USD,0.0,213,9,3.5,3.0,2.0,4+,Catalogs,37,0,1,1
+997676587,Matchsticks ~ Free Puzzle Game with Matches,32492544,USD,0.0,212,17,4.5,4.5,1.9,4+,Games,37,4,15,1
+557153158,Shpock Boot Sale & Classifieds App. Buy & Sell,82904064,USD,0.0,212,1,4.0,5.0,3.12.2,12+,Shopping,37,5,6,1
+465173198,Cronometer,17243136,USD,2.99,210,7,3.0,3.5,1.8.4,4+,Health & Fitness,37,5,1,1
+380932800,Zoopla Property Search -UK Homes for Sale and Rent,59411456,USD,0.0,210,4,3.5,4.5,3.3.4,4+,Lifestyle,37,5,1,1
+1124324199,Nukleus,29727744,USD,0.0,210,21,4.5,4.0,1.1.1,4+,Games,37,5,1,1
+528122602,Bluebeam Revu,150128640,USD,9.99,210,2,3.0,2.0,3.8.4,4+,Productivity,24,5,1,1
+387893495,Virtual Regatta Offshore,123541504,USD,0.0,209,1,3.5,5.0,2.2.1,4+,Games,37,5,1,1
+696450432,Electric RC Sim,71966720,USD,2.99,209,21,4.5,4.0,1.4,4+,Games,39,4,1,1
+572432485,Partia,38211584,USD,3.99,209,103,4.5,4.0,1.0.3,9+,Games,43,4,1,1
+1141095843,Hillarymon Go,78057472,USD,0.0,209,208,3.0,3.5,1.1,4+,Games,40,2,1,1
+512166629,驾考宝典-2017最新考驾照驾校学车驾考通,191521792,USD,0.0,208,0,5.0,0.0,6.7.4,4+,Lifestyle,37,5,1,1
+937255144,Pulling USA,173531136,USD,1.99,208,79,4.0,4.0,1.13,4+,Games,40,5,1,1
+878659964,Super Slowmo Shooter,19880960,USD,0.99,208,22,3.5,4.0,1.1,17+,Games,40,5,1,1
+405891908,"Holiday Greetings - 3D Animations, Emoji, Emoticons, Sounds & Videos for Special Occasions",12783616,USD,0.99,208,13,4.0,4.0,10.33,17+,Entertainment,38,4,1,1
+352041837,"Spy Calc - Hide pictures, videos, documents",25097281,USD,1.99,207,50,3.5,3.0,3.0.3,9+,Utilities,40,0,34,1
+1011476555,Green Eggs and Ham - Read & Learn - Dr. Seuss,46465024,USD,3.99,207,149,5.0,5.0,4.0.6,4+,Book,37,5,1,1
+1148119410,Lifeline: Flatline,147597312,USD,1.99,207,161,4.5,4.5,1.0.2,9+,Games,37,4,6,1
+1080310524,VPN Pro | Lifetime Proxy & Best VPN by Betternet,12062720,USD,49.99,207,36,4.5,5.0,1.2.2,4+,Business,37,2,1,1
+1131701133,Never Hillary Clinton,58260480,USD,0.99,207,201,5.0,5.0,1.2,9+,Games,40,4,1,1
+1108475553,Jade Empire™: Special Edition,3896109056,USD,9.99,206,64,4.5,4.5,1.0.2,17+,Games,37,4,10,1
+587849880,Bokeh Lens,3923968,USD,0.99,206,15,4.0,4.5,1.3.6,4+,Photo & Video,37,0,1,1
+393670998,欧路英语词典 Eudic 增强版,152671232,USD,2.99,206,2,4.0,3.5,8.2.1,17+,Reference,37,5,3,1
+987733557,Wolf Craft,157003776,USD,0.99,206,206,4.5,4.5,1.0,9+,Games,40,5,1,1
+392252535,BUBBLE BOBBLE DOUBLE,56954817,USD,4.99,206,128,3.0,3.5,2.0.0,4+,Games,47,5,1,1
+948958859,SpongeBob's Game Frenzy,466039808,USD,2.99,205,3,4.0,3.0,1.5,4+,Games,38,4,1,1
+934003228,Yurei Ninja,187797504,USD,0.0,205,6,4.0,3.5,1.32.3,9+,Games,37,5,1,1
+1084644256,Shopping Mall Car Parking Simulator a Real Driving Racing Game,203485184,USD,0.0,205,170,4.0,4.0,1.0.2,4+,Games,38,5,1,1
+689180123,腾讯欢乐麻将全集,259412992,USD,0.0,205,4,3.5,2.0,6.8.92,12+,Games,43,4,1,1
+694695717,ULTRA4 Offroad Racing,92291072,USD,1.99,205,142,3.5,3.5,1.02,4+,Games,40,5,1,1
+468674094,Scanner911 HD Police Radio Pro,4348875,USD,3.99,204,166,4.0,4.0,3.95,12+,News,26,3,2,1
+480219484,iLearn: US States,118244352,USD,1.99,204,0,4.5,0.0,5.0.1,4+,Education,37,5,1,1
+527705255,"Hurricane Tracker WESH 2 Orlando, Central Florida",29992960,USD,0.0,203,84,4.0,4.5,4.1,4+,Weather,37,1,1,1
+495077699,"Math Duel - Two Player Split Screen Mathematical Game for Kids and Adults Training - Addition, Subtraction, Multiplication and Division!",16588800,USD,2.99,203,114,4.5,4.5,2.1,4+,Education,38,5,1,1
+1055538670,Relight - Better Photos,13051904,USD,4.99,203,24,4.5,4.5,2.0,4+,Photo & Video,37,5,12,1
+1116494563,Hoverboard Simulator - Endless Hover Board Race,34868224,USD,0.0,203,9,4.0,4.5,1.2,4+,Games,40,2,1,1
+1115111967,Collageable PRO - Photo Collage,69005312,USD,1.99,202,105,4.0,4.0,1.2,4+,Photo & Video,37,0,11,1
+1135596302,Lily - Playful Music Creation,75583488,USD,1.99,202,194,4.0,4.0,1.1.1,4+,Music,37,5,4,1
+690215614,Disneynature Explore,440152064,USD,0.0,202,202,4.0,4.0,1.0.0,4+,Entertainment,38,5,2,1
+1041898963,Fairytale Fiasco - Sleeping Spell Rescue,145756160,USD,0.0,201,27,4.0,4.5,2.5,4+,Games,38,5,11,1
+932191687,KORG Module,1385491456,USD,39.99,201,58,4.0,4.0,2.5.1,4+,Music,37,5,5,1
+768592885,宜搜小说-亿万网友共享高品质阅读离线追更,42125312,USD,0.0,201,8,4.5,4.5,2.17.0,17+,Book,38,0,2,1
+995922287,Upperland,126574592,USD,0.0,201,101,4.0,4.0,1.15,9+,Games,38,5,24,1
+1111957680,CARS MOD FOR MINECRAFT PC EDITION - POCKET MINE GUIDE,24840192,USD,1.99,200,200,4.0,4.0,1.0,4+,Entertainment,38,4,1,1
+1001248922,Oddworld: Munch's Oddysee,712294400,USD,2.99,200,103,4.5,4.5,1.0.2,12+,Games,38,5,1,1
+876510541,Osmo Tangram,160265216,USD,0.0,200,2,4.0,3.0,2.4.6,4+,Games,24,5,12,1
+814466047,Star Horizon,955272192,USD,3.99,200,4,4.0,4.0,2.2.3,9+,Games,38,5,10,1
+1108384425,Symmetrica - Minimalistic arcade game,31446016,USD,0.0,200,2,4.5,5.0,2.3,4+,Games,38,5,1,1
+385957032,OPEN Forum,83138560,USD,0.0,200,0,3.5,0.0,6.3,4+,Business,37,0,1,1
+1159410526,DurantEmoji by Kevin Durant,71644160,USD,0.0,200,9,4.5,4.5,1.1.0,4+,Utilities,37,5,10,1
+965748314,Pinata Hunter 3,38805504,USD,0.0,199,199,4.0,4.0,1.0.0,9+,Games,43,3,16,0
+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.0,1.71,4+,Education,40,5,1,1
+720656825,Broken Sword 5 - the Serpent's Curse,1943845888,USD,6.99,199,26,4.0,4.5,1.14,12+,Games,38,5,1,1
+1014902505,Bus Driving Taxi Parking Simulator Real Extreme Car Racing Sim,295681024,USD,0.0,199,199,4.0,4.0,1.0,4+,Games,38,5,1,1
+1129025215,Mafia III: Rivals,173031424,USD,0.0,198,33,3.0,3.0,1.0.226816,17+,Games,37,4,1,1
+593828513,天猫HD,213117952,USD,0.0,198,2,4.5,1.0,5.24.1,17+,Shopping,24,5,2,1
+990928352,Relook,56421376,USD,3.99,198,50,4.5,4.5,1.5.3,4+,Photo & Video,37,5,10,1
+938095479,夢王国と眠れる100人の王子様,98822144,USD,0.0,198,1,4.5,3.0,1.23.0,12+,Games,38,5,1,1
+1141643627,Whataburger,133352448,USD,0.0,197,17,3.0,1.5,1.3.1,4+,Food & Drink,37,0,1,1
+1091144704,"Hair Fashion™ - Girls Makeup, Dressup and Makeover Games",100937728,USD,0.0,197,197,4.0,4.0,1.0,4+,Games,43,5,1,1
+1156704617,Brick Shot,77396992,USD,0.0,197,88,4.5,4.5,1.04,4+,Games,40,5,1,1
+768160271,航旅纵横PRO-官方航班动态、手机值机、机票,72461312,USD,0.99,197,3,4.5,5.0,2.2.7,17+,Travel,38,0,2,1
+935528099,MUSYNX,1274243072,USD,0.99,197,14,5.0,5.0,1.7.5,4+,Games,40,5,4,1
+934390663,Weirdwood Manor,342845440,USD,0.0,197,5,4.5,5.0,1.5.1,4+,Book,37,5,1,1
+1162087330,Hat Trick Shots,35524608,USD,0.0,197,168,4.0,4.0,1.1,4+,Games,38,5,1,1
+578665578,Threema,24925184,USD,2.99,196,2,4.5,4.5,2.10.0,4+,Social Networking,37,5,9,1
+1154065290,Science Girl - School Lab Super Star,111542272,USD,0.0,196,196,4.0,4.0,1.0,4+,Games,38,5,11,1
+341691394,Refills Calendar - Scheduler - Note,35864576,USD,9.99,196,3,4.0,5.0,4.0.1,4+,Productivity,38,5,2,1
+739836039,Literacy Leveler,2455552,USD,4.99,196,68,3.5,3.5,2.0.1,4+,Education,37,5,1,1
+768237041,TV App,962560,USD,0.99,195,70,4.5,4.0,2.1,17+,Lifestyle,43,2,1,1
+1052744981,Babysitter Madness - Help the Nanny,114878464,USD,0.0,195,14,3.5,3.5,1.2,4+,Games,38,5,11,1
+660687537,SAMURAI SHODOWN II,69730304,USD,2.99,195,79,3.5,3.5,1.1.2,12+,Games,43,5,2,1
+1093260038,Master For Minecraft Pocket Edition - Ultimate Guide For PE,12679168,USD,1.99,195,58,4.0,4.0,1.1,4+,Utilities,38,3,1,1
+1142401623,Lip Sync Battle App,124694528,USD,0.0,195,0,3.5,0.0,1.3.3,12+,Entertainment,37,4,17,1
+1068416637,Zenge,449143808,USD,0.99,194,194,4.5,4.5,1.0,4+,Games,38,5,1,1
+385919493,Autohome-Find new&Used Cars For Sale,89219072,USD,0.0,194,0,4.0,0.0,8.0.6,17+,Lifestyle,37,0,2,1
+1139254110,Lifeline: Halfway to Infinity,53539840,USD,2.99,194,194,4.5,4.5,1.0,4+,Games,37,5,8,1
+1086794447,Plummet Dash,24740864,USD,0.0,194,194,4.0,4.0,1.0,4+,Games,40,5,1,1
+431229633,Summer Games 3D,99463168,USD,0.99,193,1,3.5,4.0,2.3,4+,Games,37,5,1,1
+844517266,Wild Kratts World Adventure,170135552,USD,3.99,193,29,3.0,4.0,2.1,4+,Education,40,5,1,1
+421168738,iStatVball 2 iPad Edition,15154176,USD,19.99,193,0,4.5,0.0,2.18.2,4+,Sports,24,4,1,1
+415138546,Feed the Head,18358272,USD,1.99,193,40,4.5,4.0,2.1,4+,Games,38,5,1,1
+1069287597,鬼畜-一亿人都在用的聊天必备神器!,55690240,USD,0.0,193,4,5.0,5.0,5.3.8,9+,Entertainment,38,5,3,1
+399608199,中国银行手机银行,251711488,USD,0.0,192,2,1.5,3.0,3.0.7,4+,Finance,38,0,1,1
+996136866,Aralon: Forge and Flame,1379309568,USD,4.99,192,14,3.5,3.5,2.0,12+,Games,37,4,1,1
+996402903,Pharaoh's Party: Coin Pusher,227435520,USD,0.0,191,74,4.5,4.5,1.4.1,12+,Games,40,5,1,1
+1069787152,Blocky Hockey - Arcade Ice Runner,100264960,USD,0.0,191,135,4.5,4.5,1.3,9+,Games,37,5,2,1
+565951597,Monkey Word School Adventure,296433664,USD,1.99,191,1,4.0,5.0,1.12,4+,Education,38,5,1,1
+1122498143,Light On,212279296,USD,0.0,191,191,4.5,4.5,1.0,4+,Games,40,5,1,1
+1047118827,Axe in Face 2,174221312,USD,0.0,190,48,4.5,4.5,1.1.8,9+,Games,38,4,1,1
+1020947824,Pinball Breaker Forever,34252800,USD,0.0,190,26,4.5,4.0,1.1.5,4+,Games,37,5,2,1
+365235835,TwitCasting Viewer - Watch Live Video & Radio,16292864,USD,0.0,189,0,2.5,0.0,4.169,12+,Entertainment,37,1,9,1
+1151734656,Order's Up,79126528,USD,0.0,188,13,4.0,4.5,1.1,4+,Games,38,5,11,1
+564850309,Urlaubspiraten,22560768,USD,0.0,188,0,5.0,0.0,2.0.19,4+,Travel,38,5,1,1
+1051434604,Snowboard Party 2,1766508544,USD,1.99,188,35,4.5,4.5,1.0.5,4+,Games,38,5,11,1
+1061224933,SketchBook Motion,104206336,USD,0.0,187,2,3.0,2.0,1.1.5,4+,Entertainment,16,5,11,1
+344176018,ImmobilienScout24: Real Estate Search in Germany,126867456,USD,0.0,187,0,3.5,0.0,9.5,4+,Navigation,37,5,3,1
+1142228312,Shadow Bug Rush,285643776,USD,0.0,187,26,4.5,4.0,1.2,12+,Games,38,5,11,1
+757228497,Skateboard Party 2,1294111744,USD,1.99,187,6,4.5,5.0,1.12,12+,Games,38,5,11,1
+1066731455,Remove Master: Duplicate Photos & Contacts Cleaner,28209152,USD,3.99,187,8,4.0,3.5,1.8,4+,Utilities,37,0,11,1
+1041512978,Weather Gods,252779520,USD,2.99,187,4,4.5,5.0,1.3.1,4+,Weather,37,4,5,1
+1026311548,My Town : Hospital,218082304,USD,2.99,186,39,4.0,4.0,1.6,4+,Education,37,5,1,1
+1069803052,Toca Dance,133085184,USD,2.99,186,71,4.5,4.5,1.1,4+,Education,38,5,18,1
+555233356,Clue Solver - for Clue or Cluedo board games,77971456,USD,0.99,185,1,1.5,3.0,1.2,4+,Games,37,1,1,1
+1115128108,RedStory - Little Red Riding Hood,251451392,USD,0.0,185,63,3.5,4.0,1.2.0,4+,Games,37,5,24,1
+1065621093,PE Mods - Custom Keyboard for Minecraft Pocket Edition,11611136,USD,2.99,185,185,2.5,2.5,1.0,4+,Games,37,5,1,1
+1141842849,New York City Car Taxi and Bus Parking Simulator,263579648,USD,0.0,185,169,4.0,4.0,1.0.1,4+,Games,37,5,1,1
+933199580,Zodiac: Orcanon Odyssey,1429069824,USD,4.99,184,38,3.0,3.0,0.8.6,12+,Games,37,3,1,1
+969264934,Imbroglio,40808448,USD,3.99,184,4,4.5,5.0,1.05,9+,Games,40,3,1,1
+655903467,Background Player Pro for Cloud Platforms,51890176,USD,2.99,184,17,4.0,4.5,3.7,17+,Productivity,40,5,54,1
+1025297873,Stickman Volleyball,179424256,USD,0.99,184,149,4.5,4.5,1.0.2,4+,Games,40,5,1,1
+1073473120,"Away ~ Meditation & mindfulness to sleep, relax, focus, breathe",75829248,USD,2.99,184,38,4.5,4.5,2.2.1,4+,Health & Fitness,37,5,2,1
+1095824296,Go Pug Go,65866752,USD,0.0,184,99,4.5,4.5,1.1,4+,Games,38,4,31,1
+1074004076,Dark Parables: Queen of Sands - A Mystery Hidden Object Game (Full),1192589312,USD,6.99,184,184,4.5,4.5,1.0.0,9+,Games,38,5,5,1
+1092146718,The Hero Project: Redemption Season,39504896,USD,4.99,183,0,4.5,0.0,1.1.1,12+,Games,38,5,1,1
+1175953961,Shopkins Run!,169488384,USD,3.99,183,77,4.5,4.5,1.1.1,4+,Games,38,5,1,1
+525176875,Sun Surveyor - Sun & Moon Visualization Tool,26597376,USD,9.99,183,14,5.0,5.0,2.4.2,4+,Photo & Video,35,4,21,1
+307764057,niconico,25808896,USD,0.0,182,0,3.0,0.0,6.52,17+,Entertainment,37,5,3,1
+1100472035,Blocko.,20145152,USD,1.99,182,182,4.0,4.0,1.0.0,4+,Games,37,5,18,1
+586076398,Amaziograph,21285888,USD,0.99,181,14,4.0,4.0,3.0.3,4+,Entertainment,24,5,1,1
+1001177846,Find–the–Line,458349568,USD,2.99,181,1,4.5,5.0,1.6.1,4+,Games,40,5,1,1
+1066882875,Dofus Pogo,272736256,USD,0.0,181,35,4.0,4.5,1.03,4+,Games,38,5,1,1
+650715760,LetterGlow - Graphic Design & Photo Editing,125425664,USD,2.99,181,32,4.0,4.5,2.2.6,4+,Photo & Video,37,0,9,1
+947624478,Fix My Car: Garage Wars - Furious Street Mechanic!,83590144,USD,1.99,181,25,3.5,3.5,3.6,4+,Games,40,5,10,1
+899709775,Elephant Simulator,97153024,USD,0.99,181,181,4.5,4.5,1.0,9+,Games,43,5,1,1
+589220663,2XL Snocross,141524992,USD,1.99,181,3,4.0,3.5,1.2.1,4+,Games,37,5,5,1
+487608658,QQ阅读-拥有海量原著小说的电子书阅读器,122721280,USD,0.0,180,0,3.0,0.0,6.5.01,17+,Book,37,4,3,1
+991764216,PAUSE - Relaxation at your fingertip,77151232,USD,1.99,180,1,3.5,5.0,1.4,4+,Health & Fitness,40,4,1,1
+1085978097,Pythonista 3,506323968,USD,9.99,180,63,5.0,5.0,3.1,4+,Productivity,37,5,1,1
+1091366179,Wonderball - One Touch Endless Ball Arcade Action,192527360,USD,0.0,180,7,4.5,5.0,1.2.4,4+,Games,40,5,6,1
+994119740,Rawr Messenger - Dab your chat,130276352,USD,0.0,180,28,4.0,3.5,1.5.4,12+,Social Networking,37,0,1,1
+1098165513,VR Flight Simulator for Google Cardboard,73867264,USD,0.0,180,82,3.0,3.5,0.8,12+,Games,40,0,1,1
+1062825798,Flail Rider,204178432,USD,0.0,179,179,4.0,4.0,1.0,4+,Games,37,4,1,1
+1174999653,WWEmoji,143140864,USD,1.99,179,20,4.0,4.0,1.5,9+,Entertainment,37,0,1,1
+1035161188,What's My Mutt?,53959680,USD,0.99,178,4,4.0,3.0,1.2.1,4+,Lifestyle,37,5,1,1
+778679533,Isabelle Dance Studio,563912704,USD,0.99,178,114,3.0,3.0,1.0.2,4+,Games,40,4,1,1
+909472985,Icewind Dale: Enhanced Edition,2323812352,USD,9.99,177,73,4.0,4.0,1.4.0,12+,Games,43,5,1,1
+564818797,铁路12306,28961792,USD,0.0,177,0,2.0,0.0,2.80,4+,Travel,38,0,1,1
+556027347,Kirkland's Spin to Win,9965568,USD,0.0,177,10,3.0,3.0,1.1.4,4+,Shopping,38,0,1,1
+879915134,SHAHID for iPhone,19706880,USD,0.0,176,29,2.0,2.5,2.7.9,4+,Entertainment,40,0,2,1
+1023683909,Alliance Wars: World Domination,493512704,USD,0.0,176,6,5.0,5.0,v1.865,12+,Games,38,1,1,1
+1060178390,Adventure To Fate : Quest To The Future JRPG,72667136,USD,3.99,175,116,5.0,5.0,1.3,9+,Games,38,5,1,1
+504270602,Ryanair - Cheapest Fares,116411392,USD,0.0,175,3,2.5,4.5,3.32.0,4+,Travel,37,0,8,1
+918138802,Monster Mania,98089984,USD,0.0,175,22,4.5,4.5,1.0.4,4+,Games,38,5,1,1
+1132762804,News Break - Local & World Breaking News & Radio,57117696,USD,0.0,173,5,4.0,4.0,2.2.4,12+,News,37,0,1,1
+1160723843,Gems Story,106525696,USD,0.0,173,1,4.5,4.0,1.0.3,4+,Games,38,5,16,1
+974529966,Jelly Squares Free,52018176,USD,0.0,173,1,4.5,5.0,1.3.5,4+,Games,37,1,11,1
+1001247878,The Earth by Tinybop,491725824,USD,2.99,173,9,4.0,3.5,1.1.5,4+,Education,38,5,58,1
+1100147750,Trailer Truck Parking with Real City Traffic Car Driving Sim,341624832,USD,0.0,173,173,4.5,4.5,1.0,4+,Games,38,5,1,1
+883144212,The Secret of Raven Rock,108105728,USD,0.99,173,111,4.0,4.0,1.1,4+,Games,38,5,11,1
+694047660,"Budget- Expense Tracker,Bill Reminder,Debt Manager",141714432,USD,0.99,173,0,4.5,0.0,2.13.1,4+,Finance,38,5,11,1
+1137040079,CHiP - Your New Best Friend,82624512,USD,0.0,172,3,4.5,3.5,1.0.26,4+,Entertainment,35,5,12,1
+627986929,OPM Alert,30252032,USD,0.0,172,4,2.0,3.0,2.0.5,4+,News,37,5,1,1
+1143624165,Run From Trump,167212032,USD,0.0,172,23,4.0,3.5,6.0.0,12+,Games,37,1,1,1
+1086978383,LEGO® DC Super Heroes Mighty Micros,164455424,USD,0.0,172,0,4.0,0.0,1.4.393,4+,Games,37,5,1,1
+690802539,ABC Ninja - The Alphabet Slicing Game for Kids,18952192,USD,0.99,172,6,4.0,4.5,3.0,4+,Education,37,5,1,1
+978352903,Sorcery! 3,332834816,USD,4.99,171,18,4.5,4.5,1.1.1,12+,Games,38,5,1,1
+1064020298,Circles,52094976,USD,0.0,171,70,3.5,4.0,1.0.2,4+,Games,40,5,1,1
+1083107235,Evil Dead: Endless Nightmare,259914752,USD,0.0,171,48,4.5,4.5,1.2,17+,Games,37,5,1,1
+1140935852,Tiny Memories - Photo Editor for Baby Pics,42786816,USD,4.99,171,55,4.5,5.0,1.4,4+,Photo & Video,37,5,11,1
+943594558,SpongeBob Bubble Party,126418944,USD,0.99,171,44,4.5,4.0,1.2,4+,Games,38,5,1,1
+1076728632,Sparkwave,66155520,USD,0.0,170,65,3.5,4.0,1.03,4+,Games,37,5,1,1
+1124345691,Babysitter Craziness - Fun Kids Game,95670272,USD,0.0,169,65,4.0,4.0,1.1,4+,Games,38,5,11,1
+904923517,Time tracker and Invoice - TimeTrack,52760576,USD,2.99,169,5,4.5,5.0,4.0.1,4+,Business,37,5,9,1
+971788369,Galactic Keep,518226944,USD,3.99,169,46,4.5,4.0,1.7,12+,Games,40,5,1,1
+1073946317,Goal Finger,37151744,USD,0.0,169,1,3.0,5.0,1.9.0,4+,Games,38,5,11,1
+651277515,Sabres of Infinity,41937920,USD,2.99,169,57,4.5,4.5,1.5.0,12+,Games,38,5,1,1
+1037823594,Ice Cream Truck Girl - Frozen Sweets Maker,227164160,USD,0.0,169,169,4.0,4.0,1.4,4+,Games,40,5,1,1
+745729888,Team Umizoomi: Math Racer HD,389066752,USD,4.99,169,149,3.5,3.5,1.2,4+,Education,26,5,1,1
+380974668,Vestiaire Collective - Pre-Owned Luxury Fashion,138755072,USD,0.0,169,16,4.0,4.5,4.2.7,4+,Shopping,37,5,5,1
+1067596534,This by Tinrocket,47585280,USD,1.99,169,123,4.5,4.5,1.0.2,4+,Photo & Video,37,5,1,1
+1158517484,Spectrum - Colorize Black and White Photos,18656256,USD,4.99,169,33,3.5,3.0,1.4,4+,Photo & Video,37,5,10,1
+945623719,Fairytale Fiasco - Royal Rescue,101302272,USD,0.0,168,2,3.5,4.5,1.4,4+,Games,38,5,11,1
+1093811993,"Pony Princess Academy - Dress Up, Style, Feed & Care for Ponies Game",246378496,USD,0.0,168,168,4.5,4.5,1.3.0,4+,Games,38,5,11,1
+368948250,WEB.DE Mail,101923840,USD,0.0,168,0,4.0,0.0,6.2,4+,Productivity,37,5,2,1
+645675002,Formula Cartoon All-Stars – Crazy Cart Racing with Your Favorite Cartoon Network Characters,927440896,USD,2.99,168,162,4.0,4.0,3.5,4+,Games,43,4,1,1
+1068996563,Princess Salon: Frozen Party,106467328,USD,0.0,168,168,4.0,4.0,1.0,4+,Games,43,5,1,1
+922304974,Cycloramic for iPhone 6/6S (Not the 6+/6S+),32371712,USD,1.99,168,15,2.5,2.5,1.3.1,4+,Photo & Video,25,1,11,1
+1107741196,Banner Saga 2,3321082880,USD,9.99,168,2,4.0,3.0,1.0.7,9+,Games,37,5,7,1
+470412139,Sleepy Hollow: Mystery Legends HD (Full),375949016,USD,4.99,168,168,4.0,4.0,1.0.1,9+,Games,26,5,4,1
+1159273771,Ski Resort Parking Sim Ice Road Snow Plow Trucker,222243840,USD,0.0,167,58,4.0,3.5,1.0.1,4+,Games,37,5,1,1
+960716999,Noizio,31550464,USD,1.99,167,55,4.5,4.5,1.4,4+,Music,38,3,1,1
+1144116292,Water Bottle Flip Challenge - 2k16 Pro!,74035200,USD,0.0,167,12,3.0,3.0,4.0,4+,Games,38,5,1,1
+1076907164,The Build Battle : Mini Game With Worldwide Multiplayer,102461440,USD,0.99,167,80,4.0,4.0,1.2,9+,Games,43,5,1,1
+1096287686,Lifeline: Crisis Line,69201920,USD,1.99,167,167,4.0,4.0,1.0.0,9+,Games,37,5,6,1
+596026805,PhotoPills,39256064,USD,9.99,166,16,4.5,5.0,2.3.3,4+,Photo & Video,37,5,6,1
+1062475106,Mini Watch Games 14-in-1,12071936,USD,1.99,166,4,3.5,5.0,2.3.8,4+,Games,37,0,1,1
+1070689426,武林群侠传—经典单机武侠RPG,129368064,USD,0.99,166,154,5.0,5.0,1.36,9+,Games,40,5,1,1
+1109043621,Baby Beat - Fetal Heartbeat Monitor,16805888,USD,4.99,166,21,1.5,3.0,1.2.0,4+,Lifestyle,37,0,9,1
+942766453,Twilight Struggle,267043840,USD,9.99,166,11,3.5,3.5,1.1.1,12+,Games,24,5,1,1
+1114718412,3D Dubai Parking Simulator Drive Real Extreme Super Sports Car,306912256,USD,0.0,166,166,4.5,4.5,1.0,4+,Games,38,5,1,1
+1082793702,Bumper Jump,54568960,USD,0.0,166,4,4.5,5.0,1.2.3,4+,Games,37,5,4,1
+1068512694,Cartoon Network Superstar Soccer: Goal!!! – Multiplayer Sports Game Starring Your Favorite Characters,398425088,USD,2.99,166,103,3.5,3.5,1.0.1,4+,Games,37,5,1,1
+1156120307,Construction Simulator PRO 2017,356862976,USD,4.99,166,18,2.5,3.0,1.9,4+,Games,38,5,1,1
+925209077,DuckTales: Remastered,1070424064,USD,4.99,165,99,4.0,3.5,1.0.2,4+,Games,38,5,11,1
+645794505,EasyCost - Expense Tracker and Money organizer,9694208,USD,0.99,165,21,4.5,4.5,1.6.6,4+,Finance,38,0,4,1
+1116882930,Change My Location,975872,USD,0.99,165,165,2.0,2.0,1.0,4+,Utilities,37,2,1,1
+985927350,Tamagotchi Classic - The Original Tamagotchi Game,47908864,USD,0.99,165,19,3.0,3.0,1.1.3,4+,Games,37,5,1,1
+1121943475,"April - Layouts, Photo Collage, and Poster Maker",56849408,USD,0.0,165,29,4.5,5.0,2.4.4.1,4+,Photo & Video,37,0,10,1
+505080575,TTPlayer - The Cinema In My Pocket,15943044,USD,2.99,164,22,4.0,3.5,1.2.3,4+,Entertainment,43,0,17,1
+1125065976,Color Bots,190457856,USD,0.0,164,164,4.5,4.5,1.0,12+,Games,40,5,1,1
+1085248903,Disney Princess: Charmed Adventures,617468928,USD,0.0,164,20,3.5,3.5,1.3,4+,Entertainment,37,5,1,1
+1101501512,Lush Cosmetics,51459072,USD,0.0,164,15,4.0,3.5,1.2.2,4+,Shopping,37,0,2,1
+1123579511,Magic Nightfall,197048320,USD,0.0,164,1,4.5,5.0,1.5.0,4+,Games,38,5,30,1
+1118353232,ENYO,95228928,USD,0.0,163,27,3.5,4.0,1.0.3,9+,Games,37,5,1,1
+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
+348684697,franceinfo - l'actualité & les élections en direct,155857920,USD,0.0,162,32,4.0,5.0,5.2.0,17+,News,37,5,2,1
+892393815,Awesome Voice Recorder Pro - Mp3 Audio Recording,30080000,USD,4.99,162,54,4.5,4.5,6.1,4+,Business,37,3,4,1
+1179267591,Multi Level Car Parking 6 Shopping Mall Garage Lot,219144192,USD,0.0,162,162,4.0,4.0,1.0,4+,Games,37,5,1,1
+958848462,GAROU: MARK OF THE WOLVES,136425472,USD,3.99,162,162,4.5,4.5,1.0.0,12+,Games,38,5,2,1
+1112481571,Star Walk 2 Ads+ Night Sky Map - Stars and Planets,234468352,USD,0.0,161,30,4.0,4.0,2.3.8,4+,Education,37,5,12,1
+1069162618,Swap Sword,84971520,USD,2.99,161,56,4.5,4.5,1.2,9+,Games,40,5,1,1
+1060082140,Flick Golf Extreme,71163904,USD,0.0,161,153,4.5,4.5,1.1.2,4+,Games,38,5,1,1
+1041987123,The Westport Independent,71266304,USD,4.99,160,160,3.5,3.5,1.0,9+,Games,40,5,1,1
+1098208851,Jumpy Tree,184512512,USD,0.0,160,131,4.5,4.5,1.0.6,4+,Games,38,5,6,1
+480688850,Snow Day Calculator,8523776,USD,0.99,160,57,2.5,2.0,3.0,4+,Weather,38,5,1,1
+1156447726,"Real Cake Maker 3D - Bake, Design & Decorate",324028416,USD,0.0,160,35,4.5,4.5,1.3,4+,Games,38,5,11,1
+453480684,咕咚-你的跑步骑行运动社区,141333504,USD,0.0,160,0,4.5,0.0,7.16,17+,Health & Fitness,37,0,3,1
+744851208,Pocket Stables,189939712,USD,4.99,160,1,4.5,5.0,2.02,4+,Games,38,5,4,1
+356618664,TeachMe: 3rd Grade,174268416,USD,1.99,160,2,4.0,3.0,2.0.2,4+,Education,37,5,1,1
+583672052,BookScanner App,13821952,USD,1.99,160,12,4.0,4.0,2.9,4+,Book,37,4,22,1
+523520711,PopCam Photo,52942848,USD,0.0,160,3,4.0,5.0,4.0.8,4+,Photo & Video,38,0,9,1
+1112701216,VEHICLES & WEAPONS MODS for Minecraft PC Edition - Pocket Guide,12445696,USD,1.99,159,159,4.0,4.0,1.0,4+,Entertainment,38,3,1,1
+1059218666,Litchi for DJI Mavic/Phantom/Inspire,81354752,USD,22.99,159,0,3.5,0.0,1.16.2,4+,Photo & Video,37,5,23,1
+586149216,Monash University Low FODMAP Diet,48359424,USD,7.99,159,1,3.5,2.0,2.0.4,12+,Medical,38,5,2,1
+1136136909,Soda Coin Party: Free Casino Pusher,258095104,USD,0.0,159,159,4.5,4.5,1.0.4,12+,Games,40,5,1,1
+1144422536,Tentacles - Enter the Mind,197963776,USD,0.0,159,24,3.5,3.0,1.2.0,9+,Games,37,5,10,1
+891294826,8-BIT WATERSLIDE,98380800,USD,0.0,158,13,4.5,3.5,1.09,12+,Games,38,3,1,1
+1080767538,Stack the States® 2,157441024,USD,2.99,158,70,4.5,4.5,1.1,4+,Education,37,5,1,1
+1077051430,Road to be King,150823936,USD,0.0,158,6,4.5,4.5,1.1,9+,Games,38,5,1,1
+1152611696,Black - Live Wallpapers,84504576,USD,1.99,158,59,4.0,4.5,1.3.7,4+,Lifestyle,37,0,11,1
+1085697317,Blocs Wave - Make & Record Music,70608896,USD,0.0,158,7,4.0,4.5,12.1,4+,Music,37,5,1,1
+1054355818,WhenToPost: Best Time to Post Photos for Instagram,14897152,USD,0.0,158,5,3.0,2.0,2.1,4+,Social Networking,38,0,1,1
+419261235,Bitauto Autoprice,79730688,USD,0.0,157,0,5.0,0.0,7.6,17+,Utilities,38,0,3,1
+919968216,Odd Bot Out,12656640,USD,3.99,157,157,4.5,4.5,1.0,4+,Games,40,5,1,1
+1099703034,"Warhammer 40,000: Regicide",754333696,USD,0.99,157,5,3.5,5.0,2.2,17+,Games,37,5,1,1
+1029932207,Papa's Cupcakeria To Go!,80509952,USD,1.99,157,14,4.0,4.0,1.0.2,4+,Games,37,0,1,1
+1142016085,Rusty Lake: Roots,100598784,USD,2.99,156,116,4.5,4.5,1.1.5,12+,Games,40,5,14,1
+1053605807,SPACE by THIX,50789376,USD,2.99,156,38,3.5,3.5,2.0.1,4+,Education,40,5,5,1
+1092463062,Pixelgrams: Pixel Puzzles,83761152,USD,0.0,156,12,4.0,4.5,1.4.0,9+,Games,38,5,1,1
+1151562012,Snake splix,70274048,USD,0.0,155,49,3.0,3.5,6,4+,Games,38,5,1,1
+585658160,Wild Kratts Creature Power,100749312,USD,1.99,155,63,3.5,3.5,2.46,4+,Games,43,5,1,1
+654662054,Procraster - Overcome Procrastination,19279872,USD,1.99,155,71,4.0,4.0,1.3.1,4+,Productivity,37,5,2,1
+721911537,The Occupant,80564224,USD,0.99,155,151,4.5,4.5,1.1,9+,Games,39,4,1,1
+767546279,Spider: Rite of the Shrouded Moon,908151808,USD,4.99,155,38,4.5,4.5,1.1.1,9+,Games,38,4,1,1
+1033049991,The Lost Treasure,129610752,USD,2.99,155,146,5.0,5.0,1.2,4+,Games,40,5,1,1
+1109444394,Respeck on my Name,33304576,USD,0.0,155,60,4.5,4.0,1.2,4+,Games,38,5,1,1
+1146552070,Dog Sled Saga,79204352,USD,3.99,155,50,4.0,4.5,1.0.6,4+,Games,37,5,1,1
+1078665338,Delish Eatmoji Keyboard,29717504,USD,0.0,154,1,2.5,2.0,1.3,4+,Food & Drink,37,0,1,1
+453691481,飞猪,148888576,USD,0.0,154,0,4.0,0.0,8.2.2,17+,Travel,37,0,1,1
+1086539327,Live Wallpapers Pro by Themify - Dynamic Animated Themes and Backgrounds,24157184,USD,2.99,154,17,4.0,4.5,1.2,4+,Entertainment,37,0,11,1
+1094663982,Championship Manager 17,82527232,USD,0.0,154,48,4.0,4.5,1.3,12+,Games,38,5,1,1
+1122682633,Duck Roll,59053056,USD,0.0,154,33,4.5,4.5,1.2.0,4+,Games,38,5,1,1
+715441573,PICTLOGICA FINAL FANTASY,357237760,USD,0.0,154,0,3.5,0.0,1.8.3,9+,Games,36,5,1,1
+1090552213,The Bug Butcher,720882688,USD,3.99,153,121,4.0,4.0,1.0.1,12+,Games,37,5,6,1
+977091580,edjing Pro DJ Music Mixer: turntable to remix MP3,113533952,USD,8.99,153,8,4.0,4.5,1.3.4,4+,Music,37,5,13,1
+891362701,Galileo Offline Maps Pro,54066176,USD,3.99,153,41,4.5,4.5,3.5.8,4+,Travel,37,5,12,1
+1104912882,Obstacle Course Extreme Car Parking Simulator,214042624,USD,0.0,153,153,4.0,4.0,1.0,4+,Games,38,5,1,1
+1108507977,Living Legends: Bound by Wishes - A Hidden Object Mystery (Full),1536766976,USD,6.99,153,153,4.5,4.5,1.0.0,9+,Games,37,4,5,1
+1008496061,Lost Frontier,159918080,USD,2.99,153,49,4.0,4.0,1.0.3,12+,Games,40,5,1,1
+1056224570,MadLipz - Make a Voice Over Parody!,41881600,USD,0.0,153,0,4.5,0.0,1.7.1,12+,Entertainment,37,3,1,1
+1002210090,Pixel Dungeon,48006144,USD,2.99,152,80,4.5,4.0,1.9.2,9+,Games,40,2,1,1
+1161496947,Baby Bottle Challenge - Water Bottle Flip,61094912,USD,0.0,152,56,3.5,3.5,3,4+,Games,38,2,1,1
+1146223410,ThemeBoss - Live Wallpapers,139218944,USD,1.99,152,2,2.5,3.0,1.2.5,4+,Lifestyle,37,0,12,1
+423514795,中国工商银行,86083584,USD,0.0,152,0,2.5,0.0,3.0.0.7.1,12+,Finance,38,0,1,1
+717628209,一骑当千OL-万人国战(Legend Of Warrior),389505024,USD,0.0,151,5,4.5,4.0,2.4.0,9+,Games,40,5,1,1
+1065221752,Super Smash the Office - Endless Destruction!,88428544,USD,0.0,151,62,4.0,4.0,1.1,12+,Games,38,5,1,1
+1109830748,Pewdiebot,76777472,USD,0.99,151,151,4.0,4.0,1.0.1,12+,Games,37,4,1,1
+937793199,Ref Guide for Essential Oils,38311936,USD,6.99,151,28,4.0,4.5,1.0.9,12+,Health & Fitness,37,1,1,1
+1024505111,Cut the Rope,128109568,USD,1.99,151,20,4.5,4.5,2.7.2,4+,Games,40,0,11,1
+1080778007,Cops - On Patrol,539533312,USD,0.0,151,96,3.5,4.5,1.4,4+,Games,25,5,1,1
+1047713752,Yummy Birthday - Party Food Maker,226242560,USD,0.0,151,42,4.0,4.0,1.2,4+,Games,40,5,11,1
+434374726,京东 HD,114121728,USD,0.0,150,0,4.0,0.0,4.1.0,17+,Shopping,24,4,1,1
+585880277,Alphabet Aquarium School Adventure Vol 1: Teachme Letters - Animated Puzzle Games for Preschool and Kindergarten Explorers by 22learn,56923703,USD,1.99,150,120,4.0,4.0,1.2,4+,Games,43,5,1,1
+963753435,PlayGround • Music At Your Fingertips,190360576,USD,0.0,150,16,4.5,5.0,1.2.0,4+,Music,37,5,1,1
+669835030,WinZip Full Version - The leading zip unzip and cloud file management tool,22989824,USD,4.99,150,21,3.0,3.5,4.7.1,4+,Utilities,38,5,2,1
+1059309490,Helmet Virtual Reality 3D Joke,123072512,USD,0.0,150,27,2.5,2.5,1.3,4+,Games,40,3,1,1
+972737732,Dash Masters,155984896,USD,0.0,149,14,4.0,4.0,1.3,9+,Games,37,5,10,1
+423443665,Catholic New American Bible Revised Edition,60426240,USD,2.99,149,0,3.5,0.0,7.5,4+,Reference,37,5,1,1
+1091215595,Toca Dance Free,87115776,USD,0.0,149,104,4.0,4.0,1.0.1,4+,Education,38,5,18,1
+741293420,PDF Pro 2 - The ultimate PDF app,36186112,USD,4.99,149,1,4.0,1.0,2.2.7,17+,Business,37,5,12,1
+1052556488,Dungeons of Chaos UNITY EDITION,125733888,USD,3.99,148,6,5.0,5.0,1.9.682,9+,Games,40,5,1,1
+1004729170,Mikey Jumps,46831616,USD,0.0,148,8,4.0,4.0,2.0,4+,Games,37,5,14,1
+1077809640,ChatMate for WhatsApp,26032128,USD,2.99,148,1,4.0,5.0,4.1.0,4+,Social Networking,24,5,7,1
+1102943846,JIFFMOJI,30017536,USD,1.99,148,1,4.5,1.0,1.3,4+,Entertainment,37,0,1,1
+708388097,Dreii,142579712,USD,3.99,148,20,4.0,4.0,2.0.0,4+,Games,38,5,1,1
+911686788,百度外卖 -美食订餐品质生活,超市水果安全到家,65560576,USD,0.0,148,1,4.0,2.0,4.7.1,4+,Food & Drink,38,0,2,1
+970021572,Adventures of Poco Eco - Lost Sounds: Experience Music and Animation Art in an Indie Game,966435840,USD,3.99,148,54,4.5,4.5,1.8.0,4+,Games,43,5,1,1
+804069802,Shin Megami Tensei (ENG),27975680,USD,7.99,147,147,5.0,5.0,1.0.0,12+,Games,43,0,1,0
+962289279,Impulse GP - Super Bike Racing,140515328,USD,0.0,147,40,4.0,4.0,2.5,4+,Games,37,5,1,1
+1091277956,Battlefleet Gothic: Leviathan,420435968,USD,9.99,147,4,4.0,4.0,1.2.2,9+,Games,38,5,1,1
+1097766064,Fancy Cakes - Endless Tasty Puzzle,209037312,USD,0.0,147,4,4.5,4.5,1.1.6,4+,Games,37,5,18,1
+1161739347,Sweet Tales,111176704,USD,0.0,147,38,4.5,4.5,1.1.1,4+,Games,38,5,16,1
+978985106,Inke—Broadcast an amazing life,137212928,USD,0.0,147,0,4.0,0.0,4.0.55,17+,Social Networking,37,0,2,1
+1110639444,LightX,53415936,USD,1.99,147,73,3.5,4.0,2.1,4+,Photo & Video,37,0,21,1
+1093784264,Notice for smartwatch,1044480,USD,4.99,146,9,1.0,1.0,1.0.4,4+,Utilities,37,3,1,1
+1123109531,Fish Fist,66196480,USD,0.0,146,24,4.5,5.0,1.1.0,9+,Games,40,3,11,1
+653146633,2016 U.S. Open Golf Championship for iPad,146871296,USD,0.0,146,24,2.5,1.5,4.0.127,4+,Sports,24,4,1,1
+1107880005,Dead Venture,57921536,USD,0.99,145,145,4.5,4.5,1.0,12+,Games,38,5,1,1
+1098207701,Sushi Go!,89600000,USD,4.99,145,1,4.5,4.0,1.6,4+,Games,37,4,16,1
+1094310546,It's a Space Thing,54069248,USD,0.0,145,2,4.5,5.0,1.41,9+,Games,37,5,1,1
+1152657123,MyFLO Period Tracker by FLO Living LLC,64217088,USD,1.99,145,30,4.0,3.0,1.2,12+,Health & Fitness,38,5,1,1
+1118844179,Burger Jump,86596608,USD,0.0,145,145,4.5,4.5,1.0,4+,Games,40,5,1,1
+1120991202,Zap Zombies,228882432,USD,0.0,145,20,4.0,4.5,1.8,9+,Games,38,5,3,1
+686420990,Spider Solitaire ∙,62374912,USD,0.0,145,57,4.5,4.5,2.2,4+,Games,37,4,14,1
+641519483,Factory Balls,28557312,USD,0.99,144,62,4.5,5.0,1.5,4+,Games,40,5,16,1
+504614735,Ugly Meter PRO™,12806454,USD,4.99,144,36,2.5,1.5,1.2,4+,Entertainment,40,0,1,1
+1053808624,Hollywood Rush,255488000,USD,0.0,144,27,4.0,4.5,1.3.0,4+,Games,38,5,11,1
+1128801236,Hop Swap,170190848,USD,0.0,144,47,4.5,4.5,2,9+,Games,40,4,1,1
+1076859004,Foodie - Delicious Camera for Food,44275712,USD,0.0,144,4,3.5,2.5,1.5.2,4+,Photo & Video,37,0,21,1
+1078967478,Summer Vacation - Fun at the Beach,95689728,USD,0.0,144,44,4.0,4.0,1.3,4+,Games,38,5,11,1
+983489496,5E Spell Book,6500352,USD,0.0,144,109,3.0,3.0,1.9,4+,Games,40,2,1,1
+1034523226,Endless Learning Academy,770732032,USD,0.0,143,4,4.0,4.0,6.9,4+,Education,37,5,1,1
+554462411,The Tiny Bang Story,189565952,USD,1.99,143,14,3.0,3.5,2.1,4+,Games,37,0,9,1
+1137693912,Swoopy Space,191881216,USD,0.0,142,8,4.0,4.0,3.2.0,4+,Games,35,5,1,1
+803346990,Athletics: Winter Sports (Full Version),147554304,USD,0.99,142,0,4.0,0.0,2.0,4+,Games,37,5,1,1
+985238090,Dot - A Period & Fertility Tracker,42478592,USD,0.0,142,0,4.0,0.0,1.3.6,12+,Health & Fitness,37,0,1,1
+658257516,The Open,110575616,USD,0.0,142,0,2.5,0.0,1.4.9,4+,Sports,37,4,1,1
+1187617475,Kubik,126644224,USD,0.0,142,75,4.5,4.5,1.3,4+,Games,38,5,1,1
+1015603795,PAW Patrol Pups to the Rescue HD,757911552,USD,1.99,142,30,3.0,3.5,1.4,4+,Education,24,5,1,1
+1112068171,My Town : Dance School,346255360,USD,2.99,141,21,4.0,4.0,1.2,4+,Entertainment,37,5,1,1
+933462805,The World II Hunting BOSS,538394624,USD,0.99,141,84,4.5,4.5,1.2,9+,Games,38,5,3,1
+1001244846,The Everything Machine by Tinybop,226968576,USD,2.99,141,34,4.0,4.0,1.1.0,4+,Education,38,5,58,1
+1021933645,Cat-A-Pult: Endless stacking of 8-bit kittens,100000768,USD,0.0,141,1,4.0,5.0,1.9,4+,Games,38,5,1,1
+314819528,Boating Weather,8900608,USD,1.99,141,15,3.0,3.0,4.5,4+,Weather,40,0,1,1
+483161617,270toWin,74190848,USD,0.0,141,5,3.5,4.5,1.7,4+,Education,24,4,1,1
+1032308323,EVERYTOWN,65808384,USD,0.0,141,0,4.0,0.0,1.2.4,4+,Games,40,4,4,1
+1047595823,Geometry Lock,141868032,USD,0.0,140,140,3.5,3.5,1.0,4+,Games,38,5,23,1
+1080169657,Circle Affinity,46349312,USD,0.0,140,140,4.5,4.5,1.0.0,9+,Games,43,5,1,1
+1101109456,My Majesty,200294400,USD,0.0,140,7,3.0,4.5,1.1.1,12+,Games,37,5,1,1
+568141784,"sugar, sugar",25718784,USD,0.99,139,23,4.5,5.0,2.0,4+,Games,40,4,16,1
+1132630378,Artie's Magic Pencil,295772160,USD,2.99,139,2,3.5,5.0,2.2,4+,Education,38,5,14,1
+1124503295,Tina's Diary - Star Fever,107933696,USD,0.0,139,139,4.0,4.0,1.0,4+,Games,43,5,1,1
+771269254,LEGO® Star Wars™:  Microfighters,248688640,USD,0.99,139,28,3.5,3.5,1.51,9+,Games,40,5,1,1
+889704267,FALLMAN – Trampoline Action,53652480,USD,0.0,139,100,4.5,4.5,1.2.1,9+,Games,38,5,1,1
+1035689743,"BusyCal - Calendar, Reminders & To Dos",32659456,USD,4.99,139,1,3.5,4.0,3.1.4,4+,Productivity,37,5,1,1
+1011396240,WSwitch for Belkin WeMo,4703232,USD,1.99,138,82,2.5,2.0,1.3,4+,Utilities,37,5,1,1
+1000593025,Special Air Wing - Flight Simulator,250717184,USD,2.99,138,33,4.0,3.5,1.8.1,9+,Games,38,5,1,1
+1084144010,My Town : School,406969344,USD,2.99,138,86,4.0,4.0,1.1,4+,Entertainment,38,5,1,1
+1071511733,"Hello, Mr.Rich",147336192,USD,0.0,138,4,4.5,3.5,4.1.19,4+,Games,38,5,16,1
+535127218,Upward Basketball Coach,36912128,USD,0.99,138,0,3.5,0.0,2.1.0,4+,Sports,37,0,1,1
+953946902,Divide By Sheep,153575424,USD,2.99,138,99,4.5,4.5,1.2,12+,Games,38,4,1,1
+1010794981,GIPHY KEYS. The GIF Keyboard,51138560,USD,0.0,138,14,3.5,2.5,1.0.3,12+,Utilities,37,0,1,1
+608263551,腾讯微云HD-安全备份共享文件和照片,61128704,USD,0.0,138,0,4.0,0.0,5.1.2,4+,Productivity,24,3,1,1
+289446241,Election 2016 Map,2386944,USD,0.99,137,0,3.0,0.0,5.0,4+,Entertainment,37,1,1,1
+1067024404,Hatoful Boyfriend,1297310720,USD,4.99,137,41,4.5,4.5,1.3,9+,Games,40,5,1,1
+1143897524,Offline Auto IV Calc for Pokemon GO,126790656,USD,0.0,137,4,4.5,5.0,3.4,9+,Games,37,3,2,1
+357421934,PeakFinder Earth,35478528,USD,4.99,137,21,4.0,5.0,3.0.7,4+,Travel,37,3,10,1
+1106558008,YouTurbo,68666368,USD,0.0,136,4,4.5,5.0,1.7,12+,Games,40,4,11,1
+1114893521,Blade Sliders,118496256,USD,0.0,136,136,4.0,4.0,1.0.0,12+,Games,38,3,11,1
+958957112,Black Box - Black Movie List,24799232,USD,0.0,136,11,1.5,1.0,2.5.6,4+,Entertainment,37,5,1,1
+961339405,Prison Life RPG,100126720,USD,3.99,135,76,4.5,4.5,1.4.0,12+,Games,40,5,4,1
+1076834881,Jewel Mania: Valentine's,134692864,USD,0.0,135,135,4.0,4.0,1.4.2,4+,Games,43,5,1,1
+1061115611,European Qualifiers Official App,81842176,USD,0.0,135,0,2.0,0.0,3.1.5,4+,Sports,37,0,8,1
+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
+644077827,Galileo Organ,41422848,USD,9.99,135,36,5.0,5.0,3.0,4+,Music,24,5,1,1
+1100636064,Music and Chill,28763136,USD,0.0,135,36,4.0,4.5,1.1,4+,Music,37,0,1,1
+967812288,Rush Rally 2,161444864,USD,0.99,135,1,4.5,5.0,1.17,4+,Games,38,5,1,1
+1124567713,Rolly Worms,146486272,USD,0.0,135,135,3.5,3.5,1.0.1,9+,Games,40,5,1,1
+1112081391,Head Soccer France 2016,251595776,USD,0.0,135,18,4.5,4.5,1.1.0,4+,Games,38,5,12,1
+1110057737,Cosmojis,29972480,USD,0.0,134,0,3.0,0.0,1.2,12+,Lifestyle,37,0,1,1
+993435362,V for Wikipedia,31600640,USD,4.99,134,1,4.5,1.0,1.2.8,17+,Reference,37,5,2,1
+1086758987,Maps for Minecraft PE (Mine Maps for Pocket Edition),11220992,USD,1.99,134,134,3.0,3.0,1.0,9+,Entertainment,38,4,1,1
+1097520882,Tina's Diary: Spring Outing,97122304,USD,0.0,134,12,4.5,4.0,1.1,4+,Games,38,5,2,1
+1009257820,FreeVRPlayer,7944192,USD,0.0,134,37,2.5,3.0,2.0,4+,Photo & Video,37,2,1,1
+1079643338,Mystery Case Files: Key To Ravenhearst - A Mystery Hidden Object Game (Full),1151292416,USD,6.99,134,62,4.5,4.0,1.0.4,9+,Games,37,5,5,1
+1048629983,Adventures of Mana,492288000,USD,13.99,134,30,4.5,4.5,1.0.7,9+,Games,38,5,2,1
+1088682460,Flippy - Star in famous clips!,85392384,USD,0.99,134,5,4.0,5.0,2.3.3,12+,Photo & Video,37,3,11,1
+586192051,Santa Tracker Christmas Free,49776640,USD,0.0,134,11,3.5,3.5,2.4,4+,Entertainment,37,5,6,1
+1076540771,Trapdoors,35696640,USD,0.0,133,133,3.5,3.5,1.1,4+,Games,40,5,1,1
+1090871721,Farming PRO 2016,340319232,USD,4.99,133,54,4.0,4.0,1.6,4+,Games,37,5,1,1
+566663211,iUniform ASU - Builds Your Army Service Uniform,37122048,USD,3.99,132,31,3.5,3.0,1.13,4+,Utilities,40,0,2,1
+876524974,Osmo Newton,536596480,USD,0.0,132,3,4.0,5.0,2.6.7,4+,Games,24,5,12,1
+469338840,飞常准Pro-全球航班查询机票酒店预订,94053376,USD,0.99,132,1,4.0,5.0,4.0.5,17+,Travel,37,0,2,1
+1065810974,Cooking Mama Let's Cook Puzzle,111119360,USD,0.0,132,54,4.5,4.5,1.0.5,4+,Games,38,5,22,1
+1091640857,"That Dragon, Cancer",3856588800,USD,4.99,132,50,4.5,4.5,1.0.4,12+,Games,25,5,1,1
+859644120,Game Studio Tycoon – Become A Game Developer!,137838592,USD,1.99,131,3,4.5,3.0,2.2,4+,Games,37,4,1,1
+1089666978,Activity++,2604032,USD,2.99,131,13,4.5,4.0,1.1.2,4+,Health & Fitness,37,0,5,1
+948757156,TwinSpires Official Kentucky Derby Wagering App,72011776,USD,0.0,131,16,3.0,2.0,1.4.10,17+,Sports,37,4,1,1
+450555662,The Singing Machine Mobile Karaoke App,32770048,USD,0.0,130,9,2.5,1.5,1.10.4,12+,Music,37,1,1,1
+910908367,Webcams Viewer - Live Video Surveillance IP Cams,13913088,USD,0.0,130,18,3.0,2.5,1.1,4+,Entertainment,25,5,1,1
+1088580204,Skippy Box,80876544,USD,0.0,130,129,4.5,4.5,2,4+,Games,40,3,1,1
+567249360,Bubble Guppies: Animal School Day,829255680,USD,2.99,130,22,4.0,3.5,1.2,4+,Education,40,0,1,1
+1130186793,LOST MAZE,226843648,USD,0.0,130,2,3.5,5.0,1.4.0,4+,Games,38,5,6,1
+968591710,ACDSee Pro,105525248,USD,6.99,130,7,4.5,4.0,3.1.1,4+,Photo & Video,37,5,10,1
+592725830,CloudApp Mobile,15023104,USD,1.99,130,10,2.0,1.5,1.2.3,4+,Productivity,37,0,1,1
+963037888,One More Bounce,112745472,USD,0.0,129,86,4.5,4.5,1.0.2,4+,Games,37,5,1,1
+1045164931,Five Card Quest - Tactical RPG Battles,196746240,USD,2.99,129,40,4.0,4.0,1.2,9+,Games,40,5,1,1
+1093809825,Quiz Tales,239486976,USD,0.0,129,44,4.0,4.0,1.0.4,4+,Games,38,5,2,1
+1021239565,Shopkins Magazine - once you shop…you can’t stop!,19676160,USD,0.99,129,10,3.0,4.0,4.9.99,4+,Games,38,5,1,1
+578186621,车轮查违章-2017全国车辆违章查询助手,69116928,USD,0.0,129,2,4.5,4.5,6.3.2,4+,Travel,37,5,2,1
+754105884,NightCap Camera,6580224,USD,1.99,128,9,4.0,5.0,9.0,4+,Photo & Video,37,5,12,1
+582528844,今日头条(专业版) - 推荐热点新闻资讯、娱乐视频,108479488,USD,0.99,128,0,4.5,0.0,6.1.4,17+,News,38,4,2,1
+474807486,FEMA,8147968,USD,0.0,128,7,3.0,3.5,2.9.1,4+,Weather,37,4,1,1
+935697665,Roller Coaster VR,462231552,USD,0.0,128,0,3.5,0.0,1.7.4,4+,Games,37,0,1,1
+1132336222,Bridge,100835328,USD,0.0,128,32,4.0,4.0,1.1.1,4+,Games,38,5,1,1
+891453663,PAW Patrol Rescue Run,452775936,USD,3.99,128,7,2.0,1.5,3.1,4+,Education,40,0,1,1
+651323845,机票、火车票、汽车票预定助手 for 铁路12306,21944320,USD,0.0,128,74,5.0,5.0,7.3.5,4+,Travel,38,5,2,1
+1019312381,"Hemingboard: Synonyms, Rhymes, Puns in Your Keyboard",169833472,USD,2.99,128,22,4.0,4.0,2.2,4+,Utilities,37,5,1,1
+1081132110,Bouncing Ball 2,101236736,USD,0.0,128,28,4.0,4.0,1.1,4+,Games,38,5,1,1
+517409040,Translator !!,27192320,USD,9.99,128,4,4.0,3.0,1.6.2,4+,Productivity,37,0,30,1
+869869881,Tormentum - a Point & Click Adventure,367181824,USD,4.99,127,48,4.5,5.0,1.5.0,9+,Games,38,5,10,1
+1141037183,Dark Parables: Goldilocks and Fallen Star (Full),1178562560,USD,6.99,127,127,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1149476118,Midnight Calling: Jeronimo,751140864,USD,0.0,127,127,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1124143528,Mystery of the Ancients: Mud Water Creek (Full),1145312256,USD,6.99,127,65,4.5,4.5,1.0.2,9+,Games,37,5,5,1
+1116902833,Jazza's Arty Games,314591232,USD,2.99,127,127,4.5,4.5,2,9+,Games,40,5,1,1
+1046195811,BO3 Ultimate Utility™ for Call of Duty Black Ops 3,47296512,USD,4.99,127,12,3.5,4.5,1.7,12+,Games,43,0,1,1
+1075301033,My Town : Stores,336269312,USD,2.99,127,13,4.0,4.5,1.31,4+,Entertainment,37,4,1,1
+1137689929,Ellen's Emoji Exploji,42780672,USD,1.99,127,13,2.5,3.0,1.3.1,4+,Entertainment,37,5,1,1
+1060085133,Jet Plane Fighter Pilot Flying Simulator Real War Combat Fighting Games,158535680,USD,0.0,127,106,4.0,4.0,1.1,4+,Games,40,5,1,1
+1057633985,Tayasui Blocks,231255040,USD,1.99,127,35,4.0,4.5,2.3,4+,Education,37,5,8,1
+1115415865,Skyscrapers by Tinybop,208843776,USD,2.99,127,14,3.0,4.0,1.1.0,4+,Education,38,5,58,1
+1092148948,"Play-Doh TOUCH - Shape, Scan, Explore",323988480,USD,0.0,126,4,3.5,5.0,1.0.22,4+,Games,37,5,23,1
+1097725920,Tomb Journey (Ancient ruins fantasy adventure),77178880,USD,0.99,126,23,5.0,5.0,1.1.1,9+,Games,40,5,1,1
+539291461,IronMobile - Ironman Athlete Tracker,5086208,USD,0.99,126,4,3.0,1.5,3.22,4+,Sports,37,4,31,1
+991709209,Boyfriend Plus - Brett Jeff and Kai,34203648,USD,0.0,126,7,4.0,4.0,2.0,17+,Games,37,4,6,1
+1121910644,Soccer Stadium Sports Car & Bus Parking Simulator 3D Driving Sim,268843008,USD,0.0,126,126,4.0,4.0,1.0,4+,Games,38,5,1,1
+1031391869,Reelgood - TV Guide for Streaming,74444800,USD,0.0,125,6,4.5,4.0,2.5.2,4+,Entertainment,37,0,1,1
+430234732,Site Audit Pro,54476800,USD,16.99,125,3,4.0,4.5,5.7.6,4+,Productivity,37,5,1,1
+440488550,PlayerXtreme Media Player PRO - Movies & streaming,99442688,USD,4.99,125,6,3.5,2.0,7.0.8,4+,Utilities,37,5,2,1
+1131344092,Drop Out!,48784384,USD,0.0,125,44,4.0,4.0,1.9.1,4+,Games,40,5,1,1
+1148931050,"Super Fashion Show - Girls Makeup, Dressup Games",97480704,USD,0.0,125,125,4.5,4.5,1.0,4+,Games,43,5,2,1
+1030815031,Discovery VR,10979328,USD,0.0,125,2,3.0,1.0,1.5.0,4+,Entertainment,37,0,1,1
+1059302662,Swiperoo,177696768,USD,0.0,125,2,3.5,3.0,1.6.0,4+,Games,37,5,26,1
+585512923,Dr. Panda Veggie Garden,159403008,USD,2.99,124,9,4.0,4.5,1.5,4+,Education,40,4,15,1
+997878440,Flipped Out – The Powerpuff Girls Match 3 Puzzle / Fighting Action Game,640870400,USD,2.99,124,39,4.5,4.0,1.0.2,9+,Games,38,5,9,1
+1021971213,SPL-T,110900224,USD,2.99,124,63,4.0,4.0,1.11,4+,Games,38,3,12,1
+914471589,Fatal,32017408,USD,0.0,124,124,4.0,4.0,1.0,9+,Games,40,5,1,1
+1105408313,My Town : Hotel,414433280,USD,2.99,123,28,4.0,3.5,1.2,4+,Entertainment,37,5,1,1
+1082836132,Win the White House,437022720,USD,0.0,123,77,3.5,4.0,1.1.3,4+,Education,24,5,1,1
+467953363,Best Hunting Times,6603776,USD,2.99,123,9,4.0,4.0,4.2,4+,Weather,38,0,1,1
+1044341430,Maze: Subject 360 HD - A Mystery Hidden Object Game (Full),1149562880,USD,6.99,123,123,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+1131708443,Automatic Call Recorder™ Pro Calls Made with app,16818176,USD,4.99,123,20,3.5,4.0,1.2.9,4+,Productivity,37,4,16,1
+1160751111,djay Pro for iPhone,79205376,USD,4.99,123,60,3.5,3.5,1.0.1,4+,Music,37,0,7,1
+1059407278,My Town : Daycare,345334784,USD,2.99,122,16,4.5,5.0,1.3,4+,Entertainment,37,5,1,1
+398453262,招商银行信用卡掌上生活,160764928,USD,0.0,122,0,2.5,0.0,5.5.9,17+,Finance,37,0,1,1
+1071366753,Glory of Generals 2,111140864,USD,0.0,122,20,3.5,3.5,1.3.1,9+,Games,38,5,5,1
+949344041,LINE BROWN FARM,180995072,USD,0.0,122,6,4.5,4.5,2.1.0,4+,Games,37,5,1,1
+912874848,Wildlife Simulator: Bear,87031808,USD,1.99,122,122,4.5,4.5,1.0,9+,Games,43,5,1,1
+1136283432,Paddle Panic,12455936,USD,0.0,122,13,4.0,4.5,1.1,4+,Games,40,5,1,1
+1050339928,Silk 2 – Interactive Generative Art,29158400,USD,2.99,122,63,4.5,5.0,2.718291,4+,Entertainment,25,4,1,1
+1144446958,"Spa Birthday Party - Nails, Hair, Dress Up & Cake",116488192,USD,0.0,122,25,4.0,4.0,1.4,4+,Games,38,5,11,1
+536475199,Toddler Counting 123,60891136,USD,0.99,121,42,4.0,4.0,3.1,4+,Education,43,5,15,1
+1151506903,Not Karlton Banks Emojis by Eboticons,45600768,USD,1.99,121,7,4.0,4.5,4.8,17+,Social Networking,37,0,1,1
+1139738453,Offroad 4x4 Truck Trials Parking Simulator 2 a Real Stunt Car Driving Racing Sim,294790144,USD,0.0,121,121,4.0,4.0,1.0,4+,Games,38,5,1,1
+876514856,Osmo Words,232315904,USD,0.0,121,0,4.0,0.0,2.4.6,4+,Games,24,5,12,1
+757843896,Cursive Writing Wizard - Kids Learn to Write Letters & Words,52457472,USD,4.99,121,17,5.0,4.5,3.0.2,4+,Education,37,5,2,1
+989844820,Insidious VR,260640768,USD,0.0,121,121,3.5,3.5,1.0,12+,Entertainment,37,0,1,1
+938571723,Pastel Keyboard Themes Extension - 100+ Cute Color,151986176,USD,0.99,120,1,4.0,5.0,2.1.0,4+,Utilities,37,5,2,1
+1136910248,Confetti - Geofilter Design Maker for Snapchat,81762304,USD,0.0,120,61,3.0,3.0,1.0.3,4+,Photo & Video,37,0,1,1
+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
+830302503,百度手机卫士-wifi管家照片管理防骚扰安全助手,64237568,USD,0.0,119,0,4.5,0.0,3.4.1,4+,Utilities,37,0,1,1
+1054829917,BLUK,27399168,USD,1.99,119,8,4.0,4.5,1.3,4+,Games,40,5,13,1
+1082594539,The Enchanted Books,195170304,USD,2.99,119,89,4.5,4.5,1.3,4+,Games,40,5,1,1
+1076402133,Colorcube,37438464,USD,0.99,119,20,4.5,5.0,1.2,4+,Games,37,5,30,1
+694580816,myCANAL - la TV by CANAL en direct et replay,79643648,USD,0.0,118,0,4.5,0.0,2.2.1,12+,Entertainment,37,4,1,1
+316391924,Sky News,91697152,USD,0.0,118,0,3.0,0.0,4.6,12+,News,37,5,1,1
+1053276040,Metro 2033: Wars,444314624,USD,5.99,118,43,3.5,4.5,1.6,12+,Games,38,5,1,1
+962713931,Ys Chronicles 1,450259968,USD,4.99,118,43,4.0,4.0,1.0.2,9+,Games,40,5,1,1
+981093617,WorkMeOut - Jaber Al-Rasheed,74928128,USD,2.99,118,13,4.5,2.0,3.1,17+,Health & Fitness,38,5,2,1
+1014920360,BuriedTown - World's First Doomsday Survival Themed Game,60974080,USD,0.99,118,26,4.0,4.5,1.4.0,9+,Games,40,5,13,1
+1061522995,Pocket Aquarium: Craziest Aquarium,56591360,USD,1.99,118,29,4.0,4.5,3.3,4+,Games,38,5,4,1
+494906425,Who Deleted Me? for Facebook,4303262,USD,0.99,118,118,1.5,1.5,1.0.0,4+,Social Networking,45,1,1,0
+875267105,DragonBox Elements - Geometry Proofs,321501184,USD,4.99,118,20,4.5,4.5,1.1.5,4+,Education,40,5,21,1
+925494667,Papa's Pizzeria To Go!,60056576,USD,0.99,118,8,4.5,5.0,1.0.3,4+,Games,37,0,1,1
+1062825120,Frantic Architect,87051264,USD,0.0,117,52,3.5,4.0,1.0.1,4+,Games,40,4,1,1
+545813738,Finding Nemo Storybook Deluxe,1131319296,USD,2.99,117,7,4.0,2.5,2.0,4+,Book,38,5,1,1
+1077791959,iLive Pix - Spice Up Your Screen.,2147328,USD,1.99,117,5,2.0,3.5,2.4,9+,Lifestyle,37,0,6,1
+819169133,OUTDODGE,41732096,USD,0.0,117,48,4.0,4.0,1.0.3,4+,Games,38,4,1,1
+967383325,Doom & Destiny Advanced,114073600,USD,2.99,117,1,4.0,4.0,2.6.8,12+,Games,37,5,1,1
+431065024,Fake Location,6228992,USD,0.99,117,7,1.0,1.0,3.1,4+,Social Networking,37,5,13,1
+1151455384,Conduct THIS!,221721600,USD,0.0,116,7,4.0,4.5,1.5.3,4+,Games,37,5,1,1
+1088194226,Monster Raid™,365371392,USD,0.0,116,20,4.0,3.5,2.0.0,9+,Games,40,5,8,1
+415842508,"汽车之家-提供新车,二手车报价及资讯",54815744,USD,0.0,116,3,4.0,5.0,3.8.5,17+,Lifestyle,24,5,1,1
+975985952,Return to Grisly Manor,176520192,USD,0.99,116,72,5.0,5.0,1.0.3,4+,Games,40,5,12,1
+1148726949,NHL SuperCard 2K17,426580992,USD,0.0,116,4,3.5,5.0,1.04,4+,Games,37,5,4,1
+1144247611,Jrump,272778240,USD,0.0,116,6,4.0,4.5,1.0.6,9+,Games,40,1,1,1
+554533253,Campaign Manager - A Presidential Election Simulation Game,7053312,USD,2.99,116,40,4.0,4.0,2.0,4+,Games,40,5,1,1
+976063866,Weaphones Antiques: Firearms Simulator,39276544,USD,1.99,116,116,4.5,4.5,1.0.0,12+,Games,43,5,16,1
+971720127,InMind VR (Cardboard),230836224,USD,0.0,115,20,4.5,4.5,1.0.20,17+,Games,37,5,1,1
+482910640,Wars of the Roses - Rosenkönig,305618944,USD,0.99,115,28,4.0,4.5,2.1,4+,Games,43,5,3,1
+946099227,YAZIO – Calorie Counter & Nutrition Tracker,75785216,USD,0.0,115,0,4.5,0.0,4.2.0,4+,Health & Fitness,37,4,17,1
+340368403,クックパッド - No.1料理レシピ検索アプリ,76644352,USD,0.0,115,0,3.5,0.0,17.5.1.0,4+,Food & Drink,37,5,1,1
+1098619553,"Slots Real Las Vegas - Free Casino Slot Machine Games - Bet, Spin and Win Jackpot & Bonus",60484608,USD,0.0,115,115,4.5,4.5,1.02,17+,Games,37,0,1,1
+1065289089,Flight Unlimited 2K16 - Flight Simulator,2998989824,USD,9.99,115,55,3.5,3.5,1.2.1,9+,Games,38,5,1,1
+982528455,Hot Trigger,242970624,USD,0.99,115,115,4.5,4.5,1.0,17+,Games,37,5,1,1
+1053189283,Dark Romance: The Swan Sonata HD - A Mystery Hidden Object Game (Full),1230262272,USD,6.99,115,115,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+982936366,Uptown & Co. - Vintage Filters & insignias.,50565120,USD,1.99,115,79,4.0,4.5,2.0.2,4+,Photo & Video,38,5,1,1
+1074889855,Lost Socks: Naughty Brothers,821411840,USD,0.0,115,46,4.0,4.5,2.0,9+,Games,38,5,1,1
+1176875793,Amusement Park Tour 2: Fun Xmas,91865088,USD,0.0,115,40,4.5,4.5,1.1.3,4+,Games,38,5,16,1
+1143258387,Fired Up,76398592,USD,0.0,115,47,3.0,3.5,1.0.1,9+,Games,38,5,1,1
+575781369,我想有个家,123449344,USD,0.0,115,1,4.5,4.0,1.2.2,4+,Games,43,5,1,1
+1132213599,Sago Mini Babies Dress Up,57439232,USD,0.0,115,12,4.0,4.0,1.3,4+,Education,38,5,1,1
+325658560,BFMTV : l'info en continu,100779008,USD,0.0,115,70,4.0,5.0,5.0.3,17+,News,37,4,1,0
+427555239,"易到 - 低价专车,高品质出行",74724352,USD,0.0,115,1,2.0,1.0,8.0.1,4+,Travel,37,0,2,1
+1079971086,Subliminal Realms: The Masterpiece HD - A Hidden Object Mystery (Full),1043179520,USD,6.99,115,115,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+369111608,iBunkoHD,40479744,USD,6.99,114,0,4.0,0.0,3.4.4,17+,Book,24,5,3,1
+989733380,AirTycoon 4,247309312,USD,2.99,114,0,4.0,0.0,1.4.2,4+,Games,40,5,7,1
+1012274888,Zen Brush 2,69114880,USD,2.99,114,0,4.5,0.0,1.12,4+,Entertainment,37,5,2,1
+493912733,Adrian James 6 Pack Abs Workout,73519104,USD,2.99,114,15,4.5,4.5,4.3.2016091601,4+,Health & Fitness,37,0,1,1
+959390742,Snail Bob 2 Deluxe,460804096,USD,2.99,114,42,4.5,4.5,1.1.1,4+,Games,38,5,21,1
+1043269825,Swap Ball - Endless Arcade Bouncer,99272704,USD,0.0,113,113,4.0,4.0,1.1,4+,Games,40,5,1,1
+1028610115,Teenage Mutant Ninja Turtles: Portal Power,636086272,USD,3.99,113,3,4.0,5.0,2.2,9+,Games,37,5,8,1
+932441611,TruckSimulation 16,1464656896,USD,0.99,113,78,4.5,4.5,1.0.4,4+,Games,35,5,17,1
+928403019,Halloween Face Paint Spa - Kids Makeup Salon Games,104049664,USD,0.0,113,3,3.0,2.5,1.4,4+,Games,38,5,25,1
+842503500,Missguided,85928960,USD,0.0,113,9,3.5,4.5,5.9.4,4+,Shopping,37,5,7,1
+928579927,"GameDay Pro Football Radio - Live Games, Scores, Highlights, News, Stats, and Schedules",18788352,USD,1.99,113,52,5.0,5.0,3.0,4+,Sports,38,0,1,1
+510173686,Inspiration Maps VPP,174490624,USD,9.99,112,8,4.0,3.0,2.1,4+,Education,37,5,3,1
+533956710,Modern Essentials,53814272,USD,6.99,112,9,3.5,3.5,8.0.0,12+,Health & Fitness,37,1,1,1
+821374885,Sight Words Ninja - Slicing Game to Learn to Read,55710720,USD,1.99,112,8,4.0,4.5,2.0,4+,Education,37,5,1,1
+441179131,ibis Paint - speed painting,31885312,USD,4.99,112,1,4.5,5.0,5.0.1,12+,Entertainment,37,5,19,1
+308834491,20 Minutes.fr - l'actualité en continu,109616128,USD,0.0,112,0,3.5,0.0,5.0.11,12+,News,37,5,17,1
+1065376321,VR Car Driving Simulator for Google Cardboard,179395584,USD,0.0,111,53,3.5,4.5,1.3,4+,Games,40,0,1,1
+1040120819,One Button Travel,130982912,USD,2.99,111,6,3.5,4.0,2.0.7,12+,Games,37,4,2,1
+996509117,球球大作战,124596224,USD,0.0,111,3,4.0,4.5,6.4.5,4+,Games,38,5,1,1
+1071633581,The Lost Heir 2: Forging a Kingdom,63964160,USD,2.99,111,63,5.0,5.0,1.0.3,12+,Games,38,5,1,1
+1063780668,Ridge Runner,56753152,USD,0.0,111,43,4.0,4.5,1.1.0,9+,Games,40,4,31,1
+1102448236,Winter Fugitives 2: Chronicles,166257664,USD,0.0,111,8,4.0,4.5,1.4,12+,Games,38,5,6,1
+646619812,OnCamera,94908416,USD,0.0,111,12,2.5,3.5,1.6.3,4+,Lifestyle,37,1,1,1
+1047653834,Ball Maze!,151479296,USD,0.0,110,27,3.0,3.5,1.2,4+,Games,40,5,23,1
+1114061571,EmojiMom - An Emoji App for the Modern Mom,5844992,USD,0.0,110,10,2.5,3.5,1.7,12+,Entertainment,37,0,1,1
+980307863,Tales From Deep Space,896630784,USD,3.99,110,110,4.0,4.0,1.0,9+,Games,25,4,8,1
+1018704225,Game Studio Tycoon 2: Next Gen Developer,249491456,USD,3.99,110,110,4.0,4.0,3.4,4+,Games,37,4,1,1
+1066322956,Doo - Get Things Done,16439296,USD,3.99,110,3,4.0,5.0,2.0.3,4+,Productivity,37,5,9,1
+1008546049,"Whink - Note taking, Annotate & Record Lectures",76367872,USD,4.99,110,0,4.0,0.0,3.5,4+,Productivity,37,5,4,1
+1083708143,Walls & Balls,113096704,USD,0.0,110,0,4.0,0.0,2.3,4+,Games,25,5,9,1
+948201260,Classic Poker - Texas Holdem,103760896,USD,0.0,110,9,4.0,4.0,3.0.8,12+,Games,40,5,9,1
+1107704042,Nancy Drew Codes and Clues Mystery Coding Game,210697216,USD,0.0,110,7,4.5,4.5,2.0.1,4+,Education,38,5,1,1
+1090759947,TohTum,75922432,USD,0.0,110,55,4.0,4.5,1.0.3,4+,Games,38,5,1,1
+1147432809,ARP ODYSSEi,105809920,USD,29.99,110,38,4.5,4.5,1.0.3,4+,Music,25,5,2,1
+1179840697,1600,261758976,USD,0.0,110,68,3.5,3.5,1.1,4+,Education,37,4,1,1
+1124073720,Switchy Sides,61278208,USD,0.0,109,34,4.5,4.5,1.0.1,4+,Games,40,5,1,1
+1119018463,Virtual Reality Moon for Google Cardboard VR,105992192,USD,0.0,109,63,3.0,3.0,0.9,4+,Games,40,0,1,1
+1052857551,Redemption Cemetery: The Island of the Lost - A Mystery Hidden Object Adventure (Full),1082765312,USD,6.99,109,109,4.0,4.0,1.0.0,9+,Games,38,5,5,1
+1071224055,Circlify,110781440,USD,0.0,109,21,4.0,4.0,1.2,4+,Games,40,5,1,1
+1097885049,Sweet Princess Makeup Party - Girls Dressup Games,95408128,USD,0.0,109,11,4.0,4.0,1.2,4+,Games,38,5,2,1
+1181601206,Truth or Dare ·,31555584,USD,0.0,109,32,4.5,4.5,1.1,17+,Entertainment,37,0,10,1
+582284493,Radio - USA,56379392,USD,0.0,109,2,4.0,3.0,5.2.4,4+,Entertainment,37,5,15,1
+1039129211,Dark Tales: Edgar Allan Poe’s The Mystery of Marie Roget HD - A Hidden Object Mystery (Full),848699392,USD,6.99,109,109,3.5,3.5,1.0.0,9+,Games,24,5,5,1
+974625290,New Star Cricket,88300544,USD,0.0,109,12,4.5,4.5,1.05,12+,Games,38,5,1,1
+576959436,Incredipede,77213696,USD,3.99,108,10,3.0,4.0,1.76,4+,Games,39,4,1,1
+657638474,Lightbot : Programming Puzzles,55465984,USD,2.99,108,9,4.5,4.5,1.6.7,4+,Games,43,5,1,1
+380834987,Army Fitness APFT Calculator,15759360,USD,0.99,108,74,4.0,4.5,2.4,4+,Utilities,40,3,1,1
+1055359142,SkySafari 5 Plus,656701440,USD,14.99,108,1,5.0,5.0,5.3.3,4+,Reference,37,5,1,1
+1118918368,Talented Pets Show,82972672,USD,0.0,108,108,4.0,4.0,1.0,4+,Games,43,5,1,1
+1122904897,ShadeMoji by The Shade Room,81028096,USD,0.99,108,108,4.5,4.5,1.0,12+,Entertainment,37,0,1,1
+482465886,Video Compressor,12115968,USD,1.99,108,6,4.0,3.0,3.0,4+,Photo & Video,37,3,1,1
+968016877,Winterstate,148738048,USD,0.0,108,108,3.5,3.5,1.5.1,9+,Games,38,5,8,1
+1080257114,Brick Rage - Not for the Weak Heart,88905728,USD,0.0,108,12,4.0,4.0,2.4.0,4+,Games,38,5,3,1
+899193797,Daniel Tiger's Grr-ific Feelings,678635520,USD,2.99,108,1,3.5,5.0,1.5,4+,Education,24,5,1,1
+1080345135,Heavy Metal Tennis Training,64642048,USD,0.0,107,12,3.0,4.0,1.2.2,9+,Games,40,5,1,1
+952877179,VR Roller Coaster,169523200,USD,0.0,107,102,3.5,3.5,2.0.0,4+,Games,37,5,1,1
+353573707,"Coaster VR, Extreme Endless 3D Stereograph",30977024,USD,0.99,107,0,2.5,0.0,1.1.5,4+,Entertainment,37,5,1,1
+1148053146,Osteya: Adventures,65756160,USD,0.0,107,5,3.5,5.0,2.0.2,9+,Games,37,5,1,1
+824940089,InsSave - Download & Save Photos & Videos From Instagram With Ease!,2314240,USD,0.99,107,97,3.0,3.0,1.2,4+,Social Networking,38,2,1,1
+978236345,WeicoPro 4,80967680,USD,0.99,106,0,3.0,0.0,4.9.12,17+,Social Networking,38,0,5,1
+1059443303,Line Defense,143679488,USD,0.0,106,1,4.5,5.0,2.2.0,4+,Games,37,5,1,1
+1071146166,Head of State,88228864,USD,2.99,106,40,4.0,4.0,1.1,12+,Games,37,5,1,1
+941920716,oh my giraffe,10219520,USD,1.99,106,100,4.5,4.5,1.1.0,4+,Games,38,4,1,1
+1064885978,Junk Yard Trucker Parking Simulator a Real Monster Truck Extreme Car Driving Test Racing Sim,214940672,USD,0.0,106,106,4.0,4.0,1.0,4+,Games,38,5,1,1
+947548754,Paul Pixel - The Awakening,107995136,USD,1.99,106,4,4.5,4.0,1.8,9+,Games,37,5,3,1
+587868848,Score Darts,8620032,USD,3.99,105,28,4.5,4.5,3.61,4+,Sports,38,5,1,1
+1011983738,Precision Ukulele Tuner - with Chords & Metronome,49049600,USD,1.99,105,52,4.5,5.0,3.1.0,4+,Music,37,5,1,1
+957442616,Fleet Air Travel Guide & Airport Directory,51909632,USD,0.0,105,6,3.5,5.0,3.0.4,4+,Travel,37,0,15,1
+1004871562,Sky Viper Video Viewer,232875008,USD,0.0,105,13,3.0,2.0,2.4,4+,Entertainment,37,1,1,1
+1077302012,Crime City Real Action Simulator Theft kill shooting- sniper game,295357440,USD,0.0,105,19,3.0,4.0,1.7,17+,Games,40,5,1,1
+1055697824,"Princess Pet Palace: Royal Puppy - Pet Care, Play & Dress Up",132009984,USD,0.0,105,70,4.0,4.0,1.1,4+,Games,40,5,1,1
+1044534198,Knots - The Ultimate Brain Challenge,182890496,USD,0.0,105,0,3.5,0.0,1.5.0,4+,Games,37,5,1,1
+1127492845,Candy's Vacation - Beach Hotel,96538624,USD,0.0,105,105,4.5,4.5,1.0,4+,Games,43,5,2,1
+1130638492,Trump Bounce,68929536,USD,0.0,105,105,4.0,4.0,1.1,4+,Games,38,1,1,1
+895361200,SmartFit - Wristband,17241088,USD,0.0,105,57,2.5,3.0,2.3.4,4+,Health & Fitness,40,0,1,1
+625411864,Sproggiwood,438601728,USD,4.99,105,37,4.5,4.5,1.2.10,12+,Games,40,5,1,1
+1178454060,Mannequin Challenge,59572224,USD,0.0,105,58,4.0,4.5,1.0.1,4+,Games,38,5,1,1
+1041406978,DOFUS Touch,3366912,USD,0.0,104,3,4.0,4.0,1.9.28,12+,Games,37,5,6,1
+1095681176,Ninja Dude vs Zombies - endless tap 'n' slash zombie arcade game,83969024,USD,0.0,104,17,4.0,4.0,1.2.1,12+,Games,38,5,10,1
+930777501,The Clymb — Gear Deals,8035328,USD,0.0,104,30,3.0,1.5,1.31,4+,Shopping,37,0,1,1
+1116249582,Mystery Tales: Her Own Eyes HD - A Hidden Object Mystery (Full),1452132352,USD,6.99,104,104,4.5,4.5,1.0.2,9+,Games,24,5,4,1
+594117733,仙劍奇俠傳1 DOS懷舊版,308125696,USD,1.99,104,54,4.0,4.0,1.5,4+,Games,43,5,3,1
+1102742855,Red Bull Air Race 2,593355776,USD,0.0,104,2,4.0,4.0,1.1.1,4+,Games,37,4,1,1
+1109489005,ASA's Sailing Challenge,276637696,USD,3.99,104,74,4.0,4.5,1.1,4+,Education,37,4,1,1
+932747118,Shadowrocket,20136960,USD,2.99,104,3,4.0,3.0,2.1.7,17+,Utilities,37,5,3,1
+1147452760,European War 5: Empire,127559680,USD,0.0,104,41,4.0,4.0,1.2.2,9+,Games,37,5,5,1
+1089471259,Great App for Who is Your Daddy version,22635520,USD,0.99,103,98,1.5,1.5,1.1,12+,Reference,38,3,1,1
+1176147574,"SofaScore Live Sports: Scores, VIDEO & Stats",55877632,USD,0.0,103,1,4.0,5.0,6.1.13,12+,Sports,37,4,26,1
+1063781546,Epic Orchestra,54722560,USD,0.0,103,103,4.5,4.5,1.0,4+,Games,37,5,1,1
+1146696085,"Philm-Video&Photo Editor,REAL-TIME Magic Filter",90322944,USD,0.0,103,0,4.0,0.0,1.4.0,4+,Photo & Video,38,0,3,1
+836464625,ArtPose,164829184,USD,2.99,102,14,4.5,4.5,1.6,12+,Reference,40,4,1,1
+1161656633,Silly Sausage: Doggy Dessert,90156032,USD,0.0,102,102,4.5,4.5,1.0.1,9+,Games,40,5,1,1
+1135204321,PokeMaps for Pokemon GO (Original),8155136,USD,2.99,102,5,1.5,3.0,1.7,4+,Entertainment,38,2,1,1
+417352269,GMX Mail,100336640,USD,0.0,102,1,4.5,5.0,6.2,4+,Productivity,37,5,2,1
+437314677,Digital Domain,13512704,USD,0.0,102,0,2.0,0.0,3.0.4,9+,Photo & Video,37,4,9,1
+1129693551,Trucker Parking Simulator 2 a Real Monster Truck & Lorry Driving Test,358992896,USD,0.0,101,101,4.0,4.0,1.0,4+,Games,38,5,1,1
+1150981743,Toon Shooters 2: The Freelancers,245209088,USD,0.0,101,8,4.0,4.5,2.06,9+,Games,37,5,1,1
+803781859,作业帮-小初高学生拍照答疑学习辅导助手,134531072,USD,0.0,101,0,4.5,0.0,8.6.4,4+,Education,38,5,1,1
+504274740,猫眼电影 - 一网打尽好电影,99992576,USD,0.0,101,0,4.5,0.0,7.9.2,4+,Entertainment,37,0,3,1
+351184863,AlloCiné : Cinéma et Séries,123450368,USD,0.0,101,1,4.0,5.0,7.1.0,12+,Entertainment,37,5,1,1
+1020273791,Team USA App,42460160,USD,0.0,101,3,2.5,4.0,2.1,4+,Sports,37,4,1,1
+932476009,Crazy Eye Clinic - Doctor X Adventures,82837504,USD,0.0,101,27,3.0,2.5,1.2,12+,Games,40,5,12,1
+996948313,Eisenhorn: XENOS,3008276480,USD,5.99,100,13,3.5,3.5,1.4,12+,Games,25,5,1,1
+417200582,唯品会-欢乐颂2独家电商 同款热卖,160313344,USD,0.0,100,0,4.5,0.0,6.1.2,12+,Shopping,38,0,1,1
+909196467,Homido 360 VR player,58593280,USD,0.0,100,71,3.5,3.5,2.0,17+,Photo & Video,38,5,1,1
+981888264,NextGen Car Game Racing,105136128,USD,0.99,100,100,3.5,3.5,1.0,4+,Games,43,4,1,1
+1035460404,Don't Be Squared,89306112,USD,0.0,100,19,4.0,4.0,0.8,9+,Games,38,5,1,1
+1144458512,Dreamdays Countdown IV: count down to days matter,68038656,USD,0.99,100,6,4.5,3.5,4.1,4+,Utilities,37,0,12,1
+946930094,FineScanner Pro - PDF Document Scanner App + OCR,63974400,USD,59.99,100,4,4.0,4.5,6.2.5,4+,Business,37,5,12,1
+1039728737,Street Fighter Puzzle Spirits,150564864,USD,0.0,100,100,2.5,2.5,1.00.01,12+,Games,38,4,1,1
+990668324,Formulas - Photo Lab Effects and Custom Frames,274699264,USD,1.99,99,39,4.5,4.0,2.3,4+,Photo & Video,37,5,13,1
+1135213693,Panic Drop,71521280,USD,0.0,99,57,4.0,3.5,1.03,9+,Games,40,1,1,1
+1039637425,Extreme Forklifting 2,103745536,USD,0.0,99,81,4.0,4.0,1.1,4+,Games,40,5,1,1
+998179061,Private School Days,55376896,USD,4.99,99,8,4.0,4.0,1.1.4,17+,Games,40,5,16,1
+1128623591,Dr. Oz,81666048,USD,0.0,99,4,2.0,1.0,2.1,17+,Health & Fitness,13,0,1,1
+1128233478,Super Powerboy,1115999232,USD,1.99,99,54,4.5,4.5,1.0.1,12+,Games,25,5,1,1
+810405576,StaffWars,40855552,USD,0.99,99,13,4.5,3.5,1.70.0,4+,Education,40,5,1,1
+1065902981,Princess Libby: Frozen Party,104026112,USD,0.0,99,2,4.0,5.0,1.1,4+,Games,40,5,2,1
+1134805859,Isoland,411290624,USD,0.99,99,1,4.5,5.0,2.0.5,4+,Games,37,4,7,1
+1046553860,A Tiny Game of Pong,2012160,USD,1.99,99,36,4.0,4.0,1.1,4+,Games,37,0,1,1
+1022239163,Maim Street,174329856,USD,0.0,99,59,4.5,4.5,1.0.1,12+,Games,37,5,1,1
+1125469780,Rogue Ninja,181551104,USD,0.0,99,6,5.0,5.0,1.7,12+,Games,40,5,1,1
+1159290179,Vector 2 Premium,275088384,USD,1.99,99,85,4.0,4.0,1.0.6,9+,Games,37,5,1,1
+1096168624,Cheer Updates,33499136,USD,1.99,98,42,2.0,1.5,2.0.2,4+,Sports,37,0,1,1
+1067468386,Level With Me,38602752,USD,0.0,98,19,4.5,4.5,1.23,4+,Games,37,4,1,1
+1096022095,Princess Libby's Perfect Beach Day,139961344,USD,0.0,98,11,3.5,4.0,1.3,4+,Games,38,5,2,1
+1134176687,PhelpsMoji by Michael Phelps,35904512,USD,0.99,98,55,4.5,5.0,1.2,4+,Entertainment,37,0,1,1
+1073907652,Cardiograph,58401792,USD,1.99,98,95,4.5,4.5,1.2.2,4+,Health & Fitness,37,3,23,1
+1140451547,Shot Tracer,302747648,USD,6.99,98,9,2.0,4.0,5.5,4+,Sports,37,5,1,1
+1123371085,Crazy Circle,39796736,USD,0.0,98,65,4.5,4.5,1.0.1,4+,Games,38,5,1,1
+1187279979,Add-Ons Studio for Minecraft,22999040,USD,2.99,97,97,3.0,3.0,1.0,4+,Games,37,5,3,1
+1069536554,Ask Drift0r (for Call of Duty: Black Ops 3),49651712,USD,1.99,97,50,4.0,4.5,1.3,12+,Games,40,1,1,1
+1103857857,Miss U: Official App,51052544,USD,0.0,97,0,3.0,0.0,3.2,9+,Entertainment,37,1,1,1
+591584458,返利-专注网购省钱的APP,72076288,USD,0.0,97,0,4.0,0.0,5.11.1,17+,Shopping,38,0,2,1
+972426013,Filters for iPhone and iPad,91374592,USD,1.99,97,5,4.0,5.0,3.1,4+,Photo & Video,37,5,1,1
+1116549013,Face Effects & Filters,13231104,USD,0.0,97,7,3.0,2.5,1.6,4+,Entertainment,37,2,1,1
+1076440502,A.P.E.X,74776576,USD,0.0,96,96,4.5,4.5,1.0,4+,Games,38,5,1,1
+936966570,Simple Machines by Tinybop,463391744,USD,2.99,96,11,3.5,4.0,1.0.8,4+,Education,38,5,58,1
+1059213655,"Gifstory - GIF Camera, Editor and Converter of Photo, Live Photo, and Video to GIF",29030400,USD,0.99,96,30,4.5,4.5,1.2.2,4+,Photo & Video,37,0,1,1
+1082674903,NEO TURF MASTERS,53506048,USD,2.99,96,38,4.5,4.5,1.0.1,4+,Games,38,5,10,1
+1133848135,Fake GPS Location Spoofer,15209472,USD,2.99,96,6,1.5,1.0,1.0.5,4+,Entertainment,37,3,1,1
+594851821,Bombsquad - Defuse the Bomb,240980992,USD,4.99,96,0,3.0,0.0,2.0,12+,Games,37,5,1,1
+1180467988,Christmas Swap 3 -Match toy & candy to countdown,62359552,USD,0.0,96,96,4.5,4.5,1.0,4+,Games,40,3,25,1
+959452391,Runestone Keeper,190766080,USD,2.99,95,38,4.5,4.0,1.2.0,9+,Games,40,5,8,1
+1098187391,My Town : Wedding Day,409982976,USD,2.99,95,8,4.0,3.5,1.21,4+,Entertainment,37,5,1,1
+1041317729,Delicious - Emily's Tea Garden,110645248,USD,9.99,95,25,2.0,2.5,1.2,4+,Games,24,5,8,1
+544372354,Real Metronome Pro,56131584,USD,1.99,95,22,4.0,4.0,2.5.7,4+,Music,37,3,23,1
+1135667527,OVO Store,6189056,USD,0.0,95,0,4.5,0.0,2.0.8,4+,Shopping,37,0,1,1
+1100696971,Gmojiz,73951232,USD,1.99,95,1,3.0,1.0,1.4,17+,Entertainment,37,5,1,1
+581585669,Elmo Loves 123s,520400896,USD,4.99,95,21,3.5,3.5,1.3.0,4+,Games,24,5,1,1
+1109024890,Legend of the Skyfish,503228416,USD,3.99,95,23,3.5,4.0,1.06,9+,Games,37,5,1,1
+1136993233,Apollo Justice Ace Attorney,2424459264,USD,0.99,95,57,3.5,3.5,1.00.01,4+,Games,38,5,1,1
+937976391,Heads Up! Kids,102524928,USD,0.99,94,10,3.5,3.5,2.0.1,4+,Games,38,0,1,1
+998059934,Equipd Bible,135132160,USD,2.99,94,26,4.5,4.0,3.2,4+,Productivity,38,5,20,1
+1145485982,Vikings: an Archer's Journey,130727936,USD,2.99,94,32,4.5,4.5,1.3,9+,Games,37,5,11,1
+947805279,Crane Connect,24176640,USD,0.0,94,7,2.0,1.0,1.5.8,4+,Health & Fitness,37,5,5,1
+1132754743,Pigu,121892864,USD,0.0,94,17,4.5,4.5,1.35,4+,Games,37,5,1,1
+920007273,Sago Mini Fairy Tales,187934720,USD,2.99,94,14,4.0,4.0,1.1,4+,Education,38,5,1,1
+1061550054,Pop Girls - High School Band,117250048,USD,0.0,94,2,3.5,4.0,1.2,4+,Games,38,5,11,1
+304770340,Skat,66160640,USD,3.99,94,4,4.5,4.5,11.0.10,4+,Games,37,0,1,1
+1040444258,Fairy Land Rescue - Save the Magic Village,122825728,USD,0.0,94,4,4.0,5.0,1.2,4+,Games,38,5,1,1
+961227503,BEAKER by THIX,69615616,USD,0.0,94,9,3.5,3.5,2.1,4+,Education,40,5,5,1
+642091851,YY HD-和美女帅哥主播视频聊天的直播软件,112109568,USD,0.0,94,13,3.0,4.5,5.5.5,17+,Entertainment,24,5,2,1
+1020876671,KOMRAD,69795840,USD,0.0,94,83,4.5,4.5,1.0.2,9+,Games,37,4,1,1
+582538300,TimeStamp Photo with GPS Address Location,671744,USD,1.99,93,15,2.5,2.5,6.6,4+,Photo & Video,40,1,1,1
+1119370883,Water Bottle Flip AK 2016,78622720,USD,0.0,93,6,2.5,4.0,1.5,9+,Games,38,4,1,1
+1049254261,Textastic Code Editor 6,23289856,USD,9.99,93,17,4.5,5.0,6.3.2,17+,Productivity,37,5,2,1
+1045823211,Danger Dodgers,177516544,USD,0.0,93,79,4.5,4.5,1.1.0,9+,Games,38,5,1,1
+763225933,MetaMoJi Note Lite,106452992,USD,0.0,93,2,4.0,5.0,3.9.3,4+,Productivity,38,2,13,1
+1052726188,Zyon_RhythmGame,1003165696,USD,0.99,93,2,4.5,5.0,1.9.7,4+,Games,40,5,1,1
+1075901015,Finding Dory: Just Keep Swimming,386340864,USD,3.99,93,27,3.5,2.5,1.21,4+,Entertainment,38,5,3,1
+937258914,WonderCat Adventures,74878976,USD,2.99,93,53,4.0,4.0,1.2,4+,Games,38,5,0,1
+486221305,Where is Santa - Santa Tracker,12306432,USD,0.99,92,3,3.5,3.5,1.4.0,4+,Entertainment,38,5,1,1
+983868842,The Enchanted Cave 2,37957632,USD,2.99,92,29,4.5,4.5,2.27,12+,Games,43,5,1,1
+1108549870,Choice of the Pirate,34397184,USD,4.99,92,3,4.5,5.0,1.1.0,12+,Games,38,5,1,1
+778437357,FlixBus - bus travel in Europe,29140992,USD,0.0,92,4,4.5,4.5,3.8.1,4+,Travel,37,0,18,1
+1027419374,Explore Daniel Tiger's Neighborhood,327118848,USD,2.99,92,5,3.5,4.0,2.3,4+,Education,38,5,1,1
+430616332,It's Tyrannosaurus Rex - Smithsonian Institution,29496320,USD,1.99,92,1,4.5,5.0,2.6.1,4+,Book,37,4,1,1
+1133737578,Gemini - A Journey of Two Stars,581873664,USD,0.99,91,2,4.5,5.0,1.1.2,4+,Games,38,5,1,1
+1057145653,Hugo Troll Race 2.,139398144,USD,0.0,91,6,4.5,4.5,1.9.0,4+,Games,38,4,15,1
+950984120,Krosmaster Arena,383136768,USD,0.0,91,30,2.5,2.5,1.9.5,9+,Games,26,5,1,1
+1142281657,PokeVision Live Radar Alert & Notifications for Pokemon Go Gear,44673024,USD,1.99,91,91,2.5,2.5,1.0,4+,Productivity,37,3,7,1
+695187101,3D Anatomy,84885504,USD,3.99,91,79,4.5,4.5,3.0,12+,Medical,43,5,1,1
+1004963943,一起作业学生端-中小学霸口袋学习辅导助手,63421440,USD,0.0,91,2,4.0,5.0,2.8.2,4+,Education,38,5,2,1
+1076431520,Mystery Trackers: Winterpoint Tragedy - A Hidden Object Adventure (Full),934126592,USD,6.99,91,91,4.0,4.0,1.0.0,9+,Games,38,5,5,1
+920160643,Doc McStuffins: Mobile Clinic Rescue,297351168,USD,2.99,91,29,3.0,3.5,1.6.1,4+,Games,38,5,6,1
+701598884,Magic Tower Touch,15577088,USD,0.99,91,61,4.5,4.5,1.0.3,4+,Games,43,0,2,1
+955962995,Boom Boom Soccer,169730048,USD,0.0,91,91,3.0,3.0,1.0.1,9+,Games,38,5,1,1
+944644383,Aftercut : Background Eraser & Easy Photo Editor,99231744,USD,1.99,91,23,4.5,4.5,3.29,4+,Photo & Video,37,5,13,1
+1052744048,"Baby Full House - Care, Play and Have Fun",121030656,USD,0.0,91,4,3.5,5.0,1.3,4+,Games,38,5,1,1
+1127726827,Highlights™ Shapes - Preschool Learning Puzzles,88216576,USD,0.0,90,12,4.5,4.5,1.2.1,4+,Education,37,5,3,1
+1049316924,Changes - Face Tracker,25260032,USD,2.99,90,31,2.5,2.5,2.3,4+,Photo & Video,37,0,14,1
+1087286874,Sausage Legend - Fighting Game,130111488,USD,0.0,90,10,4.5,4.0,1.2.0,9+,Games,37,5,10,1
+1126932090,Colorpede,31710208,USD,0.0,90,19,4.0,4.0,1.2.0,4+,Games,40,5,12,1
+954549897,Fear For Sale: The 13 Keys HD - A Scary Hidden Object Mystery (Full),1591455744,USD,6.99,90,15,4.0,3.5,1.0.2,9+,Games,24,5,4,1
+1116215882,Glitch Fixers - The Powerpuff Girls,272637952,USD,0.0,89,56,4.0,4.5,1.0.1,9+,Games,37,5,1,1
+494407419,Either,11090944,USD,0.99,89,0,3.0,0.0,1.6,12+,Games,37,0,1,1
+948781148,PopSwish Basketball by Andrew Wiggins,104709120,USD,0.0,89,13,4.0,3.5,1.2.008,17+,Games,37,0,1,1
+1059827476,Dangerous Games: Illusionist HD - A Magical Hidden Object Mystery (Full),825167872,USD,6.99,89,89,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+413993350,搜房网房天下-新房二手房租房交易平台,156446720,USD,0.0,89,0,4.0,0.0,8.4.3,4+,Lifestyle,37,3,3,1
+1038007349,Giant Turnip Game: A Voyage Of Vegetable Extraction!,83069952,USD,0.0,89,73,5.0,5.0,1.1,4+,Games,38,0,3,1
+1122621497,NBAmoji,12728320,USD,0.0,89,0,3.5,0.0,1.5.2,4+,Sports,37,5,1,1
+1040803415,Thomas & Friends: Race On!,539088896,USD,0.0,89,2,3.0,5.0,2.1.1,4+,Games,38,5,11,1
+1097138041,Servers the Hunger Games Edition for Minecraft Pocket (PvP Multiplayer Servers for PE),8644608,USD,1.99,89,89,3.5,3.5,1.0,12+,Utilities,38,2,1,1
+1104486867,Partly Sunny - Weather Forecasts,20536320,USD,2.99,88,12,4.5,4.5,1.2,4+,Weather,37,5,2,1
+714463714,"Foundations Memory Work Tutorials, Cycle 2",366681088,USD,15.99,88,18,3.5,3.5,1.40,4+,Education,37,5,1,1
+1088115502,Best 9 for Instagram,27278336,USD,0.0,88,88,1.0,1.0,1.1,4+,Photo & Video,37,1,1,1
+926159169,myHAC - Home Access Center,13446144,USD,2.99,88,4,2.5,2.5,1.64,4+,Education,37,0,1,1
+958174054,Jurassic Virtual Reality (VR),116910080,USD,0.0,88,26,3.0,2.5,1.4.0,9+,Games,37,5,1,1
+1048277914,Midnight Calling: Anabel - A Mystery Hidden Object Game (Full),751667200,USD,6.99,88,88,4.5,4.5,1.0.0,9+,Games,38,5,5,1
+1069438454,The Agency of Anomalies: Mind Invasion HD - A Hidden Object Adventure (Full),774950912,USD,6.99,88,88,4.0,4.0,1.0.0,9+,Games,24,5,3,1
+971608996,Submerged: Miku and the Sunken City,445100032,USD,4.99,88,12,3.0,4.0,1.1.1,9+,Games,25,5,12,1
+1095227160,Roof Jumping 3 Stunt Driver Parking Simulator an Extreme Real Car Racing Game,283409408,USD,0.0,88,53,4.0,4.5,1.0.1,4+,Games,38,5,1,1
+951350964,Bachify,98627584,USD,1.99,88,50,3.5,3.5,1.0.1.50,12+,Photo & Video,37,0,1,1
+1133896041,Ducky Fuzz - Chain Reaction,79226880,USD,0.0,88,1,3.5,5.0,1.61,4+,Games,38,5,1,1
+1179685798,VR Video World - Virtual Reality,97276928,USD,0.0,88,26,4.5,5.0,1.0.14,12+,Photo & Video,38,0,2,1
+978238542,Never Gone,725459968,USD,0.0,87,6,4.0,4.0,1.1.4,12+,Games,37,5,6,1
+1154900079,My Town : Grandparents,451428352,USD,2.99,87,87,4.5,4.5,1.0,4+,Education,37,5,1,1
+830515294,Fix My Car: Custom Mods,53654528,USD,1.99,87,6,4.0,3.5,11.0,4+,Games,40,5,25,1
+1066980345,Hunger Games Servers for Minecraft PE (Online),33880064,USD,1.99,87,19,3.5,4.0,1.1,4+,Entertainment,37,2,1,1
+1122212503,Grim Tales: The Heir - A Mystery Hidden Object Game (Full),984101888,USD,6.99,87,87,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1119644926,Out There Chronicles - Ep. 1,108594176,USD,1.99,87,19,4.0,4.5,1.0.3,12+,Games,37,5,2,1
+1094174239,更加令人感动的养成游戏「昭和杂货店物语2」,227135488,USD,0.0,87,20,5.0,5.0,1.1.1,4+,Games,38,5,1,1
+1082781138,Tiny Sea Adventure,92748800,USD,0.0,87,63,3.5,3.5,0.0.15,4+,Games,40,4,1,1
+1130770356,Geekbench 4,92825600,USD,0.99,87,37,4.0,4.5,4.1.0,4+,Utilities,37,3,1,1
+1133510322,Fiete Sports,208609280,USD,0.0,86,0,3.0,0.0,1.3.2,4+,Games,40,5,1,1
+1063873198,Mystery Tales: Alaskan Wild HD - A Mystery Hidden Object Adventure (Full),1909682176,USD,6.99,86,20,4.5,4.5,1.0.6,9+,Games,24,5,4,1
+1077576649,Protect The Planet,45170688,USD,0.0,86,86,4.0,4.0,1.0.2,4+,Games,43,5,16,1
+1093865954,Candy's Carnival,113391616,USD,0.0,86,11,4.0,4.5,1.2,4+,Games,38,5,2,1
+1059797590,Stellar Wanderer,195838976,USD,4.99,86,5,3.5,3.0,1.2.6,9+,Games,37,5,1,1
+1133898987,All Limpy Run!,118339584,USD,0.0,86,86,3.0,3.0,1.0.4,4+,Games,38,5,11,1
+886212870,Blackwell 1: Legacy,317931520,USD,2.99,86,42,4.5,4.5,1.7.0,12+,Games,43,5,1,1
+1057673686,Grim Tales: The Final Suspect - A Hidden Object Mystery (Full),805212160,USD,6.99,86,86,4.5,4.5,1.0.2,9+,Games,38,5,5,1
+1081977472,Dark Dimensions: Shadow Pirouette HD - A Scary Hidden Object Game (Full),1217041408,USD,6.99,86,10,3.0,4.0,1.0.2,9+,Games,24,5,3,1
+1147331964,"Invisible, Inc.",536311808,USD,4.99,86,20,4.5,4.5,1.1,12+,Games,16,5,1,1
+1058023292,Surface: Alone in the Mist - A Hidden Object Mystery (Full),1084403712,USD,6.99,86,86,4.0,4.0,1.0.0,9+,Games,38,5,5,1
+1187838770,VR Roller Coaster World - Virtual Reality,97235968,USD,0.0,85,32,4.5,4.5,1.0.15,12+,Games,38,0,2,1
+1076802209,1000m Zombie Escape!,116008960,USD,0.0,85,1,4.0,5.0,1.6.2,9+,Games,37,5,8,1
+1124265106,金庸群侠传—全自由单机武侠RPG,248950784,USD,0.0,85,4,5.0,5.0,2.01,9+,Games,37,4,1,1
+971231853,Cosmic-Watch,178203648,USD,4.99,85,81,4.5,4.5,1.2.0,4+,Education,38,5,1,1
+453174055,去哪儿旅行HD-总有你要的低价,2706432,USD,0.0,85,0,3.5,0.0,3.1.5,4+,Travel,26,4,1,1
+1023751978,Disc Golf Game,233364480,USD,3.99,85,50,4.5,4.5,1.1,4+,Games,40,5,1,1
+886697025,ArtPose Female Edition,151115776,USD,2.99,85,19,4.0,4.0,1.5,12+,Reference,40,4,1,1
+1078203264,Pocket Rush,386605056,USD,0.0,85,4,4.0,4.0,1.5.1,12+,Games,38,5,9,1
+1060085514,Peppa Pig: Holiday,332871680,USD,2.99,85,6,2.5,3.0,1.1.9,4+,Entertainment,40,5,10,1
+1099176816,Heuristic Shakespeare - The Tempest,233176064,USD,5.99,85,32,5.0,5.0,1.0.6,4+,Education,24,5,1,1
+1048881232,Little Panda's Candy Shop - Lollipop Factory,415886336,USD,0.0,84,0,4.0,0.0,9.12.0001,4+,Education,38,5,10,1
+1033682827,Myths of the World: Black Rose HD - A Hidden Object Adventure (Full),949374976,USD,6.99,84,84,4.0,4.0,1.0.0,9+,Games,24,5,4,1
+415606289,安居客-二手房、新房、租房的找房助手,107184128,USD,0.0,84,0,4.5,0.0,10.7,4+,Lifestyle,37,5,2,1
+1087984514,Cheats for FNAF World - Unlock every ending and beat the game with ease!,65344512,USD,2.99,84,37,4.0,3.5,1.0.3,12+,Reference,38,4,1,1
+1084930110,Minescape,79834112,USD,0.0,84,23,3.5,4.0,1.0.1,4+,Games,37,5,1,1
+805548819,MagicBars - HomeScreen Wallpaper With Creativity,5218304,USD,1.99,84,74,3.0,3.0,1.2,4+,Entertainment,38,0,1,1
+1044837432,The Secret Order: Beyond Time HD - A Hidden Object Adventure (Full),608198656,USD,6.99,84,84,4.5,4.5,1.0.0,9+,Games,24,5,3,1
+1155219609,Sephojis – Sephora Emoji Keyboard & GIFs,25596928,USD,0.0,84,3,2.5,2.5,1.4,4+,Lifestyle,37,1,1,1
+946382493,House of Terror VR,485908480,USD,0.0,84,0,2.5,0.0,4.8,12+,Games,40,5,1,1
+521633439,Dokuro,146078720,USD,1.99,84,4,4.5,5.0,1.2.6,9+,Games,40,2,1,1
+1047713034,Burgers & Shakes - Fast Food Maker,260089856,USD,0.0,84,34,4.0,4.0,1.3,4+,Games,38,5,11,1
+481587094,秒拍-超火爆短视频分享平台,120877056,USD,0.0,84,0,4.0,0.0,6.6.70,17+,Photo & Video,37,0,9,1
+1075870730,Mathpix - Solve and graph math using pictures,27535360,USD,0.0,83,1,3.5,2.0,3.4,4+,Education,37,0,1,1
+1062642163,A Short Tale,450622464,USD,3.99,83,61,5.0,5.0,1.0.2,4+,Games,40,5,1,1
+1018922850,Flow Speed Control ● Professional Edition,104204288,USD,1.99,83,36,4.5,4.5,1.14,4+,Photo & Video,37,5,21,1
+1064093693,illi,157521920,USD,2.99,83,0,4.0,0.0,2.1.0,4+,Games,37,5,1,1
+1042419574,Fear For Sale: Phantom Tide HD - A Scary Hidden Object Mystery (Full),1833861120,USD,6.99,83,83,4.0,4.0,1.0.0,9+,Games,24,5,5,1
+513445705,Easter Bunny Tracker Fun,10027923,USD,0.0,83,80,3.0,3.0,1.7,4+,Entertainment,43,5,1,1
+1120339123,Haunted Hotel: The X (Full),1153353728,USD,6.99,83,83,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+717545062,ZaZa Remote-Universal Remote Control,77565952,USD,0.0,83,2,3.0,5.0,3.3.0,4+,Utilities,37,5,21,1
+977262615,My Boost,32713728,USD,0.0,83,26,2.5,3.5,6.1.1,4+,Utilities,37,0,2,1
+1134144728,Pixel Disc Golf 2,63809536,USD,0.0,83,27,3.0,4.0,1.1,4+,Games,38,5,1,1
+1081612551,Sable Maze: Twelve Fears HD - A Mystery Hidden Object Game (Full),1254215680,USD,6.99,83,83,3.0,3.0,1.0.0,9+,Games,24,5,3,1
+1045605097,Interact Contacts - Do more with your Contacts!,26803200,USD,1.99,83,17,4.0,5.0,1.2.4,4+,Productivity,37,5,1,1
+1135653604,Archangel Raphael Guidance - Doreen Virtue,113281024,USD,4.99,82,26,4.5,4.5,1.5.2,4+,Lifestyle,37,5,2,1
+1138494618,Offline IV Calc for Pokemon GO,47483904,USD,0.0,82,1,3.5,1.0,3.7.0,9+,Games,37,0,2,1
+1011479119,Dr. Seuss's ABC - Read & Learn - Dr. Seuss,40559616,USD,1.99,82,82,4.5,4.5,4.0.6,4+,Book,37,5,1,1
+1062771297,Draw It : Mini Game With Worldwide Multiplayer,92143616,USD,0.99,82,62,4.0,4.0,1.1,9+,Games,43,5,1,1
+887171753,WiFi钥匙—万能wifi密码钥匙,41617408,USD,0.0,82,72,4.5,4.5,5.1.6,4+,Utilities,37,0,1,1
+1101472953,Mystery Case Files: Ravenhearst Unlocked - A Hidden Object Adventure (Full),1354634240,USD,6.99,82,82,4.5,4.5,1.0.0,9+,Games,38,5,5,1
+583700738,中国移动手机营业厅(中国移动官方),62429184,USD,0.0,82,2,2.5,5.0,3.8,4+,Utilities,38,5,1,1
+1086799932,Surface: Return to Another World - A Hidden Object Adventure (Full),649999360,USD,6.99,82,82,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1081593943,Immortal Love: Letter From The Past Collector's Edition - A Magical Hidden Object Game (Full),1121930240,USD,6.99,82,7,4.0,4.5,1.0.2,9+,Games,37,5,4,1
+1112382631,Burnout City,176272384,USD,0.0,82,69,4.0,4.0,1.3,4+,Games,40,5,8,1
+1125378601,Amusement Park Fair Ground Circus Trucker Parking Simulator,357691392,USD,0.0,81,48,4.0,4.0,1.0.1,4+,Games,38,5,1,1
+1149500619,Crystal Rush! Color Shoot Arcade Game,133867520,USD,0.0,81,4,4.0,5.0,1.4,9+,Games,37,4,1,1
+1068366903,Emily Wants To Play,1263686656,USD,2.99,81,81,3.5,3.5,1.0,12+,Games,37,5,1,1
+891700302,BCM Surfing Game - World Surf Tour,188578816,USD,2.99,81,7,4.0,5.0,3.4,4+,Games,38,5,1,1
+1094833642,Melody Jams,232676352,USD,2.99,81,15,4.0,4.5,2.0.6,4+,Games,37,5,1,1
+346997126,TV SPIELFILM - TV Programm mit Live TV,97879040,USD,0.0,81,0,3.0,0.0,5.2,4+,Entertainment,37,5,1,1
+1048838824,Dead Center,10936320,USD,0.0,81,9,3.5,4.0,1.2,4+,Games,40,5,1,1
+1096049715,Evo Explores,165360640,USD,1.99,81,80,4.5,4.5,1.3.3,4+,Games,40,5,1,1
+925056174,Aeris Pulse Weather,30896128,USD,0.99,81,7,4.0,5.0,1.3.8,4+,Weather,38,0,1,1
+1148177808,FOX Sports VR,405783552,USD,0.0,81,0,3.0,0.0,1.9,4+,Sports,37,4,1,0
+1043733402,Beyond: Light Advent Collector's Edition (Full),1356186624,USD,6.99,81,81,4.0,4.0,1.0.0,9+,Games,37,5,4,1
+1073142282,Guns of Infinity,58309632,USD,4.99,80,80,5.0,5.0,1.0.0,12+,Games,38,5,1,1
+1105294926,MadOut Open City,482627584,USD,1.99,80,80,3.0,3.0,4,12+,Games,25,5,1,1
+823413326,iWeather - World weather forecast,30547968,USD,0.0,80,3,4.5,3.5,3.5,4+,Weather,37,2,1,1
+575082759,Asva The Monkey HD,44660067,USD,0.99,80,35,4.5,4.5,1.1.2,4+,Games,43,5,1,1
+1131388981,Paperback: The Game,55676928,USD,3.99,80,34,4.0,4.0,1.0.6,4+,Games,43,3,1,1
+1116910957,Agatha Christie - The ABC Murders (FULL),1104092160,USD,6.99,80,80,4.0,4.0,1.0,12+,Games,37,5,1,1
+1112581194,Mods for Minecraft PC Edition - Mod Installer Pocket Guide,18440192,USD,1.99,80,80,3.5,3.5,1.0,4+,Utilities,38,4,1,1
+969592391,My Friend Scooby-Doo!,600293376,USD,2.99,80,22,4.0,4.5,1.4,4+,Entertainment,40,5,8,1
+907759227,Star Walk for Kids: Learning Astronomy and Space,171140096,USD,2.99,80,0,3.5,0.0,2.0.4,4+,Education,37,5,11,1
+1055636344,AUM - Audio Mixer,6290432,USD,18.99,79,3,5.0,5.0,1.2,4+,Music,37,5,1,1
+1152607698,Sticklings,155706368,USD,0.0,79,71,4.0,4.0,1.1.1,4+,Games,38,5,1,1
+1123707853,Blue Apprentice Elementary Science Game by Galxyz,383986688,USD,0.0,79,7,4.0,5.0,1.7,4+,Education,37,5,33,1
+1021462578,I Keep Having This Dream,69058560,USD,1.99,79,35,4.5,4.5,1.0.3,9+,Games,40,4,1,0
+1116253995,Dark Romance: Kingdom of Death HD - A Hidden Object Adventure (Full),1805248512,USD,6.99,79,79,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+1178822943,PetMojis' by The Dog Agency,84905984,USD,0.99,79,2,2.0,1.0,1.1.1,4+,Entertainment,37,0,1,1
+433622275,"Werewolf ""Nightmare in Prison""",17530880,USD,0.0,78,0,4.5,0.0,8.6,12+,Games,37,0,2,1
+657395017,Forbidden Desert,190652416,USD,6.99,78,30,5.0,5.0,1.2,9+,Games,24,5,1,1
+1049351079,"Fitness - Gym and Home Workout,my Exercise Journal",156505088,USD,2.99,78,1,5.0,1.0,1.11.1,4+,Health & Fitness,38,5,7,1
+1159611436,Just Trap,191611904,USD,0.0,78,23,4.0,4.5,1.5,4+,Games,38,5,4,1
+1145442827,Bus Simulator PRO 2017,546985984,USD,3.99,78,64,3.5,3.5,1.1,4+,Games,38,5,1,1
+1055486126,Danse Macabre: Deadly Deception - A Mystery Hidden Object Game (Full),867749888,USD,6.99,78,5,4.0,4.5,1.0.2,9+,Games,38,5,5,1
+1029499643,Rugby Nations 16,629813248,USD,4.99,78,0,4.5,0.0,1.4.0,12+,Games,38,5,7,1
+1118676232,Super City: Special Edition,65575936,USD,4.99,78,15,4.5,4.5,1.1.4,12+,Games,40,4,16,1
+531761928,same - 就是聊得来,123238400,USD,0.0,78,0,4.0,0.0,4.0.4,17+,Social Networking,37,0,1,1
+942413257,Weather - Radar - Storm with Morecast App,185079808,USD,0.0,78,0,3.5,0.0,3.8.2,4+,Weather,37,3,22,1
+1135671895,Fakey - Fake GPS Location Spoof,12260352,USD,0.0,78,78,3.5,3.5,1.2,4+,Entertainment,37,4,1,1
+1030522460,The Lion Guard,672662528,USD,3.99,78,28,4.0,3.0,1.3.2,4+,Entertainment,38,5,11,1
+596006531,4 Images 1 Mot,130438144,USD,0.0,78,6,4.0,4.0,7.3.3,4+,Games,37,5,1,1
+1171558918,Spiral Tower,142680064,USD,0.0,78,78,4.0,4.0,1.0,4+,Games,38,5,1,1
+1028556453,Dark Dimensions: Homecoming HD - A Hidden Object Mystery (Full),1331712000,USD,6.99,78,78,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+686910560,UC浏览器HD,59791360,USD,0.0,78,2,4.0,5.0,3.0.1.776,17+,Utilities,24,5,1,1
+474121500,planetarian - Dream of Little Star -,177553408,USD,3.99,78,11,5.0,4.5,1.0.3,12+,Book,43,5,2,1
+1111873503,Gymoji,60990464,USD,0.99,78,25,3.0,3.0,1.1.2,9+,Entertainment,37,0,1,1
+1044142557,Fits - Block Puzzle King,70547456,USD,0.0,78,59,4.5,4.5,3.1.0,4+,Games,37,1,2,1
+1048696422,PE Servers - Custom Keyboard for Minecraft Pocket Edition,11619328,USD,2.99,77,28,3.0,3.5,1.1,4+,Games,37,4,1,1
+320599923,Sparkasse - Your mobile branch,119574528,USD,0.0,77,1,3.0,4.0,3.1.3,4+,Finance,37,0,3,1
+1035299535,Bella's Pizza Place - Italian Food Maker,210242560,USD,0.0,77,8,4.0,5.0,1.3,4+,Games,38,5,11,1
+1144983743,Putty 3D,19080192,USD,4.99,77,32,4.5,5.0,1.3.2,4+,Entertainment,25,4,8,1
+1122172974,Virtual Reality Roller Coaster for Google Cardboard VR,119512064,USD,0.0,77,68,4.0,4.5,0.2,4+,Games,40,0,1,1
+990157917,Duck Life: Retro Pack,332144640,USD,1.99,77,66,4.5,4.5,1.2,4+,Games,37,1,1,1
+537961396,TEDICT - Learn English with TED Video,6398976,USD,2.99,77,2,4.5,4.5,6.1,4+,Education,37,5,18,1
+1058036662,Haunted Hotel: Eternity - A Mystery Hidden Object Game (Full),1133731840,USD,6.99,77,77,4.5,4.5,1.0.0,9+,Games,38,5,4,1
+660653351,腾讯新闻HD-最资深的阅读软件,33111040,USD,0.0,77,5,3.5,2.0,1.8.0,17+,News,24,4,2,1
+879057314,Microgue,30928896,USD,1.99,77,17,3.5,4.0,1.13,4+,Games,43,4,16,1
+389784247,Vernier Video Physics,40472576,USD,4.99,76,2,4.0,1.0,3.0.4,4+,Education,37,5,5,1
+1044764933,Dark Realm: Princess of Ice HD - A Mystery Hidden Object Game (Full),1069375488,USD,6.99,76,76,4.0,4.0,1.0.0,9+,Games,24,5,3,1
+586157728,火车票Pro for 12306,22281216,USD,0.99,76,4,5.0,5.0,7.3.3,4+,Travel,38,4,2,1
+1082678255,Pugmoji sticker keyboard by The BatPug,61099008,USD,1.99,76,22,3.5,2.5,1.0.3,4+,Utilities,37,0,1,1
+1142543955,Crazy Nursery - Newborn Baby Doctor Care,97512448,USD,0.0,76,35,4.0,4.0,1.2,4+,Games,38,5,11,1
+977256145,Terra Monsters 3,395485184,USD,0.0,76,30,3.5,3.0,20.8,9+,Games,37,5,1,1
+1063872409,Lea Born for Adventure,261120000,USD,1.99,76,20,4.0,4.5,1.2.2,4+,Games,40,5,1,1
+472374716,Mystic Diary: Haunted Island HD (Full),113278913,USD,4.99,76,76,4.0,4.0,1.0.1,9+,Games,26,5,5,1
+1135372103,Driving Evolution Parking Sim Real Car Driver Test,252726272,USD,0.0,76,12,4.5,4.5,1.0.2,4+,Games,37,5,1,1
+1087125014,Labyrinths of the World: Changing the Past HD - A Mystery Hidden Object Game (Full),1469082624,USD,6.99,76,76,4.5,4.5,1.0.0,9+,Games,24,5,5,1
+1001725199,Abzorb,57837568,USD,2.99,76,4,3.5,3.0,1.3.4,4+,Games,37,4,1,1
+1095694895,The Infinite Arcade by Tinybop,211762176,USD,2.99,75,3,4.0,4.5,1.1.6,4+,Education,38,5,58,1
+1113603774,Papa's Taco Mia HD,62189568,USD,2.99,75,75,4.5,4.5,1.0.0,4+,Games,24,5,1,1
+1044733380,Nevertales: Legends - A Hidden Object Adventure (Full),774814720,USD,6.99,75,52,4.5,4.5,1.0.2,9+,Games,37,5,3,1
+985945557,Dr. Panda Space,250955776,USD,2.99,75,7,4.5,4.5,1.82,4+,Education,40,5,16,1
+828392046,Teach Your Monster to Read - Phonics and Reading,95277056,USD,4.99,75,22,3.5,4.5,3.0.4,4+,Education,40,5,1,1
+1019856486,House of 1000 Doors: Evil Inside HD - A Hidden Object Adventure (Full),1170735104,USD,6.99,75,75,3.5,3.5,1.0.0,9+,Games,24,5,4,1
+902585800,Sofia the First Color and Play,335961088,USD,4.99,75,7,3.0,4.5,1.4,4+,Entertainment,38,5,10,1
+1021586545,Bridge Constructor Stunts,140593152,USD,1.99,75,17,4.0,4.0,2.7,4+,Games,38,5,13,1
+1059401746,Dream Machine : The Game,117613568,USD,1.99,75,43,4.0,4.0,1.1,9+,Games,38,5,1,1
+1076292594,The Bomb!,172889088,USD,0.0,74,74,4.0,4.0,1.1,4+,Games,38,5,23,1
+1142578005,VR Water Park:Water Stunt & Ride For VirtualGlasse,107465728,USD,0.0,74,18,2.0,1.5,24.0,4+,Games,40,5,1,1
+1141096674,ClickTogether,75487232,USD,0.99,74,10,4.0,4.5,1.0.2,4+,Entertainment,37,3,1,1
+1132515131,Samurai of Hyuga Book 2,73325568,USD,5.99,74,74,4.5,4.5,1.0.2,12+,Games,38,5,1,1
+958904868,MOOMIN -Welcome to Moominvalley-,125079552,USD,0.0,74,0,4.5,0.0,3.2.1,4+,Games,38,5,5,1
+1091993742,"Princess Pet Palace: Royal Pony - Pet Care, Play & Dress Up",194273280,USD,0.0,74,42,4.5,4.5,1.1,4+,Games,40,5,1,1
+382596778,eBay Kleinanzeigen - Free. Easy. Local.,63022080,USD,0.0,74,3,4.5,5.0,7.5.2,4+,Shopping,37,4,1,1
+1128377569,FeedNews: AI curated social news for productivity,37828608,USD,0.0,73,27,3.0,3.5,2.6,17+,News,37,0,1,1
+894991908,My Very Hungry Caterpillar,142159872,USD,3.99,73,0,4.5,0.0,1.0.12,4+,Education,37,5,13,1
+1117998129,Human Anatomy Atlas 2017 - Complete 3D Human Body,979960832,USD,24.99,73,19,4.5,5.0,2017.3.35,12+,Medical,25,5,7,1
+848651098,8-Bit RPG Creator,40919040,USD,2.99,73,71,4.0,4.0,1.53,9+,Games,43,5,1,1
+1018497986,DinoTrek VR Experience,498358272,USD,0.99,73,57,4.0,3.5,1.2,4+,Entertainment,25,0,1,1
+1092109109,Kids Play Club - Fun Games & Activities,119285760,USD,0.0,73,34,4.0,4.0,1.1,4+,Games,38,5,11,1
+1115633942,Quell Zen+,98282496,USD,2.99,73,51,5.0,5.0,1.01,4+,Games,37,5,1,1
+925547937,Train Drive ATS 2,147553280,USD,6.99,73,5,4.5,4.5,2.02,4+,Games,37,5,10,1
+1031390478,Mystery Trackers: Nightsville Horror HD - A Hidden Object Adventure (Full),985018368,USD,6.99,72,72,4.5,4.5,1.0.0,9+,Games,24,5,5,1
+870099476,Copy My Data,1376256,USD,0.0,72,72,4.0,4.0,1.23,4+,Utilities,40,0,10,1
+487946174,Gumtree Classifieds: Buy & Sell - Local for Sale,101564416,USD,0.0,72,0,4.0,0.0,6.2.0,12+,Shopping,37,4,1,1
+353603279,Parents Calling Easter Bunny,8073209,USD,1.99,72,72,2.0,2.0,1.0,4+,Lifestyle,47,0,1,1
+1044818466,Hunting USA,331105280,USD,1.99,72,70,3.5,3.5,1.5,12+,Games,37,5,1,1
+1070506962,Save The Line,28693504,USD,0.0,72,15,3.0,3.5,1.2.0,4+,Games,37,4,1,1
+1163621234,Flip King,81882112,USD,0.0,72,44,4.0,4.0,1.1,9+,Games,37,5,8,1
+735434007,Super Why! Phonics Fair,117460992,USD,3.99,72,1,3.0,1.0,2.3,4+,Education,40,5,1,1
+1108623942,Royal Detective: Legend of The Golem - A Hidden Object Adventure (Full),602065920,USD,6.99,72,39,4.5,4.5,1.0.2,9+,Games,37,5,5,1
+943101317,Small Town Terrors: Galdor's Bluff HD - A Magical Hidden Object Mystery (Full),555175936,USD,6.99,71,71,4.5,4.5,1.0.0,9+,Games,24,5,3,1
+1080465588,The Curio Society: Eclipse over Mesina HD - A Hidden Object Mystery (Full),1543919616,USD,6.99,71,71,4.0,4.0,1.0.0,9+,Games,24,5,5,1
+949215818,Azerrz Sounds,106823680,USD,0.99,71,71,4.5,4.5,1.1,17+,Entertainment,38,0,1,1
+849732663,KNFB Reader,106429440,USD,99.99,71,0,4.5,0.0,2.7.3,4+,Productivity,37,5,14,1
+995022521,Signily Keyboard - Sign Language Emoji and GIFs!,89902080,USD,0.99,71,8,4.5,2.5,3.0,17+,Utilities,37,5,1,1
+1088041538,Phantasmat: The Dread of Oakville - A Mystery Hidden Object Game (Full),1021167616,USD,6.99,71,71,4.5,4.5,1.0.0,9+,Games,38,5,4,1
+1091366799,Chimeras: The Signs of Prophecy - A Hidden Object Adventure (Full),639434752,USD,6.99,71,71,4.5,4.5,1.0.0,9+,Games,37,5,4,1
+983488323,Iron Commander,160277504,USD,0.0,71,13,3.5,3.5,1.13.0,12+,Games,38,5,5,1
+363486833,Space War HD,30270464,USD,0.99,71,3,3.0,4.5,5.3,4+,Games,37,2,4,1
+1024506807,Cut the Rope HD,255006720,USD,3.99,71,1,4.5,5.0,2.7.3,4+,Games,24,5,1,1
+1028179601,Teenage Mutant Ninja Turtles: Battle Match Game,134537216,USD,1.99,70,27,4.0,3.5,1.2,9+,Games,38,5,8,1
+1060276201,Flowstate,18848768,USD,4.99,70,6,4.0,3.5,1.28,4+,Productivity,37,3,1,1
+1181633163,NORAD Tracks Santa Claus,52231168,USD,0.0,70,63,2.5,2.0,1.1,4+,Entertainment,37,1,1,1
+994673739,Sago Mini Babies,105742336,USD,2.99,70,22,4.0,4.0,1.2,4+,Education,38,5,1,1
+1091363676,Grim Tales: Threads of Destiny - A Hidden Object Mystery (Full),847803392,USD,6.99,70,70,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1095781221,Vectradius,24117248,USD,0.99,70,34,4.5,4.5,1.1.0,9+,Games,38,0,1,1
+632231181,BAA Marathon,99851264,USD,0.0,70,11,2.5,1.5,3.6,4+,Sports,37,0,17,1
+1120471712,PINKFONG Birthday Party,69751808,USD,0.0,70,1,3.5,2.0,9.0,4+,Education,38,5,11,1
+348543978,Timetracks - Slit-Scan Camera,11369472,USD,0.99,70,1,2.0,1.0,2.2.0,4+,Photo & Video,37,4,5,1
+1073059261,Perfect Square!,58110976,USD,0.0,70,4,3.5,4.0,1.3,4+,Games,38,4,1,1
+1082150954,Wildfulness - Unwind in nature and calm your mind,109873152,USD,2.99,70,3,4.0,4.0,1.9,4+,Health & Fitness,37,4,6,1
+1154395075,Love Engine,458687488,USD,0.0,70,4,2.5,4.5,1.2,4+,Games,40,5,2,1
+1065802303,3D Car Racing Simulator Real Drag Race Rivals Road Chase Driving Games,212980736,USD,0.0,70,70,4.0,4.0,1.0,4+,Games,38,5,1,1
+1070226733,Goth Emoji,30568448,USD,0.99,70,2,2.0,3.0,1.2.2,17+,Utilities,37,5,1,1
+997811381,Doc McStuffins Pet Vet,609991680,USD,1.99,70,10,3.0,3.0,1.3,4+,Entertainment,38,5,6,1
+977949232,DayGram - One line a day Diary (Note/Journal),38819840,USD,0.99,69,8,4.5,5.0,2.2.2,4+,Lifestyle,37,0,5,1
+1109545844,Witches' Legacy: Slumbering Darkness HD - A Hidden Object Mystery (Full),1642020864,USD,6.99,69,69,3.5,3.5,1.0.0,9+,Games,24,5,4,1
+1077954869,Kill the Plumber World,70197248,USD,2.99,69,37,4.0,4.0,1.0.3,12+,Games,43,5,1,1
+1077626197,iFleeing,438854656,USD,0.99,69,13,2.5,3.0,3.0.0,4+,Games,38,5,1,1
+1099081620,Crazy Craft Mod Guide for Minecraft Pc :Complete and Ultimate for Players,64715776,USD,1.99,69,69,1.5,1.5,1.1,4+,Games,40,5,1,1
+1092971411,Eyes Cube,120737792,USD,0.0,69,69,4.0,4.0,1.0,4+,Games,38,5,7,1
+1053562258,Grim Facade: Hidden Sins - A Hidden Object Mystery (Full),1082294272,USD,6.99,69,69,4.0,4.0,1.0.0,9+,Games,38,5,5,1
+766396167,Power Ping Pong,742855680,USD,4.99,69,0,3.5,0.0,1.2.1,4+,Games,37,5,2,1
+1066111223,Escape Game: Fountain,43569152,USD,0.0,69,69,5.0,5.0,1.0,4+,Games,40,5,2,1
+1145602670,Masky,156213248,USD,0.0,69,25,4.5,4.0,1.2,4+,Games,40,5,1,1
+1022256487,Sorted - Quickly Organise Your Day,101574656,USD,7.99,69,6,4.0,4.5,1.5.3,4+,Productivity,35,5,7,1
+1082764317,Haunted Legends: The Secret of Life - A Mystery Hidden Object Game (Full),1317195776,USD,6.99,69,15,4.5,5.0,1.0.2,9+,Games,37,5,5,1
+1147923152,Timepage for iPad – Calendar by Moleskine,85417984,USD,6.99,69,0,3.5,0.0,1.6.1,4+,Productivity,24,5,7,1
+1097998313,Raccoon Pizza Rush,253734912,USD,0.0,69,69,4.5,4.5,1.0.6,9+,Games,37,5,1,1
+1106057049,Fear for Sale: The House on Black River (Full),2233358336,USD,6.99,69,69,4.0,4.0,1.0.0,9+,Games,24,5,4,1
+1112551222,Wars Of Warlords : Mini Game With Worldwide Multiplayer,132612096,USD,0.99,69,69,3.0,3.0,1.0,12+,Games,43,5,1,1
+1042433429,Stage Rush: Imagine Dragons,270425088,USD,0.0,69,69,4.5,4.5,2.0.7,4+,Games,38,5,1,1
+1123991807,Hero Siege: Pocket Edition,282289152,USD,9.99,68,8,2.5,1.5,1.8.5,12+,Games,37,4,1,1
+1108219180,Trump Hoverboard Sim - Mannequin Race Challenge,40938496,USD,0.0,68,3,3.0,2.5,1.2.5,4+,Games,38,2,1,1
+1088540036,Retro City Rampage DX,15611904,USD,4.99,68,23,4.5,4.5,1.0.1,12+,Games,40,5,5,1
+1032460746,"Thirty Days & Seven Seas – Pirate Battle Board Game Starring Clarence, Jeff and Sumo",1233862656,USD,2.99,68,26,4.5,4.5,1.1.0,9+,Games,37,5,10,1
+1100023494,European Mystery: Flowers of Death HD (Full),1131868160,USD,6.99,68,68,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+1088941177,Go Surf - The Endless Wave Runner,228620288,USD,0.0,68,9,4.0,3.0,1.4.5,9+,Games,37,5,1,1
+1133883216,Carbon Warfare,324570112,USD,2.99,68,10,4.5,5.0,1.5.0,4+,Games,37,5,6,1
+544007969,TimeTraks,698800,USD,0.99,68,29,2.0,2.0,1.1.0,4+,Entertainment,43,0,1,1
+625994547,Eurovision Song Contest - The Official App,71026688,USD,0.0,68,6,3.0,3.5,3.7.2,12+,Entertainment,37,5,2,1
+1055825012,Myths of the World: The Heart of Desolation - A Hidden Object Adventure (Full),1253449728,USD,6.99,68,68,4.5,4.5,1.0.0,9+,Games,38,5,5,1
+459023164,唯品会 HD 全球精选,正品特卖,106416128,USD,0.0,68,0,4.0,0.0,6.0.2,17+,Shopping,24,5,1,1
+1037103749,Disney Junior Magic Phone with Sofia the First and Mickey Mouse,629897216,USD,2.99,67,15,4.0,3.5,1.5,4+,Education,38,5,1,1
+479528827,Photomontage : PhotoLayers for iPhone,15488000,USD,0.99,67,14,4.5,4.0,9.0.0,4+,Photo & Video,37,0,2,1
+1072881532,Hero Generations,184811520,USD,4.99,67,21,4.5,4.5,1.05,9+,Games,38,5,1,1
+1103570293,Stickninja Smash,123341824,USD,0.0,67,8,4.5,4.0,1.3.0,12+,Games,38,4,31,1
+1094724185,Block Sky War (Luck of the Draw) : Mini Game With Worldwide Multiplayer,108449792,USD,0.99,67,38,4.0,4.0,1.2,12+,Games,43,5,1,1
+1056954483,Watch Games,27202560,USD,0.99,67,24,2.5,2.5,2.0,4+,Games,37,0,1,1
+1101399354,Mystery Trackers: Paxton Creek Avengers - A Mystery Hidden Object Game (Full),1008609280,USD,6.99,67,67,4.0,4.0,1.0.0,9+,Games,37,5,5,1
+1046505126,Lane Racer,135446528,USD,0.0,67,15,3.5,3.5,1.3,4+,Games,38,5,23,1
+1024953838,Dictator 2: Evolution,239798272,USD,1.99,67,4,4.0,3.5,1.4.4,12+,Games,37,5,1,1
+1026901472,BMO Snaps - Adventure Time Photo Game,211572736,USD,2.99,67,13,4.5,5.0,1.0.4,9+,Games,38,5,10,1
+1090826925,Ball Tower,124923904,USD,0.0,67,16,3.5,3.5,1.6,4+,Games,40,5,1,1
+1065674928,Amaranthine Voyage: The Obsidian Book - A Hidden Object Adventure (Full),912869376,USD,6.99,67,67,4.5,4.5,1.0.0,9+,Games,38,5,5,1
+1089824278,VR Roller Coaster,240964608,USD,0.0,67,44,3.5,4.0,0.81,4+,Games,38,0,1,1
+1059336909,Bus Simulator PRO 2016,230572032,USD,2.99,67,67,2.0,2.0,1.1,4+,Games,38,5,1,1
+1062002361,LumaFX - infinite video effects,13921280,USD,2.99,67,11,4.0,4.5,2.0.3,4+,Photo & Video,37,5,8,1
+954724812,同花顺至尊版,126493696,USD,0.99,67,1,4.5,1.0,10.10.46,4+,Finance,37,0,1,1
+1106012225,PuppetShow: The Face of Humanity (Full),1267202048,USD,6.99,66,33,3.0,4.0,1.0.4,9+,Games,37,5,5,1
+993071546,小咖秀-全民视频才艺直播社区,101220352,USD,0.0,66,1,5.0,5.0,1.7.4,12+,Entertainment,37,5,3,1
+933350763,Flewn,534294528,USD,2.99,66,62,4.5,4.5,1.5.2,4+,Book,38,4,1,1
+774620933,FilmStory - For All Your Video Editing Needs,80793600,USD,0.0,66,8,4.0,3.5,2.5,4+,Photo & Video,37,2,5,1
+1085105198,Train Kit,32340992,USD,2.99,66,0,4.0,0.0,1.10,4+,Games,37,1,9,1
+1060017016,Beyondium,86637568,USD,1.99,66,23,3.5,4.0,1.1.1,4+,Games,40,5,12,1
+1036517151,Little Fox Animal Doctor - be a vet,302585856,USD,1.99,66,4,2.5,3.5,2.0,4+,Book,38,5,14,1
+725208930,WEAR - Fashion Lookbook,98292736,USD,0.0,66,3,4.0,4.5,4.11.0,4+,Shopping,37,5,4,1
+1037712285,Personal Progress Binder,60442624,USD,4.99,66,8,4.5,4.0,1.3.0,4+,Productivity,37,5,1,1
+1056999701,End Space VR for Cardboard,139433984,USD,0.99,66,28,4.5,4.5,1.2.2,9+,Games,37,0,1,1
+1077707350,Chocolate Candy Party - Fudge Madness,117302272,USD,0.0,66,2,3.5,1.5,1.1,4+,Games,38,5,1,1
+1065976148,Shadow Wolf Mysteries: Tracks of Terror - A Hidden Object Adventure (Full),1007366144,USD,6.99,66,66,4.5,4.5,1.0.0,9+,Games,38,5,4,1
+1022056495,Fear for Sale: Endless Voyage HD - A Mystery Hidden Object Game (Full),1921634304,USD,6.99,66,66,4.0,4.0,1.0.0,9+,Games,24,5,5,1
+1050763662,Dead Reckoning: Brassfield Manor - A Mystery Hidden Object Game  (Full),837582848,USD,6.99,66,66,4.0,4.0,1.0.0,9+,Games,38,5,4,1
+1126212440,Nanuleu,131196928,USD,2.99,65,27,4.0,3.5,2.01,9+,Games,37,5,5,1
+891755554,Sago Mini Toolbox,146458624,USD,2.99,65,6,3.5,4.0,1.7,4+,Education,38,5,1,1
+445573854,当当-正品秒杀,首单立减5元,130363392,USD,0.0,65,0,3.0,0.0,6.9.1,4+,Shopping,38,0,1,1
+883854755,Game Cheats - Super-Mario Universe 2 Luigi Galaxy Starship Edition,45887488,USD,4.99,65,65,1.0,1.0,1.0,4+,Games,43,3,1,1
+1121796149,GIFYme - Create video loops and gifs with amazing filters for Whatsapp and Instagram,31382528,USD,0.0,65,10,3.5,4.0,5.0,4+,Photo & Video,25,3,5,1
+556990666,TNNS,42757772,USD,1.99,65,17,4.5,5.0,1.2,4+,Games,43,5,1,1
+1077611503,Anime Studio Story,185580544,USD,4.99,65,3,4.5,4.5,1.03,4+,Games,38,5,4,1
+1053254031,Haunted Legends: The Dark Wishes - A Hidden Object Mystery (Full),1146363904,USD,6.99,65,65,4.0,4.0,1.0.0,9+,Games,38,5,5,1
+1160495350,Hidden Expedition: The Fountain of Youth (Full),902515712,USD,6.99,65,9,4.0,4.0,1.0.2,9+,Games,37,5,5,1
+1088056625,Myths of the World: The Whispering Marsh - A Mystery Hidden Object Game (Full),912822272,USD,6.99,65,65,4.5,4.5,1.0.2,9+,Games,37,5,5,1
+427457043,1号店-全球超市 轻松到家,80944128,USD,0.0,65,1,3.5,1.0,5.0.0,17+,Shopping,37,5,1,1
+1146543227,Infinite Painter,22405120,USD,0.0,65,21,4.0,4.0,1.5,4+,Productivity,24,5,1,1
+1142803226,Visionn - Real Time Artistic Photo & Video Effects,25473024,USD,1.99,64,30,4.5,4.0,1.3.9,4+,Photo & Video,25,5,10,1
+868123351,Pixel Cup Soccer,45298688,USD,0.99,64,1,4.0,5.0,1.5.3,4+,Games,38,5,1,1
+780467456,Effects Studio,69170176,USD,1.99,64,2,4.0,4.5,4.3.7,9+,Photo & Video,37,5,11,1
+1108482394,The interactive Legend of Sleepy Hollow: iIrving,307137536,USD,2.99,64,12,5.0,5.0,1.0.2,9+,Book,37,5,3,1
+1094038347,The Secret Elevator,1395615744,USD,0.99,64,24,3.5,4.0,1.1.3,9+,Games,37,5,2,1
+643165438,Stellarium Mobile Sky Map,54294528,USD,2.99,64,10,3.5,3.5,1.23,4+,Education,43,5,0,1
+1154856196,Wappoi Room Escape,132481024,USD,0.0,64,54,5.0,5.0,1.0.4,4+,Games,40,5,1,1
+299029654,大辞林,210088960,USD,21.99,64,0,4.5,0.0,4.1.1,4+,Reference,37,5,2,1
+980540474,OPERATION DRACULA,302269440,USD,2.99,64,15,4.0,4.0,1.0.3,12+,Games,38,5,1,1
+311762416,radio.de - Der Radioplayer,40717312,USD,0.0,64,9,4.5,5.0,4.0.5,4+,Music,37,5,14,1
+1067980441,Hood Jump – The Best Platform Game in the Streets,40046592,USD,0.0,64,4,3.5,3.0,2.3,9+,Games,37,5,1,1
+1139753965,Moonvale 2: Puzzle Adventure,99665920,USD,0.0,64,1,4.0,1.0,1.1.3,4+,Games,38,5,6,1
+1051141720,InsPad - Instagram for iPad,14870528,USD,4.99,64,17,3.5,4.0,4.0,4+,Social Networking,37,5,1,1
+1130374815,Mebo,339686400,USD,0.0,64,11,3.0,3.5,1.6,9+,Entertainment,40,2,1,1
+700513526,TunesFlow - Music Player with Equalizer,14417920,USD,3.99,63,0,4.5,0.0,2.0.16,4+,Music,37,4,3,1
+1133241575,The Secret Order: The Buried Kingdom HD (Full),1258856448,USD,6.99,63,63,4.5,4.5,1.0.0,9+,Games,24,5,3,1
+1048139188,Matt Duchene's Hockey Classic,391602176,USD,3.99,63,53,4.5,4.5,1.1.1,12+,Games,38,5,7,1
+1086126576,Cool Jigsaw Puzzles,342103040,USD,0.0,63,1,4.0,2.0,5.8.0,4+,Games,38,4,1,1
+1154401422,Paintkeep - Turn Photo into Painting,31147008,USD,2.99,63,7,4.5,4.0,4.5,4+,Photo & Video,37,5,13,1
+1080654588,Furniture Mod PE,34369536,USD,1.99,63,12,1.5,1.5,1.1,4+,Games,38,3,1,1
+1040407117,My Rockstar Girls - Party Rock Band,136144896,USD,0.0,63,2,3.5,5.0,1.0.7,4+,Games,37,5,1,1
+1011193872,Splash Pop,291697664,USD,0.0,63,0,4.0,0.0,1.2.2,12+,Games,37,5,6,1
+813952961,Deliciously Ella,522395648,USD,3.99,62,0,3.5,0.0,4.0.0,4+,Food & Drink,37,4,1,1
+1022196879,Exodus,40820736,USD,0.0,62,20,3.0,4.0,1.1,4+,Games,40,5,1,1
+369692259,"6play, TV en direct et en replay",94592000,USD,0.0,62,0,3.5,0.0,4.3.7,4+,Entertainment,37,5,1,1
+1163313156,VERSUS: The Elite Trials,29697024,USD,3.99,62,62,4.5,4.5,1.0.0,12+,Games,38,5,1,1
+721512660,comico/人気オリジナル漫画が毎日更新!/コミコ,73945088,USD,0.0,62,1,4.5,4.0,4.4.1,12+,Book,37,5,2,1
+1072844973,Spiral Splatter,134116352,USD,0.0,62,1,3.5,5.0,1.3.1,4+,Games,37,5,1,1
+1104655318,Littlebook - for Facebook on Watch,25890816,USD,2.99,62,16,3.0,2.5,2.0.1,4+,Social Networking,37,0,1,1
+1041370707,格斗学院-社团争霸圣装崛起,热血高校一触即发,537575424,USD,0.0,62,6,4.5,5.0,2.3.4,12+,Games,40,5,1,1
+1132473553,Funny Face Pro - 2000+ Stickers Pics Photos Editor,306835456,USD,1.99,62,12,3.5,3.5,1.8,4+,Photo & Video,37,3,1,1
+1142348885,Phantasmat: Behind the Mask (Full),964245504,USD,6.99,62,62,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1076899352,Push the Arrow,63624192,USD,0.0,62,1,3.0,2.0,1.1,4+,Games,38,4,1,1
+1092749144,Albert & Otto,262772736,USD,1.99,62,2,3.0,5.0,1.1.2,9+,Games,37,5,1,1
+1073500846,Dr. Panda School,143629312,USD,2.99,62,20,4.0,4.0,1.1,4+,Education,40,5,17,1
+1068818303,おそ松さんのへそくりウォーズ 〜ニートの攻防〜,525569024,USD,0.0,62,1,4.5,4.0,2.4.0,12+,Games,38,5,1,1
+890530382,Cookie Monster's Challenge,53510144,USD,2.99,62,31,3.5,3.5,2.0,4+,Education,24,5,1,1
+1076407343,Muslim Emoji,38044672,USD,0.0,62,7,3.5,4.5,1.2,4+,Entertainment,37,0,1,1
+1142717730,Cadenza: Havana Nights (Full),969881600,USD,6.99,61,61,4.0,4.0,1.0.0,9+,Games,37,5,4,1
+582431926,Cliff Diving Champ,51728384,USD,0.99,61,35,4.5,4.5,1.11,4+,Games,43,5,1,1
+919701578,ContactsXL 2016,4557824,USD,0.99,61,1,2.5,1.0,2.16,4+,Productivity,38,1,6,1
+736579117,Raildale - Railroad & Railway Building Game,16873472,USD,2.99,61,18,4.0,3.5,1.5.8,4+,Games,40,5,10,1
+1090292301,YANKAI'S TRIANGLE,58137600,USD,1.99,61,32,4.5,5.0,3.9.27,9+,Games,37,5,1,1
+1150735504,Puzzlepops! Trick or Treat,151424000,USD,0.0,61,49,4.0,4.0,1.0.2,9+,Games,37,5,5,1
+1095687767,Football Manager Touch 2017,3465451520,USD,19.99,61,0,4.0,0.0,17.3.1,4+,Games,16,5,1,1
+1085829348,Dark Tales: Edgar Allan Poe’s The Tell-tale Heart - A Hidden Object Mystery (Full),871531520,USD,6.99,61,61,3.0,3.0,1.0.0,9+,Games,37,5,4,1
+1173650428,Nope Quiz,183178240,USD,0.0,61,1,5.0,5.0,1.2.1,12+,Games,37,5,1,1
+1148457316,Tamotions by Tami Roman,7330816,USD,0.99,61,61,4.5,4.5,1.1,17+,Entertainment,37,0,1,1
+1148587239,My Town : Preschool,386007040,USD,2.99,61,61,4.5,4.5,1.0,4+,Education,38,5,1,1
+1052958353,Fix My Truck: 4x4 Offroad Truck Mechanic Simulator,103657472,USD,1.99,61,16,4.5,4.5,1.3,4+,Games,40,5,11,1
+1117166919,RunGunJumpGun,291038208,USD,2.99,60,2,4.0,5.0,1.0.2,9+,Games,40,5,1,1
+455256615,White Tiles 2 : Piano Master ( Don't Hit The White Tiles 4 ) - Free Music Game,31578112,USD,0.0,60,7,4.0,3.5,2.21,4+,Games,40,4,5,1
+1103310426,My Town : Fashion Show,303932416,USD,2.99,60,26,4.5,4.5,1.2,4+,Entertainment,38,5,1,1
+1055138354,Shadow Blade: Reload,1398803456,USD,4.99,60,29,4.0,4.0,1.02,12+,Games,40,5,6,1
+1172884808,Haunted Rooms: Escape VR Game for Google Cardboard,479346688,USD,0.0,60,10,4.5,3.5,2.0,12+,Games,40,5,1,1
+976350178,Monkey Swingers,61336576,USD,0.0,60,20,4.0,4.0,1.2,4+,Games,40,5,1,1
+982255287,Level: A Simple Puzzle Game,30552064,USD,0.99,60,1,4.0,5.0,1.4.5,4+,Games,40,5,16,1
+1163925890,Shoutrageous! - The Addictive Game of Lists,32848896,USD,0.0,60,14,4.5,4.5,2.0.1,17+,Games,37,0,1,1
+539587329,Hurricane Impact by HurricaneTrack.com,7477248,USD,2.99,60,7,3.5,4.5,1.11.6,4+,Weather,37,0,1,1
+1126935885,Sorcery! 4,464706560,USD,4.99,60,10,4.5,4.0,1.1.1,12+,Games,38,5,1,1
+530809322,"Sight Words Games & Flash Cards for Reading and Spelling Success at School (Learn to Read Preschool, Kindergarten and Grade 1 Kids)",54198272,USD,2.99,59,3,3.5,3.5,2.0.5,4+,Education,38,5,1,1
+1073402202,Flying Car Simulator 3D: Stunt Bus,60965888,USD,0.0,59,59,4.0,4.0,1.0,4+,Games,40,4,1,1
+1107537631,The Forgotten Room,438729728,USD,1.99,59,59,4.5,4.5,1.0.1,12+,Games,40,5,1,1
+1136744871,Party Hard Go,636487680,USD,6.99,59,50,4.5,4.5,1.1,12+,Games,37,5,1,1
+774875399,Kahuna,60870656,USD,0.99,59,39,4.0,4.0,1.1,4+,Games,40,5,3,1
+875224191,Phonics Fun on Farm Educational Learn to Read App,99215360,USD,2.99,59,5,4.0,3.5,1.2.3,4+,Education,40,5,1,1
+1081079080,PAW Patrol Pups Take Flight HD,361667584,USD,4.99,59,4,3.0,4.0,2.1,4+,Education,24,5,1,1
+1047354020,Ticket Drops,39911424,USD,1.99,59,32,2.5,2.5,1.3.1,17+,Entertainment,37,0,1,1
+1080605845,Police Chase Race,172044288,USD,0.0,59,22,4.0,4.0,1.0.2,4+,Games,38,5,23,1
+1124476992,Attenborough Story of Life,152133632,USD,0.0,59,16,4.5,3.5,1.0.3,12+,Entertainment,37,5,1,1
+1099950549,Dead Reckoning: The Crescent Case - A Mystery Hidden Object Game (Full),967158784,USD,6.99,58,58,4.0,4.0,1.0.0,9+,Games,37,5,4,1
+1018002876,Space Grunts,61841408,USD,3.99,58,3,4.0,4.0,1.6.0,12+,Games,38,5,1,1
+676201334,Kiosk Photo Transfer by Fujifilm,33662976,USD,0.0,58,0,3.0,0.0,2.5,4+,Photo & Video,37,0,4,1
+1070036646,Gear Miner,99209216,USD,0.0,58,3,4.0,4.5,1.04,4+,Games,38,5,1,1
+1125336042,Cubway,360722432,USD,0.0,58,1,4.5,1.0,1.2.4,4+,Games,40,5,1,1
+1100639820,HorseMoji: Equestrian Emoji,16315392,USD,1.99,58,32,2.0,1.5,1.3,4+,Entertainment,37,5,1,1
+1100810556,Hidden Expedition: Dawn of Prosperity - A Mystery Hidden Object Game (Full),862396416,USD,6.99,58,27,4.5,4.5,1.0.2,9+,Games,37,5,5,1
+1129404572,The Curio Society: New Order HD (Full) - Adventure,1364120576,USD,6.99,58,58,4.5,4.5,1.0,9+,Games,24,5,4,1
+1025000402,Snug for Instagram - Preview your photos,32174080,USD,0.99,58,3,2.5,3.0,2.6.1,4+,Photo & Video,37,0,14,1
+1086451637,CHINGOJI,21342208,USD,0.99,58,16,3.0,2.0,1.06,4+,Entertainment,37,0,1,1
+1046621147,Indoor soccer – football Dream league journey,75634688,USD,0.0,58,7,2.5,1.0,1.01,4+,Games,38,4,1,1
+1074068315,Game Studio Tycoon 3 – Gaming Business Simulation,188443648,USD,4.99,58,13,4.5,4.5,1.3.3,4+,Games,37,4,1,1
+1067117430,Osmo Coding Awbie,491183104,USD,0.0,58,1,4.0,5.0,1.4.5,4+,Games,24,5,12,1
+689165391,"Hopster: Kids TV, Nursery Rhymes, Music, Fun Games",265646080,USD,0.0,58,0,3.5,0.0,3.12.4,4+,Education,37,5,2,1
+1084135698,Gravity Square!,151777280,USD,0.0,58,10,2.5,2.5,1.0.3,4+,Games,38,5,1,1
+1010604522,Syberia 2 (FULL),1563693056,USD,4.99,58,58,4.0,4.0,1.0,12+,Games,38,5,6,1
+1083835330,ROMANCING SAGA 2,356268032,USD,17.99,58,18,4.0,4.0,1.01,12+,Games,38,5,1,1
+1034714533,Goal Kick - free penalty shootout soccer game,14171136,USD,0.0,57,5,3.0,3.0,2.5,4+,Games,38,2,1,1
+1130638483,虫虫大作战-经典休闲蛇蛇,176500736,USD,0.0,57,1,4.5,3.0,1.7.4,4+,Games,40,5,1,1
+515651240,农行掌上银行,63531008,USD,0.0,57,4,2.5,3.5,3.6.0,4+,Finance,40,0,1,1
+1079673793,Off the Record: Liberty Stone - A Mystery Hidden Object Game (Full),783089664,USD,6.99,57,57,4.0,4.0,1.0.0,9+,Games,37,5,5,1
+1059536022,VyStar Mobile Banking for iPad,68358144,USD,0.0,57,1,1.5,5.0,5.0.25,4+,Finance,26,5,1,1
+1124221308,Danse Macabre: Lethal Letters - A Mystery Hidden Object Game (Full),771726336,USD,6.99,57,57,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+475966832,同程旅游-中国汽车票自助周边游海外跟团订票,160900096,USD,0.0,57,0,4.0,0.0,8.3.0,4+,Travel,37,5,3,1
+950823223,Whispering Willows,1595742208,USD,4.99,57,8,4.0,4.0,1.41,12+,Games,40,5,1,1
+1075896827,Flick Rugby 16,33746944,USD,0.0,57,57,4.5,4.5,1.0,4+,Games,38,5,1,1
+1085768995,Fran Bow Chapter 1,114072576,USD,1.99,57,47,3.5,3.5,1.1,12+,Games,40,2,1,1
+1079977734,Final Cut: Fame Fatale - A Hidden Object Adventure (Full),890288128,USD,6.99,57,1,3.5,2.0,1.0.2,9+,Games,38,5,5,1
+907210971,Blaze and the Monster Machines - Racing Game,532707328,USD,3.99,56,1,2.5,3.0,6.0,4+,Education,38,0,1,1
+1083442831,Sudoku Pro Edition,8185856,USD,2.99,56,6,3.5,2.5,1.1,4+,Games,40,3,2,1
+1058965051,Secrets of the Dark: Eclipse Mountain Collector's Edition HD (Full),701227008,USD,6.99,56,9,3.0,4.0,1.0.4,9+,Games,24,5,4,1
+1121685698,Chef Siblings - Island Restaurant,111013888,USD,0.0,56,56,4.0,4.0,1.0,4+,Games,43,5,1,1
+908456072,Fireboy & Watergirl 2 - The Forest Temple,51855360,USD,0.99,56,56,2.0,2.0,1.0,4+,Games,38,5,1,1
+1115223015,Triennale Game Collection,427578368,USD,0.0,56,10,2.5,3.0,1.8,9+,Games,37,5,2,1
+1161626399,Micromon,791604224,USD,0.0,56,20,3.5,4.0,1.7,9+,Games,37,5,1,1
+1164512642,Sago Mini Holiday Trucks and Diggers,116524032,USD,0.0,56,56,4.5,4.5,1.0,4+,Education,38,5,1,1
+591301867,bloxorz,28262400,USD,0.99,56,17,4.0,4.0,2.5.0,4+,Games,43,4,16,1
+1021672050,Circa Infinity,138744832,USD,1.99,56,24,5.0,5.0,2.0.0,9+,Games,43,5,1,1
+1044950341,Streaks Workout,41596928,USD,2.99,56,2,3.0,5.0,2.0.4,4+,Health & Fitness,37,5,23,1
+1087287522,Brio - Don’t Fall!,41423872,USD,0.0,56,56,3.5,3.5,1.0,4+,Games,37,0,11,1
+1124344384,My Town : Beauty Spa Saloon,296504320,USD,2.99,56,56,4.0,4.0,1.0,4+,Entertainment,38,5,1,1
+1100723148,Pikazo – AI art that YOU control,84549632,USD,0.0,56,3,4.0,4.0,3.2.3,4+,Photo & Video,37,5,24,1
+1183548754,Rescue the Enchanter,242505728,USD,3.99,55,29,4.5,4.5,1.4,4+,Games,40,5,1,1
+1105385887,Escape Game: Forgotten,49243136,USD,0.0,55,42,5.0,5.0,1.1,4+,Games,40,5,2,1
+1069460388,Secrets of the Dark: Mystery of the Ancestral Estate HD - A Mystery Hidden Object Game (Full),600216576,USD,6.99,55,55,3.0,3.0,1.0.0,9+,Games,24,5,4,1
+1031781908,"Marline - Weather, Tides & Moon",8082432,USD,0.99,55,3,4.0,3.5,3.1.1,4+,Weather,37,5,3,1
+1135982876,Dominocity,270085120,USD,0.0,55,4,3.5,3.0,0.5.7,4+,Games,37,5,1,1
+880859615,QQ邮箱HD,146654208,USD,0.0,55,1,3.0,3.0,3.1,4+,Utilities,24,4,1,1
+1050535507,Lanota,630801408,USD,1.99,55,1,5.0,5.0,1.4.1,4+,Games,37,5,1,1
+1023681711,Dr. Panda Firefighters,230628352,USD,2.99,55,55,3.5,3.5,1.0.1,4+,Education,40,5,17,1
+1069789077,Donuts Maker Salon,97558528,USD,0.0,55,55,4.0,4.0,1.0,4+,Games,43,5,1,1
+1095683899,Football Manager Mobile 2017,1249507328,USD,8.99,55,12,4.0,4.0,8.2.1,4+,Games,43,5,1,1
+1026152405,Bouncy Kingdom,114930688,USD,0.0,55,55,4.5,4.5,1.8.1,4+,Games,38,4,1,1
+1059195733,H*nest Meditation,92611584,USD,1.99,55,26,4.5,4.5,1.3,17+,Entertainment,37,1,1,1
+1161836152,ZenDots 2 - One Dot’s Journey,27395072,USD,0.0,54,30,3.5,4.0,1.2,4+,Games,37,5,1,1
+1104795347,"iFiles 2 - File Manager, Cloud Storage, PDF Reader",88146944,USD,4.99,54,20,3.5,3.0,2.1.0,17+,Productivity,37,5,8,1
+462134755,Puppet Pals HD Director's Pass,103233536,USD,3.99,54,0,4.0,0.0,1.9.2,4+,Education,24,4,1,1
+1053946396,"Boston GameDay Radio for Live New England Sports, News, and Music – Patriots and Celtics Edition",19808256,USD,1.99,54,54,5.0,5.0,1.0,4+,Sports,38,0,1,1
+1157569775,Miss Peregrine’s Emoji,37141504,USD,0.0,54,44,4.5,4.5,1.0.1,4+,Entertainment,37,0,1,1
+1136753739,Sweet Princess Beauty Salon,112036864,USD,0.0,54,7,4.5,4.5,1.1,4+,Games,38,5,2,1
+1034591399,BMX Streets,293198848,USD,2.99,54,35,3.5,3.5,1.01,4+,Games,37,0,1,1
+730148796,Hue Halloween for Philips Hue,86936576,USD,1.99,54,16,3.5,4.5,1.8,9+,Entertainment,37,5,1,1
+1005322299,Oops You Died,338048000,USD,0.0,54,17,4.5,4.5,2.0.7,9+,Games,37,5,1,1
+1074311276,WRIO Keyboard,36356096,USD,1.99,54,3,3.0,5.0,1.3.1,4+,Utilities,37,0,2,1
+1039011796,Labyrinths of the World: Forbidden Muse HD - A Mystery Hidden Object Game (Full),2328133632,USD,6.99,54,54,4.0,4.0,1.0.0,9+,Games,24,5,4,1
+1103209451,Eklips,27561984,USD,1.99,54,16,4.5,4.0,1.0.4,4+,Games,43,5,1,1
+1178472225,Mustknow - anonymous video Q&A,92884992,USD,0.0,53,0,1.5,0.0,4.0.0,12+,Social Networking,37,0,1,1
+409157308,Annabel Karmel's Baby & Toddler Recipe App,104406016,USD,4.99,53,5,2.0,1.0,1.29,4+,Food & Drink,37,5,1,1
+1097587096,Diced - A Simple Puzzle Dice Game,54171648,USD,0.0,53,3,4.5,5.0,1.3.6,4+,Games,37,4,1,1
+1103631263,Perfect Fit,27276288,USD,0.0,53,10,3.0,4.0,1.0.3,4+,Games,38,5,1,1
+1063210798,Survival: Wicked Forest,552719360,USD,0.99,53,20,4.0,3.5,1.4,12+,Games,37,5,1,1
+1087074229,Scotmoji - Scottish emoji-stickers!,67978240,USD,0.99,53,2,2.0,2.0,1.8,12+,Utilities,37,3,1,1
+978201325,Thumbly Keyboard,60309504,USD,1.99,53,0,3.0,0.0,1.2.3,4+,Utilities,37,0,1,1
+504835984,Virtual Gastric Band Hypnosis - Lose Weight Fast!,689295360,USD,6.99,53,13,4.5,4.5,3.0.2,4+,Health & Fitness,37,5,1,1
+1065405497,魔窟-无尽的地下城,234680320,USD,0.99,53,49,4.5,4.5,1.04,9+,Games,40,5,2,1
+1144976930,Color 6: Blitz,87324672,USD,0.0,53,0,4.0,0.0,1.0.4,4+,Games,37,5,1,1
+1001193844,Moto x3m,57729024,USD,0.99,53,43,4.5,4.5,1.2.0,9+,Games,43,5,16,1
+1124034555,Music Player - Play Unlimited Songs from YouTube!,12244992,USD,0.0,53,36,4.0,4.0,1.1,17+,Entertainment,37,4,1,1
+1079658714,Redemption Cemetery: Clock of Fate - A Mystery Hidden Object Game (Full),1286004736,USD,6.99,53,53,4.0,4.0,1.0.0,9+,Games,37,5,5,1
+1120674971,JOEMOJI Keyboard,29841408,USD,0.99,53,1,4.5,5.0,1.1,4+,Entertainment,37,0,1,1
+398954883,Yurekuru Call,56609792,USD,0.0,53,0,4.0,0.0,3.4.7,4+,Weather,37,5,2,1
+596796565,HabitSeed,15147008,USD,0.99,53,42,4.5,4.5,1.1.2,4+,Health & Fitness,40,0,25,1
+1116785618,Piggy Show,265478144,USD,0.0,53,6,4.5,4.5,1.0.3,4+,Games,38,5,1,1
+935248296,Heroes of Normandie,1486648320,USD,14.99,53,0,3.5,0.0,1.66,12+,Games,37,5,1,1
+1065271333,Sago Mini Robot Party,84750336,USD,2.99,53,53,4.5,4.5,1.0,4+,Education,39,5,1,1
+599608562,UNiDAYS: Student Discounts for Shopping Top Brands,67586048,USD,0.0,53,1,2.5,5.0,6.0.8,4+,Shopping,37,4,15,1
+1141983956,Moana: Rhythm Run,238605312,USD,6.99,53,48,3.0,2.5,1.1,4+,Entertainment,40,5,1,1
+1072159054,Super Candy: Let's Fix it!,87786496,USD,0.0,53,3,4.0,3.5,1.1,4+,Games,40,5,2,1
+605040858,Photon Safe Web Browser with Flash Player for Kids,34903040,USD,4.99,53,2,2.5,3.0,6.2,4+,Education,24,3,10,1
+945832041,Pulse Secure,45465600,USD,0.0,53,2,2.0,1.0,6.3.1,4+,Business,37,5,11,1
+1099735932,Treasure Buster,41987072,USD,0.99,53,53,4.5,4.5,1.0,12+,Games,38,5,1,1
+999702563,KORG iDS-10,88055808,USD,19.99,52,19,4.0,5.0,2.1.1,4+,Music,37,5,2,1
+1068556466,Modern Atlas Travel Guides & City Maps — nearby places in Wikipedia & Wikivoyage,65324032,USD,0.99,52,32,4.5,4.0,1.0.3,12+,Travel,37,5,1,1
+1017627073,Osmo Numbers,205487104,USD,0.0,52,1,4.0,5.0,1.5.7,4+,Games,24,5,12,1
+944244620,Santa Spy Cam! I Caught Santa!,21561344,USD,0.99,52,52,1.0,1.0,2.2,4+,Games,43,0,1,1
+1022023000,Witches' Legacy: The Dark Throne HD (Full),2116109312,USD,6.99,52,52,3.0,3.0,1.0.0,9+,Games,24,5,4,1
+1067575280,iScore5-APHG,76252160,USD,4.99,52,16,4.5,4.5,2.1,4+,Education,37,1,1,1
+954323480,Minesweeper - Widget Edition,1126400,USD,0.99,52,2,4.0,5.0,1.1,4+,Games,37,4,1,1
+736741821,Arise: Beat Procrastination & dominate todo lists!,7851008,USD,2.99,52,12,4.0,4.5,3.1,9+,Productivity,37,4,1,1
+1074061701,Haunted Hotel: Phoenix - A Mystery Hidden Object Game (Full),896477184,USD,6.99,52,52,4.5,4.5,1.0.0,9+,Games,38,5,4,1
+1069337400,無制限で人気音楽聴き放題! - Music Bank(ミュージックバンク),53994496,USD,0.0,52,0,5.0,0.0,1.9.0,4+,Entertainment,37,0,1,1
+1077056423,Danse Macabre: Thin Ice - A Mystery Hidden Object Game (Full),1180584960,USD,6.99,52,52,4.5,4.5,1.0.0,9+,Games,37,5,5,1
+1065590798,Osmo Monster,245437440,USD,0.0,52,2,4.0,3.5,1.3.9,4+,Games,24,5,12,1
+1155497019,Hexy!,146126848,USD,0.0,51,1,2.5,2.0,1.2.4,4+,Games,37,5,1,1
+1089003380,Heavy Metal Emoji Keyboard,62248960,USD,0.99,51,9,3.5,3.0,1.1,17+,Entertainment,37,0,1,1
+955266964,Create Musical Vids - Dubsmash & Musical.ly Edition - Record yourself saying the best sounds,20520960,USD,1.99,51,43,3.5,3.5,1.3,12+,Entertainment,40,2,1,1
+1114594263,Heroes of Loot 2,63109120,USD,3.99,51,1,4.0,4.0,1.1.4,9+,Games,38,5,1,1
+1160688144,Dr. Panda Toy Cars Free,357190656,USD,0.0,51,15,4.0,4.5,1.1,4+,Education,40,5,18,1
+756869261,InstaVideo Pro - Add background music to videos,4246528,USD,1.99,51,11,2.0,2.0,2.2.2,4+,Utilities,38,4,1,1
+447313708,途牛旅游-订机票酒店,查旅行景点门票,161202176,USD,0.0,51,1,4.5,5.0,9.1.4,17+,Travel,37,0,1,1
+1039260250,"lollicam - photo, video, and selfie camera",114951168,USD,0.0,51,0,3.5,0.0,1.71,9+,Photo & Video,37,0,17,1
+1139377101,Drakomon GO - 3D Monster Battle Game,310630400,USD,1.99,50,9,4.5,3.5,1.2.1,9+,Games,37,3,1,1
+1048831615,Train Driver Journey 8 - Winter in the Alps,264025088,USD,0.99,50,50,4.5,4.5,1.0,4+,Games,38,5,1,1
+932696349,Target Acquired,219380736,USD,0.0,50,50,3.5,3.5,0.8.8,9+,Games,40,4,1,1
+588922922,Gym Log+ — Workout and Fitness Tracker,76704768,USD,4.99,50,0,4.0,0.0,2.28.0,4+,Health & Fitness,37,5,11,1
+1084084901,Teeter – Endless Arcade Balancer,112320512,USD,0.0,50,16,4.0,3.5,1.5.1,4+,Games,37,3,8,1
+893998740,Toast Girl,37017600,USD,0.0,50,6,4.5,4.5,1.0.4,9+,Games,38,4,16,1
+605477810,Hunting Simulator,67679232,USD,2.99,50,9,3.5,2.5,1.6.9,12+,Sports,43,2,1,1
+1137022728,FreeFlight Mini,138648576,USD,0.0,50,14,3.5,3.5,4.2.11,4+,Entertainment,37,5,12,1
+946168827,"Virry Educational. Play, learn with real animals",131406848,USD,0.0,50,0,3.5,0.0,2.9.1,4+,Education,37,5,1,1
+1105291416,Virginia Tech Emoji,39652352,USD,0.0,50,0,3.0,0.0,1.3,4+,Utilities,37,0,1,1
+749969909,Serato Remote Mini,4603904,USD,4.99,50,50,3.0,3.0,1.0.1,4+,Music,40,0,1,1
+1121425007,Vampire Legends: Untold Story of Elizabeth (Full),1031653376,USD,6.99,50,5,3.0,3.5,1.0.6,9+,Games,24,5,3,1
+402614251,AR Missile - Automatic Target Tracking,17178624,USD,0.99,49,2,4.5,4.5,1.11,4+,Entertainment,38,0,2,1
+1116271098,Final Cut: Fade To Black - A Mystery Hidden Object Game (Full),1143723008,USD,6.99,49,49,4.5,4.5,1.0.0,9+,Games,37,5,4,1
+1069735362,Five Finger Fury,232179712,USD,0.0,49,20,3.0,3.5,1.0.23,9+,Games,40,5,1,1
+1140406356,Lock The Block,199593984,USD,0.0,49,22,3.0,3.0,1.7,4+,Games,37,5,22,1
+1119713595,Primordia,1537772544,USD,4.99,49,49,4.5,4.5,1.0,9+,Games,40,5,1,1
+1163404732,Jordan Keyboard,34557952,USD,0.0,49,6,3.5,5.0,1.0.3,4+,Utilities,37,0,1,1
+477707236,Bubble Mags,20885504,USD,0.99,49,1,4.5,5.0,1.96,4+,Games,37,5,1,1
+1001059684,Dr. Panda's Carnival,245165056,USD,2.99,49,15,3.5,4.5,1.24,4+,Education,40,5,17,1
+1016686482,How the Grinch Stole Christmas! - Read & Play,62609408,USD,3.99,49,22,4.5,4.5,4.0.7,4+,Book,37,5,1,1
+1071897944,File New - Photo Editor,153460736,USD,0.99,49,37,4.5,4.5,1.5,4+,Photo & Video,37,5,10,1
+1112162323,Highlights Monster Day,37062656,USD,0.0,49,1,5.0,5.0,1.0.7,4+,Education,37,5,10,1
+1088172195,Escape Game: Relief,42011648,USD,0.0,49,41,5.0,5.0,1.2,4+,Games,40,5,2,1
+1123667089,PlayKids Learn - Learning through play,410715136,USD,0.0,49,0,2.5,0.0,1.5.1,4+,Education,37,5,7,1
+1050988480,Daniel Tiger's Stop & Go Potty,106311680,USD,2.99,49,19,3.0,3.5,1.0.1,4+,Education,37,5,1,1
+1124453989,Bulb Boy,587630592,USD,2.99,49,6,4.5,4.0,1.14,12+,Games,37,5,1,1
+920133658,Anatomy & Physiology: Body Structures and Function,1758696448,USD,34.99,49,14,4.5,4.0,4.1.11,12+,Medical,37,5,5,1
+1166225107,My Town : Cinema,230627328,USD,2.99,49,39,4.0,4.5,1.01,4+,Education,37,5,1,1
+899997582,Simeji - Japanese Keyboard with Emoticons,137239552,USD,0.0,49,0,4.0,0.0,5.8.1,4+,Utilities,37,4,3,1
+528532387,ナビタイムの乗り換え案内 - 遅延情報やバス時刻表を案内するアプリ,103106560,USD,0.0,48,3,4.5,5.0,7.13.0,4+,Navigation,37,5,1,1
+1176156412,Top Tier,91834368,USD,0.0,48,1,4.5,5.0,1.3,4+,Games,37,5,1,1
+1062825806,What Jump - Free Pop Arcade Game,201992192,USD,0.0,48,0,3.0,0.0,2.1.2,4+,Games,40,5,1,1
+1120181386,Rubek,85164032,USD,1.99,48,19,4.5,4.5,1.1,4+,Games,40,5,1,1
+1135973816,Amaranthine Voyage: The Orb of Purity (Full),817638400,USD,6.99,48,10,3.5,3.5,1.0.2,9+,Games,37,5,5,1
+1086625206,Ball Escape!,131479552,USD,0.0,48,25,3.0,3.5,1.2,4+,Games,40,5,1,1
+1104124222,Ultrapic,31016960,USD,1.99,48,2,2.5,1.0,1.4.1,4+,Photo & Video,37,0,1,1
+962084488,Burly Men at Sea,208705536,USD,4.99,48,4,4.0,3.5,1.2,9+,Games,37,5,10,1
+1030457527,Disney Build It: Frozen,143358976,USD,3.99,48,15,3.0,3.0,1.2,4+,Entertainment,38,5,1,1
+1118072618,KORG iWAVESTATION,75792384,USD,29.99,47,23,4.5,4.0,1.0.1,4+,Music,37,5,1,1
+1074943747,LikeSo,26404864,USD,0.99,47,9,4.0,5.0,1.3,4+,Lifestyle,37,1,1,1
+564713751,51信用卡管家,68952064,USD,0.0,47,0,4.0,0.0,9.4.1,4+,Finance,38,4,2,1
+1079272952,Dot Empires,110882816,USD,0.0,47,22,2.5,3.0,1.12,9+,Games,38,5,1,1
+652138155,Ice Fishing Derby Premium,30641152,USD,2.99,47,2,4.0,4.0,1.11,4+,Games,40,3,1,1
+1031530508,Telepaint,95984640,USD,2.99,47,47,4.5,4.5,1.0,9+,Games,37,5,1,1
+1017447032,Transformers Rescue Bots: Save Griffin Rock,1491860480,USD,3.99,47,7,2.5,3.5,3.0.33,4+,Book,37,5,1,1
+1088242281,Stickman Cubed,109913088,USD,0.0,47,47,4.5,4.5,1.0,4+,Games,40,5,1,1
+1069468543,Whispered Secrets: Into the Beyond - A Hidden Object Adventure (Full),1029378048,USD,6.99,47,47,4.0,4.0,1.0.0,9+,Games,37,5,4,1
+1142385805,Spirit Rush,102096896,USD,0.0,47,27,3.5,4.0,1.1,4+,Games,37,5,1,1
+1128940693,Atomic Super Lander,222874624,USD,2.99,47,4,4.0,4.5,1.1,9+,Games,38,5,1,1
+898245825,Omnistat - System Status & Activity Monitor,4810752,USD,1.99,46,4,4.0,4.5,1.1.1,4+,Utilities,37,5,6,1
+1159218681,PulpMX 2.0,38900736,USD,1.99,46,2,3.5,3.0,2.8.23,12+,Sports,37,2,1,1
+309187846,SFR TV,122153984,USD,0.0,46,0,3.0,0.0,7.3.0,4+,Entertainment,37,5,1,1
+1040968715,The Monsters by Tinybop,267152384,USD,2.99,46,6,4.5,4.5,1.1.2,4+,Education,37,5,58,1
+1061501834,"Free Music -  Player & Streamer  for Dropbox, OneDrive & Google Drive",13889536,USD,0.0,46,13,2.5,2.5,1.3,4+,Music,38,3,1,1
+1143689829,Moji Me™,129187840,USD,0.99,46,31,3.5,4.0,1.0.2,9+,Entertainment,37,0,1,1
+1077483835,Fear for Sale: City of the Past HD - A Hidden Object Mystery (Full),2033625088,USD,6.99,46,46,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+1023648594,Dr. Panda Candy Factory,298553344,USD,2.99,46,46,4.0,4.0,1.0,4+,Education,40,5,12,1
+1072408580,Blackwell 5: Epiphany,1866697728,USD,3.99,46,46,5.0,5.0,1.0,12+,Games,40,5,1,1
+1064421107,Go Rally,266622976,USD,4.99,46,18,4.0,4.5,2.0.3,4+,Games,37,5,1,1
+1060333629,Focus - RAW Manual Camera with Smart Focus Peaking,36320256,USD,1.99,46,16,4.0,3.0,1.6.0,4+,Photo & Video,37,0,3,1
+1180340451,Valley of Fear Virtual Reality,150863872,USD,0.0,46,32,4.0,4.0,1.21,12+,Games,37,0,1,1
+1040224715,Smart Virtual Boyfriend,6730752,USD,0.0,46,6,2.0,2.5,2.0,12+,Lifestyle,37,1,1,1
+1102814563,Pepi House,177400832,USD,2.99,46,20,4.5,4.5,1.0.3,4+,Education,38,5,1,1
+1100797913,OffRoad Drive Desert,341455872,USD,1.99,46,24,4.0,4.0,1.0.5,4+,Games,40,5,1,1
+1137008076,VR Ball for Google Cardboard Virtual Reality,89332736,USD,0.0,46,39,4.0,4.0,0.3,4+,Games,40,0,1,1
+915375908,Mia and me - Free the Unicorns!,613076992,USD,2.99,45,42,4.0,4.0,1.21,4+,Games,40,5,1,1
+910159225,Yoga Break,98542592,USD,2.99,45,14,4.5,4.5,1.3,4+,Health & Fitness,40,5,1,1
+1108185975,Sea of Lies: Tide of Treachery - A Hidden Object Mystery (Full),890523648,USD,6.99,45,45,4.0,4.0,1.0.0,9+,Games,37,5,4,1
+1124139149,"Princess Face Paint - Girls Makeup, Dressup and Makeover Games",98643968,USD,0.0,45,45,4.0,4.0,1.0,4+,Games,43,5,2,1
+1104855278,少年西游记-西游卡牌王者之作,145988608,USD,0.0,45,1,4.5,5.0,1.8.11,12+,Games,38,5,1,1
+1083801827,Note Rush: Learn Music Sight Reading + Piano Notes,224086016,USD,3.99,45,3,4.5,4.0,1.26,4+,Games,38,5,1,1
+1108583427,Fitmoji by Shaun T,9736192,USD,1.99,45,3,4.0,2.5,1.0.5,9+,Entertainment,37,4,1,1
+914136002,Sleep Attack TD,672624640,USD,2.99,45,5,4.0,5.0,1.2.1,4+,Games,37,5,1,1
+1099995778,Punished Talents: Stolen Awards HD - A Mystery Hidden Object Game (Full),926931968,USD,6.99,45,45,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+1148229094,BurbuMoji,20556800,USD,0.99,45,9,3.0,2.0,1.2.0,12+,Entertainment,37,0,1,1
+373563219,Real英会話,80203776,USD,3.99,45,12,4.5,4.5,5.1,12+,Education,38,5,1,1
+826395534,Black Elements – Use our cool Wallpapers to change the elements on your Home Screen and Lock Screen to another color!,11292672,USD,1.99,44,44,1.0,1.0,1.0,4+,Lifestyle,38,0,1,1
+1102924965,Ummo,29007872,USD,1.99,44,13,3.5,2.5,1.0.6,4+,Lifestyle,37,0,1,1
+934540991,PAW Patrol Draw & Play HD,557006848,USD,3.99,44,22,3.5,3.5,1.3,4+,Education,24,5,1,1
+1157479274,Chunky Tanks,86175744,USD,0.0,44,7,3.5,3.5,1.1,4+,Games,37,5,1,1
+1148047801,Siralim 2 (RPG / Roguelike),150971392,USD,4.99,44,0,4.0,0.0,2.4.1,12+,Games,37,5,1,1
+1093488401,Extreme Heavy Trucker Parking Simulator,224924672,USD,0.0,44,44,4.0,4.0,1.0,4+,Games,38,5,1,1
+941107732,Santa Calls You Free,53106688,USD,0.0,44,38,2.5,2.5,1.0.1,4+,Entertainment,38,0,1,1
+1145823552,Concrete Jungle,256277504,USD,4.99,44,4,4.5,5.0,1.18,12+,Games,37,5,1,1
+1016810652,Gigglebug's Face Race,191375360,USD,2.99,44,7,3.5,3.5,1.4,4+,Education,38,5,3,1
+445850671,Zaim,118128640,USD,0.0,44,0,4.0,0.0,6.1.3,4+,Finance,37,5,2,1
+1050342815,Forged in Battle: Man at Arms,248636416,USD,1.99,44,12,4.5,5.0,1.0.2,12+,Games,38,5,1,1
+1074432267,Spirits of Mystery: Chains of Promise - A Hidden Object Adventure (Full),972818432,USD,6.99,44,44,4.0,4.0,1.0.0,9+,Games,38,5,4,1
+439495358,北京浮生记,1532640,USD,0.99,44,21,4.5,4.5,1.2.1,17+,Games,43,0,2,1
+1087318096,Ridiculous Parking Simulator a Real Crazy Multi Car Driving Racing Game,331473920,USD,0.0,43,43,4.0,4.0,1.0.1,4+,Games,37,5,1,1
+1108048349,Alice in Wonderland Puzzle Golf Adventures,182045696,USD,0.99,43,13,4.5,4.5,1.0.2,4+,Games,38,4,1,1
+1108340786,Zombies Chasing Me,157871104,USD,0.0,43,33,3.5,3.5,1.4,4+,Games,37,5,23,1
+727109676,TCS NYC Marathon,29911040,USD,0.0,43,0,3.5,0.0,4.2,17+,Sports,37,0,1,1
+1004090290,The Cat in the Hat - Read & Learn - Dr. Seuss,48586752,USD,3.99,43,27,4.5,4.5,4.0.6,4+,Book,37,5,1,1
+816821851,"ytools-flashlight,ruler,spirit level,protractor and sound level meter",2162688,USD,0.99,43,33,4.5,4.5,3.1.1,4+,Utilities,38,2,3,1
+567457151,MY EE,23851008,USD,0.0,43,0,2.5,0.0,4.4.0,4+,Utilities,37,5,1,1
+1112433234,Timelines - Time Tracking,10715136,USD,7.99,43,6,4.0,5.0,1.4.1,4+,Productivity,25,0,1,1
+444062672,NOAA Hurricane Center HD,8093696,USD,1.99,43,27,3.5,3.5,2.0,4+,Weather,26,5,1,1
+1034399175,Ominous Objects: Phantom Reflection HD - A Hidden Object Adventure (Full),1412444160,USD,6.99,43,43,4.0,4.0,1.0.0,9+,Games,24,5,3,1
+1134640800,Echoes of the Past: Wolf Healer HD (Full),909051904,USD,6.99,43,43,4.0,4.0,1.0.0,9+,Games,24,5,4,1
+1085730259,Curvulate,22950912,USD,0.0,43,6,4.0,3.5,1.1,4+,Games,40,5,1,1
+1135471095,Water Bottle Flip Challenge : 2k16,74104832,USD,0.0,43,10,3.5,4.5,1.9,4+,Games,38,3,1,1
+963477453,Egz – The Origin of the Universe,200281088,USD,3.99,43,15,4.0,4.5,1.0.4,4+,Games,37,5,1,1
+1132915398,ISLANDS: Non-Places,259855360,USD,2.99,43,43,3.5,3.5,1.0,4+,Games,37,5,1,1
+1044225211,Critter Academy,539506688,USD,0.0,43,4,3.5,5.0,1.5,9+,Games,40,4,1,1
+1021204969,Bob's Burgers Pinball,48860160,USD,1.99,43,39,4.5,4.5,1.0.1,4+,Games,38,3,1,1
+991897864,Easy Music - Give kids an ear for music,247308288,USD,3.99,43,16,4.5,4.0,1.6,4+,Education,37,5,1,1
+430229059,Rota Calendar - Work Shift Manager,1824768,USD,1.99,43,24,4.5,4.5,7.3,4+,Productivity,37,0,1,1
+1126403961,Peppa Pig: Sports Day,262830080,USD,2.99,42,2,2.5,3.0,1.1.5,4+,Entertainment,40,5,9,1
+1065675607,The Walk VR,311964672,USD,0.0,42,24,2.0,2.0,1.1,4+,Entertainment,38,0,1,1
+760018895,Calculator HD - the missing calculator on your iPad,3002368,USD,1.99,42,18,4.5,5.0,3.0,4+,Utilities,24,5,30,1
+992875656,EWallpaper,10727424,USD,3.99,42,42,1.0,1.0,1.0,4+,Entertainment,38,0,1,1
+573615421,Vendée Globe 2016,253679616,USD,0.0,42,0,2.0,0.0,2.1.9,4+,Sports,37,5,2,1
+978176131,Sofia the First: The Secret Library,610469888,USD,3.99,42,11,3.5,4.5,1.3,4+,Entertainment,38,5,7,1
+1083356839,Monster Busters: Link Flash,125476864,USD,0.0,42,0,4.5,0.0,1.0.62,4+,Games,40,5,1,1
+1130630397,Pixel Strike-Sniper zombies shooting games,165691392,USD,0.0,42,1,4.0,5.0,4.0,12+,Games,40,4,1,1
+951971414,TankTrouble - Mobile Mayhem,19456000,USD,1.99,42,26,4.0,4.0,1.0.7,9+,Games,43,5,1,1
+1137231583,KDMOJI,47009792,USD,1.99,42,7,3.5,2.5,1.2,17+,Entertainment,37,5,1,1
+1132817034,Helper for Pokemon Go,8382464,USD,0.0,42,0,1.5,0.0,1.5.2,4+,Utilities,38,0,1,1
+518611020,聚美优品-新用户专享160元现金券,153457664,USD,0.0,42,0,4.5,0.0,4.450,4+,Shopping,38,0,2,1
+1126055536,Hillarymoji,32003072,USD,0.0,42,3,3.5,3.0,2.0,17+,Entertainment,37,0,1,1
+547100072,DMBX 2 - Mountain Bike and BMX,165738053,USD,1.99,42,20,4.0,4.0,1.1.0,4+,Games,39,5,2,1
+1052623015,诸神战纪IV:战神崛起,92015616,USD,0.99,42,5,5.0,5.0,2.0.3,12+,Games,40,4,2,1
+933189224,Astrå,215661568,USD,0.99,42,2,4.0,2.0,1.1.2,4+,Games,38,5,1,1
+479243891,"Montessori Letter Sounds - Phonics in English, Spanish, French, German & Italian",185828352,USD,3.99,41,28,3.5,3.5,6.3,4+,Education,38,5,5,1
+623856305,PDF Export - Photos to PDF and Converter,58659840,USD,2.99,41,6,3.5,4.5,6.3.2,4+,Business,37,5,29,1
+1032934485,City Car Driving,89788416,USD,0.0,41,41,4.0,4.0,1.02,4+,Games,43,5,1,1
+1104869703,Gate Keepers,107710464,USD,0.0,41,36,3.5,3.5,1.3,4+,Games,40,5,1,1
+1105584845,Dashy Box,63738880,USD,0.0,41,2,4.0,3.0,4,4+,Games,37,3,1,1
+503090249,RecordOrders,61618176,USD,1.99,41,0,4.0,0.0,1.8.72,4+,Business,37,1,33,1
+668533031,洋码头—正品保证海外买手带你全球购洋货,128899072,USD,0.0,41,0,4.5,0.0,3.6.1,4+,Shopping,37,0,1,1
+1128326130,Pocket Arcade Story,189608960,USD,4.99,41,20,3.5,2.5,1.02,9+,Games,38,5,4,1
+1007177838,The Game - Play ... as long as you can!,52744192,USD,2.99,41,9,4.5,4.5,1.0.2,9+,Games,40,5,2,1
+969475899,Geki Yaba Runner,117735424,USD,0.0,41,12,4.0,4.0,1.0.4,4+,Games,38,5,1,1
+1064165938,Romulus Euro,18122752,USD,2.99,41,7,5.0,5.0,2.0,4+,Education,37,0,1,1
+988375097,Hugo Flower Flush,242545664,USD,0.0,41,0,4.0,0.0,1.14.0,4+,Games,38,5,15,1
+534539160,Tapage by My Little App,54250496,USD,0.0,41,0,4.5,0.0,5.0,17+,Lifestyle,37,5,1,1
+1174503010,Hovercrash,64712704,USD,0.0,41,5,4.0,4.0,1.2.1,4+,Games,37,5,1,1
+1161231636,Escape Game: Signs,45420544,USD,0.0,41,41,5.0,5.0,1.0,4+,Games,40,5,2,1
+1146320033,Dierks Bentley Lyric Keyboard + Emojis,91759616,USD,1.99,41,0,5.0,0.0,1.0.5,9+,Utilities,37,3,1,1
+1047755932,Phantasmat: The Endless Night HD - A Mystery Hidden Object Game (Full),1219964928,USD,6.99,41,17,4.5,4.5,1.0.2,9+,Games,24,5,4,1
+551215116,LAMP Words For Life,583263232,USD,299.99,41,0,4.0,0.0,1.5.5,4+,Education,24,5,1,1
+1183986102,Santa Kids Hair Salon - Christmas Makeover Games,64244736,USD,0.0,41,19,4.5,4.5,1.3,4+,Games,37,5,25,1
+1091569546,Behind You!!,52901888,USD,0.0,40,15,5.0,4.5,1.0.1,9+,Games,40,3,12,1
+1045268097,Inquire by Tamper,55059456,USD,0.99,40,4,4.5,5.0,1.2,12+,Travel,37,0,31,1
+331004675,The perfect Egg timer,15329280,USD,0.99,40,0,3.5,0.0,1.8.9,4+,Food & Drink,37,4,7,1
+1103679001,5-in-1 Emoji Widget Games - GameMoji,13625344,USD,0.99,40,13,3.5,4.0,2.0,4+,Utilities,37,2,1,1
+1082958327,Vetmoji,10045440,USD,1.99,40,11,3.0,2.5,1.0.4,4+,Entertainment,37,4,1,1
+1099179070,DM2 - The Drum Machine,93433856,USD,4.99,40,3,4.5,5.0,1.2.3,4+,Music,24,5,1,1
+930368978,DingTalk,164508672,USD,0.0,40,0,4.0,0.0,3.4.11,4+,Business,38,4,3,1
+879157782,WSVN Hurricane Tracker,73956352,USD,0.0,40,0,4.0,0.0,4.22.260026988,4+,News,37,4,2,1
+1078560336,No Limit Racer,65764352,USD,0.0,40,40,3.5,3.5,1.0,4+,Games,40,5,1,1
+1050452180,Morning Routine : Daily Habit Tracker,16276480,USD,0.0,40,12,3.0,2.5,2.2.1,4+,Health & Fitness,37,0,7,1
+791532221,开心消消乐®,136075264,USD,0.0,40,2,4.0,2.5,1.1.34,4+,Games,40,5,3,1
+961889853,Get 'Em,719419392,USD,0.99,40,3,4.0,5.0,1.0.8,9+,Games,37,5,1,1
+1042173956,Emoji Bae - Custom Emojis,12980224,USD,1.99,40,0,2.5,0.0,1.5,9+,Utilities,37,0,1,1
+1075979610,CATTCH,396023808,USD,1.99,40,40,4.5,4.5,1.0,4+,Games,38,5,1,1
+796149420,Carp Fishing Simulator,449393664,USD,4.99,39,8,4.0,4.5,2.0.0,4+,Games,37,4,1,1
+978148241,Blitz Breaker,50969600,USD,2.99,39,4,4.0,5.0,1.0.1,4+,Games,37,5,1,1
+956811074,Carbo - Handwriting in the Digital Age,55131136,USD,7.99,39,0,3.5,0.0,1.4.3,4+,Productivity,37,5,13,1
+505066327,Fake call from the Easter Bunny,15771648,USD,0.0,39,2,2.0,1.0,3.0,4+,Entertainment,37,0,1,1
+482158461,French Belote,42018816,USD,2.99,39,0,4.5,0.0,3.5.0,4+,Games,38,5,2,1
+959469304,FATAL FURY SPECIAL,85696512,USD,3.99,39,39,4.0,4.0,1.0.0,12+,Games,38,5,2,1
+533863652,Odysseus: Long Way Home HD (Full),281676680,USD,4.99,39,39,4.0,4.0,1.0.0,4+,Games,26,5,7,1
+1071006943,Spike Run,165801984,USD,0.0,39,39,4.0,4.0,1.0,4+,Games,40,5,13,1
+1153028211,Demon's Rise 2: Lords of Chaos,2205314048,USD,7.99,39,11,4.5,4.0,1.31,12+,Games,37,5,1,1
+1175316770,Call Recorder for iPhone - Record Phone Calls,94401536,USD,9.99,39,7,2.5,2.5,1.7,4+,Business,37,0,7,1
+1110447884,Shadow Wolf Mysteries: Curse of Wolfhill (Full),997129216,USD,6.99,39,39,4.0,4.0,1.0,9+,Games,37,5,5,1
+1133744473,Loop & Dot,33594368,USD,0.99,39,2,4.5,5.0,1.6,4+,Games,37,5,1,1
+1183234072,CTFxCmoji,26077184,USD,0.0,39,4,5.0,5.0,1.3,9+,Social Networking,37,1,1,1
+1106493268,Warcher Defenders,126512128,USD,0.0,39,24,4.5,5.0,1.3,12+,Games,40,5,1,1
+1140396820,Hell Run - Scary Road,15490048,USD,0.0,39,39,2.5,2.5,1.0,4+,Games,40,4,1,1
+1125534178,"BeCasso – Watercolor & Oil Paintings, Comic Effect",77242368,USD,1.99,39,1,4.5,5.0,1.2.2,4+,Photo & Video,25,5,8,1
+1142345991,Dashy the Cat,83433472,USD,0.0,39,24,3.0,3.0,1.0.1,4+,Games,40,5,1,1
+1090532562,Golf Ball Locator,3899392,USD,3.99,38,6,2.0,2.0,1.6,4+,Sports,37,0,31,1
+1148435080,Parallyzed: Surreal Platform Runner,235838464,USD,2.99,38,16,4.5,4.5,1.1.1,9+,Games,37,5,10,1
+1047840202,PBS KIDS ScratchJr,102995968,USD,0.0,38,5,4.0,4.0,1.2.2,4+,Education,24,5,1,1
+606910110,Fireman Sam - Fire & Rescue,215833600,USD,1.99,38,1,3.5,1.0,5.0,4+,Games,40,5,10,1
+1157900625,Pursuit of Light2,361181184,USD,0.0,38,0,4.0,0.0,1.3.0,4+,Games,37,5,3,1
+1147995014,Limo Driving School a Valet Driver License Test Parking Simulator,288715776,USD,0.0,38,26,3.5,4.0,1.1,4+,Games,38,5,1,1
+1120437406,Cubicle.,87667712,USD,0.0,38,38,4.0,4.0,1.0,4+,Games,38,5,1,1
+298596830,NRJ Radio,53426176,USD,0.0,38,2,3.5,5.0,5.2.6,4+,Music,37,5,4,1
+992412812,Face Paint Party - Kids Coloring Fun,89993216,USD,0.0,38,38,4.0,4.0,1.2,4+,Games,40,5,11,1
+1135441810,Sky Viper Flight Simulator,474814464,USD,0.0,38,37,4.0,4.0,1.1,4+,Entertainment,37,5,1,1
+424598114,苏宁易购-新人专享大礼包,185606144,USD,0.0,38,0,3.0,0.0,5.2.5,17+,Shopping,38,0,1,1
+1068236871,Overcome Porn: 40 Day Challenge,37776384,USD,2.99,38,5,2.5,4.0,1.5.4,9+,Lifestyle,37,0,1,1
+924826403,The Swords,48083968,USD,1.99,38,2,4.0,3.5,1.03,12+,Games,38,5,4,1
+1176148737,25 Days of Christmas: Holiday Advent Calendar 2016,94569472,USD,0.0,38,11,4.5,4.5,1.2,4+,Entertainment,38,5,14,1
+1106329353,熊猫直播-王者大神主播带你荣耀开黑,100372480,USD,0.0,38,0,4.0,0.0,3.1.3,12+,Entertainment,38,0,1,1
+953230894,Odd Squad: Blob Chase,485670912,USD,1.99,38,17,3.5,4.0,2.0,4+,Education,26,5,1,1
+848276233,The Easter Bunny Tracker,17702912,USD,1.99,38,9,2.5,1.5,2.0,4+,Entertainment,37,2,1,1
+1100029269,Sable Maze: Soul Catcher HD - A Mystery Hidden Object Game (Full),1233047552,USD,6.99,38,38,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+871095743,虎牙直播-热门高清游戏互动直播平台,77289472,USD,0.0,38,0,3.5,0.0,4.7.0,17+,Entertainment,38,5,2,1
+1080236551,Pug's Quest,163494912,USD,2.99,38,38,4.0,4.0,1.0,12+,Games,40,5,1,1
+1031867079,Forest Heroes Story,71539712,USD,0.0,38,15,4.5,4.0,2.1.0,4+,Games,40,5,3,1
+1146991999,Tongo Music - for kids and families,405502976,USD,1.99,37,4,4.0,4.5,1.3.,4+,Education,40,5,13,1
+992140496,Football Chairman Pro,29378560,USD,3.99,37,12,4.5,4.5,1.2.2,4+,Games,40,5,1,1
+991165672,Election Center 2016,44598272,USD,0.0,37,1,2.0,2.0,2.2,4+,News,37,5,1,1
+1078677054,minimize,67985408,USD,2.99,37,8,4.0,4.5,1.1,4+,Games,37,5,10,1
+1124123246,SnapType Pro,33778688,USD,4.99,37,15,4.5,5.0,4.1.10,4+,Education,37,4,3,1
+1035494079,Re:Monster,190661632,USD,0.0,37,0,3.5,0.0,2.2.6,12+,Games,40,3,1,1
+852801905,タップル誕生 - 出会いアプリで趣味から恋活・婚活,62878720,USD,0.0,37,1,4.5,5.0,2.2.1,17+,Social Networking,37,0,2,1
+1052994265,Catch Santa Claus in my house for Christmas,67785728,USD,0.0,37,3,3.5,3.5,3.03,4+,Lifestyle,37,5,1,1
+1055684003,SKYHILL,283567104,USD,2.99,37,15,4.0,4.0,1.2,12+,Games,37,5,11,1
+1014565551,Sago Mini Trucks and Diggers,109857792,USD,2.99,37,7,4.0,4.5,1.2,4+,Education,38,5,1,1
+1025177870,TRUMP Yo'Self! Make Your Hair Great Again!,39518208,USD,0.0,37,37,4.0,4.0,1.5.1,4+,Entertainment,38,2,1,1
+1164439637,Race Driving School Car Racing Driver License Test,321210368,USD,0.0,37,25,3.5,3.5,1.0.3,4+,Games,37,5,1,1
+1071521565,Emily’s Polar Adventure,100721664,USD,0.0,37,0,4.0,0.0,1.1,4+,Games,40,5,2,1
+545993260,Weather & Radar,94449664,USD,0.0,37,2,4.0,3.5,4.3.2,4+,Weather,37,3,21,1
+909587083,Mail Master Pro by NetEase,118506496,USD,1.99,36,1,4.0,5.0,5.4.3,4+,Productivity,37,5,3,1
+554050644,Touch Camera - Fast Recording and Burst,5071872,USD,1.99,36,1,1.0,1.0,2.6.6,4+,Photo & Video,37,5,3,1
+1140513212,Colt Express,762607616,USD,2.99,36,5,4.0,4.0,1.3,9+,Games,37,5,5,1
+1024000488,浪漫庄园(自由创造你的梦想),97181696,USD,0.0,36,17,4.5,5.0,1.3.9,12+,Games,40,5,1,1
+952549036,SOUND Canvas,73953280,USD,19.99,36,7,4.0,2.5,1.2.1,4+,Music,25,3,1,1
+942473930,Paper Monsters Recut,395749376,USD,0.99,36,4,4.0,4.0,1.2.9,4+,Games,37,5,1,1
+1082891966,Wellbeyond Meditation for Kids,68709376,USD,0.0,36,8,4.0,4.0,2.0,4+,Health & Fitness,37,5,1,1
+1033679736,Dig Deep!,30904320,USD,1.99,36,0,3.5,0.0,1.4,9+,Games,37,5,9,1
+1137155107,Tank Battle: 1945,253285376,USD,1.99,36,10,3.5,4.5,1.5,12+,Games,37,5,1,1
+1020583460,Cloud Chasers - A Journey of Hope,277534720,USD,3.99,36,4,3.5,4.5,1.0.5.0,12+,Games,37,5,1,1
+1126531257,Me by Tinybop,192496640,USD,2.99,36,17,5.0,5.0,1.0.2,4+,Education,38,5,58,1
+1162838832,Saga of the North Wind,40674304,USD,5.99,36,1,4.5,5.0,1.1.0,12+,Games,38,5,1,1
+1102056464,Skateboard Party 3 ft. Greg Lutzka,1478030336,USD,1.99,36,4,4.5,5.0,1.0.4,9+,Games,38,5,11,1
+405548206,Lobi,38540288,USD,0.0,36,0,4.0,0.0,9.1.5,17+,Social Networking,37,0,4,1
+1133481001,Ocean Clash: A naval game with honor and loyalty,124729344,USD,0.0,36,0,4.5,0.0,4.3.0,9+,Games,43,5,8,1
+1159900476,Where's My What? Free,390756352,USD,0.0,35,17,3.0,4.5,1.0.3,4+,Games,37,5,1,1
+1039971485,Sesame Street Alphabet Kitchen,321781760,USD,2.99,35,1,4.5,5.0,2.2,4+,Education,37,5,1,1
+1045504326,NO THING - Surreal Arcade Trip,128228352,USD,1.99,35,35,4.5,4.5,1.0,9+,Games,40,5,1,1
+1135564253,Off the Record: The Final Interview (Full),782278656,USD,6.99,35,6,3.5,5.0,1.0.2,9+,Games,37,5,5,1
+337710261,Dream Team - be your own fantasy football manager,69816320,USD,0.0,35,0,2.5,0.0,12.8.0,17+,Sports,37,3,1,1
+998360879,Chain: Collaborate On MyVideo Story/Group Video,95789056,USD,0.0,35,0,4.5,0.0,3.2.5,12+,Social Networking,37,0,1,1
+566685699,We Maps,38597632,USD,6.99,35,8,4.5,5.0,8.4.2,4+,Travel,37,5,15,1
+1031021466,Amount Plus - Unit And Currency Converter,7095296,USD,2.99,35,17,4.0,4.5,1.2,4+,Productivity,37,3,3,1
+1143436828,Jumps - Jumping on Pillars Game,12045312,USD,0.0,35,35,3.5,3.5,1.0,4+,Games,40,4,1,1
+1172179917,Replica : A Little Temporary Safety,127227904,USD,1.99,35,19,4.5,4.5,1.2,12+,Games,37,5,1,1
+1173954282,Mannequin Challenge Maker,4682752,USD,0.99,35,1,2.0,5.0,2.3,4+,Photo & Video,37,0,1,1
+1164424437,Our dark lord-Sasuyu 2-TAP RPG,65501184,USD,0.0,35,9,4.5,4.5,1.2.0,4+,Games,37,5,4,1
+431865275,The JMU Bus App,4427776,USD,2.99,35,0,3.0,0.0,3.1.2,4+,Navigation,38,0,1,1
+1121484538,Station Manager,213410816,USD,4.99,35,8,3.5,3.0,1.10,4+,Games,37,5,4,1
+1118398079,Agricola All Creatures Big and Small,160331776,USD,4.99,35,2,4.0,4.5,1.41,4+,Games,37,5,1,1
+1169530248,Waiit,133295104,USD,0.0,35,21,3.5,3.0,1.0.2,4+,Games,37,4,1,1
+1119132775,Moasure - the smart tape measure,58884096,USD,2.99,35,9,3.0,4.0,1.1.6,4+,Utilities,25,0,7,1
+1163850915,Clown Spotter - Find Clowns Around You,26049536,USD,0.0,34,9,2.5,2.5,2.0,9+,News,37,4,1,1
+480079300,58同城-招聘找工作兼职租房软件,139967488,USD,0.0,34,0,4.0,0.0,7.10.5,17+,Lifestyle,37,4,1,1
+435693872,Kurumaki Calendar -month scroll calendar-,7558144,USD,1.99,34,6,5.0,5.0,2.6,4+,Productivity,37,0,31,1
+1083174287,Lemon Lumberjack's Letter Mill,155712512,USD,0.0,34,0,4.5,0.0,1.0.5,4+,Education,37,5,1,1
+1100139790,Dinotrux: Trux It Up!,377004032,USD,1.99,34,9,4.0,3.0,1.4,4+,Entertainment,37,5,14,1
+1072364990,Talisman: Horus Heresy,108940288,USD,1.99,34,0,3.5,0.0,4.0,4+,Games,40,5,1,1
+1081957053,Ominous Objects: Trail of Time HD (Full),1030500352,USD,6.99,34,34,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+974769286,Exify - Tools for Photos,8335360,USD,1.99,34,8,4.0,4.0,1.1,4+,Photo & Video,37,5,1,1
+1033229197,Ys Chronicles II,466280448,USD,4.99,34,27,5.0,5.0,1.0.1,9+,Games,40,5,1,1
+1075853478,Street Fighter V Official Frame Data App,53233664,USD,1.99,34,19,2.0,1.5,1.7,4+,Entertainment,37,1,1,1
+1118646945,PIN Genie Vault – Secret photo album & Password,96621568,USD,0.0,34,0,4.0,0.0,1.1.7,17+,Utilities,37,5,3,1
+974530923,Laundry Day - Care Symbol Reader,14903296,USD,0.99,34,34,4.5,4.5,1.0,4+,Productivity,38,0,2,1
+599456126,Sleep Meister - Sleep Cycle Alarm,16607232,USD,0.99,34,2,4.0,5.0,1.13.24,4+,Health & Fitness,37,0,2,1
+1130542083,WiFox,3180544,USD,1.99,34,2,3.0,4.5,12,4+,Travel,37,1,28,1
+1071913738,Ready Jet Go! Space Explorer,572466176,USD,0.0,34,2,3.5,5.0,1.3,4+,Education,37,5,1,1
+895682747,京东金融-【618周年庆】新人领千元好礼,145532928,USD,0.0,33,1,3.0,5.0,4.1.0,17+,Finance,37,0,2,1
+1076985045,Weather by Tinybop,285985792,USD,2.99,33,5,4.0,5.0,1.0.2,4+,Education,38,5,58,1
+1110700363,Being SalMan: The Official Game,173696000,USD,0.0,33,16,4.5,5.0,1.1.0,12+,Games,37,5,1,1
+978563657,Composer's Sketchpad,175493120,USD,3.99,33,1,3.5,4.0,1.2.1,4+,Music,24,5,1,1
+1005415016,FUT Wager,43257856,USD,1.99,33,3,3.5,2.5,3.2,17+,Sports,37,5,10,1
+462125072,广东移动手机营业厅-话费流量一手掌握,专属优惠定期发放,30503936,USD,0.0,33,0,3.5,0.0,5.2.2,17+,Utilities,38,0,1,1
+1065562979,Dark Dimensions: City of Ash HD - A Mystery Hidden Object Game (Full),1231781888,USD,6.99,33,6,3.0,3.0,1.0.2,9+,Games,24,5,3,1
+931337752,幻獣契約クリプトラクト,97223680,USD,0.0,33,0,4.0,0.0,v3.6.9,9+,Games,40,5,1,1
+567143224,French Tarot,41298944,USD,4.99,33,1,4.5,5.0,3.4.0,4+,Games,38,5,2,1
+1047566421,BFB Champions 2.0 ~Football Club Manager~,197970944,USD,0.0,33,0,4.0,0.0,2.1.0,4+,Games,38,5,3,1
+1163971418,MalkinMoji by Evgeni Malkin,60633088,USD,0.99,33,2,3.5,5.0,1.21,9+,Sports,37,0,1,1
+1085617232,Moorish Kingdom,713567232,USD,2.99,33,33,4.0,4.0,1.0,12+,Games,40,5,1,1
+1135442411,Pozzle Blocks,100804608,USD,0.0,33,0,4.0,0.0,1.7,4+,Games,37,4,1,1
+1109781792,Flip Heroes,53690368,USD,0.0,32,32,4.0,4.0,1.1,4+,Games,38,5,13,1
+935623257,infltr - Infinite Filters,132298752,USD,1.99,32,0,2.5,0.0,2.8.2,4+,Photo & Video,37,5,22,1
+435728260,Building Parallel Circuits,31744669,USD,0.99,32,7,3.5,3.0,1.3.1,4+,Education,26,3,1,1
+293573778,Avertinoo,8044544,USD,4.99,32,0,3.0,0.0,3.9.2,4+,Navigation,38,5,7,1
+1058747457,Chinese Recipes - Asian cuisine,148336640,USD,0.0,32,2,4.0,4.5,9.12.0002,4+,Education,38,5,3,1
+1177806007,Disaster Prediction App,26094592,USD,2.99,32,9,4.5,4.5,1.7,12+,Lifestyle,37,0,1,1
+770903376,Pointless Quiz,80462848,USD,1.99,32,5,4.5,5.0,2.4,4+,Games,38,5,1,1
+1148138918,Secrets of the Dark: The Flower of Shadow (Full),903281664,USD,6.99,32,32,3.5,3.5,1.0.0,9+,Games,24,5,3,1
+1051755724,Steelers Live GameDay Nation Radio - Pittsburgh Football & Sports App Edition,18636800,USD,1.99,32,32,5.0,5.0,1.1,4+,Sports,38,0,1,1
+1002739417,Proton Pulse for Google Cardboard,194486272,USD,2.99,32,32,4.5,4.5,1.3,4+,Games,37,0,1,1
+1035219562,Analog Paris,27561984,USD,0.99,32,32,4.5,4.5,1.0.7,4+,Photo & Video,43,5,5,1
+953086535,Cryptomator - Cloud Storage Encryption,33991680,USD,4.99,32,2,4.5,5.0,1.2.2,4+,Productivity,37,5,4,1
+1094030987,NFL Draft - Fan Mobile Pass,62576640,USD,0.0,32,9,2.0,1.5,2.1,4+,Sports,37,0,4,1
+1112477374,Smelly Baby - Farty Party,110398464,USD,0.0,32,32,4.0,4.0,1.0,4+,Games,38,5,11,1
+1137262188,Gweep Gwop,566353920,USD,0.0,32,0,5.0,0.0,1.6,4+,Games,40,5,1,1
+709003148,GANMA! - 漫画が制限ナシで読み放題のマンガアプリ,73193472,USD,0.0,31,1,4.5,5.0,2.5.2,12+,Book,37,5,1,1
+1138868271,Nature Cat's Great Outdoors,291833856,USD,0.0,31,3,4.0,5.0,1.0.2,4+,Education,37,5,1,1
+1087693451,Dumb Ways JR Boffo's Breakfast,92313600,USD,1.99,31,31,3.5,3.5,1.0,4+,Education,37,4,1,1
+395148744,NOAA Hurricane Center,8069120,USD,1.99,31,15,3.0,3.0,3.5,4+,Weather,43,0,1,1
+1101419354,Aurora - Puzzle Adventure,111938560,USD,1.99,31,30,4.5,4.5,1.39,4+,Games,38,4,1,1
+1055302647,Flip Football - Soccer Manager Strategy Card Game,205762560,USD,0.0,31,0,3.5,0.0,1.05.005,4+,Games,37,5,1,1
+906995758,小猿搜题-中小学拍照搜题作业帮手,77407232,USD,0.0,31,0,4.5,0.0,5.4.0,4+,Education,37,0,1,1
+1092653320,Vice Lipstick,142598144,USD,0.0,31,3,3.5,2.5,1.0.3,12+,Lifestyle,37,0,1,1
+1069621692,LivePapers - Live Wallpapers from your photos,14437376,USD,1.99,31,0,2.5,0.0,1.0.8,4+,Lifestyle,37,5,1,1
+1050331109,Seattle GameDay Sports Radio – Seahawks and Mariners Edition,20144128,USD,1.99,31,23,5.0,5.0,1.2,4+,Sports,38,0,1,1
+971329287,Sago Mini Boats,119345152,USD,2.99,31,7,4.5,3.5,1.2,4+,Education,38,5,1,1
+853246110,Mr Jack Pocket,100689920,USD,2.99,31,9,3.5,3.0,2.0.2,4+,Games,40,4,1,1
+1065354321,Glass Road,434425856,USD,3.99,31,10,2.0,1.5,2.0.0,4+,Games,38,5,1,1
+1116026071,Dr. Panda Hoopa City 2,170365952,USD,3.99,31,9,4.5,4.5,1.2,4+,Education,40,5,20,1
+1181024195,My Town : Beauty Contest,203589632,USD,2.99,31,31,4.5,4.5,1.0,4+,Games,37,5,1,1
+974092051,Blackwell 4: Deception,646467584,USD,3.99,31,31,5.0,5.0,1.0,12+,Games,40,5,1,1
+1137175892,Neon Horizon,111053824,USD,0.0,31,12,4.0,4.0,1.3,4+,Games,38,5,1,1
+1060102144,Peppa Pig: Theme Park,384330752,USD,2.99,30,1,2.5,5.0,1.1.8,4+,Entertainment,40,5,10,1
+1080497972,WKC Dog Show 2017,15362048,USD,0.0,30,10,2.5,4.0,1.0.3,17+,Sports,37,0,1,1
+1144650526,REmojis Keyboard,99468288,USD,0.99,30,5,2.5,1.0,1.3,4+,Utilities,37,4,1,1
+443926246,驴妈妈旅游-订景点门票机票火车票特价酒店,145368064,USD,0.0,30,0,5.0,0.0,7.9.6,4+,Travel,37,5,1,1
+1187682390,VR Roller-Coaster,120760320,USD,0.0,30,30,4.5,4.5,0.9,4+,Games,38,0,1,1
+1090320498,Thomas & Friends™: Read & Play,83994624,USD,0.0,30,2,4.0,1.0,1.0.5,4+,Entertainment,37,5,1,1
+293118835,iStellar,44241920,USD,3.99,30,0,3.5,0.0,2.9.0,4+,Navigation,37,0,2,0
+994674676,Sago Mini Superhero,179484672,USD,2.99,30,17,3.5,3.0,1.1,4+,Education,38,5,1,1
+320596872,Sparkasse+,119648256,USD,0.99,30,0,3.0,0.0,3.1.3,4+,Finance,37,0,3,1
+1112500249,单机群侠传-金庸群侠传口袋版,153306112,USD,0.0,30,4,5.0,5.0,3.2.1,9+,Games,38,5,1,1
+987112935,VR SNIPER,89478144,USD,0.0,30,18,2.5,2.5,2.0,12+,Games,37,3,1,1
+1157626465,Smashing The Battle,292851712,USD,4.99,30,12,4.5,4.5,1.03,12+,Games,37,5,5,1
+1152254310,Nibmoji: Political Emojis,9701376,USD,0.0,30,11,3.0,2.5,1.0.1,17+,Entertainment,37,3,1,1
+1133990005,Buildy Blocks,79694848,USD,0.0,30,27,4.5,4.5,1.2.0,4+,Games,38,5,1,1
+1072276976,Dr. Panda Racers,272375808,USD,2.99,30,30,4.0,4.0,1.0,4+,Education,40,5,6,1
+1115010672,kubic,334576640,USD,1.99,30,0,4.0,0.0,1.6,4+,Games,37,5,12,1
+1114606759,Crap! I'm Broke: Out of Pocket,46360576,USD,1.99,30,7,3.5,4.5,1.1.4,12+,Games,40,5,1,1
+1136242132,Nitro Heads,345926656,USD,0.0,30,30,4.0,4.0,1.0,4+,Games,40,5,1,1
+440677948,Lieferheld - Delicious food delivery service,46147584,USD,0.0,29,1,4.5,5.0,3.3.9,12+,Food & Drink,38,0,2,1
+1110429957,Jamie Oliver's Ultimate Recipes,49263616,USD,6.99,29,0,4.5,0.0,3.6.1,12+,Food & Drink,37,5,2,1
+1125301530,VR Crazy Bike Race: Traffic Racing Free,171485184,USD,0.0,29,9,1.5,1.5,2.5,4+,Games,37,4,1,1
+700440156,Articulation Test Center Pro,174737408,USD,59.99,29,0,4.5,0.0,2.6,4+,Education,24,5,1,1
+1106542634,Tip Tap Soccer,135485440,USD,0.0,29,24,4.0,4.0,1.1,4+,Games,40,5,1,1
+1144154105,Slip Away Mystify,138277888,USD,2.99,29,0,4.0,0.0,1.1,4+,Games,37,5,1,1
+1002345611,Little Farmers - Tractors and Harvesters for Kids,286941184,USD,1.99,29,4,3.0,3.5,1.5,4+,Education,38,5,18,1
+979540312,Northern Lights Photo Taker,9326592,USD,0.99,29,29,4.0,4.0,1.0,4+,Photo & Video,37,2,1,1
+492262759,iPaint uPaint,3195904,USD,0.0,29,0,4.5,0.0,5.0.1,4+,Games,37,1,2,1
+1131232060,Dead Shell: Roguelike RPG,92187648,USD,2.99,29,29,3.5,3.5,1.0.14,12+,Games,40,5,1,1
+1180300366,Pitmoji - Pit Bull Emoji & Stickers,32785408,USD,2.99,29,29,3.0,3.0,1.0,12+,Entertainment,37,4,1,1
+1162794046,Empyrean,42916864,USD,5.99,29,11,4.5,4.5,1.0.1,12+,Games,38,5,1,1
+1100088261,Alternative Girls,207391744,USD,0.0,29,2,5.0,4.0,1.10.0,12+,Games,38,4,1,1
+566813949,淘票票 - 原淘宝电影,选座购票必备,98619392,USD,0.0,29,0,3.5,0.0,6.8.2,12+,Entertainment,38,5,2,1
+1151195880,Soccer 17,131052544,USD,2.99,29,29,1.5,1.5,1.1.0,4+,Games,40,5,1,1
+419724490,Lieferando.de,31544320,USD,0.0,29,1,3.5,5.0,3.6.9,4+,Food & Drink,38,0,2,1
+570608623,腾讯体育-NBA全网独播,89204736,USD,0.0,29,0,3.5,0.0,5.0.4,17+,Sports,37,0,1,1
+1059325444,Santa Tracker - Where is Santa Claus?,35182592,USD,0.0,29,8,2.5,2.5,2.0,4+,Entertainment,37,5,1,1
+1136075542,Escape Game: Traps,107992064,USD,0.0,29,29,5.0,5.0,1.0,9+,Games,38,5,2,1
+1118999592,Fantasy Football Coach,145700864,USD,0.0,29,3,3.0,3.5,2.0,9+,Games,37,5,1,1
+1153694100,Vulture Island,7023616,USD,2.99,29,0,3.5,0.0,1.02,12+,Games,37,5,1,1
+1020304479,MyDx One: Find a Strain that Works for You,38659072,USD,0.0,29,1,4.0,5.0,4.0,17+,Medical,38,5,1,1
+1067768015,Tour de France 2016 - the official game,124479488,USD,3.99,28,0,3.0,0.0,2.2.2,4+,Games,38,5,1,1
+1119514051,"PS Deals+ - Games Price Alerts for PS4, PS3, Vita",70203392,USD,2.99,28,6,5.0,4.5,2.2.1,9+,News,37,5,2,1
+1057556336,Smart Baby Shapes: Learning games for toddler kids,32162816,USD,2.99,28,18,4.5,5.0,2.2,4+,Games,38,5,7,1
+1142049503,ANY GIVEN EMOJI,47082496,USD,1.99,28,1,3.0,1.0,1.0.3,4+,Entertainment,37,0,1,1
+1074866833,AbemaTV-インターネットテレビ局,128454656,USD,0.0,28,0,4.0,0.0,2.2.1,17+,Entertainment,37,4,1,1
+1030762703,Speedafari – Speed Up Safari on Slow Connections,14659584,USD,1.99,28,7,5.0,5.0,2.0,4+,Utilities,25,5,1,1
+1050402885,Ninja Boy Adventures - Bomberman edition,121593856,USD,1.99,28,12,4.5,4.0,1.1.1,4+,Games,37,5,2,1
+1171039301,"Italian Emoji -  Italian Emojis, Stickers and Gifs",80857088,USD,1.99,28,5,3.0,3.5,1.7,12+,Utilities,37,0,1,1
+1135536260,Journey Below,61067264,USD,2.99,28,6,4.0,3.5,1.2,12+,Games,37,5,1,1
+1116025351,Dr. Panda Farm,98934784,USD,2.99,28,28,4.0,4.0,1.0,4+,Education,38,5,20,1
+882365789,ダイエットが続く!人気のカロリー・体重管理アプリ 「もぐたん」,45577216,USD,0.0,28,0,4.5,0.0,3.3.1,4+,Health & Fitness,37,0,1,1
+1077829105,Romulus APUSH Review,18200576,USD,3.99,28,23,3.5,3.5,2.1,4+,Education,37,0,1,1
+1009336960,Peppa Pig: Golden Boots,986284032,USD,2.99,28,0,3.5,0.0,1.1.0,4+,Education,37,5,3,1
+1094248282,US Presidential Election 2016 - Polls,41600000,USD,0.0,28,0,1.5,0.0,3.4,12+,News,40,5,1,1
+1176374647,HealthFace,45356032,USD,1.99,28,5,3.5,4.0,1.1.2,4+,Health & Fitness,13,0,24,1
+1023126431,Read4Kids - Kids learn to read in 20 easy lessons,34612224,USD,2.99,27,8,4.0,4.0,2.1,4+,Education,40,5,1,1
+1127454806,Superkick Party,30906368,USD,1.99,27,8,4.5,4.5,1.1,9+,Games,40,2,16,1
+1060062637,Future War:Reborn- Zombie Survival Tatics TPS,354028544,USD,0.99,27,14,4.0,4.0,1.7,12+,Games,40,5,1,1
+970389374,A high resolution music player - NePLAYER,21928960,USD,14.99,27,3,4.0,3.5,2.1.6,4+,Music,38,3,4,1
+962967653,Puzzle it to 10,55441408,USD,0.0,27,2,4.5,5.0,2.9,4+,Games,38,0,5,1
+1121944763,Special Version - Explain Everything™ Whiteboard,152740864,USD,15.99,27,12,4.5,4.5,1.92,4+,Education,37,5,17,1
+1153473604,GoldenMoji - Golden Retriever Emojis,43315200,USD,0.0,27,3,2.5,2.0,1.5,4+,Utilities,37,3,1,1
+1059134258,kurashiru [クラシル] - 料理レシピ動画数No.1,83400704,USD,0.0,27,0,4.5,0.0,7.3.1,12+,Food & Drink,37,0,1,1
+1161122860,The Lost Shield,130360320,USD,1.99,27,14,3.5,4.0,1.0.2,4+,Games,40,5,4,1
+1098758960,Craftmoji - the cute craft sticker App,39272448,USD,0.99,27,12,1.5,2.0,1.0.28,12+,Entertainment,37,4,1,1
+1055333603,Block Builder for Minecraft,1929216,USD,0.99,27,20,2.0,2.5,1.0.1,4+,Utilities,37,5,1,1
+1055387127,Pang Adventures,467670016,USD,3.99,27,0,3.5,0.0,1.4,4+,Games,37,5,7,1
+1156906605,Sky Pillar,86454272,USD,0.0,27,4,3.0,2.0,1.6,4+,Games,40,4,1,1
+1157616329,Fairy Princess Fashion Design,112401408,USD,0.0,27,27,4.5,4.5,1.0,4+,Games,38,5,2,1
+1072600030,Into Mirror,71281664,USD,0.0,27,3,4.0,3.5,1.0.9,9+,Games,40,5,3,1
+985035649,Hollywood Game Night,173502464,USD,0.99,27,19,4.0,4.0,1.1,12+,Games,38,5,1,1
+1066135421,Lost Journey - Nomination of Best China IndiePlay Game,57732096,USD,0.99,27,16,4.5,4.5,1.0.1,9+,Games,38,5,3,1
+926541293,GraphModeling,589824,USD,0.99,26,26,4.5,4.5,1.0,4+,Education,24,1,1,1
+1126517945,Space by Tinybop,332977152,USD,2.99,26,10,4.5,4.5,1.0.3,4+,Education,38,5,58,1
+1024004804,私のヒモ男~イケメン拾いました~恋愛・放置ゲーム,104366080,USD,0.0,26,0,4.5,0.0,2.2.13,17+,Games,40,0,1,1
+983963758,Immortal Legends - TD,273789952,USD,0.0,26,26,3.0,3.0,2.0.0,9+,Games,40,4,3,1
+1164423068,Feelca B&W,51673088,USD,0.99,26,1,3.0,1.0,1.4.7,4+,Photo & Video,37,0,4,1
+1100694944,Curious George Train Adventures,204338176,USD,0.99,26,4,3.5,3.0,1.2,4+,Education,37,5,1,1
+1005050125,DragonBox Numbers,347035648,USD,7.99,26,0,5.0,0.0,1.6.4,4+,Education,38,5,8,1
+1011129367,The Abandoned,254512128,USD,1.99,26,7,4.5,5.0,1.1.42,17+,Games,38,5,2,1
+1126845799,Mini Synthesizer,49390592,USD,4.99,26,6,4.5,4.5,1.1.0,4+,Music,24,5,1,1
+1078031633,Fix My Car: Classic Muscle Mods Mechanic - Junkyard Blitz!,102511616,USD,1.99,26,26,4.5,4.5,1.0,4+,Games,40,5,11,1
+590353452,Hardcore Dirt Bike 2,47202304,USD,1.99,26,3,3.0,1.0,1.1,9+,Games,40,5,1,1
+1048506340,Billion Hunter - Casual Monster Clicker RPG,276776960,USD,0.0,26,15,4.0,4.0,1.0.13,9+,Games,40,5,12,1
+1185365336,Laurie Hernandez the Human Emoji,94008320,USD,0.0,26,3,5.0,5.0,1.0.5,9+,Utilities,37,4,1,1
+1181616006,Island Delta,628180992,USD,2.99,26,0,4.5,0.0,1.2.4,9+,Games,37,5,1,1
+1090936977,Catholic Emoji,15938560,USD,1.99,26,9,3.0,3.0,2.1,4+,Lifestyle,37,2,1,1
+525195399,Shogi,17691648,USD,0.0,26,3,4.0,5.0,4.11,4+,Games,37,4,2,1
+562136065,高德地图HD,36229120,USD,0.0,26,13,3.5,3.0,2.0.0,4+,Navigation,26,5,1,1
+421988577,Shell Shock 1.5,46864078,USD,0.99,26,26,3.0,3.0,1.5,4+,Games,26,5,1,1
+662611545,Lotto Out! - Mexican Loteria,72475648,USD,0.99,26,6,3.5,3.5,2.3,12+,Games,40,5,2,1
+799631716,mySTATE - State College,7122944,USD,0.99,26,8,4.5,3.5,1.6,17+,Navigation,38,0,1,1
+1085660579,Camping With Grandpa,110712832,USD,2.99,25,3,3.5,3.5,1.3,4+,Education,37,5,1,1
+1003287840,Bridge Rider,99517440,USD,0.0,25,12,4.0,3.0,2.0.1,4+,Games,38,5,1,1
+807416704,X-Tactics,94363648,USD,3.99,25,2,5.0,5.0,2.4.0,12+,Games,38,5,6,1
+985077390,Roll Turtle,92815360,USD,0.99,25,3,5.0,4.5,1.1,4+,Games,40,5,1,1
+1161267000,Beams.,100624384,USD,0.99,25,25,4.5,4.5,1.0,4+,Games,38,5,11,1
+1123626556,梦幻西游互通版,2057722880,USD,0.0,25,3,4.5,5.0,3.0.5,4+,Games,38,5,1,1
+923873989,CreamCam+ auto selfie enhancer,47947776,USD,1.99,25,0,3.5,0.0,4.03,4+,Photo & Video,37,3,33,1
+1114130722,2-bit Cowboy Rides Again,29696000,USD,1.99,25,13,4.5,4.5,1.03,9+,Games,37,5,1,1
+1077644533,State Council - Official Chinese government app,60169216,USD,0.0,25,2,4.0,3.0,2.0.1,4+,News,38,0,3,1
+555610791,去哪儿攻略—查游记旅游攻略,订机票酒店,57138176,USD,0.0,25,1,4.0,5.0,4.9.1,4+,Travel,37,0,1,1
+1073602039,Jump Numbers,196047872,USD,2.99,25,0,5.0,0.0,1.2.3,4+,Education,37,5,1,1
+1123428617,NeverKnew - Game night is back,39054336,USD,0.0,25,0,4.0,0.0,1.2.1,9+,Games,37,0,1,1
+613464159,WRAL Weather Alert,68850688,USD,0.0,25,1,3.0,1.0,3.1.1,4+,Weather,37,5,30,1
+1140040414,LOOKS - Real Makeup Camera,73741312,USD,0.0,25,2,3.5,2.0,1.3.4,4+,Photo & Video,37,4,8,1
+1091024209,ThemeWave,7177216,USD,3.99,24,1,1.0,1.0,1.4.3,4+,Lifestyle,37,0,1,1
+1171332633,NashMoji ™ by Nash Grier,61317120,USD,0.99,24,11,5.0,5.0,1.0.1,9+,Entertainment,37,0,1,1
+1039596715,FastEver 2 - Quick memo app for Evernote,47126528,USD,3.99,24,4,4.5,5.0,2.3.5,4+,Productivity,37,5,2,1
+376197239,Météo-France,124090368,USD,0.0,24,2,3.5,5.0,5.7.1150,4+,Weather,37,4,3,1
+1134126831,PhET Simulations,34964480,USD,0.99,24,12,3.5,4.5,1.1,4+,Education,24,5,1,1
+983202217,乐视体育—英超欧冠F1高清直播,121336832,USD,0.0,24,0,3.5,0.0,V3.7.0,17+,Sports,38,0,4,1
+1124344855,Blitz Survival Games - Multiplayer Pixel Master Mini Games,180251648,USD,0.99,24,5,3.0,3.0,2.0,9+,Games,40,3,1,1
+631073589,Stick Texting – The College Series,50511872,USD,1.99,24,1,3.5,5.0,1.4,17+,Utilities,37,5,1,1
+918038160,史上最强的大脑4-超级王者(时代永恒小强),52194304,USD,0.0,24,0,4.5,0.0,3.6,4+,Games,38,5,2,1
+1112690545,GoldieBlox: Adventures in Coding - The Rocket Cupcake Co.,218911744,USD,2.99,24,10,4.5,4.0,1.04,4+,Education,38,5,1,1
+1139338323,She Works HIS Way,38077440,USD,2.99,24,11,5.0,5.0,1.0.4,4+,Lifestyle,37,5,1,1
+1059879206,Momoka: An Interplanetary Adventure,95002624,USD,6.99,24,13,4.5,4.0,1.0.2,9+,Games,37,5,1,1
+981437721,BabyMaker: Funny Baby Face out of Parents' Pictures - Make a Photo Collage!,65159168,USD,0.99,24,24,1.5,1.5,1.0,4+,Photo & Video,38,5,1,1
+1097482356,Basketball Free Throw,111248384,USD,0.0,24,19,4.0,4.5,1.5,4+,Games,38,5,11,1
+1101744458,Civil War: Bloody April,228435968,USD,1.99,24,24,2.0,2.0,1.0,12+,Games,37,5,1,1
+398860966,Mountain Biker,165394432,USD,1.99,24,7,3.5,4.0,1.0.3,4+,Games,37,5,8,1
+1153449735,Happy Oink,85111808,USD,0.0,24,8,4.5,5.0,1.2.2,4+,Games,38,3,5,1
+1083362092,Dog Mendonca,534096896,USD,4.99,24,24,3.5,3.5,1.0,12+,Games,38,5,6,1
+1164484325,iLocks - New Lock Screen Wallpapers for iPhone,39067648,USD,1.99,24,24,1.0,1.0,1.0,4+,Entertainment,38,0,1,1
+1091598017,Dead In Bermuda,615608320,USD,4.99,24,8,3.5,3.0,1.0.2,12+,Games,35,5,1,1
+1023741615,T-Rex Simulator,142795776,USD,0.99,24,2,3.5,2.5,1.1,12+,Games,37,5,1,1
+1186126548,Escape Game: illumination,52342784,USD,0.0,23,23,4.5,4.5,1.0,4+,Games,37,5,2,1
+1071976079,Lacrosse Arena,105975808,USD,1.99,23,5,3.5,3.0,2,4+,Games,40,4,1,1
+435883126,Building Serial Circuits,21462305,USD,0.99,23,2,4.0,3.5,1.3.1,4+,Education,26,3,1,1
+510119487,AnatomyMapp,104392704,USD,9.99,23,3,3.5,3.5,1.5,4+,Medical,38,5,1,1
+965789238,网易考拉海购—新人免费领取1000元优惠券,77583360,USD,0.0,23,4,4.5,4.0,3.6.5,4+,Shopping,37,0,1,1
+978603244,她社区-只有女生的社区!,87477248,USD,0.0,23,1,4.0,5.0,5.3,17+,Lifestyle,38,0,2,1
+1002355194,转转-更专业的二手闲置交易平台,78624768,USD,0.0,23,1,2.5,1.0,3.1.0,4+,Shopping,38,0,1,1
+564765093,51信用卡管家Pro,68952064,USD,0.99,23,0,3.5,0.0,9.4.1,4+,Finance,38,4,2,1
+1080200089,LOUD on Planet X,761393152,USD,2.99,23,23,3.0,3.0,1.0,12+,Games,40,5,1,1
+454988262,Programme TV Télé Loisirs,81083392,USD,0.0,23,0,3.5,0.0,7.2.1,12+,Entertainment,37,5,4,1
+1003716367,Ellipsis - Touch. Explore. Survive.,144324608,USD,4.99,23,1,4.5,1.0,1.3.2,4+,Games,38,5,32,1
+991693702,Snoopy Emoji,29364224,USD,1.99,23,7,1.5,1.0,1.2,4+,Utilities,37,0,1,1
+1148362520,Hide it Hillary!,23513088,USD,0.99,23,5,5.0,5.0,1.5.0,9+,Games,40,0,1,1
+1071504918,Last City,720732160,USD,0.99,23,0,3.0,0.0,1.0.3,12+,Games,40,5,1,1
+1067212421,Rainmaker - The Beautiful Flood,152269824,USD,1.99,23,14,4.5,4.5,3.0.0,4+,Games,38,5,1,1
+517588534,上海移动掌上营业厅,61895680,USD,0.0,22,0,3.0,0.0,4.1.8,4+,Lifestyle,38,0,2,1
+1084565679,Journey of 1000 Stars,29959168,USD,1.99,22,22,4.5,4.5,1.0,4+,Games,43,4,1,1
+526819635,JaxReady,8352768,USD,0.0,22,4,3.5,1.5,6.0.1,17+,Weather,37,5,1,1
+1063785850,SenseSleep - Train Your Brain To Sleep Better,31157248,USD,0.0,22,22,5.0,5.0,1.0.0,4+,Health & Fitness,15,0,1,1
+1039945866,Electoral 2016 - Create Presidential Election Maps,18359296,USD,1.99,22,0,4.0,0.0,1.5,4+,News,37,3,1,1
+1082958318,Benzomoji,9922560,USD,0.99,22,1,5.0,5.0,1.0.3,12+,Entertainment,37,4,1,1
+1044318857,Agent Gumball - Roguelike Spy Game,560714752,USD,2.99,22,14,4.0,3.5,1.0.1,9+,Games,40,5,9,1
+1047821816,Wild Kratts Baby Buddies,699834368,USD,1.99,22,15,3.0,3.5,1.1,4+,Education,37,5,1,1
+1046694770,Sesame Street Makes Music,170795008,USD,2.99,22,7,4.0,3.5,1.06,4+,Education,38,5,1,1
+1137419214,Simoji by Simone Biles,37677056,USD,0.99,22,0,4.5,0.0,1.1,4+,Sports,37,0,1,1
+1015552271,PAW Patrol Pups to the Rescue,757837824,USD,1.99,22,4,2.5,2.0,1.4,4+,Education,38,0,1,1
+396224808,French Words for Kids - Learn Letter Sounds,35518464,USD,3.99,22,1,4.5,5.0,5.0.1,4+,Education,37,5,2,1
+860380109,全民炸金花-首款含电玩城百家乐的棋牌游戏,44426240,USD,0.0,22,1,5.0,5.0,2.0.9,17+,Games,40,4,2,1
+974022309,( OFFTIME ) light – Track how much you use your phone & Digital Detox and unplug to focus,28471296,USD,2.99,22,14,2.0,2.0,2.1.0,4+,Health & Fitness,37,0,5,1
+766354752,AngerForce - Strikers,307089408,USD,3.99,22,1,3.5,4.0,1.36,9+,Games,40,5,4,1
+1142198889,Red Dwarf XI : The Game,171978752,USD,1.99,22,2,4.5,4.5,1.42,12+,Games,37,5,1,1
+1101848745,Runaway Toad,235554816,USD,2.99,22,9,4.0,3.5,1.1,4+,Games,40,4,11,1
+952561811,3D Maze Level 100,111026176,USD,0.0,22,6,4.5,4.5,2.1,4+,Games,38,5,2,1
+1121545201,Zombie Town Story,252352512,USD,0.0,22,4,4.0,5.0,1.0.2,12+,Games,38,5,5,1
+324887734,McDo France,37001216,USD,0.0,22,0,3.5,0.0,4.0.16,4+,Food & Drink,37,0,30,1
+793157344,feather for Twitter,66388992,USD,2.99,22,0,4.5,0.0,3.7.0,17+,Social Networking,37,0,3,1
+1113883640,VR Death Simulator,194632704,USD,0.0,22,22,2.0,2.0,1.0,17+,Entertainment,40,4,1,1
+1104214157,Stick Soccer 2,187812864,USD,0.0,22,10,4.5,4.5,1.0.8,4+,Games,37,5,1,1
+1080973177,Tennis Club Story,194174976,USD,4.99,22,3,4.5,4.5,1.06,4+,Games,38,5,1,1
+1169836224,Balvinmoji,7344128,USD,0.99,22,1,5.0,5.0,1.1,12+,Entertainment,37,0,1,1
+1148944266,Evil Zombie Graveyard Apocalypse Shooting VR Games,129430528,USD,0.0,22,0,3.5,0.0,1.7,17+,Games,40,5,17,1
+661149814,Ab in den Urlaub – Pauschalreisen günstig buchen,74008576,USD,0.0,22,0,5.0,0.0,4.2.5,4+,Travel,37,5,31,1
+1106217529,Cube Roll,78155776,USD,0.0,22,22,4.0,4.0,1.0.0,4+,Games,38,5,1,1
+1069756985,DailyCast - Aggregate Hot New Videos,36380672,USD,0.0,21,0,4.0,0.0,3.0.19,12+,Entertainment,37,5,1,1
+1148364175,My PriceQuote,21143552,USD,6.99,21,0,4.5,0.0,1.2.6,4+,Productivity,37,3,1,1
+1061931703,【2017年の運勢決定版】ゲッターズ飯田の占い,31371264,USD,0.0,21,12,4.0,4.5,2.0.1,12+,Entertainment,38,0,1,1
+1119104329,Pango Build City,125467648,USD,2.99,21,21,4.5,4.5,1.0,4+,Games,40,5,1,1
+961648591,Transformers Rescue Bots: Dino Island,87120896,USD,2.99,21,9,3.0,2.5,1.0.2,4+,Book,38,5,2,1
+996491151,Puzzle Strike,410278912,USD,3.99,21,10,3.5,3.0,1.01,4+,Games,38,5,1,1
+1126845803,Mini Synthesizer for iPhone,56054784,USD,2.99,21,3,3.0,2.5,1.1.0,4+,Music,37,0,1,1
+1137956525,VR Haunted House 3D,161975296,USD,0.0,21,0,3.5,0.0,1.0.8,17+,Games,37,0,1,1
+886103288,虎牙直播HD-热门高清游戏互动直播平台,115755008,USD,0.0,21,0,3.5,0.0,3.5.2,17+,Entertainment,24,5,2,1
+1050608523,Crazy Maze - Traffic Puzzle,210450432,USD,0.0,21,1,2.0,2.0,1.3.0,4+,Games,40,5,6,1
+1021091295,C CHANNEL -Watch tips & tricks videos for girls,58049536,USD,0.0,21,0,5.0,0.0,2.6.8,12+,Photo & Video,37,0,8,1
+1132214105,Sago Mini Planes,106796032,USD,2.99,21,2,4.5,5.0,1.1,4+,Education,38,5,1,1
+1080243808,Arcadecraft,150849536,USD,0.99,21,8,3.5,4.0,1.1.0,9+,Games,37,4,1,1
+525818572,Poop Break,6529024,USD,0.99,21,2,4.0,3.5,1.3.1,9+,Utilities,37,0,1,1
+1034774337,"OVLA - Awesome & Creative Typography Design, Graphic Design, Photo Editing",63175680,USD,0.99,21,12,3.5,3.5,1.0.6,4+,Photo & Video,37,5,4,1
+771433054,Date & Time Photo Stamp,618496,USD,0.99,21,21,2.5,2.5,1.0,4+,Photo & Video,38,1,1,1
+1048228014,Blaze and the Monster Machines Dinosaur Rescue HD,413392896,USD,4.99,21,21,3.0,3.0,1.0,4+,Education,24,5,1,1
+473917761,Sleep application,36523008,USD,0.99,21,1,4.5,5.0,3.10.1,4+,Health & Fitness,37,4,2,1
+921447306,Kindergarten Sight Words : High Frequency Words to Increase English Reading Fluency,61987840,USD,2.99,21,10,3.5,4.0,2.0,4+,Education,40,5,1,1
+1070716801,Bar Oasis 2 Aftertaste 01,268592128,USD,3.99,21,7,5.0,4.5,2.2,17+,Games,40,0,1,1
+1112861301,Snot & Fluff - A Space Adventure,294865920,USD,2.99,21,6,4.5,4.5,1.2.1,4+,Book,40,5,6,1
+1104698715,OdellMoji by Odell Beckham Jr.,8997888,USD,1.99,21,16,4.5,4.5,1.0.1,12+,Entertainment,37,0,1,1
+1177414604,Escape Game: Christmas Eve,81683456,USD,0.0,21,21,4.5,4.5,1.0.0,4+,Games,40,2,1,1
+1070022685,Face Shape Meter - find out face shape from photo,25456640,USD,1.99,21,6,1.5,1.0,1.1.1,4+,Lifestyle,38,5,1,1
+388459613,Carbs & Cals - Diet & Diabetes,209295360,USD,4.99,21,0,1.5,0.0,4.0.5,4+,Health & Fitness,37,5,1,1
+733989611,Timeline Builder: Create Custom Timelines,16902144,USD,1.99,21,0,2.5,0.0,2.1.1,4+,Education,24,5,1,1
+1044671796,Le Havre: The Inland Port,179616768,USD,4.99,21,0,4.0,0.0,1.35,4+,Games,37,5,1,1
+1098539566,Princess Swimming & Spa - Girls Beauty Game FREE,72358912,USD,0.0,21,21,4.0,4.0,1.0.0,4+,Games,40,5,2,1
+1132509649,Face Up - The Selfie Game,52106240,USD,0.0,21,2,4.0,4.5,2.0.0,4+,Games,37,4,13,1
+923814895,单机三国志2-铜雀台资料片 天天都玩,329893888,USD,0.0,21,6,4.5,4.5,1.4,12+,Games,40,5,2,1
+1173806490,Juju On That Beat  - Dance Challenge Game,66482176,USD,0.0,21,10,2.0,2.5,3.0,4+,Games,38,4,1,1
+1028400679,Bookling - Track Your Reading Habits,14913536,USD,0.99,20,10,3.0,3.0,1.5,4+,Productivity,38,0,2,1
+1086502786,Goosebumps Night of Scares.,345457664,USD,2.99,20,19,4.5,4.5,1.3.2,12+,Games,37,4,1,1
+539354240,Been Together,50371584,USD,0.99,20,1,4.5,5.0,2.0.4,4+,Lifestyle,37,0,7,1
+1091620783,Teenage Mutant Ninja Turtles: Half-Shell Heroes,357215232,USD,3.99,20,1,4.0,4.0,1.1,4+,Education,38,5,1,1
+1085464876,Room Escape [SECRET CODE 2],68177920,USD,0.0,20,3,5.0,5.0,1.1,4+,Games,38,5,2,1
+1034933180,Shimmer and Shine: Enchanted Carpet Ride Game HD,497758208,USD,4.99,20,3,4.0,3.5,2.2,4+,Education,24,5,1,1
+1093090526,Dice Mania - Play Free Online Classic Board Game with Friends,50235392,USD,0.0,20,20,4.5,4.5,1.0.0,12+,Games,40,5,3,1
+1173333213,ContactsXL 2017,16477184,USD,1.99,20,6,4.0,4.0,1.9,4+,Productivity,37,5,5,1
+964064306,Go Karts - VR,94220288,USD,0.0,20,20,1.5,1.5,1.0,4+,Games,40,5,1,1
+734256893,SHOWROOM - video live streaming,113558528,USD,0.0,20,1,5.0,4.0,4.4.5,17+,Entertainment,37,5,4,1
+1033685038,Myths of the World: Black Rose - A Hidden Object Adventure (Full),796377088,USD,2.99,20,20,4.0,4.0,1.0.0,9+,Games,38,0,4,1
+1046787882,洋菓子店ローズ ~ほのぼの再建記~,103027712,USD,0.0,20,0,4.5,0.0,1.0.18,4+,Games,40,4,3,1
+1051573241,12オーディンズ - 王道RPG,223283200,USD,0.0,20,1,4.5,5.0,1.12.7,9+,Games,38,5,2,1
+478618165,"Chefkoch - Rezepte, Kochen, Backen & Kochbuch",34652160,USD,0.0,20,0,4.0,0.0,2.9.8,12+,Food & Drink,37,5,1,1
+1015944446,Paper Train: Traffic,111042560,USD,0.99,20,20,4.0,4.0,1.0,4+,Games,35,4,1,1
+1094642753,Goo Saga,121143296,USD,1.99,20,4,3.5,3.0,1.4,4+,Games,37,5,1,1
+1081106301,Drive Simulator 2016,190241792,USD,1.99,19,15,4.5,4.5,2.1,4+,Games,37,5,1,1
+1023002643,Final Cut: The True Escapade HD - A Hidden Object Mystery Game (Full),905351168,USD,6.99,19,19,4.0,4.0,1.0.0,9+,Games,24,5,5,1
+1090922211,Dino Tales Jr – storytelling for young minds,261073920,USD,2.99,19,6,3.0,1.5,1.3.1,4+,Education,40,5,6,1
+899277186,Trans4motor - Universal Engine Simulator,34856960,USD,2.99,19,15,4.0,4.0,2.1,4+,Education,40,5,2,1
+1140419709,The Manga Works,185210880,USD,4.99,19,15,4.5,4.5,1.0.1,4+,Games,38,5,1,1
+1084600612,Puzzlepops!,132981760,USD,1.99,19,10,5.0,5.0,1.2,4+,Games,37,5,7,1
+1170155524,Wall Switch,46997504,USD,0.0,19,19,4.0,4.0,1.0,4+,Games,38,5,1,1
+1061345998,Ice Princess Mermaid Salon: Girls Makeover Games,89501696,USD,1.99,19,7,4.0,3.5,9999.1.2,4+,Games,40,5,1,1
+604687408,Get Drunk Not Fat,32999424,USD,0.99,19,5,2.5,2.0,1.4.1,17+,Food & Drink,38,3,1,1
+1162783385,Cannonfire Concerto,25586688,USD,3.99,19,19,5.0,5.0,1.0.0,12+,Games,38,5,1,1
+1134835650,Mystery of Fortune 2,114503680,USD,0.99,19,0,5.0,0.0,1.024,12+,Games,37,5,1,1
+1165482016,Let Go and Let God - Doreen Virtue,72539136,USD,4.99,19,1,4.0,1.0,1.1,4+,Lifestyle,37,4,1,1
+376561911,かなもじ,61272064,USD,3.99,19,0,4.5,0.0,1.9.3,4+,Education,24,5,2,1
+1141280841,Yogemoji - The Yoga Emoji Keyboard,69150720,USD,0.99,19,6,3.0,3.5,1.0.3,4+,Health & Fitness,37,0,1,1
+326161564,SFR Mon Compte,74093568,USD,0.0,19,0,3.0,0.0,6.4.0,4+,Utilities,37,5,1,1
+1141895945,Wrestlemoji,7441408,USD,0.99,19,19,4.0,4.0,1.0,12+,Sports,37,4,1,1
+1025313530,Snail Sleep-Dream Talk Recording,153040896,USD,0.0,19,0,4.0,0.0,3.4.2,4+,Health & Fitness,37,5,7,1
+1053066296,Hey Duggee: The Tinsel Badge,97004544,USD,0.0,19,14,4.5,4.0,1.2,4+,Games,43,5,1,1
+1043607606,Parallels,96845824,USD,0.0,19,12,4.0,4.0,1.1,4+,Games,40,5,1,1
+961932335,Analog Tokyo,18935808,USD,0.99,19,13,4.0,4.0,1.0.7,4+,Photo & Video,43,5,5,1
+1015000630,Tank Battle: Blitzkrieg,217393152,USD,1.99,19,1,3.5,5.0,1.7,12+,Games,38,5,1,1
+638143733,达令全球好货-正品免税,带你购全球,34791424,USD,0.0,19,0,4.5,0.0,5.9.6,12+,Shopping,38,5,2,1
+920480909,Baum,349646848,USD,1.99,19,7,3.0,3.5,1.01,4+,Games,40,5,1,1
+1111311076,Open Sorcery,18822144,USD,2.99,19,0,5.0,0.0,10,12+,Games,37,1,1,1
+1136634131,Circle Boom2 - Wheel Puzzle Game,14546944,USD,0.0,19,19,2.0,2.0,1.0,4+,Games,40,2,1,1
+1098209028,BBC Colouring: Doctor Who,91060224,USD,1.99,19,2,3.0,3.0,1.2,4+,Entertainment,43,5,1,1
+975955904,三国杀传奇-神将觉醒,223821824,USD,0.0,19,0,1.5,0.0,708,9+,Games,40,5,2,1
+1092448381,MobileFamilyTree 8,71076864,USD,17.99,19,1,3.5,3.0,8.1.4,4+,Productivity,37,5,15,1
+988396858,花椒直播-高清美颜直播互动平台,174611456,USD,0.0,19,0,3.0,0.0,3.9.12,17+,Social Networking,37,0,4,1
+1135518490,Wild City Rush - Urban Jungle Adventure,179205120,USD,0.0,19,2,4.5,5.0,1.0.6,9+,Games,38,5,1,1
+1108206682,Rise!,118787072,USD,0.0,18,14,3.5,3.5,4,4+,Games,38,5,1,1
+1103702902,Red 7 - play Digital Red7 Card Game with Friends,190101504,USD,2.99,18,2,3.0,4.0,1.3.0,4+,Games,37,4,3,1
+1179213211,VanDammemoji by Jean-Claude Van Damme,17164288,USD,0.99,18,0,4.5,0.0,1.3,12+,Entertainment,37,0,1,1
+1118494466,Gabbymoji,9691136,USD,1.99,18,1,4.0,5.0,1.0.1,4+,Entertainment,37,4,1,1
+1046480662,Pocket Glasses PRO - text magnifier app,8976384,USD,3.99,18,0,2.0,0.0,1.07,4+,Utilities,37,3,1,1
+1095820384,Cognition Game,183614464,USD,2.99,18,14,4.5,4.0,1.0.2,9+,Games,37,5,1,1
+1186384912,Demolition Derby Virtual Reality (VR) Racing,168774656,USD,0.0,18,18,4.0,4.0,1.0.0,12+,Games,38,4,1,1
+930304174,Scary Doll,16478208,USD,3.99,18,18,2.0,2.0,1,12+,Games,43,1,1,1
+1082069304,Sheenoji - The Charlie Sheen Keyboard,48333824,USD,0.99,18,11,3.5,3.0,1.4,17+,Entertainment,37,4,1,1
+977933863,全民夺宝-时尚购潮流商品平台,29333504,USD,0.0,18,0,4.5,0.0,3.8.7,17+,Entertainment,40,0,1,1
+1078560217,Stickman Forest Swing,89943040,USD,0.0,18,18,3.5,3.5,1.0.0,4+,Games,40,5,1,1
+804888540,Photon X Private Browser and Flash Player for iPad,34798592,USD,0.99,18,6,4.0,2.5,5.0,17+,Productivity,24,3,10,1
+1085096375,Final Kick VR - Virtual Reality free soccer game for Google Cardboard,218329088,USD,0.0,18,18,4.0,4.0,1.0,4+,Games,40,5,1,1
+971186665,Into Light,454002688,USD,0.99,18,18,2.5,2.5,1.0.0,9+,Games,37,5,1,1
+1072136623,Gravity Island - Shiro's Adventure,68615168,USD,0.0,18,5,4.5,5.0,1.2,4+,Games,35,5,11,1
+690602681,JD Sports,88594432,USD,0.0,18,0,4.0,0.0,5.3.1,4+,Shopping,37,5,8,1
+908384544,"Witches' Legacy: Hunter and the Hunted HD - Hidden Objects, Adventure & Magic (Full)",1612120064,USD,6.99,18,18,4.5,4.5,1.0.2,9+,Games,24,5,5,1
+1129690785,Arthur's Adventures-Road of Glory:Pocket Edition,140864512,USD,0.99,18,1,5.0,3.0,1.1.2,9+,Games,38,0,2,1
+950299949,Riff Racer: Race Your Music,403729408,USD,0.99,18,4,3.5,3.0,1.1.4,4+,Games,37,4,5,1
+890358046,Touch Notation,121240576,USD,11.99,18,1,4.0,5.0,1.1.001,4+,Music,37,5,2,1
+1084841402,DreamWorks Friends - get ready for the day!,185370624,USD,1.99,17,0,5.0,0.0,2.1,4+,Education,37,5,1,1
+915545000,Monster Mingle,309072896,USD,2.99,17,2,4.5,4.5,1.1.5,4+,Education,37,5,1,1
+1078412469,AirParrot Remote,20189184,USD,7.99,17,9,2.5,2.0,1.1,4+,Photo & Video,37,5,1,1
+1161323425,TENOSEL+,78190592,USD,0.0,17,17,2.5,2.5,1.02,4+,Games,37,1,1,1
+908071717,Show My Homework,83624960,USD,0.0,17,0,3.5,0.0,3.7.2,4+,Education,37,5,1,1
+1131203082,FoodSpect - Restaurant Inspections,11452416,USD,0.99,17,0,4.0,0.0,1.1.0,4+,Food & Drink,40,0,1,1
+1084682224,Alchemic Maze,65435648,USD,2.99,17,2,5.0,5.0,1.1,4+,Games,37,4,1,1
+1068266222,TraptionBakery,46557184,USD,0.0,17,17,5.0,5.0,1.0,9+,Games,37,2,1,1
+1076806233,PINKFONG 123 Numbers,61712384,USD,0.0,17,0,4.5,0.0,11.0,4+,Education,37,5,11,1
+876217010,Smart Music: Streaming Videos and Radio,32728064,USD,0.0,17,0,4.5,0.0,4.0.1,12+,Music,37,4,2,1
+376202925,Ma Banque,137866240,USD,0.0,17,0,3.5,0.0,11.0.1,4+,Finance,37,5,1,1
+974682335,Demon Hunter: Chronicles from Beyond (Full),590045184,USD,4.99,17,6,4.5,4.0,1.5,12+,Games,39,5,11,1
+1076592702,My Sweet Farm,83778560,USD,0.0,17,0,4.5,0.0,1.1,4+,Games,40,5,2,1
+1144812201,Hoverboard Rush Racing Simulator -Hover Board Game,41241600,USD,0.0,17,0,3.5,0.0,1.2.2,4+,Games,37,2,1,1
+1089580662,Shield Designer for Minecraft,20526080,USD,0.99,17,17,2.5,2.5,1.0,4+,Games,37,4,1,1
+469964520,Lloyds Bank Mobile Banking,104023040,USD,0.0,17,5,4.5,4.0,16.1,4+,Finance,37,0,1,1
+1084197093,Mersenne Melodic Percussion Synthesizer,5267456,USD,5.99,17,3,4.5,4.5,1.1.4,4+,Music,24,5,1,1
+1081674942,AI • Scry: a remote viewing application powered by an alien psyche.,17954816,USD,0.99,17,17,3.0,3.0,1.2,4+,Entertainment,38,0,1,1
+1052035509,Survival Island 2: Dinosaur Hunter,101354496,USD,2.99,17,13,3.5,3.5,1.1,12+,Games,40,5,1,1
+954779921,特种部队-跨服竞技TCG军事策略游戏,140282880,USD,0.0,17,0,5.0,0.0,2.0.2,12+,Games,40,5,1,1
+1051209606,Unicorn Glitterluck - Rainbow Adventure for kids,234463232,USD,1.99,17,2,4.0,3.0,2.0,4+,Education,38,5,16,1
+1093776653,A New Life,105390080,USD,0.99,17,1,3.0,4.0,1.3,12+,Games,40,5,1,1
+1051326718,A.BIG.T -- A Smart VPN,41629696,USD,9.99,17,1,4.0,5.0,3.1,4+,Utilities,37,2,1,1
+1059689426,Peppa Pig: Seasons - Autumn and Winter,1345875968,USD,2.99,17,0,3.0,0.0,1.0.5,4+,Games,37,5,1,1
+582934943,途家-全球公寓民宿预订平台,76228608,USD,0.0,17,2,4.5,5.0,5.32,12+,Travel,37,0,1,1
+1059442774,GeometriCam - abstract geometric design in real-time,23003136,USD,2.99,17,6,4.5,3.0,1.2,4+,Photo & Video,37,0,1,1
+854145102,Face Swap-r,3563520,USD,0.0,17,17,2.5,2.5,1.0,4+,Entertainment,40,0,1,1
+1144397186,エレメンタル ファンタジー - 高精細3DアクションRPG,173584384,USD,0.0,17,0,5.0,0.0,0.17.518,12+,Games,38,5,1,1
+1045232937,Flipominos,30718976,USD,2.99,17,4,4.5,4.5,1.1,4+,Games,38,5,11,1
+1065623382,Mr. Potato Head: School Rush,654974976,USD,3.99,17,17,4.5,4.5,1.0,4+,Book,38,5,1,1
+1165109912,WitchSpring2,956569600,USD,3.99,17,9,4.5,5.0,1.36,9+,Games,37,5,4,1
+943116454,Small Town Terrors: Galdor's Bluff - A Magical Hidden Object Mystery (Full),555134976,USD,2.99,17,17,4.0,4.0,1.0.0,9+,Games,38,0,3,1
+1102339559,Relay – Multiple Location Maps,20145152,USD,1.99,17,10,3.5,4.0,1.0.3,4+,Travel,37,5,1,1
+620262310,驾校一点通-保过版,2017最新驾考学车宝典,102477824,USD,0.0,16,0,4.5,0.0,5.4.0,17+,Education,38,1,2,1
+454136236,STEINS;GATE,1551412224,USD,24.99,16,0,4.0,0.0,1.71,12+,Games,37,0,1,1
+953036666,平安WiFi-手机必备的万能WiFi上网钥匙,56961024,USD,0.0,16,0,4.0,0.0,4.8.4,17+,Utilities,38,0,1,1
+1021496959,Tangled Up! - Valentine Special,191583232,USD,0.0,16,1,4.0,5.0,5.0,4+,Games,43,5,7,1
+1148613767,Rubin.io,34772992,USD,0.0,16,2,2.5,3.0,1.1,4+,Games,37,5,1,1
+1069840000,Magic Trick #6,31361024,USD,6.99,16,16,3.5,3.5,1.0.5,4+,Entertainment,37,0,32,1
+1037866921,Minds On Physics the App - Part 1,64569344,USD,0.99,16,4,1.5,1.0,2.2,4+,Education,43,5,1,1
+860454499,Mud Bogger ( 3D Monster Truck Driving & Racing Games ),109277184,USD,0.99,16,9,2.5,2.5,1.2,9+,Games,43,5,8,1
+999535933,Donut vs Donut,85999616,USD,0.99,16,16,4.5,4.5,1.02,4+,Games,40,3,1,1
+847347016,in-capturing moments in life,147728384,USD,0.0,16,0,4.0,0.0,3.1.0,12+,Photo & Video,38,0,3,1
+1151108516,Fox Tales - Story Book for Kids,242819072,USD,1.99,16,16,4.0,4.0,1.0,4+,Book,40,5,6,1
+1048505998,Earth Defender S - Trillion Battle Game,106972160,USD,0.0,16,9,4.5,5.0,1.0.3,9+,Games,40,5,2,1
+1055204150,Rudolph the Red-Nosed Reindeer - Read & Play,75505664,USD,3.99,16,10,4.5,4.5,4.0.6,4+,Book,37,5,1,1
+1021102353,Superhero Girl Salon: Kids Makeup and Dressup Game,95607808,USD,1.99,16,3,4.5,4.5,9999.1.8,4+,Games,40,5,1,1
+1042299727,Batman Unlimited: Gotham City’s Most Wanted,444225536,USD,3.99,15,0,3.5,0.0,1.0.6,4+,Book,37,5,4,1
+1074382375,Fleeing the Complex,63365120,USD,0.99,15,15,4.5,4.5,1.0,9+,Games,43,0,1,1
+1132542642,Eric Carle’s Brown Bear Animal Parade,95812608,USD,1.99,15,9,2.5,3.0,1.2,4+,Education,40,5,11,1
+1132255154,MyFantasyLeague Manager 2016 by RotoWire,23758848,USD,2.99,15,2,3.0,4.0,1.1.1,17+,Sports,37,5,1,1
+996866372,天天快报 - 最热门的新闻资讯软件,96720896,USD,0.0,15,0,3.0,0.0,3.1.0,12+,News,37,0,1,1
+984594553,AdivínaT - Adivina las palabras,135886848,USD,0.99,15,0,4.5,0.0,1.2.4,4+,Games,38,5,1,1
+1021988466,狼人之夜,30931968,USD,0.99,15,3,4.5,5.0,1.3.3,12+,Social Networking,37,5,1,1
+1146177222,Flud.,9238528,USD,0.99,15,15,3.5,3.5,1.1.2,4+,Games,38,4,11,1
+913817574,家长通-一起作业旗下家长端的同步课堂点读机,81256448,USD,0.0,15,0,4.5,0.0,1.9.0,17+,Education,38,5,2,1
+962056217,Spring Cleaning 2,761856,USD,0.99,15,5,4.5,3.0,1.0.1,4+,Productivity,38,0,1,1
+1039133072,Dark Tales: Edgar Allan Poe’s The Mystery of Marie Roget - A Hidden Object Mystery (Full),848715776,USD,2.99,15,15,3.0,3.0,1.0.0,9+,Games,38,0,5,1
+1138143371,Gridiron 2016 College Football Scores & Schedules,9001984,USD,1.99,15,5,4.5,5.0,1.1,4+,Sports,37,5,1,1
+1091824117,Aeronaut,76222464,USD,0.0,15,1,3.5,2.0,1.0.2,4+,Games,37,5,1,1
+1139704246,Super Adventures World HD,86316032,USD,0.0,15,4,4.0,4.5,1.6,4+,Games,40,5,1,1
+1180103898,Everfilter - transform your photos into artworks,49449984,USD,0.0,15,3,3.5,2.5,1.1.3,4+,Photo & Video,37,0,7,1
+1070850573,KQ MiniSynth,20305920,USD,5.99,15,0,5.0,0.0,1.7.4,4+,Music,37,3,2,1
+932236332,"Todo Number Matrix: Brain teasers, logic puzzles, and mathematical reasoning for kids",41566208,USD,0.99,15,5,4.5,4.0,1.1.1,4+,Education,38,5,8,1
+1091456207,Fill - one-line puzzle game,72433664,USD,0.0,15,5,4.5,3.5,1.0.7,4+,Games,37,3,2,1
+1104191752,Dr. Panda Bath Time,176314368,USD,2.99,15,15,4.5,4.5,1.0,4+,Education,38,5,18,1
+1071021891,小猿搜题HD-中小学拍照搜题作业帮手,77432832,USD,0.0,15,0,4.5,0.0,5.1.0,4+,Education,24,3,1,1
+1057124368,LINE RUSH !,130563072,USD,0.0,15,2,5.0,5.0,1.4.4,9+,Games,43,0,3,1
+1060443742,Forecaster: detailed NOAA forecasts,746496,USD,1.99,15,0,3.0,0.0,1.1,4+,Weather,37,4,1,1
+1103201207,Dinosaur Games: Puzzle for Kids,52345856,USD,2.99,15,0,4.0,0.0,2.0,4+,Games,38,5,9,1
+821399915,"单机三国志-不抽卡无体力,战个痛快",134600704,USD,0.99,15,0,4.5,0.0,1.3.9,9+,Games,43,5,2,1
+1047763490,FreeSpeech - Build Language and Learn Grammar,197273600,USD,9.99,15,1,4.0,5.0,1.4,4+,Education,37,5,2,1
+1081079094,PAW Patrol Pups Take Flight,361182208,USD,2.99,15,0,1.5,0.0,2.1.1,4+,Education,38,0,1,1
+1152996359,Political Knockout PKO Presidential Fight,108646400,USD,0.0,15,7,4.0,4.5,1.4,12+,Games,37,4,1,1
+1015077531,USPS StampApp for iPad,47478784,USD,9.99,15,4,2.5,3.0,1.5,4+,Reference,24,5,1,1
+1187779532,Bret Michaels Emojis + Lyric Keyboard,111322112,USD,1.99,15,0,4.5,0.0,1.0.2,9+,Utilities,37,1,1,1
+1043714288,The End of the World by Sean Wenham,105894912,USD,0.99,15,15,4.5,4.5,1.0,17+,Games,38,0,1,1
+1168645184,Sago Mini Puppy Preschool,139482112,USD,2.99,15,15,4.0,4.0,1.1,4+,Education,38,5,1,1
+924058967,My Little Pony: Trick or Treat,81508352,USD,2.99,15,4,4.5,4.0,1.3,4+,Book,38,5,1,1
+1176901281,Web Browser Recorder Pro,1734656,USD,1.99,14,3,2.0,4.5,1.2,17+,Utilities,37,0,3,1
+1156046252,Cola Bottle Flip Challenge,234621952,USD,0.0,14,12,4.5,5.0,1.5,4+,Games,37,5,1,1
+991626372,Snapshot Cam - Draw on Pictures & Add Text to Photos,109117440,USD,2.99,14,1,5.0,5.0,1.4,4+,Photo & Video,37,5,31,1
+1161717622,DragonBox Big Numbers,197068800,USD,7.99,14,0,4.0,0.0,1.0.4,4+,Education,38,5,8,1
+879996273,CCTV5,90850304,USD,0.0,14,1,1.0,1.0,2.2.7,17+,Sports,37,0,1,1
+1025628019,蚂蚁聚宝—蚂蚁金服旗下投资理财平台,113420288,USD,0.0,14,1,3.0,5.0,2.6.0,12+,Finance,37,0,1,1
+1000835177,Recontact: Istanbul,289065984,USD,0.99,14,2,3.5,5.0,1.0.1,4+,Games,38,0,31,1
+625740630,HairTech-Head Sheets,5907456,USD,2.99,14,2,3.0,1.5,3.0.1,4+,Productivity,24,3,1,1
+1114046971,Lucky Block Mod for Minecraft PC Edition - Pocket Guide,11767808,USD,1.99,14,12,2.0,2.0,1.1,4+,Games,38,5,1,1
+1163470174,ON-SEN - escape game -,101600256,USD,0.0,14,9,4.0,4.0,1.2,4+,Games,38,5,1,1
+1080533223,Iron Mission- classic arcade shoot'em up,165141504,USD,0.0,14,10,3.0,3.5,1.3.0,9+,Games,40,5,3,1
+945402023,Peg + Cat's Tree Problem,554023936,USD,2.99,14,0,2.5,0.0,2.1.1,4+,Education,24,5,1,1
+1150057624,"Grandpa, what the fone?",58182656,USD,0.0,14,14,4.0,4.0,1.4.1,12+,Games,37,4,3,1
+594145971,家計簿マネーフォワード-自動連携で簡単 人気の家計簿,186056704,USD,0.0,14,0,5.0,0.0,7.21.2,17+,Finance,37,5,2,1
+983099308,Cell Surgeon - A Unique 3D Match 4 Strategy Game!,252099584,USD,0.99,14,11,4.5,4.5,1.1,12+,Games,40,5,1,1
+451901829,Azuki Wave,21263360,USD,1.99,14,1,4.0,5.0,1.08,4+,Entertainment,37,4,2,1
+794156760,ゆるドラシル -本格派神話RPG-,91238400,USD,0.0,14,0,4.5,0.0,01.44.02,4+,Games,37,5,1,1
+1106510521,Freddy the Frogcaster's Weather Station,76928000,USD,0.0,14,1,4.5,5.0,1.0.1,4+,Weather,37,5,1,1
+794729836,Staccal 2 - Calendars and Reminder,52536320,USD,0.99,14,0,3.5,0.0,2.7.2,4+,Productivity,37,0,2,1
+1135031533,Crooked Path,107682816,USD,0.0,14,6,3.0,4.0,1.41,4+,Games,37,5,1,1
+1170329495,Cubed Rally World,67192832,USD,0.0,14,9,4.5,4.5,1.2.0,4+,Games,37,5,1,1
+1099092384,VR Viewer,45782016,USD,0.99,14,9,3.0,2.5,1.1.2,4+,Photo & Video,37,2,2,1
+1115647211,IllumiMoji,20946944,USD,0.99,14,8,3.0,4.0,1.2,17+,Reference,37,4,1,1
+535744360,书香云集Pro-小说电子书免费看书读书听书追书无广告阅读器,52120576,USD,0.99,14,0,5.0,0.0,5.37,17+,Book,38,3,3,1
+1042300762,The Very Hungry Caterpillar - Creative Play,99653632,USD,2.99,14,3,4.0,3.5,1.2,4+,Education,40,5,12,1
+645422116,"Alizay, pirate girl",186402816,USD,2.99,14,1,4.5,4.0,4.0.2,4+,Book,40,5,2,1
+1085914246,SKATEmoji - Keyboard,24901632,USD,1.99,14,2,3.5,1.5,1.1,17+,Utilities,37,0,1,1
+1085000333,Crazy Truck!,79053824,USD,0.0,14,3,4.0,2.5,1.3,4+,Games,38,4,1,1
+1183856228,VR Thrills: Roller Coaster 360 (Google Cardboard),169535488,USD,0.0,14,4,4.0,3.5,1.3.0,4+,Games,37,5,1,1
+1085821901,Jottit,72340480,USD,0.0,14,1,2.0,3.0,1.1.2,4+,Productivity,37,5,1,1
+584246550,买火车票Pro,4255744,USD,4.99,14,0,5.0,0.0,4.3.5,4+,Productivity,38,5,1,1
+1003837100,VPN Express,10645504,USD,0.0,14,1,4.5,5.0,1.8,4+,Reference,37,2,2,1
+1170744152,Boycott Trump Biz,6972416,USD,0.99,14,5,3.5,4.0,2.0,4+,News,37,1,1,1
+1121963448,Flood of Light,578062336,USD,1.99,14,2,5.0,5.0,2.1.3,4+,Games,38,5,3,1
+966169065,Knotmania,30010368,USD,2.99,14,0,3.0,0.0,1.3.5,4+,Games,37,5,5,1
+1155034875,Civil War: 1865,209495040,USD,1.99,14,7,4.0,4.5,1.2,12+,Games,38,5,1,1
+1120838254,Octonauts,513771520,USD,3.99,14,7,3.5,3.5,1.0.1,4+,Education,25,5,1,1
+1113473319,BOSS Tuner,2565120,USD,0.0,13,13,3.5,3.5,1.0.0,4+,Music,37,3,2,1
+1156137155,Thinkrolls Kings & Queens - Logic and Physics Game,64120832,USD,3.99,13,0,5.0,0.0,1.1,4+,Education,40,5,14,1
+1075497162,GeoBots VR,224098304,USD,0.99,13,5,4.0,3.5,1.1.1,4+,Games,25,0,1,1
+1117580704,ANSELFIE - emojis by Ansel,53998592,USD,2.99,13,13,4.5,4.5,1.8,4+,Utilities,37,0,1,1
+1174489793,Snowball!!,57315328,USD,1.99,13,13,5.0,5.0,1.0,4+,Games,40,4,10,1
+560173559,直播吧(官方版)-体育从这里开始,63309824,USD,0.0,13,0,5.0,0.0,4.5.4,12+,Sports,38,4,1,1
+1005859110,Trick Pix - Magic & Prank Camera,17825792,USD,1.99,13,13,3.0,3.0,1.0,4+,Entertainment,37,0,1,1
+1079800951,永生劫 — 单机回合仙侠RPG,138480640,USD,0.0,13,7,5.0,4.5,1.4.3,12+,Games,37,4,2,1
+1121659254,江湖风云录-超自由武侠剧情角色扮演手游,49652736,USD,0.99,13,0,4.5,0.0,4.58,12+,Games,40,5,1,1
+1079974548,Busy Water,98591744,USD,3.99,13,6,3.5,3.0,1.2,4+,Education,37,5,6,1
+1047755798,Phantasmat: The Endless Night - A Mystery Hidden Object Game (Full),1223241728,USD,2.99,13,7,4.5,4.0,1.0.2,9+,Games,38,0,4,1
+972003056,City Cars Adventures by BUBL,175301632,USD,2.99,13,3,3.5,2.5,2.3,4+,Education,38,5,11,1
+796870199,工银融e联,100601856,USD,0.0,13,0,1.5,0.0,2.3.7,12+,Finance,40,0,2,1
+1097004394,Steps! - Hardest Action Game Ever!,94791680,USD,0.0,13,3,4.5,5.0,1.6.1,4+,Games,38,5,1,1
+1161746000,Buzzy Bubbles,103877632,USD,0.0,13,13,3.0,3.0,1.1,4+,Games,38,5,1,1
+1064362767,myHome - Home Automation,67281920,USD,13.99,13,1,4.0,5.0,3.3.2,4+,Utilities,37,3,13,1
+1132517788,The Complete Fairytale Play Theater,464015360,USD,4.99,13,3,5.0,5.0,1.1,4+,Education,37,5,8,1
+588199634,Moto Madness - 3d Motor Bike Stunt Racing Game,32718397,USD,0.99,13,2,3.0,3.5,1.1,4+,Games,43,5,1,1
+1086795798,Unstoppable: Highway Truck Racing Game,132173824,USD,2.99,13,1,3.5,5.0,1.1.60,12+,Games,25,5,1,1
+1095581857,ひみつの出会い探しはバクアイ-無料の出会いチャットアプリで友達作り,8456192,USD,0.0,13,5,5.0,5.0,1.6,17+,Social Networking,37,0,1,1
+1092650486,One Fish Two Fish Red Fish Blue Fish - Read & Learn - Dr. Seuss,61212672,USD,3.99,13,13,4.5,4.5,4.0.7,4+,Book,37,5,1,1
+1069359097,SoundBow,22038528,USD,1.99,13,3,3.5,4.5,1.5,4+,Music,37,2,1,1
+975414811,pixivコミック - みんなのマンガアプリ,92557312,USD,0.0,12,0,3.5,0.0,3.6.2,17+,Book,37,5,1,1
+1032240256,【真・お絵かきパズル】〇〇投げてみた結果ww 完全無料!,69857280,USD,0.0,12,1,4.5,5.0,1.1.0,4+,Games,40,0,1,1
+1121590741,SnapMatch - Single and Group Matching,38171648,USD,0.0,12,3,1.5,1.0,1.0.5,17+,Lifestyle,38,0,2,1
+1137613553,CR7Selfie,86294528,USD,1.99,12,0,5.0,0.0,1.2,4+,Photo & Video,37,0,1,1
+850417796,Almanac Long-Range Weather Forecast,15704064,USD,0.0,12,4,1.5,1.0,4.0,4+,Weather,40,4,1,1
+1134086133,GoSnaps - Share Screenshots for Pokémon GO,6919168,USD,0.0,12,1,4.0,2.0,1.2.0,12+,Photo & Video,37,1,1,1
+1071086525,Mods Explorer – for PocketMine MP,12660736,USD,0.99,12,5,2.0,2.0,1.1,4+,Games,37,5,1,1
+1114261491,Aussie Rules Hero - Footy Goal Kicking Game,23707648,USD,0.0,12,0,3.5,0.0,2.1,4+,Games,40,5,1,1
+787786130,宜人贷借款,64179200,USD,0.0,12,0,4.5,0.0,4.4.0,17+,Finance,38,0,1,1
+1063928863,"Super Spy Girl Salon: Spa, Makeup and Dressup Game",94483456,USD,1.99,12,6,4.5,5.0,9999.1.2,4+,Games,40,5,1,1
+868773703,Stealers Steal: A thief's quest for gold,120459264,USD,0.99,12,3,5.0,5.0,1.5.0,9+,Games,38,5,1,1
+1011806461,【明星恋爱】偶像之路TIME TO STAR,201411584,USD,0.99,12,0,5.0,0.0,1.10,4+,Games,40,5,1,1
+609524351,실시간 날씨,5292032,USD,0.0,12,0,3.5,0.0,1.0.15,4+,Weather,38,0,1,1
+1094370858,Cleanz - Clean up Your Photo Library,12622848,USD,1.99,12,0,3.5,0.0,1.1,4+,Photo & Video,37,0,9,1
+1046345589,"GameDay College Football Radio - Live Games, Scores, News, Highlights, Videos, Schedule, and Rankings",19116032,USD,1.99,12,10,4.0,4.0,1.1,4+,Sports,38,0,1,1
+1021845881,Attack Heroes,915254272,USD,0.99,12,0,5.0,0.0,1.0.9,9+,Games,37,5,1,1
+1067456521,"Oh, the Places You'll Go! - Read & Play - Dr. Seuss",65974272,USD,3.99,12,12,4.5,4.5,4.0.6,4+,Book,37,5,1,1
+583284315,零基础学音标,319086592,USD,0.99,12,2,4.5,3.0,2.0.2,4+,Education,40,3,2,1
+1163372874,Vandermojis by Lisa Vanderpump,10967040,USD,1.99,12,1,2.0,1.0,1.0.3,12+,Entertainment,37,4,1,1
+1157494807,Grandpa's Toy Shop,79931392,USD,2.99,12,6,4.0,4.0,1.1,4+,Education,37,5,1,1
+1040809311,Assault on Arnhem,188083200,USD,4.99,12,2,2.5,3.0,1.2,9+,Games,24,5,1,1
+1168567265,Monster Zombie Plague War - Virtual Reality (VR),217378816,USD,0.0,12,2,4.0,5.0,2.0.0,17+,Games,38,5,1,1
+992762497,记账·圈子账本(专业版)—可共享的全能记帐本软件,77918208,USD,0.99,12,0,4.5,0.0,3.1.1,4+,Finance,37,5,2,1
+1181025437,Demi Lovato Stickers,88388608,USD,0.99,12,8,3.5,3.5,1.1,12+,Social Networking,37,0,1,1
+897447840,宾果消消消 -赵丽颖代言,155480064,USD,0.0,12,9,5.0,5.0,4.2.0,4+,Games,40,5,1,1
+1130398188,Addictive Pro,43658240,USD,19.99,12,1,4.5,5.0,1.2.1,4+,Music,24,1,1,1
+898788946,Clipstro - auto strobe motion video creator,25996288,USD,3.99,12,0,3.0,0.0,3.1.5,4+,Photo & Video,38,1,12,1
+1111420122,Hear My Baby - Baby Heartbeat Monitor App,17641472,USD,3.99,12,0,3.5,0.0,1.2,4+,Medical,37,0,4,1
+1178973979,PJ Masks: Super City Run,343991296,USD,2.99,12,12,2.5,2.5,1.0,4+,Entertainment,37,5,1,1
+955832188,Baby Cries Translator,16435200,USD,2.99,12,0,1.5,0.0,2.8,4+,Health & Fitness,37,0,4,1
+1037160778,Team Drift Cats,262576128,USD,0.99,12,4,4.5,4.5,1.0.1,9+,Games,37,5,1,1
+1053524307,Aquarium VR,89742336,USD,0.0,12,12,2.5,2.5,1.0,9+,Education,38,5,1,1
+954205285,戦艦帝国-200艘の実在戦艦を集めろ (2周年記念&世界2000万DL),127147008,USD,0.0,12,1,4.0,2.0,1.0.19,12+,Games,40,5,0,1
+919008215,Toby: The Secret Mine,183043072,USD,4.99,12,3,3.5,3.5,1.61,12+,Games,37,5,1,1
+725222008,"Police Lights 3 - Fire Truck, Police and Paramedic Sirens",37777408,USD,0.99,12,4,2.5,4.0,1.1.4,4+,Entertainment,38,5,5,1
+1092574509,Dark Souls III Map Companion,38604800,USD,2.99,11,8,3.5,3.5,1.1,4+,Reference,37,5,1,1
+1052682268,DADA Trains,982475776,USD,2.99,11,6,4.0,4.5,1.1,4+,Education,37,5,22,1
+1111504185,Stephen Hawking's Pocket Universe,159013888,USD,4.99,11,9,4.5,4.5,1.02,4+,Education,37,0,1,1
+1145877280,Defend Pizzeria Craft Shop,17582080,USD,1.99,11,11,1.0,1.0,1.1,4+,Games,38,3,1,1
+554064861,Jメール 出会える人気の匿名SNS出会い系アプリ,27784192,USD,0.0,11,0,3.5,0.0,3.3.1,17+,Social Networking,37,0,2,1
+570105907,楽天カード,81673216,USD,0.0,11,0,5.0,0.0,5.15.3,17+,Finance,37,5,1,1
+973366293,蜜芽 - 生娃养娃上蜜芽,86094848,USD,0.0,11,0,3.5,0.0,5.4.3,12+,Shopping,38,4,2,1
+1173451691,Kendall KMoji,70244352,USD,0.99,11,0,4.5,0.0,1.1,4+,Entertainment,37,0,1,1
+507056600,Lingji tarot-nice and funny in line with tarot cards,64246784,USD,0.99,11,3,3.0,5.0,3.2.1,4+,Entertainment,38,5,3,1
+1064989970,Atomic Hangman Jr,135370752,USD,1.99,11,9,4.5,4.5,1.1,9+,Education,37,5,1,1
+892311054,360手机浏览器-安全上网看新闻、安心搜索、极速抢票,59220992,USD,0.0,11,0,2.5,0.0,4.0.4,17+,Utilities,37,0,2,1
+891596226,华尔街见闻(专业版)-全球财经新闻精选,71386112,USD,0.99,11,0,3.5,0.0,4.0.2,4+,News,37,5,2,1
+1041731729,Magnets!,27394048,USD,0.0,11,11,3.5,3.5,1.0,4+,Games,38,5,1,1
+1078591208,لغز الماضي - اربع اجزاء,313783296,USD,1.99,11,11,4.0,4.0,1.0,4+,Games,38,5,1,1
+1114493266,Crusader Kings: Chronicles,111983616,USD,4.99,11,5,2.0,2.0,1.2,17+,Games,40,5,1,1
+1117482308,Bob the Builder™: Build City,230901760,USD,2.99,11,1,3.5,5.0,1.2,4+,Games,37,5,6,1
+469622080,Math Practice - Integers,2598912,USD,0.99,11,0,4.0,0.0,2.0,4+,Education,37,5,1,1
+1187282363,Plead the Fifth - The Game,27853824,USD,2.99,11,0,4.0,0.0,1.1.1,17+,Games,37,0,1,1
+426414466,Showroomprive - Private Fashion Sales,31230976,USD,0.0,11,0,4.0,0.0,8.4,12+,Shopping,37,5,8,1
+1161251105,Sun - weather forecast powered by Dark Sky,4281344,USD,1.99,11,1,3.0,5.0,3.0.3,4+,Weather,37,0,1,1
+1062834129,CombineRobot,38444032,USD,0.99,11,5,4.0,3.5,1.25,9+,Games,40,5,2,1
+439176506,Timenote,4849664,USD,0.99,11,5,4.5,5.0,2.6,4+,Business,43,0,2,1
+1019167420,Hey Duggee: The Big Badge App,177739776,USD,2.99,11,5,4.0,3.5,1.3.2,4+,Games,43,5,1,1
+1006850128,Ice Queen Prom Salon: Princess Makeover Girls Game,73683968,USD,1.99,11,1,3.5,1.0,9999.1.6,4+,Games,40,5,1,1
+1005030039,Mon Espace - Pôle emploi,111504384,USD,0.0,11,0,5.0,0.0,4.2,4+,Business,37,5,1,1
+983613658,M Cam - Manual controls & custom exposure camera,15116288,USD,1.99,11,5,3.5,3.5,1.1,4+,Photo & Video,37,0,6,1
+936749679,Boulder Dash® 30th Anniversary™ Premium,79798272,USD,4.99,11,7,5.0,5.0,2.1,9+,Games,37,4,1,1
+917857630,Runcast - Weather for Runners,47755264,USD,0.99,11,3,3.5,3.0,2.2.3,4+,Weather,37,4,1,1
+976071352,スロットマニア・フィーバー~本場ラスベガススロット,131524608,USD,0.0,11,0,4.5,0.0,3.9.0,12+,Games,38,5,0,1
+1031088612,小历 - 通知中心日历,4511744,USD,0.99,11,0,4.5,0.0,3.6.1,4+,Productivity,37,4,3,1
+1122191886,MackMoji by Christy Mack,11546624,USD,1.99,11,11,4.0,4.0,1.0,9+,Entertainment,37,4,1,1
+1184800011,Again - room escape game,33946624,USD,0.0,11,8,4.0,4.0,1.1.0,4+,Games,37,5,1,1
+1053294297,Read with Doc: Letters and Sounds,793677824,USD,3.99,11,4,4.5,4.0,1.1,4+,Education,37,5,1,1
+1156875272,Suica,24804352,USD,0.0,10,0,1.5,0.0,1.0.6,4+,Finance,37,0,2,1
+1072650248,Free-Motion Quilting Idea App,261696512,USD,2.99,10,4,2.0,1.5,1.1,17+,Education,38,5,1,1
+1119074194,Chick Go & Climb,55657472,USD,0.0,10,0,4.5,0.0,1.7.2,4+,Games,43,5,8,1
+1101675121,Catch the Bus,371298304,USD,0.0,10,4,3.0,3.5,1.1,4+,Games,38,5,1,1
+1028558002,Dark Dimensions: Homecoming - A Hidden Object Mystery (Full),1331671040,USD,2.99,10,10,2.5,2.5,1.0.0,9+,Games,38,0,3,1
+1138834300,Emergency Surgery Simulator - Doctor Game FOR FREE,72299520,USD,0.0,10,10,3.0,3.0,1.0.0,12+,Games,40,5,2,1
+643791032,Quizduell,118291456,USD,0.0,10,0,2.5,0.0,6.5.1,4+,Games,37,5,22,1
+1174468136,Tokyo Wizard,23376896,USD,2.99,10,10,4.0,4.0,1.0.1,12+,Games,38,5,1,1
+1109674878,放置江湖: 大侠的成长之路(高自由度的武侠体验),89223168,USD,0.99,10,2,2.0,5.0,1.07,4+,Games,40,4,1,1
+1124845146,WeDJ for iPad,29427712,USD,4.99,10,0,4.0,0.0,1.1.1,4+,Music,16,3,2,1
+413618155,マクドナルド - McDonald's Japan,61166592,USD,0.0,10,0,3.0,0.0,4.0.12,4+,Food & Drink,38,0,1,1
+1036205036,"Road watcher: dash camera, car video recorder.",6329344,USD,0.99,10,9,3.0,3.0,1.0.1,4+,Navigation,38,4,7,1
+1183260922,Room Escape Game - Santa's Room,143346688,USD,0.0,10,10,5.0,5.0,1.0,4+,Games,40,0,1,1
+1035635092,Shopkins: Top Trumps,278928384,USD,2.99,10,10,3.0,3.0,1.0,4+,Games,40,4,1,1
+1174727122,Book - room escape game -,71790592,USD,0.0,10,10,5.0,5.0,1.0,4+,Games,37,0,1,1
+909400466,Pyware 3D Viewer,82898944,USD,2.99,10,2,3.5,4.5,1.0.5,4+,Music,38,5,1,1
+561632513,Peatix -Discover events & communities in your city,84125696,USD,0.0,10,0,3.0,0.0,2.10.0,4+,Entertainment,37,0,2,1
+769175514,Stick & MojiMe New,64851968,USD,0.99,10,0,1.5,0.0,2.7.1,12+,Lifestyle,37,3,1,1
+983151079,借贷宝-直投熟人更高明,74248192,USD,0.0,10,0,3.5,0.0,2.8.7,4+,Finance,38,0,2,1
+1051656345,My8to18,10645504,USD,0.0,10,0,1.0,0.0,2.0.1,4+,Sports,37,0,9,1
+1056968162,Tube Heroes Racers,303671296,USD,1.99,10,0,4.5,0.0,1.8,4+,Games,37,5,1,1
+1110368735,Risky Rooms,24167424,USD,0.0,10,1,3.5,5.0,1.2,4+,Games,40,5,1,1
+942480934,The Collider 2,420882432,USD,1.99,10,10,2.0,2.0,1.0.0,4+,Games,37,5,1,1
+1067146012,The Lorax - Read & Play - Dr. Seuss,91570176,USD,3.99,10,10,4.5,4.5,4.0.6,4+,Book,37,5,1,1
+1086964574,大根にしがみつく女子高生,93810688,USD,0.0,10,7,5.0,5.0,1.0.9,9+,Games,38,4,1,1
+1161444237,Elf Pets® Pup — The Elf on the Shelf®,469178368,USD,0.99,10,3,4.5,5.0,1.0.3,4+,Games,40,5,1,1
+505365608,WikiCamps Australia,23020544,USD,4.99,10,0,4.5,0.0,2.5.1,4+,Travel,37,1,1,1
+1164147984,unWorded,350912512,USD,3.99,10,10,4.0,4.0,1.0,9+,Games,40,5,1,1
+1116568228,VR-Crazy Car Traffic Racing,210149376,USD,0.0,10,1,2.0,5.0,1.11,4+,Games,37,5,1,1
+1053294286,Read with Doc: Word Building,950553600,USD,2.99,10,3,4.0,3.5,1.1,4+,Education,37,5,1,1
+1067231467,熊猫直播HD-最娱乐的直播平台,25325568,USD,0.0,10,0,2.0,0.0,2.3.0,12+,Entertainment,24,4,2,1
+1059718989,雨时,117463040,USD,0.99,10,0,4.5,0.0,1.7,4+,Weather,37,0,0,1
+1071879826,Streets – Street View Browser,26762240,USD,1.99,10,1,4.5,2.0,3.2.2,4+,Navigation,37,5,3,1
+1172627190,Juju on that Beat Challenge,41964544,USD,0.0,10,3,4.0,5.0,1.1,4+,Games,40,0,1,1
+1068766238,Free QR Code Reader simply to scan a QR Code,12190720,USD,0.0,10,6,5.0,5.0,2.1,4+,Productivity,38,3,2,1
+382045106,カロリー管理(痩せるアプリ),44402688,USD,3.99,10,0,4.5,0.0,5.4,17+,Health & Fitness,37,0,1,1
+1061960628,Sinless: Remastered,1238026240,USD,1.99,10,10,3.5,3.5,1.0,9+,Games,38,5,1,1
+919478091,マンガ図書館Z -人気漫画が読み放題!,77494272,USD,0.0,9,1,5.0,5.0,3.2.3,17+,Book,37,5,1,1
+926105977,Ohajiki Web Browser,45042688,USD,2.99,9,0,4.5,0.0,2.6.4,17+,Health & Fitness,37,4,2,1
+1182568288,Talking Santa - Video santa claus calls you,32685056,USD,2.99,9,3,3.0,3.5,1.0.1,4+,Entertainment,37,0,31,1
+997002798,KING OF KARTS: Single- & Multiplayer Battles.,481390592,USD,2.99,9,1,3.5,5.0,2.4.3,4+,Games,38,5,16,1
+1069769377,Mahjong Panda,97662976,USD,0.0,9,2,4.0,3.5,1.1.4,4+,Games,38,5,7,1
+1153109870,微软识花,175406080,USD,0.0,9,4,4.0,4.0,1.09,4+,Entertainment,37,5,2,1
+1114811228,New Star Soccer G-Story,82401280,USD,0.99,9,6,3.5,3.0,1.0.5,4+,Games,40,5,1,1
+640999250,3D stereogram : Human,16596992,USD,0.99,9,9,4.0,4.0,1.3,17+,Entertainment,43,5,2,1
+744189889,bergfex/Ski PRO,33825792,USD,2.99,9,1,4.0,5.0,2.4.2,4+,Weather,37,0,18,1
+385724144,ホットペッパービューティー/サロン予約,65892352,USD,0.0,9,0,4.0,0.0,4.14.1,4+,Lifestyle,37,0,1,1
+1112540727,Tiki Taka World Soccer,135481344,USD,2.99,9,8,2.0,2.0,1.02,4+,Games,40,5,1,1
+1086477428,Mixed Macho Arts,65502208,USD,0.99,9,1,3.0,1.0,1.1,12+,Games,37,5,1,1
+1056668779,City Run London,1697630208,USD,0.99,9,3,4.0,5.0,2.9.43,12+,Games,38,5,1,1
+386239683,Reckless Racing HD,77139968,USD,0.99,9,7,4.0,4.5,1.4.3,4+,Games,43,5,5,1
+1098041500,First Year Demons,68433920,USD,1.99,9,9,2.0,2.0,1.0.0,9+,Games,38,4,1,1
+353372460,Learn to Speak Spanish Fast With MosaLingua,48819200,USD,4.99,9,1,5.0,5.0,9.2,12+,Education,38,5,5,1
+1031388734,Mystery Trackers: Nightsville Horror - A Hidden Object Adventure (Full),992354304,USD,2.99,9,9,3.5,3.5,1.0.0,9+,Games,38,0,5,1
+657675944,ようとん場,40534016,USD,0.0,9,0,4.5,0.0,1.51,12+,Games,40,0,1,1
+668576857,"Mister Maker: Let’s Make It! – Design, Draw, Paint, Make and Play",181036032,USD,2.99,9,0,4.5,0.0,6.0,4+,Entertainment,40,5,1,1
+1148046351,Cosmolander - Missions in the Solar System,369460224,USD,2.99,9,0,2.5,0.0,2.0.1,4+,Education,37,5,6,1
+1179475725,Peppa Pig: Party Time,251977728,USD,0.99,9,0,2.0,0.0,1.1.6,4+,Education,40,5,1,1
+1064016503,MangaZERO - comic reader,99365888,USD,0.0,9,3,4.5,3.5,4.0.2,17+,Book,37,4,2,1
+1090742878,iLive Pro - Live Wallpapers for iPhone 7,1700864,USD,0.99,9,2,3.0,3.0,1.4,4+,Lifestyle,37,4,2,1
+1061419426,Unmatch,49972224,USD,2.99,9,1,4.5,3.0,1.09,4+,Games,38,5,1,1
+967181200,Little Panda Mini Games-3D,441390080,USD,0.0,9,0,4.0,0.0,8.9.1423,4+,Education,38,5,1,1
+1142366464,Bob Mod,19609600,USD,1.99,9,9,2.0,2.0,2.0,4+,Games,38,3,1,1
+1059593339,Lamper VR: Firefly Rescue,180449280,USD,0.99,9,9,2.0,2.0,1.1,9+,Games,40,0,1,1
+492671847,NightShooting,28900352,USD,0.0,9,0,2.5,0.0,3.10,4+,Photo & Video,38,3,2,1
+938099257,Santa Calls You,50864128,USD,0.99,9,9,2.5,2.5,1.0.1,4+,Entertainment,38,0,1,1
+1093430283,Escape from the wedding hall.,108348416,USD,0.0,9,9,4.0,4.0,1.0,4+,Games,40,4,1,1
+972419844,Stop! Thief!!,433222656,USD,0.0,9,0,3.0,0.0,1.3,4+,Games,40,4,1,1
+1116320580,"自动证件照 - 智能证件照相机美图美颜编辑,制作学生证件照",9305088,USD,0.99,9,8,3.0,3.0,2.2,4+,Photo & Video,38,0,1,1
+1018356776,Amaranthine Voyage: The Shadow of Torment HD - A Magical Hidden Object Adventure (Full),1488330752,USD,6.99,9,9,4.5,4.5,1.0.0,9+,Games,24,5,4,1
+519952689,翼支付-只为简单生活,98640896,USD,0.0,9,0,1.5,0.0,6.1.2,17+,Finance,38,0,1,1
+1086617993,BlockyTime - Track your time no need to Start/Stop,11595776,USD,1.99,9,1,5.0,5.0,1.4.2,4+,Productivity,37,5,5,1
+600273928,银联钱包- 银行卡管家,扫码支付享优惠,91323392,USD,0.0,9,1,3.5,3.0,4.5.3,17+,Finance,37,0,1,1
+1067937065,Anime Girl Pose 3D,92434432,USD,1.99,9,9,4.5,4.5,1.0,4+,Entertainment,37,5,1,1
+938596958,HIGO-全球奢侈品牌和设计师品牌购买平台,30148608,USD,0.0,9,0,4.5,0.0,7.0.0,4+,Shopping,37,0,2,1
+1156123904,SwishMoji By JR Smith,18631680,USD,1.99,9,1,3.5,3.0,1.4,4+,Utilities,37,0,1,1
+895506023,Youmiam,93457408,USD,0.0,9,0,4.0,0.0,4.14.3,12+,Food & Drink,37,5,5,1
+1068463719,Building World - Create Your Castle & City,6915072,USD,0.0,9,5,4.0,3.0,3.4,4+,Games,37,3,2,1
+356968629,ヤフオク! 利用者数NO.1のオークション、フリマアプリ,187040768,USD,0.0,9,0,3.0,0.0,6.14.0,17+,Shopping,37,0,1,1
+1123300756,"Dr. Decks for ""Clash Royale""",70156288,USD,0.99,9,2,4.0,2.5,4.0,4+,Games,40,3,1,1
+993187907,Hop Rush,11702272,USD,0.0,9,9,1.0,1.0,1.5,4+,Games,40,2,1,1
+1119002115,Pea – The Premature Ejaculation App,34085888,USD,3.99,9,1,1.5,2.0,2.0,17+,Health & Fitness,37,0,1,1
+1108787635,Fabe Bird - The Flappy Challenge Adventure,11824128,USD,0.0,9,2,3.5,3.0,1.2,4+,Entertainment,40,4,31,1
+511807447,战神之怒,599319461,USD,0.99,9,9,4.5,4.5,1.1.1,4+,Games,43,5,1,1
+1067189485,Magic Princess - Girls Makeup & Dressup Salon Game,92433408,USD,1.99,8,6,4.0,3.5,9999.1.3,4+,Games,40,5,1,1
+802869990,宜搜小说-热门网络书籍看书追更必备神器,39294976,USD,0.99,8,0,5.0,0.0,2.17.0,17+,Book,38,0,2,1
+1055570687,World Spin - Create & Play,199231488,USD,0.0,8,1,4.5,1.0,1.0.9,4+,Games,37,5,2,1
+542568747,征戦エクスカリバー,89853952,USD,0.0,8,0,3.5,0.0,3.5.20,9+,Games,40,5,16,1
+1136083624,【はらぺこパズル】ごはんに恋をした,80132096,USD,0.0,8,1,4.5,3.0,1.0.8,4+,Games,38,0,3,1
+927568927,Fear For Sale: Nightmare Cinema HD - A Mystery Hidden Object Game (Full),1672032256,USD,6.99,8,8,4.0,4.0,1.0.0,4+,Games,24,4,5,1
+815876493,Dash Up 2,72339456,USD,0.0,8,4,4.5,4.5,3.0.9,4+,Games,38,5,1,1
+563103341,UBiO,26939392,USD,4.99,8,0,4.5,0.0,3.0.3,4+,Music,37,5,2,1
+487162791,Spanish Word Wizard : Spanish Talking Movable Alphabet with Spell Check + Spelling Tests,268300288,USD,2.99,8,1,3.5,5.0,2.0,4+,Education,38,5,5,1
+1056489580,棒棒糖-宝宝的世界衣橱,36910080,USD,0.0,8,0,5.0,0.0,2.6.0,4+,Shopping,37,0,5,1
+620447173,"ameli, l'Assurance Maladie",44564480,USD,0.0,8,1,4.0,4.0,9.0.0,4+,Health & Fitness,37,5,1,1
+563764220,minne - shopping handmade item,80129024,USD,0.0,8,0,5.0,0.0,7.11.0,4+,Shopping,37,0,2,1
+1161030409,MOJI TALK by DJ Khaled,31695872,USD,1.99,8,8,5.0,5.0,1.0,12+,Entertainment,37,1,1,1
+1084153783,Black Hole Joyrider,30263296,USD,0.99,8,8,2.5,2.5,1.0,4+,Games,43,5,22,1
+1090757314,Bow Hunt Simulator,52435968,USD,1.99,8,1,2.5,2.0,1.1.2,12+,Sports,43,5,1,1
+1067205290,快读免费小说-最热网络小说追书神器全本下载阅读器,82140160,USD,0.0,8,4,4.5,4.5,1.5,12+,Book,38,4,1,1
+1161538212,SHERMOJI - Official Richard Sherman Emoji Keyboard,44829696,USD,0.99,8,0,5.0,0.0,1.0.7,9+,Entertainment,37,5,1,1
+370901726,My Vodafone,83575808,USD,0.0,8,1,3.0,1.0,6.5,4+,Utilities,37,3,1,1
+1104816326,"Theremin Synth - Loop, Record & Download",1901568,USD,2.99,8,3,4.0,3.5,2.1.0,4+,Music,37,5,1,1
+486355738,Halifax Mobile Banking,101190656,USD,0.0,8,0,4.5,0.0,16.1,4+,Finance,37,0,1,1
+953940121,ダウト~嘘つきオトコは誰?~,373496832,USD,0.0,8,0,4.0,0.0,3.6,17+,Games,38,5,1,1
+286070473,Mileage Log | Fahrtenbuch,71203840,USD,5.99,8,0,4.5,0.0,9.0.5,4+,Business,37,5,3,1
+1171015241,Sally's Law,392790016,USD,0.99,8,0,4.0,0.0,1.0.86,4+,Games,38,5,4,1
+1001153553,腾讯WiFi管家-手机安全免费WiFi,32029696,USD,0.0,8,0,4.0,0.0,2.5.2,4+,Utilities,40,0,1,1
+992047786,Analog Wedding,18767872,USD,0.99,8,6,4.0,3.5,1.0.7,4+,Photo & Video,43,5,5,1
+961411124,超ヒモ理論 ~働きたくないでござる~,55532544,USD,0.0,8,0,5.0,0.0,1.2.15,9+,Games,38,0,2,1
+409362880,La Banque Postale,23792640,USD,0.0,8,0,3.0,0.0,5.5.0,4+,Finance,37,5,1,1
+923138396,flick(フリック)- みんなの顔文字キーボードから名前が変わりました,75055104,USD,0.0,8,1,5.0,5.0,5.1.0,4+,Utilities,37,5,2,1
+1089138131,Escape Alice House2,56381440,USD,0.0,8,5,4.5,4.5,1.3,4+,Games,40,0,2,1
+1130852386,PPTAN,165874688,USD,0.99,8,4,5.0,5.0,1.0.3,4+,Games,40,5,2,1
+882248810,Tractor Crew: Operation Cleanup,244719616,USD,1.99,8,3,4.0,3.5,2.0.9,4+,Games,40,5,1,1
+1156856246,Real Bike Traffic Rider Virtual Reality Glasses,125990912,USD,0.0,8,2,3.0,4.5,8.9,17+,Reference,40,5,1,1
+988455996,Smooth Operator!,598734848,USD,0.99,8,0,4.0,0.0,1.9,9+,Games,37,5,8,1
+415468221,ContactsBook -AddressBook Organizer,7100416,USD,0.99,7,1,4.5,4.0,1.15.1,4+,Utilities,37,0,2,1
+1067458275,WatchNotes - Display notes on watch face,21420032,USD,1.99,7,4,3.0,3.5,2.0,4+,Productivity,37,0,2,1
+1125806960,Escape the Cake Café,33091584,USD,0.0,7,7,5.0,5.0,1.0.1,4+,Games,40,0,2,1
+1104966982,Cricket Captain 2016,404173824,USD,3.99,7,0,3.0,0.0,1.5,4+,Games,40,5,1,1
+662001778,Stylish School Timetable,45628416,USD,0.0,7,0,4.0,0.0,2.0.3,4+,Education,37,0,2,1
+511985746,Puppet Pals Pocket Director's Pass,86945792,USD,1.99,7,0,4.5,0.0,1.9.2,4+,Education,37,0,1,1
+1074223087,Deamon's Dungeon,72083456,USD,0.0,7,3,4.0,4.5,1.1.3,4+,Games,40,5,2,1
+1087422283,Akuarella,99978240,USD,1.99,7,7,5.0,5.0,1.2.1,17+,Photo & Video,37,4,2,1
+1114483079,Pokedex for Pokemon Go,20184064,USD,0.99,7,0,3.0,0.0,2.7,4+,Entertainment,37,3,1,1
+1034934076,Shimmer and Shine:  Enchanted Carpet Ride Game,497315840,USD,2.99,7,1,3.0,4.0,2.2,4+,Education,38,0,1,1
+1023681159,Foodo World,265895936,USD,2.99,7,7,3.0,3.0,1.0.1,4+,Education,37,5,32,1
+1160731868,Little Briar Rose,279456768,USD,2.99,7,1,3.0,1.0,1.5,4+,Games,38,5,2,1
+1163668736,One Touch Camera Recording & Capture in HD,1327104,USD,1.99,7,2,1.5,1.0,1.2,4+,Productivity,37,0,1,1
+945434433,SNCF,122186752,USD,0.0,7,0,1.5,0.0,7.22,4+,Travel,37,1,4,1
+1102411902,Escape from the Art Gallery.,110124032,USD,0.0,7,6,4.0,4.0,1.5,4+,Games,40,5,1,1
+1103804173,Super SteamPuff,151469056,USD,0.99,7,0,4.5,0.0,1.3.1,9+,Games,38,5,1,1
+1035219553,Analog London,18984960,USD,0.99,7,7,5.0,5.0,1.0.7,4+,Photo & Video,43,5,5,1
+1166863768,Dumber League,42499072,USD,0.99,7,0,4.5,0.0,1.2,4+,Games,40,5,3,1
+1089847385,Levels - Addictive Puzzle Game,89965568,USD,0.0,7,0,4.0,0.0,1.6.1,4+,Games,40,4,9,1
+1101582722,The Island:Brave Heart,175841280,USD,0.99,7,3,3.0,3.0,1.3.2,12+,Games,43,5,3,1
+933227208,"Don't Die, Mr. Robot!",57417728,USD,0.99,7,7,4.5,4.5,1.00,4+,Games,38,5,1,1
+1125812643,Roller Coaster Simulator - Draw and Simulate!,156507136,USD,0.0,7,5,4.5,4.0,2.1.0,12+,Games,40,2,1,1
+1046280177,"Halloween Makeover: Spa, Makeup & Dressup Salon",99257344,USD,1.99,7,3,5.0,5.0,9999.1.2,4+,Games,40,5,1,1
+1125318904,Dice Crush,180950016,USD,0.0,7,1,5.0,5.0,1.0.3,4+,Games,40,5,2,1
+1095198288,VR RollerCoaster for Cardboard,127228928,USD,2.99,7,7,4.5,4.5,0.8,4+,Games,40,0,1,1
+984957369,日课——给每一位好读诗的人!,59156480,USD,0.99,7,0,4.5,0.0,2.2,4+,Education,40,5,3,1
+999273718,Circle Boom,14546944,USD,0.0,7,2,1.5,1.0,1.5,4+,Games,40,2,1,1
+1105932165,Pan Book 7: Han Awakening,798292992,USD,5.99,7,0,4.5,0.0,1.3.1,4+,Book,37,5,1,1
+891192948,挖财宝理财-预期年化收益高达12%,48109568,USD,0.0,7,0,4.0,0.0,4.8.0,17+,Finance,37,0,2,1
+1064883436,Merry Christmas -Activities,114275328,USD,0.0,7,0,3.5,0.0,9.12.0000,4+,Education,38,5,12,1
+1042298797,The Very Hungry Caterpillar™ – Shapes & Colors,95689728,USD,2.99,7,1,5.0,5.0,1.1,4+,Education,38,5,1,1
+875152413,CalculationBook Pro,4824064,USD,2.99,7,1,4.5,4.0,1.10.1,4+,Utilities,37,5,2,1
+495130365,mememo(ミーメモ)ダイエット〜生理日予測まで女性サポート,83694592,USD,0.0,7,0,4.0,0.0,4.1.1,4+,Health & Fitness,37,0,2,1
+1174545438,Jurassic VR for Google Cardboard,131453952,USD,1.99,7,3,1.5,1.5,1.2,4+,Games,37,0,1,1
+399804936,Learn English quickly with MosaLingua,51665920,USD,4.99,7,0,5.0,0.0,9.2,12+,Education,38,5,5,1
+867887231,botman - Real time video chat,86319104,USD,0.0,7,0,3.0,0.0,2017.5.1,17+,Social Networking,37,5,2,1
+1088135010,Keyboard PE - Custom keyboard for Modded Pocketmine Servers of Minecraft PE,22332416,USD,1.99,7,7,1.5,1.5,1.0,4+,Utilities,37,4,1,1
+1178880179,Ao Oni2,86687744,USD,0.0,7,3,4.0,4.0,1.5.0,12+,Games,37,0,5,1
+1046824077,Cat Monsters,87465984,USD,0.0,7,0,4.0,0.0,2.2,4+,Games,38,0,5,1
+795739546,Drillbook Next Reader,7758848,USD,2.99,7,0,3.5,0.0,1.09,4+,Music,37,0,1,1
+1087897068,企业微信,139163648,USD,0.0,7,0,2.5,0.0,1.3.10,4+,Business,38,0,2,1
+1057856541,Home Run X 3D - Baseball Batting Game,139215872,USD,0.0,7,5,3.0,3.0,1.1.1,4+,Games,40,5,2,1
+1012368051,全民坦克联盟—坦克帝国官方正版,124522496,USD,0.0,7,0,4.5,0.0,1.1.54,4+,Games,40,5,1,1
+523497998,フリル(FRIL) - 満足度No.1 のフリマアプリ,68782080,USD,0.0,7,0,4.0,0.0,6.6.0,17+,Shopping,37,5,1,1
+985565530,鏡の中のプリンセス Love Palace,22060032,USD,0.0,7,0,4.5,0.0,2.2,12+,Games,38,5,1,1
+1177907423,DELISH KITCHEN - レシピ動画で料理を簡単に,97549312,USD,0.0,7,0,5.0,0.0,1.3.1,4+,Food & Drink,37,5,1,1
+590268705,First Grade Learning Games (School Edition),22910976,USD,3.99,7,0,3.5,0.0,2.2,4+,Education,37,5,1,1
+979144378,中国搜索-国家权威搜索,56249344,USD,0.0,7,0,4.5,0.0,2.6.5,17+,Utilities,37,0,1,1
+1054355169,Tiny Pirates - Kids' Activity App,368076800,USD,2.99,6,6,4.0,4.0,1.1.3,4+,Education,38,5,15,1
+755018884,新概念英语2015最新版-英美全四册,475598848,USD,0.99,6,1,5.0,5.0,2.0,4+,Education,38,5,1,1
+1144325165,The Krustashians,57183232,USD,0.0,6,0,4.5,0.0,1.3,4+,Games,38,5,1,1
+893525571,Weather & Radar Pro Ad-Free,87799808,USD,2.99,6,1,4.0,5.0,4.3.2,4+,Weather,37,3,21,1
+1036157827,Civil War: Wilson's Creek,251606016,USD,1.99,6,6,3.0,3.0,1.0,12+,Games,37,5,1,1
+1142261822,At the Zoo With Grandma and Grandpa,112182272,USD,2.99,6,1,5.0,5.0,1.2,4+,Education,37,5,1,1
+1090653945,Messenger for WhatsApp - Pro App,709632,USD,1.99,6,3,2.5,3.0,1.4,4+,Business,37,3,10,1
+618687721,楽天市場 for iPad,13448192,USD,0.0,6,0,4.0,0.0,1.3.8,4+,Lifestyle,24,4,1,1
+1132842255,Beach Volleyball 2016,372767744,USD,0.99,6,0,2.5,0.0,1.2.3 Build 19,4+,Games,40,5,1,1
+1133417566,Welcome to Virtual Reality,347128832,USD,0.0,6,6,4.0,4.0,1.0,4+,Entertainment,40,5,1,1
+1158735801,Fitness Sync for Fitbit to Apple Health,23117824,USD,2.99,6,5,5.0,5.0,1.1.6,4+,Health & Fitness,13,0,1,1
+326082487,Food Additives Checker (E Numbers),6418432,USD,1.99,6,0,3.5,0.0,4.1.2,4+,Health & Fitness,37,0,8,1
+930764645,优信二手车-二手车买车卖车评估交易平台,71677952,USD,0.0,6,0,5.0,0.0,8.0,9+,Lifestyle,38,0,8,1
+1084133300,Fake Message - Make a fake lock screen,7939072,USD,0.99,6,0,3.0,0.0,1.5.2,4+,Entertainment,37,0,4,1
+969447060,Eye Training Cocololo-3dステレオグラム視力回復アプリ-,66277376,USD,0.0,6,3,5.0,5.0,2.2,12+,Medical,37,0,1,1
+1170395210,Room Escape Game - Pictures Room Esacpe,88484864,USD,0.0,6,2,5.0,5.0,1.1,4+,Games,40,0,1,1
+863998476,贝贝-8000万妈妈信赖的母婴正品特卖拼团商城,109491200,USD,0.0,6,0,3.5,0.0,5.9.03,4+,Shopping,38,0,1,1
+1035220162,Analog Budapest,19247104,USD,0.99,6,6,4.5,4.5,1.0.7,4+,Photo & Video,43,5,5,1
+450987651,VIBO RealMassager,4009984,USD,0.0,6,1,3.0,5.0,1.0.6,4+,Health & Fitness,37,0,2,1
+1084264750,Figure Skater - Girls Makeup & Dressup Salon Game,90331136,USD,1.99,6,3,5.0,5.0,9999.1.2,4+,Games,40,5,1,1
+972579925,Mastering the piano with Lang Lang,199975936,USD,0.0,6,1,4.5,2.0,2.6.1,4+,Education,24,4,2,1
+864130829,Keystone Biology Practice Test,28784640,USD,0.99,6,0,3.0,0.0,1.1,4+,Education,37,1,1,1
+409299054,SecurityCam for iPhone,10469376,USD,0.99,6,1,1.0,1.0,1.131,4+,Photo & Video,39,0,2,1
+1095144783,Smart Baby ABC Games: Toddler Kids Learning Apps,41485312,USD,2.99,6,6,5.0,5.0,1.0,4+,Games,37,5,9,1
+1108733742,Note Always - a notebook designed for Apple Pencil,22431744,USD,14.99,6,3,3.5,4.5,1.12,4+,Productivity,16,5,16,1
+680268481,本気で英会話!ペラペラ英語 英単語・リスニング・TOEICの学習にも!,112906240,USD,0.99,6,0,4.0,0.0,11.0,4+,Education,40,0,4,1
+986722176,弹弹堂S- 巴萨传奇助阵 弹弹堂手游官方版,146187264,USD,0.0,6,0,4.5,0.0,2.8.2,12+,Games,40,5,1,1
+1143437866,Slots of Vegas - Play Free Casino slot machines!,131643392,USD,0.0,6,4,2.5,3.5,1.04,17+,Games,37,0,1,1
+1023026782,Mystery Tales: The Twilight World HD - A Hidden Object Adventure (Full),1563414528,USD,6.99,6,6,3.0,3.0,1.0.0,9+,Games,24,4,4,1
+1180885427,VR Horror Maze Walk :Horror Fever For VR Cardboard,96786432,USD,0.0,6,0,3.0,0.0,2.1,17+,Games,40,4,1,1
+1057446665,交通银行信用卡买单吧,31823872,USD,0.0,6,2,4.0,5.0,2.0.9,4+,Finance,38,0,1,1
+1150346397,Baby Panda's Carnival,131486720,USD,0.0,6,1,4.5,3.0,9.12.0000,4+,Education,38,5,12,1
+724786142,"Funny Veggies! Educational games for children and babies: logic, counting, colors, sums. Development for preschoolers, activities for kids (2, 3, 4, 5 year: baby, boy and girl)!",109260800,USD,3.99,6,5,3.5,3.5,1.3,4+,Education,43,5,21,1
+1068100966,Pirates Kids Room Escape,166528000,USD,0.0,6,6,5.0,5.0,1.0,4+,Games,40,4,1,1
+1113943452,Soccer Sumos - Multiplayer party game!,68797440,USD,0.99,6,3,3.0,3.5,1.1.8,4+,Games,38,5,1,1
+733144873,秀色秀场-网红直播 聊天交友,88574976,USD,0.0,6,0,2.5,0.0,8.0.8,17+,Social Networking,37,0,2,1
+747779910,MixChannel,109877248,USD,0.0,6,0,4.0,0.0,5.0.5,17+,Photo & Video,37,0,29,1
+432771571,Money Origami - Learn How to Fold Money,15350784,USD,1.99,6,0,3.5,0.0,4.1.0,4+,Reference,37,5,2,1
+1059642837,上司と秘密の2LDK Love Happening,65759232,USD,0.0,6,0,4.5,0.0,2.1,12+,Games,38,5,1,1
+632460897,鬼とび,9931776,USD,0.0,6,1,5.0,5.0,1.1.3,4+,Games,40,3,2,1
+1055714800,Santas Watching,43225088,USD,0.99,6,2,3.0,1.5,1.21,4+,Lifestyle,43,0,1,1
+1051708566,Le Fooding Restaurant and Stylish Bedrooms Guide,79784960,USD,0.0,6,0,4.5,0.0,2.7.1,4+,Lifestyle,37,0,2,1
+1093180069,Civil War: 1861,203193344,USD,1.99,6,6,5.0,5.0,1.1,12+,Games,37,5,0,1
+381477230,ゲーム発展国++,191410176,USD,4.99,6,0,4.0,0.0,2.09,4+,Games,38,5,1,1
+1014661557,Monkey Preschool Animals,126582784,USD,2.99,5,5,4.5,4.5,1.0.6,4+,Education,40,4,1,1
+378781805,Auto Palmistry Premium,44349440,USD,2.99,5,0,3.0,0.0,4.0.3,4+,Entertainment,37,4,3,1
+447574907,Auto Palmistry,51680256,USD,0.0,5,0,3.0,0.0,4.0.3,4+,Entertainment,37,4,2,1
+915223450,mazec - 手書き日本語入力ソフト,51886080,USD,8.99,5,0,3.5,0.0,2.1.3,4+,Utilities,37,5,2,1
+1170455562,迷你世界-国产精品沙盒联机生存建造游戏,106102784,USD,0.0,5,0,3.5,0.0,0.16.3,4+,Games,38,5,2,1
+1080369552,Fire and Fury: English Civil War,282439680,USD,1.99,5,1,4.0,5.0,1.4,12+,Games,38,5,1,1
+1161175470,脱出ゲーム 1K,58431488,USD,0.0,5,4,3.0,2.5,1.1.0,4+,Games,40,5,1,1
+463431091,Railway Route Search,46950400,USD,0.0,5,0,3.0,0.0,3.17.1,4+,Navigation,37,0,1,1
+463142843,twinkle,17612800,USD,2.99,5,0,4.0,0.0,6.6,17+,Entertainment,37,1,1,1
+1164374667,Escape Game: Red room,104137728,USD,0.0,5,3,3.0,2.5,1.1.0,4+,Games,40,4,1,1
+1102346079,Brake or Break,82316288,USD,0.0,5,3,5.0,5.0,1.4.1,9+,Games,38,5,1,1
+1122211704,"Please, Don't Touch Anything 3D",468603904,USD,5.99,5,2,4.0,4.5,1.3,9+,Games,25,5,1,1
+1047113274,【謎解き】罪と罰-ノベルゲーム型 推理アドベンチャー,39232512,USD,0.0,5,0,4.0,0.0,1.9,12+,Book,37,0,1,1
+1152267570,Advent Calendar 2017 - The Game,48111616,USD,0.0,5,0,3.0,0.0,1.2,4+,Games,37,5,1,1
+1060973985,DayDayCook - 日日煮,82129920,USD,0.0,5,0,3.0,0.0,3.0.1,12+,Food & Drink,37,5,3,1
+1164765952,Dungeon Witcher,102876160,USD,0.0,5,3,2.5,3.5,1.2.0,12+,Games,40,5,0,1
+549421060,平安金管家 — 值得信赖的移动金融生活管家,131750912,USD,0.0,5,0,2.5,0.0,4.3.1,17+,Finance,38,0,2,1
+1108465034,Escape from the grandma house in the countryside.,85974016,USD,0.0,5,5,3.5,3.5,1.0.1,4+,Games,38,5,1,1
+980864870,ファンタジードライブ【快進撃3DRPG】,176689152,USD,0.0,5,0,4.5,0.0,2.0.1,12+,Games,40,5,1,1
+1093438308,Moomijis Moomin Stickers,19173376,USD,0.99,5,5,3.0,3.0,1.5,4+,Utilities,37,2,1,1
+796339836,"平安好车主-用车助手,安全管家",85696512,USD,0.0,5,0,1.5,0.0,3.11.2,17+,Lifestyle,38,0,2,1
+1079094909,Custom Cam,17545216,USD,1.99,5,0,1.5,0.0,2.0.3,4+,Photo & Video,37,0,1,1
+948634806,New baseball board app BasePinBall,177752064,USD,0.0,5,0,3.0,0.0,1.0.4,4+,Games,40,5,2,1
+1040523600,Zasa : An AI Story,31244288,USD,0.99,5,1,4.5,4.0,1.2.13,4+,Games,40,4,16,1
+716697016,Driving test 2017,77581312,USD,0.0,5,0,3.5,0.0,4.8,4+,Education,37,5,4,1
+988627776,モン娘は~れむ【モンはれ】,140779520,USD,0.0,5,0,4.0,0.0,4.2.0,17+,Games,38,5,0,1
+586803362,ウィズダム英和・和英辞典 2,265569280,USD,23.99,5,0,5.0,0.0,2.5.1,4+,Reference,37,5,2,1
+1140033685,Gymnastics Girl Jump American Athlete sports PRO,38723584,USD,2.99,5,3,3.0,3.5,1.4,4+,Games,40,4,1,1
+1141588161,HauntedPic,89677824,USD,0.99,5,0,5.0,0.0,1.2,9+,Entertainment,37,0,1,1
+1052730063,Cutie Patootie - Xmas Surprise,335142912,USD,0.0,5,5,3.0,3.0,1.0,4+,Education,38,5,12,1
+1145290405,Escape the Ice Cream Parlor,34050048,USD,0.0,5,5,4.0,4.0,1.0,4+,Games,40,0,2,1
+1087742191,Smart Baby Sorter HD - Early Learning Shapes and Colors / Matching and Educational Games for Preschool Kids,16807936,USD,2.99,5,5,4.5,4.5,1.0,4+,Games,38,5,2,1
+674385418,Automo Camera,16912384,USD,0.99,5,1,4.5,3.0,2.54,4+,Photo & Video,40,5,2,1
+723322796,FizzUp – Online Fitness Trainer,124125184,USD,0.0,5,0,5.0,0.0,1.21.2,4+,Health & Fitness,38,5,2,1
+644245630,Pronoun Fill-In Super Fun Deck,133537792,USD,5.99,5,0,4.0,0.0,3.8,4+,Education,37,5,1,1
+883179733,Money - Track your money easily.,15391744,USD,0.99,5,0,4.0,0.0,3.0.6,4+,Finance,38,5,4,1
+1181016912,Peanuts StoryGIF – Cute GIF & Story Maker,37198848,USD,0.99,5,4,2.5,2.0,1.2,4+,Entertainment,37,3,9,1
+349079731,DOUBUTSU URANAI®-Animal Fortune-,38718464,USD,0.99,5,0,4.0,0.0,2.9.5,4+,Lifestyle,40,0,2,1
+1056893074,20/20 Diet For Your Life,2013184,USD,2.99,5,0,4.5,0.0,3.0,4+,Health & Fitness,37,5,31,1
+387310377,Free IQ Test: Calculate your IQ,4034560,USD,0.0,5,1,2.0,1.0,3.0.2,4+,Education,38,0,2,1
+992762663,百度钱包-金融信贷和理财投资优选,43722752,USD,0.0,5,0,2.5,0.0,2.9.8,17+,Lifestyle,38,0,1,1
+1092651841,Horton Hears a Who! - Read & Play - Dr. Seuss,93196288,USD,3.99,5,5,4.5,4.5,4.0.7,4+,Book,37,5,1,1
+1085596938,Escape from the ICU room.,96123904,USD,0.0,5,5,4.0,4.0,1.1.2,12+,Games,40,4,1,1
+935559685,Clipstro Golf - Swing trajectory visualization,18195456,USD,3.99,5,1,3.5,3.0,1.9.5,4+,Sports,38,1,12,1
+1107486943,もやししゃちょー,83826688,USD,0.0,5,0,4.5,0.0,1.0.13,17+,Games,38,0,2,1
+1044283059,拼多多 - 1亿人都在拼的购物App,38347776,USD,0.0,5,0,2.5,0.0,3.23.0,4+,Shopping,38,5,5,1
+1018357323,Amaranthine Voyage: The Shadow of Torment - A Magical Hidden Object Adventure (Full),1279516672,USD,2.99,4,4,3.0,3.0,1.0.0,9+,Games,38,0,4,1
+1089215088,Fold+,55095296,USD,1.99,4,4,3.5,3.5,1.0,4+,Games,40,5,1,1
+1145920150,Huetopia,10219520,USD,0.99,4,4,5.0,5.0,1.0.1,4+,Games,38,4,1,1
+1001515754,Craft The World - Episodes Edition,222253056,USD,0.99,4,4,5.0,5.0,1.1.010,9+,Games,43,5,9,1
+1067773107,EmoWatch,20101120,USD,0.99,4,4,1.0,1.0,1.0,4+,Medical,37,0,1,1
+1053795896,舰娘收藏2-注册就送辽宁号,218162176,USD,0.99,4,4,2.0,2.0,104,12+,Games,40,3,1,1
+1088318418,Сluster Traffic: Parkour Trucks Pro,162976768,USD,0.99,4,4,3.5,3.5,1.0,4+,Games,40,4,1,1
+1112156258,Comblosion,21171200,USD,1.99,4,4,5.0,5.0,1.0,4+,Games,38,5,10,1
+1072670055,Blade of Elemental,328126464,USD,0.99,3,3,5.0,5.0,1.2,12+,Games,38,5,5,1
+1188375727,Escape the Sweet Shop Series,90898432,USD,0.0,3,3,5.0,5.0,1.0,4+,Games,40,0,2,1
+1039910808,Patchmania KIDS - A Puzzle About Bunny Revenge!,102250496,USD,3.99,3,3,4.5,4.5,1.0,4+,Games,38,5,13,1
+1069319757,Piiic 2,16039936,USD,0.99,3,3,1.5,1.5,1.0.1,4+,Utilities,37,0,2,1
+1000227889,【よく当たる】手相鑑定〜選べる鑑定ジャンル(人生運、仕事運、恋愛運),55037952,USD,0.0,3,3,3.5,3.5,1.1.0,4+,Games,38,0,4,1
+1048260999,Blaze and the Monster Machines Dinosaur Rescue,413569024,USD,2.99,3,3,4.5,4.5,1.0,4+,Education,38,0,1,1
+1074222293,Fire Fu,111337472,USD,1.99,3,3,3.5,3.5,1.02,9+,Games,37,5,1,0
+1023281359,俺と鬼嫁の100日戦記,37478400,USD,0.0,3,3,4.5,4.5,1.0.4,4+,Games,38,3,1,1
+1065754566,ホストのアブナイ世界,405905408,USD,0.0,3,3,5.0,5.0,1.0.0,17+,Games,38,0,1,1
+1089386287,非诚勿扰-中国最大免费婚恋交友平台,12932096,USD,0.0,3,3,3.5,3.5,5.6.0,17+,Social Networking,38,0,1,1
+1091522492,感動アプリ!無料ゲーム Japanese Gacha,77325312,USD,0.0,3,3,4.0,4.0,1.4.1,12+,Games,37,0,2,1
+1048899002,Simple Camera - Fast Minimal Design,74435584,USD,0.0,3,3,5.0,5.0,3.0.1,4+,Photo & Video,37,5,2,1
+1075681444,UDONちゅるん,95727616,USD,0.0,3,3,5.0,5.0,1.0.1,4+,Games,38,5,1,1
+1076199012,Inner Circle,29589504,USD,0.0,3,3,4.5,4.5,1.0.1,4+,Games,40,5,1,1
+1137479384,Escape from the beach house of everlasting summer.,97858560,USD,0.0,3,3,4.5,4.5,1.0.1,4+,Games,38,5,1,1
+1123510087,Lost Fishy Ultimate Challenge,102046720,USD,0.99,3,3,4.5,4.5,1.1,4+,Games,38,5,1,1
+913427709,Suicaチャージ,2334720,USD,0.0,3,3,2.0,2.0,1.1.0,4+,Finance,37,0,2,1
+1149338810,FunBridge Quiz 3,34081792,USD,8.99,3,3,3.5,3.5,1.2.0,4+,Games,37,5,2,1
+1127440445,A Busy Day for Elmo: Sesame Street Video Calls,235222016,USD,0.99,3,3,2.5,2.5,1.0,4+,Games,40,5,1,1
+591591931,家园7:雪城增强版,47350282,USD,0.99,3,3,3.5,3.5,1.0.0,4+,Games,43,5,12,1
+1164891129,We’re Going on a Bear Hunt,167348224,USD,2.99,3,3,3.5,3.5,1.0.3,4+,Games,37,5,13,0
+1142546565,Smart Baby Shapes FOOD: Fun Jigsaw Puzzles and Learning Games for toddlers & little kids,26571776,USD,2.99,3,3,4.5,4.5,1.0,4+,Games,38,5,7,1
+632064672,Official Life in the UK Test – 3rd Edition,5627904,USD,4.99,3,3,2.0,2.0,1.2.1,4+,Education,43,0,1,1
+947039079,Killer Clown Scare Prank,9056256,USD,0.99,3,3,1.5,1.5,1.0.0,12+,Entertainment,38,0,1,1
+1119424086,Dumb Ways JR Madcap's Plane,110077952,USD,1.99,3,3,3.5,3.5,1.0,4+,Education,37,5,1,1
+1169297765,Fantasy Princess - Girls Makeup & Dress Up Games,97917952,USD,1.99,3,3,3.5,3.5,9999.1.1,4+,Games,40,5,1,1
+940397955,The Snowman & The Snowdog Game,105910272,USD,1.99,3,3,5.0,5.0,1.1,4+,Games,40,5,10,0
+1170260363,Wavemoji,16411648,USD,1.99,3,3,5.0,5.0,1.0,12+,Entertainment,37,0,1,1
+1182331762,Escape from the frigid Igloo.,89188352,USD,0.0,3,3,4.0,4.0,1.0.1,4+,Games,38,5,1,1
+1141738848,Escape from the living room during the Obon holiday.,101866496,USD,0.0,3,3,4.0,4.0,1.0,4+,Games,38,5,1,1
+1175547625,Escape a Crepe House,32714752,USD,0.0,3,3,5.0,5.0,1.0,4+,Games,40,0,2,1
+1075820543,Apestorm: Full Bananas,202067968,USD,1.99,3,3,2.5,2.5,1.0,9+,Games,38,5,8,0
+825089659,Photon X Flash Web Browser & Player for iPhone - Full Screen Video plus Games,12853248,USD,2.99,3,3,1.0,1.0,4.2,17+,Utilities,43,0,10,1
+1138586148,Wire de Coins 2,59320320,USD,0.0,2,2,4.5,4.5,1.1,4+,Games,40,5,2,1
+1163684161,RETSNOM,283760640,USD,0.99,2,2,5.0,5.0,1.01,9+,Games,37,5,3,1
+1022100908,Nebraska Huskers for iPad 2015,31588352,USD,9.99,2,2,1.0,1.0,2.4,4+,Sports,24,5,1,1
+959451726,ごちうさアラーム~チノ編~,18604032,USD,5.99,2,2,5.0,5.0,1.0.1,9+,Entertainment,38,0,0,1
+1141996024,Flappy Marine,3132416,USD,0.99,2,2,5.0,5.0,1.2,12+,Games,37,0,1,1
+1015820762,Circle Swing,8642560,USD,0.0,2,2,3.5,3.5,1.2,4+,Games,40,3,1,1
+1142223652,ROAD -escape game-,74856448,USD,0.0,2,2,5.0,5.0,1.0,4+,Games,40,5,1,1
+595098366,4 Bilder 1 Wort,118532096,USD,0.0,2,2,2.5,2.5,7.3.3,12+,Games,37,5,1,1
+1142657936,Spoofr — GPS & Location Simulator,1210368,USD,1.99,2,2,1.0,1.0,1.0,4+,Games,37,5,1,1
+780214292,Santa was in my House! Catch Santa Camera,11927552,USD,0.99,2,2,1.0,1.0,1.0,4+,Games,43,2,1,1
+646504584,Ruler and Compass Geometry,24403968,USD,0.99,2,2,3.5,3.5,1.1,4+,Education,26,4,16,1
+1082215066,Escape Game : Escape from Okinawa,36832256,USD,0.0,2,2,5.0,5.0,1.0.0,4+,Games,38,0,2,1
+741597322,我的密码-极简账号备忘录,安全记录管家,3905536,USD,1.99,2,2,5.0,5.0,2.3,4+,Productivity,37,3,2,1
+1091627644,Marmiton Twist,32745472,USD,0.0,2,2,4.5,4.5,1.2.1,4+,Food & Drink,37,0,1,1
+1052684130,大航海世界(风靡日本航海手游《壮绝大航海》正版授权),103174144,USD,0.0,2,2,4.5,4.5,1.1.9.0,4+,Games,40,5,1,1
+1139119113,Bounce Balls - Strike Game,52915200,USD,0.0,2,2,1.0,1.0,1.1,4+,Games,40,4,1,1
+1067720293,【カノピッピ大作戦】ギャルがオタクに恋をした/脱ギャル系彼女育成ゲーム,66764800,USD,0.0,2,2,5.0,5.0,1.0.1,4+,Games,40,4,2,1
+1069601724,Eric & Bruce BBQ Party,96366592,USD,2.99,2,2,5.0,5.0,1.1,4+,Education,40,5,2,1
+1087637812,Dash Heroes,57469952,USD,0.0,2,2,4.5,4.5,1.1.1,4+,Games,38,5,5,1
+1111487818,天天麻将-有奖励的麻将玩法全集,87851008,USD,0.0,2,2,5.0,5.0,3.91,17+,Games,40,4,1,1
+1100612577,Cars & Vehicles Puzzle Game for toddlers HD - Children's Smart Educational Transport puzzles for kids 2+,49201152,USD,2.99,2,2,3.0,3.0,1.0,4+,Games,38,5,9,1
+1121196185,Soccer Cup Championship 2016,68205568,USD,0.0,2,2,5.0,5.0,1.2,4+,Games,38,5,1,1
+1059310516,熱血高校!胴上げ部,193884160,USD,0.0,2,2,4.0,4.0,1.0.2,4+,Games,40,5,1,1
+1135867247,The Orchard by HABA - colors & shapes for children,164418560,USD,1.99,2,2,2.0,2.0,1.2,4+,Games,37,5,13,1
+1021877189,a. - Physical Simulation Puzzle Game,49728512,USD,0.0,2,2,5.0,5.0,1.0.8,4+,Games,40,4,2,1
+1094744773,"SwapperFace - Face Swap Free, Live Mask Effects",117949440,USD,0.0,2,2,4.5,4.5,1.2,9+,Photo & Video,37,0,11,1
+987237335,Yiannimize Racing,46248960,USD,0.99,2,2,3.0,3.0,2.0,4+,Games,37,0,1,1
+1069710958,Online Reversi World,7753728,USD,0.0,2,2,3.0,3.0,1.1,4+,Games,38,0,3,1
+1095317943,Survivor: Prologue,55823360,USD,0.0,2,2,5.0,5.0,1.0.7,12+,Games,37,5,4,1
+1062307524,Lightsaber Camera,16411648,USD,0.99,2,2,4.0,4.0,1.1.1,4+,Photo & Video,40,0,2,1
+1023028213,Mystery Tales: The Twilight World - A Hidden Object Adventure (Full),1556369408,USD,2.99,2,2,2.5,2.5,1.0.0,9+,Games,36,0,4,1
+506007254,Dikie & Dukie: Learn to Read in Spanish HD,47760353,USD,2.99,2,2,3.0,3.0,1.2,4+,Games,26,5,1,1
+1157812299,Escape from the pit latrine.,108177408,USD,0.0,2,2,3.5,3.5,1.1.1,4+,Games,38,5,1,1
+1157967043,Pettson's Inventions 3,333170688,USD,2.99,2,2,5.0,5.0,1.1,4+,Education,38,5,13,1
+1148524123,Uber优步中国,51692544,USD,0.0,2,2,1.0,1.0,4.8.19,4+,Travel,37,0,1,1
+1173335667,脱出ゲーム 謎解き部屋からの脱出,17112064,USD,0.0,1,1,2.0,2.0,1.0.0,4+,Games,38,0,1,1
+1064304763,10 – 頭を良くするパズル,32050176,USD,0.0,1,1,4.0,4.0,1.2,4+,Games,40,0,1,1
+1056963973,Race Calendar 2016,14198784,USD,0.0,1,1,1.0,1.0,2.4,4+,Sports,38,5,2,1
+538671999,どうぶつしょうぎ(公式),33780714,USD,0.99,1,1,4.0,4.0,1.0,4+,Games,43,5,1,1
+1085401990,SLAAAASH ! -Cut and Smash ! refreshing Puzzle-,47260672,USD,0.0,1,1,5.0,5.0,1.0.5,4+,Games,40,0,2,1
+1131251130,Montessori Nature,199166976,USD,2.99,1,1,5.0,5.0,1.5.1,4+,Games,40,5,1,1
+898688373,ContactsBook for iPad,2370560,USD,1.99,1,1,5.0,5.0,1.2,4+,Utilities,24,5,2,1
+1039514679,Bullet'nTunes,209350656,USD,1.99,1,1,4.0,4.0,1.102,4+,Games,38,0,1,1
+1131536464,Open House London 2016,7297024,USD,3.99,1,1,2.0,2.0,1.0,4+,Travel,38,5,1,1
+1097737340,Deer Calls & Deer Sounds for Deer Hunting - BLUETOOTH COMPATIBLE,53362688,USD,2.99,1,1,4.0,4.0,1.2,4+,Sports,40,0,1,1
+1063946646,ぼっちでもリア充になれる奇跡のアプリ。〜恋する缶づめ。〜,66295808,USD,0.0,1,1,5.0,5.0,1.0.1,12+,Games,40,0,1,1
+502803489,美食杰-让吃饭变简单(VIP版),57106432,USD,27.99,1,1,4.0,4.0,6.3.0,4+,Food & Drink,38,4,1,1
+1156413671,LINE Moments - Capture Your Fun Moments,133572608,USD,0.0,1,1,5.0,5.0,1.2.1,4+,Photo & Video,37,0,6,1
+887910620,DelusionCreatureGacha,50221056,USD,0.0,1,1,5.0,5.0,1.0,4+,Games,40,2,1,1
+1098834577,Todrick,18373632,USD,0.99,1,1,5.0,5.0,1.1,12+,Social Networking,37,0,1,1
+1065354746,Video speed editor - VBooster,46454784,USD,0.0,1,1,1.0,1.0,2.2,4+,Photo & Video,37,1,1,1
+1099079526,脱出ゲーム 研究所からの脱出,177694720,USD,0.0,1,1,1.0,1.0,1.0.0,4+,Games,38,5,1,1
+1128981090,Escape from many tutoring school of test.,106914816,USD,0.0,1,1,4.0,4.0,1.0,4+,Games,38,5,1,1
+1139996011,脱出ゲーム Cottage,151880704,USD,0.0,1,1,5.0,5.0,1.0.0,4+,Games,38,5,1,1
+1089058534,【謎解き】自称カノジョからの病みすぎメッセージ,16397312,USD,0.0,1,1,4.0,4.0,1.0,4+,Book,38,0,1,1
+1037601932,Should Shoot,33418240,USD,2.99,1,1,5.0,5.0,1.0.8,9+,Games,43,4,1,1
+1065770853,謎解き ジェスチャーゲーム - 何してる?,35903488,USD,0.0,1,1,5.0,5.0,1.0.1,9+,Book,38,4,1,1
+1086015361,銀魂 公式連載アプリ〜銀魂の漫画が毎週1巻読めるアプリ〜,39901184,USD,0.0,1,1,1.0,1.0,1.6.2,4+,Book,38,3,1,1
+588797948,Open Food Facts,6660096,USD,0.0,1,1,1.0,1.0,1.31,4+,Food & Drink,37,1,1,1
+794278407,QRコードリーダー for iPhone - 無料で使えるQRコード読み取り用アプリ,909312,USD,0.0,1,1,5.0,5.0,1.0.2,4+,Productivity,38,0,2,1
+1050563650,ぷちドラシル 〜ゆるドラ外伝〜,404678656,USD,0.0,1,1,5.0,5.0,1.1.0,4+,Games,40,5,1,1
+593042008,teamLabBody-3D Motion Human Anatomy-,131316736,USD,24.99,1,1,1.0,1.0,3.0.4,12+,Medical,38,5,2,1
+1087095011,Glasmoji - Glasgow emoji-stickers,66552832,USD,0.99,1,1,3.0,3.0,1.1,12+,Utilities,37,5,1,1
+533373729,Fragment's Note,714801152,USD,3.99,1,1,5.0,5.0,1.05,4+,Games,43,4,1,1
+1011675447,激ムズ!ねこ階段,123645952,USD,0.0,1,1,5.0,5.0,1.1.0,9+,Entertainment,37,3,1,1
+1090725456,迷你屠龙传(1.76经典休闲挂机版),34243584,USD,0.99,1,1,5.0,5.0,1.0.0,17+,Games,38,5,1,1
+1013551921,Video Smith - A Powerful video editing tool set,39056384,USD,0.0,1,1,5.0,5.0,1.2,4+,Photo & Video,37,0,2,1
+1046598440,Zemoji Zombie Emoji - Halloween iMessage Stickers,47495168,USD,0.99,1,1,4.0,4.0,1.5,9+,Entertainment,37,5,1,1
+1173380979,IQ200 - If you can clear all stage,143289344,USD,0.0,1,1,2.0,2.0,1.0.1,4+,Games,38,3,1,1
+1071516797,"DSLR Lens Kit ,RAW files and Dual-lens supported",2689024,USD,1.99,1,1,4.0,4.0,1.2.3,4+,Photo & Video,37,0,2,1
+1181526812,EMOJIZI BOOBA,52536320,USD,1.99,1,1,4.0,4.0,1.0.1,17+,Utilities,37,0,1,1
+982457990,求生无限 - 无限流生存挑战大冒险,87796736,USD,0.99,1,1,5.0,5.0,2.4.1,12+,Games,37,5,3,1
+1115092415,街机格斗王,301804544,USD,0.0,1,1,5.0,5.0,1.6.0,9+,Games,38,5,1,1
+1106818611,我叫MT3-回合制魔幻世界 大型公会副本开荒,466015232,USD,0.0,1,1,5.0,5.0,1.10.1,9+,Games,40,5,1,1
+1071497654,最高警戒,199214080,USD,0.0,1,1,1.0,1.0,1.8.2,17+,Games,40,5,1,1
+1001893116,Hit the Button Math,13328384,USD,2.99,1,1,5.0,5.0,1.0,4+,Education,43,4,1,1
+1116549578,不思議雑貨店ローズ ~ほのぼの再建記~,105900032,USD,0.0,1,1,5.0,5.0,1.0.5,4+,Games,37,4,4,1
+1177618807,脱出ゲーム KOTATSU,15002624,USD,0.0,1,1,5.0,5.0,1.0.0,4+,Games,38,0,1,1
+1115981170,好きになったら負け。 完全無料!女性向けイケメン恋愛ゲーム,37828608,USD,0.0,1,1,1.0,1.0,1.1.0,9+,Games,38,5,16,1
+981031050,霸王卧龙传,75983872,USD,0.99,1,1,5.0,5.0,1.4,9+,Games,38,3,1,1
+996855098,Money Multiplier,40488960,USD,0.0,1,1,4.0,4.0,1.0.3,4+,Games,40,4,2,1
+1107529451,【推理ゲーム】 YASU-第7捜査課事件ファイル-,72283136,USD,0.0,1,1,1.0,1.0,1.0,12+,Games,38,5,1,1
+1116944520,精度93% 絶望の心理テスト,28856320,USD,0.0,1,1,1.0,1.0,1.0,12+,Lifestyle,38,0,1,1
+1182265441,脱出ゲーム わたしをみつけて -おじいさんとわたしの物語-,177498112,USD,0.0,1,1,1.0,1.0,1.0.1,4+,Games,38,4,1,1
+1118850623,激おこ!! はじめしゃちょー なんなんですか!?,211661824,USD,0.0,1,1,5.0,5.0,1.0.4,9+,Games,40,5,1,1
+998834675,Clouds & Sheep 2 Premium,299395072,USD,3.99,1,1,4.0,4.0,1.5.2,4+,Games,37,5,14,1
+1178433845,新超级群英传OL-单机党必玩的三国群英手游,246023168,USD,0.99,1,1,4.0,4.0,1.6,9+,Games,37,5,1,1
+1071712425,中高英文法を10時間で!マジグラ,49196032,USD,0.99,1,1,5.0,5.0,1.1.0,4+,Education,37,0,1,1
+1111428249,当たる占い師【水晶玉子】特別鑑定書≪無料占いあり≫,25418752,USD,0.0,1,1,3.0,3.0,1.0.3,17+,Entertainment,37,0,1,1
+1009158392,脱出ゲーム 都市伝説〜杉沢村からの脱出〜,511979520,USD,0.0,1,1,4.0,4.0,1.0.1,12+,Games,38,0,1,1
+1186108496,"脱出ゲーム - 書道教室 -  ""漢字""の謎に満ちた部屋からの 脱出",85580800,USD,0.0,1,1,2.0,2.0,1.0.1,4+,Games,38,5,1,1
+1115245945,Smart Matches ~ Puzzles with Matchsticks,28306432,USD,0.0,1,1,5.0,5.0,1.1,4+,Games,37,4,15,1
+976063428,《女性口コミNo.1》水晶玉子の幸福領域占い,12980224,USD,0.0,1,1,3.0,3.0,1.1,9+,Entertainment,38,0,2,1
+1137822681,ブラックバイトはじめました。2 ~居酒屋編~,47372288,USD,0.0,1,1,5.0,5.0,1.0.0,4+,Games,38,5,1,1
+1151496004,Jeremstar box,43215872,USD,0.0,1,1,5.0,5.0,1.5.1,9+,Entertainment,37,1,1,1
+1094977269,脱出ゲーム Night Room,218039296,USD,0.0,1,1,5.0,5.0,1.0.1,4+,Games,38,5,1,1
+1126714010,ねこみっけ - おもしろい人気無料ゲーム,99002368,USD,0.0,1,1,5.0,5.0,1.4,4+,Games,37,0,2,1
+968213298,Bike Race Level 100,98312192,USD,0.0,1,1,5.0,5.0,1.7.1,9+,Games,40,5,2,1
+1018725005,激ムズ!ねこじゃんぷ2,49191936,USD,0.0,1,1,5.0,5.0,1.0.3,9+,Games,38,3,4,1
+1018216485,Dictionnaire Le Robert Mobile : 4 en 1,69587968,USD,7.99,1,1,5.0,5.0,2.1,4+,Reference,38,5,1,1
+1172033149,脱出ゲーム - Solid - 無機質な部屋からの 脱出,76563456,USD,0.0,1,1,4.0,4.0,1.2.1,4+,Games,37,5,1,1
+1119358760,Escape from the music room in the school.,99691520,USD,0.0,1,1,4.0,4.0,1.0.2,4+,Games,38,5,1,1
+1103314372,脱出ゲーム 古城からの脱出,131070976,USD,0.0,1,1,4.0,4.0,1.0.4,12+,Games,38,5,1,1
+1026717130,病みカワカメラ,42884096,USD,0.0,1,1,5.0,5.0,1.0.6,12+,Photo & Video,38,0,1,1
+1080541663,美播 - 玩不尽的真人游戏,248061952,USD,0.0,1,1,5.0,5.0,8.7.1,17+,Social Networking,37,4,2,1
+944165809,Kaiser 64,34856960,USD,0.99,1,1,5.0,5.0,1.1.3,9+,Games,38,4,2,1
+1144076945,One More Spin! - Free Vegas Casino Slots,127716352,USD,0.0,1,1,1.0,1.0,1.04,17+,Games,37,0,1,1
+1031857811,二炮手-同名抗战狙击手游(孙红雷主演),327962624,USD,0.0,1,1,3.0,3.0,1.0.1,17+,Games,40,5,2,1
+927569248,Fear For Sale: Nightmare Cinema - A Mystery Hidden Object Game (Full),1671360512,USD,2.99,1,1,4.0,4.0,1.0.0,4+,Games,36,0,5,1
+1091946582,陌恋-同城高颜值寂寞美女帅哥激情交友聊天神器!,28471296,USD,0.0,1,1,1.0,1.0,1.0.0,17+,Lifestyle,38,0,8,1
+474595631,Timeshare+,3530752,USD,1.99,1,1,5.0,5.0,6.6,4+,Finance,40,5,1,1
+967146605,Escape Game Darkness LittleRedHood,549847040,USD,0.0,1,1,1.0,1.0,1.0.3,9+,Games,38,0,1,1
+1066612270,脱出ゲーム ぼくのおねがいきいて,125937664,USD,0.0,1,1,5.0,5.0,1.0.1,4+,Games,38,5,1,1
+1066685421,Dark Money-無料のお金稼ぎギャンブルゲーム-,62405632,USD,0.0,1,1,5.0,5.0,1.0.10,17+,Games,38,0,1,1
+1126380291,Team GB Live,51559424,USD,0.0,1,1,3.0,3.0,1.4,4+,Sports,37,1,5,1
+1161306103,【ドレ?ドコ?】脱出ゲーム感覚の謎解きパズルゲーム,37219328,USD,0.0,1,1,3.0,3.0,1.0.3,12+,Games,40,0,1,1
+944646397,ペットとあそぼ!- 声を選んで写真がしゃべる、しりとりゲームおしゃべりペット!犬・猫好き癒し系アプリ,8593408,USD,0.99,1,1,3.0,3.0,1.0.3,4+,Entertainment,38,2,1,1
+588287777,Baidu Videos,142116864,USD,0.0,1,1,5.0,5.0,7.8.5,17+,Entertainment,38,0,2,1
+1124467250,烈焰王座HD - 卡牌与挂机结合的养成放置游戏,68639744,USD,0.99,1,1,5.0,5.0,1.2,12+,Games,40,5,2,1
+1067720154,GUNTAI,73180160,USD,3.99,1,1,4.0,4.0,1.02,9+,Games,25,5,1,1
+1102495460,Pan Book 3: Key to the Capitol,805970944,USD,5.99,1,1,5.0,5.0,1.3.1,4+,Book,37,5,1,1
+1068044677,擬人缶~俺のペットが少女になった~,88091648,USD,0.0,1,1,5.0,5.0,1.1.5,17+,Games,38,0,2,1
+1124568844,Frantic Ball,196617216,USD,0.0,1,1,5.0,5.0,1.0.2,4+,Games,37,5,1,1
+453629018,Sight Recover 3D,22749184,USD,0.99,1,1,1.0,1.0,3.18,4+,Health & Fitness,43,5,4,1
+1057448045,僕の彼女は浮気なんかしない,44249088,USD,0.0,1,1,5.0,5.0,1.1.1,12+,Games,43,5,16,1
+1171578327,大话问仙 - 与众不同的萌派仙侠回合游戏体验(送神器),187321344,USD,0.0,1,1,5.0,5.0,1.0,9+,Games,38,5,1,1
+1055681261,"parkOmator – for Apple Watch meter expiration timer, notifications & GPS navigator to car location",24949760,USD,0.99,1,1,5.0,5.0,1.1,4+,Navigation,37,0,1,1
+966802035,LINE FIGHTERS,136356864,USD,0.0,1,1,5.0,5.0,1.0.7,4+,Games,38,5,4,1
+1128033152,"Cloud Play Pro - Music Player & Streamer for Dropbox, Google Drive, OneDrive, Box and iPod Library",4485120,USD,0.99,1,1,3.0,3.0,1.0,4+,Music,38,5,1,1
+1105928070,Pan Book 4: Capitol Rising,798962688,USD,5.99,1,1,5.0,5.0,1.3.1,4+,Book,37,5,1,1
+773126820,Ducky Fuzz,61550592,USD,0.99,1,1,5.0,5.0,1.03,9+,Games,43,4,1,1
+1060894301,注文の多いブサ猫軒,51895296,USD,0.0,1,1,5.0,5.0,1.27,4+,Games,38,0,2,1
+1134867821,NOT ALONE - Story of a bird,121761792,USD,2.99,1,1,3.0,3.0,1.1,4+,Games,37,4,1,1
+1061661355,ごちうさアラーム~リゼ編~,28688384,USD,5.99,1,1,5.0,5.0,1.0.2,4+,Entertainment,38,0,1,1
+1044550538,You hate me? わたしのこと きらい?,53769216,USD,0.0,1,1,5.0,5.0,1.0.0,17+,Games,38,0,1,1
+1095919153,ゲームセンター倶楽部,111177728,USD,5.99,1,1,5.0,5.0,1.01,9+,Games,38,5,1,1
+873008064,"Powerful Silent Timer – Vibration Alarm for Library, Train etc.",2662400,USD,0.99,1,1,4.0,4.0,1.1.3,4+,Productivity,38,0,2,1
+1151268606,脱出ゲーム In My Heart,160161792,USD,0.0,1,1,1.0,1.0,1.0.0,4+,Games,38,5,1,1
+609636705,Theory Test for Car Drivers - Driving Test Success,65107968,USD,2.99,1,1,1.0,1.0,5.0.4,4+,Education,38,5,1,1
+1096695328,蜀山诛魔纪-古装恋爱仙侠动作手游·MMO端游品质,322576384,USD,0.0,1,1,5.0,5.0,1.1.2,4+,Games,40,5,1,1
+1058752053,大挂西游 - 降魔之路官方正版,95742976,USD,0.0,1,1,5.0,5.0,1.1.1,4+,Games,40,5,1,1
+857654965,Pop Jump,130396160,USD,0.99,1,1,2.0,2.0,1.2.0,4+,Games,43,3,16,1
+1128253730,脱出ゲーム - KINDERGARTEN - 子供にイタズラされたリビングからの 脱出,69039104,USD,0.0,1,1,2.0,2.0,1.2.1,4+,Games,37,4,1,1
+1141356008,Trail Jump,15518720,USD,0.0,1,1,4.0,4.0,1.0,4+,Games,40,4,1,1
+966099615,ピグパーティ - きせかえ・アバターで楽しむトークアプリ,102996992,USD,0.0,1,1,1.0,1.0,1.28.1,4+,Social Networking,38,5,1,1
+1160574357,青空発掘カンパニー,181370880,USD,3.99,1,1,3.0,3.0,1.00,4+,Games,38,5,1,1
+668515245,"健康献立レシピ提案 オーガニック “Ohganic""",29184000,USD,0.0,1,1,4.0,4.0,3.8.1,4+,Food & Drink,38,0,1,1
+1169417102,ミリオン行進曲,196380672,USD,4.99,1,1,3.0,3.0,1.02,4+,Games,38,5,1,1
+1090731387,Versus - Multiplayer Game (2 players),60761088,USD,0.0,1,1,5.0,5.0,2.1.2,4+,Games,37,5,4,1
+1135283959,PokéCatcher - Cheat for Pokémon GO,11693056,USD,0.99,1,1,1.0,1.0,1.0,4+,Utilities,37,3,7,1
+1080545293,ナニワ金融道 全巻無料のマンガアプリ,38322176,USD,0.0,1,1,4.0,4.0,1.0.7,17+,Book,37,5,1,1
+1055571047,There's no tablecloth I can't pull!!,168910848,USD,0.0,1,1,4.0,4.0,1.0.2,4+,Games,37,5,2,1
+1141308767,"Tinkerblocks – code, create, play",185029632,USD,1.99,1,1,1.0,1.0,1.0.0,4+,Education,37,5,12,1
+1167445841,Advent Magnificat Companion 2016,53123072,USD,1.99,1,1,5.0,5.0,1.0.1,4+,Book,37,4,3,1
+1089108246,おかんからのメッセ - ほのぼの謎解きゲーム,30749696,USD,0.0,1,1,5.0,5.0,1.0.6,4+,Book,37,1,2,1
+982887800,NAVIRO(ナビロー) - カーナビ/バイクナビ/徒歩ナビが使える高性能ナビアプリ,55756800,USD,0.0,0,0,0.0,0.0,2.2.9,4+,Navigation,37,5,1,1
+976257847,Confusions de lettres,5000192,USD,2.99,0,0,0.0,0.0,1.0.4,4+,Education,38,5,1,1
+977041956,最長1週間の献立が簡単に作れるme:new(ミーニュー),39937024,USD,0.0,0,0,0.0,0.0,"1,2.4",4+,Food & Drink,38,4,2,1
+1106842267,皮皮四川麻将,67259392,USD,0.0,0,0,0.0,0.0,1.7,17+,Games,37,4,1,1
+972349604,Hugsafe Petracker,3115008,USD,0.0,0,0,0.0,0.0,1.5,4+,Utilities,38,0,2,1
+1106808930,ワンダークラウン,127256576,USD,0.0,0,0,0.0,0.0,1.22.0,9+,Games,37,4,2,1
+1012867463,网商银行,107292672,USD,0.0,0,0,0.0,0.0,2.0.6.052406,4+,Finance,38,0,1,1
+989078384,サッカーカーニバル,101990400,USD,0.0,0,0,0.0,0.0,2.2,4+,Games,38,0,1,1
+989087237,龙珠直播-高清游戏娱乐直播平台,70821888,USD,0.0,0,0,0.0,0.0,3.9.3,17+,Entertainment,38,0,1,1
+1112052555,性教育そうだったのか!世界一まなべる保健体育クイズ(画像付き),48430080,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Education,37,0,2,1
+989105524,Forevolution,77255680,USD,3.99,0,0,0.0,0.0,1.2,4+,Games,38,5,2,1
+999239164,乐享动-有运动音乐推荐的计步器,104727552,USD,0.0,0,0,0.0,0.0,2.4.7,4+,Health & Fitness,37,0,3,1
+1108774944,らぶいずふぉーえばー #泣けるピアノゲーム,106721280,USD,0.0,0,0,0.0,0.0,1.1.6,4+,Games,37,3,31,1
+975832655,豪快ショット連発!ストレス発散テニスゲーム「エアK」,35436544,USD,0.0,0,0,0.0,0.0,1.0.9,17+,Sports,40,3,1,1
+1118239905,おじクエ - OJISAN QUEST - タップRPG -,53107712,USD,0.0,0,0,0.0,0.0,1.11,4+,Games,38,5,1,1
+975459971,殺意の国のアリス -狂気に目覚めた童話の主人公たち-,53944320,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Games,38,0,1,1
+1107818928,【脳トレ】ROLL -ころがす、はめる、きえる-,72118272,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,38,5,1,1
+1014907403,操作しやすいナンプレ!目に優しい パズルゲーム 800問,65695744,USD,0.0,0,0,0.0,0.0,1.3.0,4+,Games,38,5,2,1
+1107419480,Base Invaders - For Big Narstie,22302720,USD,1.99,0,0,0.0,0.0,1.0.4,12+,Games,38,4,1,1
+1015744628,シロクマ先生のゆるくない英文法,224096256,USD,11.99,0,0,0.0,0.0,1.5,4+,Education,38,4,1,1
+1107170561,剑仙传奇·蜀山修仙之独步天下,133885952,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,5,1,1
+1106842405,無料ゲーム タッチザナンバー(Touch the numbers)計算の脳トレでパズル!,18597888,USD,0.0,0,0,0.0,0.0,1.3,4+,Games,37,0,1,1
+1118839901,ここに墓を建てよう,68612096,USD,0.0,0,0,0.0,0.0,1.3,4+,Games,38,4,1,1
+1116483214,天天萌斗—超级萌红将免费领取,上千少年超级英雄形象,让你在多次元大陆享受卡牌萌斗罗乐趣,218665984,USD,0.99,0,0,0.0,0.0,1.2,4+,Games,43,5,2,1
+973825192,METAL SAGA -Ark in the wild land-,173882368,USD,0.0,0,0,0.0,0.0,1.1.2,4+,Games,25,5,1,1
+1015771623,麻雀物語3 役満乱舞の究極大戦,2170589184,USD,9.99,0,0,0.0,0.0,1.1.0,12+,Games,40,0,2,0
+1015225810,ZAKER 专业版,75351040,USD,0.99,0,0,0.0,0.0,7.7,12+,News,37,0,3,1
+1113946899,NINE 対戦型脳トレ -目指せ賞金王!-,48146432,USD,0.0,0,0,0.0,0.0,1.0.3,17+,Games,37,4,42,1
+1112071865,派派激情版-寂陌陌声人交友神器,50076672,USD,0.0,0,0,0.0,0.0,2.5.0,17+,Social Networking,38,0,1,1
+1114434026,やる夫のチャリ,45884416,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,4,2,1
+1112040900,シルエットクイズ~人気マンガ・映画アニメキャラ・芸能人で暇つぶし脳トレ,37047296,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,37,0,2,1
+972533719,Myth Kingdom:Wrath of Gauss,320819200,USD,0.0,0,0,0.0,0.0,1.2.3,12+,Games,38,0,2,1
+1114748413,iOAK,3393536,USD,1.99,0,0,0.0,0.0,1.1.1,4+,Education,37,4,2,1
+988716364,屠龙杀,241339392,USD,0.0,0,0,0.0,0.0,1.9.0,12+,Games,40,5,1,1
+988737164,TownWiFi - WiFi Everywhere,112883712,USD,0.0,0,0,0.0,0.0,3.4.0,4+,Utilities,37,5,5,1
+1113413855,人众金服[回馈版]-高收益理财软件,32704512,USD,0.0,0,0,0.0,0.0,3.0.6,4+,Finance,38,0,1,1
+1137042565,クリアしてみろよ? 神ゲー アクション ゲーム,352789504,USD,0.0,0,0,0.0,0.0,1.4,12+,Games,40,0,1,1
+993093969,懸賞パズルパクロス2,187141120,USD,0.0,0,0,0.0,0.0,1.10,17+,Games,40,5,0,1
+1113205946,ZuumSpeed Customizable Speedometer + HUD,23527424,USD,0.99,0,0,0.0,0.0,2.0.1,4+,Navigation,37,0,1,1
+993479067,"2Face Fitpack - Dein Trainingsprogramm mit persönlichem Ernährungsplan, Kalorienrechner und Trainingsplan",34414592,USD,0.0,0,0,0.0,0.0,1.0,4+,Health & Fitness,43,0,16,1
+994046673,伙星 - 随手拍出明星一样的MV,118812672,USD,0.0,0,0,0.0,0.0,3.5.2,12+,Photo & Video,37,0,3,1
+1112851561,iSNOB 小众精品爱好者的私藏Top 10,27131904,USD,0.99,0,0,0.0,0.0,1.1.2,17+,Lifestyle,37,0,2,1
+1113891385,マジ死にゲー,56744960,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,4,2,1
+1113923256,まんが一本道〆,185382912,USD,4.99,0,0,0.0,0.0,1.0.1,4+,Games,38,5,1,1
+1113936701,创客金融-高收益银行存管投资理财平台,66637824,USD,0.0,0,0,0.0,0.0,3.4.6,4+,Finance,38,0,2,1
+1112826311,"镜花缘:两世英雄情缘,数年问仙修道",334434304,USD,0.0,0,0,0.0,0.0,1.4.7,12+,Games,40,5,1,1
+994052436,ディグラム恋愛診断,12320768,USD,0.0,0,0,0.0,0.0,1.0,4+,Lifestyle,38,5,1,1
+995125257,skyticket - Reserve Best Valued Air Tickets,8294400,USD,0.0,0,0,0.0,0.0,1.41,4+,Travel,37,4,34,1
+997715441,盗墓OL-精绝女王,339391488,USD,0.0,0,0,0.0,0.0,2.100,17+,Games,40,5,1,1
+998253660,恋愛消滅ボタン ~ 無料 泣ける恋愛小説 放置ゲーム ~,23538688,USD,0.0,0,0,0.0,0.0,1.1.4,12+,Book,38,4,1,1
+998364171,Face on Face,1736704,USD,0.99,0,0,0.0,0.0,1.0,4+,Entertainment,40,3,24,1
+999195395,街机游戏厅 - 电玩游戏合集火爆改版,256049152,USD,0.99,0,0,0.0,0.0,6.01,12+,Games,43,5,1,1
+1114284578,ポケット戦国 -戦略と戦術で歴史を作れ!-【本格派 戦国シミュレーション】,150763520,USD,7.99,0,0,0.0,0.0,1.1.2,9+,Games,37,0,2,1
+1114288419,视吧-全民手机直播,170616832,USD,0.0,0,0,0.0,0.0,2.60,17+,Social Networking,37,0,2,1
+989442029,"System Status : memory, CPU, network, battery data",2515968,USD,1.99,0,0,0.0,0.0,3.0.2,4+,Productivity,38,5,13,1
+1106808184,龙之觉醒-热血经典RPG,回味激燃岁月,175943680,USD,0.0,0,0,0.0,0.0,1.0,12+,Games,40,5,1,1
+979469730,GROW:JOURNEY TO THE LIGHT,70346752,USD,0.99,0,0,0.0,0.0,1.0.4,4+,Games,40,5,3,1
+1106788059,ニュースパス -かんたん操作で必要なニュースがすぐ読めるニュースアプリ,92217344,USD,0.0,0,0,0.0,0.0,1.7.0,17+,News,37,0,1,1
+1011597997,9回裏だけ甲子園,31092736,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,40,5,2,1
+1108402751,捨て猫レスキュー,75713536,USD,0.0,0,0,0.0,0.0,1.4,9+,Games,38,5,5,1
+1108373391,"战姬物语-亚洲顶级画师操刀,颜值爆表手游",441995264,USD,0.99,0,0,0.0,0.0,1.0.2,9+,Games,40,5,1,1
+1011796416,GYMONDO – Fitness Training für Zuhause,133136384,USD,0.0,0,0,0.0,0.0,3.0.1,4+,Health & Fitness,37,5,2,1
+1012329703,口袋苍穹-首日送萧炎,重返斗气大陆,156032000,USD,0.0,0,0,0.0,0.0,1.4.8,17+,Games,40,5,1,1
+1117816598,镜花奇缘 - 最新诛仙类卡牌传奇手游游戏,319483904,USD,0.0,0,0,0.0,0.0,1.3.4,12+,Games,40,5,1,1
+1117818844,Natoo,54135808,USD,0.0,0,0,0.0,0.0,1.0.6,4+,Entertainment,38,0,2,1
+1117825020,妙资理财(九周年版)-高收益理财投资平台,31624192,USD,0.0,0,0,0.0,0.0,3.0.51,4+,Finance,38,0,2,1
+1031838318,君の目的はボクを殺すこと。,154515456,USD,0.0,0,0,0.0,0.0,4.0,9+,Games,40,3,1,1
+928927353,Labo Halloween Car(4+),62780416,USD,1.99,0,0,0.0,0.0,1.1.2,4+,Games,24,5,9,1
+928359827,MeiCam -  Video Production Master,133684224,USD,0.0,0,0,0.0,0.0,2.6.3,4+,Photo & Video,38,5,2,1
+1049201894,召喚AKUMA/悪魔合体召喚~育成シミュレーションRPGゲーム,57694208,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Games,37,0,2,1
+1048868250,都市异能小说-全本经典有声小说听书阅读神器,25976832,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Book,40,0,3,1
+805532295,ALOE -ダイエット・ヨガ・エクササイズ…健康美を追求する女性の人気無料ニュースアプリ,32138240,USD,0.0,0,0,0.0,0.0,2.2.0,4+,Lifestyle,37,0,2,1
+1136538547,ポケ電バッテリー for ポケモンGO,12472320,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Entertainment,37,0,1,1
+1093751264,はじめん ~はじめとつくる動画生活~,172704768,USD,0.0,0,0,0.0,0.0,1.0.4,9+,Games,37,5,1,1
+1093727370,DARUMA -目玉を転がして入れてください-,132957184,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,1,1
+802889610,Tricks for iPhone (Pro),22793216,USD,1.99,0,0,0.0,0.0,2.5,4+,Utilities,37,5,2,1
+1093681017,Impossible Goal 3D,179884032,USD,0.0,0,0,0.0,0.0,4.0.0,4+,Games,38,5,1,1
+797511732,Caf - Mon Compte,2441216,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Utilities,40,0,2,1
+797339772,お弁当をつくろう!ママごっこ-お仕事体験知育アプリ,83139584,USD,1.99,0,0,0.0,0.0,1.3.1,4+,Education,40,5,2,1
+1136975039,南国物語,418452480,USD,5.99,0,0,0.0,0.0,1.0.2,12+,Games,38,0,1,0
+1048914472,TOEIC®TEST実力判定『アプトレ』,112229376,USD,0.99,0,0,0.0,0.0,1.0.5,4+,Education,37,0,1,1
+796851829,Let's do pretend Ice-cream shop! - Work Experience-Based Brain Training App,81796096,USD,1.99,0,0,0.0,0.0,1.1.1,4+,Education,40,5,2,1
+1048925081,お前は俺の女だろーが【胸キュン恋愛、リア充ストーリー!?】,35883008,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,40,2,1,1
+1108939718,猎魔传奇-塔塔&推塔挂机私服手游,255946752,USD,0.0,0,0,0.0,0.0,1.2.3,12+,Games,40,5,1,1
+1011661714,ブラックバイトはじめました。俺の嫁に捧げるストーリー【放置】,49234944,USD,0.0,0,0,0.0,0.0,1.0.9,4+,Games,38,3,1,1
+979533450,GENIUS Movie Idioms1000,117142528,USD,9.99,0,0,0.0,0.0,2.1.0,4+,Education,37,5,1,1
+1119051088,GeniusTest!天才てすと,19536896,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Entertainment,37,0,1,1
+1116937558,牛タン牛タン牛タンタン,23534592,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,4,2,1
+1119058112,炎上なう -つぶやきSNS風シミュレーションゲーム-,49246208,USD,0.0,0,0,0.0,0.0,1.1.8,9+,Games,40,3,2,1
+1119061470,Test your color IQ!カラーIQ診断テスト2,17693696,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Entertainment,37,0,1,1
+1106745094,欢乐颂合集—刘涛、蒋欣等主演电视剧同名原著,16188416,USD,0.99,0,0,0.0,0.0,1.0.0,17+,Book,38,0,1,1
+1106737361,传说一刀 - 一刀一级PK爆屠龙,363078656,USD,0.0,0,0,0.0,0.0,1.6,12+,Games,40,5,1,1
+1119107230,面倒だがトリあえずキーボード ~ さわりたくなるキーボード,87080960,USD,0.99,0,0,0.0,0.0,1.0.1,4+,Utilities,37,0,1,1
+1119109028,アキラメロン【メロンを受け止める、チョイムズゲー】,135170048,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,38,4,1,1
+1117981792,面白ニュースを超快適に読める!!まとめのまとめMM,56349696,USD,0.0,0,0,0.0,0.0,3.7,17+,Entertainment,37,5,1,1
+977159568,Superdrug,26830848,USD,0.0,0,0,0.0,0.0,1.1.7,4+,Health & Fitness,38,0,1,1
+977549081,真モグモグ風林火山2,2864631808,USD,12.99,0,0,0.0,0.0,1.0.1,12+,Games,40,1,1,1
+1117825025,妙资理财-福利版(年化14.8%注册送1万体验金),31624192,USD,0.0,0,0,0.0,0.0,3.0.60,4+,Finance,38,0,2,1
+982437433,诺诺镑客—让财富升值,28008448,USD,0.0,0,0,0.0,0.0,5.2.3,17+,Finance,38,0,1,1
+1116541279,これやったことない人いる?,12624896,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,5,2,1
+1116544191,鴨川等間隔の法則,15758336,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,5,2,1
+982416928,PP基金-随时提现的投资理财平台,29438976,USD,0.0,0,0,0.0,0.0,3.7.0,4+,Finance,38,0,2,1
+1116564897,多纳餐厅2,104617984,USD,2.99,0,0,0.0,0.0,3.1,4+,Education,38,5,1,1
+1010174792,一言-记录字句,发现共鸣,32125952,USD,0.99,0,0,0.0,0.0,2.2.2,12+,Social Networking,38,0,2,1
+1116622769,坦克新纪元——经典红警狂热回归,53628928,USD,0.0,0,0,0.0,0.0,1.01,4+,Games,40,5,0,1
+981413101,全民暴力摩托-暴力摩托3d免费真实赛车小游戏,244779008,USD,0.0,0,0,0.0,0.0,2.2.13,12+,Games,37,5,1,1
+1116861891,女の子のための女子トレンドまとめアプリ-ウーマガジン-,9242624,USD,0.0,0,0,0.0,0.0,1.8,9+,Catalogs,38,0,1,1
+1010204708,空格-更优秀的个人技能交易平台,46157824,USD,0.0,0,0,0.0,0.0,2.8.1,17+,Lifestyle,38,0,2,1
+1116880272,マッチングならSecret- 友達・恋人探しSNS,34893824,USD,0.0,0,0,0.0,0.0,1.2,17+,Social Networking,37,5,1,1
+980594437,"TLMJ, Tout Le Monde Joue",22126592,USD,0.0,0,0,0.0,0.0,2.1.12,4+,Games,37,4,2,1
+1116899512,極限ドリブル~神の子 edition~,18325504,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,5,2,1
+980134624,教えて!goo,44208128,USD,0.0,0,0,0.0,0.0,2.2.3,12+,Reference,37,0,1,1
+1011114397,BestieBox,48274432,USD,0.0,0,0,0.0,0.0,3.2.1,4+,Social Networking,37,0,5,1
+1008548146,暴打三国志-经典RPG角色扮演动作卡牌策略手游,134074368,USD,0.0,0,0,0.0,0.0,1.5.1,9+,Games,43,5,1,1
+965226033,21 Days Metabolic Diet,13816832,USD,2.99,0,0,0.0,0.0,1.2.2,4+,Health & Fitness,40,1,5,1
+1008053853,Toy Blocks Game for Brain Traning -TSUMIKI-,97424384,USD,0.0,0,0,0.0,0.0,1.4.0,4+,Games,37,2,5,1
+1028939296,ゲームプレイで賞金ゲット!ポットハンター,292899840,USD,0.0,0,0,0.0,0.0,2.1.6,17+,Games,37,5,1,1
+1027799669,Blitzrechnen 1. Klasse - Mathe lernen in der Grundschule mit Klett nach dem offiziellen Lehrplan,378085376,USD,3.99,0,0,0.0,0.0,1.1,4+,Education,38,4,1,1
+1102364578,Fit 私人健身教练-超有效的健康运动减肥软件,119980032,USD,0.0,0,0,0.0,0.0,2.3.3,4+,Health & Fitness,37,5,2,1
+937580024,シンデレラブレイド2,2943549440,USD,12.99,0,0,0.0,0.0,1.0.8,17+,Games,40,1,1,1
+1102291071,ピンポンカーブ  君の反射神経Lvはいくつ?  #天才求ム,128066560,USD,0.0,0,0,0.0,0.0,1.2,4+,Games,38,0,0,1
+1028791881,Photograph+,23192576,USD,0.99,0,0,0.0,0.0,1.4,4+,Photo & Video,37,0,31,1
+935581627,オオカミ姫 [ みんなで協力!ターン制ギルドバトルRPG ],155367424,USD,0.0,0,0,0.0,0.0,3.5.4,12+,Games,38,0,1,1
+1101635974,Spot the Difference!診断テスト,16202752,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Entertainment,37,0,1,1
+935204856,TodayAir,30035968,USD,0.0,0,0,0.0,0.0,1.2,4+,Weather,40,0,7,1
+1101562772,Billiards8 (8 Ball & Mission),315748352,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,40,5,2,1
+1028902794,Der IQ Test - Intelligenztest (Deutsch),17666048,USD,0.0,0,0,0.0,0.0,1.2.0,4+,Games,43,4,1,1
+933687137,年賀状2018|おしゃれなスマホで写真年賀状2018,76815360,USD,0.0,0,0,0.0,0.0,5.5.0,4+,Photo & Video,38,0,2,1
+1123499004,"求恋爱 专业版-高端恋爱相亲婚恋交友神器,同城寂寞单身男女聊天约会找对象平台",46567424,USD,0.99,0,0,0.0,0.0,2.0.0,17+,Social Networking,38,0,1,1
+1126166674,Robbiemoji by Robbie Williams,10221568,USD,1.99,0,0,0.0,0.0,1.0.5,12+,Entertainment,37,1,1,1
+1007001475,Ear Age Diagnosis,5113856,USD,0.0,0,0,0.0,0.0,1.7.1,4+,Games,37,2,2,1
+1126191781,口袋全明星,219799552,USD,0.0,0,0,0.0,0.0,1.0.0,12+,Games,40,5,1,1
+1126211341,Are you a psychopath? 怖い心理テスト,38904832,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Entertainment,37,0,1,1
+933061939,桃太郎の はなし は終わっていない #泣ける昔話ノベルゲーム,39667712,USD,0.0,0,0,0.0,0.0,1.1.1,9+,Games,40,2,1,1
+932721236,多盈理财-正规手机投资金融理财产品,27424768,USD,0.0,0,0,0.0,0.0,4.1.5,17+,Finance,38,0,1,1
+1126296052,勇士与魔龙,199591936,USD,0.0,0,0,0.0,0.0,1.0.8,4+,Games,40,5,0,1
+932325717,诸神战纪竞技场:超神大冒险(无尽关 排行榜 动作类横版过关游戏),57092096,USD,0.0,0,0,0.0,0.0,2000,9+,Games,40,3,0,1
+1030710604,"金陵十三钗-王丽坤代言,伴你穿越红楼今梦",124174336,USD,3.99,0,0,0.0,0.0,1.5.5,17+,Games,40,5,1,1
+1031164407,おチャベリ-ビデオ通話でマッチングアプリ,66080768,USD,0.0,0,0,0.0,0.0,2.7,17+,Social Networking,40,4,1,1
+1101015200,少年勇者团 (Combo Warrior)-日系Q萌即时战斗消除RPG手游,576397312,USD,0.0,0,0,0.0,0.0,2.2.0,9+,Games,38,5,1,1
+1031704553,Tetro Blocks - Beat IQ with Tetrix-style-puzzle.,47351808,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,38,5,1,1
+1031791319,公牛炒股-证券开户交易软件,40359936,USD,0.99,0,0,0.0,0.0,2.3.1,17+,Finance,38,0,2,1
+1124768573,流しそうめんエクストリーム,152903680,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,3,1,1
+1027284532,商品バーコードで賞味期限を通知 Limiter2 (リミッター),74308608,USD,0.0,0,0,0.0,0.0,1.6.7,4+,Food & Drink,37,0,2,1
+1026736263,【放置ゲー】壁ドンしたら人生変わった ~グリモアのキャラ達に壁ドン!?~,45920256,USD,0.0,0,0,0.0,0.0,1.0.15,17+,Games,40,0,1,1
+1124772645,トクバイ - チラシアプリ/スーパーの特売情報で節約 -,73978880,USD,0.0,0,0,0.0,0.0,2.2.0,4+,Lifestyle,37,0,1,1
+1126032958,REVERSI ZERO - free classic game,36559872,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,0,1,1
+1105930001,Pan Book 5: The Shadow Stone,772891648,USD,5.99,0,0,0.0,0.0,1.3.1,4+,Book,37,5,1,1
+1020009128,戦え!プリンセスドール,69612544,USD,0.0,0,0,0.0,0.0,1.4,17+,Games,40,5,1,1
+1120463205,無料アプリ暇つぶしゲーム【BOKEMON】〜トボケモンスターを進化させるで〜,96265216,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,40,4,1,1
+1020536786,MINE[マイン]ファッション/コーディネート動画アプリ,54054912,USD,0.0,0,0,0.0,0.0,2.3.15,4+,Catalogs,37,5,2,1
+965622173,Final Guitar - absolute guitar app,52610048,USD,0.99,0,0,0.0,0.0,2.0.0,17+,Music,40,0,2,1
+1120565231,Casino Girl-お金稼ぎ美少女育成ゲーム-,45024256,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Games,38,0,1,1
+1120574666,航海帝国HD 唯一正版授权 传承经典 统御大航海强者时代,114208768,USD,0.99,0,0,0.0,0.0,1.2.20,4+,Games,40,5,1,1
+1049316554,「おつぼね」“あるある”エンターテイメントストーリー:OTUBO(お局),126251008,USD,0.0,0,0,0.0,0.0,1.0.3,17+,Entertainment,38,5,1,1
+965084468,SUDOKU -The puzzle game that makes your brain younger!-,19547136,USD,0.0,0,0,0.0,0.0,1.2.2,4+,Games,38,0,7,1
+1105845815,花粉儿-女性、母婴闲置交易平台,73080832,USD,0.0,0,0,0.0,0.0,2.4.0,4+,Shopping,37,0,18,1
+964426709,the SOUL of SEVENS【ソウル オブ セブンス】,168889344,USD,0.0,0,0,0.0,0.0,2.4.1,12+,Games,40,1,2,1
+1020581825,wetter.com,192418816,USD,0.0,0,0,0.0,0.0,1.15.0,4+,Weather,37,5,2,1
+964055562,グルータ / 最新ニュースまとめをグループチャットで!(Grouta),47905792,USD,0.0,0,0,0.0,0.0,2.5,17+,News,37,0,2,1
+963570332,SmartForm - 見積書・納品書・請求書・領収書作成ソフトの新定番!,18051072,USD,5.99,0,0,0.0,0.0,1.9.9,4+,Business,37,1,2,1
+1121160975,ブリ猫,41528320,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,40,0,1,1
+1121172075,今日、彼女が死んだ,33209344,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,40,0,1,1
+1121283620,ひとりぼっち惑星,74806272,USD,0.0,0,0,0.0,0.0,1.2.0,12+,Games,40,5,1,1
+962996253,黄金日-贵金属理财投资黄金白银,51837952,USD,0.0,0,0,0.0,0.0,4.2.1,4+,Finance,37,0,3,1
+1105805539,トリセツメーカー トリセツ診断,15498240,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Entertainment,37,0,1,1
+1105790805,奇跡のメガネ -恋愛シミュレーションゲーム,48396288,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,38,5,16,1
+1020657631,Asymmetric,76766208,USD,1.99,0,0,0.0,0.0,1.1.5,4+,Games,37,5,5,1
+1021368752,片手キーボードPRO,105982976,USD,2.99,0,0,0.0,0.0,3.1.0,4+,Utilities,37,5,1,1
+951615217,オーブGETマルチ掲示板! for モンスト,10363904,USD,0.0,0,0,0.0,0.0,1.1.2,17+,Entertainment,38,3,1,1
+1123493208,なぞって冒険!きゅるるんくまのパズルリンク,62493696,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,5,1,1
+1017228401,Fusion Pictures - A Multiplayer Game with 4 Hidden Pics Object & 1 Word Puzzle,57844736,USD,0.0,0,0,0.0,0.0,1.2,4+,Games,40,3,1,1
+940314673,A Florist,1814528,USD,0.99,0,0,0.0,0.0,1.3.3,4+,Lifestyle,38,2,2,1
+940355209,スタンバイ 仕事もバイトも暮らしにあった選び方,131605504,USD,0.0,0,0,0.0,0.0,3.16.1,4+,Business,37,4,1,1
+1026720146,女の子の憧れが全てつまったTOKYOリアルコーデアプリ - TOPLOG,81313792,USD,0.0,0,0,0.0,0.0,2.2.4,17+,Lifestyle,37,0,2,1
+1016197739,Shapes & Colors Learning Kids Games for girls 2 +,182903808,USD,2.99,0,0,0.0,0.0,1.3,4+,Games,40,1,9,1
+986420993,WarnWetter,51410944,USD,0.0,0,0,0.0,0.0,1.6.2,4+,Weather,37,5,1,1
+1000588300,キスまでにしたい10のこと ~ 無料 胸きゅん恋愛小説 放置げーむ ~,51475456,USD,0.0,0,0,0.0,0.0,1.1.1,12+,Book,38,5,1,1
+1000590510,闇金クリッカー,41996288,USD,0.0,0,0,0.0,0.0,1.0.5,4+,Games,40,3,1,1
+1114916686,Limite Limite,15981568,USD,0.0,0,0,0.0,0.0,3.3,17+,Games,40,2,1,1
+988341207,小牛在线-理财投资神器,33019904,USD,0.0,0,0,0.0,0.0,3.5.0,17+,Finance,38,0,2,1
+1111504254,Simplissime: The easiest cooking app in the world,115209216,USD,2.99,0,0,0.0,0.0,1.0.7,17+,Food & Drink,40,5,16,1
+988301769,脳トレクロスワード -解けばIQがあがる!?無料パズルゲーム-,30003200,USD,0.0,0,0,0.0,0.0,1.2.2,4+,Games,37,0,2,1
+1115078893,英雄Q传-穿越回合制卡牌手游,梦幻般的剧情,开启3D热血传奇人生,313449472,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,1,1
+1115083152,脱出ゲーム 体育館からの脱出【学校脱出シリーズ5弾】,69318656,USD,0.0,0,0,0.0,0.0,1.2.0,4+,Games,40,0,1,1
+988296409,全民德州扑克-天天尽享拉斯维加斯之夜,65105920,USD,0.0,0,0,0.0,0.0,2.6.6,12+,Games,40,5,1,1
+988235692,Refreshing ! Brain training fit,62258176,USD,0.0,0,0,0.0,0.0,2.4,4+,Games,38,5,6,1
+987868589,培训题库,51246080,USD,1.99,0,0,0.0,0.0,3.10,4+,Education,37,5,0,1
+986749236,网娱大师-网吧娱乐大师,72523776,USD,0.0,0,0,0.0,0.0,4.2.00,17+,Lifestyle,38,0,2,1
+1110657008,帝国征服者-王者联盟列国纷争,83196928,USD,0.0,0,0,0.0,0.0,3.1.0,12+,Games,40,5,0,1
+985611127,大江戸ぶらり,45785088,USD,4.99,0,0,0.0,0.0,1.3.2,4+,Navigation,40,5,2,1
+1008623359,多重人格彼女〜僕の彼女は世界で一番可愛くて、そして狂っている〜,82006016,USD,0.0,0,0,0.0,0.0,1.03,17+,Games,37,0,1,1
+1110631870,"果冻星连萌-全球极具诱惑益智游戏,好玩的闯关游戏,2016最新休闲益智游戏",69188608,USD,0.99,0,0,0.0,0.0,1.1.2,4+,Games,37,5,2,1
+1115978213,微火车票-查机票订酒店春运特价随行,48801792,USD,0.99,0,0,0.0,0.0,2.2,4+,Travel,37,0,1,1
+1002317411,霸王英雄传(吕布一统天下,演义三国群英杰传奇),223020032,USD,0.0,0,0,0.0,0.0,4.2,4+,Games,38,5,1,1
+1002381557,"S, - Puzzle Game With Create Level Feature",28254208,USD,0.0,0,0,0.0,0.0,1.5.2,4+,Games,38,4,4,1
+1004938586,お小遣いアプリ。ポイントをレシートで貯めよう / レシポ!,16020480,USD,0.0,0,0,0.0,0.0,2.7.8,4+,Catalogs,37,5,1,1
+1116069870,车轮车友会—汇集养车、洗车、代驾、汽车头条、汽车用品的车友聊天分享之家,53552128,USD,0.0,0,0,0.0,0.0,3.3.3,17+,Lifestyle,38,0,2,1
+1109668092,脱出ゲーム 大正ロマン 女記者脱出譚,145041408,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,38,5,1,1
+984731733,Stress Release Grenade,195417088,USD,0.0,0,0,0.0,0.0,1.9.2,12+,Games,38,1,1,1
+1006503995,奇幻射击2,238636032,USD,0.99,0,0,0.0,0.0,5.0.7,9+,Games,43,5,1,1
+672151350,LOCARI(ロカリ)-オトナ女子向けライフスタイル情報アプリ,33232896,USD,0.0,0,0,0.0,0.0,4.3.7,17+,Lifestyle,37,0,19,1
+1017236115,クリアした奴マジ天才,33636352,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,5,2,1
+1123499290,暇つぶしに人気  脳トレ パズルゲーム - LINK,103812096,USD,0.0,0,0,0.0,0.0,1.4,4+,Games,40,4,1,1
+940401053,暇なら話そう!誰でも話せて友達も作れる「KoeTomo」,77717504,USD,0.0,0,0,0.0,0.0,3.4.3,17+,Social Networking,37,0,2,1
+1024577327,Goodnight Little Sandman - Bedtime Ritual,555863040,USD,3.99,0,0,0.0,0.0,1.151,4+,Education,38,5,13,1
+950527505,ニュース速報と災害地震速報が届くライフライン NewsDigest(ニュースダイジェスト),96060416,USD,0.0,0,0,0.0,0.0,4.9.2,12+,News,37,5,1,1
+950503358,Theory of evolution,42460160,USD,0.0,0,0,0.0,0.0,1.9,4+,Entertainment,40,3,2,1
+1024850260,striker – dropping balls,64180224,USD,0.0,0,0,0.0,0.0,1.8.3,4+,Games,38,2,5,1
+949817566,出会い無料のチャット掲示板 LINK,26204160,USD,0.0,0,0,0.0,0.0,2.2.0,17+,Social Networking,37,0,2,1
+1123639492,Dinos Jump - Dinosaur action game for kids,60285952,USD,2.99,0,0,0.0,0.0,1.3.10,4+,Games,38,5,1,1
+949184293,"Otaku quizzes from manga, and anime--Slice HEROES!",38242304,USD,0.0,0,0,0.0,0.0,4.1.3,17+,Games,37,0,1,1
+1103099404,日曜劇難99.9,34188288,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,37,0,1,1
+948618479,Women's Health 100 Tage Training ohne Geräte,39852032,USD,0.99,0,0,0.0,0.0,1.2.1,4+,Health & Fitness,38,0,1,1
+948090890,MoonCatcher,8497152,USD,0.99,0,0,0.0,0.0,11.0,4+,Photo & Video,37,0,2,1
+948089675,DropEraser,318803968,USD,0.0,0,0,0.0,0.0,1.4.2,4+,Games,40,5,1,1
+1025396583,ホラースポット-ghost spot-意味が分かると怖いマップ,39891968,USD,0.0,0,0,0.0,0.0,1.16,12+,Navigation,37,4,2,1
+946843913,好车无忧二手车—二手车买卖实体店,20352000,USD,0.0,0,0,0.0,0.0,3.3.4,4+,Lifestyle,38,0,2,1
+945991259,萌店-朋友圈的美味生活,85620736,USD,0.0,0,0,0.0,0.0,4.7.0,4+,Shopping,37,0,2,1
+945628768,デジラアプリ - データ容量のやりくりに,16304128,USD,0.0,0,0,0.0,0.0,29.10.18,12+,Utilities,40,5,2,1
+1026540588,FRESH! - ログイン不要・高画質で生放送が見放題,95488000,USD,0.0,0,0,0.0,0.0,3.0.2,17+,Entertainment,37,3,2,1
+1026689855,融360-贷款、信用卡、信用报告,80800768,USD,0.0,0,0,0.0,0.0,2.7.0,12+,Finance,38,0,1,1
+944693166,MobileData - Mobile data usage with Today Widget,17748992,USD,0.99,0,0,0.0,0.0,1.2.5,4+,Utilities,37,4,2,1
+943753597,舞妓ドリル,18669568,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,38,5,2,1
+943438858,作业通-中小学搜题搜作文必备神器,18336768,USD,0.0,0,0,0.0,0.0,2.1.6,4+,Education,37,5,2,1
+1026719224,青藍高校リア充部,85194752,USD,0.0,0,0,0.0,0.0,2.0.5,12+,Games,38,5,2,1
+1102687865,坂本ですが?秘技…フリータイムキラー,92584960,USD,0.0,0,0,0.0,0.0,1.0.10,4+,Games,40,0,1,1
+1102660950,梦幻轩辕,267673600,USD,0.99,0,0,0.0,0.0,10.99,4+,Games,43,5,1,1
+1124382586,万年历-日历农历黄历天气,109180928,USD,0.0,0,0,0.0,0.0,4.5.3,12+,Utilities,38,4,3,1
+1102659097,妙资理财-探索版(安全稳健高收益理财神器  ),31624192,USD,0.0,0,0,0.0,0.0,3.0.20,4+,Finance,38,0,2,1
+1092938333,豪快ショット連発!爽快卓球ゲーム「サァァァ!」,43154432,USD,0.0,0,0,0.0,0.0,1.0.6,4+,Sports,38,5,2,1
+911654012,Kanazawa Shogi 2,77126656,USD,5.99,0,0,0.0,0.0,1.0.8,4+,Games,37,5,2,1
+1049649831,Puzzle Game for Brain Training!! PITATTO!!,66168832,USD,0.0,0,0,0.0,0.0,1.4.1,4+,Games,37,2,5,1
+1035107039,铁血武林-武侠回合制策略手游,272277504,USD,0.99,0,0,0.0,0.0,14.2,12+,Games,43,5,1,1
+1127261616,Soccer Puzzle for Brain Training -SoccerStrike-,80323584,USD,0.0,0,0,0.0,0.0,1.1.0,4+,Games,37,3,43,1
+1100573190,Jigsaw Puzzle for Brain Training -PITATOY-,92101632,USD,0.0,0,0,0.0,0.0,1.1.0,4+,Games,37,2,5,1
+1033049320,出会い応援チャットアプリLIKE YOU,10225664,USD,0.0,0,0,0.0,0.0,1.9,17+,Social Networking,37,0,1,1
+1033117027,Black Hole -世の中で最も困難な物理げーむ ぱずる-,148458496,USD,0.0,0,0,0.0,0.0,1.4,4+,Games,40,4,1,1
+1127634439,【業界初成長マップ搭載!ねこ育成マト当てパズルRPG】たまねこウォーズ,259817472,USD,0.0,0,0,0.0,0.0,1.0.9,4+,Games,37,5,1,1
+924455599,Fragment's Note Memories -Fragment's Note公式資料集アプリ-,511918080,USD,4.99,0,0,0.0,0.0,1.0.0,17+,Book,40,5,1,1
+1127739608,無料ゲーム HANABI ON LINE 花火(ハナビ)パズル,108262400,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,37,0,1,1
+924443754,DaWanda - The marketplace for unique products,51405824,USD,0.0,0,0,0.0,0.0,2.27,4+,Shopping,37,0,6,1
+1100160696,BiBi娱乐社区 - 好玩的游戏都在这里!,50778112,USD,0.0,0,0,0.0,0.0,3.0,17+,Social Networking,38,0,1,1
+923920872,平安好医生-要健康上平安好医生,120727552,USD,0.0,0,0,0.0,0.0,5.0.0,17+,Medical,38,0,1,1
+1100113170,のび毛,30200832,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,4,2,1
+1100087171,PP基金理财-灵活存取的高收益金融理财平台,29420544,USD,0.0,0,0,0.0,0.0,2.4.0,4+,Finance,38,0,2,1
+1035197114,A high end tuner for all instruments!@Tuner,32099328,USD,2.99,0,0,0.0,0.0,1.3.1,4+,Music,37,0,2,1
+1093383478,2代目 Nソウル みそぽん,21346304,USD,0.0,0,0,0.0,0.0,1.0.5,4+,Games,43,0,2,1
+1099877033,ひとたがやし,56503296,USD,0.0,0,0,0.0,0.0,1.6.3,12+,Games,40,5,1,1
+1099859731,东西战神,352692224,USD,0.0,0,0,0.0,0.0,1.6.0,9+,Games,37,5,1,1
+1128613074,懸賞ソリティア-ギフト券/ギフトコードGETでお小遣いが稼げる定番ソリティアクロンダイク,41567232,USD,0.0,0,0,0.0,0.0,1.0.5,17+,Games,38,4,2,1
+1099710942,ビッグバン チャット-友達作り ひま友チャット,44267520,USD,0.0,0,0,0.0,0.0,1.0,17+,Entertainment,37,0,1,1
+918387844,信用钱包官方版-用手机号就能贷款,32038912,USD,0.0,0,0,0.0,0.0,5.6.0,17+,Finance,37,0,1,1
+1035245749,新大主宰-2016卡牌手游巨作!,323506176,USD,0.0,0,0,0.0,0.0,5.2,12+,Games,40,5,1,1
+1035525494,パチスロ バイオハザード6,2057388032,USD,14.99,0,0,0.0,0.0,1.0.1,12+,Games,40,0,1,0
+905922947,Fragment's Note -After Stories-,569876480,USD,2.99,0,0,0.0,0.0,1.0.2,4+,Games,40,5,1,1
+1130988829,francetv JO – Regarder les Jeux Olympiques de Rio 2016,52232192,USD,0.0,0,0,0.0,0.0,1.1,4+,Sports,37,5,1,1
+1131107453,抢火车票 for 12306火车票官网,46416896,USD,0.0,0,0,0.0,0.0,7.6.0,4+,Travel,37,5,2,1
+890722494,Instant X - Take instant-camera-like photo with double exposure and bulb mode,8614912,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Photo & Video,40,0,1,1
+890354109,MotiConnect Pro,23920640,USD,1.99,0,0,0.0,0.0,1.0.4,4+,Health & Fitness,24,1,3,1
+1127240851,爆笑アプリ!人気無料ゲーム kimazui gacha,95218688,USD,0.0,0,0,0.0,0.0,1.2,12+,Games,37,0,2,1
+925242723,戦国乙女〜剣戟に舞う白き剣聖〜西国参戦編,1338712064,USD,11.99,0,0,0.0,0.0,1.0.0,17+,Games,40,0,2,0
+1127214864,トリセツメーカー2 トリセツ診断,16157696,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Entertainment,37,0,1,1
+1032464015,まぐろ職人(通),27328512,USD,0.0,0,0,0.0,0.0,1.5,4+,Games,38,2,1,1
+912040221,途牛旅游PRO-订机票酒店,查旅行景点门票,159574016,USD,0.99,0,0,0.0,0.0,9.1.4,17+,Travel,37,0,1,1
+1130221994,目の錯覚で性格診断,27525120,USD,0.0,0,0,0.0,0.0,1.0.6,4+,Entertainment,40,0,1,1
+1130264634,僕の彼女が誘拐された。,77212672,USD,0.0,0,0,0.0,0.0,1.3,9+,Games,37,0,1,1
+911719423,"Official QR Code reader ""Q"" - QR app. -",69015552,USD,0.0,0,0,0.0,0.0,1.8.8,17+,Productivity,38,0,12,1
+1036062958,まぐろ投げ!,23475200,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,4,2,1
+1134424705,Love Bank-お金ゲーム/恋愛ゲーム/イケメンゲーム/育成ゲーム/タップゲーム/賭けゲーム,68495360,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,38,0,1,1
+910398892,ピタゴラパブロフ,185879552,USD,0.0,0,0,0.0,0.0,1.1.16,4+,Games,38,5,1,1
+1098508571,ダニエル!!今はフリーキック中よ!,130876416,USD,0.0,0,0,0.0,0.0,1.4,12+,Games,38,0,1,1
+1098487609,女子力たったの5、ゴミずら◇恋愛xイケメン育成+放置げー!無料の育成・恋愛・放置ゲーム~,61911040,USD,0.0,0,0,0.0,0.0,1.0.8,9+,Games,37,5,1,1
+1036094312,大圣捉妖记,120456192,USD,0.0,0,0,0.0,0.0,1.4,12+,Games,38,5,1,1
+1036129117,大头儿子天天乐跑-和孩子一起玩的游戏!,111789056,USD,0.0,0,0,0.0,0.0,1.7.4,12+,Games,37,5,1,1
+1130676836,脱出ゲーム 学校の食堂からの脱出,94801920,USD,0.0,0,0,0.0,0.0,1.1.0,4+,Games,40,0,1,1
+1037799797,渡劫-多武器战斗,692929536,USD,0.99,0,0,0.0,0.0,2.4,9+,Games,40,5,1,1
+906681058,vente-privee,103776256,USD,0.0,0,0,0.0,0.0,2.9.3,12+,Shopping,37,4,6,1
+906388170,StageCameraPro - Manners video and photo,3661824,USD,1.99,0,0,0.0,0.0,2.5.0,4+,Photo & Video,35,0,2,1
+1130830362,SPEED:3D Racing,127711232,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,37,0,0,1
+1130847808,MapFan(マップファン) – 渋滞情報/オービス/オフライン対応の本格カーナビ,117473280,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Navigation,37,5,1,1
+1038313415,Billiards9,296638464,USD,0.0,0,0,0.0,0.0,1.0.5,4+,Games,40,5,2,1
+1130864757,ハニーズアプリ,4732928,USD,0.0,0,0,0.0,0.0,1.5,4+,Shopping,37,0,1,1
+1129107483,如意夺宝,24030208,USD,0.0,0,0,0.0,0.0,3.0.0,17+,Shopping,37,0,2,1
+1035542049,謎解き母からのメモ,21292032,USD,0.0,0,0,0.0,0.0,1.0.18,4+,Book,37,0,1,1
+915700151,Daisy Chain,260082688,USD,0.99,0,0,0.0,0.0,1.3.1,4+,Games,38,5,1,1
+916614208,Creema(クリーマ)- ハンドメイドマーケットプレイス,31853568,USD,0.0,0,0,0.0,0.0,1.6.20,17+,Shopping,38,0,2,1
+1032298135,【実況】今からカレシを葬る #衝撃の実況動画ノベルゲーム,66817024,USD,0.0,0,0,0.0,0.0,1.0.5,17+,Games,37,4,42,1
+926278322,モンスト マルチ掲示板 運極 & ガチャ予報 & 攻略情報 for モンスターストライク,8606720,USD,0.0,0,0,0.0,0.0,4.7.0,4+,Games,37,5,13,1
+1132774393,Light+ AnalogCam,47337472,USD,0.99,0,0,0.0,0.0,1.0,4+,Photo & Video,37,0,31,1
+888721616,La radio des enfants : Trop Fort !,52482048,USD,2.99,0,0,0.0,0.0,1.5,4+,Entertainment,40,2,1,1
+1041903908,400ステージに挑戦!ばあジャンプ,55187456,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,40,3,2,1
+1038379658,Green Game TimeSwapper,263876608,USD,2.99,0,0,0.0,0.0,1.0.0,4+,Games,40,5,1,1
+1038384580,果罐Pro-通知中心快捷安全启动插件,50857984,USD,2.99,0,0,0.0,0.0,3.0.3,17+,Utilities,37,0,6,1
+1131236409,シュッと描いてポンッ!(シュポン)物理パズル脳トレ,37910528,USD,0.0,0,0,0.0,0.0,1.1.0,4+,Games,38,0,1,1
+900837187,"U Compass ( North, South, East and West )",4199424,USD,0.0,0,0,0.0,0.0,2.7,4+,Utilities,40,3,3,1
+899538562,HONNE -本音が言える匿名つぶやき&チャットアプリ,61312000,USD,0.0,0,0,0.0,0.0,3.3.4,17+,Social Networking,37,0,1,1
+1039171609,セブン‐イレブンアプリ,14241792,USD,0.0,0,0,0.0,0.0,1.2.1,17+,Lifestyle,38,0,1,1
+897880328,EOPAN,34338816,USD,0.0,0,0,0.0,0.0,2.2.0,4+,Photo & Video,37,1,2,1
+1131935122,脳トレ爽快パズル 激ムズ!和のひとふで書き Line,36271104,USD,0.0,0,0,0.0,0.0,1.8,4+,Games,38,5,1,1
+897331650,わかる!算数 小学4年【下】 for iPad,63221760,USD,2.99,0,0,0.0,0.0,1.0,4+,Education,26,5,1,1
+897322501,わかる!算数 小学4年【上】 for iPad,53571584,USD,2.99,0,0,0.0,0.0,1.0,4+,Education,26,5,1,1
+896150306,バーチャル高校野球,64545792,USD,0.0,0,0,0.0,0.0,3.1.6,4+,Sports,37,5,1,1
+1039883456,爆速!マルチ募集掲示板 for モンスト,62963712,USD,0.0,0,0,0.0,0.0,4.0.1,4+,Entertainment,37,5,2,1
+895700579,大富豪 Online,187623424,USD,0.0,0,0,0.0,0.0,1.2.299,4+,Games,40,5,1,1
+1097724199,ぱちモンパズル〜簡単無料パズルRPGゲーム,66735104,USD,0.0,0,0,0.0,0.0,1.1.2,9+,Games,38,0,2,1
+1040048258,艶が~るプレミアム 女性向け恋愛ゲーム!乙女げーむ,21210112,USD,0.0,0,0,0.0,0.0,1.7.3,17+,Games,37,0,1,1
+1132440751,Wi-Fiミレル,30086144,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Utilities,37,3,1,0
+1132443199,超特訓!トミックゲーム!!,248943616,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,37,5,1,1
+1132450366,SAMURAI SCHEMA -幕末維新戦記- サムライスキーマ 本格派育成放置ゲーム,177617920,USD,0.0,0,0,0.0,0.0,1.4.2,12+,Games,38,4,1,1
+894225691,花火撮影 notepad Lite,73746432,USD,0.0,0,0,0.0,0.0,2.4.7,4+,Photo & Video,38,0,1,1
+1097492828,NOW直播—腾讯旗下全民直播平台,113596416,USD,0.0,0,0,0.0,0.0,1.11.1,17+,Social Networking,37,0,1,1
+893918621,ATOK -日本語入力キーボード,87218176,USD,12.99,0,0,0.0,0.0,1.5.3,4+,Utilities,37,5,1,1
+1040105227,全国一斉性格テストDX,18067456,USD,0.0,0,0,0.0,0.0,1.6,17+,Entertainment,40,0,1,1
+1040366566,盗墓之王-寻龙秘事,208276480,USD,0.0,0,0,0.0,0.0,1.0.29,12+,Games,37,5,2,1
+1040417757,Bibi & Tina: Pferdeabenteuer,622986240,USD,2.99,0,0,0.0,0.0,1.2.1,4+,Games,38,5,1,1
+1097148221,S ou SS,4824064,USD,2.99,0,0,0.0,0.0,1.0.0,4+,Education,38,5,1,1
+967870967,Cyber Reversi,52166656,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,40,5,4,1
+904940613,ニート勇者3 -闇の側の者たち- 無料ロールプレイングゲームRPG,43892736,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,40,5,1,1
+1131135416,もこうもこもこ,105058304,USD,0.0,0,0,0.0,0.0,1.0.3,9+,Games,38,0,1,1
+886564208,美柚经期助手(专业版)-月经·生理期预测,还能备孕育儿,108589056,USD,0.99,0,0,0.0,0.0,5.6.2,17+,Health & Fitness,38,0,2,1
+1040713617,愛しのショコラティエ いけめん恋愛ゲーム・乙女げーむ女性向け人気,170562560,USD,0.0,0,0,0.0,0.0,2.12.1,17+,Games,37,0,1,1
+1042195779,斗斗大冒险之我爱斗斗堂-官方正版4v4竞技抛物线手游,239757312,USD,0.0,0,0,0.0,0.0,3.0.4,12+,Games,37,0,1,1
+886059850,Love Msg,9677824,USD,0.99,0,0,0.0,0.0,2.8,4+,Social Networking,37,0,3,1
+1133084307,"Free Gameplay Video, Walkthroughs, News for Pokémon GO",12994560,USD,0.0,0,0,0.0,0.0,1.1,17+,Games,38,3,2,1
+1133092959,式姫4コマ 其之四,54715392,USD,0.99,0,0,0.0,0.0,1.0,9+,Book,38,0,1,1
+883882340,テレビ視聴,42018816,USD,0.0,0,0,0.0,0.0,2.4.8,4+,Entertainment,38,2,1,1
+883539642,! OH Fantastic Free Kick + Kick Wall Challenge,162557952,USD,0.0,0,0,0.0,0.0,4.0,4+,Games,40,5,2,1
+1096756212,もじさがし,23536640,USD,0.0,0,0,0.0,0.0,1.2.6,4+,Games,37,4,10,1
+1096464625,彩库宝典-【官方版】,57025536,USD,0.0,0,0,0.0,0.0,1.2.0,17+,Reference,38,5,2,1
+1096454131,口袋电玩-经典街机游戏真人秀版•玩转全民疯狂欢乐火拼炸诈扎金花送斗牛牛麻将VIP,45176832,USD,0.0,0,0,0.0,0.0,1.2,12+,Games,43,5,1,1
+1042978679,Tiny Bone,113205248,USD,0.0,0,0,0.0,0.0,1.5.4,9+,Games,40,5,9,1
+1043390344,币优铺,24213504,USD,0.0,0,0,0.0,0.0,1.7.5,4+,Finance,38,0,2,1
+879908394,Starry sky Camera,10113024,USD,1.99,0,0,0.0,0.0,3.2,4+,Photo & Video,37,2,2,1
+1043450394,BrainTraining!!GASHAAAAAAN!!,132264960,USD,0.0,0,0,0.0,0.0,1.9.2,4+,Games,38,2,1,1
+1096047800,任务客,28395520,USD,0.0,0,0,0.0,0.0,1.2.0,17+,Entertainment,40,0,2,1
+874525259,LabQuest Viewer,17610752,USD,4.99,0,0,0.0,0.0,2.0.1,4+,Education,24,5,1,1
+873474116,e袋洗-新用户领20元优惠券,20分钟上门取送,58715136,USD,0.0,0,0,0.0,0.0,5.4.2,17+,Lifestyle,38,0,2,1
+1133919651,脱出ゲーム 気まぐれカフェの謎解きタイム,146377728,USD,0.0,0,0,0.0,0.0,1.0.2,12+,Games,38,5,1,1
+1095884379,ぷかぷか,16136192,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1044534100,Colored Dots -  by Ukids,231426048,USD,0.99,0,0,0.0,0.0,1.4.3,4+,Education,37,5,2,1
+872461032,最後の英単語学習!マジタン,80379904,USD,0.99,0,0,0.0,0.0,3.0.0,4+,Education,38,0,1,1
+872438427,星になったカイロくん,186052608,USD,4.99,0,0,0.0,0.0,2.01,4+,Games,38,5,1,1
+1134424698,Love Bank -お金ゲーム/恋愛ゲーム/美少女ゲーム/育成ゲーム/タップゲーム/賭けゲーム,70739968,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,38,0,1,1
+1096964165,【完全無料】ソク出会える!ひみつフレ探し掲示板,13287424,USD,0.0,0,0,0.0,0.0,1.0,17+,Social Networking,37,0,1,1
+1040811649,闪瘦-健康减肥瘦身,52037632,USD,0.0,0,0,0.0,0.0,3.6,17+,Health & Fitness,37,0,2,1
+1131134490,SKK アクション ブロック崩し,98817024,USD,0.0,0,0,0.0,0.0,1.0,17+,Games,40,4,1,1
+912177018,StageCameraHD,7755776,USD,0.0,0,0,0.0,0.0,2.7.1,4+,Photo & Video,35,0,2,1
+1129778673,Bangers Unlimited 2,242437120,USD,3.99,0,0,0.0,0.0,1.0,4+,Games,40,5,1,1
+912606824,Ticket Camp - フリマよりも安心で簡単なチケットアプリ,65034240,USD,0.0,0,0,0.0,0.0,6.2.6,4+,Shopping,37,5,1,1
+1095219324,无双小师妹-登录送橙将,681596928,USD,0.0,0,0,0.0,0.0,1.0.14,12+,Games,40,5,1,1
+1047042828,Eat Game,58732544,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,37,3,2,1
+1094580863,冒険ディグディグ(ドット絵x放置x冒険RPG),58178560,USD,0.0,0,0,0.0,0.0,1.1.7,9+,Games,40,5,1,1
+1094578154,成金電鉄-超ハマる放置系ゲーム,472088576,USD,0.0,0,0,0.0,0.0,12.04,9+,Games,37,4,1,1
+1047605171,歌手発掘 動画投稿アプリ  カラオケ!sing!  App Star,41767936,USD,0.0,0,0,0.0,0.0,1.8.1,17+,Entertainment,37,0,2,1
+847177468,世界邦行程大师-出国自由行定制专家,83551232,USD,0.0,0,0,0.0,0.0,3.7.6,4+,Travel,37,0,1,1
+841386224,妙健康-健康自测管家,156249088,USD,0.0,0,0,0.0,0.0,4.2.1,17+,Health & Fitness,37,0,1,1
+830201595,大空ヘクタール農園,109408256,USD,4.99,0,0,0.0,0.0,2.0.0,4+,Games,38,5,1,1
+829581836,Theory Test 4-in-1 Bundle - Driving Test Success,1046276096,USD,4.99,0,0,0.0,0.0,2.0.4,4+,Reference,38,5,1,1
+1135791322,Particular,260301824,USD,0.0,0,0,0.0,0.0,1.2.2,4+,Games,40,5,1,1
+1094177277,Kungfu Street-Ultimate Fight,25918464,USD,0.0,0,0,0.0,0.0,3,12+,Games,43,5,1,1
+1047808261,FUNDO[ファンドゥ]- 話題のネタを毎日更新!無料ニュースメディア,17283072,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Entertainment,37,0,1,1
+820004378,JR東日本アプリ,25631744,USD,0.0,0,0,0.0,0.0,2.10.0,12+,Navigation,37,0,1,1
+789605324,Beautiful Japanese Handwriting for iPhone,23057408,USD,0.0,0,0,0.0,0.0,3.0.5,4+,Education,37,0,1,1
+787130974,咪咕视频-电视剧综艺直播,43587584,USD,0.0,0,0,0.0,0.0,4.0.0,17+,Lifestyle,38,0,3,1
+1100620736,多融理财(Pro版)-12%高收益理财投资平台,28964864,USD,0.0,0,0,0.0,0.0,1.6.9,17+,Finance,37,0,1,1
+1091186897,Horror Story 2016 こわい話,29597696,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Book,37,0,1,1
+739787904,美男美女診断,14309376,USD,0.0,0,0,0.0,0.0,2.0.3,4+,Entertainment,37,0,1,1
+735127946,GhostCallDX,80192512,USD,0.0,0,0,0.0,0.0,1.0.23,4+,Education,37,5,2,1
+1052661250,青藍高校ヒモ部,57190400,USD,0.0,0,0,0.0,0.0,1.0.6,12+,Games,38,5,2,1
+1091891746,陌爱神器-不闲聊!陌生人快速约见面平台,44841984,USD,0.0,0,0,0.0,0.0,1.9.0,17+,Social Networking,38,5,1,1
+1140484774,Infinity Duels,68217856,USD,0.99,0,0,0.0,0.0,2.7,12+,Games,40,5,3,1
+1052982491,激ムズ!和のひとふで書き!online,59080704,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,5,1,1
+726115780,それゆけ!ヤンキッキー,56548352,USD,0.0,0,0,0.0,0.0,3.1,4+,Games,37,0,2,1
+1091487691,陌爱-最in全民交友神器!同城寂陌陌生帅哥美女视频聊天约会平台,30503936,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Lifestyle,38,0,8,1
+1052998653,开心扫雷-根本停不下来的创新玩法,98381824,USD,0.99,0,0,0.0,0.0,1.1.1,9+,Games,38,5,1,1
+1095103225,高清影视-大片免费天天看,18254848,USD,0.0,0,0,0.0,0.0,1.0.2,17+,Utilities,38,0,2,1
+1046448102,そら案内,104295424,USD,0.0,0,0,0.0,0.0,6.1.2,4+,Weather,37,5,1,1
+720111744,ダイエット女子が痩せた魔法のアプリ-食事・運動・美容@DIET,17347584,USD,0.0,0,0,0.0,0.0,1.14,4+,Health & Fitness,40,0,1,1
+855062660,ikouhoushi,58945536,USD,0.0,0,0,0.0,0.0,3.1.83,17+,Book,37,1,3,1
+1050062943,ゴミカレ!!,82789376,USD,0.0,0,0,0.0,0.0,1.1,12+,Games,38,5,1,1
+1093334825,輪ゴムでシュート! - 無料で遊べるミニゲーム,301379584,USD,0.0,0,0,0.0,0.0,1.1.2,9+,Games,38,5,1,1
+1051195210,Xyngular Back Office,13839360,USD,1.99,0,0,0.0,0.0,2.1,4+,Business,38,0,0,1
+1093056214,レアジョブ瞬間中学英単語 | リスニングやTOEICの基礎学力にも,90980352,USD,0.0,0,0,0.0,0.0,1.0.7,4+,Education,37,4,31,1
+1137503629,電車パズル ツメツメ - 通勤時間にピッタリ! 脳トレパズル,48162816,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,38,5,1,1
+1137591249,Cannon Flight,547368960,USD,0.99,0,0,0.0,0.0,1.1.0,4+,Games,37,2,1,1
+1093055888,カテエネ×Shufoo!,6210560,USD,0.0,0,0,0.0,0.0,1.0.6,17+,Lifestyle,38,5,1,1
+793772904,Smart Channel -New Style of News Reader-,26721280,USD,0.0,0,0,0.0,0.0,2.4,17+,News,38,0,1,1
+1093055087,妖怪别跑,205922304,USD,0.99,0,0,0.0,0.0,1.0.0,9+,Games,43,5,1,1
+792694774,UK Snow Radar,23069696,USD,1.99,0,0,0.0,0.0,1.5,4+,Weather,37,5,1,1
+1048849149,ゴールできたら神!!2,13606912,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,5,2,1
+809657936,Fragment's Note2 Side:雪月,1169608704,USD,2.99,0,0,0.0,0.0,1.0.3,4+,Games,43,4,1,1
+1048018108,艺龙旅行Pro-酒店预订专家,142626816,USD,0.99,0,0,0.0,0.0,9.28.0,17+,Travel,37,0,1,1
+1047844240,魔女の泉,242224128,USD,2.99,0,0,0.0,0.0,1.33,9+,Games,40,5,1,1
+1095604849,スカッと!脳トレ!ピッといん〜頭がよくなるブロックパズルゲーム〜,34933760,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,38,4,1,1
+1095603248,秒速,13033472,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1095584799,大学生のための時間割,30629888,USD,0.0,0,0,0.0,0.0,1.6,4+,Education,37,0,1,1
+862880884,パチスロ モンスターハンター 月下雷鳴,1997754368,USD,14.99,0,0,0.0,0.0,1.0.2,12+,Games,43,0,1,0
+862469459,オービス警報 - オービス/速度取締り&渋滞,40777728,USD,2.99,0,0,0.0,0.0,1.8.6,4+,Navigation,37,4,2,1
+1095583219,【完全無料】おとな専用!出会い掲示板,3217408,USD,0.0,0,0,0.0,0.0,1.0.2,17+,Social Networking,37,0,0,1
+1045352003,RadiTube - great radio player for am/fm radios,30137344,USD,0.0,0,0,0.0,0.0,2.3,12+,Entertainment,37,3,1,1
+1045850132,モンスターマスターX【オンライン対戦型RPG(ロールプレイング・ゲーム)】,74280960,USD,0.0,0,0,0.0,0.0,2.0.15,9+,Games,40,5,1,1
+858919777,Super Knock and Run,42919936,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,40,5,2,1
+858352213,Set up the airplane parts! - Work Experience-Based Brain Training App,126217216,USD,1.99,0,0,0.0,0.0,1.1.1,4+,Education,40,5,2,1
+1135328912,Pokelog for PokemonGO,42014720,USD,0.0,0,0,0.0,0.0,3.0.0,9+,Games,37,0,2,1
+721623681,G1牧場ステークス,189901824,USD,4.99,0,0,0.0,0.0,2.02,4+,Games,38,5,1,1
+719858778,minimo(ミニモ)/サロン予約,23707648,USD,0.0,0,0,0.0,0.0,6.2.5,17+,Catalogs,37,0,1,1
+1129722364,スーパーストリートファイターIV パチスロエディション,2002585600,USD,14.99,0,0,0.0,0.0,1.0.0,12+,Games,40,0,1,0
+1092374597,"real happy majiang-all stars majiang,mahjong",74841088,USD,0.0,0,0,0.0,0.0,3.735,12+,Games,43,4,1,1
+1139086261,PIXUSかんたん年賀状,34751488,USD,0.0,0,0,0.0,0.0,1.0.7,4+,Lifestyle,37,0,2,1
+1139097560,BLEACH 公式連載アプリ〜BLEACHの漫画が毎週1巻読めるアプリ〜,36003840,USD,0.0,0,0,0.0,0.0,1.1.3,4+,Book,38,3,1,1
+1139103442,謎解き[緋色探偵社と100の推理]メッセージアプリ風ノベルゲーム,26896384,USD,0.0,0,0,0.0,0.0,1.3.1,9+,Book,37,0,1,1
+1139146156,【謎解き推理】意味が分かると怖い話-この怖い話を謎解き、怪談を読み解けるか…,35741696,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Book,37,0,1,1
+1052024839,フラッシュワード〜光速瞬間記憶脳トレクイズ〜,39766016,USD,0.0,0,0,0.0,0.0,1.0.0,12+,Games,38,0,1,1
+1052087662,Baby Learns Transportation,152170496,USD,0.0,0,0,0.0,0.0,9.11.1000,4+,Education,38,5,12,1
+768620766,合戦!!にんじゃ村,186089472,USD,4.99,0,0,0.0,0.0,2.00,4+,Games,38,5,1,1
+1052109508,Fiete Math - for 1st grade and preschool,315251712,USD,0.99,0,0,0.0,0.0,1.1.4,4+,Education,40,5,1,1
+1139663852,プログレッシブ ロシア語辞典,141969408,USD,23.99,0,0,0.0,0.0,1.1,4+,Reference,37,5,2,1
+1139670134,[GP]SLOT魔法少女まどかマギカ(パチスロゲーム),2808324096,USD,0.0,0,0,0.0,0.0,1.0.0,12+,Games,38,0,1,0
+1052113323,にゃんちゅう,80548864,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,38,2,2,1
+762124422,スナイパイ72,815697920,USD,0.99,0,0,0.0,0.0,1.0.1,12+,Games,43,5,1,1
+761980429,戦国乙女〜剣戟に舞う白き剣聖〜,1406185472,USD,14.99,0,0,0.0,0.0,1.0.4,17+,Games,43,0,2,0
+1113359219,RAMP-光を灯す孤独な物語- #無料アクションゲーム,264383488,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Games,37,4,1,1
+1140028033,[GP]ハナハナホウオウ-30(パチスロゲーム),62540800,USD,0.0,0,0,0.0,0.0,1.0.2,12+,Games,40,0,1,0
+1052554029,広告ブロッカー(ウェブ画面上の広告をブロックする最強アプリ),43807744,USD,0.99,0,0,0.0,0.0,1.1.2,4+,Utilities,25,5,1,1
+1052650787,T Air for DVD,14854144,USD,24.99,0,0,0.0,0.0,1.1.7,4+,Utilities,37,3,2,1
+1044923803,下ヨシ子の「2016年 あなたの流生命」,7760896,USD,0.0,0,0,0.0,0.0,1.1,17+,Lifestyle,38,0,1,1
+1095645600,You勇者 -HIKAKINとSEIKIN(ヒカキンとセイキン)と無料ロールプレイング,45509632,USD,0.0,0,0,0.0,0.0,1.0.7,4+,Games,40,5,1,1
+869757898,ViRATES[バイレーツ]-面白ネタまとめの決定版!,5863424,USD,0.0,0,0,0.0,0.0,1.2.0,17+,News,25,0,1,1
+1035663068,Inversions,23249920,USD,2.99,0,0,0.0,0.0,1.2,4+,Education,38,4,1,1
+914564861,Méditations avec Christophe André,117628928,USD,4.99,0,0,0.0,0.0,2.0,4+,Health & Fitness,37,5,1,1
+1129648611,逆战仙魔 大圣萌仙全民跨服千人即时PK,146436096,USD,0.99,0,0,0.0,0.0,1.0.2,4+,Games,40,5,1,1
+1129671707,airweave sleep analysis,29999104,USD,0.0,0,0,0.0,0.0,1.3.7,12+,Health & Fitness,37,0,2,1
+1099021080,魔灵觉醒(王者归来)- 3D新职业魔剑士降临,362543104,USD,0.0,0,0,0.0,0.0,5.2.0,9+,Games,38,5,1,1
+1092371543,Puzzle Game for Brain Training -KITINTO-,108787712,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Games,37,2,5,1
+1092447708,Mr.Luma's Super Flight,60838912,USD,0.99,0,0,0.0,0.0,1.0,4+,Education,40,5,1,1
+1091192778,Test your color IQ!カラーIQ診断テスト,16444416,USD,0.0,0,0,0.0,0.0,1.0.2,17+,Entertainment,37,0,1,1
+1092463029,お解きなさい!,9191424,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Book,40,0,1,1
+1091126272,スマイルパーク 〜らくらく放置系遊園地ゲーム〜,100164608,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,38,5,2,1
+1051411202,Pictalive for Live Photos - Create from videos,26969088,USD,0.0,0,0,0.0,0.0,1.2,4+,Photo & Video,37,0,2,1
+1053800699,Baby Panda's Bath Time,121712640,USD,0.0,0,0,0.0,0.0,9.11.1000,4+,Education,38,5,12,1
+1141253112,戦国乙女2~深淵に輝く気高き将星~,3968637952,USD,7.99,0,0,0.0,0.0,1.0.3,12+,Games,38,0,1,0
+1053807892,Tapping Monsters,469181440,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,5,1,1
+685214412,筆姫 - オシャレなグリーティングカード SNS投稿 自宅印刷もOK,101036032,USD,0.0,0,0,0.0,0.0,7.3.0,4+,Lifestyle,37,5,2,1
+1054256307,恋愛タップコミュニケーションゲーム 週刊マイメイド,262242304,USD,0.0,0,0,0.0,0.0,1.0.2,17+,Games,38,0,1,1
+674590967,東京時層地図 for iPad,1995877376,USD,20.99,0,0,0.0,0.0,1.1.0,4+,Navigation,24,5,2,1
+674474596,ゲッターズ飯田の占い,34455552,USD,0.0,0,0,0.0,0.0,2.2.1,12+,Entertainment,38,0,2,1
+1090842524,X:15秒の人気 アクション ゲーム,131354624,USD,0.0,0,0,0.0,0.0,1.2.6,4+,Games,40,4,1,1
+1054297141,誰にもバレない![秘密のアルバム] 無料で写真をロック!,17935360,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Photo & Video,37,0,8,1
+673672983,Fragment's Note2 Side:雫,896147456,USD,2.99,0,0,0.0,0.0,1.05,4+,Games,43,4,1,1
+1141792757,まるみえ!性教育ふしぎ発見-クイズで学ぶ保健体育,41731072,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Education,37,0,2,1
+1141834022,頭の回転をはやくする!脳トレ!Blackhole,53537792,USD,0.0,0,0,0.0,0.0,1.2,4+,Games,38,4,1,1
+673041243,心霊たんち機 Plus,1978368,USD,0.0,0,0,0.0,0.0,1.1.0,9+,Entertainment,40,0,2,1
+1091961831,心がラクになる後ろ向き名言100選,93907968,USD,0.0,0,0,0.0,0.0,1.0.10,12+,Book,37,0,1,1
+753237901,スタバで呪文,43293696,USD,0.0,0,0,0.0,0.0,2.8,4+,Food & Drink,37,5,1,1
+1140087281,意味が分かると怖い話-この意味怖を謎解きできるか…【謎解き意味怖】,46019584,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Book,37,0,1,1
+1140080851,シカクイズ -暇つぶしマンガアニメ映画クイズ-暇つぶしに最適,38784000,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,37,0,2,1
+785267899,赤ペン 提出カメラ,22713344,USD,0.0,0,0,0.0,0.0,3.2,4+,Education,36,5,1,1
+784279176,Beautiful Japanese Handwriting,37053440,USD,0.0,0,0,0.0,0.0,3.0.6,17+,Education,24,5,1,1
+1051910636,What's that sound? - Educational game for children,110689280,USD,0.99,0,0,0.0,0.0,1.21,4+,Games,37,3,4,1
+1138204375,極寒スライダー,86067200,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,4,1,1
+777630969,FilmStory Pro - For All Your Video Editing Needs,80793600,USD,3.99,0,0,0.0,0.0,2.5,4+,Photo & Video,37,2,5,1
+775873865,Beast Poker,108818432,USD,0.0,0,0,0.0,0.0,5.6.15,12+,Games,40,0,28,1
+1120021683,【脱出ゲーム】絶対に最後までプレイしないで 〜謎解き&ブロックパズル〜,77551616,USD,0.0,0,0,0.0,0.0,1.3,12+,Games,38,0,1,1
+1180939298,クリスマスミッケ/脱出ゲーム感覚の絵探しパズルゲーム,34472960,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,0,1,1
+967912296,激ムズ!和のひとふで書き! 〜頭をつかう脳トレパズルゲーム〜,95245312,USD,0.0,0,0,0.0,0.0,3.3,4+,Games,38,5,1,1
+590190880,ゲオ クーポンが貰える!ゲーム予約もできる!,34163712,USD,0.0,0,0,0.0,0.0,10.12.0,17+,Entertainment,40,0,1,1
+653384976,飞凡--智慧新生活,143166464,USD,0.0,0,0,0.0,0.0,4.18.0,17+,Lifestyle,37,0,1,1
+1076211312,PROF - 共通点で楽しむSNS,119186432,USD,0.0,0,0,0.0,0.0,5.1,17+,Photo & Video,37,5,0,1
+1055596969,觉醒吧数码兽-被选召的孩子  超人气动漫  回合制卡牌策略养成,167052288,USD,0.0,0,0,0.0,0.0,1.0.15,12+,Games,38,5,1,1
+1142754013,Auto IV Calc for PokemonGO,120930304,USD,0.0,0,0,0.0,0.0,1.7.5,9+,Games,37,0,2,1
+1089462231,小学館 オックスフォード 英語コロケーション辞典,72013824,USD,22.99,0,0,0.0,0.0,1.1,4+,Reference,37,5,2,1
+1184711626,Human Juggling Cup,184324096,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,4,1,1
+1074568873,スーパーブラックジャック2,2912787456,USD,14.99,0,0,0.0,0.0,1.0.10,17+,Games,40,1,1,1
+616589689,海鮮!!すし街道,108208128,USD,4.99,0,0,0.0,0.0,1.1.1,4+,Games,38,5,1,1
+587248280,丸亀製麺,15577088,USD,0.0,0,0,0.0,0.0,3.0.7,4+,Food & Drink,38,0,2,1
+1181724803,CRスーパー海物語IN沖縄4,3503480832,USD,9.99,0,0,0.0,0.0,1.0.2,12+,Games,40,0,1,0
+1087728027,热血超人-二次元卡牌游戏,732598272,USD,0.0,0,0,0.0,0.0,1.0.212,9+,Games,40,5,1,1
+1087702752,脱出ゲーム 海底神殿からの脱出,155508736,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,5,1,1
+1073863728,你我贷理财-P2P理财管家,45746176,USD,0.0,0,0,0.0,0.0,5.2.0,17+,Finance,38,4,0,1
+1105930005,Pan Book 6: The Alliance of Tribes,770255872,USD,5.99,0,0,0.0,0.0,1.3.1,4+,Book,37,5,1,1
+1146713881,パチスロ ガールズ&パンツァー,3975609344,USD,9.99,0,0,0.0,0.0,1.0.2,12+,Games,38,0,1,0
+1146788003,全民打金币——爽快的正版放置手游,83985408,USD,0.0,0,0,0.0,0.0,1.6,12+,Games,40,5,1,1
+1146792601,森林舞会-3d画面刺激的娱乐城游戏,87440384,USD,0.0,0,0,0.0,0.0,1.0,17+,Games,38,0,2,1
+1073862417,你我贷理财-基金理财工具,45742080,USD,0.0,0,0,0.0,0.0,5.2.0,17+,Finance,38,4,0,1
+1087698005,謎トレ 謎解き脳トレーニング,6176768,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Book,40,0,1,1
+1073830651,钱妈妈理财-国企投资有保障的金融理财产品!,21905408,USD,0.0,0,0,0.0,0.0,1.4.6,4+,Finance,38,0,2,1
+350480010,eBook: War and Peace,8039424,USD,3.99,0,0,0.0,0.0,7.1,9+,Book,37,5,1,1
+1145262669,大人がハマる脳トレ!ぷるるん~頭が良くなる一筆書きパズル~,104089600,USD,0.0,0,0,0.0,0.0,1.1.5,4+,Games,37,0,1,1
+585561686,QRコードリーダー for iPhone,4803584,USD,0.0,0,0,0.0,0.0,3.1,4+,Productivity,37,3,2,1
+585478571,肌年齢診断,2134631,USD,0.0,0,0,0.0,0.0,1.0,4+,Entertainment,43,0,2,1
+1059271164,www,14366720,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,4,2,1
+1073828708,自らデッドボール,16487424,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,38,5,2,1
+1089516052,洋葱圈—正经人的不正经聊天工具,101316608,USD,0.0,0,0,0.0,0.0,2.7.1,12+,Social Networking,37,5,1,1
+1187128255,飞刀传奇-动作武侠热血江湖即时PK传奇(登录爆金装),537462784,USD,0.99,0,0,0.0,0.0,2.1.0,9+,Games,38,5,1,1
+1142443107,パチスロ デビル メイ クライ クロス,3148132352,USD,11.99,0,0,0.0,0.0,1.0.0,12+,Games,40,0,1,0
+658785238,ガールズちゃんねる - 女子のニュースとガールズトーク,61737984,USD,0.0,0,0,0.0,0.0,2.4.6,17+,News,37,0,2,1
+622559167,英熟語ターゲット1000(4訂版),70040576,USD,4.99,0,0,0.0,0.0,2.7.1,4+,Education,37,5,2,1
+621167809,【マイナビバイト大学生版】大学生のバイト探し・アルバイト求人,40026112,USD,0.0,0,0,0.0,0.0,1.2.7,4+,Lifestyle,38,0,1,1
+1088589710,Pupoji - Cute Dog Emoji Keyboard Puppy Face Emojis,61040640,USD,0.99,0,0,0.0,0.0,1.3,4+,Entertainment,37,5,1,1
+1056042016,兜町アナリストがお伝えする「兜予報」(無料),23694336,USD,0.0,0,0,0.0,0.0,2.5.1,17+,Finance,37,4,1,1
+1088568893,Masks - MSQRD Edition,13214720,USD,0.99,0,0,0.0,0.0,1.0.1,9+,Photo & Video,37,0,1,1
+1088496590,Clash Playbook: Plan Attacks for Clash of Clans,50597888,USD,0.99,0,0,0.0,0.0,1.1.0,4+,Utilities,37,5,3,1
+1089372833,ドリブルの達人,20414464,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,4,2,1
+1185731859,剑客情缘-高爆率高掉落天天疯玩,171944960,USD,0.0,0,0,0.0,0.0,1.0,9+,Games,40,5,0,1
+1059320420,【放置】勇者改名 ~「ふざけた名前つけやがって!」,43484160,USD,0.0,0,0,0.0,0.0,1.0.9,9+,Games,38,5,2,1
+1089849623,現金製造ロボ -毎日コツコツ3万円稼ぐ-,29755392,USD,0.0,0,0,0.0,0.0,1.0.4,17+,Finance,37,3,1,1
+1090636013,出会い系無料で遊べるsnsアプリ内緒チャットトーク,14261248,USD,0.0,0,0,0.0,0.0,1.0,17+,Social Networking,40,0,1,1
+1054651434,鬼吹灯昆仑神宫 - 年兽袭来,45747200,USD,0.0,0,0,0.0,0.0,1.30,12+,Games,40,5,2,1
+1054867839,スッキリ謎解きゲーム!!,8943616,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Book,40,0,1,1
+1075817264,えほう - 最強の恵方コンパス,27655168,USD,0.0,0,0,0.0,0.0,2.0,4+,Navigation,37,2,1,1
+1075767316,Clash of Richers 3 (城市富翁3),390078464,USD,0.0,0,0,0.0,0.0,1.1.5,9+,Games,37,5,3,1
+1075705502,借金勇者~そして完済へ…,43498496,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,3,2,1
+1054933075,Poker - Texas Holdem HD Poker,43940864,USD,0.0,0,0,0.0,0.0,3.0,12+,Games,40,4,1,1
+665795633,Fluege.de - Finde den billigsten Flug,185886720,USD,0.0,0,0,0.0,0.0,2.6,4+,Travel,37,3,1,1
+1090267690,BLOCK(ブロック) -ぼくの箱庭【3D】-,210988032,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,5,1,1
+1090258212,NumberQ,71362560,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,37,5,2,1
+1075680307,素飛び,20433920,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1075068419,"BlurEffect-Blur Photo & Video, Hide Face",43022336,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Photo & Video,37,5,14,1
+1185777521,问仙奇遇-新玩法新套装嗨到爆,208026624,USD,0.99,0,0,0.0,0.0,1.0,9+,Games,38,5,1,1
+1089810837,心の美男美女診断,15053824,USD,0.0,0,0,0.0,0.0,1.0.2,17+,Entertainment,37,0,1,1
+660617252,動画英文法2700,42519552,USD,9.99,0,0,0.0,0.0,2.1.2,4+,Education,37,5,1,1
+1087344255,TAP BRAIN - 1日5分の計算で頭が良くなるゲーム,44122112,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Games,40,0,1,1
+581838289,地元の掲示板「ジモティー」地元でカンタン!フリマよりもお得!,108883968,USD,0.0,0,0,0.0,0.0,3.0.0,4+,Shopping,37,0,1,1
+1147667378,Digiposte +,106643456,USD,0.0,0,0,0.0,0.0,1.4,4+,Productivity,37,5,2,1
+595246296,BringGo Western Europe,135656448,USD,0.99,0,0,0.0,0.0,2.5.5,4+,Navigation,37,0,1,1
+1058304462,モンスト覇者の塔マルチ掲示板 for モンスターストライク,18616320,USD,0.0,0,0,0.0,0.0,1.3,17+,Games,37,0,31,1
+519131315,ケンタッキーフライドチキン 公式アプリ,50291712,USD,0.0,0,0,0.0,0.0,12.0.11,17+,Food & Drink,37,0,1,1
+1064016216,MangaTiara - love comic reader,81198080,USD,0.0,0,0,0.0,0.0,3.4.2,17+,Book,37,0,1,1
+1085435111,君にはクリアできませんよ,6600704,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,4,2,1
+1166063194,おわかりいただけただろうか心霊写真で最恐ホラー体験,67638272,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Entertainment,40,0,1,1
+1080563307,こっち見んなwww,15789056,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1080558477,ねこあわせ。,19578880,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1164956679,BRICEMOJI Brice de Nice,72006656,USD,0.99,0,0,0.0,0.0,1.0.2,4+,Entertainment,37,0,1,1
+1080544164,烈焰王座-称霸魔法帝国的策略游戏,74121216,USD,0.0,0,0,0.0,0.0,2.9,9+,Games,38,5,2,1
+1165326780,激突!!10円玉ドッカンバトル -最強AIに勝てる?-,26492928,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,37,0,1,1
+1165352759,脱出ゲーム 学校の七不思議 -恐怖からの脱出-,185636864,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Games,37,5,1,1
+432455516,Round1 お得なクーポン毎週配信!,5999616,USD,0.0,0,0,0.0,0.0,3.9,17+,Sports,40,5,2,1
+1078214852,金钱谷软件-活期手机金融投资理财平台!,19781632,USD,0.0,0,0,0.0,0.0,1.1.4,4+,Finance,38,0,2,1
+432278816,プチ・ロワイヤル仏和辞典(第4版)・和仏辞典(第3版),205664256,USD,47.99,0,0,0.0,0.0,2.4,9+,Reference,37,5,2,1
+1068875169,Escape Game  Escape from Lost Memory,185708544,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,5,1,1
+1071045817,出会い秘密チャット - 相席 出会い系チャット,12906496,USD,0.0,0,0,0.0,0.0,1.1.1,17+,Social Networking,37,0,1,1
+1166165827,The Rocky Horror Picture Show Emojis,55424000,USD,1.99,0,0,0.0,0.0,1.0.3,17+,Entertainment,37,4,1,1
+1168399577,Sonia Tlev,50384896,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Health & Fitness,37,0,6,1
+1068885474,CROSS -よけてすすむ爽快アクション-,32785408,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,37,0,1,1
+1166398861,秘密の関係はじめました メッセージ風恋愛ゲーム,114686976,USD,0.0,0,0,0.0,0.0,1.0.9,9+,Games,37,3,4,1
+1069217368,HOLE.,86029312,USD,0.0,0,0,0.0,0.0,2.0.0,9+,Games,37,1,1,1
+1174307280,Ocean Overlord - Global War,296336384,USD,0.0,0,0,0.0,0.0,2.0.10,12+,Games,40,5,12,1
+1080340345,Qu'est-ce que je sais vraiment ?,17957888,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Entertainment,37,5,1,1
+422845617,OneCam,4324352,USD,1.99,0,0,0.0,0.0,5.7.0,4+,Photo & Video,37,0,2,1
+1174286908,死亡フラグがたちました!!【ノベルゲーム型あるある謎解きアドベンチャー】,45266944,USD,0.0,0,0,0.0,0.0,1.0.1,9+,Book,37,0,1,1
+1058289313,零钱夺宝pro-新手99元红包助你1元购,34132992,USD,0.0,0,0,0.0,0.0,2.7.4,17+,Shopping,38,0,1,1
+596040849,Theory Test and Hazard Perception Pro,552239104,USD,3.99,0,0,0.0,0.0,10.2,4+,Education,37,5,1,1
+1178829577,ハマる脳とれ ぱずる!!PITTARI~子供も楽しめる脳とれ ぱずるげーむ~,56605696,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,37,2,5,1
+1058156533,飛べないロボはただの... ~無料アクションRPGゲーム~,140770304,USD,0.0,0,0,0.0,0.0,3.0.2,4+,Games,37,3,1,1
+1147910573,ピンポンファイター - 卓球王にオレはなるっ!!,47551488,USD,0.0,0,0,0.0,0.0,2.0.2,4+,Games,37,3,2,1
+580758306,一起捕鱼 - 欢乐街机电玩城,110405632,USD,0.0,0,0,0.0,0.0,3.9.0,12+,Games,40,0,1,1
+1181283568,机で卓球,172687360,USD,0.0,0,0,0.0,0.0,1.0.9,4+,Games,40,5,2,1
+1181855507,開園ピクセル牧場,192621568,USD,4.99,0,0,0.0,0.0,1.0.6,4+,Games,38,5,1,1
+1087738560,斗地主·大全-2017年最受欢迎的精品棋牌游戏合集,83053568,USD,0.0,0,0,0.0,0.0,3.98,17+,Games,40,4,1,1
+592371118,サクサクチェッカー 最適化  -  iChecker,33414144,USD,0.0,0,0,0.0,0.0,1.9,4+,Entertainment,37,0,1,1
+329174056,iLoan Calc (Loan calculator),3375104,USD,3.99,0,0,0.0,0.0,5.1.0,4+,Finance,37,5,3,1
+1057080594,ママはストーカー,117082112,USD,0.0,0,0,0.0,0.0,1.0.5,12+,Games,40,4,1,1
+1057119275,Übungen für einen starken Rücken – GEO WISSEN GESUNDHEIT,193643520,USD,1.99,0,0,0.0,0.0,1.0.5,4+,Health & Fitness,37,0,1,1
+610386042,易经全集-[有声读物],211591168,USD,0.99,0,0,0.0,0.0,1.1,4+,Reference,40,4,1,1
+609649044,Hazard Perception Mega Pack - Driving Test Success,902940672,USD,2.99,0,0,0.0,0.0,3.0.2,4+,Education,38,5,1,1
+1074321709,バーチャル恵方巻【節分・恵方コンパス・方位】,5177344,USD,0.0,0,0,0.0,0.0,00.00.09,4+,Navigation,40,5,1,1
+1183709176,My Diary - 你的名字非官方,18164736,USD,0.99,0,0,0.0,0.0,1.1,4+,Utilities,37,0,1,1
+1074251093,Sumikko gurashi-Puzzling Ways,424565760,USD,0.0,0,0,0.0,0.0,1.5.0,4+,Games,37,5,3,1
+1088186369,タップモンスター◆タップだけの簡単本格RPG/タプモン,201381888,USD,0.0,0,0,0.0,0.0,1.0.7,9+,Games,38,5,1,1
+1088126570,Brain Block -脳トレ分解パズル-,99194880,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,4,1,1
+1074228046,脳トレ!パターンキューブ,17246208,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1076460598,ぼくのボッタクリBAR2 -全国制覇篇-,79084544,USD,0.0,0,0,0.0,0.0,3.0.5,17+,Games,38,0,1,1
+1057818838,プリンセスクローゼット 女性向け恋愛ゲーム!乙女げーむ,153300992,USD,0.0,0,0,0.0,0.0,2.9.1,17+,Games,37,0,1,1
+600093562,LGV Theory Test and Hazard Perception,543456256,USD,9.99,0,0,0.0,0.0,10.2,4+,Education,37,5,1,1
+1145696723,Golfmoji - Golf Emojis and Stickers,52090880,USD,0.99,0,0,0.0,0.0,2.05,12+,Entertainment,37,5,1,1
+1057819454,恋愛ゴシップ 女性向け恋愛ゲーム!乙女げーむ,108829696,USD,0.0,0,0,0.0,0.0,1.8.0,17+,Games,37,0,2,1
+598127498,尚品网 - 全球精品高端时尚购物网站,71242752,USD,0.0,0,0,0.0,0.0,3.0.10,4+,Shopping,38,0,2,1
+1087893385,The Bad Man Tipster - Betting Tips,51968000,USD,0.0,0,0,0.0,0.0,1.35,17+,Entertainment,37,3,1,1
+1076478016,ロボはつらいよ。~フルボッコタワー~アクション育成強化ゲーム!,178900992,USD,0.0,0,0,0.0,0.0,1.9.2,9+,Games,37,3,1,1
+1056011241,MATCH ON LINE chat,9462784,USD,0.0,0,0,0.0,0.0,1.3,17+,Social Networking,37,0,1,1
+1088632237,Devil Tower 2,101798912,USD,0.99,0,0,0.0,0.0,2.0.2,9+,Games,38,4,2,1
+1055962232,デビルサバイバー2 最後の7日間,3956326400,USD,7.99,0,0,0.0,0.0,1.0.3,12+,Games,40,0,1,0
+1073811368,大人の出会いチャット  - 出会い系 アプリ,15011840,USD,0.0,0,0,0.0,0.0,1.1.1,17+,Social Networking,37,0,1,1
+1087095785,Mancmoji - Manchester emoji-stickers!,71414784,USD,0.99,0,0,0.0,0.0,1.1,12+,Utilities,37,5,1,1
+1073035133,星之轨迹-好玩的手游角色扮演网游新游戏,168027136,USD,0.0,0,0,0.0,0.0,1.0.10,9+,Games,40,5,2,1
+1180914367,食べないと死ぬ 3,64763904,USD,0.0,0,0,0.0,0.0,1.0.4,9+,Games,37,3,4,1
+1086917828,Boooom!! -たった1発で爆破できますか?-,14064640,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1087096070,Scousemoji - Liverpool emoji-stickers,66212864,USD,0.99,0,0,0.0,0.0,1.2,12+,Utilities,37,5,1,1
+1060386658,PrestoBand Guitar and Piano,59830272,USD,6.99,0,0,0.0,0.0,3.0.3,4+,Music,37,5,1,1
+1072990945,激ムズ!お前、脱出できんの?~反射神経アクションゲーム~,35018752,USD,0.0,0,0,0.0,0.0,1.3.1,12+,Games,37,5,1,1
+1148799284,意味が分かると怖い話【意味怖】-この怖い話の意味が分かるか…,54333440,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Book,37,0,1,1
+1087200930,おかず甲子園,199826432,USD,0.0,0,0,0.0,0.0,1.3,4+,Games,43,5,1,1
+1060935829,Uncolored Boy,231588864,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,0,1,1
+1070702119,絶対に笑える話 腹筋崩壊の笑える話,18264064,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Book,37,0,1,1
+1062203687,時計仕掛けの彼女 /明日なんて来なきゃいいのにね,81051648,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,40,4,2,1
+1076843245,マンガモンスター  無料マンガ/無料本/人気マンガ,43731968,USD,0.0,0,0,0.0,0.0,1.0.7,17+,Book,37,0,1,1
+1077188355,Go! No. MM! Even amateur exit the record?,41119744,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,0,1,1
+535731343,"Oje, ich wachse!",26168320,USD,1.99,0,0,0.0,0.0,6.1.8,4+,Health & Fitness,37,4,1,1
+1062764988,妹型杀器,159130624,USD,0.0,0,0,0.0,0.0,1.0.5,9+,Games,40,5,1,1
+1152933871,NZ vs Loons,189247488,USD,1.99,0,0,0.0,0.0,1.30,4+,Games,37,5,1,1
+1152938994,武神战纪OL-热血三国志国战手游,705442816,USD,0.99,0,0,0.0,0.0,1.5.8,12+,Games,38,5,1,1
+1062784298,激ムズ!にゃんコプター,99588096,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Games,37,3,1,1
+1077165876,謎解きあの人からメール,18913280,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Book,38,3,1,1
+530425820,东方财富网领先版-财经资讯&股票开户,133628928,USD,0.99,0,0,0.0,0.0,6.9.1,4+,Finance,37,0,1,1
+1062827816,暗黑屠魔者2(唉哟-还不错哦),710589440,USD,0.99,0,0,0.0,0.0,1.3.1,17+,Games,38,5,2,1
+1063180351,エジコイ!〜エジプト神と恋しよっ〜,71775232,USD,0.0,0,0,0.0,0.0,1.0.5,12+,Games,40,5,2,1
+1153232514,"剑雨奇缘-万人同屏PK,唯美风仙侠",174546944,USD,0.99,0,0,0.0,0.0,1.2.0,9+,Games,40,5,1,1
+1063211448,PINGPONG(ピンポン)- 君の反射神経Lvはいくつ?,132924416,USD,0.0,0,0,0.0,0.0,1.5,4+,Games,40,0,0,1
+1180931796,椅子ドンVR~一ノ宮英介 編~,161346560,USD,3.99,0,0,0.0,0.0,1.0.3,12+,Entertainment,37,5,1,1
+1148502570,niconico ch,55334912,USD,0.0,0,0,0.0,0.0,1.0.9,17+,Social Networking,37,0,2,1
+1062164103,マンガきゅんと‐漫画が全話読み放題の少女まんがアプリ,36295680,USD,0.0,0,0,0.0,0.0,1.2.0,17+,Book,37,5,1,1
+565877448,Good homes style-pro,6373376,USD,0.99,0,0,0.0,0.0,1.11,4+,Lifestyle,43,0,3,1
+1073081246,ダイエットやメイク、ネイルのコスメ情報 - シェリル,71487488,USD,0.0,0,0,0.0,0.0,3.0.3,4+,Catalogs,37,5,2,1
+1086548430,国金宝理财-15%年化收益的金融投资赚钱软件,48665600,USD,0.0,0,0,0.0,0.0,2.4.1,17+,Finance,38,0,1,1
+1087273941,女性向けまとめ読みアプリ - pool(プール)-,89447424,USD,0.0,0,0,0.0,0.0,2.4.6,17+,Lifestyle,37,0,2,1
+1087276648,イケメン革命◆アリスと恋の魔法 恋愛ゲーム,92517376,USD,0.0,0,0,0.0,0.0,1.1.2,12+,Games,37,0,1,1
+563092250,GeniusMovieWords,47728640,USD,9.99,0,0,0.0,0.0,2.1.0,4+,Education,37,5,1,1
+562162550,ライブチャット、ビデオチャット通話が楽しめる! ライブでゴーゴー,32168960,USD,0.0,0,0,0.0,0.0,4.9,17+,Social Networking,40,4,16,1
+1060981840,百盈足球-专业足篮比分赛事预测,65815552,USD,0.0,0,0,0.0,0.0,2.9.0,17+,Sports,37,0,1,1
+1061042798,ねこめし屋 -マンガも読めるネコゲーム料理店経営の無料育成シュミレーション-,583507968,USD,0.0,0,0,0.0,0.0,1.2.2,4+,Games,37,0,1,1
+1087280174,"Please,Dad. I wanna live. おとうさん、おねがい。わたし生きたいよ。",73361408,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,37,0,1,1
+355709084,Jourist Weltübersetzer,147066880,USD,7.99,0,0,0.0,0.0,2.8,4+,Travel,40,5,1,1
+559951975,Lumps of Clay,90752000,USD,0.99,0,0,0.0,0.0,3.0,4+,Games,37,4,1,1
+1086688310,ひとほろぼし,44026880,USD,0.0,0,0,0.0,0.0,1.1,12+,Games,40,2,1,1
+1086519782,ST channel [エスティーチャンネル]- 雑誌『セブンティーン』公式アプリ,73465856,USD,0.0,0,0,0.0,0.0,1.1.10,4+,News,37,0,2,1
+1061662610,ごちうさアラーム~シャロ編~,28647424,USD,5.99,0,0,0.0,0.0,1.0.4,9+,Entertainment,38,0,1,1
+555590884,TransParent Compass,35382272,USD,0.0,0,0,0.0,0.0,4.1.1,4+,Utilities,37,4,2,1
+1150253456,战歌联萌-新英雄登场 惊喜嘉年华,253259776,USD,0.0,0,0,0.0,0.0,1.10,9+,Games,40,5,1,1
+1061873443,テニスクラブ物語,194211840,USD,5.99,0,0,0.0,0.0,1.06,4+,Games,38,5,1,1
+1150509995,Intuition Guidances,66417664,USD,0.0,0,0,0.0,0.0,1.1,17+,Health & Fitness,37,3,1,1
+1180478894,不良西游-神魔悟空大战篇,269280256,USD,0.0,0,0,0.0,0.0,1.0,12+,Games,40,5,1,1
+1148201330,FFmoji 2016 - Your Fantasy Football Emoji Keyboard,16068608,USD,0.0,0,0,0.0,0.0,1.1,12+,Sports,37,5,1,1
+568731681,SySight,1209344,USD,0.99,0,0,0.0,0.0,4.3.5,4+,Utilities,37,3,2,1
+1062145414,ScaryStory in Japan 怖い話し無料,35723264,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Book,37,0,1,1
+566560753,KATWARN,5424128,USD,0.0,0,0,0.0,0.0,2.1.1,4+,News,40,0,2,1
+1060000733,Match 3 Puzzle - Mr.Rockets -,34606080,USD,0.0,0,0,0.0,0.0,1.9,4+,Games,38,0,2,1
+1087011731,-The 穴通し3D- 君の記憶力x反射神経を問う! ~Mr.CURVEからの挑戦状 ~,147915776,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,38,4,1,1
+1153462277,【殺人現場へようこそ】推理サスペンス劇場/謎解き大人の脳トレゲーム,40120320,USD,0.0,0,0,0.0,0.0,1.0.2,12+,Book,37,0,1,1
+1063828798,MORGAW® Saddle Adjust,4503552,USD,0.99,0,0,0.0,0.0,2.2.5,4+,Sports,37,4,9,1
+1074577920,鳥として生きた男 その壮絶な人生,52270080,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Games,40,0,1,1
+546278681,キクタン 【Advanced】 6000 ~聞いて覚える英単語~(アルク),114601984,USD,3.99,0,0,0.0,0.0,1.0.55,4+,Education,38,0,1,1
+1072675851,GREEiN,36721664,USD,0.99,0,0,0.0,0.0,1.60,4+,Sports,37,0,2,1
+1072628005,全民夺宝(官方),48844800,USD,0.0,0,0,0.0,0.0,4.3.1,17+,Entertainment,40,0,1,1
+543826363,大盛グルメ食堂,109486080,USD,4.99,0,0,0.0,0.0,1.11,4+,Games,38,5,1,1
+1086006702,MineSweeper マインスイーパ無料,8053760,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,0,1,1
+1085985143,秒速で1億円 貢ぐ男 ~美女キャラ集結!from ギャングロード JOKER~,72392704,USD,0.0,0,0,0.0,0.0,1.1.0,17+,Games,38,0,1,1
+1062550397,学年ビリのギャルが今さら受験してみた,42428416,USD,0.0,0,0,0.0,0.0,1.0,4+,Education,40,4,1,1
+1152350612,吕布帮帮忙-三国策略卡牌,指间微操轻松畅玩,145248256,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Games,40,5,1,1
+573385592,キクタンTOEIC(R) Test Score 600 ~聞いて覚える英単語~(アルク),120057856,USD,3.99,0,0,0.0,0.0,1.0.55,4+,Education,38,0,1,1
+581137577,VoiceTra(Voice Translator),14505984,USD,0.0,0,0,0.0,0.0,5.5,4+,Travel,37,5,4,1
+580069644,通信量チェッカー,12864512,USD,0.0,0,0,0.0,0.0,4.0.5,4+,Utilities,37,0,2,1
+1185209084,Saloons Unleashed,327731200,USD,0.99,0,0,0.0,0.0,1.1,4+,Games,37,5,1,1
+1143430689,脱出ゲーム カリスマブラザーズのワクワク女子寮脱出大作戦,216435712,USD,0.0,0,0,0.0,0.0,1.0.3,9+,Games,37,4,1,1
+1055680013,Mystic R,1174127616,USD,0.99,0,0,0.0,0.0,1.5,12+,Games,40,5,1,1
+1185538497,camera for filter,9362432,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Photo & Video,37,0,1,1
+639219540,Werewolf Special Package,17518592,USD,3.99,0,0,0.0,0.0,8.6,12+,Games,37,0,2,1
+638714159,Le bonheur de lire dès 3 ans: learn to read French,470513664,USD,3.99,0,0,0.0,0.0,1.5,4+,Education,40,5,1,1
+1185428381,剑倚手游,178160640,USD,0.99,0,0,0.0,0.0,1.0,9+,Games,40,5,0,1
+1076237303,電球でテニスしてみた-無料で遊べるミニゲーム,67060736,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,3,1,1
+1089125950,箱庭シティ鉄道,210575360,USD,5.99,0,0,0.0,0.0,1.05,4+,Games,37,5,1,1
+636344719,平安证券,102875136,USD,0.0,0,0,0.0,0.0,6.2.3,4+,Finance,37,0,2,1
+1074634656,謎解き窓ガラスの跡,14449664,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Book,40,0,1,1
+1144133049,STUGGOJI,57677824,USD,0.99,0,0,0.0,0.0,1.1,17+,Utilities,37,0,1,1
+1055925081,モンスト全国マルチ掲示板 for モンスターストライク!〜タスカンと運極が作れるアプリ〜,49645568,USD,0.0,0,0,0.0,0.0,1.9.2,9+,Entertainment,37,4,1,1
+1076216289,恋する幽霊-カレシ、死んでます。-,71929856,USD,0.0,0,0,0.0,0.0,1.1.1,9+,Games,40,0,1,1
+1088731673,"人気の動画まとめてみた。""for YouTube""",8467456,USD,0.0,0,0,0.0,0.0,1.0,17+,Entertainment,38,4,2,1
+546276382,キクタン  【Basic】  4000 ~聞いて覚える英単語~(アルク),113008640,USD,3.99,0,0,0.0,0.0,1.1.2,4+,Education,38,0,1,1
+1151585389,Sight Word Games,41961472,USD,2.99,0,0,0.0,0.0,1.3,4+,Education,40,5,1,1
+1085497631,謎解き,16080896,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Book,40,0,1,1
+546280643,キクタン 【Super】 12000 ~聞いて覚える英単語~(アルク),113598464,USD,3.99,0,0,0.0,0.0,1.0.55,4+,Education,38,0,1,1
+1085497387,香哈菜谱-最专业的家常菜谱大全 无广告版,42312704,USD,0.99,0,0,0.0,0.0,4.1.7,17+,Food & Drink,40,5,1,1
+1077193099,LEAD ZAQ Battle Version,121710592,USD,0.0,0,0,0.0,0.0,2.0.2,4+,Games,38,4,2,1
+1085458374,五目並べ - オンライン対戦搭載!,48455680,USD,0.0,0,0,0.0,0.0,1.0.4,4+,Games,38,4,3,1
+1178892772,王权之战-帝国时代皇室争霸!,84803584,USD,0.0,0,0,0.0,0.0,2.0.5,12+,Games,40,5,1,1
+522687241,The Official DVSA Highway Code,67291136,USD,3.99,0,0,0.0,0.0,2.3,4+,Education,38,0,1,1
+1077219776,アニメスタジオ物語,108988416,USD,4.99,0,0,0.0,0.0,1.02,4+,Games,38,5,1,1
+1178846093,[GP]パチスロ デビル メイ クライ クロス(パチスロゲーム),3148421120,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,40,0,1,0
+522309966,冒険ダンジョン村,187158528,USD,4.99,0,0,0.0,0.0,2.00,4+,Games,38,5,1,1
+1085435354,ほぼ無理ゲー,21790720,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,5,1,1
+1085932108,CUBE 360° ~想像力×知能×反射神経~,22441984,USD,0.0,0,0,0.0,0.0,1.1.0,9+,Games,43,4,16,1
+1072425152,Nackt gut aussehen,59819008,USD,4.99,0,0,0.0,0.0,1.0,4+,Health & Fitness,40,5,1,1
+1085932516,勘違い探し(俺のこと・・・),32477184,USD,0.0,0,0,0.0,0.0,1.1.0,12+,Games,43,5,16,1
+1152396902,凤凰新闻(专业版)-有料的军事新闻、娱乐短视频,67361792,USD,0.99,0,0,0.0,0.0,5.5.6,17+,News,37,0,2,1
+551682016,スシロー,32113664,USD,0.0,0,0,0.0,0.0,3.0.0,4+,Food & Drink,37,0,1,1
+550058952,I see! Math1,96665600,USD,4.99,0,0,0.0,0.0,2.0.8,4+,Education,26,5,2,1
+1150982926,大人のためのかわいいお買い物アプリSUCRESIA(シュクレシア),48518144,USD,0.0,0,0,0.0,0.0,1.1.7,4+,Shopping,37,0,1,1
+1059331825,机甲无双-燃即正义 殿堂级战斗手游,660675584,USD,0.0,0,0,0.0,0.0,1.1.1,12+,Games,40,5,1,1
+1062209068,完全犯罪クラブ,62422016,USD,0.0,0,0,0.0,0.0,1.0.2,9+,Games,38,0,2,1
+1151262589,こち亀 公式連載アプリ〜こち亀の漫画が読めるアプリ〜,34743296,USD,0.0,0,0,0.0,0.0,1.1.5,4+,Book,37,2,1,1
+1072976627,投资乐VIP-白银黄金贵金属理财投资,54424576,USD,0.0,0,0,0.0,0.0,4.2.1,4+,Finance,37,0,3,1
+1180286571,脱出ゲーム KA-MA-KU-RA,12614656,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,0,1,1
+1072752496,恵方コンパス!【恵方巻を食べる方角がすぐ探せる!】,17868800,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Lifestyle,38,0,1,1
+549050663,ヨドバシ,19196928,USD,0.0,0,0,0.0,0.0,2.0.1,17+,Shopping,37,0,1,1
+1179959829,オービスガイド - 新型オービス&ネズミ捕り&検問,65525760,USD,1.99,0,0,0.0,0.0,1.1.1,4+,Navigation,37,5,1,1
+548565954,万年历-农历黄历日历天气,111135744,USD,0.0,0,0,0.0,0.0,4.5.3,12+,Utilities,38,4,3,1
+1069300300,The Dance of the Little Water Drops,200863744,USD,2.99,0,0,0.0,0.0,1.2,4+,Games,38,5,9,1
+1167873588,777游戏厅-2017超人气掌上游戏厅,102120448,USD,0.0,0,0,0.0,0.0,1.1.0,17+,Games,40,5,1,1
+1168110506,脱出ゲーム Toilet,11815936,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,0,1,1
+1082671838,CITB MAP HS&E test 2016,24210432,USD,5.99,0,0,0.0,0.0,3.0.17,12+,Education,37,5,1,1
+463295925,The Official DVSA Theory Test Kit for Car Drivers,403332096,USD,4.99,0,0,0.0,0.0,3.2.2,4+,Education,38,0,1,1
+1082293885,【負けるが勝ち?】少数派に入れば勝利の7Beget,21757952,USD,0.0,0,0,0.0,0.0,1.0.8,17+,Games,37,0,1,1
+1082240310,脱出ゲーム 心霊学校からの脱出,487715840,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,38,0,1,1
+1067686814,指神,15602688,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1067715382,ごちうさアラーム ~ココア編~,25044992,USD,5.99,0,0,0.0,0.0,1.0.2,9+,Entertainment,38,0,1,1
+1081839485,彼女の涙が僕を人間にした,69035008,USD,0.0,0,0,0.0,0.0,1.2,12+,Games,38,0,1,1
+453670037,Kazehakase fu-ring bank - Tokoname & Nanbu,22928546,USD,1.99,0,0,0.0,0.0,1.2,4+,Entertainment,43,0,2,1
+391947489,iSleeping by iSommeil SARL,24419328,USD,0.0,0,0,0.0,0.0,2.7.1,4+,Medical,38,0,3,1
+1162719828,gogogo,7212032,USD,0.0,0,0,0.0,0.0,1.0,4+,Shopping,38,0,2,1
+394342281,Bowitter for iPhone,3174400,USD,0.99,0,0,0.0,0.0,1.5.0,4+,Social Networking,43,0,2,1
+1081769613,壊して!無限ドリルランド,29508608,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,3,2,1
+1081737936,Anitore EX ~Let's train together!~,133673984,USD,4.99,0,0,0.0,0.0,1.0.5,9+,Health & Fitness,38,5,1,1
+1175770622,脱出ゲーム Oden,10925056,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,38,0,1,1
+1162914044,GE's eddie,14125056,USD,0.0,0,0,0.0,0.0,2.2,4+,News,37,4,1,1
+1081734476,[GP]アナザーゴッドハーデス-奪われたZEUSver.-(パチスロゲーム),199159808,USD,0.0,0,0,0.0,0.0,1.0.2,12+,Games,40,0,1,0
+1078051960,おやじが跳ぶ,22475776,USD,0.0,0,0,0.0,0.0,2.0,4+,Games,40,5,2,1
+1078142098,ナイトメアハーレム 女性向け恋愛ゲーム!乙女げーむ,118202368,USD,0.0,0,0,0.0,0.0,1.10.0,17+,Games,37,0,1,1
+1067766579,キンニクエスト 筋肉と筋肉と筋肉と呪われし筋肉,173768704,USD,0.0,0,0,0.0,0.0,1.0.2,12+,Games,38,5,1,1
+1067848872,Refreshinator - Auto Refresh tool for Ticket sites,3053568,USD,1.99,0,0,0.0,0.0,2.0.1,17+,Entertainment,37,5,1,1
+1067059743,モンストマルチ掲示板 〜 The BEST 〜 for モンスターストライク,5354496,USD,0.0,0,0,0.0,0.0,1.1,12+,Entertainment,37,0,1,1
+1066769531,战车世纪·经典FC重装机兵归来,197087232,USD,0.0,0,0,0.0,0.0,2.1.1,9+,Games,40,0,1,1
+1159376062,HowDidiDo,21574656,USD,0.0,0,0,0.0,0.0,2.1,4+,Sports,37,4,1,1
+1066737409,四角い頭を丸くする2,40060928,USD,0.0,0,0,0.0,0.0,1.1.1,4+,Entertainment,37,0,1,1
+481914139,Yahoo!防災速報 - 地震や豪雨など災害情報をいち早く通知,36961280,USD,0.0,0,0,0.0,0.0,2.5.1,4+,Weather,37,0,1,1
+481033328,英単語ターゲット1900(5訂版),95936512,USD,4.99,0,0,0.0,0.0,2.7.2,4+,Education,37,5,2,1
+1161615642,下ヨシ子の「2017年 あなたの流生命」,7142400,USD,1.99,0,0,0.0,0.0,1.0,17+,Lifestyle,37,0,1,1
+1082673403,CITB op/spec HS&E test 2016,24169472,USD,5.99,0,0,0.0,0.0,3.0.17,12+,Education,37,5,1,1
+480090210,BarcodeReader「ICONIT」,15440896,USD,0.0,0,0,0.0,0.0,4.5.7,4+,Productivity,37,5,11,1
+1067180769,性格美男美女診断2,27269120,USD,0.0,0,0,0.0,0.0,1.0,17+,Entertainment,38,0,1,1
+516820956,Think in Japanese (Original name:ひとりごと英語),63654912,USD,2.99,0,0,0.0,0.0,3.3,12+,Reference,37,5,2,1
+1085434420,【ひっぱりパズル】ズキュ〜〜〜〜ン!,85823488,USD,0.0,0,0,0.0,0.0,2.0.3,4+,Games,40,4,2,1
+1063992958,完全心理プロファイルX,15628288,USD,0.0,0,0,0.0,0.0,1.4,17+,Entertainment,38,0,1,1
+1155038987,Table Speed,26798080,USD,2.99,0,0,0.0,0.0,1.1.0,4+,Games,40,4,1,1
+1070670743,秒で100億円,100245504,USD,0.0,0,0,0.0,0.0,1.2.7,4+,Games,40,3,1,1
+377321278,恵方コンパス.,41207059,USD,0.0,0,0,0.0,0.0,2.1.0,4+,Navigation,39,5,1,1
+1064038965,Malodo : Stop au mal de dos,15183872,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Medical,37,0,2,1
+1155899847,古墓仙缘-古装恋爱修仙手游,209277952,USD,0.99,0,0,0.0,0.0,1.2,9+,Games,38,5,1,1
+1077245487,番茄电玩城,134299648,USD,0.0,0,0,0.0,0.0,2.1.8,17+,Games,38,0,2,1
+1064087245,Télécommande pour SFR TV,11745280,USD,0.99,0,0,0.0,0.0,1.3,4+,Entertainment,37,4,1,1
+1156049875,大人の脳トレ!ぴたぽん #頭が良くなる #快感ハメコミパズル,49252352,USD,0.0,0,0,0.0,0.0,1.0.5,4+,Games,38,0,1,1
+1156064689,Pantheon Warfare: The Chaos of Knights,136615936,USD,0.0,0,0,0.0,0.0,1.3.5,12+,Games,40,5,33,1
+505829994,笑ったら負け,3700736,USD,0.0,0,0,0.0,0.0,2.0.0,4+,Book,38,0,1,1
+379256460,「宅建士」過去問題《受験用》,24444928,USD,3.99,0,0,0.0,0.0,5.1,4+,Education,37,0,1,1
+505488770,Impots.gouv,9299968,USD,0.0,0,0,0.0,0.0,2.6.0,4+,Finance,37,2,1,1
+1064391608,物理パズル:flower(フラワー),50002944,USD,0.0,0,0,0.0,0.0,1.2,4+,Games,38,0,1,1
+1064830114,俺が浮気した時の話、聞く? 男女の修羅場の話まとめ,35344384,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Book,37,0,1,1
+1084979604,轩辕剑叁外传之天之痕-正版经典仙侠授权,831783936,USD,0.0,0,0,0.0,0.0,1.6.1,12+,Games,40,5,1,1
+504542019,ジーユー,16457728,USD,0.0,0,0,0.0,0.0,4.1.6,17+,Lifestyle,37,0,1,1
+504280284,Mon compte pour Free Mobile - Conso & Messagerie,19538944,USD,1.99,0,0,0.0,0.0,6.3,4+,Utilities,37,1,1,1
+1077258209,主播炸金花,30192640,USD,0.0,0,0,0.0,0.0,1.8.22,17+,Games,40,4,1,1
+1159249515,謝罪会見,52836352,USD,0.0,0,0,0.0,0.0,1.0.1,9+,Games,37,0,1,1
+482917268,PetitLyrics,40871936,USD,0.0,0,0,0.0,0.0,2.4.5,4+,Music,37,4,2,1
+1065691080,早くトイレに行きたい,19249152,USD,0.0,0,0,0.0,0.0,1.0.1,9+,Games,40,5,2,1
+389543438,Der Feueralarm,30711808,USD,0.99,0,0,0.0,0.0,1.2,12+,Entertainment,40,5,1,1
+1065719308,僕の魔球打てるの?,20328448,USD,0.0,0,0,0.0,0.0,2.0,4+,Games,40,5,2,1
+1160086118,"Emojil - original emoji stamp, decoration camera",47948800,USD,0.0,0,0,0.0,0.0,1.2.1,4+,Photo & Video,37,0,4,1
+1154791600,アウト~まさか浮気してないよね?~【恋愛不倫探しゲーム】,40107008,USD,0.0,0,0,0.0,0.0,1.0.5,9+,Book,37,0,1,1
+1104879125,애드픽 - 인플루언서가 되어 의미있는 수익을 올리세요!,28006400,USD,0.0,0,0,0.0,0.0,1.0.9,12+,Business,37,5,4,1
+958880753,Spring Festival by BabyBus,89405440,USD,0.0,0,0,0.0,0.0,9.12.0000,4+,Education,38,5,5,1
+1122366064,CelebrityDiagnosis!,13968384,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Photo & Video,37,0,2,1
+1122367296,[GP]パチスロ ヱヴァンゲリヲン〜決意の刻〜(パチスロゲーム),1239953408,USD,0.0,0,0,0.0,0.0,1.0.0,12+,Games,40,0,1,0
+958635569,メンタルリープのアプリ:ワンダーウィーク(旧:ワンダーウィークス),33554432,USD,1.99,0,0,0.0,0.0,6.1.8,4+,Health & Fitness,37,5,1,1
+1022844131,Women's Health: 1500 Kalorien Tag,70312960,USD,1.99,0,0,0.0,0.0,1.3.1,4+,Food & Drink,38,0,1,1
+1104797523,Clash of Crime Mad City Full,185916416,USD,0.99,0,0,0.0,0.0,1.2.1,17+,Games,38,5,1,1
+951536298,がんばれルルロロ!かさねてブロック,36737024,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,4,1,1
+1122584613,なっとう-人気の納豆育成ゲーム-,44748800,USD,0.0,0,0,0.0,0.0,2.0.1,4+,Games,37,4,1,1
+1023273544,全国マルチ掲示板 for モンスト!〜タスカンと運極ができるアプリ〜,39042048,USD,0.0,0,0,0.0,0.0,2.0.2,12+,Entertainment,38,4,1,1
+953917544,一筆書きゲーム!無料パズルで脳トレしよう! by だーぱん,57066496,USD,0.0,0,0,0.0,0.0,1.3.0,4+,Games,38,0,1,1
+953454701,センバツLIVE!2017/第89回選抜高校野球大会公式アプリ,60797952,USD,0.0,0,0,0.0,0.0,5.5.4,4+,News,37,0,0,1
+1104247866,新・血液型テスト,7432192,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Book,40,0,1,1
+1104219495,EggPunch 2 - adventure puzzle game,208496640,USD,0.99,0,0,0.0,0.0,1.3.18,4+,Games,40,0,1,1
+1104112723,ジョナサンアプリ お得なクーポンが使える便利なアプリ,18425856,USD,0.0,0,0,0.0,0.0,1.1.0,12+,Food & Drink,37,0,2,1
+952553927,パチスロ黄門ちゃま 喝,1637367808,USD,14.99,0,0,0.0,0.0,1.0.0,12+,Games,40,0,1,0
+1024216465,Hooty Hoo: Bingo Math,34686976,USD,1.99,0,0,0.0,0.0,1.2,4+,Education,37,5,1,1
+1024341813,JCnews - Anime & Game Culture,25467904,USD,0.0,0,0,0.0,0.0,2.0.5,17+,News,38,5,31,1
+1123414741,罪と罰2 -犯人は誰だ!?- 謎解き推理ミステリーサスペンス,42300416,USD,0.0,0,0,0.0,0.0,1.0.4,12+,Book,37,0,1,1
+1123417039,AKUMA大戦 -悪魔を合体召喚して魔王を育成する放置ゲーム-,69208064,USD,0.0,0,0,0.0,0.0,1.2.2,4+,Games,37,0,1,1
+1024395159,myINK sketch,90249216,USD,2.99,0,0,0.0,0.0,3.2.6,17+,Photo & Video,38,1,1,1
+1022305219,Periodic Table Chemistry,34300928,USD,6.99,0,0,0.0,0.0,3.0.2,4+,Education,37,5,1,1
+1105246469,心动K歌恋爱季-让我们一起唱歌听歌恋爱吧,312938496,USD,0.0,0,0,0.0,0.0,1.14.31,12+,Games,40,5,3,1
+962228091,さすゆう -さすがは勇者様です-無料放置系お手軽RPG!!,50743296,USD,0.0,0,0,0.0,0.0,1.2.1,4+,Games,38,3,3,1
+1105304995,30秒マン-これクリアできるやついる?-,14638080,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1017240682,Kuro no Sekai - It's a Darkness World,90811392,USD,0.0,0,0,0.0,0.0,2.5.5,9+,Games,40,4,2,1
+1022763299,开挂江湖-Q版武侠挂机,98246656,USD,0.0,0,0,0.0,0.0,1.8.3,9+,Games,40,5,1,1
+1121989372,犯人は僕です。-謎解き×探索ノベルゲーム-,53682176,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Games,38,4,16,1
+1177461222,js体育资讯,1841152,USD,0.0,0,0,0.0,0.0,1.0,17+,Entertainment,37,0,1,1
+1104882704,每日红包,28264448,USD,0.0,0,0,0.0,0.0,1.1.0,17+,Entertainment,40,0,2,1
+479206805,激Jパチスロ 2027,92058431,USD,9.99,0,0,0.0,0.0,1.3.0,12+,Games,43,0,1,1
+1077586834,ビルホッピング,13523968,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1160662479,犯人は僕です。~露天風呂編~,59627520,USD,0.0,0,0,0.0,0.0,1.1.0,17+,Games,38,5,16,1
+479159684,My au,50800640,USD,0.0,0,0,0.0,0.0,6.1.0,4+,Utilities,37,4,2,1
+1160690385,Devil Lord: I shouldn't say that...half of world,96523264,USD,0.0,0,0,0.0,0.0,1.0.20,4+,Games,37,4,4,1
+1083367051,Les Anges,58943488,USD,0.0,0,0,0.0,0.0,2.2,17+,Entertainment,37,0,2,1
+1177384028,紫马财行理财精英版—安全可靠的投资理财平台,86395904,USD,0.0,0,0,0.0,0.0,2.2.5,4+,Finance,37,0,1,1
+476550251,SPI言語 【Study Pro】,4759552,USD,2.99,0,0,0.0,0.0,3.0.4,4+,Education,43,0,1,1
+1072007547,みんなの性格検定,13881344,USD,0.0,0,0,0.0,0.0,1.3,17+,Entertainment,38,0,1,1
+1071974253,テトリマン,13064192,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1077644883,iFleeing!,435667968,USD,0.99,0,0,0.0,0.0,2.0,4+,Games,37,0,1,1
+1071770573,サクッとスッキリ!ラインナンバー!,43641856,USD,0.0,0,0,0.0,0.0,1.5,4+,Games,38,5,1,1
+1083345097,僕の妹が死んだ。,83909632,USD,0.0,0,0,0.0,0.0,2.5,9+,Games,37,0,2,1
+1066170195,ゲスの極み!パリピを探せ!!笑える・ハマる間違い探しゲーム(意外と難問),157717504,USD,0.0,0,0,0.0,0.0,1.1.0,12+,Games,38,5,1,1
+1066172927,封神榜(洪荒西游英杰传奇),262118400,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,38,5,1,1
+1071770565,ピッタリあわせて!脳トレcube,35464192,USD,0.0,0,0,0.0,0.0,1.3,4+,Games,38,5,1,1
+1066632299,The Pocket Quiz for Pokemon,20499456,USD,0.0,0,0,0.0,0.0,1.1,4+,Games,40,0,1,1
+1113304677,キモゲーいや、きも毛ー,9795584,USD,0.0,0,0,0.0,0.0,1.0,4+,Games,40,4,2,1
+1091997580,出会うカメ,67683328,USD,0.0,0,0,0.0,0.0,1.0.6,4+,Games,37,0,1,1
+671889349,Jishokun-Japanese English Dictionary & Translator,225522688,USD,0.0,0,0,0.0,0.0,2.10.14,12+,Reference,37,4,2,1
+1104814161,VR MUSEUM,87797760,USD,4.99,0,0,0.0,0.0,1.0.3,17+,Games,37,0,1,1
+960504959,Simple Reversi Online,10053632,USD,0.0,0,0,0.0,0.0,1.5,4+,Games,38,0,3,1
+1022729100,アイドルの姫 -わたしの青春マテリアル-,105643008,USD,0.0,0,0,0.0,0.0,1.2.3,4+,Games,38,0,1,1
+1104911266,Tetminos - Classic Puzzle Game,57049088,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Games,40,3,1,1
+1121967198,ゲーム攻略「SGGP」掲示板、SNSな友達出会い,22735872,USD,0.0,0,0,0.0,0.0,1.1.1,9+,Social Networking,38,0,2,1
+1154805667,意味が分かると怖い話-この怖い話の意味分かる?【意味怖】,46541824,USD,0.0,0,0,0.0,0.0,1.0.5,12+,Book,37,0,1,1
+499835343,TOEIC®テストリスニング360問,75341824,USD,2.99,0,0,0.0,0.0,1.0.11,4+,Education,40,5,1,1
+1168235182,诛妖奇遇-3D仙侠恋爱网游年度巨献(浪漫回合),187552768,USD,0.99,0,0,0.0,0.0,1.1,9+,Games,38,5,1,1
+1174233489,泰坦来袭-热血英雄燃爆部落争霸之战,325997568,USD,0.0,0,0,0.0,0.0,1.0.3,12+,Games,38,5,1,1
+1154766826,蒼の彼方のフォーリズム‐ETERNAL SKY-,433170432,USD,0.0,0,0,0.0,0.0,1.9.2,12+,Games,38,0,1,1
+413246702,Verbrechen - echte Polizeifälle aus Deiner Umgebung,8161280,USD,1.99,0,0,0.0,0.0,3.0.1,4+,News,38,5,1,1
+1171093849,MonPetitGazon,19794944,USD,1.99,0,0,0.0,0.0,1.5.0,9+,Sports,37,3,1,1
+1171329625,Dinosaur Planet,144868352,USD,0.0,0,0,0.0,0.0,9.12.0000,4+,Education,38,5,12,1
+1171330617,江湖侠客录-武侠迷必玩单机手游,49906688,USD,0.99,0,0,0.0,0.0,4.58,12+,Games,40,5,1,1
+1070452700,巨商传奇,137094144,USD,0.99,0,0,0.0,0.0,1.0.3,17+,Games,38,4,1,1
+1171367187,LINE BLOG,101159936,USD,0.0,0,0,0.0,0.0,1.5.0,12+,Social Networking,37,0,1,1
+1079316669,CelebrityCamera!,13538304,USD,0.0,0,0,0.0,0.0,1.1.5,4+,Entertainment,37,0,2,1
+1078812538,花札Online,209218560,USD,0.0,0,0,0.0,0.0,1.1.20,12+,Games,40,5,1,1
+1173642524,Mundo Lanugo en Navidad – Juegos Navideños,225289216,USD,1.99,0,0,0.0,0.0,1.1,4+,Games,40,5,1,1
+1173455771,BLW Slow Cook Recipes,37238784,USD,3.99,0,0,0.0,0.0,2.4,4+,Lifestyle,37,5,1,1
+413487517,ナビタイム ドライブサポーター - NAVITIMEのカーナビアプリ,125665280,USD,0.0,0,0,0.0,0.0,4.28.0,4+,Navigation,37,5,1,1
+1171635060,琅琊天下 - 原著改编单机武侠角色扮演RPG,122763264,USD,0.0,0,0,0.0,0.0,2.0,9+,Games,37,5,1,1
+1078934052,Blitzrechnen 2. Klasse - Mathe lernen in der Grundschule mit Klett nach dem offiziellen Lehrplan,400217088,USD,3.99,0,0,0.0,0.0,1.2,4+,Education,40,5,1,1
+1078542442,FixYou-無料でチャットトークができるSNSマッチングアプリ,44669952,USD,0.0,0,0,0.0,0.0,2.0.0,17+,Social Networking,37,0,2,1
+411608323,花しらべ 花認識/花検索,813500416,USD,6.99,0,0,0.0,0.0,3.4.1,4+,Reference,37,5,1,1
+1173396715,挂机三国-最强挂机游戏,105127936,USD,0.99,0,0,0.0,0.0,1.3.40,17+,Games,40,5,1,1
+1173388188,修仙幻想-经典萌系回合,187419648,USD,0.99,0,0,0.0,0.0,1.0,4+,Games,38,5,1,1
+1173385518,逍遥修仙-掌上360度自由视角经典仙侠动作游戏,148481024,USD,0.0,0,0,0.0,0.0,1.0,9+,Games,40,5,0,1
+1172048554,天神决-创新仙侠手游,165749760,USD,0.0,0,0,0.0,0.0,1.0.3,9+,Games,38,5,1,1
+1173383977,修仙侠侣-正统中国风仙侠新作,150490112,USD,0.0,0,0,0.0,0.0,1.0,9+,Games,40,5,0,1
+1172155464,胜者为王-多人同时在线PK传奇类手机网游!,250616832,USD,0.99,0,0,0.0,0.0,1.0.1,9+,Games,38,0,1,1
+1070504791,BrainConnect,28930048,USD,0.99,0,0,0.0,0.0,1.0.2,4+,Games,37,0,13,1
+1172449400,ネイティブ1000人と作った英会話~日常英会話編~,51174400,USD,12.99,0,0,0.0,0.0,1.0.1,4+,Education,37,5,1,1
+1070532401,Handball EM 2016 Polen,8167424,USD,0.99,0,0,0.0,0.0,1.0.1,4+,Sports,38,0,2,1
+1168504893,懸賞ソリティア-懸賞応募でギフト券が稼げるソリティア!-無料懸賞ゲーム,35679232,USD,0.0,0,0,0.0,0.0,1.0.1,17+,Games,38,0,2,1
+436180275,Learn to Speak Italian Fast With MosaLingua,43553792,USD,4.99,0,0,0.0,0.0,9.2,12+,Education,38,5,5,1
+1171089247,别动我学姐-校园格斗巅峰之作,290577408,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Games,38,5,1,1
+1068396594,Samurai Ninja Puzzle ONIMARU,61177856,USD,0.0,0,0,0.0,0.0,1.4,4+,Games,38,0,9,1
+1080565581,マイにゃんカフェ,98841600,USD,0.0,0,0,0.0,0.0,1.1.9,4+,Games,38,5,7,1
+1068460848,bit-tube - Live Stream Video Chat,44632064,USD,0.0,0,0,0.0,0.0,1.3,12+,Social Networking,37,0,2,1
+1068419726,うねうね糸,16157696,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1068418810,リア充撲滅RUN,23583744,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1163675628,仙侠剑客—大型3D精品ARPG动作神作,179085312,USD,0.0,0,0,0.0,0.0,1.1,9+,Games,40,5,0,1
+1078169958,競馬予想 アプリ!馬券予想で収支アップ!競馬 jra 攻略!,4947968,USD,0.0,0,0,0.0,0.0,1.2.1,17+,Entertainment,37,2,31,1
+1163706727,Babaji,23000064,USD,0.99,0,0,0.0,0.0,1.0,4+,Utilities,37,2,9,1
+445300213,Calc for Loan,880640,USD,3.99,0,0,0.0,0.0,3.0.1,4+,Finance,40,5,2,1
+1081270431,どうして私じゃダメなの?,45325312,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,38,4,1,1
+398166286,出会い系アプリ i-Mail(アイメール),3833856,USD,0.0,0,0,0.0,0.0,2.1.2,17+,Social Networking,43,0,1,1
+1071235820,コンテンツブロッカー280 / 最高の広告ブロック 280blocker,1012736,USD,1.99,0,0,0.0,0.0,2.3,4+,Productivity,25,2,1,1
+1163963306,オトナの教科書〜学校じゃ教わらない裏教育クイズ(画像付き)〜,42959872,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Games,37,0,2,1
+1071077611,ねこげーむ~ねこ騎士ポチ~簡単で人気の猫ゲーム~基本無料,57197568,USD,0.0,0,0,0.0,0.0,1.0.11,4+,Games,38,1,1,1
+1068079276,大人には解けない問題,32102400,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1163984902,妖萌战姬HD - 日系二次元萌娘卡牌手游,211287040,USD,0.99,0,0,0.0,0.0,1.0.4,17+,Games,40,5,1,1
+1163993025,Escape from the Bears of the student council room.,95901696,USD,0.0,0,0,0.0,0.0,1.0.6,4+,Games,38,5,1,1
+443324720,TOEIC®テスト文法640問1,10928128,USD,2.99,0,0,0.0,0.0,1.0.23,4+,Education,37,5,1,1
+1068081729,僕の彼女が成仏するまで,82154496,USD,0.0,0,0,0.0,0.0,1.0.1,9+,Games,38,5,2,1
+1068164841,霸王卧龙传奇(全新转职系统,60种职业供你选择),229632000,USD,0.0,0,0,0.0,0.0,1.1,12+,Games,38,5,1,1
+1080942226,"When you clear one,million yen CHANCE!!",43370496,USD,0.0,0,0,0.0,0.0,1.0.0,17+,Games,38,0,1,1
+1080869737,謎解き赤い封筒,73730048,USD,0.0,0,0,0.0,0.0,1.0.0,9+,Book,38,5,1,1
+1164377822,GETだぜ!じゃねーよw for ポケモン,60770304,USD,0.0,0,0,0.0,0.0,1.0,12+,Games,37,4,1,1
+1164385183,Escape a Halloween Candy Shop,36245504,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,0,2,1
+1068353024,同城爱约会-单身男女约会神器,24373248,USD,0.0,0,0,0.0,0.0,2.0.0,17+,Social Networking,37,0,2,1
+1068360791,謎解き2016,15844352,USD,0.0,0,0,0.0,0.0,1.3,4+,Book,38,0,1,1
+1172660336,ImpossibleGO! - You can't clear,170200064,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,3,1,1
+1070228823,Metal Emoji,35203072,USD,0.99,0,0,0.0,0.0,1.2.1,12+,Utilities,37,5,1,1
+1156759711,机でGOLF,247855104,USD,0.0,0,0,0.0,0.0,1.0.5,4+,Games,40,5,2,1
+1177953624,最佳足球经理(非彩票),110059520,USD,0.0,0,0,0.0,0.0,1.1,9+,Games,38,5,1,1
+1065222241,誰ガ為ノ世界~悲しみと始まりのユグドラシル~,380809216,USD,0.0,0,0,0.0,0.0,1.3,12+,Games,38,0,1,1
+1065223198,Reversi REAL - Multiplayer Board game,62751744,USD,0.0,0,0,0.0,0.0,1.0.3,4+,Games,38,2,2,1
+1065304745,へびでか〜へび刑事純情物語〜【放置ゲーム】,460717056,USD,0.0,0,0,0.0,0.0,1.0.10,9+,Entertainment,40,4,1,1
+1178261698,东方头条(探索版)订阅分享感兴趣的新闻和搞笑视频,50258944,USD,0.0,0,0,0.0,0.0,1.1.2,17+,Book,38,4,1,1
+1072382299,Brain IQ Test Adventure,26583040,USD,0.99,0,0,0.0,0.0,1.0,4+,Games,43,4,3,1
+1084290631,脳トレ物理パズル【キタコレ!】~IQの限界に挑めるパズルゲーム~ktkr,173859840,USD,0.0,0,0,0.0,0.0,1.3.2,4+,Games,38,4,5,1
+1084253570,金のフレーズ 〜「新TOEIC®TEST 出る単特急 金のフレーズ」収録 〜,85052416,USD,4.99,0,0,0.0,0.0,1.2.3,4+,Education,37,5,2,1
+1065401804,山手線走ってみた。,17186816,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,40,5,2,1
+491907493,ABRSM Aural Trainer Grades 1-5,329866240,USD,7.99,0,0,0.0,0.0,2.5,4+,Education,37,5,1,1
+1157792207,无敌战舰-经典策略海战巅峰对决,63064064,USD,0.0,0,0,0.0,0.0,1.1.2,4+,Games,40,5,0,1
+1065421915,和我信,97892352,USD,0.0,0,0,0.0,0.0,2.2.1,17+,Lifestyle,38,0,2,1
+1068026210,ジェスチャー当て,10823680,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Book,40,0,1,1
+1072278593,スピードOnline トランプゲーム,151349248,USD,0.0,0,0,0.0,0.0,1.1.21,4+,Games,40,5,1,1
+491629188,まっぷるリンク - 旅行ガイドを丸ごとアプリで持ち歩き,64250880,USD,0.0,0,0,0.0,0.0,10.2,4+,Travel,38,0,2,1
+491033889,HOOP J for Basketball Scores,14016512,USD,6.99,0,0,0.0,0.0,7.3,4+,Sports,24,5,2,1
+490470296,SPI非言語 【Study Pro】,5866903,USD,2.99,0,0,0.0,0.0,2.1.0,4+,Education,43,0,1,1
+1065470211,こだわりラーメン館,63353856,USD,4.99,0,0,0.0,0.0,1.00,4+,Games,38,5,1,1
+1158754562,【意味笑】意味が分かると面白い話-謎解き2ch系推理ゲーム,39422976,USD,0.0,0,0,0.0,0.0,1.0.3,12+,Book,37,0,1,1
+1158903065,疯狂百宝箱,18173952,USD,0.0,0,0,0.0,0.0,1.0,17+,Lifestyle,38,0,1,1
+1077585444,針の穴,15624192,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,2,1
+1084085985,RPG 偽りの物語 / ドット絵ロールプレイングゲーム,237879296,USD,0.99,0,0,0.0,0.0,1.2.7,4+,Games,38,5,1,1
+486744917,国美在线 – 新人免费领200元优惠券,153785344,USD,0.0,0,0,0.0,0.0,4.4.5,17+,Shopping,40,5,2,1
+1065550288,Tchapper Messenger - Keep it private,82187264,USD,0.0,0,0,0.0,0.0,2.5,4+,Lifestyle,37,0,9,1
+1084979184,鬼畜三国-红将觉醒,213086208,USD,0.0,0,0,0.0,0.0,4.7.02,12+,Games,40,5,0,1
+1156773416,食べないと死ぬ2,54369280,USD,0.0,0,0,0.0,0.0,1.0.7,9+,Games,37,3,4,1
+1064902326,单读-我们的黄金时代,50859008,USD,0.0,0,0,0.0,0.0,1.6.2,9+,Book,38,0,2,1
+1175283555,脱出ゲーム ピラミッドからの脱出,128242688,USD,0.0,0,0,0.0,0.0,1.0.1,4+,Games,38,5,1,1
+1171021623,無料で音楽や写真・カメラの裏技アプリ for iPhone7,31080448,USD,0.0,0,0,0.0,0.0,1.1,4+,Reference,37,0,2,1
+447024088,自転車ナビ by NAVITIME(ナビタイム) - 自転車のナビができるアプリ,48708608,USD,0.0,0,0,0.0,0.0,4.11.1,4+,Navigation,37,0,1,1
+1070091597,謎解きロッカーの忘れ物,59152384,USD,0.0,0,0,0.0,0.0,1.0.0,4+,Book,40,0,1,1
+1168507191,大人の納車ゲーム-四角いアタマを丸くする脳トレパズル,39596032,USD,0.0,0,0,0.0,0.0,1.0.2,4+,Games,37,3,2,1
+1080262235,ねことダンボール,165396480,USD,0.0,0,0,0.0,0.0,1.1.0,9+,Games,40,0,1,1
+1168593601,2ちゃんねる for iPhone,21508096,USD,0.0,0,0,0.0,0.0,3.0,17+,News,37,0,1,1
+1069592213,喔豆-发现世间美味,81681408,USD,0.0,0,0,0.0,0.0,1.6.6,12+,Lifestyle,37,0,2,1
+1168920959,梦幻仙途-经典之余又大搞趣味创新(回合制),187687936,USD,0.99,0,0,0.0,0.0,1.0,9+,Games,38,5,1,1
+1168960919,Golden Lotus Slots,111412224,USD,0.0,0,0,0.0,0.0,1.1.0,17+,Games,37,5,3,1
+1168981143,借金あるからギャンブルしてくる,63654912,USD,0.0,0,0,0.0,0.0,1.5,17+,Games,37,0,1,1
+404529222,ファッション通販 ZOZOTOWN,43611136,USD,0.0,0,0,0.0,0.0,4.8.2,4+,Shopping,37,0,2,1
+1071039429,マッチング チャット - マッチング&恋人探しチャット,39368704,USD,0.0,0,0,0.0,0.0,1.1.1,17+,Social Networking,37,0,1,1
+1169325682,Bestshot: Take Clear Photos Automatically & Easily,24675328,USD,0.99,0,0,0.0,0.0,2.0.2,4+,Photo & Video,37,0,2,1
+1070854722,Be-be-bears!,480781312,USD,2.99,0,0,0.0,0.0,1.0.2.5,4+,Games,35,5,13,1
+1080235395,理财咖(管家版)-金融投资理财产品多样的手机理财工具!,17540096,USD,0.0,0,0,0.0,0.0,1.5,4+,Finance,38,0,2,1
+1173723621,弑仙问情,151494656,USD,0.99,0,0,0.0,0.0,1.0,9+,Games,40,5,1,1
+1069757051,口袋理财(标准版)-上市公司报喜鸟投资,52287488,USD,0.0,0,0,0.0,0.0,6.1.0,17+,Finance,38,5,1,1
+1169971902,Hey Duggee: We Love Animals,136347648,USD,2.99,0,0,0.0,0.0,1.2,4+,Games,40,5,1,1
+1069757703,友達 恋人探し であい ちゃっと sns -ギャルとも,35565568,USD,0.0,0,0,0.0,0.0,1.1.1,17+,Social Networking,37,0,1,1
+1079758987,【難問謎解き】ねこ神様はクイズ好き?,73467904,USD,0.0,0,0,0.0,0.0,2.1.6,4+,Book,37,3,1,1
+1070725569,【悲報】鬼ヶ島終了のお知らせ -ゾンビ桃太郎が3Dすぎて鬼やばいwww-,147131392,USD,0.0,0,0,0.0,0.0,1.0.1,12+,Games,40,4,1,1
+1069789014,中学英文法総復習 パターンで覚える 瞬間英文法,22881280,USD,1.99,0,0,0.0,0.0,1.0.6,4+,Education,37,0,31,1
+1069796800,Brain15 − 脳トレ 無料パズル −,8912896,USD,0.0,0,0,0.0,0.0,1.2,12+,Games,38,0,1,1
+1170406182,Shark Boom - Challenge Friends with your Pet,245415936,USD,0.0,0,0,0.0,0.0,1.0.9,4+,Games,38,5,1,1
+1069830936,【謎解き】ヤミすぎ彼女からのメッセージ,16808960,USD,0.0,0,0,0.0,0.0,1.2,9+,Book,38,0,1,1
+1070052833,Go!Go!Cat!,91468800,USD,0.0,0,0,0.0,0.0,1.1.2,12+,Games,37,2,2,1
+1081295232,Suppin Detective: Expose their true visage!,83026944,USD,0.0,0,0,0.0,0.0,1.0.3,12+,Entertainment,40,0,1,1
+977965019,みんなのお弁当 by クックパッド ~お弁当をレシピ付きで記録・共有~,51174400,USD,0.0,0,0,0.0,0.0,1.4.0,4+,Food & Drink,37,0,1,1
diff --git a/Notebooks/Python_Basic/04_Scopes.ipynb b/Notebooks/Python_Basic/04_Scopes.ipynb
index 632084aa..625be75e 100755
--- a/Notebooks/Python_Basic/04_Scopes.ipynb
+++ b/Notebooks/Python_Basic/04_Scopes.ipynb
@@ -53,7 +53,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 17,
+   "execution_count": 3,
    "metadata": {},
    "outputs": [
     {
@@ -73,14 +73,15 @@
     "    #print(x)\n",
     "    x = 'local1'\n",
     "    def local2():\n",
-    "        #print(x)\n",
     "        x = 'local2'\n",
-    "        print(x)\n",
+    "        #print(x)\n",
+    "        print(x) #x prints local2 here becuse it is local2 within the scope of local2\n",
     "    local2()   \n",
-    "    print(x)\n",
+    "    print(x) #we closed local2 and are now within local1, so local1 is printed\n",
     "\n",
     "local1()\n",
-    "print(x)"
+    "print(x) #now that we closed local1 as well, it prints global because that's what we defined x to be on the global scope\n",
+    "#if we had not defined x within the inner scope, it would print the value of x from the nearest outer scope"
    ]
   },
   {
@@ -99,7 +100,7 @@
   },
   {
    "cell_type": "code",
-   "execution_count": 2,
+   "execution_count": 4,
    "metadata": {},
    "outputs": [
     {
@@ -108,22 +109,20 @@
      "text": [
       "What's your name: My_name is Renato\n",
       "What's your name: My name is Pedro\n",
-      "What's your name: My name is Pedro\n",
-      "What's your name: My_name is Renato\n",
-      "What's your name: My name is Leonardo\n",
-      "What's your name: My name is Leonardo\n",
-      "What's your name: None\n"
+      "What's your name: My name is Pedro\n"
      ]
     },
     {
-     "ename": "NameError",
-     "evalue": "name 'function_inner_scope' is not defined",
+     "ename": "UnboundLocalError",
+     "evalue": "cannot access local variable 'x' where it is not associated with a value",
      "output_type": "error",
      "traceback": [
       "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
-      "\u001b[0;31mNameError\u001b[0m                                 Traceback (most recent call last)",
-      "\u001b[0;32m<ipython-input-2-57ffd174d33a>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m     23\u001b[0m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34mf'What\\'s your name: {x}'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m     24\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 25\u001b[0;31m \u001b[0mfunction_inner_scope\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m   \u001b[0;31m# error - the funtion does not exist in this scope\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
-      "\u001b[0;31mNameError\u001b[0m: name 'function_inner_scope' is not defined"
+      "\u001b[0;31mUnboundLocalError\u001b[0m                         Traceback (most recent call last)",
+      "\u001b[1;32m/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb Cell 9\u001b[0m line \u001b[0;36m2\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=15'>16</a>\u001b[0m     \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=18'>19</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n\u001b[0;32m---> <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=20'>21</a>\u001b[0m x \u001b[39m=\u001b[39m function_main_scope()\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=22'>23</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=24'>25</a>\u001b[0m function_inner_scope()\n",
+      "\u001b[1;32m/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb Cell 9\u001b[0m line \u001b[0;36m1\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=12'>13</a>\u001b[0m     \u001b[39mreturn\u001b[39;00m x\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=13'>14</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n\u001b[0;32m---> <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=14'>15</a>\u001b[0m x \u001b[39m=\u001b[39m function_inner_scope()\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=15'>16</a>\u001b[0m \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n",
+      "\u001b[1;32m/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb Cell 9\u001b[0m line \u001b[0;36m8\n\u001b[1;32m      <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=6'>7</a>\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mfunction_inner_scope\u001b[39m():\n\u001b[0;32m----> <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=7'>8</a>\u001b[0m     x\n\u001b[1;32m      <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=8'>9</a>\u001b[0m     \u001b[39mprint\u001b[39m(\u001b[39mf\u001b[39m\u001b[39m'\u001b[39m\u001b[39mWhat\u001b[39m\u001b[39m\\'\u001b[39;00m\u001b[39ms your name: \u001b[39m\u001b[39m{\u001b[39;00mx\u001b[39m}\u001b[39;00m\u001b[39m'\u001b[39m)\n\u001b[1;32m     <a href='vscode-notebook-cell:/Users/magdalenaadlesgruber/Python_Course/Notebooks/Python_Basic/04_Scopes.ipynb#X11sZmlsZQ%3D%3D?line=9'>10</a>\u001b[0m     x \u001b[39m=\u001b[39m \u001b[39m'\u001b[39m\u001b[39mMy name is Leonardo\u001b[39m\u001b[39m'\u001b[39m\n",
+      "\u001b[0;31mUnboundLocalError\u001b[0m: cannot access local variable 'x' where it is not associated with a value"
      ]
     }
    ],