├── api ├── main.py └── templates │ ├── index.html │ ├── menu.css │ ├── script.js │ └── style.css ├── arreglo multidimensional.py ├── calculadra imc.py ├── chat con emojis.py ├── comparaciones.py ├── frontend ├── index.html ├── menu.css ├── script.js └── style.css └── machine learning ├── PruebaMachineLearning.ipynb ├── android-games.csv ├── deportes-ml.joblib └── deportes.csv /api/main.py: -------------------------------------------------------------------------------- 1 | from flask import Flask, render_template, jsonify, request 2 | from flask_mysqldb import MySQL 3 | from flask_cors import CORS, cross_origin 4 | 5 | app = Flask(__name__) 6 | cors = CORS(app) 7 | app.config['CORS_HEADERS'] = 'Content-Type' 8 | app.config['MYSQL_HOST'] = 'localhost' 9 | app.config['MYSQL_USER'] = 'root' 10 | app.config['MYSQL_PASSWORD'] = '' 11 | app.config['MYSQL_DB'] = 'system' 12 | mysql = MySQL(app) 13 | 14 | @app.route('/api/customers') 15 | @cross_origin() 16 | def getAllCustomers(): 17 | cur = mysql.connection.cursor() 18 | cur.execute('SELECT id, firstname, lastname, email, phone, address FROM customers') 19 | data = cur.fetchall() 20 | result = [] 21 | for row in data: 22 | content = { 23 | 'id':row[0], 24 | 'firstname': row[1], 25 | 'lastname': row[2], 26 | 'email': row[3], 27 | 'phone': row[4], 28 | 'address': row[5] 29 | } 30 | result.append(content) 31 | return jsonify(result) 32 | 33 | @app.route('/api/customers/') 34 | @cross_origin() 35 | def getCustomer(id): 36 | cur = mysql.connection.cursor() 37 | cur.execute('SELECT id, firstname, lastname, email, phone, address FROM customers WHERE id = ' + str(id)) 38 | data = cur.fetchall() 39 | content = {} 40 | for row in data: 41 | content = { 42 | 'id':row[0], 43 | 'firstname': row[1], 44 | 'lastname': row[2], 45 | 'email': row[3], 46 | 'phone': row[4], 47 | 'address': row[5] 48 | } 49 | return jsonify(content) 50 | 51 | @app.route('/api/customers', methods=['POST']) 52 | @cross_origin() 53 | def createCustomer(): 54 | if 'id' in request.json: 55 | updateCustomer() 56 | else: 57 | createCustomer() 58 | return "ok" 59 | 60 | def createCustomer(): 61 | cur = mysql.connection.cursor() 62 | cur.execute("INSERT INTO `customers` (`id`, `firstname`, `lastname`, `email`, `phone`, `address`) VALUES (NULL, %s, %s, %s, %s, %s);", 63 | (request.json['firstname'], request.json['lastname'], request.json['email'], request.json['phone'], request.json['address'])) 64 | mysql.connection.commit() 65 | return "Cliente guardado" 66 | 67 | def updateCustomer(): 68 | cur = mysql.connection.cursor() 69 | cur.execute("UPDATE `customers` SET `firstname` = %s, `lastname` = %s, `email` = %s, `phone` = %s, `address` = %s WHERE `customers`.`id` = %s;", 70 | (request.json['firstname'], request.json['lastname'], request.json['email'], request.json['phone'], request.json['address'], request.json['id'])) 71 | mysql.connection.commit() 72 | return "Cliente guardado" 73 | 74 | @app.route('/api/customers/', methods=['DELETE']) 75 | @cross_origin() 76 | def removeCustomer(id): 77 | cur = mysql.connection.cursor() 78 | cur.execute("DELETE FROM `customers` WHERE `customers`.`id` = " + str(id)) 79 | mysql.connection.commit() 80 | return "Cliente eliminado" 81 | 82 | @app.route('/') 83 | @cross_origin() 84 | def index(): 85 | return render_template('index.html') 86 | 87 | @app.route('/') 88 | @cross_origin() 89 | def publicFiles(path): 90 | return render_template(path) 91 | 92 | if __name__ == '__main__': 93 | app.run(None, 3000, True) -------------------------------------------------------------------------------- /api/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 28 | 29 | 30 | 31 | 32 |

Gestión de Clientes

33 | 34 | Agregar Cliente 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
NombreApellidoEmailTeléfonoAcciones
52 | 53 | 54 | 55 | 56 | 57 | 78 | -------------------------------------------------------------------------------- /api/templates/menu.css: -------------------------------------------------------------------------------- 1 | #menu { 2 | background: #0099CC; 3 | color: #FFF; 4 | height: 45px; 5 | padding-left: 18px; 6 | border-radius: 10px; 7 | } 8 | #menu ul, #menu li { 9 | margin: 0 auto; 10 | padding: 0; 11 | list-style: none 12 | } 13 | #menu ul { 14 | width: 100%; 15 | } 16 | #menu li { 17 | float: left; 18 | display: inline; 19 | position: relative; 20 | } 21 | #menu a { 22 | display: block; 23 | line-height: 45px; 24 | padding: 0 14px; 25 | text-decoration: none; 26 | color: #FFFFFF; 27 | font-size: 16px; 28 | } 29 | #menu a.dropdown-arrow:after { 30 | content: "\25BE"; 31 | margin-left: 5px; 32 | } 33 | #menu li a:hover { 34 | color: #0099CC; 35 | background: #F2F2F2; 36 | } 37 | #menu input { 38 | display: none; 39 | margin: 0; 40 | padding: 0; 41 | height: 45px; 42 | width: 100%; 43 | opacity: 0; 44 | cursor: pointer 45 | } 46 | #menu label { 47 | display: none; 48 | line-height: 45px; 49 | text-align: center; 50 | position: absolute; 51 | left: 35px 52 | } 53 | #menu label:before { 54 | font-size: 1.6em; 55 | content: "\2261"; 56 | margin-left: 20px; 57 | } 58 | #menu ul.sub-menus{ 59 | height: auto; 60 | overflow: hidden; 61 | width: 170px; 62 | background: #444444; 63 | position: absolute; 64 | z-index: 99; 65 | display: none; 66 | } 67 | #menu ul.sub-menus li { 68 | display: block; 69 | width: 100%; 70 | } 71 | #menu ul.sub-menus a { 72 | color: #FFFFFF; 73 | font-size: 16px; 74 | } 75 | #menu li:hover ul.sub-menus { 76 | display: block 77 | } 78 | #menu ul.sub-menus a:hover{ 79 | background: #F2F2F2; 80 | color: #444444; 81 | } 82 | @media screen and (max-width: 800px){ 83 | #menu {position:relative} 84 | #menu ul {background:#111;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none} 85 | #menu ul.sub-menus {width:100%;position:static;} 86 | #menu ul.sub-menus a {padding-left:30px;} 87 | #menu li {display:block;float:none;width:auto;} 88 | #menu input, #menu label {position:absolute;top:0;left:0;display:block} 89 | #menu input {z-index:4} 90 | #menu input:checked + label {color:white} 91 | #menu input:checked + label:before {content:"\00d7"} 92 | #menu input:checked ~ ul {display:block} 93 | } -------------------------------------------------------------------------------- /api/templates/script.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded", init); 2 | const URL_API = 'http://localhost:3000/api/' 3 | 4 | var customers = [] 5 | 6 | function init() { 7 | search() 8 | } 9 | 10 | function agregar() { 11 | clean() 12 | abrirFormulario() 13 | } 14 | 15 | function abrirFormulario() { 16 | htmlModal = document.getElementById("modal"); 17 | htmlModal.setAttribute("class", "modale opened"); 18 | } 19 | 20 | function cerrarModal() { 21 | htmlModal = document.getElementById("modal"); 22 | htmlModal.setAttribute("class", "modale"); 23 | } 24 | 25 | 26 | async function search() { 27 | var url = URL_API + 'customers' 28 | var response = await fetch(url, { 29 | "method": 'GET', 30 | "headers": { 31 | "Content-Type": 'application/json' 32 | } 33 | }) 34 | customers = await response.json(); 35 | 36 | var html = '' 37 | for (customer of customers) { 38 | var row = ` 39 | ${customer.firstname} 40 | ${customer.lastname} 41 | ${customer.email} 42 | ${customer.phone} 43 | 44 | Editar 45 | Eliminar 46 | 47 | ` 48 | html = html + row; 49 | } 50 | 51 | 52 | document.querySelector('#customers > tbody').outerHTML = html 53 | } 54 | 55 | function edit(id) { 56 | abrirFormulario() 57 | var customer = customers.find(x => x.id == id) 58 | document.getElementById('txtId').value = customer.id 59 | document.getElementById('txtFirstname').value = customer.firstname 60 | document.getElementById('txtLastname').value = customer.lastname 61 | document.getElementById('txtPhone').value = customer.phone 62 | document.getElementById('txtAddress').value = customer.address 63 | document.getElementById('txtEmail').value = customer.email 64 | } 65 | 66 | async function remove(id) { 67 | respuesta = confirm('¿Está seguro de eliminarlo?') 68 | if (respuesta) { 69 | var url = URL_API + 'customers/' + id 70 | await fetch(url, { 71 | "method": 'DELETE', 72 | "headers": { 73 | "Content-Type": 'application/json' 74 | } 75 | }) 76 | window.location.reload(); 77 | } 78 | } 79 | 80 | function clean() { 81 | document.getElementById('txtId').value = '' 82 | document.getElementById('txtFirstname').value = '' 83 | document.getElementById('txtLastname').value = '' 84 | document.getElementById('txtPhone').value = '' 85 | document.getElementById('txtAddress').value = '' 86 | document.getElementById('txtEmail').value = '' 87 | } 88 | 89 | async function save() { 90 | var data = { 91 | "address": document.getElementById('txtAddress').value, 92 | "email": document.getElementById('txtEmail').value, 93 | "firstname": document.getElementById('txtFirstname').value, 94 | "lastname": document.getElementById('txtLastname').value, 95 | "phone": document.getElementById('txtPhone').value 96 | } 97 | 98 | var id = document.getElementById('txtId').value 99 | if (id != '') { 100 | data.id = id 101 | } 102 | 103 | var url = URL_API + 'customers' 104 | await fetch(url, { 105 | "method": 'POST', 106 | "body": JSON.stringify(data), 107 | "headers": { 108 | "Content-Type": 'application/json' 109 | } 110 | }) 111 | window.location.reload(); 112 | } -------------------------------------------------------------------------------- /api/templates/style.css: -------------------------------------------------------------------------------- 1 | #customers { 2 | font-family: Arial, Helvetica, sans-serif; 3 | border-collapse: collapse; 4 | width: 100%; 5 | } 6 | 7 | #customers td, 8 | #customers th { 9 | border: 1px solid #ddd; 10 | padding: 8px; 11 | } 12 | 13 | #customers tr:nth-child(even) { 14 | background-color: #f2f2f2; 15 | } 16 | 17 | #customers tr:hover { 18 | background-color: #ddd; 19 | } 20 | 21 | #customers th { 22 | padding-top: 12px; 23 | padding-bottom: 12px; 24 | text-align: left; 25 | background-color: #04AA6D; 26 | color: white; 27 | } 28 | 29 | .myButton { 30 | box-shadow: 0px 1px 0px 0px #f0f7fa; 31 | background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%); 32 | background-color: #33bdef; 33 | border-radius: 6px; 34 | border: 1px solid #057fd0; 35 | display: inline-block; 36 | cursor: pointer; 37 | color: #ffffff; 38 | font-family: Arial; 39 | font-size: 15px; 40 | font-weight: bold; 41 | padding: 6px 24px; 42 | text-decoration: none; 43 | text-shadow: 0px -1px 0px #5b6178; 44 | } 45 | 46 | .myButton:hover { 47 | background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%); 48 | background-color: #019ad2; 49 | } 50 | 51 | .myButton:active { 52 | position: relative; 53 | top: 1px; 54 | } 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | .btnDelete { 68 | box-shadow: 0px 1px 0px 0px #f0f7fa; 69 | background: linear-gradient(to bottom, #ed3434 5%, #d10202 100%); 70 | background-color: #ed3434; 71 | border-radius: 6px; 72 | border: 1px solid #cf0606; 73 | display: inline-block; 74 | cursor: pointer; 75 | color: #ffffff; 76 | font-family: Arial; 77 | font-size: 15px; 78 | font-weight: bold; 79 | padding: 6px 24px; 80 | text-decoration: none; 81 | text-shadow: 0px -1px 0px #5b6178; 82 | } 83 | 84 | .btnDelete:hover { 85 | background: linear-gradient(to bottom, #d10202 5%, #ed3434 100%); 86 | background-color: #d10202; 87 | } 88 | 89 | .btnDelete:active { 90 | position: relative; 91 | top: 1px; 92 | } 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | body{ 111 | font-family:sans-serif; 112 | color:#333; 113 | } 114 | 115 | .btn { 116 | background: #428bca; 117 | border: #357ebd solid 0px; 118 | border-radius: 3px; 119 | color: #fff; 120 | display: inline-block; 121 | font-size: 14px; 122 | padding: 8px 15px; 123 | text-decoration: none; 124 | text-align: center; 125 | min-width: 60px; 126 | position: relative; 127 | transition: color .1s ease; 128 | } 129 | .btn:hover { 130 | background: #357ebd; 131 | } 132 | .btn.btn-big { 133 | font-size: 18px; 134 | padding: 15px 20px; 135 | min-width: 100px; 136 | } 137 | .btn-close { 138 | color: #aaaaaa; 139 | font-size: 20px; 140 | text-decoration: none; 141 | padding:10px; 142 | position: absolute; 143 | right: 7px; 144 | top: 0; 145 | } 146 | .btn-close:hover { 147 | color: #919191; 148 | } 149 | .modale:before { 150 | content: ""; 151 | display: none; 152 | background: rgba(0, 0, 0, 0.6); 153 | position: fixed; 154 | top: 0; 155 | left: 0; 156 | right: 0; 157 | bottom: 0; 158 | z-index: 10; 159 | } 160 | .opened:before { 161 | display: block; 162 | } 163 | .opened .modal-dialog { 164 | -webkit-transform: translate(0, 0); 165 | -ms-transform: translate(0, 0); 166 | transform: translate(0, 0); 167 | top: 20%; 168 | } 169 | .modal-dialog { 170 | background: #fefefe; 171 | border: #333333 solid 0px; 172 | border-radius: 5px; 173 | margin-left: -200px; 174 | text-align:center; 175 | position: fixed; 176 | left: 50%; 177 | top: -100%; 178 | z-index: 11; 179 | width: 360px; 180 | box-shadow:0 5px 10px rgba(0,0,0,0.3); 181 | -webkit-transform: translate(0, -500%); 182 | -ms-transform: translate(0, -500%); 183 | transform: translate(0, -500%); 184 | -webkit-transition: -webkit-transform 0.3s ease-out; 185 | -moz-transition: -moz-transform 0.3s ease-out; 186 | -o-transition: -o-transform 0.3s ease-out; 187 | transition: transform 0.3s ease-out; 188 | } 189 | .modal-body { 190 | padding: 20px; 191 | } 192 | .modal-body input{ 193 | width:200px; 194 | padding:8px; 195 | border:1px solid #ddd; 196 | color:#888; 197 | outline:0; 198 | font-size:14px; 199 | font-weight:bold 200 | } 201 | .modal-header, 202 | .modal-footer { 203 | padding: 10px 20px; 204 | } 205 | .modal-header { 206 | border-bottom: #eeeeee solid 1px; 207 | } 208 | .modal-header h2 { 209 | font-size: 20px; 210 | } -------------------------------------------------------------------------------- /arreglo multidimensional.py: -------------------------------------------------------------------------------- 1 | historial = [ 2 | [34.5, 45.6, "2022/02/02 17:20:24"], 3 | [34.5, 46.3, "2022/02/02 17:20:34"], 4 | [35.5, 47.3, "2022/02/02 17:20:44"], 5 | [35.5, 47.3, "2022/02/02 17:20:54"], 6 | [34.5, 48.3, "2022/02/02 17:21:04"], 7 | [33.5, 49.3, "2022/02/02 17:21:14"], 8 | ] 9 | 10 | indiceLongitud = 0 11 | indiceLatitud = 1 12 | indiceFecha = 2 13 | 14 | for coordenada in historial: 15 | print(coordenada) -------------------------------------------------------------------------------- /calculadra imc.py: -------------------------------------------------------------------------------- 1 | # Calculadora de IMC 2 | # IMC = Peso / (Altura x Altura) 3 | # < 19: delgadez 4 | # entre 20 y 25: normal 5 | # entre 26 y 30: sobrepeso 6 | # > de 30: obesidad 7 | 8 | peso = int(input('Ingrese su peso en kg')) 9 | alturaEnCM = int(input('Ingrese su altura en cm')) 10 | alturaEnMetros = alturaEnCM / 100 11 | imc = peso / (alturaEnMetros * alturaEnMetros) 12 | 13 | print('Su IMC es de ' + str(imc)) 14 | 15 | if imc < 20: 16 | print('Estado de delgadez') 17 | if imc >= 20 and imc < 26: 18 | print('Peso normal') 19 | if imc >= 26 and imc < 30: 20 | print('Estado de sobrepeso') 21 | if imc >= 30: 22 | print('Estado de obesidad') -------------------------------------------------------------------------------- /chat con emojis.py: -------------------------------------------------------------------------------- 1 | seguirChateando = True 2 | while seguirChateando: 3 | texto = input('>') 4 | if texto == 'salir': 5 | seguirChateando = False 6 | texto = texto.replace(':)', '😊') 7 | texto = texto.replace(':(', '☹') 8 | texto = texto.replace(':P', '😛') 9 | texto = texto.replace(':p', '😛') 10 | texto = texto.replace(':*', '😘') 11 | texto = texto.replace(':S', '😕') 12 | texto = texto.replace(':s', '😕') 13 | print(texto) 14 | -------------------------------------------------------------------------------- /comparaciones.py: -------------------------------------------------------------------------------- 1 | nombre = input('¿Cómo te llamas?') 2 | print('Hola ' + nombre) 3 | 4 | edad = int(input('¿Cuántos años tienes?')) 5 | masDe12 = edad >= 12 6 | respuestaHijoDelDueño = input('¿Eres hijo del dueño?') 7 | esHijoDelDueño = respuestaHijoDelDueño == 'si' 8 | puedePasar = masDe12 or esHijoDelDueño 9 | 10 | if puedePasar: 11 | print('Usted puede pasar a la montaña rusa') 12 | else: 13 | print('No puede pasar') 14 | 15 | 16 | def mostrarPrecioFinal(producto, precio, descuento): 17 | precioFinal = precio - descuento * precio / 100 18 | print("El precio del " + producto + " es: $" + str(precioFinal)) 19 | 20 | mostrarPrecioFinal("Pantalón", 40, 20) 21 | mostrarPrecioFinal("Pantalón", 30, 15) -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 28 | 29 | 30 | 31 | 32 |

Gestión de Clientes

33 | 34 | Agregar Cliente 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 |
NombreApellidoEmailTeléfonoAcciones
52 | 53 | 54 | 55 | 56 | 57 | 78 | -------------------------------------------------------------------------------- /frontend/menu.css: -------------------------------------------------------------------------------- 1 | #menu { 2 | background: #0099CC; 3 | color: #FFF; 4 | height: 45px; 5 | padding-left: 18px; 6 | border-radius: 10px; 7 | } 8 | #menu ul, #menu li { 9 | margin: 0 auto; 10 | padding: 0; 11 | list-style: none 12 | } 13 | #menu ul { 14 | width: 100%; 15 | } 16 | #menu li { 17 | float: left; 18 | display: inline; 19 | position: relative; 20 | } 21 | #menu a { 22 | display: block; 23 | line-height: 45px; 24 | padding: 0 14px; 25 | text-decoration: none; 26 | color: #FFFFFF; 27 | font-size: 16px; 28 | } 29 | #menu a.dropdown-arrow:after { 30 | content: "\25BE"; 31 | margin-left: 5px; 32 | } 33 | #menu li a:hover { 34 | color: #0099CC; 35 | background: #F2F2F2; 36 | } 37 | #menu input { 38 | display: none; 39 | margin: 0; 40 | padding: 0; 41 | height: 45px; 42 | width: 100%; 43 | opacity: 0; 44 | cursor: pointer 45 | } 46 | #menu label { 47 | display: none; 48 | line-height: 45px; 49 | text-align: center; 50 | position: absolute; 51 | left: 35px 52 | } 53 | #menu label:before { 54 | font-size: 1.6em; 55 | content: "\2261"; 56 | margin-left: 20px; 57 | } 58 | #menu ul.sub-menus{ 59 | height: auto; 60 | overflow: hidden; 61 | width: 170px; 62 | background: #444444; 63 | position: absolute; 64 | z-index: 99; 65 | display: none; 66 | } 67 | #menu ul.sub-menus li { 68 | display: block; 69 | width: 100%; 70 | } 71 | #menu ul.sub-menus a { 72 | color: #FFFFFF; 73 | font-size: 16px; 74 | } 75 | #menu li:hover ul.sub-menus { 76 | display: block 77 | } 78 | #menu ul.sub-menus a:hover{ 79 | background: #F2F2F2; 80 | color: #444444; 81 | } 82 | @media screen and (max-width: 800px){ 83 | #menu {position:relative} 84 | #menu ul {background:#111;position:absolute;top:100%;right:0;left:0;z-index:3;height:auto;display:none} 85 | #menu ul.sub-menus {width:100%;position:static;} 86 | #menu ul.sub-menus a {padding-left:30px;} 87 | #menu li {display:block;float:none;width:auto;} 88 | #menu input, #menu label {position:absolute;top:0;left:0;display:block} 89 | #menu input {z-index:4} 90 | #menu input:checked + label {color:white} 91 | #menu input:checked + label:before {content:"\00d7"} 92 | #menu input:checked ~ ul {display:block} 93 | } -------------------------------------------------------------------------------- /frontend/script.js: -------------------------------------------------------------------------------- 1 | document.addEventListener("DOMContentLoaded", init); 2 | const URL_API = 'http://localhost:3000/api/' 3 | 4 | var customers = [] 5 | 6 | function init() { 7 | search() 8 | } 9 | 10 | function agregar() { 11 | clean() 12 | abrirFormulario() 13 | } 14 | 15 | function abrirFormulario() { 16 | htmlModal = document.getElementById("modal"); 17 | htmlModal.setAttribute("class", "modale opened"); 18 | } 19 | 20 | function cerrarModal() { 21 | htmlModal = document.getElementById("modal"); 22 | htmlModal.setAttribute("class", "modale"); 23 | } 24 | 25 | 26 | async function search() { 27 | var url = URL_API + 'customers' 28 | var response = await fetch(url, { 29 | "method": 'GET', 30 | "headers": { 31 | "Content-Type": 'application/json' 32 | } 33 | }) 34 | customers = await response.json(); 35 | 36 | var html = '' 37 | for (customer of customers) { 38 | var row = ` 39 | ${customer.firstname} 40 | ${customer.lastname} 41 | ${customer.email} 42 | ${customer.phone} 43 | 44 | Editar 45 | Eliminar 46 | 47 | ` 48 | html = html + row; 49 | } 50 | 51 | 52 | document.querySelector('#customers > tbody').outerHTML = html 53 | } 54 | 55 | function edit(id) { 56 | abrirFormulario() 57 | var customer = customers.find(x => x.id == id) 58 | document.getElementById('txtId').value = customer.id 59 | document.getElementById('txtFirstname').value = customer.firstname 60 | document.getElementById('txtLastname').value = customer.lastname 61 | document.getElementById('txtPhone').value = customer.phone 62 | document.getElementById('txtAddress').value = customer.address 63 | document.getElementById('txtEmail').value = customer.email 64 | } 65 | 66 | async function remove(id) { 67 | respuesta = confirm('¿Está seguro de eliminarlo?') 68 | if (respuesta) { 69 | var url = URL_API + 'customers/' + id 70 | await fetch(url, { 71 | "method": 'DELETE', 72 | "headers": { 73 | "Content-Type": 'application/json' 74 | } 75 | }) 76 | window.location.reload(); 77 | } 78 | } 79 | 80 | function clean() { 81 | document.getElementById('txtId').value = '' 82 | document.getElementById('txtFirstname').value = '' 83 | document.getElementById('txtLastname').value = '' 84 | document.getElementById('txtPhone').value = '' 85 | document.getElementById('txtAddress').value = '' 86 | document.getElementById('txtEmail').value = '' 87 | } 88 | 89 | async function save() { 90 | var data = { 91 | "address": document.getElementById('txtAddress').value, 92 | "email": document.getElementById('txtEmail').value, 93 | "firstname": document.getElementById('txtFirstname').value, 94 | "lastname": document.getElementById('txtLastname').value, 95 | "phone": document.getElementById('txtPhone').value 96 | } 97 | 98 | var id = document.getElementById('txtId').value 99 | if (id != '') { 100 | data.id = id 101 | } 102 | 103 | var url = URL_API + 'customers' 104 | await fetch(url, { 105 | "method": 'POST', 106 | "body": JSON.stringify(data), 107 | "headers": { 108 | "Content-Type": 'application/json' 109 | } 110 | }) 111 | window.location.reload(); 112 | } -------------------------------------------------------------------------------- /frontend/style.css: -------------------------------------------------------------------------------- 1 | #customers { 2 | font-family: Arial, Helvetica, sans-serif; 3 | border-collapse: collapse; 4 | width: 100%; 5 | } 6 | 7 | #customers td, 8 | #customers th { 9 | border: 1px solid #ddd; 10 | padding: 8px; 11 | } 12 | 13 | #customers tr:nth-child(even) { 14 | background-color: #f2f2f2; 15 | } 16 | 17 | #customers tr:hover { 18 | background-color: #ddd; 19 | } 20 | 21 | #customers th { 22 | padding-top: 12px; 23 | padding-bottom: 12px; 24 | text-align: left; 25 | background-color: #04AA6D; 26 | color: white; 27 | } 28 | 29 | .myButton { 30 | box-shadow: 0px 1px 0px 0px #f0f7fa; 31 | background: linear-gradient(to bottom, #33bdef 5%, #019ad2 100%); 32 | background-color: #33bdef; 33 | border-radius: 6px; 34 | border: 1px solid #057fd0; 35 | display: inline-block; 36 | cursor: pointer; 37 | color: #ffffff; 38 | font-family: Arial; 39 | font-size: 15px; 40 | font-weight: bold; 41 | padding: 6px 24px; 42 | text-decoration: none; 43 | text-shadow: 0px -1px 0px #5b6178; 44 | } 45 | 46 | .myButton:hover { 47 | background: linear-gradient(to bottom, #019ad2 5%, #33bdef 100%); 48 | background-color: #019ad2; 49 | } 50 | 51 | .myButton:active { 52 | position: relative; 53 | top: 1px; 54 | } 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | .btnDelete { 68 | box-shadow: 0px 1px 0px 0px #f0f7fa; 69 | background: linear-gradient(to bottom, #ed3434 5%, #d10202 100%); 70 | background-color: #ed3434; 71 | border-radius: 6px; 72 | border: 1px solid #cf0606; 73 | display: inline-block; 74 | cursor: pointer; 75 | color: #ffffff; 76 | font-family: Arial; 77 | font-size: 15px; 78 | font-weight: bold; 79 | padding: 6px 24px; 80 | text-decoration: none; 81 | text-shadow: 0px -1px 0px #5b6178; 82 | } 83 | 84 | .btnDelete:hover { 85 | background: linear-gradient(to bottom, #d10202 5%, #ed3434 100%); 86 | background-color: #d10202; 87 | } 88 | 89 | .btnDelete:active { 90 | position: relative; 91 | top: 1px; 92 | } 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | body{ 111 | font-family:sans-serif; 112 | color:#333; 113 | } 114 | 115 | .btn { 116 | background: #428bca; 117 | border: #357ebd solid 0px; 118 | border-radius: 3px; 119 | color: #fff; 120 | display: inline-block; 121 | font-size: 14px; 122 | padding: 8px 15px; 123 | text-decoration: none; 124 | text-align: center; 125 | min-width: 60px; 126 | position: relative; 127 | transition: color .1s ease; 128 | } 129 | .btn:hover { 130 | background: #357ebd; 131 | } 132 | .btn.btn-big { 133 | font-size: 18px; 134 | padding: 15px 20px; 135 | min-width: 100px; 136 | } 137 | .btn-close { 138 | color: #aaaaaa; 139 | font-size: 20px; 140 | text-decoration: none; 141 | padding:10px; 142 | position: absolute; 143 | right: 7px; 144 | top: 0; 145 | } 146 | .btn-close:hover { 147 | color: #919191; 148 | } 149 | .modale:before { 150 | content: ""; 151 | display: none; 152 | background: rgba(0, 0, 0, 0.6); 153 | position: fixed; 154 | top: 0; 155 | left: 0; 156 | right: 0; 157 | bottom: 0; 158 | z-index: 10; 159 | } 160 | .opened:before { 161 | display: block; 162 | } 163 | .opened .modal-dialog { 164 | -webkit-transform: translate(0, 0); 165 | -ms-transform: translate(0, 0); 166 | transform: translate(0, 0); 167 | top: 20%; 168 | } 169 | .modal-dialog { 170 | background: #fefefe; 171 | border: #333333 solid 0px; 172 | border-radius: 5px; 173 | margin-left: -200px; 174 | text-align:center; 175 | position: fixed; 176 | left: 50%; 177 | top: -100%; 178 | z-index: 11; 179 | width: 360px; 180 | box-shadow:0 5px 10px rgba(0,0,0,0.3); 181 | -webkit-transform: translate(0, -500%); 182 | -ms-transform: translate(0, -500%); 183 | transform: translate(0, -500%); 184 | -webkit-transition: -webkit-transform 0.3s ease-out; 185 | -moz-transition: -moz-transform 0.3s ease-out; 186 | -o-transition: -o-transform 0.3s ease-out; 187 | transition: transform 0.3s ease-out; 188 | } 189 | .modal-body { 190 | padding: 20px; 191 | } 192 | .modal-body input{ 193 | width:200px; 194 | padding:8px; 195 | border:1px solid #ddd; 196 | color:#888; 197 | outline:0; 198 | font-size:14px; 199 | font-weight:bold 200 | } 201 | .modal-header, 202 | .modal-footer { 203 | padding: 10px 20px; 204 | } 205 | .modal-header { 206 | border-bottom: #eeeeee solid 1px; 207 | } 208 | .modal-header h2 { 209 | font-size: 20px; 210 | } -------------------------------------------------------------------------------- /machine learning/PruebaMachineLearning.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 44, 6 | "id": "6ceffe93", 7 | "metadata": { 8 | "scrolled": false 9 | }, 10 | "outputs": [ 11 | { 12 | "data": { 13 | "text/plain": [ 14 | "array(['Football', 'Basket'], dtype=object)" 15 | ] 16 | }, 17 | "execution_count": 44, 18 | "metadata": {}, 19 | "output_type": "execute_result" 20 | } 21 | ], 22 | "source": [ 23 | "import pandas as pd\n", 24 | "from sklearn.tree import DecisionTreeClassifier\n", 25 | "import joblib\n", 26 | "\n", 27 | "#dataset = pd.read_csv('deportes.csv')\n", 28 | "#inputs = dataset.drop(columns=['deporte'])\n", 29 | "#outputs = dataset['deporte']\n", 30 | "\n", 31 | "#modelo = DecisionTreeClassifier()\n", 32 | "#modelo.fit(inputs, outputs)\n", 33 | "\n", 34 | "#joblib.dump(modelo, 'deportes-ml.joblib')\n", 35 | "\n", 36 | "modelo = joblib.load('deportes-ml.joblib')\n", 37 | "\n", 38 | "predicciones = modelo.predict([ [1, 24], [2,33] ])\n", 39 | "predicciones" 40 | ] 41 | }, 42 | { 43 | "cell_type": "code", 44 | "execution_count": null, 45 | "id": "7cd2df37", 46 | "metadata": {}, 47 | "outputs": [], 48 | "source": [] 49 | }, 50 | { 51 | "cell_type": "code", 52 | "execution_count": null, 53 | "id": "5108e909", 54 | "metadata": {}, 55 | "outputs": [], 56 | "source": [] 57 | }, 58 | { 59 | "cell_type": "code", 60 | "execution_count": null, 61 | "id": "38f0c591", 62 | "metadata": {}, 63 | "outputs": [], 64 | "source": [] 65 | } 66 | ], 67 | "metadata": { 68 | "kernelspec": { 69 | "display_name": "Python 3 (ipykernel)", 70 | "language": "python", 71 | "name": "python3" 72 | }, 73 | "language_info": { 74 | "codemirror_mode": { 75 | "name": "ipython", 76 | "version": 3 77 | }, 78 | "file_extension": ".py", 79 | "mimetype": "text/x-python", 80 | "name": "python", 81 | "nbconvert_exporter": "python", 82 | "pygments_lexer": "ipython3", 83 | "version": "3.9.7" 84 | } 85 | }, 86 | "nbformat": 4, 87 | "nbformat_minor": 5 88 | } 89 | -------------------------------------------------------------------------------- /machine learning/android-games.csv: -------------------------------------------------------------------------------- 1 | rank,title,total ratings,installs,average rating,growth (30 days),growth (60 days),price,category,5 star ratings,4 star ratings,3 star ratings,2 star ratings,1 star ratings,paid 2 | 1,Garena Free Fire- World Series,86273129,500.0 M,4,2.1,6.9,0.0,GAME ACTION,63546766,4949507,3158756,2122183,12495915,False 3 | 2,PUBG MOBILE - Traverse,37276732,500.0 M,4,1.8,3.6,0.0,GAME ACTION,28339753,2164478,1253185,809821,4709492,False 4 | 3,Mobile Legends: Bang Bang,26663595,100.0 M,4,1.5,3.2,0.0,GAME ACTION,18777988,1812094,1050600,713912,4308998,False 5 | 4,Brawl Stars,17971552,100.0 M,4,1.4,4.4,0.0,GAME ACTION,13018610,1552950,774012,406184,2219794,False 6 | 5,Sniper 3D: Fun Free Online FPS Shooting Game,14464235,500.0 M,4,0.8,1.5,0.0,GAME ACTION,9827328,2124154,1047741,380670,1084340,False 7 | 6,Call of Duty®: Mobile - Season 4: Spurned & Burned,13572148,100.0 M,4,2.0,4.0,0.0,GAME ACTION,10501443,1274162,517273,268489,1010778,False 8 | 7,Among Us,11936964,100.0 M,3,1.8,5.6,0.0,GAME ACTION,5954262,1041297,853099,719378,3368926,False 9 | 8,Temple Run 2,9633929,500.0 M,4,0.3,0.8,0.0,GAME ACTION,6579369,991341,614643,349003,1099571,False 10 | 9,PUBG MOBILE LITE,7578630,100.0 M,4,1.0,2.5,0.0,GAME ACTION,5382545,500696,351523,238986,1104879,False 11 | 10,Gangstar Vegas: World of Crime,6268377,100.0 M,4,0.4,1.0,0.0,GAME ACTION,4509647,605510,319332,167792,666094,False 12 | 11,Pixel Gun 3D: FPS Shooter & Battle Royale,5681934,100.0 M,4,0.2,0.5,0.0,GAME ACTION,3866308,527159,326294,186593,775578,False 13 | 12,Bowmasters,5471344,100.0 M,4,2.0,4.1,0.0,GAME ACTION,4319351,514574,229990,98901,308525,False 14 | 13,Standoff 2,4801658,50.0 M,4,3.0,7.6,0.0,GAME ACTION,3884644,365380,135150,65422,351059,False 15 | 14,Talking Tom Gold Run,4710639,100.0 M,4,1.3,4012.8,0.0,GAME ACTION,3581634,397794,200800,116460,413948,False 16 | 15,Garena Liên Quân Mobile,4564398,50.0 M,4,1.0,2.7,0.0,GAME ACTION,3142312,386513,204843,111645,719082,False 17 | 16,Banana Kong,4496723,100.0 M,4,0.5,1.0,0.0,GAME ACTION,3497817,518453,223009,72115,185328,False 18 | 17,Crossy Road,4464668,100.0 M,4,0.1,0.2,0.0,GAME ACTION,3379550,576816,234463,68644,205194,False 19 | 18,War Robots. 6v6 Tactical Multiplayer Battles,4221389,50.0 M,3,692.7,0.6,0.0,GAME ACTION,2634036,450688,267931,164087,704645,False 20 | 19,MORTAL KOMBAT: The Ultimate Fighting Game!,4215808,50.0 M,4,0.5,1.2,0.0,GAME ACTION,2874353,457806,254154,136153,493340,False 21 | 20,Last Day on Earth: Survival,4159837,50.0 M,4,0.7,1.6,0.0,GAME ACTION,3073534,463932,205166,103198,314004,False 22 | 21,Agar.io,4112075,100.0 M,3,0.2,0.3,0.0,GAME ACTION,2493810,428315,289428,156522,743997,False 23 | 22,DEER HUNTER CLASSIC,3987062,100.0 M,4,0.0,0.0,0.0,GAME ACTION,2776350,614755,242698,81199,272058,False 24 | 23,Modern Combat 5: eSports FPS,3516024,100.0 M,4,0.5,1.0,0.0,GAME ACTION,2419540,421218,214049,100008,361206,False 25 | 24,Kick the Buddy,3213257,100.0 M,4,1.0,2.3,0.0,GAME ACTION,2174466,265019,189630,118612,465528,False 26 | 25,Special Forces Group 2,3195503,100.0 M,4,1.4,7584.9,0.0,GAME ACTION,2486283,232254,118927,70889,287147,False 27 | 26,DEAD TRIGGER 2 - Zombie Game FPS shooter,3140510,50.0 M,4,0.2,0.5,0.0,GAME ACTION,2332406,409344,156460,63835,178462,False 28 | 27,Mini Militia - Doodle Army 2,3133361,100.0 M,4,0.9,2.1,0.0,GAME ACTION,2107121,271167,174340,107203,473528,False 29 | 28,Call of Duty®: Mobile - Garena,2695923,10.0 M,4,3.2,5.5,0.0,GAME ACTION,1922909,223625,133776,79762,335849,False 30 | 29,CATS: Crash Arena Turbo Stars,2670589,50.0 M,4,1082.3,1.0,0.0,GAME ACTION,1944649,272948,134237,69845,248907,False 31 | 30,Injustice: Gods Among Us,2540439,10.0 M,4,0.1,0.2,0.0,GAME ACTION,1879504,251048,115871,60732,233281,False 32 | 31,Swamp Attack,2472561,100.0 M,4,0.3,0.7,0.0,GAME ACTION,1841035,284687,138333,56785,151718,False 33 | 32,GUNSHIP BATTLE: Helicopter 3D,2380639,50.0 M,4,0.2,0.3,0.0,GAME ACTION,1582549,267812,149090,73581,307605,False 34 | 33,Real Steel World Robot Boxing,2365838,50.0 M,4,0.1,0.2,0.0,GAME ACTION,1849560,211891,101452,42652,160281,False 35 | 34,Critical Ops: Online Multiplayer FPS Shooting Game,2271977,50.0 M,4,0.4,0.9,0.0,GAME ACTION,1561779,253442,130615,65118,261021,False 36 | 35,LINE Rangers - a tower defense RPG w/Brown & Cony!,2131549,10.0 M,4,0.1,0.2,0.0,GAME ACTION,1508264,249413,138706,48233,186930,False 37 | 36,Worms Zone .io - Voracious Snake,2100984,100.0 M,4,3.1,6.7,0.0,GAME ACTION,1509125,187398,116123,66573,221763,False 38 | 37,Six-Guns: Gang Showdown,2083413,10.0 M,4,0.1,0.1,0.0,GAME ACTION,1394048,187327,118080,65989,317967,False 39 | 38,DEAD TARGET: Zombie Offline - Shooting Games,2006745,100.0 M,4,0.9,1.6,0.0,GAME ACTION,1474331,212483,115682,53493,150754,False 40 | 39,FRONTLINE COMMANDO: D-DAY,1985016,10.0 M,3,0.3,0.6,0.0,GAME ACTION,1293275,125940,82481,56490,426828,False 41 | 40,Mario Kart Tour,1949497,50.0 M,4,0.7,1.5,0.0,GAME ACTION,1268146,253822,113829,62099,251599,False 42 | 41,Guns of Boom - Online PvP Action,1860814,50.0 M,4,0.1,0.1,0.0,GAME ACTION,1160948,217692,116516,65998,299658,False 43 | 42,Hunter Assassin,1846221,100.0 M,4,2.7,6.1,0.0,GAME ACTION,1224239,194406,138751,80276,208547,False 44 | 43,RULES OF SURVIVAL,1823477,50.0 M,3,0.1,0.2,0.0,GAME ACTION,1182010,113508,91381,66639,369937,False 45 | 44,Zombie Catchers - love the hunt!,1796325,100.0 M,4,1.4,3.2,0.0,GAME ACTION,1346602,186584,95030,41917,126190,False 46 | 45,Into the Dead,1714060,50.0 M,4,0.2,0.3,0.0,GAME ACTION,1307508,207492,77701,27838,93519,False 47 | 46,Respawnables: Gun Shooting Games,1656299,10.0 M,4,0.1,0.2,0.0,GAME ACTION,1168260,143292,81868,46576,216300,False 48 | 47,Modern Strike Online: Free PvP FPS shooting game,1642589,50.0 M,4,1.1,2.5,0.0,GAME ACTION,1250905,137258,70168,38552,145704,False 49 | 48,Block Strike,1607897,10.0 M,4,0.2,0.5,0.0,GAME ACTION,1036342,184035,107587,53758,226173,False 50 | 49,Blitz Brigade - Online FPS fun,1599244,10.0 M,3,0.0,0.0,0.0,GAME ACTION,996575,145501,99100,53947,304119,False 51 | 50,Super Mario Run,1583866,100.0 M,3,0.3,0.8,0.0,GAME ACTION,877904,162431,131708,84146,327675,False 52 | 51,Tomb of the Mask,1576576,100.0 M,4,2.3,5.3,0.0,GAME ACTION,1146916,188132,81053,40397,120075,False 53 | 52,Archero,1542169,50.0 M,4,0.9,1.8,0.0,GAME ACTION,1081928,209791,90183,36824,123441,False 54 | 53,DINO HUNTER: DEADLY SHORES,1495507,50.0 M,4,0.1,0.2,0.0,GAME ACTION,1096349,179585,80390,29979,109201,False 55 | 54,DEAD TRIGGER - Offline Zombie Shooter,1481552,10.0 M,4,0.1,0.3,0.0,GAME ACTION,1101432,189555,81708,28774,80080,False 56 | 55,Johnny Trigger - Action Shooting Game,1457639,100.0 M,4,1.2,2.7,0.0,GAME ACTION,1091308,146150,77445,36949,105784,False 57 | 56,PPSSPP - PSP emulator,1396630,100.0 M,4,0.9,1.9,0.0,GAME ACTION,1033914,134027,67488,33534,127664,False 58 | 57,Robbery Bob - Sneaky Adventures,1344699,100.0 M,4,1.7,3.7,0.0,GAME ACTION,1027860,91275,58201,37535,129825,False 59 | 58,Hide Online - Hunters vs Props,1301440,50.0 M,4,1.2,2.5,0.0,GAME ACTION,944546,135687,69421,32918,118866,False 60 | 59,Soul Knight,1291305,50.0 M,4,1.4,2.9,0.0,GAME ACTION,992147,145616,55754,23143,74642,False 61 | 60,aquapark.io,1258805,100.0 M,4,1.3,2.7,0.0,GAME ACTION,820853,127892,80228,51083,178747,False 62 | 61,Creative Destruction,1254295,10.0 M,4,0.5,1.2,0.0,GAME ACTION,896055,102711,59553,34605,161368,False 63 | 62,Anger of stick 5 : zombie,1238228,100.0 M,4,1.3,3.0,0.0,GAME ACTION,909585,103667,61570,36884,126519,False 64 | 63,Bomber Friends,1227050,50.0 M,4,0.8,1.7,0.0,GAME ACTION,876781,130160,71604,34890,113612,False 65 | 64,DRAGON BALL LEGENDS,1216126,10.0 M,4,1.6,3.6,0.0,GAME ACTION,868905,139200,61082,28015,118922,False 66 | 65,Modern Sniper,1196490,50.0 M,4,0.3,0.6,0.0,GAME ACTION,777088,124118,91842,47065,156374,False 67 | 66,Nebulous.io,1166709,50.0 M,4,0.3,0.6,0.0,GAME ACTION,829860,123712,68779,31450,112906,False 68 | 67,War Machines: Tank Battle - Army & Military Games,1161701,100.0 M,4,1.2,2.4,0.0,GAME ACTION,692694,176040,96601,46480,149883,False 69 | 68,Sea Battle 2,1134127,10.0 M,4,1.4,3.1,0.0,GAME ACTION,904701,144910,43308,12872,28334,False 70 | 69,FRAG Pro Shooter,1129645,50.0 M,4,4.1,8.5,0.0,GAME ACTION,846003,88206,53387,31451,110596,False 71 | 70,PUBG MOBILE,1073769,10.0 M,4,2.7,4.5,0.0,GAME ACTION,839876,56847,34971,22041,120032,False 72 | 71,Rope Hero: Vice Town,1070197,100.0 M,4,2.6,5.6,0.0,GAME ACTION,758309,80160,55138,37528,139060,False 73 | 72,DRAGON BALL Z DOKKAN BATTLE,1066554,10.0 M,4,0.5,0.9,0.0,GAME ACTION,795922,118008,40491,18831,93301,False 74 | 73,Deer Hunter 2018,1023162,50.0 M,4,0.0,0.1,0.0,GAME ACTION,637243,120170,62893,33380,169472,False 75 | 74,FRONTLINE COMMANDO 2,998677,10.0 M,4,0.0,0.1,0.0,GAME ACTION,716212,146888,62106,19161,54308,False 76 | 75,Real Gangster Crime,996586,100.0 M,4,2.7,5.9,0.0,GAME ACTION,682355,73943,51588,39307,149391,False 77 | 76,Battlelands Royale,992742,10.0 M,4,0.2,0.6,0.0,GAME ACTION,617561,123643,72319,38945,140270,False 78 | 77,Talking Tom Hero Dash - Run Game,974789,100.0 M,4,4.2,9.0,0.0,GAME ACTION,711239,72360,43788,30322,117078,False 79 | 78,Arena of Valor: 5v5 Arena Game,963507,10.0 M,3,0.5,0.9,0.0,GAME ACTION,547583,109014,62331,33309,211267,False 80 | 79,BombSquad,907609,10.0 M,4,0.7,1.4,0.0,GAME ACTION,669505,94180,47135,22028,74760,False 81 | 80,PUBG MOBILE VN – KONG x GODZILLA,900069,10.0 M,4,1.5,2.3,0.0,GAME ACTION,623089,74194,38393,22556,141835,False 82 | 81,Crisis Action: 5th Anniversary,875257,10.0 M,3,0.1,0.2,0.0,GAME ACTION,550679,68691,58297,34315,163272,False 83 | 82,Supreme Duelist Stickman,875065,100.0 M,4,6.4,14.5,0.0,GAME ACTION,702488,63211,30606,16093,62664,False 84 | 83,Miraculous Ladybug & Cat Noir,864581,100.0 M,4,2.5,5.3,0.0,GAME ACTION,650499,70109,36672,23021,84278,False 85 | 84,Injustice 2,809654,10.0 M,4,0.5,1.3,0.0,GAME ACTION,537380,104057,50801,25962,91451,False 86 | 85,NARUTO X BORUTO NINJA VOLTAGE,809487,10.0 M,4,1.9,4.2,0.0,GAME ACTION,550198,75892,46216,25340,111839,False 87 | 86,Flippy Knife,808331,10.0 M,4,0.3,0.8,0.0,GAME ACTION,514130,120636,67629,30074,75860,False 88 | 87,Bus Rush,800432,100.0 M,4,0.1,0.2,0.0,GAME ACTION,565625,79308,51475,23173,80847,False 89 | 88,BLOOD & GLORY,799866,10.0 M,3,0.0,0.0,0.0,GAME ACTION,487332,76581,33776,18217,183958,False 90 | 89,Murder us,799114,10.0 M,4,2.9,9.0,0.0,GAME ACTION,628812,68233,33155,13323,55590,False 91 | 90,Robbery Bob 2: Double Trouble,794575,50.0 M,4,1.7,3.6,0.0,GAME ACTION,614844,53826,33678,20882,71341,False 92 | 91,Shadow Fight 2,792071,100.0 M,4,0.1,0.2,0.0,GAME ACTION,680584,47463,18399,8824,36799,False 93 | 92,Vector 2,788653,50.0 M,4,0.3,0.7,0.0,GAME ACTION,537934,79339,56540,30852,83985,False 94 | 93,Slap Kings,777188,50.0 M,4,1.4,3.1,0.0,GAME ACTION,551328,86449,45301,21966,72141,False 95 | 94,Bed Wars,771254,50.0 M,4,3.0,6.6,0.0,GAME ACTION,542497,74237,39639,20325,94553,False 96 | 95,Modern Ops - Online FPS (Gun Games Shooter),764042,10.0 M,4,3.0,7.1,0.0,GAME ACTION,585204,77395,31524,15502,54414,False 97 | 96,Bullet Force,756002,10.0 M,3,0.1,0.1,0.0,GAME ACTION,434187,90078,58506,35311,137917,False 98 | 97,SHADOWGUN: DEADZONE,748945,10.0 M,4,0.1,0.3,0.0,GAME ACTION,554163,80239,38183,14231,62125,False 99 | 98,Royal Revolt 2: Tower Defense RTS & Castle Builder,727627,10.0 M,4,0.1,0.1,0.0,GAME ACTION,541833,91851,33669,12216,48055,False 100 | 99,Lara Croft: Relic Run,718905,10.0 M,4,0.2,0.5,0.0,GAME ACTION,445276,83143,55372,35836,99275,False 101 | 100,WWE Mayhem,703514,10.0 M,4,0.6,1.3,0.0,GAME ACTION,519090,68518,34658,17634,63612,False 102 | 1,Roblox,21820451,100.0 M,4,2.6,5.7,0.0,GAME ADVENTURE,16674013,1916826,822266,423122,1984222,False 103 | 2,Pokémon GO,14541662,100.0 M,4,0.5,0.9,0.0,GAME ADVENTURE,9517488,1746849,883965,452314,1941044,False 104 | 3,Criminal Case,4273420,100.0 M,4,0.1,0.2,0.0,GAME ADVENTURE,3264905,445397,217853,93681,251581,False 105 | 4,쿠키런 for Kakao,2544322,10.0 M,4,0.0,0.0,0.0,GAME ADVENTURE,1722222,323198,198160,74312,226427,False 106 | 5,Harry Potter: Hogwarts Mystery,2258595,50.0 M,4,1.5,3.3,0.0,GAME ADVENTURE,1659776,310670,122549,48906,116692,False 107 | 6,Kiloblocks Lite,2078458,100.0 M,3,0.0,0.0,0.0,GAME ADVENTURE,1166370,247385,221072,104655,338974,False 108 | 7,Mini World: Block Art,2016845,50.0 M,4,15364.2,5.2,0.0,GAME ADVENTURE,1423448,161233,90975,57560,283626,False 109 | 8,BADLAND,1585186,10.0 M,4,0.1,0.2,0.0,GAME ADVENTURE,1211041,177267,74388,29809,92678,False 110 | 9,Genshin Impact,1550978,10.0 M,4,6.2,15.5,0.0,GAME ADVENTURE,1248963,139513,50491,23697,88311,False 111 | 10,Ice Age Adventures,1434245,50.0 M,4,0.1,0.1,0.0,GAME ADVENTURE,943752,176055,111141,53711,149584,False 112 | 11,The Walking Dead: Season One,1279866,10.0 M,4,0.1,0.3,0.0,GAME ADVENTURE,990768,104418,57683,28206,98788,False 113 | 12,Benji Bananas,1164984,50.0 M,4,0.1,0.3,0.0,GAME ADVENTURE,851605,128930,74782,26563,83101,False 114 | 13,KIM KARDASHIAN: HOLLYWOOD,1096282,10.0 M,4,0.1,0.1,0.0,GAME ADVENTURE,754581,139419,71549,32075,98655,False 115 | 14,Growtopia,1014301,10.0 M,3,0.3,0.7,0.0,GAME ADVENTURE,542530,73688,72005,51658,274417,False 116 | 15,Family Guy The Quest for Stuff,1008075,10.0 M,3,0.0,0.0,0.0,GAME ADVENTURE,587972,126076,79831,49340,164854,False 117 | 16,The Secret Society - Hidden Objects Mystery,892542,5.0 M,4,0.1,0.1,0.0,GAME ADVENTURE,532135,214918,102189,19643,23655,False 118 | 17,June's Journey: Hidden Objects,830121,10.0 M,4,1.9,4.0,0.0,GAME ADVENTURE,580582,143752,41142,16642,48000,False 119 | 18,Murder in the Alps,822854,10.0 M,4,1.0,2.2,0.0,GAME ADVENTURE,499384,155809,79328,34103,54228,False 120 | 19,Tiny Miner,753449,5.0 M,4,0.0,0.0,0.0,GAME ADVENTURE,583782,93073,41661,10380,24550,False 121 | 20,Rayman Adventures,734291,10.0 M,4,0.2,0.5,0.0,GAME ADVENTURE,548689,77834,37498,17379,52889,False 122 | 21,Swordigo,728187,10.0 M,4,0.5,1.0,0.0,GAME ADVENTURE,601386,54972,24205,10694,36927,False 123 | 22,The Walking Dead: Season Two,677145,10.0 M,4,0.1,0.3,0.0,GAME ADVENTURE,526704,54521,28494,14271,53152,False 124 | 23,Eyes: Scary Thriller - Creepy Horror Game,668761,10.0 M,4,1.1,2.2,0.0,GAME ADVENTURE,502309,64074,32411,16085,53879,False 125 | 24,ARK: Survival Evolved,653025,10.0 M,4,2.6,5.5,0.0,GAME ADVENTURE,422638,69283,42381,23676,95044,False 126 | 25,WorldCraft: 3D Build & Block Craft,637160,10.0 M,3,517.9,0.4,0.0,GAME ADVENTURE,334913,57505,45776,33167,165796,False 127 | 26,Sonic Forces – Multiplayer Racing & Battle Game,625580,50.0 M,4,2.4,4.5,0.0,GAME ADVENTURE,475950,58024,26954,14907,49743,False 128 | 27,RealmCraft with Skins Export to Minecraft,554454,50.0 M,4,2.0,4.4,0.0,GAME ADVENTURE,378346,47366,27814,19163,81761,False 129 | 28,House Designer : Fix & Flip,549049,50.0 M,4,2.3,5.1,0.0,GAME ADVENTURE,361061,64373,35178,20635,67799,False 130 | 29,Beggar Life - Clicker adventure,545166,5.0 M,4,0.1,0.0,0.0,GAME ADVENTURE,367186,59836,37681,19145,61316,False 131 | 30,Animation Throwdown: The Collectible Card Game,532248,10.0 M,4,0.4,0.7,0.0,GAME ADVENTURE,371942,93262,27248,11087,28706,False 132 | 31,Jurassic World Alive,530520,10.0 M,4,0.9,1.8,0.0,GAME ADVENTURE,372553,68645,29737,14509,45074,False 133 | 32,Seekers Notes: Hidden Mystery,526594,10.0 M,4,0.6,1.2,0.0,GAME ADVENTURE,329694,100003,44311,18809,33774,False 134 | 33,Mystery Manor: hidden objects,505541,10.0 M,4,2.3,5.3,0.0,GAME ADVENTURE,359523,111661,17212,5896,11246,False 135 | 34,Crab War : Idle Swarm Evolution,495725,5.0 M,4,0.4,0.8,0.0,GAME ADVENTURE,368974,72587,28261,8217,17684,False 136 | 35,Cyber Hunter,491846,10.0 M,4,0.5,0.9,0.0,GAME ADVENTURE,312123,47791,31641,19418,80871,False 137 | 36,Diggy's Adventure: Mine Maze Levels & Pipe Puzzles,486767,10.0 M,4,0.7,1.7,0.0,GAME ADVENTURE,335639,79203,27697,11655,32572,False 138 | 37,Ninja Arashi,476258,10.0 M,4,1.2,2.7,0.0,GAME ADVENTURE,371122,46567,19971,9337,29259,False 139 | 38,LONEWOLF (17+) - a Sniper Story,443044,10.0 M,4,0.8,1.5,0.0,GAME ADVENTURE,340597,55084,18141,7442,21778,False 140 | 39,Super Bob's World: Jungle Adventure- Free Run Game,442542,100.0 M,4,2.4,6.0,0.0,GAME ADVENTURE,310760,41967,23638,14983,51191,False 141 | 40,Monster Warlord,434780,10.0 M,4,0.0,0.0,0.0,GAME ADVENTURE,282007,58193,28882,13327,52369,False 142 | 41,Ingress Prime,428566,10.0 M,3,0.2,0.5,0.0,GAME ADVENTURE,198352,56692,32869,24522,116130,False 143 | 42,Hidden Hotel: Miami Mystery,394199,10.0 M,4,0.6,1.3,0.0,GAME ADVENTURE,259228,58165,28583,14117,34104,False 144 | 43,Survivors: The Quest,376854,1.0 M,4,1.2,2.5,0.0,GAME ADVENTURE,210364,86173,53464,12423,14428,False 145 | 44,Manor Matters,373672,10.0 M,4,14.4,22.8,0.0,GAME ADVENTURE,266506,60287,23503,7143,16231,False 146 | 45,Hard Time (Prison Sim),347489,10.0 M,3,0.6,1.4,0.0,GAME ADVENTURE,213419,36163,25947,15482,56474,False 147 | 46,Draw a Stickman: EPIC 2,342940,10.0 M,3,0.7,1.7,0.0,GAME ADVENTURE,210677,36908,25365,16060,53928,False 148 | 47,Westland Survival - Be a survivor in the Wild West,340647,10.0 M,4,2.0,4.9,0.0,GAME ADVENTURE,240206,48397,20907,8870,22265,False 149 | 48,Transformers: RobotsInDisguise,326203,10.0 M,4,2283.0,0.4,0.0,GAME ADVENTURE,238366,24575,15568,9217,38476,False 150 | 49,Crafting and Building,326177,10.0 M,4,11.7,27.8,0.0,GAME ADVENTURE,248268,27790,11796,6681,31639,False 151 | 50,Ghost Town Adventures: Mystery Riddles Game,321154,10.0 M,4,0.1,0.2,0.0,GAME ADVENTURE,205269,43812,25070,13274,33726,False 152 | 51,Hello Neighbor,320317,10.0 M,4,1027.4,17.4,0.0,GAME ADVENTURE,208001,29851,19215,12693,50554,False 153 | 52,Piggy Boom-Be the island king,317393,10.0 M,4,0.1,0.2,0.0,GAME ADVENTURE,254347,21977,13156,5943,21967,False 154 | 53,KENDALL & KYLIE,316902,5.0 M,4,0.0,0.1,0.0,GAME ADVENTURE,237051,31312,17425,8567,22544,False 155 | 54,Shipwrecked:Castaway Island,316484,10.0 M,4,0.0,0.0,0.0,GAME ADVENTURE,261012,25341,11826,4778,13525,False 156 | 55,Harry Potter: Wizards Unite,315349,10.0 M,3,0.2,0.5,0.0,GAME ADVENTURE,147620,48065,29967,21162,68532,False 157 | 56,Masha and the Bear Child Games,310393,50.0 M,4,0.3,0.7,0.0,GAME ADVENTURE,216151,24597,17098,10149,42396,False 158 | 57,Mirrors of Albion,302458,10.0 M,4,0.0,0.0,0.0,GAME ADVENTURE,209809,34317,20129,11172,27028,False 159 | 58,Ninja warrior: legend of adventure games,299697,10.0 M,4,5.0,10.2,0.0,GAME ADVENTURE,223886,21973,14655,8777,30403,False 160 | 59,Diamond Quest: Don't Rush!,276333,10.0 M,4,0.5,1.2,0.0,GAME ADVENTURE,202494,37063,16735,6257,13781,False 161 | 60,Westbound:Perils Ranch,269887,10.0 M,4,0.0,60.6,0.0,GAME ADVENTURE,215891,22409,13503,5547,12534,False 162 | 61,Clumsy Ninja,267176,10.0 M,4,0.1,0.1,0.0,GAME ADVENTURE,203138,20459,11244,6006,26326,False 163 | 62,LEGO® Star Wars™: TFA,248376,10.0 M,3,0.8,1.7,0.0,GAME ADVENTURE,156766,21189,14838,10225,45355,False 164 | 63,Tinker Island - Survival Story Adventure,245912,5.0 M,4,0.5,1.1,0.0,GAME ADVENTURE,157308,34746,19289,10917,23650,False 165 | 64,FPS Commando Secret Mission - Free Shooting Games,244108,100.0 M,4,7.0,17.0,0.0,GAME ADVENTURE,162830,18935,13921,9969,38451,False 166 | 65,Dragon Land,241766,10.0 M,4,0.4,0.9,0.0,GAME ADVENTURE,174210,25753,14123,7011,20666,False 167 | 66,The Island Castaway: Lost World®,237178,1.0 M,4,0.3,0.6,0.0,GAME ADVENTURE,140986,51097,29799,6942,8351,False 168 | 67,Criminal Case: Pacific Bay,236968,10.0 M,4,0.3,0.5,0.0,GAME ADVENTURE,178035,28566,13369,5155,11840,False 169 | 68,The Wolf Among Us,236324,5.0 M,4,0.2,0.4,0.0,GAME ADVENTURE,179887,22918,10579,5559,17378,False 170 | 69,Dead Ninja Mortal Shadow,235190,5.0 M,4,0.0,0.1,0.0,GAME ADVENTURE,180024,25247,13218,3889,12808,False 171 | 70,BlockStarPlanet,232238,10.0 M,3,0.6,1.3,0.0,GAME ADVENTURE,139009,29963,15906,9032,38326,False 172 | 71,Street Chaser,228860,50.0 M,4,5156.3,6.8,0.0,GAME ADVENTURE,155724,17892,13469,9404,32368,False 173 | 72,Draw a Stickman: EPIC Free,228093,10.0 M,3,0.1,0.2,0.0,GAME ADVENTURE,137922,23910,18607,10966,36685,False 174 | 73,"Hotel Transylvania Adventures - Run, Jump, Build!",220878,10.0 M,4,1.1,2.4,0.0,GAME ADVENTURE,162516,19437,10535,6342,22045,False 175 | 74,Benji Bananas Adventures,220154,10.0 M,4,0.0,0.1,0.0,GAME ADVENTURE,157452,29143,14521,4294,14741,False 176 | 75,Seven - Deadly Revelation - Horror Chat Adventure,214038,1.0 M,4,0.8,1.9,0.0,GAME ADVENTURE,148804,36783,15996,4554,7899,False 177 | 76,Survival Island: EVO 2,212099,10.0 M,3,0.1,0.2,0.0,GAME ADVENTURE,119575,23404,18969,9375,40773,False 178 | 77,Zoo 2: Animal Park,209326,10.0 M,4,1.7,5.1,0.0,GAME ADVENTURE,135267,34179,15209,7029,17639,False 179 | 78,Spider Rope Hero - Gangster New York City,205339,10.0 M,4,5.0,11.4,0.0,GAME ADVENTURE,157834,9984,7605,5007,24906,False 180 | 79,Hidden City: Hidden Object Adventure,202932,10.0 M,4,0.1,0.1,0.0,GAME ADVENTURE,120363,50493,20584,4941,6548,False 181 | 80,CASE: Animatronics - Horror game,198913,5.0 M,4,1.2,2.4,0.0,GAME ADVENTURE,154771,19840,8313,3912,12075,False 182 | 81,Super City (Superhero Sim),196731,10.0 M,4,2.0,5.0,0.0,GAME ADVENTURE,140066,18997,10561,6110,20994,False 183 | 82,3D Maze / Labyrinth,195798,10.0 M,3,0.1,0.3,0.0,GAME ADVENTURE,98812,18705,18566,10027,49686,False 184 | 83,MultiCraft ― Build and Mine! 👍,192892,10.0 M,4,7.4,19.4,0.0,GAME ADVENTURE,129555,15897,9752,6792,30894,False 185 | 84,Friendzoned,187523,1.0 M,4,1.1,3.0,0.0,GAME ADVENTURE,153686,22367,6679,1949,2839,False 186 | 85,Nobodies: Murder Cleaner,184387,5.0 M,4,1.1,2.2,0.0,GAME ADVENTURE,137725,24816,9649,4022,8173,False 187 | 86,Adventure Time: Heroes of Ooo,184296,10.0 M,4,0.1,0.3,0.0,GAME ADVENTURE,127282,17122,11488,6373,22028,False 188 | 87,Homicide Squad: New York Cases,181431,1.0 M,4,1.7,3.9,0.0,GAME ADVENTURE,118453,37881,17008,3258,4828,False 189 | 88,Critical Action :Gun Strike Ops - Shooting Game,176486,50.0 M,4,1.8,3.9,0.0,GAME ADVENTURE,115933,13880,9575,6955,30141,False 190 | 89,Futurama: Worlds of Tomorrow,174281,5.0 M,4,0.2,0.4,0.0,GAME ADVENTURE,102685,29511,14650,7075,20357,False 191 | 90,Jurassic Survival Island: Dinosaurs & Craft,173009,10.0 M,4,0.7,1.4,0.0,GAME ADVENTURE,112463,17402,9523,6694,26925,False 192 | 91,Jungle Adventures,167371,10.0 M,4,0.9,1.9,0.0,GAME ADVENTURE,119216,14108,9116,6127,18801,False 193 | 92,Soda Dungeon,166142,1.0 M,4,0.1,0.3,0.0,GAME ADVENTURE,130867,22259,6726,1980,4308,False 194 | 93,Draw Your Game,165363,10.0 M,3,0.3,0.7,0.0,GAME ADVENTURE,82072,18237,15811,10471,38770,False 195 | 94,Epic Heroes - Dragon fight legends,164143,1.0 M,4,1446.6,1.0,0.0,GAME ADVENTURE,126888,15295,8052,3446,10459,False 196 | 95,Castle Cats - Idle Hero RPG,164000,5.0 M,4,0.8,1.6,0.0,GAME ADVENTURE,138571,12269,4782,2475,5900,False 197 | 96,Treasure Diving,162534,1.0 M,4,0.0,264.0,0.0,GAME ADVENTURE,139554,12547,5061,1647,3723,False 198 | 97,PlanetCraft: Block Craft Games,159801,10.0 M,3,1.2,2.6,0.0,GAME ADVENTURE,97662,15566,9679,6406,30485,False 199 | 98,Bunny Skater,155657,10.0 M,4,0.2,0.4,0.0,GAME ADVENTURE,112657,13089,9609,4869,15429,False 200 | 99,Dinos Online,155193,5.0 M,4,0.6,1.4,0.0,GAME ADVENTURE,102527,16613,9828,5977,20246,False 201 | 100,Prison Escape Puzzle: Adventure,154835,10.0 M,4,0.3,0.7,0.0,GAME ADVENTURE,99726,22100,12197,5612,15197,False 202 | 1,Subway Surfers,35665901,1000.0 M,4,0.5,1.0,0.0,GAME ARCADE,27138572,3366600,1622695,814890,2723142,False 203 | 2,Hungry Shark Evolution - Offline survival game,7202013,100.0 M,4,0.4,0.8,0.0,GAME ARCADE,5220860,792543,404086,191098,593424,False 204 | 3,Geometry Dash Lite,6960814,100.0 M,4,421.7,0.9,0.0,GAME ARCADE,4787054,831967,432708,188672,720411,False 205 | 4,Zombie Tsunami,5903477,100.0 M,4,0.4,0.8,0.0,GAME ARCADE,4295577,615956,339838,159034,493070,False 206 | 5,Sonic Dash - Endless Running & Racing Game,5402149,100.0 M,4,0.7,1.5,0.0,GAME ARCADE,4290826,539449,214946,88100,268825,False 207 | 6,Fruit Ninja®,5367599,100.0 M,4,0.2,0.4,0.0,GAME ARCADE,3745457,583916,354239,150993,532992,False 208 | 7,Jetpack Joyride,4919742,100.0 M,4,0.1,0.2,0.0,GAME ARCADE,3676322,567777,271954,94004,309682,False 209 | 8,Temple Run,4816448,500.0 M,4,0.7,1.5,0.0,GAME ARCADE,3184391,438320,318164,204384,671187,False 210 | 9,Cooking Fever – Restaurant Game,4565220,100.0 M,4,0.6,1.2,0.0,GAME ARCADE,3220230,532157,287592,139793,385446,False 211 | 10,Minecraft,4100452,10.0 M,4,234.3,2.4,7.49,GAME ARCADE,3324435,317144,135048,65677,258146,True 212 | 11,Vector,3398125,100.0 M,4,0.2,0.5,0.0,GAME ARCADE,2395375,354636,204730,99007,344374,False 213 | 12,Granny,3290970,100.0 M,4,1.4,2.9,0.0,GAME ARCADE,2393224,283587,152239,95032,366885,False 214 | 13,DragonFlight,2858076,10.0 M,4,0.0,0.2,0.0,GAME ARCADE,1795281,475749,286985,88464,211595,False 215 | 14,Red Ball 4,2342083,100.0 M,4,1.0,2.1,0.0,GAME ARCADE,1816379,198405,90386,47422,189489,False 216 | 15,Minecraft Trial,2222817,100.0 M,4,3.5,7.7,0.0,GAME ARCADE,1461686,192188,120639,79343,368958,False 217 | 16,Block Craft 3D: Building Simulator Games For Free,2156973,100.0 M,4,1.8,3.9,0.0,GAME ARCADE,1510574,191501,113211,71395,270289,False 218 | 17,Cooking Madness - A Chef's Restaurant Games,2096404,100.0 M,4,1.8,3.4,0.0,GAME ARCADE,1726149,161104,70669,34470,104010,False 219 | 18,Blockman Go,2062961,50.0 M,4,3.7,8.6,0.0,GAME ARCADE,1624579,147084,71698,37603,181994,False 220 | 19,Galaxy Attack: Alien Shooter,1988570,100.0 M,4,1.2,2.6,0.0,GAME ARCADE,1572089,156316,80008,41595,138560,False 221 | 20,Paper.io 2,1910010,100.0 M,3,0.3,0.7,0.0,GAME ARCADE,1110353,239968,152266,89330,318090,False 222 | 21,Angry Birds Transformers,1900382,50.0 M,4,0.2,0.4,0.0,GAME ARCADE,1512745,178112,72290,31011,106221,False 223 | 22,Hungry Shark World,1858504,100.0 M,4,1.5,2.5,0.0,GAME ARCADE,1420595,193116,86126,40095,118569,False 224 | 23,Glow Hockey,1793741,100.0 M,4,0.1,0.2,0.0,GAME ARCADE,1171395,203409,147447,59488,212000,False 225 | 24,Geometry Dash Meltdown,1735909,50.0 M,4,0.4,0.7,0.0,GAME ARCADE,1300677,187802,93990,34872,118566,False 226 | 25,Angry Birds Seasons,1679572,100.0 M,4,0.0,0.0,0.0,GAME ARCADE,1242877,203320,96109,40077,97187,False 227 | 26,윈드러너,1573012,10.0 M,3,0.0,0.1,0.0,GAME ARCADE,940005,180923,135759,68822,247501,False 228 | 27,Crowd City,1564855,100.0 M,4,0.6,1.4,0.0,GAME ARCADE,1071973,156950,94348,56534,185047,False 229 | 28,Join Clash 3D,1493740,100.0 M,4,4.5,14.0,0.0,GAME ARCADE,934431,158781,126162,67909,206456,False 230 | 29,Tank Stars,1471629,100.0 M,4,1.5,3.4,0.0,GAME ARCADE,975205,141609,89864,56824,208125,False 231 | 30,Angry Birds Classic,1470166,100.0 M,4,0.0,0.0,0.0,GAME ARCADE,1069403,194779,77716,36573,91693,False 232 | 31,Brothers in Arms® 3,1458849,10.0 M,4,0.2,0.3,0.0,GAME ARCADE,1012396,180762,89016,37984,138688,False 233 | 32,Rise Up,1340841,100.0 M,3,0.7,1.2,0.0,GAME ARCADE,725819,164205,142281,80224,228309,False 234 | 33,Payback 2 - The Battle Sandbox,1337580,100.0 M,4,2.7,5.6,0.0,GAME ARCADE,1013921,120437,57288,31344,114587,False 235 | 34,Angry Birds Space,1254191,100.0 M,4,0.1,0.3,0.0,GAME ARCADE,921162,142312,80488,32165,78061,False 236 | 35,Skater Boy,1215112,100.0 M,4,0.1,0.1,0.0,GAME ARCADE,914036,101920,67294,27922,103938,False 237 | 36,Ant Smasher,1205884,100.0 M,4,0.0,0.1,0.0,GAME ARCADE,770961,125694,97115,38288,173823,False 238 | 37,Partymasters - Fun Idle Game,1188910,50.0 M,4,0.1,0.3,0.0,GAME ARCADE,785999,93502,67304,41596,200506,False 239 | 38,Tap Tap Dash,1153022,50.0 M,4,0.2,0.4,0.0,GAME ARCADE,767538,152124,84721,37763,110873,False 240 | 39,101-in-1 Games,1136712,10.0 M,4,0.0,0.1,0.0,GAME ARCADE,794750,206822,80806,14190,40143,False 241 | 40,Doodle Jump,1132730,50.0 M,4,0.1,0.1,0.0,GAME ARCADE,829701,135593,64673,23686,79075,False 242 | 41,Hole.io,1102273,100.0 M,4,0.4,0.8,0.0,GAME ARCADE,690857,140198,76072,45368,149775,False 243 | 42,Zombie Roadkill 3D,1089029,50.0 M,4,0.4,0.8,0.0,GAME ARCADE,749202,118094,74237,36598,110896,False 244 | 43,Rider,1082604,50.0 M,4,0.8,1.8,0.0,GAME ARCADE,649183,141827,91623,48150,151818,False 245 | 44,Lep's World 2,1079670,100.0 M,4,0.5,1.0,0.0,GAME ARCADE,811052,81884,50974,31690,104068,False 246 | 45,Lep's World,1079537,100.0 M,4,1.1,2.3,0.0,GAME ARCADE,836216,78970,45685,27253,91411,False 247 | 46,Angry Birds Friends,1066764,100.0 M,4,1.0,1.9,0.0,GAME ARCADE,730329,115731,66556,33722,120423,False 248 | 47,Geometry Dash World,1042160,50.0 M,4,1.1,1.9,0.0,GAME ARCADE,760677,112796,55978,23795,88911,False 249 | 48,Rail Rush,1040051,50.0 M,4,0.2,0.5,0.0,GAME ARCADE,774936,103632,58908,24854,77719,False 250 | 49,Lep's World 3,988381,50.0 M,4,0.4,0.9,0.0,GAME ARCADE,752024,81739,45929,26358,82328,False 251 | 50,Knife Hit,955594,100.0 M,4,1.2,2.5,0.0,GAME ARCADE,684749,89958,58706,31681,90497,False 252 | 51,Stickman Party: 1 2 3 4 Player Games Free,949510,100.0 M,4,6.5,14.0,0.0,GAME ARCADE,736043,64772,37205,22355,89132,False 253 | 52,Zombie Smasher,926298,50.0 M,4,0.1,0.2,0.0,GAME ARCADE,671799,107479,61137,20868,65013,False 254 | 53,1945 Air Force - Airplane Shooting Games,923982,50.0 M,4,9.2,19.1,0.0,GAME ARCADE,712509,111993,45974,15592,37912,False 255 | 54,Stack Ball - Blast through platforms,903937,100.0 M,4,3.3,7.8,0.0,GAME ARCADE,602667,87709,60378,37674,115506,False 256 | 55,Cookie Run: OvenBreak - Endless Running Platformer,883825,10.0 M,4,0.7,1.5,0.0,GAME ARCADE,658521,87562,42961,20344,74434,False 257 | 56,Subway Princess Runner,878563,100.0 M,4,5.6,11.2,0.0,GAME ARCADE,594828,74318,50544,35093,123778,False 258 | 57,PAC-MAN,860147,100.0 M,3,0.3,0.7,0.0,GAME ARCADE,523785,98246,65754,38475,133885,False 259 | 58,Smash Hit,827611,100.0 M,4,0.0,0.1,0.0,GAME ARCADE,647207,100159,36474,9363,34405,False 260 | 59,Multiplayer for Minecraft PE - MCPE Servers,791425,10.0 M,4,0.3,0.7,0.0,GAME ARCADE,534451,43551,39653,26844,146923,False 261 | 60,Granny: Chapter Two,784985,50.0 M,4,4.4,9.6,0.0,GAME ARCADE,587579,62902,32887,21327,80287,False 262 | 61,Geometry Dash,777941,1.0 M,4,0.7,1.3,1.99,GAME ARCADE,636912,73308,24749,9026,33945,True 263 | 62,Jewels Switch,752635,10.0 M,4,0.0,0.1,0.0,GAME ARCADE,603783,86183,31653,9078,21935,False 264 | 63,LokiCraft,715951,50.0 M,4,7.3,16.5,0.0,GAME ARCADE,483133,69181,37056,24468,102110,False 265 | 64,Stupid Zombies,693956,50.0 M,4,0.9,1.9,0.0,GAME ARCADE,463486,77216,51767,26398,75087,False 266 | 65,Stick Hero,690642,10.0 M,4,0.0,0.0,0.0,GAME ARCADE,457100,98199,54710,19396,61235,False 267 | 66,Sonic Dash 2: Sonic Boom,662256,100.0 M,4,0.8,863.6,0.0,GAME ARCADE,469634,59835,38697,23160,70927,False 268 | 67,Sky Whale,660553,10.0 M,4,0.1,0.3,0.0,GAME ARCADE,483682,62930,37560,17430,58950,False 269 | 68,Space shooter - Galaxy attack - Galaxy shooter,656039,50.0 M,4,4.6,10.4,0.0,GAME ARCADE,555192,41420,18778,9270,31377,False 270 | 69,Sky Roller,636293,100.0 M,4,2.1,4.8,0.0,GAME ARCADE,455906,62932,29296,20066,68091,False 271 | 70,Geometry Dash SubZero,626542,50.0 M,4,2.6,4.7,0.0,GAME ARCADE,484878,59816,27043,11050,43753,False 272 | 71,Color Bump 3D,621232,100.0 M,3,1117.1,1107.1,0.0,GAME ARCADE,367867,71578,67163,34403,80219,False 273 | 72,Draw it,620257,50.0 M,3,0.9,1.9,0.0,GAME ARCADE,355568,93220,54643,31418,85405,False 274 | 73,Fernanfloo,609853,10.0 M,4,0.2,0.4,0.0,GAME ARCADE,522395,32985,15337,7428,31705,False 275 | 74,Cartoon Wars,588562,10.0 M,4,0.0,0.0,0.0,GAME ARCADE,376960,58234,42194,17599,93573,False 276 | 75,Run,581821,10.0 M,4,77.5,0.3,0.0,GAME ARCADE,450597,64012,26420,9972,30817,False 277 | 76,Snake VS Block,572863,50.0 M,4,0.1,0.2,0.0,GAME ARCADE,323922,96008,55435,27358,70138,False 278 | 77,Zombie World War,561461,10.0 M,4,0.0,0.1,0.0,GAME ARCADE,344081,93766,60771,20160,42680,False 279 | 78,My Boy! Free - GBA Emulator,556766,10.0 M,4,0.3,0.6,0.0,GAME ARCADE,417025,52081,24677,10020,52961,False 280 | 79,Burrito Bison: Launcha Libre,541549,10.0 M,4,1.4,2.4,0.0,GAME ARCADE,450604,55216,17728,5449,12549,False 281 | 80,Bricks Ball Crusher,532569,10.0 M,4,2.7,5.9,0.0,GAME ARCADE,395621,48350,27559,12339,48696,False 282 | 81,Daddy Long Legs,532176,10.0 M,4,0.0,0.0,0.0,GAME ARCADE,353695,83149,33681,15527,46122,False 283 | 82,Galactic Attack - Classic Shooter : Falcon Squad,509654,50.0 M,4,1.8,3.0,0.0,GAME ARCADE,407365,41520,18908,9863,31996,False 284 | 83,Stickman Hook,506876,50.0 M,3,0.5,1.2,0.0,GAME ARCADE,290763,74910,50722,25625,64853,False 285 | 84,Jewels Legend - Match 3 Puzzle,497484,10.0 M,4,0.4,0.8,0.0,GAME ARCADE,405757,48566,18492,6533,18133,False 286 | 85,BBTAN by 111%,476858,10.0 M,4,2948.2,0.1,0.0,GAME ARCADE,329614,64312,32355,11652,38924,False 287 | 86,Prize Claw,473706,50.0 M,4,0.1,0.1,0.0,GAME ARCADE,296894,49159,43940,18046,65665,False 288 | 87,Ball Blast,470099,10.0 M,4,0.9,1.8,0.0,GAME ARCADE,315988,61332,27827,14373,50577,False 289 | 88,Will Hero,467497,10.0 M,4,0.6,1.5,0.0,GAME ARCADE,317484,54366,29299,12418,53927,False 290 | 89,Monster Dash,466518,10.0 M,4,0.1,0.1,0.0,GAME ARCADE,340776,51499,28569,9164,36508,False 291 | 90,Duet,460549,10.0 M,4,0.2,0.3,0.0,GAME ARCADE,368057,49159,18102,6607,18622,False 292 | 91,Infinite Stairs,458684,10.0 M,4,1.3,2.5,0.0,GAME ARCADE,308505,50335,25797,12264,61781,False 293 | 92,Slendrina:The Cellar (Free),449205,10.0 M,4,0.6,1.3,0.0,GAME ARCADE,311382,35677,23861,16154,62128,False 294 | 93,Run Sausage Run!,448716,100.0 M,3,0.5,1.2,0.0,GAME ARCADE,271968,45329,35060,22824,73533,False 295 | 94,Human Evolution Clicker: Tap and Evolve Life Forms,447522,10.0 M,4,990.2,0.7,0.0,GAME ARCADE,268067,58110,41935,22944,56463,False 296 | 95,Sky Force 2014,446946,10.0 M,4,0.1,0.2,0.0,GAME ARCADE,331761,57741,25895,9077,22469,False 297 | 96,Bouncemasters,441188,50.0 M,4,1.8,4.4,0.0,GAME ARCADE,310177,39918,27014,15030,49046,False 298 | 97,Tank Hero,438162,10.0 M,4,0.1,0.1,0.0,GAME ARCADE,309059,54390,26775,10700,37236,False 299 | 98,Nyan Cat: Lost In Space,429256,10.0 M,4,0.3,0.6,0.0,GAME ARCADE,318853,42785,22872,11416,33328,False 300 | 99,Stack,426000,50.0 M,4,0.1,0.2,0.0,GAME ARCADE,255915,70110,42076,15851,42046,False 301 | 100,Paper.io,418663,10.0 M,3,0.3,0.6,0.0,GAME ARCADE,218936,46999,31975,20348,100402,False 302 | 1,Ludo King™,7512316,500.0 M,4,4.0,6.5,0.0,GAME BOARD,5291589,773193,369290,204053,874188,False 303 | 2,Happy Color™ – Color by Number. Coloring games.,2516777,100.0 M,4,250.5,2.9,0.0,GAME BOARD,1927153,358243,109137,38480,83762,False 304 | 3,101 Yüzbir Okey Plus,2430531,10.0 M,4,0.2,0.5,0.0,GAME BOARD,1763377,127289,78458,41427,419978,False 305 | 4,Parchisi STAR Online,2131083,50.0 M,4,1.5,3.2,0.0,GAME BOARD,1587565,176498,89205,46088,231725,False 306 | 5,모두의마블,1590460,10.0 M,3,0.0,0.0,0.0,GAME BOARD,664388,137875,140391,88652,559151,False 307 | 6,Chess,1578022,100.0 M,4,1.9,4.0,0.0,GAME BOARD,1097787,214381,99477,41236,125138,False 308 | 7,Paint By Number - Coloring Book & Color by Number,1283404,100.0 M,4,528.5,5.2,0.0,GAME BOARD,995139,130393,56747,27061,74062,False 309 | 8,Ludo Club - Fun Dice Game,1273770,100.0 M,4,2.6,5.1,0.0,GAME BOARD,929697,113906,53688,29740,146737,False 310 | 9,Okey Plus,1245352,10.0 M,4,0.1,0.2,0.0,GAME BOARD,963785,69907,41197,17092,153370,False 311 | 10,Dominoes,1062798,50.0 M,4,2.8,6.2,0.0,GAME BOARD,829950,139476,35263,14426,43680,False 312 | 11,Bingo Blitz™️ - Bingo Games,788064,10.0 M,4,1.8,3.9,0.0,GAME BOARD,604370,104216,34581,14116,30778,False 313 | 12,Ludo STAR,769196,10.0 M,4,2.1,4.5,0.0,GAME BOARD,597616,56899,32850,14912,66917,False 314 | 13,Chess - Play and Learn,615530,10.0 M,4,7.8,15.8,0.0,GAME BOARD,493766,68026,19325,7219,27192,False 315 | 14,Bingo Showdown Free Bingo Games – Bingo Live Game,598584,5.0 M,4,0.2,0.4,0.0,GAME BOARD,481850,54404,28767,10827,22734,False 316 | 15,Ludo Star 2,597656,10.0 M,4,2.8,5.5,0.0,GAME BOARD,416103,46952,33058,18737,82805,False 317 | 16,Çanak Okey Plus,575124,10.0 M,4,0.4,0.8,0.0,GAME BOARD,445724,24956,15105,8122,81214,False 318 | 17,Okey,567662,10.0 M,4,0.2,0.4,0.0,GAME BOARD,460779,36966,21660,10130,38125,False 319 | 18,Checkers,554532,100.0 M,4,1.4,3.0,0.0,GAME BOARD,371827,69515,37892,18726,56569,False 320 | 19,1LINE – One Line with One Touch,482155,50.0 M,4,0.8,1.9,0.0,GAME BOARD,350353,50622,27688,14084,39405,False 321 | 20,BINGO!,470850,10.0 M,4,0.3,0.7,0.0,GAME BOARD,396719,31773,15341,6226,20788,False 322 | 21,LANDLORD TYCOON Business Management Investing Game,467655,5.0 M,4,0.4,0.8,0.0,GAME BOARD,339411,65520,18573,8821,35327,False 323 | 22,Backgammon Plus,466525,5.0 M,3,2212.2,0.2,0.0,GAME BOARD,271493,22728,15722,8505,148075,False 324 | 23,Bingo Bash featuring MONOPOLY: Live Bingo Games,447613,10.0 M,4,0.0,0.0,0.0,GAME BOARD,344284,45999,23309,12179,21840,False 325 | 24,Real Chess,404907,10.0 M,4,0.5,0.9,0.0,GAME BOARD,257543,65328,27088,11958,42987,False 326 | 25,Chess Free,402345,50.0 M,4,0.0,0.0,0.0,GAME BOARD,281427,84152,18717,4956,13091,False 327 | 26,Mahjong Epic,391135,5.0 M,4,0.1,0.3,0.0,GAME BOARD,277978,88322,18138,2358,4337,False 328 | 27,Tic Tac Toe,356365,50.0 M,4,0.1,0.3,0.0,GAME BOARD,243769,40684,24296,11208,36405,False 329 | 28,Dominos Online Jogatina: Dominoes Game Free,353244,10.0 M,4,0.8,1.6,0.0,GAME BOARD,232140,57146,27330,9795,26830,False 330 | 29,Backgammon Free,351361,10.0 M,4,0.2,0.5,0.0,GAME BOARD,232675,65416,21279,8961,23027,False 331 | 30,Mahjong City Tours: Free Mahjong Classic Game,335347,5.0 M,4,2.6,5.0,0.0,GAME BOARD,288443,26221,7586,3620,9475,False 332 | 31,Bingo Party - Free Classic Bingo Games Online,313765,5.0 M,4,0.7,1.3,0.0,GAME BOARD,247479,34766,16068,5498,9951,False 333 | 32,Rento - Dice Board Game Online,312477,10.0 M,4,0.4,0.9,0.0,GAME BOARD,181755,52704,24745,11079,42191,False 334 | 33,Snakes & Ladders King,303060,50.0 M,3,0.1,0.3,0.0,GAME BOARD,189271,25883,21636,13961,52307,False 335 | 34,Game of Dice,295628,5.0 M,4,0.2,0.3,0.0,GAME BOARD,194900,45677,20155,8733,26161,False 336 | 35,Pinball Pro,282866,10.0 M,4,0.0,0.0,0.0,GAME BOARD,190032,46076,23927,6933,15895,False 337 | 36,Checkers Online Elite,277062,10.0 M,4,0.0,0.0,0.0,GAME BOARD,186130,33342,18640,8135,30813,False 338 | 37,Woody Block Puzzle ®,276518,10.0 M,4,0.4,0.8,0.0,GAME BOARD,195563,43630,12654,6916,17752,False 339 | 38,Gaple-Domino QiuQiu Poker Capsa Slots Game Online,267286,5.0 M,4,3.6,9.4,0.0,GAME BOARD,216554,19173,11667,5256,14634,False 340 | 39,Backgammon - Narde,264663,10.0 M,4,0.9,2.0,0.0,GAME BOARD,196888,23316,7163,4340,32954,False 341 | 40,Bingo Pop: Free Live Multiplayer Bingo Board Games,263074,10.0 M,4,0.7,1.3,0.0,GAME BOARD,206440,26008,11760,5865,12999,False 342 | 41,RISK: Global Domination,261799,10.0 M,4,1.6,3.2,0.0,GAME BOARD,186942,34906,13333,6552,20064,False 343 | 42,Slots: Epic Jackpot Slots Games Free & Casino Game,257492,1.0 M,4,0.9,2.0,0.0,GAME BOARD,234050,11006,4005,1777,6651,False 344 | 43,Yalla Ludo - Ludo&Domino,256773,50.0 M,4,8.2,20.5,0.0,GAME BOARD,195552,14301,10068,6125,30724,False 345 | 44,Tap Color - Color by number. Coloring Game,256158,10.0 M,4,0.3,0.7,0.0,GAME BOARD,202678,19491,11109,6294,16584,False 346 | 45,Onnect - Pair Matching Puzzle,242006,10.0 M,4,0.8,2.2,0.0,GAME BOARD,161104,36953,11231,7784,24932,False 347 | 46,Ludo SuperStar,237706,50.0 M,4,3.2,6.4,0.0,GAME BOARD,152766,23513,14002,10385,37038,False 348 | 47,Domino Gaple TopFun(Domino QiuQiu):Free dan online,228476,1.0 M,4,0.1,0.2,0.0,GAME BOARD,180118,13063,9967,5143,20184,False 349 | 48,Chess - Clash of Kings,221378,10.0 M,4,3.1,8.2,0.0,GAME BOARD,155994,33820,12131,4574,14856,False 350 | 49,Cờ Tỷ Phú - Co Ty Phu ZingPlay - Board Game,221279,5.0 M,4,1.3,1.8,0.0,GAME BOARD,184719,9219,5639,2509,19189,False 351 | 50,"Colorscapes - Color by Number, Coloring Games",219916,10.0 M,4,4.8,10.4,0.0,GAME BOARD,190920,12118,6114,2732,8029,False 352 | 51,Ludo Talent- Online Ludo&Chatroom,207685,10.0 M,4,3.7,6.3,0.0,GAME BOARD,138317,22597,12774,6990,27005,False 353 | 52,Mahjong Master,206953,10.0 M,4,0.1,0.3,0.0,GAME BOARD,159460,31048,8926,2908,4608,False 354 | 53,Backgammon Free - Lord of the Board - Table Game,200804,5.0 M,4,2.3,4.9,0.0,GAME BOARD,147818,11277,6510,3918,31278,False 355 | 54,YAHTZEE® With Buddies Dice Game,199569,10.0 M,4,1.6,3.4,0.0,GAME BOARD,122036,28805,14402,10209,24114,False 356 | 55,Sudoku Free,193778,5.0 M,4,0.0,82.3,0.0,GAME BOARD,139962,43688,6448,1179,2499,False 357 | 56,Fun 101 Okey,190736,5.0 M,4,1.1,2.3,0.0,GAME BOARD,159290,6177,3043,1955,20268,False 358 | 57,Tile Craft - Triple Crush: Puzzle matching game,189798,5.0 M,4,0.8,2.4,0.0,GAME BOARD,130404,35555,15055,3097,5684,False 359 | 58,Dice With Buddies™ Free - The Fun Social Dice Game,183337,5.0 M,4,0.2,0.5,0.0,GAME BOARD,114799,27401,13296,8750,19089,False 360 | 59,Travelling Millionaire,183016,5.0 M,3,0.0,0.1,0.0,GAME BOARD,113744,11105,9547,5602,43015,False 361 | 60,Çanak Okey - Mynet,175837,5.0 M,4,0.1,0.1,0.0,GAME BOARD,121928,10437,8149,4406,30915,False 362 | 61,Reversi Free,175718,5.0 M,4,0.1,0.2,0.0,GAME BOARD,114159,37346,11296,3368,9546,False 363 | 62,Rummikub®,173571,5.0 M,4,2.4,4.9,0.0,GAME BOARD,143591,13315,4405,2750,9508,False 364 | 63,Tile Master - Classic Triple Match & Puzzle Game,169696,50.0 M,4,3.8,13.4,0.0,GAME BOARD,124263,11055,8516,6437,19422,False 365 | 64,Ludo,162936,50.0 M,4,6.5,12.8,0.0,GAME BOARD,114317,17059,9620,5048,16890,False 366 | 65,Carrom King™ - Best Online Carrom Board Pool Game,160744,50.0 M,4,3.9,42875.2,0.0,GAME BOARD,106470,17372,9565,5473,21862,False 367 | 66,Fleet Battle - Sea Battle,158521,10.0 M,4,1.6,3.3,0.0,GAME BOARD,108183,26837,11124,3535,8839,False 368 | 67,Numberzilla - Number Puzzle | Board Game,151671,10.0 M,4,4.7,11.4,0.0,GAME BOARD,94437,20567,13519,6540,16605,False 369 | 68,Slots: VIP Deluxe Slot Machines Free - Vegas Slots,151004,5.0 M,4,0.0,0.1,0.0,GAME BOARD,136805,6439,2289,1159,4309,False 370 | 69,Domino QiuQiu KiuKiu Online(koin gratis),149633,1.0 M,4,1.3,2.5,0.0,GAME BOARD,129492,5996,3944,2091,8108,False 371 | 70,Mahjong Titan,141110,10.0 M,4,0.0,0.1,0.0,GAME BOARD,99540,32990,6680,890,1010,False 372 | 71,Einstein's Riddle Logic Puzzles,140706,1.0 M,4,0.7,1.4,0.0,GAME BOARD,106667,25275,5275,1430,2056,False 373 | 72,Ludo All Star - Play Online Ludo Game & Board Game,138105,10.0 M,4,2.2,3.8,0.0,GAME BOARD,102104,10047,6688,4638,14626,False 374 | 73,Four In A Line Free,134398,5.0 M,4,0.0,0.0,0.0,GAME BOARD,82092,34320,10335,2776,4873,False 375 | 74,Coloring Book - Color by Number & Paint by Number,131464,10.0 M,4,3.2,7.0,0.0,GAME BOARD,103785,11277,5757,2467,8175,False 376 | 75,인생역전윷놀이,126466,1.0 M,3,0.1,15483.9,0.0,GAME BOARD,68210,21237,16060,4827,16130,False 377 | 76,Chess Online - Duel friends online!,122235,5.0 M,4,5.7,10.7,0.0,GAME BOARD,82530,22097,8396,2557,6652,False 378 | 77,Slot Casino - Slot Machines,116322,10.0 M,4,0.0,0.0,0.0,GAME BOARD,74028,16366,10328,4770,10827,False 379 | 78,Loco Parchís - Magic Ludo & Mega dice! USA Vip Bet,111670,1.0 M,4,0.1,0.3,0.0,GAME BOARD,69697,14357,6508,3569,17536,False 380 | 79,Carrom 3D,111627,10.0 M,3,0.2,0.5,0.0,GAME BOARD,66986,11332,7797,4952,20558,False 381 | 80,lichess • Free Online Chess,111431,5.0 M,4,3.0,6.5,0.0,GAME BOARD,88631,10037,3309,1639,7811,False 382 | 81,Chess for Android,109162,10.0 M,4,0.0,0.1,0.0,GAME BOARD,72559,13043,8357,3114,12088,False 383 | 82,Truth or Dare — Dirty Party Game for Adults 18+,104859,10.0 M,4,0.5,0.9,0.0,GAME BOARD,63550,14139,8933,4526,13709,False 384 | 83,Chess Royale: Play and Learn Free Online,104158,5.0 M,4,9.4,21.9,0.0,GAME BOARD,64626,16981,7777,3110,11661,False 385 | 84,Loto Online,103101,5.0 M,4,0.6,1.3,0.0,GAME BOARD,71430,6210,4930,3160,17370,False 386 | 85,Chess Online,102300,5.0 M,4,2.1,4.8,0.0,GAME BOARD,69504,14461,6902,2820,8611,False 387 | 86,Praia Bingo - Bingo Games + Slot + Casino,100639,5.0 M,4,1.5,3.1,0.0,GAME BOARD,71102,9612,5095,2947,11880,False 388 | 87,Dr. Chess,100315,1.0 M,4,0.2,0.2,0.0,GAME BOARD,68732,12596,7028,2559,9397,False 389 | 88,Domino! The world's largest dominoes community,99283,5.0 M,4,0.2,0.4,0.0,GAME BOARD,63654,17539,6861,3316,7910,False 390 | 89,🐍 Snakes and Ladders - Free Board Games 🎲,97958,10.0 M,4,16.5,30.6,0.0,GAME BOARD,61897,10411,8335,4489,12824,False 391 | 90,Super Bingo HD: Bingo Games,96841,1.0 M,4,0.0,0.1,0.0,GAME BOARD,69120,13560,6990,2520,4650,False 392 | 91,Onet 3D - Classic Link Puzzle,95383,10.0 M,4,6.0,17.2,0.0,GAME BOARD,69374,14596,4246,1916,5248,False 393 | 92,Color by Number: Free Coloring Games - Paint Book,94264,10.0 M,4,1.3,3.1,0.0,GAME BOARD,65804,8875,5468,3396,10718,False 394 | 93,Okey Extra,93977,1.0 M,4,0.4,0.8,0.0,GAME BOARD,82738,2739,1215,707,6575,False 395 | 94,Ludo Neo-Classic : King of the Dice Game,92835,10.0 M,4,0.4,0.6,0.0,GAME BOARD,61320,9118,5819,3789,12787,False 396 | 95,Domino Qiu Qiu Online:Domino 99(QQ),92620,1.0 M,4,1.3,3.6,0.0,GAME BOARD,73551,5890,4236,1963,6977,False 397 | 96,Dr. Gomoku,92362,5.0 M,3,0.1,0.1,0.0,GAME BOARD,52380,14466,8352,3196,13966,False 398 | 97,Mind Games (Challenging brain games),91738,10.0 M,4,293.1,0.2,0.0,GAME BOARD,57069,12037,6182,2937,13510,False 399 | 98,Ultimate Jewel,89195,1.0 M,4,0.1,0.2,0.0,GAME BOARD,67405,14192,3528,1379,2688,False 400 | 99,OKEY,82144,1.0 M,4,2.3,5.1,0.0,GAME BOARD,64478,7127,3558,1670,5308,False 401 | 100,Backgammon Offline,80887,1.0 M,4,1.0,2.0,0.0,GAME BOARD,48946,11333,7651,2607,10348,False 402 | 1,Yu-Gi-Oh! Duel Links,2113853,50.0 M,4,0.4,0.9,0.0,GAME CARD,1541203,217812,103751,54390,196694,False 403 | 2,Hearthstone,1765570,10.0 M,3,0.3,0.5,0.0,GAME CARD,960279,190763,105553,74294,434678,False 404 | 3,Solitaire,1590733,100.0 M,4,0.4,0.9,0.0,GAME CARD,1117298,308402,82191,25750,57090,False 405 | 3,Solitaire,1590733,100.0 M,4,0.4,0.9,0.0,GAME CARD,431463,90350,40065,15998,70189,False 406 | 3,Solitaire,1590733,100.0 M,4,0.4,0.9,0.0,GAME CARD,418115,47121,16871,6574,18567,False 407 | 3,Solitaire,1590733,100.0 M,4,0.4,0.9,0.0,GAME CARD,299715,68177,20617,4959,12653,False 408 | 4,World Series of Poker WSOP Texas Holdem Poker,1418398,50.0 M,4,0.8,1.6,0.0,GAME CARD,980671,195988,81079,37547,123112,False 409 | 5,Live Hold’em Pro Poker - Free Casino Games,1120832,10.0 M,4,0.0,0.1,0.0,GAME CARD,703247,191160,84161,35024,107238,False 410 | 6,Pyramid Solitaire Saga,1069313,10.0 M,4,0.1,0.3,0.0,GAME CARD,791561,173283,54038,15776,34652,False 411 | 7,UNO!™,926432,50.0 M,4,3.6,6.9,0.0,GAME CARD,679554,83354,43036,22743,97743,False 412 | 8,Solitaire Grand Harvest,881563,10.0 M,4,3.1,5.8,0.0,GAME CARD,687097,115002,29330,13767,36364,False 413 | 9,Solitaire TriPeaks: Play Free Solitaire Card Games,654922,10.0 M,4,1.1,2.1,0.0,GAME CARD,457634,120229,36631,12570,27855,False 414 | 10,Solitaire,648068,50.0 M,4,0.0,0.0,0.0,GAME CARD,1117298,308402,82191,25750,57090,False 415 | 10,Solitaire,648068,50.0 M,4,0.0,0.0,0.0,GAME CARD,431463,90350,40065,15998,70189,False 416 | 10,Solitaire,648068,50.0 M,4,0.0,0.0,0.0,GAME CARD,418115,47121,16871,6574,18567,False 417 | 10,Solitaire,648068,50.0 M,4,0.0,0.0,0.0,GAME CARD,299715,68177,20617,4959,12653,False 418 | 11,Gin Rummy Plus,561518,10.0 M,4,0.8,1.6,0.0,GAME CARD,426538,60455,24904,10746,38873,False 419 | 12,Spider Solitaire,533216,10.0 M,4,1.1,2.4,0.0,GAME CARD,396321,89813,23855,6905,16319,False 420 | 13,Solitaire,507250,50.0 M,4,0.9,1.9,0.0,GAME CARD,1117298,308402,82191,25750,57090,False 421 | 13,Solitaire,507250,50.0 M,4,0.9,1.9,0.0,GAME CARD,431463,90350,40065,15998,70189,False 422 | 13,Solitaire,507250,50.0 M,4,0.9,1.9,0.0,GAME CARD,418115,47121,16871,6574,18567,False 423 | 13,Solitaire,507250,50.0 M,4,0.9,1.9,0.0,GAME CARD,299715,68177,20617,4959,12653,False 424 | 14,Truco Blyts,501154,10.0 M,4,0.6,1.2,0.0,GAME CARD,353392,85751,30329,9306,22372,False 425 | 15,Poker Games: World Poker Club,494492,10.0 M,4,0.6,1.2,0.0,GAME CARD,405050,31047,9361,5998,43034,False 426 | 16,Legends of Runeterra,485069,10.0 M,4,1.6,3.3,0.0,GAME CARD,389106,51098,13716,6473,24675,False 427 | 17,Deck Heroes: Legacy,469770,10.0 M,4,0.0,0.0,0.0,GAME CARD,341845,41158,25636,13347,47782,False 428 | 18,Durak Online,467621,10.0 M,3,37994.4,2.6,0.0,GAME CARD,275963,46108,26591,15940,103016,False 429 | 19,Solitaire,406124,10.0 M,4,0.3,0.7,0.0,GAME CARD,1117298,308402,82191,25750,57090,False 430 | 19,Solitaire,406124,10.0 M,4,0.3,0.7,0.0,GAME CARD,431463,90350,40065,15998,70189,False 431 | 19,Solitaire,406124,10.0 M,4,0.3,0.7,0.0,GAME CARD,418115,47121,16871,6574,18567,False 432 | 19,Solitaire,406124,10.0 M,4,0.3,0.7,0.0,GAME CARD,299715,68177,20617,4959,12653,False 433 | 20,Poker Heat™ - Free Texas Holdem Poker Games,374842,5.0 M,4,0.2,0.3,0.0,GAME CARD,279209,46731,11785,6217,30897,False 434 | 21,Solitaire,353226,10.0 M,4,0.1,0.2,0.0,GAME CARD,241310,65576,20366,8114,17858,False 435 | 22,Dummy & Toon Poker Texas slot Online Card Game,350853,5.0 M,4,0.1,0.2,0.0,GAME CARD,256571,35754,18091,7763,32671,False 436 | 23,Fairway Solitaire Blast,337505,5.0 M,4,0.0,0.0,0.0,GAME CARD,270355,51158,10680,1976,3334,False 437 | 24,피망 뉴맞고 : 고스톱으로 대한민국 1등,325427,10.0 M,3,0.4,0.7,0.0,GAME CARD,184232,41857,24227,10264,64845,False 438 | 25,Conquian Zingplay: el mejor juego de cartas gratis,321884,1.0 M,4,1.8,4.5,0.0,GAME CARD,269993,31051,10360,2940,7539,False 439 | 26,GWENT: The Witcher Card Game,320403,1.0 M,4,2.1,4.7,0.0,GAME CARD,253370,43423,9203,3437,10967,False 440 | 27,Spider Solitaire,313503,10.0 M,4,0.1,0.2,0.0,GAME CARD,247002,49280,8994,2338,5886,False 441 | 28,Order & Chaos Duels,311834,1.0 M,4,0.0,0.0,0.0,GAME CARD,204963,59535,18594,7042,21697,False 442 | 29,Spades Plus - Card Game,305751,10.0 M,4,0.4,0.9,0.0,GAME CARD,239774,24103,11159,6631,24083,False 443 | 30,Governor of Poker 2 - OFFLINE POKER GAME,290160,5.0 M,4,0.1,0.3,0.0,GAME CARD,181785,42321,20426,10233,35392,False 444 | 31,"Jawaker Trix, Tarneeb, Baloot, Hand & More",281352,10.0 M,4,5.3,11.6,0.0,GAME CARD,199329,10974,7664,4036,59346,False 445 | 32,Buraco Canasta Jogatina: Card Games For Free,265004,10.0 M,4,0.2,1.2,0.0,GAME CARD,177294,36354,18820,8577,23957,False 446 | 33,Governor of Poker 3 - Free Texas Holdem Card Games,263341,5.0 M,4,1.0,2.0,0.0,GAME CARD,190221,26703,9851,5793,30771,False 447 | 34,Texas Hold'em & Omaha Poker: Pokerist,245912,10.0 M,4,0.6,1.2,0.0,GAME CARD,159956,26398,12115,6172,41269,False 448 | 35,Indian Rummy: Play Rummy Game Online,240095,10.0 M,4,0.6,1.1,0.0,GAME CARD,158888,27598,14303,7201,32103,False 449 | 36,RummyCircle - Play Indian Rummy Online | Card Game,232276,10.0 M,4,0.7,1.2,0.0,GAME CARD,154927,28783,11168,5738,31658,False 450 | 37,FreeCell Solitaire,230415,10.0 M,4,0.5,1.2,0.0,GAME CARD,169079,43639,8617,2639,6438,False 451 | 38,TopFun Domino QiuQiu:Domino99 (KiuKiu),211163,5.0 M,4,0.8,1.6,0.0,GAME CARD,141282,14863,12545,7859,34611,False 452 | 39,Spades Royale - Best Online Spades Card Games App,208319,1.0 M,4,1.7,3.5,0.0,GAME CARD,175964,12836,6602,3371,9544,False 453 | 40,Solitaire TriPeaks Journey - Klondike Card Games,205537,5.0 M,4,1.6,3.4,0.0,GAME CARD,156282,28591,12716,3029,4918,False 454 | 41,Durak,202598,5.0 M,4,0.1,0.2,0.0,GAME CARD,145751,24108,8139,4224,20373,False 455 | 42,Spades Free,200923,5.0 M,4,0.0,0.0,0.0,GAME CARD,137772,38789,11720,4586,8053,False 456 | 43,Domino QiuQiu 2020 - Domino 99 · Gaple online,194946,5.0 M,4,3.4,69441.4,0.0,GAME CARD,158260,10262,8488,4393,13540,False 457 | 44,Scopa - Free Italian Card Game Online,191804,5.0 M,3,1.1,2.1,0.0,GAME CARD,115344,20710,10774,7259,37715,False 458 | 45,Microsoft Solitaire Collection,178476,5.0 M,4,1.5,3.1,0.0,GAME CARD,135825,19743,7755,4561,10590,False 459 | 46,Solitaire Arena,177098,1.0 M,4,0.0,0.0,0.0,GAME CARD,121906,34850,10285,3125,6930,False 460 | 47,Mango Capsa Susun,174545,5.0 M,3,0.2,0.4,0.0,GAME CARD,96745,13756,10747,6368,46927,False 461 | 48,Solitaire,172895,5.0 M,4,0.2,0.4,0.0,GAME CARD,136067,21789,6870,2356,5811,False 462 | 48,Solitaire,172895,5.0 M,4,0.2,0.4,0.0,GAME CARD,121771,32009,6485,1307,3182,False 463 | 48,Solitaire,172895,5.0 M,4,0.2,0.4,0.0,GAME CARD,114538,32551,6438,1309,2919,False 464 | 49,Soccer Spirits,170875,1.0 M,4,0.0,0.0,0.0,GAME CARD,111965,21094,10487,6272,21054,False 465 | 50,Belote.com - Free Belote Game,170181,1.0 M,4,55880.6,5.3,0.0,GAME CARD,116976,33175,10188,3336,6503,False 466 | 51,Solitaire,164757,5.0 M,4,0.1,0.1,0.0,GAME CARD,136067,21789,6870,2356,5811,False 467 | 51,Solitaire,164757,5.0 M,4,0.1,0.1,0.0,GAME CARD,121771,32009,6485,1307,3182,False 468 | 51,Solitaire,164757,5.0 M,4,0.1,0.1,0.0,GAME CARD,114538,32551,6438,1309,2919,False 469 | 52,Polskie Złote Zdrapki,163771,1.0 M,4,0.1,0.2,0.0,GAME CARD,123907,22509,8782,2537,6034,False 470 | 53,Solitaire,157757,5.0 M,4,1.0,2.7,0.0,GAME CARD,136067,21789,6870,2356,5811,False 471 | 53,Solitaire,157757,5.0 M,4,1.0,2.7,0.0,GAME CARD,121771,32009,6485,1307,3182,False 472 | 53,Solitaire,157757,5.0 M,4,1.0,2.7,0.0,GAME CARD,114538,32551,6438,1309,2919,False 473 | 54,Truco ZingPlay: Jogo de cartas online grátis,155922,1.0 M,4,0.2,0.4,0.0,GAME CARD,115228,10542,7061,4284,18804,False 474 | 55,ไพ่แคง - มีดัมมี่ ป๊อกเด้ง ไฮโล เก้าเก,155644,5.0 M,4,2.1,4.3,0.0,GAME CARD,129663,10105,5550,2561,7763,False 475 | 56,Fairway Solitaire - Card Game,154738,5.0 M,4,0.6,1.4,0.0,GAME CARD,116190,23913,7511,2297,4824,False 476 | 57,Solitaire: classic card game,153690,5.0 M,4,1.5,3.4,0.0,GAME CARD,136827,9554,2785,1257,3264,False 477 | 58,Dummy Hero,152145,1.0 M,4,0.2,0.3,0.0,GAME CARD,102186,25534,13116,3079,8228,False 478 | 59,Solitaire Collection,150087,5.0 M,4,0.4,1.1,0.0,GAME CARD,121848,19155,4401,1457,3224,False 479 | 60,Reigns,146718,500.0 k,4,0.1,0.1,2.99,GAME CARD,108356,25417,5887,2868,4187,True 480 | 61,Solitaire Classic,145613,5.0 M,4,0.7,1.6,0.0,GAME CARD,114843,19267,5656,1668,4177,False 481 | 62,Solitaire!,145481,10.0 M,4,0.0,0.0,0.0,GAME CARD,106115,27404,6189,1966,3803,False 482 | 63,The Elder Scrolls: Legends,143615,1.0 M,3,0.1,0.1,0.0,GAME CARD,85985,19159,9904,5796,22768,False 483 | 64,Solitaire,142577,10.0 M,4,1.4,2.9,0.0,GAME CARD,114899,14187,5903,2100,5485,False 484 | 65,Spider Solitaire,140758,10.0 M,4,0.4,1.0,0.0,GAME CARD,106869,21050,6134,1638,5065,False 485 | 65,Spider Solitaire,140758,10.0 M,4,0.4,1.0,0.0,GAME CARD,94475,20067,5296,1475,4247,False 486 | 66,Rummy 45 - Remi Etalat,138755,1.0 M,4,0.8,1.8,0.0,GAME CARD,117683,11887,3998,1196,3988,False 487 | 67,三國殺名將傳,137405,500.0 k,4,0.2,0.4,0.0,GAME CARD,92609,18503,10976,3668,11646,False 488 | 68,Classic Solitaire,136367,1.0 M,4,0.1,0.3,0.0,GAME CARD,101950,25090,4293,1417,3614,False 489 | 69,Eredan Arena PVP,127654,1.0 M,4,0.0,0.0,0.0,GAME CARD,96817,11631,5555,3667,9982,False 490 | 70,뉴 한판 맞고 (데이터 필요없는 무료 고스톱),127104,1.0 M,4,0.0,0.0,0.0,GAME CARD,76095,26217,12177,3596,9016,False 491 | 71,Descarte,126880,5.0 M,4,0.3,0.6,0.0,GAME CARD,83483,19818,9609,3609,10359,False 492 | 72,Spider Solitaire,125561,10.0 M,4,0.8,1.7,0.0,GAME CARD,106869,21050,6134,1638,5065,False 493 | 72,Spider Solitaire,125561,10.0 M,4,0.8,1.7,0.0,GAME CARD,94475,20067,5296,1475,4247,False 494 | 73,Phase 10: World Tour,124281,1.0 M,4,4.3,9.0,0.0,GAME CARD,91703,12202,4426,3912,12034,False 495 | 74,Pokémon TCG Online,121295,5.0 M,4,0.9,1.9,0.0,GAME CARD,85332,14387,6518,3129,11927,False 496 | 75,애니팡 맞고,116379,1.0 M,3,0.1,0.7,0.0,GAME CARD,58634,16991,13211,6370,21171,False 497 | 76,Belote Multiplayer,115102,1.0 M,4,1.3,3.1,0.0,GAME CARD,65184,33291,10404,1957,4263,False 498 | 77,피망 섯다,113870,1.0 M,4,0.5,0.5,0.0,GAME CARD,74180,16081,8035,3008,12563,False 499 | 78,大富豪BEST,113663,1.0 M,4,0.0,0.1,0.0,GAME CARD,63095,32122,11977,1919,4548,False 500 | 79,BlackJack 21 - Online Blackjack multiplayer casino,113566,5.0 M,4,0.2,0.3,0.0,GAME CARD,83970,12489,4286,2178,10641,False 501 | 80,Solitaire Showtime: Tri Peaks Solitaire Free & Fun,111394,1.0 M,4,5.7,121.1,0.0,GAME CARD,78190,20777,8995,1557,1874,False 502 | 81,한게임 신맞고 : 대한민국 원조 고스톱,109280,1.0 M,3,2.3,3.5,0.0,GAME CARD,62429,14950,9248,3981,18670,False 503 | 82,Absolute Bingo- Free Bingo Games Offline or Online,109069,10.0 M,4,0.0,0.1,0.0,GAME CARD,85752,15131,4027,1369,2788,False 504 | 83,Batak HD - İnternetsiz Batak,107962,10.0 M,4,0.2,0.4,0.0,GAME CARD,67747,14080,8338,3145,14649,False 505 | 84,Mega Hit Poker: Texas Holdem,107933,1.0 M,4,3.6,6.2,0.0,GAME CARD,78082,14437,5008,2001,8403,False 506 | 85,Spider Solitaire,107183,5.0 M,4,1.1,1.5,0.0,GAME CARD,83092,16456,3117,1348,3167,False 507 | 86,Solitaire,106773,5.0 M,4,4.3,8.9,0.0,GAME CARD,90322,9155,3306,1009,2979,False 508 | 86,Solitaire,106773,5.0 M,4,4.3,8.9,0.0,GAME CARD,88759,7238,2562,919,2954,False 509 | 86,Solitaire,106773,5.0 M,4,4.3,8.9,0.0,GAME CARD,66889,11772,5441,4213,10554,False 510 | 87,LG Smart Truco,106689,5.0 M,4,0.2,0.6,0.0,GAME CARD,68707,14719,7514,4051,11695,False 511 | 88,Solitaire Cruise: Classic Tripeaks Cards Games,103958,5.0 M,4,10.0,27.8,0.0,GAME CARD,70597,18028,8210,1847,5273,False 512 | 89,Gin Rummy Free,103945,1.0 M,4,0.1,0.3,0.0,GAME CARD,66476,25258,6709,1739,3759,False 513 | 90,Solitaire,102434,10.0 M,4,4.7,13.1,0.0,GAME CARD,90322,9155,3306,1009,2979,False 514 | 90,Solitaire,102434,10.0 M,4,4.7,13.1,0.0,GAME CARD,88759,7238,2562,919,2954,False 515 | 90,Solitaire,102434,10.0 M,4,4.7,13.1,0.0,GAME CARD,66889,11772,5441,4213,10554,False 516 | 91,Solitaire - Make Free Money & Play the Card Game,101659,1.0 M,4,1.3,2.8,0.0,GAME CARD,67959,14879,8459,2829,7529,False 517 | 92,Solitaire: Super Challenges,100719,1.0 M,4,0.0,0.1,0.0,GAME CARD,69497,20485,5637,1307,3791,False 518 | 93,Solitaire,98872,10.0 M,4,0.2,0.5,0.0,GAME CARD,90322,9155,3306,1009,2979,False 519 | 93,Solitaire,98872,10.0 M,4,0.2,0.5,0.0,GAME CARD,88759,7238,2562,919,2954,False 520 | 93,Solitaire,98872,10.0 M,4,0.2,0.5,0.0,GAME CARD,66889,11772,5441,4213,10554,False 521 | 94,Solitaire Tripeaks: Farm Adventure,97299,1.0 M,4,1.4,3.1,0.0,GAME CARD,73069,13513,5613,1787,3315,False 522 | 95,Cribbage Classic,97018,1.0 M,4,0.7,1.3,0.0,GAME CARD,68858,21134,3377,1368,2278,False 523 | 96,Tien Len - Southern Poker,94069,10.0 M,4,0.1,0.3,0.0,GAME CARD,67229,9785,8896,2076,6080,False 524 | 97,Otogi: Spirit Agents,91698,1.0 M,4,0.0,0.1,0.0,GAME CARD,59670,16308,6950,2426,6341,False 525 | 98,Happy Scratch,90695,1.0 M,4,0.3,0.8,0.0,GAME CARD,75861,4012,2827,1602,6391,False 526 | 99,Epic Cards Battle(TCG),90585,1.0 M,4,74.3,148.5,0.0,GAME CARD,56281,19515,8904,2133,3749,False 527 | 100,Age of Ishtaria - A.Battle RPG,88866,1.0 M,4,0.0,0.0,0.0,GAME CARD,49649,16835,7470,3670,11240,False 528 | 1,Zynga Poker™ – Free Texas Holdem Online Card Games,2582669,50.0 M,4,393.4,0.7,0.0,GAME CASINO,1821678,301722,110833,52012,296421,False 529 | 2,Slotomania™ Slots: Casino Slot Machine Games,1822223,50.0 M,4,0.8,1.7,0.0,GAME CASINO,1293272,259642,102017,42902,124388,False 530 | 3,Teen Patti Gold – Indian Family Card Game,1529589,50.0 M,4,1.0,1.9,0.0,GAME CASINO,1210258,112027,46530,24581,136190,False 531 | 4,Teen Patti by Octro - Real 3 Patti Game,1494419,50.0 M,4,0.3,0.5,0.0,GAME CASINO,1080443,110156,68549,41577,193691,False 532 | 5,Coin Dozer: Sweepstakes,1485440,50.0 M,4,0.3,0.6,0.0,GAME CASINO,1102560,158208,85517,34400,104752,False 533 | 6,House of Fun: Play Casino Slots,1418336,10.0 M,4,0.9,1.6,0.0,GAME CASINO,1065696,180009,82885,28435,61309,False 534 | 7,Scatter Slots - Las Vegas Casino Game 777 Online,1259099,10.0 M,4,0.9,1.9,0.0,GAME CASINO,933699,202401,78707,14826,29463,False 535 | 8,Lucky Day - Win Real Rewards,1006982,10.0 M,3,0.2,0.5,0.0,GAME CASINO,649353,60917,44026,37669,215015,False 536 | 9,Jackpot Party Casino Games: Spin FREE Casino Slots,925068,10.0 M,4,1.0,1.9,0.0,GAME CASINO,671012,153638,52961,14029,33425,False 537 | 10,Huuuge Casino™ Free Slots & Best Slot Machines 777,755734,10.0 M,4,0.4,1.0,0.0,GAME CASINO,533316,88102,42476,19261,72576,False 538 | 11,DoubleU Casino - Free Slots,664469,10.0 M,4,0.6,1.2,0.0,GAME CASINO,458507,97014,48182,19338,41426,False 539 | 12,Jackpot Slot Machines - Slots Era™ Vegas Casino,649856,5.0 M,4,0.8,1.8,0.0,GAME CASINO,476204,106016,39009,8107,20518,False 540 | 13,Caesars Slots: Casino Slots game,617349,10.0 M,4,0.9,1.8,0.0,GAME CASINO,424459,77519,39348,19359,56661,False 541 | 14,myVEGAS Slots: Las Vegas Casino Games & Slots,616294,10.0 M,4,0.0,0.0,0.0,GAME CASINO,457055,82563,30766,13683,32225,False 542 | 15,DH Texas Poker - Texas Hold'em,583815,10.0 M,4,0.0,0.1,0.0,GAME CASINO,380317,79701,41575,16718,65502,False 543 | 16,Gold Fish Casino Slots - FREE Slot Machine Games,556639,10.0 M,4,0.3,0.5,0.0,GAME CASINO,459497,44454,15369,7774,29543,False 544 | 17,BLACKJACK!,544905,10.0 M,4,0.0,0.1,0.0,GAME CASINO,392404,100738,26490,5663,19608,False 545 | 18,Hit it Rich! Lucky Vegas Casino Slot Machine Game,493071,5.0 M,4,0.2,0.5,0.0,GAME CASINO,344195,68441,30992,14931,34510,False 546 | 19,Cash Frenzy™ Casino – Free Slots Games,485882,10.0 M,4,0.2,0.5,0.0,GAME CASINO,404060,44200,14354,6230,17036,False 547 | 20,Wizard of Oz Free Slots Casino,482246,10.0 M,4,0.4,0.9,0.0,GAME CASINO,377560,57203,20891,7865,18725,False 548 | 21,Dummy ดัมมี่ ไพ่แคง เกมไพ่ฟรี,477132,10.0 M,4,227105.7,2.2,0.0,GAME CASINO,367411,48463,28359,9074,23822,False 549 | 22,Full House Casino - Free Vegas Slots Machine Games,455282,5.0 M,4,0.1,0.1,0.0,GAME CASINO,365871,33169,22482,7247,26511,False 550 | 23,Slots (Golden HoYeah) - Casino Slots,431936,10.0 M,4,0.6,1.1,0.0,GAME CASINO,299466,49060,33254,12770,37384,False 551 | 24,Luxy Poker-Online Texas Holdem,423010,5.0 M,4,0.3,0.7,0.0,GAME CASINO,298900,42958,25401,11181,44567,False 552 | 25,Vegas Slots - DoubleDown Casino,422035,10.0 M,4,0.5,1.1,0.0,GAME CASINO,286143,56390,26064,15856,37580,False 553 | 26,Texas HoldEm Poker Deluxe,401912,10.0 M,4,0.0,0.0,0.0,GAME CASINO,280648,56377,27394,8958,28533,False 554 | 27,เก้าเกไทย,394704,10.0 M,4,0.1,0.3,0.0,GAME CASINO,309185,26459,17197,8513,33346,False 555 | 28,Cashman Casino: Casino Slots Machines! 2M Free!,392274,10.0 M,4,1.1,2.2,0.0,GAME CASINO,289544,46703,20683,9892,25450,False 556 | 29,Slots: Heart of Vegas™ – Free Casino Slots Games,377401,10.0 M,4,0.3,0.6,0.0,GAME CASINO,258486,45068,23157,11678,39010,False 557 | 30,Casino Jackpot Slots - Infinity Slots™ 777 Game,367694,1.0 M,4,0.1,0.1,0.0,GAME CASINO,278174,55844,18491,4517,10665,False 558 | 31,my KONAMI Slots - Casino Games & Fun Slot Machines,351166,5.0 M,4,0.5,1.2,0.0,GAME CASINO,248240,47419,22591,9903,23011,False 559 | 32,POP! Slots ™- Free Vegas Casino Slot Machine Games,343727,10.0 M,4,2.8,6.1,0.0,GAME CASINO,277118,21504,10762,6273,28067,False 560 | 33,Tycoon Casino Free Slots: Vegas Slot Machine Games,333168,5.0 M,4,0.9,2.0,0.0,GAME CASINO,293637,16901,7210,3485,11931,False 561 | 34,GSN Casino: Slots and Casino Games - Vegas Slots,318101,10.0 M,4,0.2,0.4,0.0,GAME CASINO,218298,35139,19922,11200,33540,False 562 | 35,Slots Pharaoh's Way Casino Games & Slot Machine,316679,10.0 M,4,0.1,0.2,0.0,GAME CASINO,252941,33956,12697,4255,12827,False 563 | 36,Lotsa Slots - Free Vegas Casino Slot Machines,313214,10.0 M,4,3.2,7.8,0.0,GAME CASINO,244252,38385,15608,4462,10504,False 564 | 37,Big Fish Casino - Play Slots and Casino Games,312113,10.0 M,4,0.0,0.0,0.0,GAME CASINO,238241,41399,13246,4698,14526,False 565 | 38,Tiến lên Miền Nam - Tiến Lên - ZingPlay,306937,10.0 M,4,0.8,1.6,0.0,GAME CASINO,248156,14000,6875,3866,34038,False 566 | 39,Club Vegas 2021: New Slots Games & Casino bonuses,306128,5.0 M,4,4.9,12.1,0.0,GAME CASINO,266535,19491,6879,2721,10498,False 567 | 40,麻將 明星3缺1麻將–台灣16張麻將Mahjong 、SLOT、Poker,292630,5.0 M,4,0.5,0.9,0.0,GAME CASINO,207533,29742,13572,5187,36593,False 568 | 41,Billionaire Casino Slots - The Best Slot Machines,272892,10.0 M,4,1.1,2.4,0.0,GAME CASINO,194550,29431,13763,6678,28469,False 569 | 42,Jackpot World™ - Free Vegas Casino Slots,272095,5.0 M,4,225.1,5.5,0.0,GAME CASINO,206509,33265,13164,4388,14767,False 570 | 43,"GAMEE Prizes - Play Free Games, WIN REAL CASH!",266126,10.0 M,4,5550.2,14.5,0.0,GAME CASINO,176379,35942,22679,9287,21836,False 571 | 44,NEW SLOTS 2021-free casino games & slot machines,265946,5.0 M,4,0.9,1.8,0.0,GAME CASINO,219920,23950,8698,2822,10553,False 572 | 45,Quick Hit Casino Games - Free Casino Slots Games,264556,10.0 M,4,0.5,1.1,0.0,GAME CASINO,189320,36506,18622,5091,15015,False 573 | 46,Tongits Go-Exciting and Competitive Card Game,258755,10.0 M,4,6.1,13.5,0.0,GAME CASINO,222685,12554,7642,3397,12474,False 574 | 47,Gaminator Casino Slots - Play Slot Machines 777,215021,5.0 M,4,1.0,2.3,0.0,GAME CASINO,170145,17010,7086,3398,17380,False 575 | 48,ไพ่เท็กซัสโบย่า-Boyaa Texas Poker โป๊กเกอร์มือโปร,211680,5.0 M,4,0.2,0.4,0.0,GAME CASINO,160936,22352,11006,3828,13555,False 576 | 49,Double Win Casino Slots - Free Video Slots Games,211511,1.0 M,4,1.1,2.2,0.0,GAME CASINO,174952,18748,7633,2843,7333,False 577 | 50,UTP - Ultimate Teen Patti (3 Patti),208279,10.0 M,4,0.4,0.7,0.0,GAME CASINO,146678,19467,7368,4159,30605,False 578 | 51,Free Slot Machines with Bonus Games!,207326,5.0 M,4,0.2,0.5,0.0,GAME CASINO,189655,7941,3925,1388,4415,False 579 | 52,Hot Shot Casino Free Slots Games: Real Vegas Slots,204371,5.0 M,4,0.2,0.4,0.0,GAME CASINO,147841,26775,14092,3867,11793,False 580 | 53,Bingo Tycoon,189656,10.0 M,4,54.5,0.0,0.0,GAME CASINO,127766,19807,11872,6245,23964,False 581 | 54,Coin Dozer: Casino,183628,5.0 M,4,0.6,1.1,0.0,GAME CASINO,141239,20865,10352,3829,7340,False 582 | 55,MONOPOLY Slots - Slot Machines,179520,5.0 M,4,1.1,2.2,0.0,GAME CASINO,139632,11699,5599,3789,18798,False 583 | 56,Willy Wonka Slots Free Casino,179001,1.0 M,4,0.5,1.1,0.0,GAME CASINO,138485,21446,8344,2918,7805,False 584 | 57,88 Fortunes Casino Games & Free Slot Machine Games,177051,1.0 M,4,0.7,1.4,0.0,GAME CASINO,154436,8822,3644,1672,8474,False 585 | 58,Roulette Royale - FREE Casino,174066,10.0 M,4,1.4,2.7,0.0,GAME CASINO,123770,19227,11002,5367,14697,False 586 | 59,Slots Free - Big Win Casino™,173372,5.0 M,4,0.0,0.0,0.0,GAME CASINO,126569,21203,10941,4076,10581,False 587 | 60,Pmang Poker : Casino Royal,172651,5.0 M,4,0.7,0.9,0.0,GAME CASINO,106066,26042,13410,4426,22704,False 588 | 61,Slotpark - Online Casino Games & Free Slot Machine,172200,5.0 M,4,1.4,3.0,0.0,GAME CASINO,123431,19427,8684,4217,16439,False 589 | 62,Slots Casino - Jackpot Mania,170510,5.0 M,4,0.3,0.6,0.0,GAME CASINO,144759,10409,4881,2271,8188,False 590 | 63,Bingo by Alisa - Free Live Multiplayer Bingo Games,154112,1.0 M,4,0.0,0.0,0.0,GAME CASINO,119255,21177,7308,2113,4257,False 591 | 64,Poker Texas Boyaa,146663,5.0 M,3,0.1,0.2,0.0,GAME CASINO,84613,13974,13184,5793,29096,False 592 | 65,Scratch Day,145635,5.0 M,3,0.1,0.3,0.0,GAME CASINO,88085,17381,12934,5744,21490,False 593 | 66,Cổng game ZingPlay - Game bài - Game cờ - Tiến lên,142948,10.0 M,3,1.5,3.1,0.0,GAME CASINO,95538,7899,5039,2809,31659,False 594 | 67,Slot Machine - FREE Casino,141345,10.0 M,4,11.4,22.9,0.0,GAME CASINO,83149,26077,14384,5285,12447,False 595 | 68,Rock N' Cash Casino Slots -Free Vegas Slot Games,140882,1.0 M,4,2.5,5.6,0.0,GAME CASINO,103574,20093,9394,2580,5239,False 596 | 69,Slots: Get Rich Free Slots Casino Games Offline,139860,1.0 M,4,0.7,1.4,0.0,GAME CASINO,126642,5717,2420,1095,3984,False 597 | 70,Bingo Journey - Lucky & Fun Casino Bingo Games,138883,1.0 M,4,2.4,4.7,0.0,GAME CASINO,103586,18665,8883,2911,4835,False 598 | 71,Best Casino Free Slots: Casino Slot Machine Games,131646,1.0 M,4,0.0,0.0,0.0,GAME CASINO,85071,22022,10736,4148,9666,False 599 | 72,Stars Slots - Casino Games,126322,1.0 M,4,2.6,5.6,0.0,GAME CASINO,103766,10635,5038,1742,5138,False 600 | 73,Jackpot Magic Slots™: Social Casino & Slot Games,125918,5.0 M,4,0.1,0.2,0.0,GAME CASINO,88160,15582,6712,2896,12565,False 601 | 74,Bingo Holiday: Free Bingo Games,123277,1.0 M,4,3.6,6.3,0.0,GAME CASINO,90489,20226,8054,1588,2918,False 602 | 75,Free Slots!,122801,5.0 M,4,0.8,1.9,0.0,GAME CASINO,110967,5426,2458,1019,2928,False 603 | 76,ไพ่แคง-รวมดัมมี่dummy ป๊อกเด้ง เก้าเกไทย เกมไพ่ฟรี,120434,1.0 M,4,1.5,3.0,0.0,GAME CASINO,104694,7396,4236,1375,2731,False 604 | 77,Cash Storm Casino - Free Vegas Jackpot Slots Games,117668,1.0 M,4,106.2,4.2,0.0,GAME CASINO,102696,5785,3091,1401,4692,False 605 | 78,Free Slots Casino - Adventures,116891,1.0 M,4,0.0,0.1,0.0,GAME CASINO,103484,5940,2023,807,4634,False 606 | 79,myVEGAS Blackjack 21 - Free Vegas Casino Card Game,116673,1.0 M,4,0.1,0.1,0.0,GAME CASINO,93674,13383,3198,1609,4807,False 607 | 80,Cash Blitz Free Slots: Casino Slot Machine Games,112869,1.0 M,4,4.1,9.6,0.0,GAME CASINO,102054,5274,2202,730,2607,False 608 | 81,SLOTS - Black Diamond Casino,107509,1.0 M,4,0.1,0.2,0.0,GAME CASINO,79688,14753,3703,2096,7267,False 609 | 82,Winning Slots casino games:free vegas slot machine,107253,5.0 M,4,0.3,0.7,0.0,GAME CASINO,83222,6679,4141,3006,10203,False 610 | 83,ไพ่เท็กซัสไทย HD,103380,1.0 M,4,0.0,0.1,0.0,GAME CASINO,78160,10300,5230,1980,7710,False 611 | 84,Vegas Downtown Slots™ - Slot Machines & Word Games,102352,1.0 M,4,0.0,0.0,0.0,GAME CASINO,76766,11076,5291,2353,6863,False 612 | 85,ดัมมี่ไทยแลนด์-รวมไพ่แคง เก้าเก ไฮโล เกมไพ่ฟรี,100479,1.0 M,4,2.4,5.5,0.0,GAME CASINO,91237,3977,2043,877,2342,False 613 | 86,Bingo™,99465,5.0 M,4,0.0,0.0,0.0,GAME CASINO,71856,12049,6509,2619,6429,False 614 | 87,Slots on Tour Casino - Vegas Slot Machine Games HD,99082,500.0 k,4,0.1,0.2,0.0,GAME CASINO,78458,14511,3405,749,1957,False 615 | 88,Lightning Link Casino: Best Vegas Casino Slots!,97488,5.0 M,4,3.1,5.5,0.0,GAME CASINO,64510,12362,5972,3254,11387,False 616 | 89,Spin Day - Win Real Money,94814,1.0 M,3,0.1,0.2,0.0,GAME CASINO,47906,8026,7360,4920,26599,False 617 | 90,Old Vegas Slots – Classic Slots Casino Games,94628,1.0 M,4,0.2,0.3,0.0,GAME CASINO,78741,7178,3029,1389,4289,False 618 | 91,Royal Casino,92912,5.0 M,4,2.1,5.4,0.0,GAME CASINO,67690,7454,4956,2668,10142,False 619 | 92,OMG! Fortune Slots - Grand Casino Games,90370,1.0 M,4,0.0,0.0,0.0,GAME CASINO,68116,10388,5149,1826,4889,False 620 | 93,Blackjack 21,90110,1.0 M,4,0.0,0.0,0.0,GAME CASINO,65034,10141,3586,2191,9155,False 621 | 94,Bingo Blaze - Free Bingo Games,89886,1.0 M,4,0.7,1.4,0.0,GAME CASINO,72362,9441,4365,1308,2407,False 622 | 95,Fun Big 2,87528,1.0 M,4,0.0,0.0,0.0,GAME CASINO,73570,6359,3015,1128,3454,False 623 | 96,Lotto Scratch – Las Vegas,87102,1.0 M,4,0.2,0.5,0.0,GAME CASINO,72719,6222,2636,1238,4284,False 624 | 97,Slots: Free Slot Machines,86366,1.0 M,4,0.3,0.9,0.0,GAME CASINO,66745,8015,4197,2003,5403,False 625 | 98,Jackpot Crush – Free Vegas Slot Machines,85258,1.0 M,4,4.2,9.7,0.0,GAME CASINO,68846,9410,2950,960,3090,False 626 | 99,High 5 Casino: The Home of Fun & Free Vegas Slots,84646,1.0 M,4,0.2,0.5,0.0,GAME CASINO,60073,8840,4614,2856,8260,False 627 | 100,Slots! CashHit Slot Machines & Casino Games Party,83313,1.0 M,4,0.1,0.3,0.0,GAME CASINO,64498,9941,3313,1247,4311,False 628 | 1,Candy Crush Saga,31367945,1000.0 M,4,0.9,1.6,0.0,GAME CASUAL,23837448,4176798,1534041,486005,1333650,False 629 | 2,My Talking Tom,16810315,500.0 M,4,0.3,0.5,0.0,GAME CASUAL,12234051,1514188,851145,465627,1745303,False 630 | 3,My Talking Angela,13050503,500.0 M,4,0.6,1.4,0.0,GAME CASUAL,9165205,1073761,636763,399662,1775110,False 631 | 4,Hay Day,12098786,100.0 M,4,0.5,1.2,0.0,GAME CASUAL,9031154,1239752,599727,297910,930241,False 632 | 5,Pou,11506051,500.0 M,4,0.2,0.5,0.0,GAME CASUAL,8175679,1051014,688712,346244,1244400,False 633 | 6,Gardenscapes,10721875,100.0 M,4,0.6,1.5,0.0,GAME CASUAL,7566483,1406080,591119,264105,894086,False 634 | 7,Minion Rush: Despicable Me Official Game,10659387,100.0 M,4,0.0,0.1,0.0,GAME CASUAL,7884729,1105063,542317,236861,890414,False 635 | 8,Homescapes,10159890,100.0 M,4,0.8,2.1,0.0,GAME CASUAL,7089644,1367797,604525,262575,835347,False 636 | 9,Farm Heroes Saga,9123920,100.0 M,4,0.6,1.2,0.0,GAME CASUAL,7097079,1176491,433227,128489,288631,False 637 | 10,Township,8306868,100.0 M,4,0.6,1.2,0.0,GAME CASUAL,5666720,959679,483208,261701,935558,False 638 | 11,Candy Crush Soda Saga,8071775,100.0 M,4,0.4,0.8,0.0,GAME CASUAL,6031478,1145290,420595,132006,342404,False 639 | 12,Plants vs Zombies™ 2 Free,6964142,100.0 M,4,0.5,1.1,0.0,GAME CASUAL,5161994,738250,337096,159672,567126,False 640 | 13,Coin Master,5768595,100.0 M,4,2.0,5.0,0.0,GAME CASUAL,4089427,617190,303609,139343,619023,False 641 | 14,Angry Birds 2,5720687,100.0 M,4,0.4,0.9,0.0,GAME CASUAL,4040927,701272,315427,150412,512646,False 642 | 15,My Cafe — Restaurant Game. Serve & Manage,4170408,50.0 M,4,0.6,1.4,0.0,GAME CASUAL,3234679,428334,200017,86064,221311,False 643 | 16,The Simpsons™: Tapped Out,4079806,100.0 M,4,0.1,0.2,0.0,GAME CASUAL,2650097,486532,256817,141989,544370,False 644 | 17,My Talking Tom 2,3617773,100.0 M,4,2.0,4.6,0.0,GAME CASUAL,2619420,297742,172533,114892,413183,False 645 | 18,Bubble Witch 2 Saga,2954685,100.0 M,4,252.7,0.1,0.0,GAME CASUAL,2182994,442668,186915,45788,96317,False 646 | 19,FarmVille 2: Country Escape,2914639,50.0 M,4,0.3,0.5,0.0,GAME CASUAL,1994505,407586,195237,87860,229449,False 647 | 20,Talking Tom Cat,2264014,100.0 M,3,0.7,1.5,0.0,GAME CASUAL,1459128,186361,140080,100488,377954,False 648 | 21,My Home - Design Dreams,2154956,100.0 M,4,0.9,2.1,0.0,GAME CASUAL,1513881,301704,140589,56303,142476,False 649 | 22,Best Fiends - Free Puzzle Game,2091145,50.0 M,4,0.5,1.0,0.0,GAME CASUAL,1646856,256082,76653,33048,78503,False 650 | 23,PewDiePie's Tuber Simulator,2001718,10.0 M,4,0.1,0.2,0.0,GAME CASUAL,1671110,180104,55116,21918,73468,False 651 | 24,Ice Age Village,1898651,50.0 M,4,0.0,0.1,0.0,GAME CASUAL,1399681,245543,112191,39947,101286,False 652 | 25,My Talking Tom Friends,1876427,100.0 M,4,5.4,12.0,0.0,GAME CASUAL,1404351,145789,83448,52288,190548,False 653 | 26,Dumb Ways to Die 2: The Games,1782012,100.0 M,4,0.0,0.1,0.0,GAME CASUAL,1265351,195451,108001,46276,166930,False 654 | 27,Candy Crush Friends Saga,1683260,50.0 M,4,0.8,1.6,0.0,GAME CASUAL,1268463,242273,83832,27455,61234,False 655 | 28,Family Farm Seaside,1627243,50.0 M,4,0.3,0.8,0.0,GAME CASUAL,1204255,135347,78073,44346,165218,False 656 | 29,Bubble Shooter,1503412,100.0 M,4,3.1,6.7,0.0,GAME CASUAL,1033894,163259,108056,54617,143583,False 657 | 30,Pirate Kings™️,1432166,10.0 M,4,0.2,0.3,0.0,GAME CASUAL,1049465,142061,64707,33473,142459,False 658 | 31,MY LITTLE PONY: Magic Princess,1431962,50.0 M,4,0.2,0.3,0.0,GAME CASUAL,975697,146337,81939,48296,179690,False 659 | 32,My Horse,1378621,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,983456,257030,77494,15776,44864,False 660 | 33,Blossom Blast Saga,1326867,50.0 M,4,0.1,0.3,0.0,GAME CASUAL,956682,190254,81633,28037,70258,False 661 | 34,Gacha Club,1222505,10.0 M,4,5.9,12.9,0.0,GAME CASUAL,976018,118010,42649,18392,67434,False 662 | 35,Diamond Digger Saga,1218003,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,883862,199331,79682,18938,36188,False 663 | 36,Farm Heroes Super Saga,1135695,10.0 M,4,0.2,0.4,0.0,GAME CASUAL,825239,185210,69324,19865,36055,False 664 | 37,My Talking Hank,1131205,100.0 M,4,0.7,1.6,0.0,GAME CASUAL,809274,94858,59551,38632,128888,False 665 | 38,Papa Pear Saga,1099997,50.0 M,4,196.3,0.1,0.0,GAME CASUAL,813086,144035,64753,23147,54974,False 666 | 39,My Boo: Your Virtual Pet Game To Care and Play,1009374,10.0 M,4,0.2,0.5,0.0,GAME CASUAL,784152,106559,46334,17864,54463,False 667 | 40,Puppy Town - Merge & Win,978460,50.0 M,4,1.5,4.2,0.0,GAME CASUAL,673255,72892,32537,20945,178828,False 668 | 41,Save The Girl,952348,100.0 M,3,1.1,2.6,0.0,GAME CASUAL,591803,80978,62429,48097,169038,False 669 | 42,Smurfs' Village,941133,10.0 M,4,0.1,0.1,0.0,GAME CASUAL,731661,81527,45176,19280,63487,False 670 | 43,My Dolphin Show,939577,50.0 M,4,0.3,0.7,0.0,GAME CASUAL,676889,96965,56485,26929,82307,False 671 | 44,Green Farm 3,924595,10.0 M,4,0.4,0.7,0.0,GAME CASUAL,571381,115687,76942,38875,121707,False 672 | 45,Pet Rescue Saga,921224,100.0 M,4,0.0,0.0,0.0,GAME CASUAL,751461,107090,30751,10390,21529,False 673 | 46,"Good Pizza, Great Pizza",910777,50.0 M,4,2.1,5.0,0.0,GAME CASUAL,651420,117048,52529,24633,65145,False 674 | 47,Bubble Shooter,881816,100.0 M,4,1.2,2.8,0.0,GAME CASUAL,622790,117945,56216,23294,61569,False 675 | 48,Rodeo Stampede: Sky Zoo Safari,880964,10.0 M,4,0.4,0.8,0.0,GAME CASUAL,566493,120253,69961,33039,91215,False 676 | 49,Stickman Warriors,875343,50.0 M,4,0.2,0.3,0.0,GAME CASUAL,585941,90239,60299,28150,110712,False 677 | 50,Idle Arks: Build at Sea,865040,10.0 M,4,5.5,14.0,0.0,GAME CASUAL,638136,98626,54652,22207,51416,False 678 | 51,Bubbu – My Virtual Pet,847777,50.0 M,4,1.8,3.7,0.0,GAME CASUAL,660874,63957,33911,20752,68280,False 679 | 52,BTS WORLD,781393,10.0 M,4,0.7,1.4,0.0,GAME CASUAL,689356,38419,16073,7813,29731,False 680 | 53,Let's Create! Pottery Lite,777217,10.0 M,4,0.3,0.5,0.0,GAME CASUAL,532145,83892,54115,28958,78104,False 681 | 54,Covet Fashion - Dress Up Game,752953,10.0 M,4,0.4,0.6,0.0,GAME CASUAL,419680,145021,65512,34343,88394,False 682 | 55,World Chef 🍰🍔🍝🍓,712766,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,515705,91031,43134,17633,45261,False 683 | 56,What if..,685365,5.0 M,4,0.0,0.0,0.0,GAME CASUAL,552588,94468,21233,5136,11938,False 684 | 57,Virtual Families 2,679330,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,432002,91148,56154,24538,75485,False 685 | 58,Angry Birds POP Bubble Shooter,670105,10.0 M,4,0.2,0.3,0.0,GAME CASUAL,494241,81755,38494,15919,39693,False 686 | 59,The Simpsons™: Tapped Out,665838,10.0 M,4,0.1,0.1,0.0,GAME CASUAL,482665,78462,35349,17654,51705,False 687 | 60,Wonder Zoo - Animal rescue !,659139,10.0 M,4,0.2,0.3,0.0,GAME CASUAL,451806,82817,44197,20209,60108,False 688 | 61,Furby BOOM!,655486,10.0 M,4,0.0,0.0,0.0,GAME CASUAL,497030,57511,30349,13680,56912,False 689 | 62,Shopping Mall Girl - Dress Up & Style Game,652820,50.0 M,4,0.9,1.9,0.0,GAME CASUAL,452065,54651,38207,25278,82615,False 690 | 63,Plants vs. Zombies™ 2 Free,649699,10.0 M,4,0.3,0.6,0.0,GAME CASUAL,467599,79307,35546,17028,50216,False 691 | 64,Plants vs. Zombies™ Heroes,636439,10.0 M,4,1.2,2.3,0.0,GAME CASUAL,454670,70717,34755,17372,58923,False 692 | 65,Twist Hit!,627963,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,456597,74051,44136,16750,36428,False 693 | 66,Hello Kitty Nail Salon,627042,100.0 M,4,1.2,2.7,0.0,GAME CASUAL,440620,46732,31244,22519,85924,False 694 | 67,Board Kings™️: Fun Board Games,605422,10.0 M,4,3.2,6.5,0.0,GAME CASUAL,473424,51048,22893,13584,44471,False 695 | 68,Moy 3 - Virtual Pet Game,603781,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,462582,58790,33494,11913,36999,False 696 | 69,Fish Live,602123,10.0 M,4,0.0,0.1,0.0,GAME CASUAL,459046,63875,35736,10925,32537,False 697 | 70,Family Island™ - Farm game adventure,592625,10.0 M,4,10.0,19.3,0.0,GAME CASUAL,411401,90484,39822,15183,35732,False 698 | 71,Cow Evolution: Crazy Cow Making Idle Merge Games,570955,10.0 M,4,0.3,0.5,0.0,GAME CASUAL,443937,66232,26738,10215,23830,False 699 | 72,BlockBuild: Craft Your Dream World,568174,10.0 M,4,0.1,0.2,0.0,GAME CASUAL,364726,54802,38870,19860,89914,False 700 | 73,Paradise Island 2: Hotel Game,567668,10.0 M,4,0.3,0.7,0.0,GAME CASUAL,392672,118389,23787,8741,24077,False 701 | 74,Kiss Kiss: Spin the Bottle for Chatting & Fun,556525,10.0 M,4,5.5,11.8,0.0,GAME CASUAL,438288,22770,12779,9891,72795,False 702 | 75,Moy 2 - Virtual Pet Game,540665,10.0 M,4,0.1,0.3,0.0,GAME CASUAL,389914,49587,35329,16166,49667,False 703 | 76,Lost Island: Blast Adventure,539618,10.0 M,4,0.4,0.9,0.0,GAME CASUAL,392042,84757,31131,10657,21028,False 704 | 77,Stupid Zombies 3,532119,10.0 M,4,0.2,0.5,0.0,GAME CASUAL,391786,63353,34261,12140,30576,False 705 | 78,Idle Sightseeing Train - Game of Train Transport,526404,1.0 M,4,625.9,1251.8,0.0,GAME CASUAL,332168,78207,48369,16909,50748,False 706 | 79,Dumb Ways to Die,521999,50.0 M,4,0.3,0.6,0.0,GAME CASUAL,333246,64379,41810,21779,60782,False 707 | 80,Bubble Shooter,513273,100.0 M,4,0.3,0.6,0.0,GAME CASUAL,356049,63918,35560,16181,41563,False 708 | 81,Fruit Block - Puzzle Legend,510146,10.0 M,4,1914.7,1.7,0.0,GAME CASUAL,338839,73912,48046,16253,33093,False 709 | 82,Island Experiment,497556,10.0 M,4,0.0,0.0,0.0,GAME CASUAL,220970,146774,82128,15085,32597,False 710 | 83,Bubble Shooter,487206,100.0 M,4,0.5,1.1,0.0,GAME CASUAL,339101,60100,31478,14670,41854,False 711 | 84,Moy 4 - Virtual Pet Game,476520,10.0 M,4,0.1,0.3,0.0,GAME CASUAL,355557,44409,26769,12156,37627,False 712 | 85,Moy - Virtual Pet Game,475705,10.0 M,4,0.1,0.1,0.0,GAME CASUAL,335504,44683,31325,13678,50513,False 713 | 86,HappyFish,469274,1.0 M,4,0.0,0.1,0.0,GAME CASUAL,348400,68745,30278,5392,16457,False 714 | 87,Match Masters,462861,10.0 M,4,24.0,49.3,0.0,GAME CASUAL,328311,64534,28243,9107,32664,False 715 | 88,Gacha Studio (Anime Dress Up),462460,10.0 M,3,0.7,1.4,0.0,GAME CASUAL,278605,46716,34234,22630,80272,False 716 | 89,Cooking Dash,458766,10.0 M,4,0.1,0.2,0.0,GAME CASUAL,279541,73007,41708,20739,43768,False 717 | 90,LINE 旅遊大亨,444080,5.0 M,3,0.0,0.0,0.0,GAME CASUAL,226320,43452,36250,17770,120287,False 718 | 91,Little Big City 2,442100,10.0 M,3,0.3,0.6,0.0,GAME CASUAL,259916,61224,39116,19478,62364,False 719 | 92,Kids Doodle - Color & Draw Free Game,430459,50.0 M,4,0.0,0.1,0.0,GAME CASUAL,309838,47284,26040,10352,36942,False 720 | 93,Dance Clash: Ballet vs Hip Hop,428132,10.0 M,4,0.9,2.1,0.0,GAME CASUAL,295035,44478,27154,14836,46626,False 721 | 94,sand:box,414428,10.0 M,4,1.7,3.8,0.0,GAME CASUAL,297229,47857,24352,11976,33011,False 722 | 95,Gacha Life,405505,50.0 M,4,0.3,0.6,0.0,GAME CASUAL,307443,40558,16388,7553,33561,False 723 | 96,Wildscapes,385882,10.0 M,4,0.6,1.3,0.0,GAME CASUAL,273707,57256,22876,9323,22718,False 724 | 97,Bravoloto,381919,5.0 M,4,0.1,0.2,0.0,GAME CASUAL,316246,31810,9963,5205,18692,False 725 | 98,Harvest Land: Farm & City Building,378085,10.0 M,4,2.0,4.2,0.0,GAME CASUAL,258091,47714,27671,11842,32765,False 726 | 99,The Battle Cats,373522,10.0 M,4,1.4,2.9,0.0,GAME CASUAL,289498,37687,15999,6754,23581,False 727 | 100,Big Farm: Mobile Harvest – Free Farming Game,370755,10.0 M,4,508.1,2.8,0.0,GAME CASUAL,233460,65503,22707,12643,36439,False 728 | 1,Toca Life World: Build stories & create your world,1690405,50.0 M,4,11.1,26.7,0.0,GAME EDUCATIONAL,1191130,195192,95400,50193,158487,False 729 | 2,Toca Kitchen 2,1543998,100.0 M,4,0.9,2.0,0.0,GAME EDUCATIONAL,1044380,167400,99241,57056,175918,False 730 | 3,Cooking Mama: Let's cook!,758930,50.0 M,4,0.6,1.3,0.0,GAME EDUCATIONAL,569677,64417,38966,21992,63877,False 731 | 4,知識王,571355,1.0 M,4,0.0,0.0,0.0,GAME EDUCATIONAL,395665,71737,37756,15358,50837,False 732 | 5,Animal Jam,519854,10.0 M,4,0.4,0.8,0.0,GAME EDUCATIONAL,330550,67983,37226,19708,64384,False 733 | 6,My Town: Home Doll house - Family Playhouse,469665,10.0 M,4,3.7,7.9,0.0,GAME EDUCATIONAL,338284,37308,23232,16939,53900,False 734 | 7,Skillz - Logic Brain Games,440099,10.0 M,4,0.3,0.6,0.0,GAME EDUCATIONAL,284760,81030,28581,12818,32907,False 735 | 8,Mandala Coloring Pages,335602,50.0 M,4,0.6,1.2,0.0,GAME EDUCATIONAL,227796,38019,21197,13605,34982,False 736 | 9,Baby Panda's Supermarket,299512,100.0 M,4,2.1,5.1,0.0,GAME EDUCATIONAL,221507,19279,12167,10193,36364,False 737 | 10,Baby Panda World,229515,50.0 M,4,11.0,23.1,0.0,GAME EDUCATIONAL,177112,13802,8861,6241,23497,False 738 | 11,Masha and the Bear. Educational Games,210406,100.0 M,4,1.9,4.3,0.0,GAME EDUCATIONAL,142332,15737,11577,9045,31713,False 739 | 12,Pepi House: Happy Family,204816,10.0 M,4,1.5,3.3,0.0,GAME EDUCATIONAL,132787,19175,11845,9717,31289,False 740 | 13,"Math Games, Learn Add, Subtract, Multiply & Divide",201926,10.0 M,4,3.0,6.9,0.0,GAME EDUCATIONAL,154697,16426,8631,5266,16904,False 741 | 14,Girl Games: Unicorn Cooking Games for Girls Kids,191141,10.0 M,4,10.0,24.7,0.0,GAME EDUCATIONAL,150962,11416,6201,5011,17549,False 742 | 15,Pepi Super Stores: Fun & Games,188628,10.0 M,4,1.8,4.0,0.0,GAME EDUCATIONAL,131144,14630,9261,7644,25947,False 743 | 16,LEGO® DUPLO® Train,185082,10.0 M,4,0.0,0.0,0.0,GAME EDUCATIONAL,129634,16481,12725,5763,20476,False 744 | 17,Little Panda's Restaurant,177900,50.0 M,4,3.5,6.7,0.0,GAME EDUCATIONAL,136565,10350,6860,5324,18798,False 745 | 18,Smolsies - My Cute Pet House,164764,10.0 M,4,3.3,7.3,0.0,GAME EDUCATIONAL,118137,14783,8830,5341,17670,False 746 | 19,Baby Panda Care,161896,50.0 M,4,1.1,2.4,0.0,GAME EDUCATIONAL,113255,11857,7862,7032,21887,False 747 | 20,超級單字王 - 英檢、多益、托福 輕鬆學,158721,500.0 k,4,0.6,1.1,0.0,GAME EDUCATIONAL,149917,6111,1435,358,897,False 748 | 21,Baby Panda's School Bus - Let's Drive!,155279,50.0 M,4,4.9,9.8,0.0,GAME EDUCATIONAL,117842,9711,6246,4458,17020,False 749 | 22,Baby Panda's Fashion Dress Up Game,152780,50.0 M,4,3.1,6.8,0.0,GAME EDUCATIONAL,113689,8994,6478,5001,18617,False 750 | 23,"Truck games for kids - build a house, car wash",147633,100.0 M,4,5446.9,10.2,0.0,GAME EDUCATIONAL,98893,11767,8266,6773,21932,False 751 | 24,"Baby Games for 2,3,4 year old toddlers",146101,10.0 M,4,4.6,10.0,0.0,GAME EDUCATIONAL,111993,21993,6404,1817,3892,False 752 | 25,Fluvsies - A Fluff to Luv,145347,10.0 M,4,8.2,18.8,0.0,GAME EDUCATIONAL,110407,11110,6183,3914,13730,False 753 | 26,My Town : Police Station. Policeman Game for Kids,142128,10.0 M,4,2.1,4.4,0.0,GAME EDUCATIONAL,97965,10628,7445,6616,19471,False 754 | 27,Baby Panda’s Ice Cream Shop,141681,50.0 M,4,2.2,4.7,0.0,GAME EDUCATIONAL,105203,9009,6799,4859,15808,False 755 | 28,Coloring & Learn,138294,50.0 M,4,4.6,11.1,0.0,GAME EDUCATIONAL,95108,13510,8076,5246,16351,False 756 | 29,Meow Meow Star Acres,135433,1.0 M,4,0.1,0.2,0.0,GAME EDUCATIONAL,103645,13910,7204,2797,7874,False 757 | 30,Supermarket: Shopping Games for Kids,132854,10.0 M,4,1.5,3.4,0.0,GAME EDUCATIONAL,95241,8553,5436,4416,19206,False 758 | 31,Little Panda's Chinese Recipes,129911,50.0 M,4,2.5,5.0,0.0,GAME EDUCATIONAL,98822,8155,5566,3684,13682,False 759 | 32,Little Panda Policeman,128528,50.0 M,4,3.4,7.5,0.0,GAME EDUCATIONAL,92578,8404,6004,4602,16937,False 760 | 33,من سيربح المليون الموسوعة,123262,10.0 M,4,1.4,2.8,0.0,GAME EDUCATIONAL,91784,5925,5156,3677,16718,False 761 | 34,Do Not Disturb! Get Prankster in a Hilarious Game,121977,10.0 M,4,1.9,4.1,0.0,GAME EDUCATIONAL,82251,11555,11792,4308,12068,False 762 | 35,My Town: Play & Discover - City Builder Game,116243,10.0 M,4,2013.3,9.3,0.0,GAME EDUCATIONAL,80372,8500,5402,4349,17617,False 763 | 36,Make-Up Me: Superstar,106074,10.0 M,4,0.0,0.0,0.0,GAME EDUCATIONAL,75946,12756,7102,2217,8051,False 764 | 37,Multiplication Table Kids Math,103248,10.0 M,4,0.0,0.0,0.0,GAME EDUCATIONAL,74312,10957,5883,2047,10048,False 765 | 38,MentalUP - Learning Games & Brain Games,102219,5.0 M,4,2.1,4.8,0.0,GAME EDUCATIONAL,90114,4431,1625,852,5194,False 766 | 39,"Math Exercises for the brain, Math Riddles, Puzzle",102168,5.0 M,4,2.7,5.9,0.0,GAME EDUCATIONAL,77581,13635,4971,2006,3972,False 767 | 40,Princess Salon: Frozen Party,101418,10.0 M,3,0.5,0.2,0.0,GAME EDUCATIONAL,66006,7186,6156,4757,17311,False 768 | 41,Little Panda’s Summer: Ice Cream Bars,94157,10.0 M,4,1.9,4.5,0.0,GAME EDUCATIONAL,72545,5575,3879,2822,9334,False 769 | 42,Little Panda: Princess Makeup,91946,10.0 M,4,5.6,12.3,0.0,GAME EDUCATIONAL,65777,6298,4430,3427,12011,False 770 | 43,Reaction training,91542,1.0 M,4,5.9,15.1,0.0,GAME EDUCATIONAL,77154,9565,1942,759,2120,False 771 | 44,Make-Up Me,90720,10.0 M,3,0.1,0.1,0.0,GAME EDUCATIONAL,55578,8660,7441,4235,14803,False 772 | 45,Bini Super ABC! Preschool Learning Games for Kids!,90184,10.0 M,4,2.5,6.0,0.0,GAME EDUCATIONAL,68668,9896,4022,2070,5525,False 773 | 46,LEGO® DUPLO® Town,89570,10.0 M,3,0.0,0.0,0.0,GAME EDUCATIONAL,55869,7412,5656,4419,16211,False 774 | 47,My Town : Fashion Show,88278,10.0 M,4,2.7,6.0,0.0,GAME EDUCATIONAL,62679,6818,4119,3682,10977,False 775 | 48,Little Panda's Farm Story,85437,10.0 M,4,2.5,5.1,0.0,GAME EDUCATIONAL,66723,5406,3610,2174,7521,False 776 | 49,Little Panda: Princess Dress Up,83994,10.0 M,4,1.7,3.5,0.0,GAME EDUCATIONAL,58641,5858,4008,3538,11946,False 777 | 50,"Сказки и развивающие игры для детей, малышей",81628,1.0 M,4,0.5,1.1,0.0,GAME EDUCATIONAL,71135,6195,1678,759,1858,False 778 | 51,Baby Panda's Carnival - Christmas Amusement Park,81135,10.0 M,4,1.6,3.9,0.0,GAME EDUCATIONAL,60102,5200,3703,2615,9512,False 779 | 52,My Town : Beauty contest - Dress Up Game for Girls,79583,10.0 M,4,3.1,7.1,0.0,GAME EDUCATIONAL,57296,5472,4000,3121,9691,False 780 | 53,Monster Trucks Game for Kids 2,79263,50.0 M,3,2.3,5.2,0.0,GAME EDUCATIONAL,50961,6250,4670,3720,13660,False 781 | 54,ほしの島のにゃんこ,78145,1.0 M,4,0.2,0.3,0.0,GAME EDUCATIONAL,42904,14624,8998,3381,8236,False 782 | 55,Urban City Stories,76981,10.0 M,3,5.4,11.9,0.0,GAME EDUCATIONAL,43442,7060,5325,5046,16106,False 783 | 56,Jungle Animal Hair Salon - Styling Game for Kids,76498,10.0 M,3,0.4,0.9,0.0,GAME EDUCATIONAL,47396,6488,5338,4288,12986,False 784 | 57,Tailor Kids,75435,10.0 M,4,0.1,0.2,0.0,GAME EDUCATIONAL,53508,7325,6366,2088,6146,False 785 | 58,Snow Cone Maker - Frozen Foods,75270,10.0 M,4,0.1,0.2,0.0,GAME EDUCATIONAL,54579,6354,4815,1908,7612,False 786 | 59,Baby Phone for Kids - Learning Numbers and Animals,75082,10.0 M,4,0.1,672.7,0.0,GAME EDUCATIONAL,52362,5787,4729,2823,9379,False 787 | 60,Memory Games: Brain Training,73407,5.0 M,4,0.3,0.7,0.0,GAME EDUCATIONAL,43304,15335,6560,2492,5713,False 788 | 61,My Town : Best Friends' House games for kids,72164,10.0 M,4,8.9,23.3,0.0,GAME EDUCATIONAL,51654,5773,3346,2593,8796,False 789 | 62,Moonzy. Kids Mini-Games,70614,10.0 M,4,0.3,0.6,0.0,GAME EDUCATIONAL,54274,4189,2324,1685,8139,False 790 | 63,Little Panda's Candy Shop,69285,10.0 M,4,0.6,1.4,0.0,GAME EDUCATIONAL,52476,4439,2919,1999,7449,False 791 | 64,Kids Animals Jigsaw Puzzles ❤️🦄,68066,10.0 M,4,0.5,1.0,0.0,GAME EDUCATIONAL,50643,6903,3048,1653,5817,False 792 | 65,Kids Educational Game 5,67910,10.0 M,4,2.1,4.6,0.0,GAME EDUCATIONAL,47218,6153,3614,2559,8364,False 793 | 66,Baby Panda's Town: Life,66241,10.0 M,4,6.9,14.7,0.0,GAME EDUCATIONAL,49236,4324,2860,2245,7574,False 794 | 67,Baby care,66160,10.0 M,3,3.2,7.0,0.0,GAME EDUCATIONAL,40798,5423,4460,3437,12039,False 795 | 68,Bini Drawing for Kids! Learning Games for Toddlers,66057,10.0 M,4,1.7,3.9,0.0,GAME EDUCATIONAL,44993,5999,3661,2477,8925,False 796 | 69,Girls Hair Salon - Hairstyle makeover kids games,65669,5.0 M,3,0.3,0.5,0.0,GAME EDUCATIONAL,36321,7560,5642,3775,12368,False 797 | 70,Princess Coloring Book Glitter & Girls Dress Up,63887,50.0 M,3,4.5,10.0,0.0,GAME EDUCATIONAL,39665,5486,4964,4235,9534,False 798 | 71,Bubbu School - My Cute Pets | Animal School Game,63873,10.0 M,4,12.5,33.0,0.0,GAME EDUCATIONAL,47377,4920,3008,1871,6694,False 799 | 72,"Bucha học tiếng Anh - Từ vựng, Giao tiếp, Ngữ pháp",63384,1.0 M,4,1.2,2.1,0.0,GAME EDUCATIONAL,55735,4543,1178,419,1507,False 800 | 73,Math Games,62792,10.0 M,4,0.5,1.1,0.0,GAME EDUCATIONAL,42609,5574,3539,2213,8854,False 801 | 74,Trip to the zoo for kids,62564,5.0 M,4,0.0,0.0,0.0,GAME EDUCATIONAL,50512,5116,2678,989,3267,False 802 | 75,Ice Queen's Beauty SPA Salon,62194,5.0 M,4,87.5,174.9,0.0,GAME EDUCATIONAL,40029,6518,5668,2779,7198,False 803 | 76,Cinderella - Story Games and Puzzles,61993,1.0 M,4,0.3,0.5,0.0,GAME EDUCATIONAL,43164,5426,3367,2118,7915,False 804 | 77,Princess Coloring Game,60889,10.0 M,4,14.5,29.6,0.0,GAME EDUCATIONAL,41190,5048,3972,3003,7674,False 805 | 78,Baby Panda’s Summer: Café,60654,10.0 M,4,2.7,5.8,0.0,GAME EDUCATIONAL,44911,4360,2741,1797,6843,False 806 | 79,Sweet Baby Girl Cleanup 5 - Messy House Makeover,59598,10.0 M,4,3.7,8.3,0.0,GAME EDUCATIONAL,41141,4207,3237,2298,8713,False 807 | 80,My Town : Grandparents Play home Fun Life Game,57537,10.0 M,4,6.9,16.6,0.0,GAME EDUCATIONAL,42166,4103,2752,2096,6418,False 808 | 81,Baby Panda’s Color Mixing Studio,56865,10.0 M,4,0.8,1.8,0.0,GAME EDUCATIONAL,39917,3888,2721,2223,8115,False 809 | 82,"Colors for Kids, Toddlers, Babies - Learning Game",56525,10.0 M,4,2.8,6.5,0.0,GAME EDUCATIONAL,35477,5997,4790,2963,7295,False 810 | 83,My Baby Panda Chef,56416,10.0 M,4,2428.7,2.5,0.0,GAME EDUCATIONAL,42626,2823,2464,1895,6605,False 811 | 84,Halloween Makeup Me,56154,5.0 M,4,0.1,0.1,0.0,GAME EDUCATIONAL,37592,6117,3688,1999,6756,False 812 | 85,Английский для Начинающих: LinDuo HD,55294,1.0 M,4,3.9,8.3,0.0,GAME EDUCATIONAL,47904,5419,1123,266,581,False 813 | 86,Central Hospital Stories,55114,10.0 M,3,4.4,8.9,0.0,GAME EDUCATIONAL,31358,4705,3647,3331,12070,False 814 | 87,My Little Princess Castle - Playhouse & Girls Game,55006,10.0 M,4,3.3,7.3,0.0,GAME EDUCATIONAL,39870,4473,2558,1745,6357,False 815 | 88,Airport Professions: Fascinating games,54400,10.0 M,4,0.6,1.3,0.0,GAME EDUCATIONAL,41341,2813,1785,1666,6793,False 816 | 89,Masha and the Bear: Good Night!,54217,10.0 M,4,1.7,3.7,0.0,GAME EDUCATIONAL,37964,3338,2381,2281,8250,False 817 | 90,Little Panda’s Space Kitchen - Kids Cooking,54205,10.0 M,4,3.3,7.5,0.0,GAME EDUCATIONAL,39390,3463,2695,2136,6518,False 818 | 91,Funny Food! Educational games for kids 3 years old,53535,10.0 M,4,3.1,7.3,0.0,GAME EDUCATIONAL,35719,5842,3432,1934,6606,False 819 | 92,Baby Panda's Town: My Dream,53039,10.0 M,4,3.7,8.3,0.0,GAME EDUCATIONAL,40078,3342,2155,1616,5846,False 820 | 93,My Town : Bakery - Cooking & Baking Game for Kids,51944,10.0 M,4,5.9,13.6,0.0,GAME EDUCATIONAL,38541,3722,2145,1985,5548,False 821 | 94,Sweet Baby Girl Summer Fun 2 - Sunny Makeover Game,51903,10.0 M,4,3.0,6.1,0.0,GAME EDUCATIONAL,35441,3967,2828,2348,7316,False 822 | 95,My Town: After School Neighborhood Street,51861,10.0 M,4,5.3,12.1,0.0,GAME EDUCATIONAL,37558,4077,2298,1988,5936,False 823 | 96,Animals Farm For Kids,51687,5.0 M,4,0.1,0.2,0.0,GAME EDUCATIONAL,41659,5118,1929,609,2369,False 824 | 97,My Baby Unicorn - Virtual Pony Pet Care & Dress Up,51547,10.0 M,4,2.8,6.4,0.0,GAME EDUCATIONAL,35544,3608,3103,2012,7277,False 825 | 98,"Fairy Tales ~ Children’s Books, Stories and Games",51002,1.0 M,4,1.0,1.7,0.0,GAME EDUCATIONAL,38219,6460,2431,982,2907,False 826 | 99,Vacation Hotel Stories,50931,10.0 M,3,2.9,6.1,0.0,GAME EDUCATIONAL,30222,4867,4037,3098,8705,False 827 | 100,Kpopsies - Hatch Your Unicorn Idol,49811,10.0 M,4,8.9,21.0,0.0,GAME EDUCATIONAL,35964,3842,2150,1751,6101,False 828 | 1,Tiles Hop: EDM Rush!,2454558,100.0 M,4,3.3,7.5,0.0,GAME MUSIC,1815983,211433,119350,69277,238513,False 829 | 2,Magic Tiles 3,2381045,100.0 M,4,2.5,5.7,0.0,GAME MUSIC,1570436,234136,154821,92834,328815,False 830 | 3,My Singing Monsters,1363013,10.0 M,4,0.3,0.7,0.0,GAME MUSIC,1099001,128954,50656,22006,62394,False 831 | 4,Piano Free - Keyboard with Magic Tiles Music Games,1280824,100.0 M,4,0.3,0.6,0.0,GAME MUSIC,852807,110725,67194,36282,213813,False 832 | 5,Dancing Road: Color Ball Run!,665818,100.0 M,4,2.0,4.5,0.0,GAME MUSIC,437466,65470,44575,27672,90633,False 833 | 6,Dream Piano - Music Game,664703,50.0 M,4,0.4,0.7,0.0,GAME MUSIC,487709,65614,36484,18292,56602,False 834 | 7,Rock Hero,640085,50.0 M,4,0.0,0.1,0.0,GAME MUSIC,416639,83385,63908,16319,59831,False 835 | 8,"Real Guitar Free - Chords, Tabs & Simulator Games",608905,50.0 M,3,0.4,0.7,0.0,GAME MUSIC,346418,57223,43330,24894,137038,False 836 | 9,Cytus,571244,5.0 M,4,0.1,0.2,0.0,GAME MUSIC,463607,48438,17949,10009,31239,False 837 | 10,DEEMO,552415,5.0 M,4,0.1,0.2,0.0,GAME MUSIC,461266,43525,16200,7865,23556,False 838 | 11,Piano Kids - Music & Songs,407001,100.0 M,4,3.9,8.6,0.0,GAME MUSIC,302144,36847,19082,11939,36986,False 839 | 12,SongPop,403074,10.0 M,4,0.0,0.0,0.0,GAME MUSIC,278414,59680,23708,12163,29106,False 840 | 13,Piano Music Go 2020: EDM Piano Games,388495,50.0 M,4,1.5,3.7,0.0,GAME MUSIC,282968,38871,21217,11806,33632,False 841 | 14,Music Hero - Rhythm Beat Tap,372516,10.0 M,4,76.2,152.4,0.0,GAME MUSIC,225363,54103,37848,16843,38357,False 842 | 15,Real Piano Teacher,363476,10.0 M,4,0.2,0.3,0.0,GAME MUSIC,293298,20676,13578,7408,28514,False 843 | 16,Beat Fire - EDM Music & Gun Sounds,296208,10.0 M,4,1.9,4.5,0.0,GAME MUSIC,223552,25631,15025,7961,24035,False 844 | 17,Sonic Cat - Slash the Beats,273983,10.0 M,4,1.8,3.7,0.0,GAME MUSIC,233792,15101,7350,3745,13992,False 845 | 18,Drum Set Music Games & Drums Kit Simulator,253894,10.0 M,3,0.3,0.9,0.0,GAME MUSIC,139713,20684,15206,8877,69411,False 846 | 19,Dancing Ballz: Magic Dance Line Tiles Game,240014,10.0 M,4,0.3,0.7,0.0,GAME MUSIC,163437,25465,17153,9079,24877,False 847 | 20,BEAT MP3 - Rhythm Game,239452,10.0 M,3,0.0,0.0,0.0,GAME MUSIC,135432,33561,30264,10088,30105,False 848 | 21,Guitar Band Battle,237878,10.0 M,4,0.6,1.1,0.0,GAME MUSIC,149371,35947,17998,8445,26114,False 849 | 22,AVATAR MUSIK - Music and Dance Game,230317,5.0 M,3,0.1,0.2,0.0,GAME MUSIC,150738,15438,11184,6960,45995,False 850 | 23,Music Racer,217878,5.0 M,4,0.3,0.7,0.0,GAME MUSIC,144790,22711,13991,9427,26956,False 851 | 24,BEAT MP3 2.0 - Rhythm Game,208186,10.0 M,4,0.0,0.1,0.0,GAME MUSIC,125085,30702,21835,7760,22802,False 852 | 25,SuperStar SMTOWN,202039,5.0 M,4,0.8,1.6,0.0,GAME MUSIC,135506,24399,12350,6997,22784,False 853 | 26,Dot n Beat - Magic Music Game,189580,10.0 M,4,0.1,0.2,0.0,GAME MUSIC,144341,14615,8725,4546,17351,False 854 | 27,Smash Colors 3D - Free Beat Color Rhythm Ball Game,185412,10.0 M,4,19.1,43.7,0.0,GAME MUSIC,149100,13083,6873,3680,12673,False 855 | 28,Love Live! School idol festival- Music Rhythm Game,167310,5.0 M,4,0.2,498.5,0.0,GAME MUSIC,121186,14735,8311,5234,17841,False 856 | 29,Piano Games - Free Music Piano Challenge 2020,166382,10.0 M,3,0.1,0.3,0.0,GAME MUSIC,90107,17468,12983,9208,36614,False 857 | 30,Hop Ball 3D: Dancing Ball on the Music Tiles,164622,50.0 M,4,1.5,3.3,0.0,GAME MUSIC,104696,17994,10039,7088,24803,False 858 | 31,Beat Craft,161111,5.0 M,4,1.2,2.5,0.0,GAME MUSIC,117376,21217,8910,3356,10249,False 859 | 32,"Rhythm Hive : Play with BTS, TXT, ENHYPEN!",152996,1.0 M,4,10.9,30.2,0.0,GAME MUSIC,124784,15891,5795,2434,4090,False 860 | 33,Give It Up! - Beat Jumper & Music Rhythm Tap,151011,5.0 M,4,0.0,0.0,0.0,GAME MUSIC,102981,19281,10003,4142,14602,False 861 | 34,One More Line,149674,5.0 M,4,0.0,0.0,0.0,GAME MUSIC,85482,23970,13830,7370,19020,False 862 | 35,Tap Tap Music-Pop Songs,139058,10.0 M,4,0.2,0.4,0.0,GAME MUSIC,96177,12792,7743,5496,16847,False 863 | 36,SongPop 2 - Guess The Song,138709,5.0 M,3,0.2,0.5,0.0,GAME MUSIC,73982,19252,13140,8577,23755,False 864 | 37,My Singing Monsters: Dawn of Fire,130606,1.0 M,4,0.4,0.9,0.0,GAME MUSIC,102708,14153,5413,2297,6032,False 865 | 38,Just Dance Now,130471,10.0 M,3,0.5,1.0,0.0,GAME MUSIC,78352,11517,8268,6388,25944,False 866 | 39,バンドリ! ガールズバンドパーティ!,127314,1.0 M,4,0.4,1.0,0.0,GAME MUSIC,90009,16965,7215,3373,9750,False 867 | 40,Piano Magic Tiles Hot song - Free Piano Game,123653,10.0 M,4,2.3,5.2,0.0,GAME MUSIC,94189,11112,6057,2869,9423,False 868 | 41,Helix Crush,114600,10.0 M,4,0.8,1.8,0.0,GAME MUSIC,78216,10083,6848,4863,14589,False 869 | 42,Piano Game Classic - Challenge Music Song,113827,10.0 M,4,6.8,15.9,0.0,GAME MUSIC,83507,11434,6161,2997,9725,False 870 | 43,Piano Solo - Magic Dream tiles game 4,112810,10.0 M,3,0.1,0.3,0.0,GAME MUSIC,59082,12398,9954,6855,24519,False 871 | 44,Cytus II,111679,1.0 M,4,0.8,1.7,1.99,GAME MUSIC,88842,11945,4620,1947,4322,True 872 | 45,Just Dance Controller,108187,10.0 M,3,0.5,1.2,0.0,GAME MUSIC,59335,11560,7264,4883,25143,False 873 | 46,VOEZ,107328,1.0 M,4,0.3,0.6,0.0,GAME MUSIC,68411,16535,8083,3916,10381,False 874 | 47,ラブライブ!スクールアイドルフェスティバル(スクフェス) - 大人気リズムゲーム,105984,1.0 M,4,0.0,0.1,0.0,GAME MUSIC,73443,12242,6752,3858,9686,False 875 | 48,Au Mobile VTC – Game nhảy Audition,104261,5.0 M,3,0.2,0.4,0.0,GAME MUSIC,43790,6890,6890,5510,41180,False 876 | 49,BanG Dream! Girls Band Party!,102536,1.0 M,4,1.9,4.7,0.0,GAME MUSIC,80964,9639,4027,2113,5791,False 877 | 50,UniPad,102133,5.0 M,4,0.0,0.1,0.0,GAME MUSIC,65640,10602,6764,3607,15518,False 878 | 51,Drum set,97355,10.0 M,4,0.0,0.0,0.0,GAME MUSIC,64307,12188,8931,3576,8351,False 879 | 52,Piano Magic Tiles Pop Music 2,95540,10.0 M,4,1.5,3.6,0.0,GAME MUSIC,62900,9673,6076,4057,12831,False 880 | 53,Piano - Play & Learn Music,87197,10.0 M,3,2.0,3.6,0.0,GAME MUSIC,54591,6688,5454,4070,16392,False 881 | 54,Piano Fire - EDM Music & New Rhythm,87091,10.0 M,4,19.7,62.5,0.0,GAME MUSIC,71476,5527,3071,1731,5282,False 882 | 55,Piano Master 2,86693,10.0 M,4,0.0,0.0,0.0,GAME MUSIC,56117,12116,6432,3226,8800,False 883 | 56,Piano Games Mini: Music Instrument & Rhythm,83342,10.0 M,4,0.8,1.8,0.0,GAME MUSIC,61458,6680,4012,2459,8731,False 884 | 57,LIT killah: The Game,82629,1.0 M,4,2.0,4.5,0.0,GAME MUSIC,66304,6988,2885,1537,4912,False 885 | 58,Rock vs Guitar Legends 2017 HD,71117,5.0 M,3,1446.7,0.1,0.0,GAME MUSIC,37347,8774,10183,3008,11802,False 886 | 59,Love Live! School idol festival - 音樂節奏遊戲,71008,1.0 M,4,0.0,0.0,0.0,GAME MUSIC,51391,7698,4139,1859,5918,False 887 | 60,Beat Bop: Pop Star Clicker,69242,100.0 k,4,0.1,0.1,0.0,GAME MUSIC,51096,9117,5438,1059,2529,False 888 | 61,Don't Forget the Lyrics,68321,5.0 M,4,0.7,1.5,0.0,GAME MUSIC,39709,11266,6684,3560,7100,False 889 | 62,6ix9ine Runner,67388,5.0 M,4,2.1,4.2,0.0,GAME MUSIC,54348,4150,2189,1174,5524,False 890 | 63,Beat Roller - Music Ball Race,65897,10.0 M,4,0.7,426.0,0.0,GAME MUSIC,39278,12259,3699,2329,8329,False 891 | 64,アイドルマスター シンデレラガールズ スターライトステージ,65210,1.0 M,4,0.2,0.4,0.0,GAME MUSIC,44969,8419,4498,2084,5237,False 892 | 65,Marshmello Music Dance,64028,10.0 M,4,3.0,6.0,0.0,GAME MUSIC,52167,3567,2048,1418,4826,False 893 | 66,Drum kit (Drums) free,60920,10.0 M,4,0.1,0.2,0.0,GAME MUSIC,38319,6683,5388,2430,8098,False 894 | 67,Tebak Lagu Indonesia,56963,1.0 M,4,0.0,0.0,0.0,GAME MUSIC,31363,9224,9663,2443,4268,False 895 | 68,Lost in Harmony,56107,1.0 M,4,0.1,0.3,0.0,GAME MUSIC,45083,5276,2158,1109,2478,False 896 | 69,Real Piano Teacher 2,55578,1.0 M,4,0.8,1.9,0.0,GAME MUSIC,37028,7639,4729,1929,4249,False 897 | 70,SHOW BY ROCK!![爽快音ゲー ショウバイロック],55357,500.0 k,4,0.0,0.0,0.0,GAME MUSIC,30635,15762,5493,1738,1728,False 898 | 71,Beat Racer,55015,1.0 M,4,0.2,0.5,0.0,GAME MUSIC,35154,7096,4617,1909,6237,False 899 | 72,AyoDance Mobile,54079,1.0 M,3,0.3,0.9,0.0,GAME MUSIC,29528,3838,4178,2848,13684,False 900 | 73,Beat Jumper: EDM up!,53791,10.0 M,4,1.8,4.3,0.0,GAME MUSIC,37386,5789,3922,1837,4855,False 901 | 74,Popscene (Music Industry Sim),53142,1.0 M,3,0.5,1.1,0.0,GAME MUSIC,27811,6397,5002,3188,10741,False 902 | 75,Rock Hero 2,52940,5.0 M,3,0.2,0.6,0.0,GAME MUSIC,31781,6806,3787,2298,8265,False 903 | 76,PianoTiles 3,50867,5.0 M,3,3.1,6.9,0.0,GAME MUSIC,28083,5616,3754,2763,10648,False 904 | 77,SuperStar YG,48198,500.0 k,4,3.9,10.7,0.0,GAME MUSIC,37036,5112,2158,1334,2556,False 905 | 78,Opsu!(Beatmap player for Android),48107,1.0 M,3,2.8,6.2,0.0,GAME MUSIC,22453,6626,5140,2852,11033,False 906 | 79,Dynamix,47959,1.0 M,4,0.4,718.2,0.0,GAME MUSIC,32842,6648,3169,1469,3829,False 907 | 80,アイドリッシュセブン,47171,500.0 k,4,0.2,0.3,0.0,GAME MUSIC,37830,5098,1941,836,1463,False 908 | 81,Beat Blade: Dash Dance,46210,10.0 M,4,0.1,0.2,0.0,GAME MUSIC,30610,6215,3317,1743,4323,False 909 | 82,Color Hop 3D - Music Game,45842,10.0 M,4,4.6,11.5,0.0,GAME MUSIC,30296,3539,2428,2101,7475,False 910 | 83,Au 2 - Chuẩn Audition Mobile,45178,1.0 M,4,1.2,5.4,0.0,GAME MUSIC,34403,2928,1619,1109,5117,False 911 | 84,Mini Piano,45003,5.0 M,3,0.0,0.0,0.0,GAME MUSIC,22326,4329,4399,2799,11148,False 912 | 85,YASUHATI / With your voice!,43497,5.0 M,4,0.2,0.4,0.0,GAME MUSIC,29234,4587,3328,1549,4797,False 913 | 86,Beat Shooter,43124,5.0 M,4,1.2,3.2,0.0,GAME MUSIC,32760,3038,1928,1089,4307,False 914 | 87,Anime Tiles: Piano Music,42881,1.0 M,3,4.3,4.7,0.0,GAME MUSIC,23820,6247,3976,2538,6297,False 915 | 88,Happy Piano - Touch Music,42763,1.0 M,4,0.1,0.1,0.0,GAME MUSIC,31694,3989,2779,1109,3189,False 916 | 89,Project: Muse,41521,1.0 M,4,1.7,3.0,0.0,GAME MUSIC,26336,6930,3484,1871,2897,False 917 | 90,Beat Shooter - Gunshots Rhythm Game,40370,10.0 M,4,21.2,56.5,0.0,GAME MUSIC,31297,3395,1483,1036,3157,False 918 | 91,Pink Piano,40192,10.0 M,4,1.5,3.6,0.0,GAME MUSIC,27089,2471,2044,1677,6908,False 919 | 92,プロジェクトセカイ カラフルステージ! feat. 初音ミク,38912,1.0 M,4,7.3,16.0,0.0,GAME MUSIC,27999,5085,2443,1157,2226,False 920 | 93,Piano Music Tiles 2 - Free Music Games,37291,5.0 M,3,3.2,6.8,0.0,GAME MUSIC,13975,3720,3521,3043,13030,False 921 | 94,Harmonium,36046,10.0 M,4,2.9,6.0,0.0,GAME MUSIC,26252,3277,1873,886,3756,False 922 | 95,TAPSONIC TOP - Music Grand prix,35324,1.0 M,4,1.3,3.0,0.0,GAME MUSIC,24495,5029,2569,869,2359,False 923 | 96,Magic Tiles Vocal & Piano Top Songs New Games,34781,5.0 M,4,2.4,5.7,0.0,GAME MUSIC,24705,4583,1947,838,2706,False 924 | 97,Piano Detector,34434,1.0 M,4,0.4,1.0,0.0,GAME MUSIC,23468,3894,2256,998,3814,False 925 | 98,Muse Dash,34140,100.0 k,4,768.5,6.7,1.49,GAME MUSIC,29210,2774,718,429,1007,True 926 | 99,Lanota - Dynamic & Challenging Music Game,33173,1.0 M,4,0.8,1.9,0.0,GAME MUSIC,26494,3628,1405,528,1116,False 927 | 100,Berpacu Dalam Melody Indonesia,32993,1.0 M,4,0.0,0.0,0.0,GAME MUSIC,19715,5998,4988,849,1439,False 928 | 1,Fishdom,4876844,100.0 M,4,1.0,2.9,0.0,GAME PUZZLE,3641850,439299,231737,124487,439469,False 929 | 2,Brain Out – Can you pass it?,4467655,100.0 M,4,1.8,3.4,0.0,GAME PUZZLE,3390163,421521,211538,99383,345048,False 930 | 3,Toon Blast,3222428,50.0 M,4,1.0,2.0,0.0,GAME PUZZLE,2556112,384991,149188,39049,93086,False 931 | 4,Toy Blast,2941258,50.0 M,4,0.5,1.3,0.0,GAME PUZZLE,2267242,373376,152797,45384,102457,False 932 | 5,Bubble Witch 3 Saga,2514879,50.0 M,4,0.4,0.8,0.0,GAME PUZZLE,1916271,353214,112067,37981,95344,False 933 | 6,Cut the Rope 2,2301209,100.0 M,4,0.1,0.2,0.0,GAME PUZZLE,1810251,255614,102894,33835,98612,False 934 | 7,Where's My Water? 2,2151126,100.0 M,4,0.2,0.5,0.0,GAME PUZZLE,1461033,221781,145555,76086,246668,False 935 | 8,Empires & Puzzles: Epic Match 3,2107067,50.0 M,4,0.7,1.5,0.0,GAME PUZZLE,1424833,234631,132332,75143,240126,False 936 | 9,Pixel Art: Color by Number,2065276,100.0 M,4,633.0,2.5,0.0,GAME PUZZLE,1558040,233777,105530,45513,122413,False 937 | 10,Matchington Mansion,1951302,50.0 M,4,1.1,2.3,0.0,GAME PUZZLE,1406839,263363,115542,47833,117722,False 938 | 11,Disney Frozen Free Fall - Play Frozen Puzzle Games,1713085,50.0 M,4,0.1,0.2,0.0,GAME PUZZLE,1268094,258390,86945,28762,70892,False 939 | 12,Sudoku.com - Free Sudoku,1704670,50.0 M,4,1.1,2.3,0.0,GAME PUZZLE,1254531,307541,79949,18011,44635,False 940 | 13,ضربة معلم - لعبة الغاز مسلية,1701889,10.0 M,4,1.3,2.8,0.0,GAME PUZZLE,1416736,103007,67437,31868,82838,False 941 | 14,Candy Crush Jelly Saga,1652333,100.0 M,4,0.5,1.1,0.0,GAME PUZZLE,1199685,241711,99714,31883,79338,False 942 | 15,Roll the Ball® - slide puzzle,1561049,100.0 M,4,0.1,0.2,0.0,GAME PUZZLE,994338,242232,126119,51089,147270,False 943 | 16,Block Puzzle Jewel,1557099,100.0 M,4,1.0,2.4,0.0,GAME PUZZLE,1068366,190532,105960,50031,142208,False 944 | 17,Flow Free,1455893,100.0 M,4,142.6,0.8,0.0,GAME PUZZLE,1021457,195457,91530,41930,105517,False 945 | 18,2048 Number puzzle game,1361162,10.0 M,4,134.8,269.5,0.0,GAME PUZZLE,873731,251904,104041,49104,82379,False 946 | 19,Escape Titanic,1265308,10.0 M,4,0.0,0.0,0.0,GAME PUZZLE,980240,108412,62854,22734,91066,False 947 | 20,Bad Piggies,1232582,50.0 M,4,0.1,0.3,0.0,GAME PUZZLE,905234,131252,71105,25952,99036,False 948 | 21,Manor Cafe,1210485,10.0 M,4,0.7,1.9,0.0,GAME PUZZLE,902546,176537,68702,19301,43397,False 949 | 22,LINE:ディズニー ツムツム,1198499,10.0 M,3,0.1,0.2,0.0,GAME PUZZLE,569538,254994,163385,62002,148577,False 950 | 23,Bubble Shooter: Panda Pop!,1160505,50.0 M,4,0.2,0.5,0.0,GAME PUZZLE,875961,158170,55526,20293,50553,False 951 | 24,Merge Dragons!,1160229,10.0 M,4,1.0,2.1,0.0,GAME PUZZLE,809178,210244,67354,21742,51708,False 952 | 25,Cut the Rope: Time Travel,1110248,50.0 M,4,0.1,0.1,0.0,GAME PUZZLE,885876,116537,44258,14299,49275,False 953 | 26,Cookie Jam™ Match 3 Games | Connect 3 or More,1104361,50.0 M,4,0.5,0.9,0.0,GAME PUZZLE,788438,195027,60848,20236,39809,False 954 | 27,Lily’s Garden,1065264,10.0 M,4,1.8,4.1,0.0,GAME PUZZLE,832411,119697,50381,20597,42175,False 955 | 28,Jigsaw Puzzles - Puzzle Games,1039836,10.0 M,4,2.3,4.9,0.0,GAME PUZZLE,736089,201323,65426,13651,23345,False 956 | 29,Indy Cat for VK,998983,5.0 M,4,0.0,0.0,0.0,GAME PUZZLE,931620,35619,10710,5345,15686,False 957 | 30,애니팡2,997666,10.0 M,3,0.0,0.0,0.0,GAME PUZZLE,515259,198338,117823,46204,120039,False 958 | 31,Can You Escape,975608,10.0 M,4,0.0,0.0,0.0,GAME PUZZLE,611973,208216,82752,17876,54788,False 959 | 32,Happy Glass,968677,100.0 M,3,0.7,1.7,0.0,GAME PUZZLE,586764,100779,77199,50085,153849,False 960 | 33,Two Dots,944709,10.0 M,4,1.3,2.7,0.0,GAME PUZZLE,643024,163847,53900,21376,62560,False 961 | 34,Tower of Saviors,941228,10.0 M,4,0.1,0.4,0.0,GAME PUZZLE,622828,101496,47377,20562,148963,False 962 | 35,Shoot Bubble Deluxe,924459,100.0 M,4,0.0,0.1,0.0,GAME PUZZLE,691718,101102,57033,19277,55325,False 963 | 36,Pirate Treasures - Gems Puzzle,884220,50.0 M,4,0.2,0.5,0.0,GAME PUZZLE,672791,95015,36419,18973,61021,False 964 | 37,Doodle Alchemy,819672,10.0 M,4,0.2,0.4,0.0,GAME PUZZLE,633312,108225,42934,12432,22766,False 965 | 38,Escape game : 50 rooms 1,754345,10.0 M,4,1.3,2.7,0.0,GAME PUZZLE,516134,122842,56446,18848,40072,False 966 | 39,Infinity Loop ®,735564,10.0 M,4,0.7,1.4,0.0,GAME PUZZLE,586868,90997,26745,9261,21690,False 967 | 40,Jigty Jigsaw Puzzles,721199,10.0 M,4,0.0,0.0,0.0,GAME PUZZLE,600677,52736,26857,8992,31933,False 968 | 41,Unblock Me FREE,701845,50.0 M,4,0.0,0.1,0.0,GAME PUZZLE,539528,78197,35664,12690,35764,False 969 | 42,Sudoku - Free Classic Sudoku Puzzles,701221,10.0 M,4,6.8,13.1,0.0,GAME PUZZLE,519848,129208,34746,5986,11431,False 970 | 43,Bubble Blast 2,699239,10.0 M,4,0.0,0.0,0.0,GAME PUZZLE,458200,129823,50977,23198,37038,False 971 | 44,Unblock Ball - Block Puzzle,694965,100.0 M,4,0.8,1.9,0.0,GAME PUZZLE,468482,86334,53179,23037,63930,False 972 | 45,Mouse,685364,10.0 M,4,169.9,0.0,0.0,GAME PUZZLE,463196,120923,48379,19969,32895,False 973 | 46,Inside Out Thought Bubbles,673835,10.0 M,4,0.1,0.1,0.0,GAME PUZZLE,500676,79495,36922,17243,39498,False 974 | 47,MonsterBusters: Match 3 Puzzle,669939,10.0 M,4,0.0,0.1,0.0,GAME PUZZLE,535471,95701,22684,5194,10887,False 975 | 48,Love Balls,661430,100.0 M,4,0.2,0.5,0.0,GAME PUZZLE,422723,76767,53669,30462,77806,False 976 | 49,Mr Bullet - Spy Puzzles,649024,100.0 M,4,1.0,2.2,0.0,GAME PUZZLE,442810,71356,41422,23585,69849,False 977 | 50,LINE Bubble 2,643644,10.0 M,4,0.2,0.3,0.0,GAME PUZZLE,389089,106228,67787,21747,58790,False 978 | 51,Mazes & More,608546,50.0 M,4,0.6,1.4,0.0,GAME PUZZLE,404176,74546,44217,22786,62819,False 979 | 52,Matches Puzzle Game,596554,10.0 M,4,0.2,0.4,0.0,GAME PUZZLE,411377,105903,41525,11585,26160,False 980 | 53,パズル&ドラゴンズ(Puzzle & Dragons),594490,10.0 M,3,0.1,0.3,0.0,GAME PUZZLE,332022,79166,56797,26915,99587,False 981 | 54,Sudoku,584124,10.0 M,4,0.1,0.2,0.0,GAME PUZZLE,458061,106350,10329,2675,6707,False 982 | 55,Marble Legend,571570,50.0 M,4,0.0,0.0,0.0,GAME PUZZLE,383776,73557,55320,16169,42746,False 983 | 56,Hello Stars,570345,50.0 M,4,0.0,0.0,0.0,GAME PUZZLE,420021,43026,30999,18902,57395,False 984 | 57,Wood Block Puzzle,565614,50.0 M,4,0.1,0.3,0.0,GAME PUZZLE,429284,45646,29382,15814,45486,False 985 | 58,Harry Potter: Puzzles & Spells - Match-3 Magic,554434,10.0 M,4,6.3,13.3,0.0,GAME PUZZLE,474823,41233,15227,7257,15890,False 986 | 59,LINE: Disney Tsum Tsum,550425,10.0 M,4,0.1,251.7,0.0,GAME PUZZLE,357903,75666,39518,18329,59007,False 987 | 60,Easy Game - Brain Test and Tricky Mind Puzzles,547548,10.0 M,4,1.1,2.5,0.0,GAME PUZZLE,389864,72820,30413,13849,40600,False 988 | 61,Block! Hexa Puzzle™,546820,50.0 M,3,0.0,0.1,0.0,GAME PUZZLE,300160,90111,49226,29196,78124,False 989 | 62,Sweet Fruit Candy,541211,50.0 M,4,1.0,2.1,0.0,GAME PUZZLE,380589,73442,37922,13378,35878,False 990 | 63,Cut the Rope: Experiments,540007,50.0 M,4,444.6,0.0,0.0,GAME PUZZLE,387875,56186,34325,15360,46259,False 991 | 64,House Paint,530612,50.0 M,4,0.4,0.8,0.0,GAME PUZZLE,342051,69406,45347,23688,50117,False 992 | 65,Escape the Mansion,528900,5.0 M,4,0.1,0.1,0.0,GAME PUZZLE,374132,91668,41509,8309,13279,False 993 | 66,Block Puzzle - Free Classic Wood Block Puzzle Game,521894,10.0 M,4,5.8,13.3,0.0,GAME PUZZLE,355232,108346,38485,6823,13005,False 994 | 67,Dig This!,520896,50.0 M,4,0.5,1.1,0.0,GAME PUZZLE,367445,72031,23863,14116,43438,False 995 | 68,Brain Wars,518428,10.0 M,4,0.0,353.1,0.0,GAME PUZZLE,358319,108094,26601,6815,18597,False 996 | 69,Nonogram.com - Picture cross number puzzle,512643,10.0 M,4,3.2,6.7,0.0,GAME PUZZLE,357322,101120,28132,8286,17780,False 997 | 70,Gummy Drop! Match to restore and build cities,510656,10.0 M,4,0.1,0.2,0.0,GAME PUZZLE,337321,78723,33993,15936,44680,False 998 | 71,Charm King,509754,10.0 M,4,0.1,0.2,0.0,GAME PUZZLE,373628,59435,26925,12778,36986,False 999 | 72,Gemmy Lands: New Match 3 Games 2021 to Crush Gems,502640,10.0 M,4,0.3,0.5,0.0,GAME PUZZLE,399600,55407,20951,6877,19802,False 1000 | 73,Energy: Anti Stress Loops,499265,10.0 M,4,3.6,6.7,0.0,GAME PUZZLE,408802,62489,14505,4285,9181,False 1001 | 74,Brain It On! - Physics Puzzles,491439,50.0 M,4,0.1,0.2,0.0,GAME PUZZLE,318746,82552,32565,17102,40471,False 1002 | 75,Find The Differences - The Detective,490970,50.0 M,4,0.0,0.0,0.0,GAME PUZZLE,324781,38060,31659,22752,73715,False 1003 | 76,Disney Emoji Blitz,489067,10.0 M,4,0.6,1.3,0.0,GAME PUZZLE,325679,78321,33920,15720,35425,False 1004 | 77,Troll Face Quest: Video Memes - Brain Game,485621,10.0 M,4,0.1,0.3,0.0,GAME PUZZLE,335295,44072,31284,17077,57890,False 1005 | 78,Slugterra: Slug it Out 2,481615,10.0 M,4,6.2,12.0,0.0,GAME PUZZLE,412995,32366,11448,5054,19749,False 1006 | 79,Cut the Rope: Magic,470475,10.0 M,4,0.1,0.2,0.0,GAME PUZZLE,346937,60356,26756,10175,26247,False 1007 | 80,1010! Block Puzzle Game,466759,10.0 M,4,0.1,0.2,0.0,GAME PUZZLE,332243,64131,29683,11306,29394,False 1008 | 81,That Level Again,464014,10.0 M,4,0.5,1.0,0.0,GAME PUZZLE,383178,42022,15107,6078,17626,False 1009 | 82,Train Taxi,463260,50.0 M,4,752.0,0.9,0.0,GAME PUZZLE,294864,57247,41036,22447,47663,False 1010 | 83,Sudoku,462036,10.0 M,4,172.6,0.5,0.0,GAME PUZZLE,375734,64079,10145,3534,8542,False 1011 | 84,"ASolver - show me the puzzle, and I will solve it",460315,5.0 M,4,28.9,113.2,0.0,GAME PUZZLE,361695,36463,18076,9353,34725,False 1012 | 85,Crazy Kitchen: Match 3 Puzzles,459320,10.0 M,4,0.0,0.1,0.0,GAME PUZZLE,398796,37824,12018,3187,7492,False 1013 | 86,Tebak Gambar,453317,10.0 M,4,0.2,0.4,0.0,GAME PUZZLE,311581,43790,31309,17438,49197,False 1014 | 87,Build a Bridge!,451860,10.0 M,4,0.6,1.2,0.0,GAME PUZZLE,286839,63628,36663,17826,46901,False 1015 | 88,PixWords™,440665,10.0 M,4,0.0,0.1,0.0,GAME PUZZLE,355004,53499,15716,4832,11612,False 1016 | 89,Match 3D - Matching Puzzle Game,420325,10.0 M,4,4.6,11.2,0.0,GAME PUZZLE,286657,61968,16908,13744,41045,False 1017 | 90,How to Loot - Pin Pull & Hero Rescue,414811,50.0 M,4,3.2,8.3,0.0,GAME PUZZLE,307162,34076,23013,12619,37938,False 1018 | 91,LINE PokoPoko - Play with POKOTA! Free puzzler!,414626,10.0 M,3,0.7,1.3,0.0,GAME PUZZLE,158839,88968,76250,27016,63551,False 1019 | 92,Blockudoku® - Block Puzzle Game,414430,10.0 M,4,3.0,4.9,0.0,GAME PUZZLE,272911,80283,31266,8726,21241,False 1020 | 93,Rescue Cut - Rope Puzzle,407062,100.0 M,4,1862.1,4.5,0.0,GAME PUZZLE,273664,36549,24461,17968,54418,False 1021 | 94,DOP 2: Delete One Part,403195,50.0 M,4,10.1,26.0,0.0,GAME PUZZLE,266695,39854,21493,15180,59970,False 1022 | 95,Block Puzzle & Conquer,402599,10.0 M,4,0.0,0.0,0.0,GAME PUZZLE,262234,91540,27186,6527,15110,False 1023 | 96,Antistress - relaxation toys,398873,50.0 M,4,5.6,11.5,0.0,GAME PUZZLE,296810,44152,20472,10052,27385,False 1024 | 97,Cut the Rope FULL FREE,390519,100.0 M,4,0.0,0.1,0.0,GAME PUZZLE,304567,48911,16267,5635,15137,False 1025 | 98,Color Fill 3D,384115,100.0 M,4,4.8,11.5,0.0,GAME PUZZLE,251975,39025,32327,17572,43213,False 1026 | 99,디즈니 틀린그림찾기,383236,1.0 M,4,0.0,0.0,0.0,GAME PUZZLE,232374,93919,40506,5918,10516,False 1027 | 100,Who Is The Killer? Episode I,377015,5.0 M,4,0.2,0.4,0.0,GAME PUZZLE,235595,67597,41877,12829,19115,False 1028 | 1,Hill Climb Racing,10188038,500.0 M,4,0.4,0.8,0.0,GAME RACING,7148370,982941,607603,338715,1110407,False 1029 | 2,Traffic Rider,7580227,100.0 M,4,0.5,1.0,0.0,GAME RACING,5426819,833452,446764,212143,661046,False 1030 | 3,Traffic Racer,6062833,100.0 M,4,0.3,0.5,0.0,GAME RACING,4580870,581388,308448,145729,446396,False 1031 | 4,Dr. Driving,6062304,100.0 M,4,0.5,1.0,0.0,GAME RACING,4307671,494396,337684,213487,709064,False 1032 | 5,Need for Speed™ No Limits,4507290,100.0 M,4,0.6,1.2,0.0,GAME RACING,2976966,514643,268717,148109,598854,False 1033 | 6,CSR Racing 2 – Free Car Racing Game,4476329,10.0 M,4,0.5,0.9,0.0,GAME RACING,3458236,578619,178927,70721,189823,False 1034 | 7,Angry Birds Go!,3870456,100.0 M,4,476.9,0.0,0.0,GAME RACING,2753918,362720,224963,101659,427194,False 1035 | 8,Extreme Car Driving Simulator,3612756,100.0 M,4,1.7,3.7,0.0,GAME RACING,2691153,285485,166427,102619,367068,False 1036 | 9,Bike Race Free - Top Motorcycle Racing Games,2962468,100.0 M,4,0.3,0.6,0.0,GAME RACING,2026065,303481,185693,93766,353461,False 1037 | 10,CSR Racing,2490517,50.0 M,4,0.0,0.0,0.0,GAME RACING,1948115,240253,105455,35448,161244,False 1038 | 11,Fun Race 3D,2221285,100.0 M,4,2.1,5.2,0.0,GAME RACING,1465135,236017,175065,95923,249142,False 1039 | 12,Beach Buggy Racing,2178512,100.0 M,4,1.1,2.2,0.0,GAME RACING,1657717,195050,96043,49967,179732,False 1040 | 13,Asphalt 9: Legends,2098500,50.0 M,4,1.6,3.9,0.0,GAME RACING,1605688,206562,85294,41374,159579,False 1041 | 14,Fast Racing 3D,1848375,100.0 M,4,0.0,0.1,0.0,GAME RACING,1329863,205301,132256,43679,137274,False 1042 | 15,Earn to Die 2,1781295,100.0 M,4,0.4,0.8,0.0,GAME RACING,1265382,217366,109868,48019,140658,False 1043 | 16,Asphalt Nitro,1618815,50.0 M,4,0.6,1.3,0.0,GAME RACING,1155090,182406,92136,41613,147567,False 1044 | 17,City Racing 3D,1555939,50.0 M,4,0.1,0.1,0.0,GAME RACING,1139740,156099,102803,35354,121941,False 1045 | 18,Nitro Nation Drag & Drift Car Racing,1516846,10.0 M,4,0.4,1.0,0.0,GAME RACING,1152122,186491,65330,26060,86840,False 1046 | 19,Racing Fever,1471540,50.0 M,4,0.0,0.1,0.0,GAME RACING,1103560,147780,89499,34002,96697,False 1047 | 20,Drive Ahead!,1463492,50.0 M,4,0.9,1.8,0.0,GAME RACING,1021504,128346,80074,47703,185862,False 1048 | 21,Street Racing 3D,1446238,100.0 M,4,1.7,3.4,0.0,GAME RACING,1019029,156704,82624,42277,145602,False 1049 | 22,Drift Max Pro - Car Drifting Game with Racing Cars,1415418,50.0 M,4,1.7,3.9,0.0,GAME RACING,1121337,131782,63322,26528,72448,False 1050 | 23,Driving School 2016,1364891,50.0 M,4,0.3,0.6,0.0,GAME RACING,987702,138417,74068,34247,130454,False 1051 | 24,Racing in Car,1297337,50.0 M,4,0.1,0.1,0.0,GAME RACING,882650,139848,108195,37861,128780,False 1052 | 25,Drift هجولة,1219865,10.0 M,4,0.9,2.0,0.0,GAME RACING,977765,57490,37557,29620,117431,False 1053 | 26,Trials Frontier,1119800,10.0 M,4,0.1,0.1,0.0,GAME RACING,766370,143156,72043,32718,105511,False 1054 | 27,Bike Racing 3D,1109569,100.0 M,4,0.3,0.6,0.0,GAME RACING,742944,103484,76033,43585,143520,False 1055 | 28,CarX Drift Racing,1100694,10.0 M,4,0.2,0.5,0.0,GAME RACING,852081,98112,45985,22363,82151,False 1056 | 29,"Asphalt 8 Racing Game - Drive, Drift at Real Speed",924106,100.0 M,4,0.0,0.1,0.0,GAME RACING,730045,75692,31616,15958,70792,False 1057 | 30,CSR Classics,899964,10.0 M,4,0.0,0.1,0.0,GAME RACING,697561,102310,38678,12966,48447,False 1058 | 31,BMX Boy,895239,100.0 M,4,0.2,0.3,0.0,GAME RACING,654777,72957,50728,25429,91346,False 1059 | 32,Racing Moto,883713,100.0 M,4,0.4,0.7,0.0,GAME RACING,608166,77193,53756,31658,112937,False 1060 | 33,Real Bike Racing,851386,100.0 M,4,2.8,6.1,0.0,GAME RACING,571641,72556,52594,32840,121752,False 1061 | 34,Turbo Stars - Rival Racing,849317,50.0 M,4,2.0,4.4,0.0,GAME RACING,648879,74627,40777,19697,65335,False 1062 | 35,Top Speed: Drag & Fast Racing,847739,10.0 M,4,0.4,0.8,0.0,GAME RACING,679415,70848,31619,14431,51423,False 1063 | 36,CarX Highway Racing,780720,10.0 M,4,3.5,7.1,0.0,GAME RACING,606816,109933,25613,9960,28395,False 1064 | 37,Trial Xtreme 4: Extreme Bike Racing Champions,735549,50.0 M,4,0.1,0.3,0.0,GAME RACING,460052,86095,52656,28914,107829,False 1065 | 38,Dr. Parking 4,725551,100.0 M,4,0.7,1.4,0.0,GAME RACING,496433,68326,45697,27638,87455,False 1066 | 39,Racing in Car 2,724219,100.0 M,4,2.6,5.4,0.0,GAME RACING,475029,61493,45462,32518,109714,False 1067 | 40,Drag Racing,713034,100.0 M,4,0.0,0.0,0.0,GAME RACING,522787,91183,38976,16107,43979,False 1068 | 41,Moto Rider GO: Highway Traffic,707004,100.0 M,4,1.1,1.8,0.0,GAME RACING,482641,95941,40848,21087,66484,False 1069 | 42,Uphill Rush Water Park Racing,699303,100.0 M,4,0.5,1.1,0.0,GAME RACING,489279,54309,38758,26555,90399,False 1070 | 43,Asphalt Xtreme: Rally Racing,682124,10.0 M,4,0.3,0.6,0.0,GAME RACING,453061,80544,39897,20677,87942,False 1071 | 44,Turbo Driving Racing 3D,654903,50.0 M,4,0.8,1.6,0.0,GAME RACING,461668,51409,36192,23100,82532,False 1072 | 45,Driving School 2017,635669,10.0 M,4,0.4,0.9,0.0,GAME RACING,460158,67101,32671,16480,59256,False 1073 | 46,City Racing Lite,630972,10.0 M,4,2577.7,0.1,0.0,GAME RACING,481202,56421,42201,12617,38529,False 1074 | 47,MotoGP Racing '20,619717,10.0 M,4,0.8,1.6,0.0,GAME RACING,401585,96573,51712,19328,50516,False 1075 | 48,Earn to Die Lite,611439,10.0 M,4,0.1,0.3,0.0,GAME RACING,434421,43582,29734,17096,86604,False 1076 | 49,Garena Speed Drifters,577754,10.0 M,4,0.5,1.2,0.0,GAME RACING,376407,52922,35205,20118,93100,False 1077 | 50,Rally Racer Dirt,577204,50.0 M,4,0.1,0.3,0.0,GAME RACING,394695,73535,38827,17438,52706,False 1078 | 51,F1 Clash,559157,5.0 M,4,4.8,10.1,0.0,GAME RACING,316445,126788,52399,16657,46866,False 1079 | 52,Rally Fury - Extreme Racing,558462,50.0 M,4,4.4,10.1,0.0,GAME RACING,409899,59875,29768,13972,44946,False 1080 | 53,Racing Fever: Moto,549630,50.0 M,4,1.2,6004.4,0.0,GAME RACING,393808,49832,30694,18239,57054,False 1081 | 54,Real Drift Car Racing Lite,513359,10.0 M,4,0.1,0.2,0.0,GAME RACING,381134,53191,30260,10921,37851,False 1082 | 55,MadOut2 BigCityOnline,508166,10.0 M,4,3.8,8.3,0.0,GAME RACING,347602,56038,29117,15751,59656,False 1083 | 56,Ultimate Car Driving Simulator,503879,50.0 M,4,2.2,4.8,0.0,GAME RACING,353448,45177,27142,16616,61494,False 1084 | 57,Crazy for Speed,466732,10.0 M,4,1911.2,0.7,0.0,GAME RACING,336061,39673,28533,15418,47044,False 1085 | 58,Mad Skills Motocross 2,464730,10.0 M,4,0.2,0.4,0.0,GAME RACING,319470,50982,29079,14405,50792,False 1086 | 59,Real City Car Driver,445846,50.0 M,3,0.4,0.9,0.0,GAME RACING,285166,27715,26917,17393,88652,False 1087 | 60,Highway Rider Motorcycle Racer,430550,10.0 M,4,0.1,0.1,0.0,GAME RACING,307739,37469,23631,10253,51456,False 1088 | 61,Blocky Roads,426246,10.0 M,4,0.0,0.1,0.0,GAME RACING,318741,42714,23542,8562,32684,False 1089 | 62,Road Riot,423514,10.0 M,4,0.1,0.1,0.0,GAME RACING,344341,24227,18914,8328,27702,False 1090 | 63,Crash of Cars,419851,10.0 M,4,0.5,1.2,0.0,GAME RACING,290888,48697,26055,13626,40581,False 1091 | 64,Beach Buggy Racing 2,414528,10.0 M,4,2.9,6.1,0.0,GAME RACING,299949,40563,19993,11806,42214,False 1092 | 65,Real Racing 3,412241,10.0 M,4,0.2,0.5,0.0,GAME RACING,293823,54620,19629,10774,33392,False 1093 | 66,SUP Multiplayer Racing,407995,10.0 M,4,1.0,2.2,0.0,GAME RACING,292915,34591,21351,12771,46364,False 1094 | 67,KartRider Rush+,388123,10.0 M,3,2.1,3.6,0.0,GAME RACING,239417,39274,26384,14498,68548,False 1095 | 68,Hill Climb Racing 2,386128,100.0 M,4,0.2,0.4,0.0,GAME RACING,271644,62888,20719,7568,23306,False 1096 | 69,Boomerang Make and Race - Scooby-Doo Racing Game,380849,50.0 M,4,0.4,1.0,0.0,GAME RACING,279496,26949,18355,13010,43037,False 1097 | 70,Moto X3M Bike Race Game,365649,50.0 M,4,3.0,6.2,0.0,GAME RACING,274639,29909,17419,10119,33559,False 1098 | 71,Offroad Legends - Monster Truck Trials,350249,10.0 M,4,0.0,0.1,0.0,GAME RACING,245205,41967,25508,10219,27348,False 1099 | 72,Traffic Tour,349416,50.0 M,4,1.7,3.7,0.0,GAME RACING,231141,28660,20999,12988,55625,False 1100 | 73,Dubai Drift 2,337837,10.0 M,4,0.1,0.1,0.0,GAME RACING,252463,22906,15694,7422,39350,False 1101 | 74,Moto Wheelie,334069,5.0 M,4,0.1,0.1,0.0,GAME RACING,281200,18440,11203,5233,17991,False 1102 | 75,Mountain Climb 4x4 : Offroad Car Drive,330803,50.0 M,4,1702.5,1.0,0.0,GAME RACING,221973,28431,18870,14015,47511,False 1103 | 76,CarX Drift Racing 2,318474,10.0 M,4,4.5,9.5,0.0,GAME RACING,247670,29860,12956,6483,21502,False 1104 | 77,Zombie Squad,315332,10.0 M,4,0.1,0.1,0.0,GAME RACING,220091,34171,21601,9439,30027,False 1105 | 78,Crazy for Speed 2,312017,10.0 M,4,0.7,1.5,0.0,GAME RACING,243498,24007,14244,6807,23458,False 1106 | 79,Moto Racer 3D,310589,10.0 M,4,1358.2,2716.5,0.0,GAME RACING,194685,34134,34664,14257,32847,False 1107 | 80,Toy Truck Rally 3D,309939,50.0 M,4,0.0,0.1,0.0,GAME RACING,229692,23871,20238,7614,28521,False 1108 | 81,Truck Driver Cargo,308362,50.0 M,3,12602.3,0.7,0.0,GAME RACING,193275,23624,19047,12841,59571,False 1109 | 82,Demolition Derby 3,308175,10.0 M,4,4.3,8.9,0.0,GAME RACING,250319,27125,11685,4164,14880,False 1110 | 83,Top Drives – Car Cards Racing,303913,10.0 M,4,1.6,3.3,0.0,GAME RACING,231744,30895,11515,6286,23470,False 1111 | 84,Racing Limits,297540,50.0 M,4,1.1,2.4,0.0,GAME RACING,211343,28447,16325,9459,31964,False 1112 | 85,🚓🚦Car Driving School Simulator 🚕🚸,294097,10.0 M,4,0.9,1.9,0.0,GAME RACING,204804,38467,16732,8251,25840,False 1113 | 86,Race the Traffic,293250,50.0 M,4,0.1,0.1,0.0,GAME RACING,185690,27186,24754,13961,41656,False 1114 | 87,Redline Rush: Police Chase Racing,288581,10.0 M,4,0.0,0.1,0.0,GAME RACING,210942,32264,18169,8367,18836,False 1115 | 88,GT Racing 2: The Real Car Exp,285522,10.0 M,4,0.0,0.0,0.0,GAME RACING,209958,33351,13914,7231,21065,False 1116 | 89,Monster Truck Destruction™,284892,10.0 M,4,0.2,0.4,0.0,GAME RACING,200210,26653,16790,8834,32403,False 1117 | 90,Real Racing 3,284450,100.0 M,4,0.0,0.0,0.0,GAME RACING,193903,44509,15942,8162,21931,False 1118 | 91,MMX Hill Dash,283592,10.0 M,4,0.1,0.3,0.0,GAME RACING,202256,41141,15071,5659,19463,False 1119 | 92,Stickman Downhill Motocross,283127,10.0 M,4,0.0,0.0,0.0,GAME RACING,205997,35802,17941,5514,17871,False 1120 | 93,MOTO LOKO HD,282063,10.0 M,4,0.0,0.1,0.0,GAME RACING,196521,27353,21819,7648,28719,False 1121 | 94,Offroad Legends 2,281848,10.0 M,4,0.1,0.3,0.0,GAME RACING,195324,38185,19227,7908,21201,False 1122 | 95,DATA WING,281769,5.0 M,4,0.3,0.5,0.0,GAME RACING,254416,15454,4525,2037,5334,False 1123 | 96,Race the Traffic Moto,280605,10.0 M,4,0.0,0.0,0.0,GAME RACING,188046,26619,24879,10609,30449,False 1124 | 97,Epic Race 3D,280243,50.0 M,4,2.5,7.7,0.0,GAME RACING,185132,28854,20922,12717,32615,False 1125 | 98,Drift Max,273705,10.0 M,4,0.6,1.2,0.0,GAME RACING,188833,29440,18180,8800,28450,False 1126 | 99,City Driving 3D,272721,10.0 M,3,0.1,0.2,0.0,GAME RACING,138933,22589,21760,15256,74182,False 1127 | 100,Torque Burnout,271610,10.0 M,4,0.2,0.5,0.0,GAME RACING,189031,25182,16212,9799,31385,False 1128 | 1,Shadow Fight 3 - RPG fighting game,3170246,100.0 M,4,1.2,2.6,0.0,GAME ROLE PLAYING,2243868,353334,177840,84957,310244,False 1129 | 2,AFK Arena,3126336,10.0 M,4,1.0,2.2,0.0,GAME ROLE PLAYING,2238968,619905,158568,31102,77791,False 1130 | 3,Avakin Life - 3D Virtual World,3105550,50.0 M,4,1.0,2.2,0.0,GAME ROLE PLAYING,2198832,316726,170928,91523,327539,False 1131 | 4,Flight Pilot Simulator 3D Free,2651253,100.0 M,4,965.5,0.9,0.0,GAME ROLE PLAYING,1680842,413154,208205,85294,263756,False 1132 | 5,Angry Birds Epic RPG,2650536,10.0 M,4,310.2,0.0,0.0,GAME ROLE PLAYING,2095096,255252,104890,41878,153418,False 1133 | 6,Eternium,2374967,10.0 M,4,0.5,1.1,0.0,GAME ROLE PLAYING,2064105,201653,57358,16101,35746,False 1134 | 7,Star Wars™: Galaxy of Heroes,1710440,50.0 M,4,0.3,0.6,0.0,GAME ROLE PLAYING,1087749,274134,110300,55130,183125,False 1135 | 8,몬스터 길들이기,1493476,10.0 M,4,0.0,0.1,0.0,GAME ROLE PLAYING,916890,183806,125740,58046,208992,False 1136 | 9,Darkness Rises,1475764,10.0 M,4,0.5,1.1,0.0,GAME ROLE PLAYING,1086953,195959,71146,29100,92603,False 1137 | 10,Hustle Castle: Medieval games in the kingdom,1424463,10.0 M,4,0.3,0.7,0.0,GAME ROLE PLAYING,956315,167107,59800,39531,201708,False 1138 | 11,RAID: Shadow Legends,1363701,10.0 M,4,1.9,3.9,0.0,GAME ROLE PLAYING,919549,170753,64585,40706,168105,False 1139 | 12,Tap Titans,1344784,10.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,1206706,67528,25703,9641,35204,False 1140 | 13,Hero Wars – Hero Fantasy Multiplayer Battles,1311495,50.0 M,4,4.7,10.6,0.0,GAME ROLE PLAYING,1036086,107619,27019,15790,124979,False 1141 | 14,MovieStarPlanet,1193550,10.0 M,3,0.0,0.1,0.0,GAME ROLE PLAYING,647071,155738,105157,55935,229646,False 1142 | 15,Magic Rush: Heroes,1130195,10.0 M,4,0.0,0.1,0.0,GAME ROLE PLAYING,818101,125808,56193,24736,105355,False 1143 | 16,세븐나이츠,937102,10.0 M,3,17025.0,0.1,0.0,GAME ROLE PLAYING,528121,88140,76690,38540,205610,False 1144 | 17,Idle Heroes,914423,10.0 M,4,1.1,2.1,0.0,GAME ROLE PLAYING,724371,77956,31174,14878,66041,False 1145 | 18,RPG Toram Online - MMORPG,910412,10.0 M,4,805.0,1.9,0.0,GAME ROLE PLAYING,670148,130534,48808,15731,45189,False 1146 | 19,Shakes and Fidget,898630,5.0 M,4,0.5,1.1,0.0,GAME ROLE PLAYING,695406,145860,32061,8424,16877,False 1147 | 20,Tap Titans 2: Heroes Attack Titans. Clicker on!,887982,10.0 M,4,1.0,2.3,0.0,GAME ROLE PLAYING,696871,118164,38208,9681,25056,False 1148 | 21,Kritika: The White Knights,880376,10.0 M,4,718.4,0.1,0.0,GAME ROLE PLAYING,614909,107710,53285,23653,80817,False 1149 | 22,FINAL FANTASY BRAVE EXVIUS,825827,10.0 M,4,0.2,0.3,0.0,GAME ROLE PLAYING,527674,133134,51983,25372,87661,False 1150 | 23,Dungeon Hunter 5 – Action RPG,765525,10.0 M,3,0.1,0.2,0.0,GAME ROLE PLAYING,453136,95928,54217,30073,132169,False 1151 | 24,The Wolf,758951,10.0 M,4,1.9,3.4,0.0,GAME ROLE PLAYING,567469,91326,36052,16252,47850,False 1152 | 25,Brave Frontier,732372,10.0 M,4,0.0,0.1,0.0,GAME ROLE PLAYING,518719,100269,41029,18510,53842,False 1153 | 26,Identity V,705186,10.0 M,4,1.1,2.6,0.0,GAME ROLE PLAYING,454148,86399,47648,25101,91887,False 1154 | 27,ONE PIECE TREASURE CRUISE,687214,10.0 M,4,0.9,2.1,0.0,GAME ROLE PLAYING,499705,95877,32128,12298,47204,False 1155 | 28,Super Stylist - Makeover & Style Fashion Guru,667980,50.0 M,4,4.1,8.2,0.0,GAME ROLE PLAYING,460506,85901,42462,21843,57264,False 1156 | 29,School of Dragons,666442,10.0 M,4,0.4,1.0,0.0,GAME ROLE PLAYING,444291,75196,44462,23315,79175,False 1157 | 30,Mobile Legends: Adventure,644802,10.0 M,4,2.8,6.2,0.0,GAME ROLE PLAYING,513670,65317,20016,8845,36952,False 1158 | 31,International Fashion Stylist - Dress Up Games,632926,10.0 M,4,2.4,5.1,0.0,GAME ROLE PLAYING,453861,77554,38017,16740,46752,False 1159 | 32,Battle Camp - Monster Catching,612572,10.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,412770,54959,36609,16832,91399,False 1160 | 33,My Candy Love - Episode / Otome game,597411,10.0 M,4,0.5,0.8,0.0,GAME ROLE PLAYING,369440,84434,46630,23095,73810,False 1161 | 34,"Day R Survival – Apocalypse, Lone Survivor and RPG",594700,10.0 M,4,0.8,1.7,0.0,GAME ROLE PLAYING,450467,74953,23915,12207,33155,False 1162 | 35,Don't get fired!,572359,5.0 M,4,1.0,2.0,0.0,GAME ROLE PLAYING,382074,94649,39645,14670,41319,False 1163 | 36,LifeAfter,569162,10.0 M,3,1.4,3.4,0.0,GAME ROLE PLAYING,368097,37701,30963,21455,110945,False 1164 | 37,Inotia 4,558013,5.0 M,4,0.1,0.1,0.0,GAME ROLE PLAYING,395714,92102,34423,9208,26564,False 1165 | 38,Dragon Village,556175,5.0 M,4,0.1,0.2,0.0,GAME ROLE PLAYING,407087,51168,33739,13251,50928,False 1166 | 39,MARVEL Strike Force - Squad RPG,553833,10.0 M,3,1.6,3.3,0.0,GAME ROLE PLAYING,281401,76022,42302,49578,104528,False 1167 | 40,Game of Sultans,547967,10.0 M,4,4.9,8.5,0.0,GAME ROLE PLAYING,378419,75961,30792,13367,49425,False 1168 | 41,Sky: Children of the Light,538673,10.0 M,4,4.4,9.4,0.0,GAME ROLE PLAYING,438556,47143,16802,7679,28491,False 1169 | 42,Age of Warring Empire,524462,10.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,345143,79079,36211,14372,49655,False 1170 | 43,레이븐 : LEGION,518434,5.0 M,4,0.0,0.2,0.0,GAME ROLE PLAYING,324117,79581,37928,14686,62119,False 1171 | 44,Crusaders Quest,516540,5.0 M,4,0.1,0.1,0.0,GAME ROLE PLAYING,394331,59201,21524,8270,33211,False 1172 | 45,Galaxy Legend - Cosmic Conquest Sci-Fi Game,514023,10.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,316918,65188,37865,15150,78899,False 1173 | 46,"My Bakery Empire - Bake, Decorate & Serve Cakes",513522,100.0 M,4,2.3,5.0,0.0,GAME ROLE PLAYING,361164,40462,27413,18348,66132,False 1174 | 47,Heroes Charge,504968,10.0 M,4,0.6,1.6,0.0,GAME ROLE PLAYING,439888,10359,8749,6339,39629,False 1175 | 48,Operate Now: Hospital - Surgery Simulator Game,503826,50.0 M,3,0.4,0.8,0.0,GAME ROLE PLAYING,289263,38358,35005,28656,112541,False 1176 | 49,School of Chaos Online MMORPG,503643,10.0 M,4,0.2,0.5,0.0,GAME ROLE PLAYING,335781,35856,25781,18113,88109,False 1177 | 50,Ninja Turtles: Legends,494101,10.0 M,4,1.0,1.9,0.0,GAME ROLE PLAYING,368890,45042,22761,12633,44773,False 1178 | 51,Grim Soul: Dark Fantasy Survival,490756,10.0 M,4,1.8,4.4,0.0,GAME ROLE PLAYING,337466,79331,29799,12802,31356,False 1179 | 52,The Seven Deadly Sins: Grand Cross,487726,10.0 M,4,2.5,6.5,0.0,GAME ROLE PLAYING,332747,53409,25678,14273,61616,False 1180 | 53,Order & Chaos Online 3D MMORPG,474469,5.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,321723,49520,26088,13438,63697,False 1181 | 54,Angry Birds Evolution 2021,467209,10.0 M,4,0.2,0.4,0.0,GAME ROLE PLAYING,317412,59037,28604,14791,47363,False 1182 | 55,King's Throne: Game of Conquest,464201,1.0 M,4,5.0,9.0,0.0,GAME ROLE PLAYING,259353,118989,61879,10613,13364,False 1183 | 56,AVABEL ONLINE [Action MMORPG],463791,10.0 M,4,0.2,0.3,0.0,GAME ROLE PLAYING,263061,79102,55812,17289,48525,False 1184 | 57,Seven Knights,459149,10.0 M,4,0.0,0.1,0.0,GAME ROLE PLAYING,316149,44853,25447,15270,57427,False 1185 | 58,Shadow Fight Arena — PvP Fighting game,433067,5.0 M,4,18.2,32.4,0.0,GAME ROLE PLAYING,350218,32714,13508,7151,29474,False 1186 | 59,ONE PIECE トレジャークルーズ,423249,1.0 M,4,0.6,0.9,0.0,GAME ROLE PLAYING,238516,97107,57024,11426,19174,False 1187 | 60,Monster High™ Beauty Shop: Fangtastic Fashion Game,418992,10.0 M,4,2.1,4.4,0.0,GAME ROLE PLAYING,285038,47406,26709,15312,44525,False 1188 | 61,Magic Rampage,414159,10.0 M,4,1.5,3.2,0.0,GAME ROLE PLAYING,338835,41096,13688,5042,15496,False 1189 | 62,Summoners War,413804,50.0 M,4,0.2,0.1,0.0,GAME ROLE PLAYING,284653,55093,21603,11546,40907,False 1190 | 63,Vampire's Fall: Origins RPG,409319,5.0 M,4,2.5,4.9,0.0,GAME ROLE PLAYING,307543,66903,17200,5137,12533,False 1191 | 64,Monster Super League,406697,5.0 M,4,0.3,0.7,0.0,GAME ROLE PLAYING,288242,61345,21730,8612,26766,False 1192 | 65,Arcane Legends MMO-Action RPG,398449,10.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,272495,43944,26106,11438,44464,False 1193 | 66,Age of Magic: Turn-Based Magic RPG & Strategy Game,395402,5.0 M,4,0.7,1.5,0.0,GAME ROLE PLAYING,289124,43996,17756,9241,35283,False 1194 | 67,Pokémon Masters EX,393787,10.0 M,4,1.5,3.3,0.0,GAME ROLE PLAYING,259564,52468,24049,11536,46167,False 1195 | 68,BLOCK STORY,393183,10.0 M,4,0.1,0.1,0.0,GAME ROLE PLAYING,284293,47015,22967,9199,29707,False 1196 | 69,Questland: Turn Based RPG,386821,5.0 M,4,3.3,6.0,0.0,GAME ROLE PLAYING,334309,31876,8338,3281,9016,False 1197 | 70,Pocket Troops: Strategy RPG,382714,10.0 M,4,0.0,0.1,0.0,GAME ROLE PLAYING,270191,47911,18236,9425,36949,False 1198 | 71,ZENONIA® 5,380907,10.0 M,4,0.1,0.0,0.0,GAME ROLE PLAYING,266068,49217,22446,8261,34913,False 1199 | 72,WWE Champions 2021,373793,10.0 M,3,0.3,0.7,0.0,GAME ROLE PLAYING,215662,37106,26813,17118,77092,False 1200 | 73,Heroes of Camelot,371730,5.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,227672,52313,24459,13912,53372,False 1201 | 74,Assassin's Creed Rebellion: Adventure RPG,371644,5.0 M,4,0.3,0.7,0.0,GAME ROLE PLAYING,239729,60883,26866,13154,31009,False 1202 | 75,Black Desert Mobile,368592,10.0 M,4,1.1,2.3,0.0,GAME ROLE PLAYING,237377,44513,23085,13663,49952,False 1203 | 76,Guardian Hunter: SuperBrawlRPG [Online],366341,1.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,249430,55784,25086,9129,26910,False 1204 | 77,Guardian Tales,364398,1.0 M,4,5.3,10.4,0.0,GAME ROLE PLAYING,301336,35050,10864,4773,12372,False 1205 | 78,Postknight,362652,5.0 M,4,1.1,2.2,0.0,GAME ROLE PLAYING,305733,35318,11138,3945,6515,False 1206 | 79,Fashion Empire - Dressup Boutique Sim,361987,10.0 M,3,0.4,0.7,0.0,GAME ROLE PLAYING,229584,33544,22596,15280,60981,False 1207 | 80,ملكة الموضة | لعبة قصص و تمثيل,358237,5.0 M,4,7.1,16.5,0.0,GAME ROLE PLAYING,314420,16260,7209,4146,16201,False 1208 | 81,Time Princess,357910,5.0 M,4,8.5,20.8,0.0,GAME ROLE PLAYING,295735,34364,16188,4354,7266,False 1209 | 82,MARVEL Puzzle Quest: Join the Super Hero Battle!,351850,10.0 M,4,0.3,0.6,0.0,GAME ROLE PLAYING,221235,57641,24241,12944,35787,False 1210 | 83,Ragnarok M: Eternal Love,340801,5.0 M,4,1.3,2.8,0.0,GAME ROLE PLAYING,259507,39684,15411,4777,21419,False 1211 | 84,Cat Runner: Decorate Home,334232,100.0 M,4,5.4,10.8,0.0,GAME ROLE PLAYING,233444,25663,16683,13001,45439,False 1212 | 85,Cookie Run: Kingdom - Kingdom Builder & Battle RPG,332270,5.0 M,4,8.8,28.9,0.0,GAME ROLE PLAYING,248965,33709,15915,6697,26981,False 1213 | 86,Wolvesville - Werewolf Online,328319,10.0 M,4,1.7,3.3,0.0,GAME ROLE PLAYING,239892,45313,15416,5865,21830,False 1214 | 87,Ice Skating Ballerina - Dance Challenge Arena,327986,10.0 M,4,0.3,0.7,0.0,GAME ROLE PLAYING,217841,36644,22216,12391,38891,False 1215 | 88,Hotel Hideaway: Virtual World,324192,5.0 M,4,2.2,4.9,0.0,GAME ROLE PLAYING,235330,29057,16734,9420,33648,False 1216 | 89,Guild of Heroes: Magic RPG | Wizard game,320930,5.0 M,4,0.7,1.3,0.0,GAME ROLE PLAYING,256626,25415,10304,6376,22207,False 1217 | 90,Era of Celestials,317023,10.0 M,4,0.1,0.2,0.0,GAME ROLE PLAYING,217629,30073,17135,10530,41653,False 1218 | 91,Decisions-Interactive Role Playing Love Story Game,313301,10.0 M,4,2.4,5.2,0.0,GAME ROLE PLAYING,204972,37865,25592,12761,32108,False 1219 | 92,Evertale,311126,1.0 M,4,725.3,5.1,0.99,GAME ROLE PLAYING,222761,32884,15877,9298,30304,True 1220 | 93,Nonstop Knight - Offline Idle RPG Clicker,302340,5.0 M,4,0.1,0.1,0.0,GAME ROLE PLAYING,214245,39705,19137,8414,20836,False 1221 | 94,리니지2 레볼루션,300651,5.0 M,3,0.0,0.0,0.0,GAME ROLE PLAYING,159232,45041,29484,12679,54213,False 1222 | 95,FINAL FANTASY Record Keeper,297438,1.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,139743,90255,40327,10029,17082,False 1223 | 96,剣と魔法のログレス いにしえの女神-本格MMO・RPG,293945,1.0 M,3,0.1,0.2,0.0,GAME ROLE PLAYING,146469,58422,50871,12202,25978,False 1224 | 97,Game of Thrones: Conquest ™ - Strategy Game,284337,10.0 M,4,311.5,1.4,0.0,GAME ROLE PLAYING,185851,22546,15187,11038,49712,False 1225 | 98,Lineage2 Revolution,281603,5.0 M,3,0.1,0.2,0.0,GAME ROLE PLAYING,176808,25306,16764,9471,53251,False 1226 | 99,원피스 트레저 크루즈,281148,1.0 M,4,0.0,0.0,0.0,GAME ROLE PLAYING,208788,37624,15607,3864,15262,False 1227 | 100,Roller Skating Girls - Dance on Wheels,280566,10.0 M,4,1.3,2.9,0.0,GAME ROLE PLAYING,199651,24809,14347,9953,31803,False 1228 | 1,The Sims FreePlay,5541105,100.0 M,4,0.2,0.4,0.0,GAME SIMULATION,3457057,660545,377283,215335,830882,False 1229 | 2,SimCity BuildIt,5213933,100.0 M,4,0.2,0.4,0.0,GAME SIMULATION,3484074,871560,349321,144772,364203,False 1230 | 3,Episode - Choose Your Story,3622549,100.0 M,4,1.1,2.3,0.0,GAME SIMULATION,2310125,623432,309451,110606,268932,False 1231 | 4,Plague Inc.,3519405,100.0 M,4,0.4,0.9,0.0,GAME SIMULATION,2613482,492087,188184,62933,162717,False 1232 | 5,Fallout Shelter,3420152,10.0 M,4,0.3,0.5,0.0,GAME SIMULATION,2526660,558262,157102,54319,123807,False 1233 | 6,Dragon Mania Legends,2763325,50.0 M,4,1208.1,1.3,0.0,GAME SIMULATION,2087931,284544,127895,62539,200412,False 1234 | 7,The Tribez: Build a Village,2233572,10.0 M,4,0.2,0.4,0.0,GAME SIMULATION,1444449,444807,212428,52454,79432,False 1235 | 8,Bus Simulator Indonesia,1917203,50.0 M,4,2.6,5.6,0.0,GAME SIMULATION,1469488,149675,82882,47743,167413,False 1236 | 9,Jurassic World™: The Game,1652561,50.0 M,4,0.8,1.7,0.0,GAME SIMULATION,1072746,189663,106587,61626,221936,False 1237 | 10,AdVenture Capitalist: Idle Money Management,1583634,10.0 M,4,0.3,0.5,0.0,GAME SIMULATION,1126714,261874,87807,28370,78865,False 1238 | 11,Bus Simulator: Original,1487303,50.0 M,4,0.1,0.1,0.0,GAME SIMULATION,940898,164202,112902,56945,212354,False 1239 | 12,Dragon City Mobile,1421165,100.0 M,4,0.0,0.0,0.0,GAME SIMULATION,1149212,147633,52590,18948,52780,False 1240 | 13,Choices: Stories You Play,1389243,10.0 M,4,0.4,0.8,0.0,GAME SIMULATION,924315,243628,84511,40231,96556,False 1241 | 14,LINE BROWN FARM,1367006,10.0 M,4,0.3,0.5,0.0,GAME SIMULATION,896829,241396,115240,30409,83131,False 1242 | 15,Fishing Clash,1353453,50.0 M,4,1.8,4.1,0.0,GAME SIMULATION,1133700,105496,37830,18205,58220,False 1243 | 16,SAKURA School Simulator,1319464,10.0 M,4,6.7,15.7,0.0,GAME SIMULATION,1040495,82055,43016,28773,125122,False 1244 | 17,Scary Teacher 3D,1264769,100.0 M,4,4.2,9.4,0.0,GAME SIMULATION,910338,109308,62930,39377,142813,False 1245 | 18,"Cash, Inc. Money Clicker Game & Business Adventure",1243436,10.0 M,4,0.9,1.7,0.0,GAME SIMULATION,1039153,84922,45291,20019,54048,False 1246 | 19,Bus Simulator : Ultimate,1218642,50.0 M,4,7.3,11.4,0.0,GAME SIMULATION,852661,133280,68279,38685,125734,False 1247 | 20,Hooked Inc: Fisher Tycoon,1216891,10.0 M,4,1.1,2.5,0.0,GAME SIMULATION,881238,188929,87539,20875,38307,False 1248 | 21,Vegas Crime Simulator,1210916,100.0 M,4,0.9,1.9,0.0,GAME SIMULATION,861406,85432,59428,42751,161897,False 1249 | 22,House Flipper: Home Design & Simulator Games,1160646,10.0 M,4,7.2,15.9,0.0,GAME SIMULATION,896264,175664,49198,12920,26597,False 1250 | 23,"Egg, Inc.",1055152,10.0 M,4,1.8,4.3,0.0,GAME SIMULATION,761330,192559,59534,15423,26303,False 1251 | 24,Design Home: House Renovation,1053098,50.0 M,4,1.2,3.1,0.0,GAME SIMULATION,627464,220283,89694,43213,72441,False 1252 | 25,The Sims™ FreePlay,1004304,10.0 M,4,0.2,0.4,0.0,GAME SIMULATION,655793,114334,65822,34380,133973,False 1253 | 26,Block City Wars: Pixel Shooter with Battle Royale,999846,10.0 M,4,0.3,0.7,0.0,GAME SIMULATION,640733,109253,68841,37389,143629,False 1254 | 27,Paradise Island,976872,10.0 M,4,0.0,0.0,0.0,GAME SIMULATION,631576,161006,82647,34326,67315,False 1255 | 28,Car Parking Multiplayer,961095,50.0 M,4,6.2,14.1,0.0,GAME SIMULATION,722284,86105,41201,23345,88157,False 1256 | 29,Happy Mall Story: Sim Game,955109,10.0 M,4,0.4,0.8,0.0,GAME SIMULATION,734006,130386,50647,13323,26745,False 1257 | 30,Cooking Diary®: Tasty Restaurant & Cafe Game,945807,10.0 M,4,1.6,3.7,0.0,GAME SIMULATION,716734,128526,45012,17630,37902,False 1258 | 31,Clean Road,931389,50.0 M,4,0.0,0.1,0.0,GAME SIMULATION,623758,97783,81972,36797,91077,False 1259 | 32,Farming Simulator 14,913357,100.0 M,4,0.9,1.7,0.0,GAME SIMULATION,657566,71214,44473,29538,110563,False 1260 | 33,Klondike Adventures,882690,10.0 M,4,2.4,5.9,0.0,GAME SIMULATION,701501,81667,37640,16884,44995,False 1261 | 34,Airport City,880659,10.0 M,3,0.4,0.9,0.0,GAME SIMULATION,499070,136217,78571,40680,126119,False 1262 | 35,Cafeland - World Kitchen,841432,10.0 M,4,1.3,2.6,0.0,GAME SIMULATION,605637,115698,51236,20680,48178,False 1263 | 36,Zombie Castaways,813912,10.0 M,4,0.3,0.8,0.0,GAME SIMULATION,617744,106689,43975,14804,30698,False 1264 | 37,Barbie Dreamhouse Adventures,796153,50.0 M,4,3.2,7.6,0.0,GAME SIMULATION,546289,80821,46463,27262,95315,False 1265 | 38,Turbo Dismount™,765250,50.0 M,4,0.3,0.7,0.0,GAME SIMULATION,515008,89015,53159,25335,82731,False 1266 | 39,Truck Simulator 2018 : Europe,758948,100.0 M,4,2.9,6.0,0.0,GAME SIMULATION,514724,70767,45153,28608,99693,False 1267 | 40,Godus,740483,10.0 M,4,0.1,516.9,0.0,GAME SIMULATION,448604,136222,66882,28655,60118,False 1268 | 41,Animal Crossing: Pocket Camp,734122,10.0 M,4,0.5,2.4,0.0,GAME SIMULATION,518421,102421,43823,18579,50876,False 1269 | 42,Let's Fish: Sport Fishing Games. Fishing Simulator,709426,10.0 M,4,0.2,0.4,0.0,GAME SIMULATION,494190,133523,50535,9803,21372,False 1270 | 43,Flight Simulator: Fly Plane 3D,708938,100.0 M,3,0.1,0.2,0.0,GAME SIMULATION,442574,63971,56129,29012,117248,False 1271 | 44,2 3 4 Player Mini Games,704695,100.0 M,4,4.0,8.6,0.0,GAME SIMULATION,532809,56092,29099,17362,69331,False 1272 | 45,Heavy Truck Simulator,683592,10.0 M,4,0.3,0.7,0.0,GAME SIMULATION,462013,70983,41810,22014,86769,False 1273 | 46,Hotel Story: Resort Simulation,671111,10.0 M,4,0.1,0.2,0.0,GAME SIMULATION,464483,85302,54588,19605,47130,False 1274 | 47,Clouds & Sheep,664240,10.0 M,4,0.2,0.4,0.0,GAME SIMULATION,545194,52362,27910,10232,28539,False 1275 | 48,Weaphones™ Gun Sim Free Vol 1,651287,50.0 M,4,0.2,0.6,0.0,GAME SIMULATION,470567,56357,36998,18998,68364,False 1276 | 49,Make More! – Idle Manager,648290,10.0 M,4,0.9,1.7,0.0,GAME SIMULATION,485935,70484,36921,15854,39093,False 1277 | 50,School Girls Simulator,643497,10.0 M,4,1.7,3.6,0.0,GAME SIMULATION,481585,60163,28340,15861,57546,False 1278 | 51,Raft Survival: Ocean Nomad - Simulator,641259,50.0 M,4,4.4,9.2,0.0,GAME SIMULATION,451269,73006,40541,19087,57353,False 1279 | 52,Coach Bus Simulator,640012,10.0 M,4,0.5,1.0,0.0,GAME SIMULATION,405565,72000,44204,24153,94088,False 1280 | 53,Disney Magic Kingdoms: Build Your Own Magical Park,624634,50.0 M,3,0.3,0.7,0.0,GAME SIMULATION,378516,68203,42677,29034,106202,False 1281 | 54,Linda Brown: Interactive Story,620435,10.0 M,4,0.2,0.5,0.0,GAME SIMULATION,395363,65435,37895,23622,98118,False 1282 | 55,Solar Smash,609547,10.0 M,4,15.8,64.3,0.0,GAME SIMULATION,479497,56553,26852,12237,34405,False 1283 | 56,Drive and Park,607477,50.0 M,4,0.4,0.6,0.0,GAME SIMULATION,428415,70221,44605,18880,45354,False 1284 | 57,High School Story,604400,10.0 M,4,0.0,0.0,0.0,GAME SIMULATION,458884,69985,33454,11517,30557,False 1285 | 58,Car Simulator 2,593269,10.0 M,4,3.9,8.6,0.0,GAME SIMULATION,459452,47555,22115,13771,50373,False 1286 | 59,Bud Farm: Grass Roots,572365,10.0 M,4,0.1,0.1,0.0,GAME SIMULATION,464939,68293,16484,6583,16064,False 1287 | 60,Fire Emblem Heroes,555485,5.0 M,4,0.5,1.0,0.0,GAME SIMULATION,394139,85652,31238,12687,31767,False 1288 | 61,Hi Cooking,552049,10.0 M,4,0.1,0.1,0.0,GAME SIMULATION,427302,50508,31366,12153,30718,False 1289 | 62,Idle Supermarket Tycoon - Tiny Shop Game,543795,10.0 M,4,0.5,481.5,0.0,GAME SIMULATION,347069,84658,45262,20402,46402,False 1290 | 63,World Truck Driving Simulator,502248,10.0 M,4,3.4,6.4,0.0,GAME SIMULATION,372965,50894,23747,11770,42870,False 1291 | 64,Taxi Game,501382,50.0 M,3,0.0,0.0,0.0,GAME SIMULATION,249117,39864,38725,33320,140354,False 1292 | 65,My Story: Choose Your Own Path,495240,10.0 M,4,0.1,0.3,0.0,GAME SIMULATION,315630,70759,43914,18950,45984,False 1293 | 66,Public Transport Simulator,490931,10.0 M,4,0.5,1.1,0.0,GAME SIMULATION,336153,55303,30560,16791,52121,False 1294 | 67,Stickman Dismounting,482519,10.0 M,4,0.3,0.6,0.0,GAME SIMULATION,325745,62787,34580,15140,44265,False 1295 | 68,High School Simulator 2018,469556,10.0 M,4,2.2,4.9,0.0,GAME SIMULATION,319312,49141,28495,16144,56462,False 1296 | 69,Car Mechanic Simulator 21,461516,10.0 M,4,4.7,8.2,0.0,GAME SIMULATION,328638,72163,33136,9419,18158,False 1297 | 70,"Avatar Life - fun, love & games in virtual world!",460207,10.0 M,4,0.6,1.4,0.0,GAME SIMULATION,290673,63017,32312,15512,58692,False 1298 | 71,Indian Train Simulator,459870,10.0 M,4,1.0,1.9,0.0,GAME SIMULATION,296424,48785,31277,19678,63704,False 1299 | 72,Battle Disc,452939,10.0 M,4,1.1,1.4,0.0,GAME SIMULATION,312223,51549,35188,15361,38614,False 1300 | 73,Heavy Bus Simulator,447230,10.0 M,4,0.4,0.9,0.0,GAME SIMULATION,295736,49354,27584,15716,58838,False 1301 | 74,Симулятор жизни Ютубера,444868,1.0 M,4,0.3,0.7,0.0,GAME SIMULATION,360479,53149,17468,4630,9141,False 1302 | 75,Woodturning,440328,100.0 M,3,1.9,5.8,0.0,GAME SIMULATION,270134,48303,34507,23777,63605,False 1303 | 76,Truck Simulator USA - Evolution,438497,10.0 M,4,1.6,2.9,0.0,GAME SIMULATION,279057,59004,33758,16184,50492,False 1304 | 77,BitLife - Life Simulator,436857,10.0 M,4,1.8,3.6,0.0,GAME SIMULATION,284626,70011,30778,15633,35807,False 1305 | 78,Bio Inc - Plague and rebel doctors offline,425415,10.0 M,4,0.0,0.0,0.0,GAME SIMULATION,256882,80382,35672,14906,37571,False 1306 | 79,Idle Miner Tycoon: Mine & Money Clicker Management,424389,50.0 M,4,0.2,0.5,0.0,GAME SIMULATION,322660,60867,23726,5834,11299,False 1307 | 80,ZooCraft: Animal Family Simulator,423346,10.0 M,4,0.3,0.6,0.0,GAME SIMULATION,289749,67679,29166,11427,25323,False 1308 | 81,Goat Simulator,421173,10.0 M,4,1.7,3.6,0.0,GAME SIMULATION,313187,34205,17716,10470,45593,False 1309 | 82,Mystic Messenger,419193,5.0 M,4,0.8,1.7,0.0,GAME SIMULATION,356875,30456,11327,5569,14964,False 1310 | 83,Extreme Landings,416810,10.0 M,3,0.3,709.0,0.0,GAME SIMULATION,247167,51343,29577,18589,70132,False 1311 | 84,Stickman Rope Hero,408005,10.0 M,4,0.4,1.0,0.0,GAME SIMULATION,268617,36817,24125,15405,63038,False 1312 | 85,Prison Empire Tycoon - Idle Game,404733,10.0 M,4,3.2,6.4,0.0,GAME SIMULATION,269192,76249,27786,10798,20707,False 1313 | 86,FarmVille 2: Tropic Escape,402206,10.0 M,4,0.2,0.4,0.0,GAME SIMULATION,265159,57516,29317,14948,35263,False 1314 | 87,Terrarium: Garden Idle,392903,5.0 M,4,0.8,2.1,0.0,GAME SIMULATION,321942,39408,14389,6023,11138,False 1315 | 88,Dragons World,392700,10.0 M,4,0.0,0.1,0.0,GAME SIMULATION,272947,43110,26799,11177,38665,False 1316 | 89,Mobile Bus Simulator,390139,50.0 M,4,2.2,4.8,0.0,GAME SIMULATION,273404,29817,20720,14467,51727,False 1317 | 90,Tap Tap Fish AbyssRium - Healing Aquarium (+VR),385639,10.0 M,4,0.0,0.0,0.0,GAME SIMULATION,252021,52499,29098,14284,37735,False 1318 | 91,레알팜 : 진짜 농산물 주는 게임,382940,5.0 M,4,0.1,0.0,0.0,GAME SIMULATION,242138,74428,36624,8536,21211,False 1319 | 92,WorldBox - Sandbox God Simulator,382650,10.0 M,4,3.8,8.0,0.0,GAME SIMULATION,293144,50979,17901,5934,14691,False 1320 | 93,Hotel Empire Tycoon - Idle Game Manager Simulator,379532,10.0 M,4,1.2,2.4,0.0,GAME SIMULATION,247748,63796,29275,12104,26607,False 1321 | 94,Townsmen,377596,10.0 M,4,0.1,0.2,0.0,GAME SIMULATION,252277,51899,23109,11199,39109,False 1322 | 95,DragonVale,376552,10.0 M,4,0.1,0.2,0.0,GAME SIMULATION,271141,45288,20340,10435,29346,False 1323 | 96,Happy Pet Story: Virtual Pet Game,371385,10.0 M,4,0.8,1.6,0.0,GAME SIMULATION,293088,33781,16211,7196,21108,False 1324 | 97,Teen Love Story Games For Girls,370084,10.0 M,4,0.0,0.1,0.0,GAME SIMULATION,235199,38028,24286,16630,55938,False 1325 | 98,Bee Factory,369586,10.0 M,4,1.0,2.0,0.0,GAME SIMULATION,267726,42019,23238,11274,25327,False 1326 | 99,Bridge Constructor FREE,367616,10.0 M,4,0.0,0.0,0.0,GAME SIMULATION,230926,47877,27285,10760,50765,False 1327 | 100,Kill Shot,365531,10.0 M,4,0.0,0.1,0.0,GAME SIMULATION,260286,71588,20104,3725,9827,False 1328 | 1,8 Ball Pool,21632735,500.0 M,4,1.2,630.8,0.0,GAME SPORTS,16281475,2268294,1017204,425693,1640067,False 1329 | 2,Dream League Soccer,13385786,100.0 M,4,0.0,0.1,0.0,GAME SPORTS,10086735,1454500,646066,266864,931618,False 1330 | 3,Score! Hero,6856324,100.0 M,4,0.5,1.1,0.0,GAME SPORTS,4551071,837222,464347,222878,780804,False 1331 | 4,eFootball PES 2021,6633030,50.0 M,4,3.3,7.4,0.0,GAME SPORTS,4847463,639852,315999,158995,670718,False 1332 | 5,Top Eleven 2021: Be a Soccer Manager,4721659,100.0 M,4,1.5,3.2,0.0,GAME SPORTS,3588283,753250,202057,60167,117899,False 1333 | 6,Carrom Pool: Disc Game,3181731,100.0 M,4,7.4,11.5,0.0,GAME SPORTS,2157840,364339,220366,106843,332341,False 1334 | 7,Dream League Soccer 2021,3161007,50.0 M,4,8.3,19.5,0.0,GAME SPORTS,2235530,376586,198148,88356,262385,False 1335 | 8,EA SPORTS UFC®,2999325,50.0 M,4,0.2,0.5,0.0,GAME SPORTS,2136445,388689,166512,69482,238194,False 1336 | 9,World Cricket Championship 2 - WCC2,2968290,50.0 M,4,0.8,1.7,0.0,GAME SPORTS,2084392,342113,160793,76200,304791,False 1337 | 10,Bowling King,2935299,10.0 M,4,0.1,0.3,0.0,GAME SPORTS,2170300,459849,176480,39384,89283,False 1338 | 11,Pooking - Billiards City,2651825,100.0 M,4,1.9,4.0,0.0,GAME SPORTS,1882062,372889,168158,63964,164749,False 1339 | 12,New Star Soccer,2284366,10.0 M,4,0.3,0.7,0.0,GAME SPORTS,1748328,338980,111056,26543,59457,False 1340 | 13,Soccer Stars,2243246,50.0 M,4,0.4,1.0,0.0,GAME SPORTS,1598826,206648,115761,61612,260397,False 1341 | 14,Online Soccer Manager (OSM) - 20/21,2010215,10.0 M,4,0.8,1.8,0.0,GAME SPORTS,1481891,233514,97167,41065,156575,False 1342 | 15,World Soccer League,1993891,100.0 M,4,1.9,4.2,0.0,GAME SPORTS,1422477,174753,112505,61988,222165,False 1343 | 16,Golf Clash,1990469,10.0 M,4,0.4,0.8,0.0,GAME SPORTS,1210213,428240,150477,55096,146441,False 1344 | 17,Football Strike - Multiplayer Soccer,1853563,100.0 M,4,3.0,6.4,0.0,GAME SPORTS,1366393,212579,111087,40535,122966,False 1345 | 18,Head Ball 2 - Online Soccer Game,1753364,50.0 M,4,1.4,3.1,0.0,GAME SPORTS,1167484,151506,87424,53241,293706,False 1346 | 19,Fishing Hook,1687621,50.0 M,4,0.5,1.0,0.0,GAME SPORTS,1189980,220383,122089,42638,112529,False 1347 | 20,Head Soccer,1631259,50.0 M,4,0.0,0.1,0.0,GAME SPORTS,1139374,167320,93301,35705,195558,False 1348 | 21,Pool Billiards Pro,1477201,100.0 M,4,0.1,0.2,0.0,GAME SPORTS,1020041,186164,121604,38112,111278,False 1349 | 22,Ace Fishing: Wild Catch,1375149,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,956797,208855,96014,28267,85213,False 1350 | 23,Wrestling Revolution 3D,1269327,50.0 M,4,0.5,1.1,0.0,GAME SPORTS,847859,130863,81191,43650,165762,False 1351 | 24,zzSUNSET Last Season MM,1245413,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,851499,131004,60713,38549,163645,False 1352 | 25,Basketball Stars,1240874,50.0 M,4,1.0,2.6,0.0,GAME SPORTS,884186,178064,72646,24750,81225,False 1353 | 26,Run Race 3D,1223330,100.0 M,4,0.7,1.5,0.0,GAME SPORTS,779223,139861,91243,54031,158969,False 1354 | 27,Real Cricket™ 20,1173980,10.0 M,4,3.0,5.3,0.0,GAME SPORTS,785369,145269,73509,34370,135461,False 1355 | 28,3D Bowling,1171064,100.0 M,4,0.1,0.3,0.0,GAME SPORTS,850318,152322,74213,25060,69149,False 1356 | 29,Tennis Clash: 1v1 Free Online Sports Game,1090511,10.0 M,4,3.1,5.6,0.0,GAME SPORTS,735323,149631,71632,31036,102887,False 1357 | 30,PES CLUB MANAGER,1028795,10.0 M,4,0.3,0.8,0.0,GAME SPORTS,663622,128424,66081,35654,135011,False 1358 | 31,Shooting World - Gun Fire,1013587,50.0 M,4,0.5,0.9,0.0,GAME SPORTS,807463,105621,40973,16139,43389,False 1359 | 32,Archery Master 3D,955057,100.0 M,4,0.1,0.3,0.0,GAME SPORTS,627644,108404,73468,34815,110723,False 1360 | 33,Soccer Star 2021 Top Leagues: Play the SOCCER game,911473,10.0 M,4,5546.9,1.9,0.0,GAME SPORTS,632151,98242,55088,28447,97544,False 1361 | 34,Real Football,907290,50.0 M,3,0.5,1.1,0.0,GAME SPORTS,510826,90630,72909,43412,189511,False 1362 | 35,Head Football LaLiga 2021 - Skills Soccer Games,898768,10.0 M,4,0.1,0.2,0.0,GAME SPORTS,620533,93797,48107,21740,114589,False 1363 | 36,Flip Diving,882096,50.0 M,4,0.3,0.8,0.0,GAME SPORTS,665550,89779,45159,21600,60005,False 1364 | 37,World Cricket Championship Lt,830720,50.0 M,4,1.1,2.0,0.0,GAME SPORTS,553923,84564,54753,30030,107447,False 1365 | 38,Score! Match - PvP Soccer,800381,50.0 M,4,1.8,3.7,0.0,GAME SPORTS,533959,91057,51104,23326,100933,False 1366 | 39,Kite Flying - Layang Layang,791739,50.0 M,4,0.3,0.6,0.0,GAME SPORTS,563091,61090,40304,25448,101803,False 1367 | 40,Final kick 2020 Best Online football penalty game,764961,10.0 M,4,0.1,0.1,0.0,GAME SPORTS,529693,100865,47391,16992,70017,False 1368 | 41,Mini Golf King - Multiplayer Game,763809,10.0 M,4,0.2,0.5,0.0,GAME SPORTS,469929,152955,62157,21875,56891,False 1369 | 42,Boxing Star,741513,10.0 M,4,0.6,1.5,0.0,GAME SPORTS,535641,102194,40413,14977,48285,False 1370 | 43,Ultimate Soccer - Football,735171,50.0 M,3,0.3,0.6,0.0,GAME SPORTS,437502,68332,53638,34036,141662,False 1371 | 44,Real Cricket™ 17,731621,10.0 M,4,0.3,0.5,0.0,GAME SPORTS,482387,85634,50657,24070,88870,False 1372 | 45,Stickman Soccer 2014,709937,10.0 M,4,0.1,0.2,0.0,GAME SPORTS,528783,71826,42348,13419,53559,False 1373 | 46,Mobile Soccer,706812,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,535210,69973,33539,12723,55364,False 1374 | 47,Touchgrind BMX,701459,10.0 M,3,0.4,0.9,0.0,GAME SPORTS,413726,88509,60945,31050,107227,False 1375 | 48,Golf Battle,643614,50.0 M,4,3.0,7.0,0.0,GAME SPORTS,406123,98989,47508,21946,69046,False 1376 | 49,Soccer Star 2020 World Football: World Star Cup,609649,10.0 M,4,0.1,0.1,0.0,GAME SPORTS,400158,69557,39896,19853,80183,False 1377 | 50,Shooting Archery,609296,50.0 M,4,3.3,8.1,0.0,GAME SPORTS,432282,94840,40134,12280,29758,False 1378 | 51,WWE SuperCard - Battle Cards,606187,10.0 M,4,0.2,0.6,0.0,GAME SPORTS,430874,67636,29880,16510,61285,False 1379 | 52,Winner Soccer Evo Elite,574059,10.0 M,4,1.0,2.2,0.0,GAME SPORTS,411806,56784,33689,16799,54978,False 1380 | 53,Basketball Shoot,560180,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,367273,81332,43836,18658,49078,False 1381 | 54,NBA LIVE Mobile Basketball,535002,50.0 M,4,0.1,0.2,0.0,GAME SPORTS,386021,57440,25220,13740,52580,False 1382 | 55,Badminton League,525279,50.0 M,4,0.6,1.6,0.0,GAME SPORTS,330363,53611,38069,23007,80227,False 1383 | 56,EA SPORTS™ FIFA 21 Companion,523056,10.0 M,3,0.6,1.5,0.0,GAME SPORTS,299326,64282,33360,20314,105772,False 1384 | 57,Soccer Cup 2021: Free Football Games,498485,50.0 M,4,2.3,4.6,0.0,GAME SPORTS,332313,51049,33983,17175,63963,False 1385 | 58,Stickman Soccer - Classic,498367,10.0 M,4,0.0,0.1,0.0,GAME SPORTS,360612,57971,33439,10326,36018,False 1386 | 59,Soccer Super Star,496476,50.0 M,4,10.8,27.3,0.0,GAME SPORTS,350549,65548,33569,11808,35000,False 1387 | 60,Golf Star™,457537,10.0 M,4,0.1,0.0,0.0,GAME SPORTS,271186,85186,31744,14167,55251,False 1388 | 61,Fanatical Football,456387,10.0 M,4,121.6,0.1,0.0,GAME SPORTS,298062,52142,31748,14031,60401,False 1389 | 62,⚽Puppet Soccer 2014 - Big Head Football 🏆,455149,10.0 M,4,0.4,0.8,0.0,GAME SPORTS,300993,36779,23933,16155,77287,False 1390 | 63,Shooting Ball,452591,10.0 M,4,4.0,9.2,0.0,GAME SPORTS,305232,80398,36170,10098,20691,False 1391 | 64,Basketball Mania,448601,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,302450,61581,37015,13418,34135,False 1392 | 65,Volleyball Champions 3D - Online Sports Game,446911,10.0 M,4,0.1,0.3,0.0,GAME SPORTS,272730,64568,43604,17995,48011,False 1393 | 66,Basketball Battle,444198,10.0 M,4,0.2,0.5,0.0,GAME SPORTS,320223,52837,27370,12160,31606,False 1394 | 67,Golf King - World Tour,428647,5.0 M,4,3.9,8.6,0.0,GAME SPORTS,296744,90844,23382,5097,12578,False 1395 | 68,Shooting King,419893,10.0 M,4,0.2,0.4,0.0,GAME SPORTS,260223,87017,43054,10604,18993,False 1396 | 69,Homerun Battle 2,413619,5.0 M,4,0.0,0.0,0.0,GAME SPORTS,343505,38787,12196,3675,15453,False 1397 | 70,Hit & Knock down,402390,10.0 M,4,0.5,1.5,0.0,GAME SPORTS,270001,58862,32812,11496,29216,False 1398 | 71,Table Tennis 3D,393293,10.0 M,4,0.1,0.2,0.0,GAME SPORTS,253594,58402,33719,10816,36759,False 1399 | 72,Fishing Paradise 3D Free+,384096,10.0 M,4,0.1,0.3,0.0,GAME SPORTS,243744,57619,35647,12745,34338,False 1400 | 73,Sachin Saga Cricket Champions,379119,10.0 M,3,1.8,3.4,0.0,GAME SPORTS,229185,46052,27425,14472,61982,False 1401 | 74,Top Football Manager 2021,375089,10.0 M,4,0.9,1.8,0.0,GAME SPORTS,246164,59003,27066,9842,33013,False 1402 | 75,Wrestling Revolution,368562,10.0 M,4,0.4,0.9,0.0,GAME SPORTS,243719,38393,23013,13210,50224,False 1403 | 76,3D Pool Ball,362339,10.0 M,4,0.5,1.1,0.0,GAME SPORTS,259234,34428,21411,10471,36793,False 1404 | 77,Stickman Basketball,356039,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,258057,39470,21786,8007,28716,False 1405 | 78,Golf Rival,346518,10.0 M,4,2.7,5.6,0.0,GAME SPORTS,230058,62135,19781,8999,25543,False 1406 | 79,Mike V: Skateboard Party,338202,10.0 M,4,0.1,0.2,0.0,GAME SPORTS,244122,35967,19367,8170,30574,False 1407 | 80,Stick Cricket Premier League,335702,5.0 M,4,0.2,0.4,0.0,GAME SPORTS,217218,48828,21665,9633,38355,False 1408 | 81,Mobile Soccer League,327608,10.0 M,4,9750.2,1.3,0.0,GAME SPORTS,210984,46272,24348,11236,34766,False 1409 | 82,Virtual Table Tennis 3D,327381,10.0 M,4,0.0,0.1,0.0,GAME SPORTS,209651,37816,25667,8499,45745,False 1410 | 83,Badminton Legend,312534,10.0 M,4,0.2,0.6,0.0,GAME SPORTS,247349,22693,14726,7338,20426,False 1411 | 84,Retro Bowl,305429,1.0 M,4,2.9,6.0,0.0,GAME SPORTS,241707,50043,9331,1728,2617,False 1412 | 85,Mini Football - Mobile Soccer,301571,10.0 M,4,5.3,11.1,0.0,GAME SPORTS,197259,39792,18432,9051,37034,False 1413 | 86,Soccer Kicks (Football),288957,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,175653,33972,27958,14074,37298,False 1414 | 87,Fanatical Basketball,276833,10.0 M,4,0.5,1.1,0.0,GAME SPORTS,188798,28592,20486,9394,29561,False 1415 | 88,PBA® Bowling Challenge,276082,10.0 M,4,0.3,0.6,0.0,GAME SPORTS,195262,46016,14447,5826,14527,False 1416 | 89,Touchgrind Skate 2,272380,10.0 M,3,0.7,1.5,0.0,GAME SPORTS,154533,37974,24205,12601,43063,False 1417 | 90,Baseball Superstars® 2013,269937,5.0 M,4,0.1,0.0,0.0,GAME SPORTS,190570,40822,19536,5036,13970,False 1418 | 91,Flip Master,266048,10.0 M,4,0.5,1.1,0.0,GAME SPORTS,182023,29897,18752,9196,26178,False 1419 | 92,Archery Tournament,265926,10.0 M,4,0.0,0.0,0.0,GAME SPORTS,149106,49116,30239,11901,25562,False 1420 | 93,Winner Soccer Evolution,264519,10.0 M,4,1.5,3.2,0.0,GAME SPORTS,184046,26125,16655,9001,28690,False 1421 | 94,Shoot Goal - Football Stars Soccer Games 2021,261197,10.0 M,4,0.2,0.4,0.0,GAME SPORTS,173684,24880,16850,9080,36700,False 1422 | 95,Badminton 3D,258454,10.0 M,4,0.1,0.1,0.0,GAME SPORTS,165941,39223,24908,6873,21507,False 1423 | 96,Photo Finish Horse Racing,254590,5.0 M,4,435.4,0.4,0.0,GAME SPORTS,216840,19662,6088,2999,8998,False 1424 | 97,Basketball Kings: Multiplayer,252130,5.0 M,4,0.0,0.0,0.0,GAME SPORTS,198907,28125,12033,3178,9884,False 1425 | 98,Stickman Soccer 2016,251087,10.0 M,4,0.1,0.2,0.0,GAME SPORTS,173365,29455,16365,7119,24782,False 1426 | 99,Ultimate Tennis: 3D online sports game,245430,10.0 M,4,0.2,0.5,0.0,GAME SPORTS,157055,35355,16787,8030,28200,False 1427 | 100,Futsal Football 2,243214,10.0 M,2,0.0,0.0,0.0,GAME SPORTS,84461,12107,13275,8344,125025,False 1428 | 1,Clash of Clans,55766763,500.0 M,4,0.3,1.0,0.0,GAME STRATEGY,43346128,5404966,2276203,971321,3768141,False 1429 | 2,Clash Royale,30852360,100.0 M,4,0.4,0.8,0.0,GAME STRATEGY,21009004,3645468,1655906,777067,3764913,False 1430 | 3,Lords Mobile: Tower Defense,6548519,100.0 M,4,2.0,4.2,0.0,GAME STRATEGY,4667558,783541,364754,141812,590852,False 1431 | 4,Boom Beach,6055738,50.0 M,4,0.1,0.2,0.0,GAME STRATEGY,4401189,803632,324777,122057,404080,False 1432 | 5,Plants vs. Zombies FREE,5164307,100.0 M,4,0.6,1.2,0.0,GAME STRATEGY,3744157,524307,276843,139857,479140,False 1433 | 6,Castle Clash: Guild Royale,5013543,100.0 M,4,0.4,0.7,0.0,GAME STRATEGY,3490753,444434,253620,123462,701271,False 1434 | 7,Grow Empire: Rome,3687571,10.0 M,4,0.6,1.2,0.0,GAME STRATEGY,2764963,535971,217151,53862,115622,False 1435 | 8,World of Tanks Blitz PVP MMO 3D tank game for free,3671736,100.0 M,4,1.0,2.3,0.0,GAME STRATEGY,2525303,392631,182624,110955,460219,False 1436 | 9,Monster Legends: Breed and Collect,3342006,50.0 M,4,0.4,1.0,0.0,GAME STRATEGY,2555996,356028,147355,62745,219879,False 1437 | 10,Bid Wars - Storage Auctions and Pawn Shop Tycoon,3120219,10.0 M,4,0.1,0.3,0.0,GAME STRATEGY,2040765,579613,287144,79355,133340,False 1438 | 11,Clash of Kings : Newly Presented Knight System,2317500,50.0 M,4,0.0,0.1,0.0,GAME STRATEGY,1492317,268330,147956,76316,332578,False 1439 | 12,Vlogger Go Viral: Streamer Tuber Idle Life Games,2120051,10.0 M,4,0.3,0.9,0.0,GAME STRATEGY,1672347,210475,88357,39902,108966,False 1440 | 13,Stick War: Legacy,1997631,100.0 M,4,2.3,4.6,0.0,GAME STRATEGY,1594877,141385,68934,38963,153468,False 1441 | 14,State of Survival: The Walking Dead Collaboration,1823903,50.0 M,4,2.7,6.4,0.0,GAME STRATEGY,1293252,279123,89442,34210,127873,False 1442 | 15,Castle Clash: Схватка Гильдий,1727242,10.0 M,4,0.2,41869.7,0.0,GAME STRATEGY,1317062,146795,69614,36254,157515,False 1443 | 16,Clash of Lords 2: Guild Castle,1709263,10.0 M,4,0.0,0.0,0.0,GAME STRATEGY,1217904,157175,101282,35373,197526,False 1444 | 17,Rise of Kingdoms: Lost Crusade,1651636,10.0 M,4,1.5,3.3,0.0,GAME STRATEGY,1165118,185134,73380,37330,190672,False 1445 | 18,Last Shelter: Survival,1526081,10.0 M,4,691.5,0.8,0.0,GAME STRATEGY,985247,263163,104963,40419,132287,False 1446 | 19,Game of War - Fire Age,1492534,50.0 M,3,0.0,0.0,0.0,GAME STRATEGY,787791,132570,128828,58422,384920,False 1447 | 20,Megapolis: city building simulator. Urban strategy,1451408,50.0 M,4,0.2,0.3,0.0,GAME STRATEGY,1018102,214995,74627,35751,107932,False 1448 | 21,Empire: Four Kingdoms | Medieval Strategy MMO,1319150,50.0 M,4,0.1,0.1,0.0,GAME STRATEGY,814958,193275,100281,44780,165854,False 1449 | 22,Castle Crush: Epic Battle - Free Strategy Games,1311005,50.0 M,4,0.9,2.3,0.0,GAME STRATEGY,963379,139126,67624,29664,111211,False 1450 | 23,League of Legends: Wild Rift,1296343,10.0 M,4,8.4,24.2,0.0,GAME STRATEGY,897519,136143,68889,36300,157490,False 1451 | 24,King of Thieves,1272102,10.0 M,4,0.2,0.3,0.0,GAME STRATEGY,912259,165799,66623,29432,97986,False 1452 | 25,Throne Rush,1225321,10.0 M,4,0.0,0.1,0.0,GAME STRATEGY,914224,141171,64228,22751,82945,False 1453 | 26,Bid Wars 2: Pawn Shop - Storage Auction Simulator,1006180,10.0 M,4,2.1,4.7,0.0,GAME STRATEGY,598228,221366,107170,25486,53928,False 1454 | 27,Rise of Empires: Ice and Fire,993926,10.0 M,4,5.3,15.4,0.0,GAME STRATEGY,832782,86268,34499,9882,30492,False 1455 | 28,Mafia City,990104,50.0 M,4,2.2,4.3,0.0,GAME STRATEGY,678367,108437,40951,23586,138761,False 1456 | 29,Forge of Empires: Build your City,981368,10.0 M,4,0.7,1.4,0.0,GAME STRATEGY,661812,170284,55103,24310,69855,False 1457 | 30,King of Avalon: Dominion,929429,50.0 M,4,2.5,6.0,0.0,GAME STRATEGY,613067,155707,66444,21163,73046,False 1458 | 31,aa,905021,50.0 M,4,0.0,0.0,0.0,GAME STRATEGY,608721,105113,66943,23677,100565,False 1459 | 32,Mobile Strike,897313,50.0 M,3,0.2,0.4,0.0,GAME STRATEGY,491163,71390,71929,34966,227863,False 1460 | 33,Bloons TD Battles,896950,10.0 M,4,0.4,0.7,0.0,GAME STRATEGY,614582,116548,53505,23239,89073,False 1461 | 34,Last Empire - War Z: Strategy,874080,50.0 M,4,0.0,0.0,0.0,GAME STRATEGY,555162,84313,59108,29384,146111,False 1462 | 35,Alien Creeps TD - Epic tower defense,853029,10.0 M,4,0.2,0.4,0.0,GAME STRATEGY,587382,144144,56887,19392,45222,False 1463 | 36,Vainglory,830008,10.0 M,3,0.0,0.0,0.0,GAME STRATEGY,464657,63877,52953,38624,209896,False 1464 | 37,Jungle Heat: War of Clans,828238,10.0 M,4,0.0,0.0,0.0,GAME STRATEGY,577865,84762,49003,21305,95300,False 1465 | 38,The Walking Dead No Man's Land,796172,10.0 M,4,0.3,0.8,0.0,GAME STRATEGY,583685,128382,39518,12969,31616,False 1466 | 39,Art of War: Legions,780016,10.0 M,4,1.4,3.1,0.0,GAME STRATEGY,603243,59946,33610,18683,64532,False 1467 | 40,DomiNations,762869,10.0 M,4,0.6,0.7,0.0,GAME STRATEGY,466955,107353,49516,27844,111198,False 1468 | 41,World at Arms,757664,10.0 M,4,0.1,0.1,0.0,GAME STRATEGY,472981,111421,60179,22066,91014,False 1469 | 42,Heroes of Order & Chaos,722453,10.0 M,3,0.0,0.1,0.0,GAME STRATEGY,351940,72277,81782,35723,180728,False 1470 | 43,METAL SLUG DEFENSE,696205,10.0 M,4,0.0,0.1,0.0,GAME STRATEGY,435793,80415,54019,22820,103155,False 1471 | 44,Army Men Strike - Military Strategy Simulator,676749,10.0 M,4,0.3,0.6,0.0,GAME STRATEGY,422859,100905,53376,21444,78163,False 1472 | 45,Toilet Time: Boredom killer Fun Mini Games to Play,635321,10.0 M,4,0.1,0.2,0.0,GAME STRATEGY,433140,77119,45368,18233,61458,False 1473 | 46,Castle Clash: Dominio del Reino,602797,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,433538,59595,35035,13775,60851,False 1474 | 47,Final Fantasy XV: A New Empire,569186,10.0 M,3,0.0,0.0,0.0,GAME STRATEGY,304445,59056,36586,24957,144139,False 1475 | 48,Dead Ahead: Zombie Warfare,568510,5.0 M,4,0.5,0.9,0.0,GAME STRATEGY,392543,103364,34155,12562,25883,False 1476 | 49,Lapse: A Forgotten Future,562637,10.0 M,4,0.5,1.1,0.0,GAME STRATEGY,434058,81401,22158,8120,16898,False 1477 | 50,Heroes Evolved,544851,10.0 M,3,0.3,0.6,0.0,GAME STRATEGY,292552,45804,41854,27186,137452,False 1478 | 51,Dawn of Titans: War Strategy RPG,524835,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,341458,71787,26215,12587,72786,False 1479 | 52,Toy Defence 2 — Tower Defense game,501511,10.0 M,4,0.4,0.8,0.0,GAME STRATEGY,320724,112757,39353,9751,18924,False 1480 | 53,2020: My Country,496584,5.0 M,4,0.2,0.4,0.0,GAME STRATEGY,335371,87414,43397,10356,20044,False 1481 | 54,Random Dice: PvP Defense,495783,5.0 M,4,1.9,3.6,0.0,GAME STRATEGY,316232,65590,33735,15012,65212,False 1482 | 55,South Park: Phone Destroyer™ - Battle Card Game,494150,10.0 M,4,0.6,1.3,0.0,GAME STRATEGY,362231,60537,23406,12899,35075,False 1483 | 56,Castle Clash: King's Castle DE,486733,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,340025,50808,29083,12367,54448,False 1484 | 57,Clash of Lords: Guild Castle,485836,5.0 M,4,0.0,0.0,0.0,GAME STRATEGY,383318,46683,22748,7652,25432,False 1485 | 58,Empires and Allies,457050,10.0 M,4,0.2,0.4,0.0,GAME STRATEGY,314731,62310,26605,11998,41403,False 1486 | 59,Mini Warriors,447416,5.0 M,4,0.0,0.0,0.0,GAME STRATEGY,300485,52687,22901,11410,59931,False 1487 | 60,Invasion: Modern Empire,422883,10.0 M,4,0.1,0.3,0.0,GAME STRATEGY,294392,36040,18450,9900,64100,False 1488 | 61,Tentacle Wars ™,421429,1.0 M,4,0.2,0.7,0.0,GAME STRATEGY,251910,93594,43204,11421,21298,False 1489 | 62,Realm Defense: Epic Tower Defense Strategy Game,420713,5.0 M,4,0.3,0.7,0.0,GAME STRATEGY,322394,53126,16505,8143,20542,False 1490 | 63,Reactor ☢️ - Idle Manager- Energy Sector Tycoon,419861,5.0 M,4,3.1,5.9,0.0,GAME STRATEGY,311407,63346,24981,7050,13074,False 1491 | 64,My Virtual Pet Shop: Take Care of Pets & Animals🐶,411981,10.0 M,4,997.8,2.2,0.0,GAME STRATEGY,322419,39157,18834,8957,22612,False 1492 | 65,Gods of Olympus,410590,1.0 M,4,1.2,2.3,0.0,GAME STRATEGY,296444,71858,22980,5513,13792,False 1493 | 66,Disney Heroes: Battle Mode,403144,10.0 M,4,0.8,1.5,0.0,GAME STRATEGY,276595,47615,22779,12123,44030,False 1494 | 67,Deep Town: Mining Factory,399706,5.0 M,4,0.9,1.8,0.0,GAME STRATEGY,312504,38206,18255,10389,20349,False 1495 | 68,War and Order,398705,10.0 M,4,1.7,3.2,0.0,GAME STRATEGY,246663,68774,30684,11394,41188,False 1496 | 69,Survival Arena,398659,1.0 M,4,0.0,0.0,0.0,GAME STRATEGY,235304,104269,43047,6038,9998,False 1497 | 70,Virtual City® Playground: Building Tycoon,389030,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,252459,76356,37873,8746,13594,False 1498 | 71,Castle Clash : Guild Royale,386714,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,273466,47670,23645,8428,33503,False 1499 | 72,Clash of Lords 2: Битва Легенд,384682,1.0 M,4,0.0,0.0,0.0,GAME STRATEGY,318938,29917,10238,4649,20937,False 1500 | 73,Top War: Battle Game,369562,10.0 M,4,8.4,1019.6,0.0,GAME STRATEGY,289130,24934,10808,7421,37267,False 1501 | 74,Empire Z: Endless War,366186,5.0 M,3,0.1,0.3,0.0,GAME STRATEGY,198511,55685,35432,18508,58047,False 1502 | 75,Warlings: Armageddon,362447,10.0 M,4,0.4,1.0,0.0,GAME STRATEGY,244893,44617,27630,11580,33724,False 1503 | 76,Age of Z Origins,360216,10.0 M,4,1.5,6.0,0.0,GAME STRATEGY,247952,47567,23604,9260,31830,False 1504 | 77,انتقام السلاطين,347182,10.0 M,3,1.1,2.3,0.0,GAME STRATEGY,231474,20632,16026,8993,70055,False 1505 | 78,Total Conquest,346748,10.0 M,3,0.3,0.6,0.0,GAME STRATEGY,206791,30098,24620,15284,69953,False 1506 | 79,Chess Live,340261,10.0 M,4,0.1,0.1,0.0,GAME STRATEGY,220141,42941,24403,10283,42491,False 1507 | 80,Onmyoji Arena,338283,5.0 M,4,0.5,1.1,0.0,GAME STRATEGY,231892,42256,19681,10169,34282,False 1508 | 81,Narcos: Cartel Wars. Build an Empire with Strategy,333150,10.0 M,4,0.4,0.8,0.0,GAME STRATEGY,260113,26447,13258,7791,25539,False 1509 | 82,March of Empires: War of Lords,331561,10.0 M,3,0.3,0.6,0.0,GAME STRATEGY,187712,43663,22820,13795,63568,False 1510 | 83,Chess Rush,331178,5.0 M,3,0.5,1.0,0.0,GAME STRATEGY,190352,35496,22340,15112,67875,False 1511 | 84,War and Magic: Kingdom Reborn,330020,5.0 M,4,0.6,1.2,0.0,GAME STRATEGY,204234,51551,18934,7902,47396,False 1512 | 85,Supermarket Mania Journey,324991,10.0 M,4,0.7,1.6,0.0,GAME STRATEGY,214459,52688,31882,10897,15062,False 1513 | 86,War Heroes: Strategy Card Game for Free,319868,10.0 M,4,0.1,0.3,0.0,GAME STRATEGY,233685,22290,15190,9040,39660,False 1514 | 87,TRANSFORMERS: Earth Wars,318917,10.0 M,4,0.4,0.8,0.0,GAME STRATEGY,230933,39731,14966,7652,25632,False 1515 | 88,Art of War 3: PvP RTS modern warfare strategy game,318209,10.0 M,4,1.1,2.4,0.0,GAME STRATEGY,250224,25778,13297,6409,22498,False 1516 | 89,Train Station 2: Railroad Tycoon & Train Simulator,308480,10.0 M,4,4.2,9.5,0.0,GAME STRATEGY,213598,54991,19626,7023,13240,False 1517 | 90,Defender II,305701,10.0 M,4,0.0,0.0,0.0,GAME STRATEGY,197476,38262,22343,10982,36636,False 1518 | 91,Stormfall: Rise of Balur,297722,10.0 M,4,0.0,0.1,0.0,GAME STRATEGY,190869,41354,20387,9399,35710,False 1519 | 92,Zombie Defense,293059,10.0 M,4,0.1,490.9,0.0,GAME STRATEGY,203722,40179,20334,7460,21362,False 1520 | 93,Grepolis - Divine Strategy MMO,289334,5.0 M,4,0.1,0.2,0.0,GAME STRATEGY,179988,58617,19476,8269,22981,False 1521 | 94,Venom Angry Crashy Rush Online,285623,10.0 M,4,0.3,0.6,0.0,GAME STRATEGY,200973,25295,15672,9782,33899,False 1522 | 95,Castle Clash: Batalha de Guildas,280494,1.0 M,4,0.1,0.3,0.0,GAME STRATEGY,209506,23609,14537,5804,27036,False 1523 | 96,The Walking Dead: Survivors,278920,5.0 M,4,61.7,0.0,0.0,GAME STRATEGY,218262,37400,13806,3115,6334,False 1524 | 97,城堡爭霸 - 聯盟霸業,276534,1.0 M,4,0.0,0.1,0.0,GAME STRATEGY,224905,19994,9987,3809,17836,False 1525 | 98,Kiss of War,274882,5.0 M,4,2.9,7.7,0.0,GAME STRATEGY,223344,23286,10822,4325,13103,False 1526 | 99,Conquerors: Golden Age,272243,10.0 M,3,0.4,1.2,0.0,GAME STRATEGY,170316,12438,9587,6677,73223,False 1527 | 100,Iron Desert - Fire Storm,272201,5.0 M,4,0.0,0.0,0.0,GAME STRATEGY,191275,34133,16626,7165,23000,False 1528 | 1,Trivia Crack,7334155,100.0 M,4,0.4,0.8,0.0,GAME TRIVIA,4938889,1123053,442298,187183,642730,False 1529 | 2,Brain Test: Tricky Puzzles,4145089,100.0 M,4,1329.5,3.9,0.0,GAME TRIVIA,3257745,500071,128569,58420,200281,False 1530 | 3,"94% - Quiz, Trivia & Logic",2614691,10.0 M,4,0.0,0.1,0.0,GAME TRIVIA,1793644,502914,188160,46183,83787,False 1531 | 4,Logo Quiz,1183690,50.0 M,4,0.0,0.0,0.0,GAME TRIVIA,782536,200566,91641,35146,73798,False 1532 | 5,Who is? Brain Teaser & Tricky Riddles,1098826,10.0 M,4,4.8,12.0,0.0,GAME TRIVIA,849618,127466,39973,19883,61883,False 1533 | 6,Brain Test 2: Tricky Stories,837271,10.0 M,4,4.9,9.3,0.0,GAME TRIVIA,657949,100330,27744,11337,39908,False 1534 | 7,Free Trivia Game. Questions & Answers. QuizzLand.,688137,10.0 M,4,2.7,6.3,0.0,GAME TRIVIA,599123,45187,15423,7552,20849,False 1535 | 8,Tricky Test 2™: Genius Brain?,649922,10.0 M,4,0.0,0.1,0.0,GAME TRIVIA,559733,39931,17721,8106,24428,False 1536 | 9,Quiz: Logo game,423164,10.0 M,4,995.6,0.5,0.0,GAME TRIVIA,265001,75368,36981,15446,30364,False 1537 | 10,TVSMILES - Quiz and Prizes,406864,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,292046,61432,25546,7248,20589,False 1538 | 11,فطحل العرب - لعبة معلومات عامة,379611,5.0 M,4,0.3,0.6,0.0,GAME TRIVIA,310072,33669,17359,5129,13379,False 1539 | 12,Gartic,357020,10.0 M,4,69928.5,1.6,0.0,GAME TRIVIA,230895,52861,25746,10562,36953,False 1540 | 13,Trivia Crack 2,344975,10.0 M,4,1.4,2.8,0.0,GAME TRIVIA,235266,57540,20735,8377,23054,False 1541 | 14,94 Degrees: fun trivia quiz,334779,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,195219,69220,29656,12503,28179,False 1542 | 15,Quizdom - Trivia more than logo quiz!,330992,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,242869,28097,16707,7814,35503,False 1543 | 16,Think,289425,5.0 M,4,0.1,0.3,0.0,GAME TRIVIA,165966,89531,24385,3626,5914,False 1544 | 17,Fight List - Categories Game,282642,10.0 M,3,0.1,0.3,0.0,GAME TRIVIA,139977,55995,27747,17549,41371,False 1545 | 18,모두의 퀴즈 - 사진연상 단어,279589,1.0 M,4,0.0,0.1,0.0,GAME TRIVIA,188748,52259,24863,4386,9331,False 1546 | 19,I Know Stuff : trivia quiz,216643,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,154643,26117,15302,5847,14732,False 1547 | 20,Who Wants to Be a Millionaire? Trivia & Quiz Game,211433,10.0 M,4,1.4,2.8,0.0,GAME TRIVIA,139578,35991,14066,6178,15616,False 1548 | 21,World Geography - Quiz Game,189577,10.0 M,4,0.5,1.3,0.0,GAME TRIVIA,136572,37927,7274,2381,5421,False 1549 | 22,Guess The Brand - Logo Mania,181338,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,118311,29600,14815,4971,13639,False 1550 | 23,Millionaire 2021 - Free Trivia Quiz Offline Game,172772,10.0 M,4,6.7,16.9,0.0,GAME TRIVIA,121153,22621,9172,5335,14488,False 1551 | 24,ปริศนาฟ้าแลบ,172586,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,119604,23373,13270,6435,9902,False 1552 | 25,Guess The Song - Music Quiz,169372,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,117777,24617,11618,3899,11458,False 1553 | 26,حلها واحتلها - لعبة كلمة السر,166714,1.0 M,4,1.8,3.9,0.0,GAME TRIVIA,147906,7246,4950,2017,4592,False 1554 | 27,Can you escape the 100 room IV,166160,5.0 M,4,1.2,2.4,0.0,GAME TRIVIA,117768,29132,11301,2815,5141,False 1555 | 28,Logo Game: Guess Brand Quiz,166022,10.0 M,4,0.2,0.4,0.0,GAME TRIVIA,98721,21044,15401,8503,22350,False 1556 | 29,A4 Wheel of fortune,163509,5.0 M,4,1.1,2.5,0.0,GAME TRIVIA,127718,9963,4952,2919,17955,False 1557 | 30,Color Mania Quiz - Guess the logo game,163390,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,137315,9324,6925,2488,7335,False 1558 | 31,TTS Lontong,157252,5.0 M,4,0.0,0.1,0.0,GAME TRIVIA,108158,19571,11615,4656,13250,False 1559 | 32,Интеллект-баттл,155287,5.0 M,4,0.4,0.7,0.0,GAME TRIVIA,112167,19274,7592,3761,12490,False 1560 | 33,Jeopardy!® Trivia Quiz Game Show,152329,1.0 M,4,0.4,0.9,0.0,GAME TRIVIA,96618,31508,11662,4834,7705,False 1561 | 34,Scratch Logo Quiz. Challenging brain puzzle,152275,10.0 M,3,0.0,0.0,0.0,GAME TRIVIA,74829,18205,16867,8518,33854,False 1562 | 35,Spin of Fortune - Quiz,151512,10.0 M,4,0.3,0.8,0.0,GAME TRIVIA,101790,20627,10902,4892,13299,False 1563 | 36,"100 PICS Quiz - Guess Trivia, Logo & Picture Games",148685,10.0 M,4,0.0,0.1,0.0,GAME TRIVIA,98320,22627,10278,4849,12608,False 1564 | 37,General Knowledge Quiz,143211,5.0 M,4,0.0,0.0,0.0,GAME TRIVIA,91487,28262,11460,3963,8036,False 1565 | 38,Food Quiz,142859,10.0 M,4,0.0,0.0,0.0,GAME TRIVIA,92830,17284,10837,5878,16027,False 1566 | 39,TRIVIA STAR - Free Trivia Games Offline App,134845,5.0 M,4,9.2,22.3,0.0,GAME TRIVIA,121513,7113,2095,1062,3059,False 1567 | 40,Trivia Survival 100,130488,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,91988,14909,7949,3029,12609,False 1568 | 41,Adivina la Canción,124963,5.0 M,3,0.1,0.3,0.0,GAME TRIVIA,73341,15419,11944,5991,18265,False 1569 | 42,Nope Quiz,120834,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,85619,16288,6771,2856,9297,False 1570 | 43,Free RBX Master,116248,500.0 k,4,2.7,8.1,0.0,GAME TRIVIA,84945,7865,4824,2342,16269,False 1571 | 44,Вращайте барабан,115459,10.0 M,4,1.8,3.9,0.0,GAME TRIVIA,89613,12485,5377,2266,5715,False 1572 | 45,Genius Quiz - Smart Brain Trivia Game,115024,5.0 M,4,2391.1,0.0,0.0,GAME TRIVIA,83883,12372,6365,2165,10237,False 1573 | 46,Richman 4 fun,114009,1.0 M,3,0.0,0.1,0.0,GAME TRIVIA,57009,13840,11204,5312,26642,False 1574 | 47,Who Becomes Rich,113934,5.0 M,3,185.9,0.3,0.0,GAME TRIVIA,54008,28525,12990,7682,10725,False 1575 | 48,Trick Me: Logical Brain Teasers Puzzle,111963,5.0 M,4,1.4,3.0,0.0,GAME TRIVIA,76183,14445,9849,3788,7696,False 1576 | 49,TRIVIA 360: Single-player & Multiplayer quiz game,109743,5.0 M,4,0.5,1.2,0.0,GAME TRIVIA,66254,28161,8615,2413,4297,False 1577 | 50,Quiz Of Kings,107915,1.0 M,4,3.0,7.1,0.0,GAME TRIVIA,84991,8110,4065,2072,8675,False 1578 | 51,sameQuizy,107674,1.0 M,4,0.2,0.4,0.0,GAME TRIVIA,68905,19658,8051,3286,7771,False 1579 | 52,"Live Quiz Games App, Trivia & Gaming App for Money",106920,10.0 M,3,0.0,0.0,0.0,GAME TRIVIA,53824,8887,5436,3650,35121,False 1580 | 53,MEGA QUIZ GAMING 2021 - Guess the game Trivia,98012,1.0 M,3,0.0,0.0,0.0,GAME TRIVIA,46788,24667,11345,4424,10785,False 1581 | 54,Would You Rather? The Game,96670,5.0 M,3,1.3,2.1,0.0,GAME TRIVIA,49679,10309,8727,4675,23277,False 1582 | 55,Guess The Movie ®,94777,1.0 M,3,0.1,0.3,0.0,GAME TRIVIA,31828,18525,15729,9987,18705,False 1583 | 56,Pluck It: hairs and emotions,86335,500.0 k,4,1.1,2.3,0.0,GAME TRIVIA,72958,6777,1971,1139,3487,False 1584 | 57,A Journey Towards Jesus,82509,1.0 M,4,0.3,0.8,0.0,GAME TRIVIA,69752,8274,2295,608,1577,False 1585 | 58,УГАДАЙ БЛОГЕРА,77624,1.0 M,4,0.0,0.1,0.0,GAME TRIVIA,70298,2451,1265,717,2890,False 1586 | 59,96%: Family Quiz,77391,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,46468,15506,6715,2504,6196,False 1587 | 60,"Эврика! Логические Задачи, Игры и Головоломки",76857,1.0 M,4,0.1,0.1,0.0,GAME TRIVIA,55447,12867,2797,1049,4695,False 1588 | 61,"Stupid test: moron test, idiotest. IQ bored games",76445,1.0 M,4,0.5,1.1,0.0,GAME TRIVIA,47739,8784,4895,2592,12433,False 1589 | 62,Trivia Crack Adventure,75729,5.0 M,4,9.1,25.6,0.0,GAME TRIVIA,49778,13930,5241,2208,4569,False 1590 | 63,Trivia Crack (No Ads),75712,500.0 k,4,0.7,1.4,1.99,GAME TRIVIA,56454,12628,3284,1088,2256,True 1591 | 64,Guess Their Answer,75135,5.0 M,4,41.3,235.8,0.0,GAME TRIVIA,45559,12199,6161,3189,8025,False 1592 | 65,New QuizDuel!,72097,1.0 M,3,28062.9,9.8,0.0,GAME TRIVIA,28045,12708,3730,3681,23930,False 1593 | 66,Quiz World: Play and Win Everyday!,67251,1.0 M,4,78.6,157.2,0.0,GAME TRIVIA,52444,3270,2133,1286,8115,False 1594 | 67,Picture Quiz: Logos,66599,10.0 M,4,0.1,0.1,0.0,GAME TRIVIA,44206,15727,4436,799,1428,False 1595 | 68,I Know the Cartoon,65681,5.0 M,4,0.0,0.0,0.0,GAME TRIVIA,41290,8609,5553,1967,8260,False 1596 | 69,Quiz - Offline Games,65504,5.0 M,4,3.4,7.4,0.0,GAME TRIVIA,42321,11158,5329,1793,4901,False 1597 | 70,Atriviate (Online Trivia),64624,5.0 M,3,0.0,0.1,0.0,GAME TRIVIA,24061,16120,9210,4560,10670,False 1598 | 71,"Logo Test: World Brands Quiz, Guess Trivia Game",62720,1.0 M,4,8.6,22.9,0.0,GAME TRIVIA,45054,8178,4563,1465,3458,False 1599 | 72,"Gartic.io - Draw, Guess, WIN",62009,5.0 M,3,1.7,4.0,0.0,GAME TRIVIA,32499,9654,6416,3396,10041,False 1600 | 73,Truth or Dare,61000,1.0 M,4,1.0,2.5,0.0,GAME TRIVIA,44911,7894,2864,1337,3992,False 1601 | 74,BFF Friendship Test,60074,10.0 M,4,0.8,1.9,0.0,GAME TRIVIA,39186,7122,4624,2447,6692,False 1602 | 75,Eu Sei a Música,57663,1.0 M,4,0.0,0.1,0.0,GAME TRIVIA,35727,8353,4790,2305,6486,False 1603 | 76,Se como Jose,57326,1.0 M,4,0.5,1.2,0.0,GAME TRIVIA,43019,4258,2199,1249,6598,False 1604 | 77,فكر ـ Think,56774,100.0 k,4,0.0,0.0,0.0,GAME TRIVIA,50520,2542,1988,445,1276,False 1605 | 78,TopQuiz -Play Quiz & Lottery | Win Money via Paytm,55313,1.0 M,3,0.2,0.5,0.0,GAME TRIVIA,24360,4660,2947,2499,20844,False 1606 | 79,101 Pics: Photo Quiz,54183,5.0 M,4,0.5,1.4,0.0,GAME TRIVIA,41626,3708,2734,1491,4622,False 1607 | 80,Flags and Capitals of the World Quiz,51951,1.0 M,4,3914.8,0.6,0.0,GAME TRIVIA,35876,6791,3549,1463,4270,False 1608 | 81,¿Cuánto sabes de Primaria?,50815,10.0 M,3,0.0,0.0,0.0,GAME TRIVIA,25762,4974,5094,2567,12416,False 1609 | 82,לוגוטסט טריוויה: משחק הסמלים והמותגים הגדול בישראל,50002,500.0 k,4,0.3,0.7,0.0,GAME TRIVIA,41823,4249,1669,589,1669,False 1610 | 83,Cars Logo Quiz HD,49748,5.0 M,4,0.1,0.2,0.0,GAME TRIVIA,31389,6665,4407,2148,5136,False 1611 | 84,Flags of All Countries of the World: Guess-Quiz,48813,5.0 M,4,1.1,2.3,0.0,GAME TRIVIA,32011,7057,3881,2000,3862,False 1612 | 85,90's Quiz Game,47912,500.0 k,4,0.0,0.0,0.0,GAME TRIVIA,40057,4661,2300,347,545,False 1613 | 86,Alphabet Game,46162,5.0 M,4,1.0,1.8,0.0,GAME TRIVIA,28793,7910,3795,1568,4094,False 1614 | 87,Vrai ou Faux ? Le grand Quiz,45788,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,24332,13290,4866,939,2358,False 1615 | 88,Hardest Girl to Get - Kode Keras Cowok dari Cewek,45359,1.0 M,4,0.4,0.8,0.0,GAME TRIVIA,30760,4580,3296,1991,4730,False 1616 | 89,Cuanto Sabes de la Biblia,45126,500.0 k,4,954.5,4.2,0.0,GAME TRIVIA,38933,3912,1284,378,617,False 1617 | 90,Slam,45047,1.0 M,4,0.2,0.4,0.0,GAME TRIVIA,28329,8653,3367,1209,3487,False 1618 | 91,Quiz Planet,44566,1.0 M,3,1.4,3.2,0.0,GAME TRIVIA,24007,8544,4678,1903,5431,False 1619 | 92,아재 능력 고사 : 아재개그와 넌센스퀴즈,44016,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,33405,4766,2253,857,2732,False 1620 | 93,"Geography Quiz - flags, maps & coats of arms",43149,1.0 M,4,0.8,1.9,0.0,GAME TRIVIA,27059,7925,3273,1626,3263,False 1621 | 94,Imagzle Brain test & Quiz Trivia Riddle Smart game,42776,500.0 k,4,0.6,1.6,0.0,GAME TRIVIA,35857,3867,1053,685,1312,False 1622 | 95,AppTrailers,42517,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,24332,8047,3069,1099,5968,False 1623 | 96,Crazy Quiz,41756,500.0 k,4,0.0,0.0,0.0,GAME TRIVIA,26434,10274,3777,419,849,False 1624 | 97,Mozkovna,41520,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,28452,8981,2107,669,1308,False 1625 | 98,Quem quer ser rico?,40744,1.0 M,4,0.1,0.1,0.0,GAME TRIVIA,28555,5809,2539,1169,2669,False 1626 | 99,Carry1st Trivia: Play. Learn. Earn.,40228,1.0 M,4,0.0,0.0,0.0,GAME TRIVIA,31598,3138,1614,767,3109,False 1627 | 100,World Map Quiz,38376,1.0 M,4,1.7,3.3,0.0,GAME TRIVIA,29341,5231,1617,559,1627,False 1628 | 1,كلمات كراش - لعبة تسلية وتحدي من زيتونة,2418119,10.0 M,4,1.9,4.4,0.0,GAME WORD,2115189,109073,68740,31263,93851,False 1629 | 2,Word Cookies!®,2250585,10.0 M,4,0.1,0.2,0.0,GAME WORD,1679256,349509,110139,33769,77909,False 1630 | 3,Words of Wonders: Crossword to Connect Vocabulary,1885400,100.0 M,4,1.5,3.4,0.0,GAME WORD,1457939,204104,82766,37713,102876,False 1631 | 4,Words with Friends Classic: Word Puzzle Challenge,1722914,50.0 M,4,0.0,0.1,0.0,GAME WORD,971880,411449,149162,67898,122523,False 1632 | 5,4 Fotos 1 Palabra,1227499,50.0 M,4,0.4,1.0,0.0,GAME WORD,874832,188710,81957,24555,57442,False 1633 | 6,4 Pics 1 Word,1179329,50.0 M,4,0.3,0.6,0.0,GAME WORD,827203,212916,72158,20014,47036,False 1634 | 7,Word Connect,989128,10.0 M,4,1.4,3.1,0.0,GAME WORD,822940,98085,27173,10857,30072,False 1635 | 8,Wordscapes,973750,50.0 M,4,1.3,3.1,0.0,GAME WORD,782878,86362,36481,20294,47732,False 1636 | 9,WordBrain - Free classic word puzzle game,959675,10.0 M,4,0.0,0.0,0.0,GAME WORD,567896,293661,71260,10616,16239,False 1637 | 10,لعبة كلمة السر : الجزء الثاني,812635,10.0 M,4,0.9,2.0,0.0,GAME WORD,696255,44418,29406,11114,31439,False 1638 | 11,كلمات متقاطعة,776334,10.0 M,4,0.3,0.7,0.0,GAME WORD,646022,57146,31706,10542,30916,False 1639 | 12,وصلة - لعبة كلمات متقاطعة,749320,5.0 M,4,0.4,0.8,0.0,GAME WORD,626300,43123,34484,11904,33506,False 1640 | 13,Words with Friends: Play Fun Word Puzzle Games,736769,10.0 M,4,0.0,0.1,0.0,GAME WORD,448241,128403,56855,32637,70630,False 1641 | 14,Word Snack - Your Picnic with Words,671436,5.0 M,4,0.1,0.3,0.0,GAME WORD,519890,94490,35754,7146,14154,False 1642 | 15,Word search,644092,50.0 M,4,0.0,0.0,0.0,GAME WORD,438288,122199,48502,10315,24785,False 1643 | 16,Wordfeud Free,619037,10.0 M,4,0.1,0.3,0.0,GAME WORD,372307,186153,34938,8682,16954,False 1644 | 17,Draw Something Classic,594298,50.0 M,4,0.0,0.0,0.0,GAME WORD,351126,133461,52620,18611,38479,False 1645 | 18,Word Search,512584,10.0 M,4,0.0,0.0,0.0,GAME WORD,423301,51998,16672,5227,15383,False 1646 | 19,Word Link,501384,50.0 M,4,0.0,0.0,0.0,GAME WORD,366058,57001,26960,10931,40431,False 1647 | 20,Words Story - Addictive Word Game,496119,50.0 M,3,0.1,0.2,0.0,GAME WORD,272448,47916,39085,30303,106365,False 1648 | 21,"Braindom: Tricky Brain Teasers, Test, Riddle Games",487582,10.0 M,4,9.5,23.0,0.0,GAME WORD,412226,28805,13965,6683,25900,False 1649 | 22,TTS Pintar 2021 - Teka Teki Silang Offline,476458,10.0 M,4,0.8,1.6,0.0,GAME WORD,349671,71362,32006,8438,14979,False 1650 | 23,Word Streak-Words With Friends,469540,10.0 M,4,0.1,0.3,0.0,GAME WORD,290381,116449,28401,11911,22396,False 1651 | 24,Word Search,455543,10.0 M,4,0.1,0.3,0.0,GAME WORD,278658,96142,40301,11592,28847,False 1652 | 24,Word Search,455543,10.0 M,4,0.1,0.3,0.0,GAME WORD,261241,79874,29387,6949,13159,False 1653 | 25,4 Bilder 1 Wort,447182,10.0 M,4,0.2,0.4,0.0,GAME WORD,268217,99646,32509,13708,33099,False 1654 | 26,Word Academy,444744,5.0 M,4,0.1,0.3,0.0,GAME WORD,278942,118805,37241,3989,5764,False 1655 | 27,Word Collect - Free Word Games,436327,10.0 M,4,3.1,7.2,0.0,GAME WORD,395758,20443,5961,3503,10659,False 1656 | 28,Word Connect - Word Games Puzzle,427255,10.0 M,4,0.8,1.8,0.0,GAME WORD,339689,43523,20765,6855,16421,False 1657 | 29,Pictoword: Fun Word Games & Offline Brain Game,414385,10.0 M,4,0.2,0.4,0.0,GAME WORD,263839,60130,32687,15192,42536,False 1658 | 30,Word Search,390612,50.0 M,4,0.1,0.1,0.0,GAME WORD,278658,96142,40301,11592,28847,False 1659 | 30,Word Search,390612,50.0 M,4,0.1,0.1,0.0,GAME WORD,261241,79874,29387,6949,13159,False 1660 | 31,Wheel of Fortune: Free Play,390247,10.0 M,4,0.3,0.8,0.0,GAME WORD,294829,41379,21513,10462,22062,False 1661 | 32,Word Crack,385276,10.0 M,3,0.3,0.6,0.0,GAME WORD,177110,86666,32643,15452,73403,False 1662 | 33,4 Images 1 Mot,383907,10.0 M,4,0.5,1.1,0.0,GAME WORD,235989,89750,31642,9154,17370,False 1663 | 34,4 фотки 1 слово,373807,10.0 M,4,0.2,0.4,0.0,GAME WORD,278606,40890,19026,8084,27200,False 1664 | 35,Wordie: Guess the Word,362929,10.0 M,4,0.0,0.1,0.0,GAME WORD,275235,47874,18870,5187,15761,False 1665 | 36,Words With Friends 2 - Board Games & Word Puzzles,362457,10.0 M,3,38.5,40.8,0.0,GAME WORD,191463,65275,29507,22567,53642,False 1666 | 37,Ruzzle Free,356922,10.0 M,4,0.1,0.2,0.0,GAME WORD,220533,74021,26076,9155,27135,False 1667 | 38,Kelimelik,354330,5.0 M,4,0.3,0.7,0.0,GAME WORD,254242,54793,18181,5871,21241,False 1668 | 39,لعبة كلمة السر,327444,10.0 M,4,0.0,0.1,0.0,GAME WORD,284875,15522,10304,3358,13383,False 1669 | 40,Найди слова,321011,10.0 M,4,0.1,0.3,0.0,GAME WORD,259952,33889,10369,4149,12649,False 1670 | 41,Pro des Mots,316607,10.0 M,4,0.7,1.6,0.0,GAME WORD,237255,54313,12947,3620,8468,False 1671 | 42,Word search puzzles game,313263,10.0 M,4,1.4,3.0,0.0,GAME WORD,280133,16345,6318,2661,7803,False 1672 | 43,Garden of Words - Word game,304117,10.0 M,4,0.7,1.5,0.0,GAME WORD,177133,67223,25574,10696,23488,False 1673 | 44,Word Crossy - A crossword game,293234,5.0 M,4,0.0,0.0,0.0,GAME WORD,174650,58124,28261,10792,21405,False 1674 | 45,Word Search Sea: Unscramble words,290063,10.0 M,4,1.3,2.7,0.0,GAME WORD,247415,22317,7612,3036,9680,False 1675 | 46,4 Immagini 1 Parola,287827,10.0 M,4,0.1,0.2,0.0,GAME WORD,188715,59303,19724,5646,14436,False 1676 | 47,Words Crush: Hidden Words!,283889,5.0 M,4,0.0,0.0,0.0,GAME WORD,194268,61126,18046,3469,6978,False 1677 | 48,Fill-The-Words - word search puzzle,277485,10.0 M,4,0.3,0.6,0.0,GAME WORD,224023,28333,9358,4014,11754,False 1678 | 49,Palabras Cruz,264230,10.0 M,4,0.4,1.1,0.0,GAME WORD,217546,20368,8725,4167,13422,False 1679 | 50,آمیرزا,248190,1.0 M,4,5.7,11.4,0.0,GAME WORD,220987,10593,4765,2431,9412,False 1680 | 51,Word Stacks,245709,10.0 M,4,0.6,1.4,0.0,GAME WORD,206426,17793,7608,4503,9376,False 1681 | 52,Word Search Quest - Free Word Puzzle Game,236235,10.0 M,4,4.2,8.8,0.0,GAME WORD,186167,30988,8397,2702,7978,False 1682 | 53,Word Yard - Fun with Words,235887,1.0 M,4,0.4,0.9,0.0,GAME WORD,185227,31473,10830,2645,5709,False 1683 | 54,Word Trip,232803,5.0 M,4,1.9,3.7,0.0,GAME WORD,175261,35702,14082,3142,4614,False 1684 | 55,Word Cross,228204,10.0 M,4,0.2,0.5,0.0,GAME WORD,181563,21290,9942,4038,11368,False 1685 | 56,Heads Up!,221349,10.0 M,3,0.1,0.3,0.0,GAME WORD,113346,23864,14334,9889,59914,False 1686 | 57,Слова из Слова,218894,5.0 M,4,0.9,1.9,0.0,GAME WORD,180588,21920,8357,2413,5614,False 1687 | 58,Wordington: Words & Design,218842,10.0 M,4,541.1,7.2,0.0,GAME WORD,130283,43254,23231,8317,13755,False 1688 | 59,Wort Guru,214916,5.0 M,4,0.6,1.3,0.0,GAME WORD,161430,31740,8811,3932,9000,False 1689 | 60,What Am I? – Family Charades (Guess The Word),214864,10.0 M,4,0.2,0.4,0.0,GAME WORD,132364,28059,18579,9050,26810,False 1690 | 61,Aplasta Palabras:Juego de Palabras Gratis sin wifi,214313,10.0 M,4,17.1,5556.2,0.0,GAME WORD,189623,16387,4835,935,2530,False 1691 | 62,Stop - Categories Word Game,210662,10.0 M,3,1646.0,2.7,0.0,GAME WORD,84777,34401,27058,17819,46604,False 1692 | 63,Kelime Gezmece,191924,10.0 M,4,0.9,2.3,0.0,GAME WORD,154792,16507,5190,2903,12529,False 1693 | 64,Immortal Taoists - Nieli has arrived,182995,1.0 M,4,1.9,3.3,0.0,GAME WORD,129657,29055,10347,3745,10188,False 1694 | 65,Jalebi - A Desi Adda With Ludo Snakes & Ladders,182761,10.0 M,4,1.4,2.8,0.0,GAME WORD,127393,20564,11388,5948,17466,False 1695 | 66,Word Find - Word Connect Free Offline Word Games,181110,10.0 M,4,2.6,5.7,0.0,GAME WORD,142345,22175,8955,2286,5347,False 1696 | 67,Classic Words Solo,178241,10.0 M,4,0.6,1.2,0.0,GAME WORD,117919,40925,10450,2802,6142,False 1697 | 68,Draw and Guess Online,170069,1.0 M,4,0.1,0.2,0.0,GAME WORD,121027,17716,9108,5598,16616,False 1698 | 69,Words Crush: Hidden Themes!,169669,1.0 M,4,15.1,23.0,0.0,GAME WORD,112145,39957,13125,1904,2536,False 1699 | 70,Crossword Jam,161543,5.0 M,4,0.0,0.1,0.0,GAME WORD,131821,16783,6607,2394,3934,False 1700 | 71,Word Search,161284,10.0 M,4,1.0,2.2,0.0,GAME WORD,106127,23103,11207,5583,15262,False 1701 | 71,Word Search,161284,10.0 M,4,1.0,2.2,0.0,GAME WORD,120322,18644,5765,1708,3417,False 1702 | 72,2 Pictures 1 Word,160717,5.0 M,4,0.1,0.2,0.0,GAME WORD,130759,11569,5899,3304,9183,False 1703 | 73,Word Crack Mix 2,159344,5.0 M,4,0.0,0.0,0.0,GAME WORD,81269,41668,14268,5012,17124,False 1704 | 74,Word Domination,157519,5.0 M,4,0.9,1.4,0.0,GAME WORD,95422,29899,11554,6611,14031,False 1705 | 75,Word Crush,157049,1.0 M,4,3.6,8.3,0.0,GAME WORD,115329,28558,7955,1715,3489,False 1706 | 76,اشبكها - لعبة تسلية وتفكير,153454,1.0 M,4,0.6,1.3,0.0,GAME WORD,129103,9202,6664,2607,5875,False 1707 | 77,Szó Piknik - Word Snack,153087,5.0 M,4,0.2,0.5,0.0,GAME WORD,120977,15730,6931,2476,6971,False 1708 | 78,كلمات متقاطعة من زيتونة - رشفة وصلة,151046,1.0 M,4,0.1,0.2,0.0,GAME WORD,124092,10387,7555,2178,6832,False 1709 | 79,Word Surf - Word Game,150279,5.0 M,4,3.3,5.9,0.0,GAME WORD,121012,19182,3828,1578,4677,False 1710 | 80,Word Search,149858,10.0 M,4,0.0,0.1,0.0,GAME WORD,106127,23103,11207,5583,15262,False 1711 | 80,Word Search,149858,10.0 M,4,0.0,0.1,0.0,GAME WORD,120322,18644,5765,1708,3417,False 1712 | 81,WordWhizzle Search,149553,1.0 M,4,0.0,0.1,0.0,GAME WORD,108634,29499,8257,1406,1755,False 1713 | 82,Evil Apples: You Against Humanity!,149422,5.0 M,4,0.2,0.5,0.0,GAME WORD,88307,24693,12946,6798,16675,False 1714 | 83,Word Chums,146848,1.0 M,4,0.2,0.3,0.0,GAME WORD,115040,22564,3627,1508,4107,False 1715 | 84,Word Trek - Word Brain streak - hand made puzzles,143930,5.0 M,4,0.0,0.0,0.0,GAME WORD,94662,31667,11131,2545,3923,False 1716 | 85,Teka Teki Silang,136542,5.0 M,4,0.0,0.0,0.0,GAME WORD,82242,30159,18219,2815,3104,False 1717 | 86,7 Little Words: A fun twist on crossword puzzles,130077,1.0 M,4,0.1,0.1,0.0,GAME WORD,107379,11378,3489,2769,5059,False 1718 | 87,Charades!,129132,10.0 M,4,0.1,0.2,0.0,GAME WORD,87481,19612,7874,3114,11048,False 1719 | 88,Escape Room: Mystery Word,127293,10.0 M,4,0.0,0.0,0.0,GAME WORD,88424,9776,7448,5279,16363,False 1720 | 89,Word Swipe,127030,10.0 M,4,0.3,0.8,0.0,GAME WORD,107638,9411,3632,1626,4720,False 1721 | 90,Wordalot - Picture Crossword,126774,5.0 M,4,0.0,0.1,0.0,GAME WORD,91833,23213,6258,1839,3628,False 1722 | 91,Zgadnij co to?,124219,1.0 M,4,0.0,0.0,0.0,GAME WORD,94486,19855,5828,1249,2799,False 1723 | 92,Piknik Słowo - Word Snack,123095,1.0 M,4,0.1,0.2,0.0,GAME WORD,97069,17257,5147,1266,2354,False 1724 | 93,Word Life - Connect crosswords puzzle,121222,10.0 M,4,4.6,10.4,0.0,GAME WORD,74343,25022,11196,3811,6848,False 1725 | 94,Wordox – Free multiplayer word game,120533,1.0 M,4,0.0,0.0,0.0,GAME WORD,74096,21404,10592,4736,9702,False 1726 | 95,4 Fotos 1 Palavra,115437,5.0 M,4,0.2,0.5,0.0,GAME WORD,85169,16622,6802,1848,4994,False 1727 | 96,زوايا - لعبة ستحرك زوايا عقلك,112408,1.0 M,4,0.9,1.8,0.0,GAME WORD,101036,3607,3237,1229,3297,False 1728 | 97,Bible Word Puzzle - Free Bible Word Games,111595,1.0 M,4,0.9,2.3,0.0,GAME WORD,88950,14856,4297,1385,2103,False 1729 | 98,Scrabble® GO - New Word Game,110723,10.0 M,4,0.9,1.9,0.0,GAME WORD,64184,18332,9385,6688,12132,False 1730 | 99,Word Nut: Word Puzzle Games & Crosswords,109530,5.0 M,4,1.9,4.1,0.0,GAME WORD,99987,4766,1469,953,2353,False 1731 | 100,Pinturillo 2,108917,10.0 M,3,1.1,2.5,0.0,GAME WORD,50813,16480,11825,6166,23631,False 1732 | -------------------------------------------------------------------------------- /machine learning/deportes-ml.joblib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasmoy-dev/Curso-de-Python/a0168b17c73a7abbf9488bc9c912ca8357625c68/machine learning/deportes-ml.joblib -------------------------------------------------------------------------------- /machine learning/deportes.csv: -------------------------------------------------------------------------------- 1 | genero,edad,deporte 2 | 1,21,Football 3 | 1,24,Football 4 | 1,25,Football 5 | 1,26,Volleyball 6 | 1,29,Volleyball 7 | 1,30,Volleyball 8 | 1,31,Basket 9 | 1,34,Basket 10 | 1,37,Basket 11 | 2,20,Hockey 12 | 2,22,Hockey 13 | 2,24,Hockey 14 | 2,26,Running 15 | 2,27,Running 16 | 2,30,Running 17 | 2,33,Basket 18 | 2,34,Basket 19 | 2,37,Basket --------------------------------------------------------------------------------