From b7fe5de12be5c9f02adeedba45befee751ea68be Mon Sep 17 00:00:00 2001 From: Gareth Coles Date: Mon, 14 May 2018 20:42:41 +0100 Subject: Migration runner and migrations (#69) * Migration runner and migrations * Remove demo wiki data * [Staff] Table management pages * Fix weird travis build omission * Address review and comments by @Volcyy * [Tables] Fix pagination * Move table definitions to new file with nameduple * Linting * Address lemon's review comments * Address @Volcyy's review * Address lemon's review * Update search placeholder * Search by key now available --- .travis.yml | 2 +- gunicorn_config.py | 21 +- pysite/constants.py | 1 + pysite/database.py | 113 +- pysite/database/table_init/hiphopify_namelist.json | 5198 -------------------- pysite/migrations/__init__.py | 0 pysite/migrations/runner.py | 95 + pysite/migrations/tables/__init__.py | 0 .../tables/hiphopify_namelist/__init__.py | 0 .../tables/hiphopify_namelist/initial_data.json | 5198 ++++++++++++++++++++ pysite/migrations/tables/wiki/__init__.py | 0 pysite/migrations/tables/wiki/v1.py | 7 + pysite/route_manager.py | 9 +- pysite/tables.py | 89 + pysite/views/staff/index.py | 21 +- pysite/views/staff/tables/__init__.py | 0 pysite/views/staff/tables/edit.py | 110 + pysite/views/staff/tables/index.py | 13 + pysite/views/staff/tables/table.py | 63 + pysite/views/staff/tables/table_bare.py | 30 + pysite/views/wiki/special/__init__.py | 1 - static/style.css | 18 + templates/staff/staff.html | 22 +- templates/staff/tables/edit.html | 51 + templates/staff/tables/index.html | 32 + templates/staff/tables/table.html | 165 + 26 files changed, 5939 insertions(+), 5320 deletions(-) delete mode 100644 pysite/database/table_init/hiphopify_namelist.json create mode 100644 pysite/migrations/__init__.py create mode 100644 pysite/migrations/runner.py create mode 100644 pysite/migrations/tables/__init__.py create mode 100644 pysite/migrations/tables/hiphopify_namelist/__init__.py create mode 100644 pysite/migrations/tables/hiphopify_namelist/initial_data.json create mode 100644 pysite/migrations/tables/wiki/__init__.py create mode 100644 pysite/migrations/tables/wiki/v1.py create mode 100644 pysite/tables.py create mode 100644 pysite/views/staff/tables/__init__.py create mode 100644 pysite/views/staff/tables/edit.py create mode 100644 pysite/views/staff/tables/index.py create mode 100644 pysite/views/staff/tables/table.py create mode 100644 pysite/views/staff/tables/table_bare.py create mode 100644 templates/staff/tables/edit.html create mode 100644 templates/staff/tables/index.html create mode 100644 templates/staff/tables/table.html diff --git a/.travis.yml b/.travis.yml index 4e2516be..15d4e95e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ install: - pipenv sync --dev --three script: - pipenv run lint - - python gunicorn_config.py + - pipenv run python gunicorn_config.py - pipenv run test - pipenv run coveralls after_success: diff --git a/gunicorn_config.py b/gunicorn_config.py index c09bee6a..00e5ccf0 100644 --- a/gunicorn_config.py +++ b/gunicorn_config.py @@ -1,15 +1,18 @@ -import html import re +from pysite.migrations.runner import run_migrations + STRIP_REGEX = re.compile(r"<[^<]+?>") WIKI_TABLE = "wiki" -def when_ready(server=None): +def when_ready(server=None, output_func=None): """ server hook that only runs when the gunicorn master process loads """ if server: output = server.log.info + elif output_func: + output = output_func else: output = print @@ -26,16 +29,4 @@ def when_ready(server=None): tables = ", ".join([f"{table}" for table in created]) output(f"Created the following tables: {tables}") - # Init the tables that require initialization - initialized = db.init_tables() - if initialized: - tables = ", ".join([f"{table} ({count} items)" for table, count in initialized.items()]) - output(f"Initialized the following tables: {tables}") - - output("Adding plain-text version of any wiki articles that don't have one...") - - for article in db.pluck(WIKI_TABLE, "html", "text", "slug"): - if "text" not in article: - article["text"] = html.unescape(STRIP_REGEX.sub("", article["html"]).strip()) - - db.insert(WIKI_TABLE, article, conflict="update") + run_migrations(db, output=output) diff --git a/pysite/constants.py b/pysite/constants.py index 49882030..cb8dad62 100644 --- a/pysite/constants.py +++ b/pysite/constants.py @@ -28,6 +28,7 @@ HELPER_ROLE = "267630620367257601" CONTRIB_ROLE = "295488872404484098" ALL_STAFF_ROLES = (OWNER_ROLE, ADMIN_ROLE, MODERATOR_ROLE, DEVOPS_ROLE) +TABLE_MANAGER_ROLES = (OWNER_ROLE, ADMIN_ROLE, DEVOPS_ROLE) EDITOR_ROLES = ALL_STAFF_ROLES + (HELPER_ROLE, CONTRIB_ROLE) SERVER_ID = 267624335836053506 diff --git a/pysite/database.py b/pysite/database.py index b9ed5b89..2fb10598 100644 --- a/pysite/database.py +++ b/pysite/database.py @@ -1,6 +1,3 @@ -# coding=utf-8 -import html -import json import logging import os from typing import Any, Callable, Dict, Iterator, List, Optional, Union @@ -11,18 +8,7 @@ from rethinkdb.ast import RqlMethodQuery, Table, UserError from rethinkdb.net import DefaultConnection from werkzeug.exceptions import ServiceUnavailable -from pysite.constants import DEBUG_MODE - -ALL_TABLES = { - # table: primary_key - "hiphopify": "user_id", - "hiphopify_namelist": "name", - "oauth_data": "id", - "tags": "tag_name", - "users": "user_id", - "wiki": "slug", - "wiki_revisions": "id" -} +from pysite.tables import TABLES STRIP_REGEX = re.compile(r"<[^<]+?>") WIKI_TABLE = "wiki" @@ -47,83 +33,21 @@ class RethinkDB: except rethinkdb.RqlRuntimeError: self.log.debug(f"Database found: '{self.database}'") - if DEBUG_MODE: - # Create any table that doesn't exist - created = self.create_tables() - if created: - tables = ", ".join([f"{table}" for table in created]) - self.log.debug(f"Created the following tables: {tables}") - - # Init the tables that require initialization - initialized = self.init_tables() - if initialized: - tables = ", ".join([f"{table} ({count} items)" for table, count in initialized.items()]) - self.log.debug(f"Initialized the following tables: {tables}") - - # Upgrade wiki articles - for article in self.pluck(WIKI_TABLE, "html", "text", "slug"): - if "text" not in article: - article["text"] = html.unescape(STRIP_REGEX.sub("", article["html"]).strip()) - - self.insert(WIKI_TABLE, article, conflict="update") - def create_tables(self) -> List[str]: """ - Creates whichever tables exist in the ALL_TABLES + Creates whichever tables exist in the TABLES constant if they don't already exist in the database. :return: a list of the tables that were created. """ created = [] - for table, primary_key in ALL_TABLES.items(): - if self.create_table(table, primary_key): + for table, obj in TABLES.items(): + if self.create_table(table, obj.primary_key): created.append(table) return created - def init_tables(self) -> Dict[str, int]: - """ - If the table is empty, and there is a corresponding JSON file with data, - then we fill the table with the data in the JSON file. - - The JSON files are contained inside of pysite/database/table_init/ - :return: - """ - - self.log.debug("Initializing tables") - initialized = {} - - for table, primary_key in ALL_TABLES.items(): - - self.log.trace(f"Checking if {table} is empty.") - - # If the table is empty - if not self.pluck(table, primary_key): - - self.log.trace(f"{table} appears to be empty. Checking if there is a json file at {os.getcwd()}" - f"/pysite/database/table_init/{table}.json") - - # And a corresponding JSON file exists - if os.path.isfile(f"pysite/database/table_init/{table}.json"): - - # Load in all the data in that file. - with open(f"pysite/database/table_init/{table}.json") as json_file: - table_data = json.load(json_file) - - self.log.trace(f"Loading the json file into the table. " - f"The json file contains {len(table_data)} items.") - - for row in table_data: - self.insert( - table, - row - ) - - initialized[table] = len(table_data) - - return initialized - def get_connection(self, connect_database: bool = True) -> DefaultConnection: """ Grab a connection to the RethinkDB server, optionally without selecting a database @@ -267,12 +191,12 @@ class RethinkDB: :return: The RethinkDB table object for the table """ - if table_name not in ALL_TABLES: - self.log.warning(f"Table not declared in database.py: {table_name}") + if table_name not in TABLES: + self.log.warning(f"Table not declared in tables.py: {table_name}") return rethinkdb.table(table_name) - def run(self, query: RqlMethodQuery, *, new_connection: bool = False, + def run(self, query: Union[RqlMethodQuery, Table], *, new_connection: bool = False, connect_database: bool = True, coerce: type = None) -> Union[rethinkdb.Cursor, List, Dict, object]: """ Run a query using a table object obtained from a call to `query()` @@ -467,10 +391,16 @@ class RethinkDB: :return: A list of matching documents; may be empty if no matches were made """ - return self.run( # pragma: no cover - self.query(table_name).get_all(*keys, index=index), - coerce=list - ) + if keys: + return self.run( # pragma: no cover + self.query(table_name).get_all(*keys, index=index), + coerce=list + ) + else: + return self.run( + self.query(table_name), + coerce=list + ) def insert(self, table_name: str, *objects: Dict[str, Any], durability: str = "hard", @@ -480,7 +410,7 @@ class RethinkDB: [Dict[str, Any], Dict[str, Any]], # ...takes two dicts with string keys and any values... Dict[str, Any] # ...and returns a dict with string keys and any values ] - ] = "error") -> Union[List, Dict]: # flake8: noqa + ] = "error") -> Dict[str, Any]: # flake8: noqa """ Insert an object or a set of objects into a table @@ -492,17 +422,14 @@ class RethinkDB: you can also provide your own function in order to handle conflicts yourself. If you do this, the function should take two arguments (the old document and the new one), and return a single document to replace both. - :return: A list of changes if `return_changes` is True; a dict detailing the operations run otherwise + :return: A dict detailing the operations run """ query = self.query(table_name).insert( objects, durability=durability, return_changes=return_changes, conflict=conflict ) - if return_changes: - return self.run(query, coerce=list) - else: - return self.run(query, coerce=dict) + return self.run(query, coerce=dict) def map(self, table_name: str, func: Callable): """ diff --git a/pysite/database/table_init/hiphopify_namelist.json b/pysite/database/table_init/hiphopify_namelist.json deleted file mode 100644 index 6d90a4a2..00000000 --- a/pysite/database/table_init/hiphopify_namelist.json +++ /dev/null @@ -1,5198 +0,0 @@ -[ - { - "name": "100 Kila", - "image_url": "http://hotnews.bg/uploads/tinymce/w09/100-%D0%BA%D0%B8%D0%BB%D0%B0.jpg" - }, - { - "name": "100s", - "image_url": "http://images.complex.com/complex/image/upload/t_article_image/nzwte8lxj3p1orqf5yrm.jpg" - }, - { - "name": "12 Gauge", - "image_url": "http://cps-static.rovicorp.com/3/JPG_250/MI0001/358/MI0001358517.jpg" - }, - { - "name": "2 Chainz", - "image_url": "http://thesource.com/wp-content/uploads/2016/01/2-Chainz-rapper.jpg" - }, - { - "name": "2 Pistols", - "image_url": "http://images3.wikia.nocookie.net/__cb20130521104737/rap/images/0/0c/2p.jpg" - }, - { - "name": "2$ Fabo", - "image_url": "http://assets.audiomack.com/2-fabo/355f3587905bb4e2bc936f76cd64cef3.jpeg" - }, - { - "name": "21 Savage", - "image_url": "https://nyppagesix.files.wordpress.com/2018/04/21-savage-amber-rose.jpg" - }, - { - "name": "2Mex", - "image_url": "https://www.ballerstatus.com/wp-content/uploads/2016/05/2mex.jpg" - }, - { - "name": "360", - "image_url": "http://resources1.news.com.au/images/2012/07/19/1226428/465937-rapper-360-hit.jpg" - }, - { - "name": "40 Glocc", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2014/06/40glocc.jpg" - }, - { - "name": "50 Cent", - "image_url": "http://www.michellehenry.fr/rapper_50_cent.jpg" - }, - { - "name": "6lack", - "image_url": "http://electriccircus.co/home/wp-content/uploads/2017/01/black.jpg" - }, - { - "name": "6ix9ine", - "image_url": "http://thesource.com/wp-content/uploads/2018/04/Screen-Shot-2018-04-11-at-8.51.56-AM.png" - }, - { - "name": "The 6th Letter", - "image_url": "http://hw-img.datpiff.com/m5dadf91/The_6th_Letter_What_The_F_the_Mixtape-front-large.jpg" - }, - { - "name": "9th Wonder", - "image_url": "http://www.hiphopvideoworld.com/wp-content/uploads/2016/06/Talib-Kweli-ft.-9th-Wonder-Rapsody-Life-Ahead-Of-Me.jpg" - }, - { - "name": "Andre 3000", - "image_url": "http://1.bp.blogspot.com/-1TAyMhARS8s/UaWDLXzZzdI/AAAAAAAACDg/NOToaM0g_as/s1600/80999804-e1369795094594.jpg" - }, - { - "name": "Big Boi", - "image_url": "http://redalertpolitics.com/files/2013/01/BigBoi.jpg" - }, - { - "name": "A.CHAL", - "image_url": "http://images.thissongissick.com/c_fill-f_auto-g_faces-h_630-w_1200-v1496443961-this-song-is-sick-media-image-a-chal-press-shot-1496443960836-png.jpg" - }, - { - "name": "A+", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/72/Guru_(rapper).jpg" - }, - { - "name": "A-Q", - "image_url": "http://www.eurweb.com/wp-content/uploads/2011/05/qtip.jpg" - }, - { - "name": "Arabian Prince", - "image_url": "https://68.media.tumblr.com/3938a8b6b11d462ba95807666e47f778/tumblr_mvjf8kRjCx1qzx6s2o1_500.jpg" - }, - { - "name": "Ab-Soul", - "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2014/05/ab-soul.jpg" - }, - { - "name": "A Boogie wit da Hoodie", - "image_url": "https://vergecampus.com/wp-content/uploads/2018/04/Screen-Shot-2018-04-09-at-9.47.46-PM-1024x594.png" - }, - { - "name": "Abstract Rude", - "image_url": "http://media1.fdncms.com/orlando/imager/u/original/2554165/20170112_abstract_rude_5.jpg" - }, - { - "name": "Ace Hood", - "image_url": "http://www.aceshowbiz.com/images/news/00024363.jpg" - }, - { - "name": "Aceyalone", - "image_url": "http://images.rapgenius.com/4f38e699f6f80a3255420adf5e98a0a8.600x600x1.jpg" - }, - { - "name": "Action Bronson", - "image_url": "http://alloveralbany.com/images/rapper_Action_Bronson.jpg" - }, - { - "name": "Adam Saleh", - "image_url": "http://naibuzz.com/wp-content/uploads/2016/05/adam-saleh.jpg" - }, - { - "name": "Aesop Rock", - "image_url": "https://static-secure.guim.co.uk/sys-images/Guardian/Pix/pictures/2014/5/5/1399294322119/Rapper-Aesop-Rock-014.jpg" - }, - { - "name": "Afrika Bambaataa", - "image_url": "http://imageslogotv-a.akamaihd.net/uri/mgid:uma:image:logotv.com:11564172" - }, - { - "name": "Afroman", - "image_url": "http://www.irishnews.com/picturesarchive/irishnews/irishnews/2017/01/10/130012018-8220bff2-983c-48f3-ae57-276cab82f911.png" - }, - { - "name": "Afu-Ra", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/20120504_-_Afu-Ra.jpg/220px-20120504_-_Afu-Ra.jpg" - }, - { - "name": "Agallah", - "image_url": "http://1.bp.blogspot.com/-jJBR6f4cBwI/ThQ-NxjTffI/AAAAAAAABF4/Oe2n71hDmtM/s320/8%2Boff%2Bagallah.jpg" - }, - { - "name": "Ahmad", - "image_url": "http://images.rapgenius.com/38af31ae445f8c6ac6ce2a3b21a4605b.1000x684x1.jpg" - }, - { - "name": "Ajs Nigrutin", - "image_url": "http://vignette2.wikia.nocookie.net/rap/images/0/0f/Medium_ajs-nigrutin.jpg/revision/latest" - }, - { - "name": "Akala", - "image_url": "http://assets.londonist.com/uploads/2015/11/akala.jpg" - }, - { - "name": "Akinyele", - "image_url": "http://www.hiphopfind.com/upload/bukmtqhhlj.jpg" - }, - { - "name": "Akir", - "image_url": "http://www.iamhiphopmagazine.com/wp-content/uploads/2013/05/Akir.jpg" - }, - { - "name": "Akon", - "image_url": "http://img.mi9.com/male-celebrities/5077/akon-rapper-2012_1920x1200_96228.jpg" - }, - { - "name": "The Alchemist", - "image_url": "http://4.bp.blogspot.com/_nF-S6ZVuhd4/SuESHfU70_I/AAAAAAAAABs/s0txyMZP-Ps/s400/alc.jpg" - }, - { - "name": "Ali Vegas", - "image_url": "https://s3-us-west-2.amazonaws.com/maven-user-photos/f0f13b1e-f33a-4136-bc5a-6a0f09dd591f" - }, - { - "name": "Alpha", - "image_url": "https://images.rapgenius.com/9f2ba7bd713179faa8fe8968969f82eb.1000x667x1.jpg" - }, - { - "name": "AMG", - "image_url": "http://en.academic.ru/pictures/enwiki/65/Amg_rapper.jpg" - }, - { - "name": "Amil", - "image_url": "http://3.bp.blogspot.com/_RaOrchOImw8/SxSVt5z1auI/AAAAAAAAbeQ/sZ7xLZjOmco/s1600/Amil.jpg" - }, - { - "name": "Aminé", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Amine_performing_on_Jimmy_Fallon_in_2017_%28crop%29.png/1200px-Amine_performing_on_Jimmy_Fallon_in_2017_%28crop%29.png" - }, - { - "name": "Amir Obè", - "image_url": "http://www.brooklynvegan.com/files/2016/03/Amir-Obe-Press-2015-billboard-650-e1457450170547.jpg" - }, - { - "name": "Ampichino", - "image_url": "http://ecx.images-amazon.com/images/I/51rPUuz7FTL._SL500_AA280_.jpg" - }, - { - "name": "Anderson .Paak", - "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2017/01/Chance-The-Rapper-Anderson-.Paak_.jpg" - }, - { - "name": "André 3000", - "image_url": "http://1.bp.blogspot.com/-1TAyMhARS8s/UaWDLXzZzdI/AAAAAAAACDg/NOToaM0g_as/s1600/80999804-e1369795094594.jpg" - }, - { - "name": "Andre Nickatina", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-andre-nickatina-singer-man-star.jpg" - }, - { - "name": "Andy Mineo", - "image_url": "http://media-cache-ec0.pinimg.com/736x/8c/fa/7a/8cfa7aebe58f9bc08a140cc571d62723.jpg" - }, - { - "name": "Angel Haze", - "image_url": "http://www.trbimg.com/img-508ac7c2/turbine/la-et-ms-fall-in-love-with-angel-haze-20121025-003/600" - }, - { - "name": "Angie Martinez", - "image_url": "http://www.missinfo.tv/wp-content/uploads/2014/03/yg-angie-martinez.png" - }, - { - "name": "Ant", - "image_url": "http://static.vibe.com/files/article_images/yg-addie.jpg" - }, - { - "name": "Ant Banks", - "image_url": "http://www.rapmusicguide.com/amass/images/inventory/2415/Ant%20Banks%20-%20Big%20Thangs.jpg" - }, - { - "name": "Antoinette", - "image_url": "http://static.squarespace.com/static/520ed800e4b0229123208764/521febeae4b011f034449849/521febebe4b0b42980e39d2d/1377823723826/whostheboss.jpg" - }, - { - "name": "Anybody Killa", - "image_url": "http://cdn.ticketfly.com/i/00/01/38/13/01-atxl1.png" - }, - { - "name": "Apache", - "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:4554653" - }, - { - "name": "Apathy", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1f/Apathy_rapper.jpg" - }, - { - "name": "Arin Hanson", - "image_url": "https://i.redditmedia.com/WE_gR0aOODE9WLF-83188AYG9Rd2QknnezyMyKVv_q0.jpg" - }, - { - "name": "A$AP Ferg", - "image_url": "http://media.gettyimages.com/photos/rapper-aap-ferg-performs-in-concert-at-austin-music-hall-on-february-picture-id508118894" - }, - { - "name": "A$AP Nast", - "image_url": "https://i1.wp.com/hypebeast.com/image/2017/02/asap-nast-calabasas-collection-video-0-1.jpg" - }, - { - "name": "A$AP Rocky", - "image_url": "http://3.bp.blogspot.com/-4ks0l9W_v9w/T_H3jtPbI-I/AAAAAAACePQ/9fbnSjU60zE/s1600/Rapper+A$AP+Rocky.jpg" - }, - { - "name": "A$AP Yams", - "image_url": "http://cdn.chartattack.com/wp-content/uploads/2015/01/asap-yams.jpg" - }, - { - "name": "A$ton Matthews", - "image_url": "http://hivesociety.com/wp-content/uploads/2014/07/Aston004.jpg" - }, - { - "name": "Asher Roth", - "image_url": "http://www.streetgangs.com/wp-content/uploads/2010/08/asher-roth.jpg" - }, - { - "name": "Astronautalis", - "image_url": "http://jacksonville.com/sites/default/files/imagecache/superphoto/photos/blogs/141/13358_203735570707_32280295707_4512309_5261114_n.jpg" - }, - { - "name": "Awol One", - "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/fl_lossy,pg_1,q_auto/lqiqtknfvukvwx4ki4te.jpg" - }, - { - "name": "Awkwafina", - "image_url": "http://media3.s-nbcnews.com/i/newscms/2014_35/635111/awkwafina_06_00cd08f4bbc01bf20145954bf5e97fc0.jpg" - }, - { - "name": "AZ", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/76/Az-03.jpg" - }, - { - "name": "Azealia Banks", - "image_url": "http://i.huffpost.com/gen/920953/images/o-RAPPER-AZEALIA-BANKS-facebook.jpg" - }, - { - "name": "Big Daddy Kane", - "image_url": "http://images.rapgenius.com/30a5d7f5135fdf9124beff6834884ff8.640x773x1.jpg" - }, - { - "name": "Busta Rhymes", - "image_url": "http://newsbite.it/public/images/articles/busta-drake.jpg" - }, - { - "name": "B-Legit", - "image_url": "http://cps-static.rovicorp.com/3/JPG_500/MI0003/729/MI0003729154.jpg" - }, - { - "name": "B-Real", - "image_url": "http://www3.pictures.zimbio.com/pc/Rapper+B+Real+Cypress+Hill+outside+Beso+Hollywood+sklqv7IPKMfl.jpg" - }, - { - "name": "B.G.", - "image_url": "http://1.bp.blogspot.com/-L8lASsCAFzo/Ve46XOQJynI/AAAAAAAAJOw/zJ6vIxtAbrs/s400/BG-In-Prison-2015.jpg" - }, - { - "name": "B.G. Knocc Out", - "image_url": "https://escobar300.files.wordpress.com/2013/08/b-g-knocc-out.png" - }, - { - "name": "B.o.B", - "image_url": "http://www4.pictures.zimbio.com/gi/B+o+B+rapper+BET+Hip+Hop+Awards+2010+Arrivals+bQ93QLw6t05l.jpg" - }, - { - "name": "Baby Bash", - "image_url": "http://ww2.hdnux.com/photos/24/26/14/5333761/5/960x540.jpg" - }, - { - "name": "Baby Boy da Prince", - "image_url": "http://www.rapartists.com/_files/pictures/full/1924_baby_boy_da_prince_u03.jpg" - }, - { - "name": "Baby D", - "image_url": "http://cdn.straightfromthea.com/wp-content/uploads/2008/03/babyd2.jpg" - }, - { - "name": "Bad Azz", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2015/10/Bad-Azz_10-08-2015.jpg" - }, - { - "name": "Badshah", - "image_url": "http://freehdwallpapersz.com/wp-content/uploads/2016/06/badshah-rapper-wallpaper.jpg" - }, - { - "name": "Baeza", - "image_url": "https://40.media.tumblr.com/bcb78b58c6c7a906342772115424c983/tumblr_mhpekhIOKd1rily04o1_500.jpg" - }, - { - "name": "Bahamadia", - "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2015/08/CS1700455-02A-BIG.jpg" - }, - { - "name": "Baka Not Nice", - "image_url": "http://rapradar.com/wp-content/uploads/2015/05/baka.jpg" - }, - { - "name": "Bang Yong-guk", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-bang-yong-guk-dance-song-hip-hop.jpg" - }, - { - "name": "Bangladesh", - "image_url": "http://www.nodfactor.com/wp-content/uploads/2010/04/bangladesh_0.jpg" - }, - { - "name": "Bas", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0004/032/MI0004032446.jpg" - }, - { - "name": "Battlecat", - "image_url": "https://mediaanarchist.files.wordpress.com/2013/07/7995104660_aeda73b31f_z.jpg" - }, - { - "name": "Beanie Sigel", - "image_url": "http://hustlebunny.com/content/2012/07/beanie-sigel-rapper.jpg" - }, - { - "name": "Becky G", - "image_url": "https://40.media.tumblr.com/da84f75189bb52c8d66f64dc5ea20bf1/tumblr_mo8inbcBAK1qfyjoto1_500.jpg" - }, - { - "name": "Benny Blanco", - "image_url": "http://cache2.asset-cache.net/gc/473115600-rapper-benny-blanco-attends-the-63rd-annual-gettyimages.jpg" - }, - { - "name": "Beenzino", - "image_url": "http://www.kpopmusic.com/wp-content/uploads/2015/10/beenzino-3.jpg" - }, - { - "name": "Benzino", - "image_url": "http://missxpose.com/wp-content/uploads/2014/03/benzino.png" - }, - { - "name": "Big Boi", - "image_url": "http://redalertpolitics.com/files/2013/01/BigBoi.jpg" - }, - { - "name": "Big Daddy Kane", - "image_url": "http://images.rapgenius.com/30a5d7f5135fdf9124beff6834884ff8.640x773x1.jpg" - }, - { - "name": "Big Ed", - "image_url": "http://upload.wikimedia.org/wikipedia/en/8/8d/Big_Ed.jpg" - }, - { - "name": "Big Gipp", - "image_url": "http://www.stacksmag.net/wp-content/uploads/2014/09/stacksmag007atllive.png" - }, - { - "name": "Big Hawk", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-big-hawk-celebrity-star-style.jpg" - }, - { - "name": "Big K.R.I.T.", - "image_url": "http://www.thissongslaps.com/wp-content/uploads/2014/09/big_krit-news-article921121.png" - }, - { - "name": "Big Kuntry King", - "image_url": "http://s4.evcdn.com/images/block250/I0-001/000/989/283-8.jpeg_/big-kuntry-king-83.jpeg" - }, - { - "name": "Big L", - "image_url": "http://outlookaub.com/wp-content/uploads/2015/03/big-l.jpg" - }, - { - "name": "Big Lurch", - "image_url": "https://thoughtcatalog.files.wordpress.com/2015/09/big_lurch.jpg" - }, - { - "name": "Big Mello", - "image_url": "http://hivesociety.com/wp-content/uploads/2015/10/big-mello.jpg" - }, - { - "name": "Big Mike", - "image_url": "http://fakehustle.files.wordpress.com/2009/02/big-mike.jpg" - }, - { - "name": "Big Moe", - "image_url": "http://s3.amazonaws.com/rapgenius/big-moe_480x480.jpg" - }, - { - "name": "Big Noyd", - "image_url": "http://singersroom.com/upload/2013/03/Big-Noyd-Light-Up-The-Night.jpg" - }, - { - "name": "Big Pokey", - "image_url": "http://purple-drank.com/wp-content/uploads/2013/06/Big-Pokey.png" - }, - { - "name": "Big Pooh", - "image_url": "http://ambrosiaforheads.com/wp-content/uploads/2012/07/Rapper+Big+Pooh+Big+p00h.jpg" - }, - { - "name": "Big Pun", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1620420.1392857208!/img/httpImage/image.jpg_gen/derivatives/article_750/big-pun-legacy.jpg" - }, - { - "name": "Big Reese", - "image_url": "https://dpjsgvx0fhwmn.cloudfront.net/albums/34235/large/bb2c7032b95187e95b92.jpg" - }, - { - "name": "Big Scoob", - "image_url": "http://www.funmissouri.com/uploads/files/2013/06/big-scoob-rapper-missouri.png" - }, - { - "name": "Big Smo", - "image_url": "https://i.ytimg.com/vi/igZweLr604Y/maxresdefault.jpg" - }, - { - "name": "Big Sean", - "image_url": "http://images5.fanpop.com/image/photos/27200000/Big-Sean-big-sean-rapper-27232010-500-610.jpg" - }, - { - "name": "Big Shaq", - "image_url": "https://hypebeast.imgix.net/http%3A%2F%2Fhypebeast.com%2Fimage%2F2017%2F10%2Frapper-halloween-costumes-lil-pump-roadman-shaq-lil-peep-lil-b-lil-uzi-vert-00.jpg" - }, - { - "name": "Big Shug", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/d1/2a/db/d12adb999028c2db003aa5e736e585a2.jpg" - }, - { - "name": "Big Syke", - "image_url": "https://pmchollywoodlife.files.wordpress.com/2016/12/big-syke-rapper-died-ftr.jpg" - }, - { - "name": "Bigg D", - "image_url": "http://www.4umf.com/wp-content/uploads/2014/11/Rapper-Big-Paybacc-Killed.jpg" - }, - { - "name": "Billy Woods", - "image_url": "http://backwoodzstudioz.com/wp-content/uploads/2013/06/BillyWoods_AlexanderRichter_WebReady_Press_DourCandy_2C.jpg" - }, - { - "name": "Birdman", - "image_url": "http://www.ablogtowatch.com/wp-content/uploads/2010/12/clip_image008.jpg" - }, - { - "name": "Bishop Nehru", - "image_url": "http://cdn2.pitchfork.com/news/53665/e5bac495.jpg" - }, - { - "name": "Biz Markie", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1451937.1378902764!/img/httpImage/image.jpg_gen/derivatives/article_1200/biz-markie.jpg" - }, - { - "name": "Bizarre", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Bizarre.jpg/1200px-Bizarre.jpg" - }, - { - "name": "Bugz", - "image_url": "http://1.bp.blogspot.com/-zqDNlEcJS9Q/U3JTKpcl7hI/AAAAAAAAAcw/sQJSzSDVIq4/s1600/bugz+image.jpg" - }, - { - "name": "Bizzy", - "image_url": "http://wprapradar.s3.amazonaws.com/wp-content/uploads/2010/05/bizzy-bone1.jpg" - }, - { - "name": "Bizzy Bone", - "image_url": "https://nowtoronto.com/downloads/68186/download/BizzyBone.jpg" - }, - { - "name": "BJ the Chicago Kid", - "image_url": "https://consequenceofsound.files.wordpress.com/2015/08/chance-the-rapper-bj-the-chicago-kid.jpg" - }, - { - "name": "Black Milk", - "image_url": "http://hiphop-n-more.com/wp-content/uploads/2010/09/black-milk-9.jpg" - }, - { - "name": "Black Rob", - "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:1676761" - }, - { - "name": "Black Thought", - "image_url": "http://vibesource.files.wordpress.com/2008/06/black-thought-mcsforlifevibesourcemag.jpg" - }, - { - "name": "Blade Icewood", - "image_url": "http://www.officialpsds.com/images/thumbs/Blade-Icewood-psd61214.png" - }, - { - "name": "Blaq Poet", - "image_url": "http://www.audibletreats.com/wp-content/gallery/blaqpoet/blaq_poet-street.jpg" - }, - { - "name": "Blaze Ya Dead Homie", - "image_url": "http://img3.wikia.nocookie.net/__cb20130520210459/rap/images/b/bb/Blaze_ya_dead_homie.jpg" - }, - { - "name": "BlocBoy JB", - "image_url": "https://rapdose.com/wp-content/uploads/fly-images/146583/asap-forever-378x250-c.jpg" - }, - { - "name": "Blood Raw", - "image_url": "http://www.rapartists.com/_files/pictures/full/2313_blood_raw.jpg" - }, - { - "name": "Blu", - "image_url": "http://thecomeupshow.com/wp-content/uploads/2012/08/blu-rapper.jpg" - }, - { - "name": "Bob Doe", - "image_url": "http://media-cache-ak0.pinimg.com/736x/84/e0/35/84e0355d2eaac3e990892bad26267ff2.jpg" - }, - { - "name": "Bobby Brackins", - "image_url": "http://www1.pictures.zimbio.com/gi/Bobby+Brackins+Puma+Presents+Riddim+Run+Benefiting+1v-Ki1nD2Owl.jpg" - }, - { - "name": "Bobby Creekwater", - "image_url": "http://static.djbooth.net/pics-artist/bobbycreekwater2.jpg" - }, - { - "name": "Bobby Shmurda", - "image_url": "https://static.pulse.ng/img/incoming/origs3920830/3240485024-w980-h640/bobby-shmurda-and-rihanna.jpg" - }, - { - "name": "Bohemia", - "image_url": "http://1.bp.blogspot.com/-vnAVLnSXj1k/UskN6icYkBI/AAAAAAAAAUM/6jbrIjj-GS0/s1600/From+the+set+of+Dada+in+Bahrain.jpg" - }, - { - "name": "Boi-1da", - "image_url": "http://www.beatmakingvideos.com/sites/default/files/producer_foto/boi_1da.jpg" - }, - { - "name": "Boldy James", - "image_url": "http://thoughtontracks.files.wordpress.com/2012/06/boldy-james.jpg" - }, - { - "name": "Bone Crusher", - "image_url": "http://images2.mtv.com/uri/mgid:uma:artist:mtv.com:1235147" - }, - { - "name": "Bones", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/e7/3a/2e/e73a2e853bd074c32d1abe08900ba2a7.jpg" - }, - { - "name": "Booba", - "image_url": "https://underneathestarz.files.wordpress.com/2015/06/boo23.jpg" - }, - { - "name": "Boondox", - "image_url": "http://static.tvtropes.org/pmwiki/pub/images/boondox01_7971.jpg" - }, - { - "name": "Boosie Badazz", - "image_url": "http://www.rap-up.com/app/uploads/2015/11/boosie-hat.jpg" - }, - { - "name": "Boss", - "image_url": "http://3.bp.blogspot.com/-2Tn1dMXQIzE/TtW53Kcvo4I/AAAAAAAADcQ/LNWNkwDCwIY/s1600/Boss.jpg" - }, - { - "name": "Bow Wow", - "image_url": "https://thedrinksbusiness.com/wordpress/wp-content/uploads/2015/03/lil-bow-wow-net-worth-424x640.jpg" - }, - { - "name": "Braille", - "image_url": "http://media1.fdncms.com/bend/imager/braille-read-him-with-your-ears/u/original/2148215/braille.jpg" - }, - { - "name": "Brandun DeShay", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/4b/28/bb/4b28bbbd4f6d7223e07d312b7cacc2ac--rapper-artists.jpg" - }, - { - "name": "Brianna Perry", - "image_url": "http://4.bp.blogspot.com/-IXYep2nCIwI/T0F0AX6zRZI/AAAAAAAACRg/4agQBS5a50Y/s1600/rapper-brianna.jpg" - }, - { - "name": "Brisco", - "image_url": "http://www.yorapper.com/Photos/brisco-rap.jpg" - }, - { - "name": "Brotha Lynch Hung", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-brotha-lynch-hung-song-recitation-fame.jpg" - }, - { - "name": "Bruno Mars", - "image_url": "http://www2.pictures.zimbio.com/gi/Bruno+Mars+B+o+B+rapper+2010+MTV+Video+Music+TeX5_EMP-jDl.jpg" - }, - { - "name": "Brother Ali", - "image_url": "http://www.killerhiphop.com/wp-content/uploads/2012/02/Brother-Ali.jpg" - }, - { - "name": "Bryson Tiller", - "image_url": "https://i.pinimg.com/736x/00/2d/f7/002df7c879422acb3a18c00c224300f3--bryson-tiller-rapper.jpg" - }, - { - "name": "Bubba Sparxxx", - "image_url": "http://www.contactmusic.com/pics/l/ludacris_benefit_250408/rapper_bubba_sparxxx_5124692.jpg" - }, - { - "name": "Buckshot", - "image_url": "https://i.ytimg.com/vi/JU81txDlbx8/maxresdefault.jpg" - }, - { - "name": "Buckwild", - "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/04/buckwild-producer1.jpg" - }, - { - "name": "Bumpy Knuckles", - "image_url": "http://streetknowledge.files.wordpress.com/2008/07/bumpy_knuckles.jpg" - }, - { - "name": "Bun B", - "image_url": "http://ww4.hdnux.com/photos/23/53/75/5160803/3/rawImage.jpg" - }, - { - "name": "Busdriver", - "image_url": "http://images2.laweekly.com/imager/busdriver/u/original/5177944/busdriver_photo-l_dianadalsasso2014.jpg" - }, - { - "name": "Bushwick Bill", - "image_url": "http://www.collegebaseballtoday.com/files/2013/05/BushwickBill_Stitches1.jpg" - }, - { - "name": "Busta Rhymes", - "image_url": "http://newsbite.it/public/images/articles/busta-drake.jpg" - }, - { - "name": "Busy Bee Starski", - "image_url": "https://s3.amazonaws.com/battlerap-production/2014/09/Busy-Bee610.jpg" - }, - { - "name": "Butch Cassidy", - "image_url": "https://pbs.twimg.com/profile_images/378800000221503061/5d6802b25f28f80c390d48fd1aca20d1.jpeg" - }, - { - "name": "Common", - "image_url": "http://i.huffpost.com/gen/1352726/thumbs/o-RAPPER-COMMON-facebook.jpg" - }, - { - "name": "C-Bo", - "image_url": "http://unitedgangs.files.wordpress.com/2010/04/c-bo.jpg" - }, - { - "name": "C-Murder", - "image_url": "http://media.nola.com/crime_impact/photo/cmurder-horizontal-cropjpg-77be374eafb600e4.jpg" - }, - { - "name": "C-Note", - "image_url": "https://i.ytimg.com/vi/F40M4icrNMQ/maxresdefault.jpg" - }, - { - "name": "C-Rayz Walz", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2017/04/C-Rayz-WalzInstagram-e1491328882399-827x620.png" - }, - { - "name": "Cage", - "image_url": "http://1.bp.blogspot.com/_4ZiWxZWnbZE/TVEuUjybxkI/AAAAAAAAAWQ/SjyC6aacpXc/s1600/cagecrazy.jpg" - }, - { - "name": "Cam'ron", - "image_url": "http://www.yorapper.com/Photos/camron-ringtones.jpg" - }, - { - "name": "Canibus", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Canibus_at_Amager_Bio_4.jpg" - }, - { - "name": "Capital Steez", - "image_url": "http://images.complex.com/complex/image/upload/c_fill,g_center,h_640,w_640/fl_lossy,pg_1,q_auto/gjpwujnfpj1afsu4uawy.jpg" - }, - { - "name": "Capone", - "image_url": "https://consequenceofsound.files.wordpress.com/2018/04/the-meadows-2017-ben-kaye-run-the-jewels-7.jpg" - }, - { - "name": "Cappadonna", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-cappadonna-star-celebrity-best-photo.jpg" - }, - { - "name": "Cardi B", - "image_url": "https://rapdose.com/wp-content/uploads/2018/03/cardi-b-be-careful.jpg" - }, - { - "name": "Casey Veggies", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2015/02/caseyveggies-630x420.jpg" - }, - { - "name": "Cash Out", - "image_url": "http://jojocrews.com/wp-content/uploads/2015/01/cash1.jpg" - }, - { - "name": "Cashis", - "image_url": "http://mediastarr.files.wordpress.com/2008/10/cashismusiccom1.jpg" - }, - { - "name": "Caskey", - "image_url": "http://social.rollins.edu/wpsites/mousetrap/files/2016/06/Caskey.jpg" - }, - { - "name": "Casper Nyovest", - "image_url": "http://www.destinyman.com/wp-content/uploads/2015/04/Casper-Nyovest--690x450.jpg" - }, - { - "name": "Cassidy", - "image_url": "http://www.missxpose.com/wp-content/uploads/2010/03/BET+Rip+Runway+2010+Arrivals+MPN9FSqiQxql2.jpg" - }, - { - "name": "Cazwell", - "image_url": "http://1.bp.blogspot.com/-yxVYPS6GT4Q/TdLjbiV2bYI/AAAAAAAAESs/ecXi9lrdkKM/s1600/cazwell.jpg" - }, - { - "name": "CeeLo Green", - "image_url": "https://www.festivalsherpa.com/wp-content/uploads/2014/09/ceelo.jpg" - }, - { - "name": "Cellski", - "image_url": "http://images.rapgenius.com/56c23a073295a1baa7c88f22411a8a9a.500x500x1.jpg" - }, - { - "name": "Celly Cel", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/729/MI0003729697.jpg" - }, - { - "name": "Celph Titled", - "image_url": "http://s3.amazonaws.com/rapgenius/1362723298_l.jpg" - }, - { - "name": "Cesar Comanche", - "image_url": "http://d2jos65913uaef.cloudfront.net/wp-content/uploads/2013/07/Cesar_comanche_interview-200x130.jpg" - }, - { - "name": "Ceza", - "image_url": "https://musicinculture.files.wordpress.com/2011/04/ceza40ke9_1_.jpg" - }, - { - "name": "Chamillionaire", - "image_url": "http://i.dailymail.co.uk/i/pix/2016/02/19/09/01BC5195000004B0-3454235-image-m-26_1455874575624.jpg" - }, - { - "name": "Chance the Rapper", - "image_url": "http://rukkus.com/blog/wp-content/uploads/2014/01/chance-the-rapper.png" - }, - { - "name": "Chanel West Coast", - "image_url": "http://images1.laweekly.com/imager/rapper-reality-tv-star-chanel-west-coast/u/original/5002632/law_chanel_west_coast-3280-edit.jpg" - }, - { - "name": "Channel 7", - "image_url": "http://media.gettyimages.com/photos/south-korean-rapper-psy-performs-live-on-channel-7s-sunrise-at-martin-picture-id154251648" - }, - { - "name": "Charizma", - "image_url": "http://4ca03fhcpiv4bsn7vbg2ef11td.wpengine.netdna-cdn.com/wp-content/uploads/2014/09/1b820b3864413e7b3fba3958b433d733-1024x690.jpg" - }, - { - "name": "Charles Hamilton", - "image_url": "http://www.billboard.com/files/styles/promo_650/public/media/charles-hamilton-brigitte-sire-bb7-2015-billboard-650.jpg" - }, - { - "name": "Charli Baltimore", - "image_url": "http://djpinkietuscadero.files.wordpress.com/2013/08/charli-baltimore.jpg" - }, - { - "name": "Chevy Woods", - "image_url": "http://www.post-gazette.com/image/2015/08/04/ca11,5,1918,1913/chevy0806b0553-1.jpg" - }, - { - "name": "Chi Ali", - "image_url": "http://www.vladtv.com/images/size_fs/video_image-133965.jpg" - }, - { - "name": "Chali 2na", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/2/2a/Chali2na.jpg" - }, - { - "name": "Chiddy Bang", - "image_url": "http://campuseventsblog.com/wp-content/uploads/2012/09/CHIDDYPHOTO1.jpg" - }, - { - "name": "Chief Keef", - "image_url": "http://wallpapersqq.net/wp-content/uploads/2016/01/Chief-Keef-6.jpg" - }, - { - "name": "Childish Gambino", - "image_url": "http://diymag.com/media/img/Artists/C/Childish-Gambino/_1500x1000_crop_center-center_75/Childish-Gambino-Press-Photo-copy.jpg" - }, - { - "name": "Chill Rob G", - "image_url": "https://img.youtube.com/vi/Hd0aNVDOo3U/0.jpg" - }, - { - "name": "Chingy", - "image_url": "http://tattletailzz.com/wp-content/uploads/2013/03/SGG-008258.jpg" - }, - { - "name": "Chingo Bling", - "image_url": "https://atlantalatinos.com/wp-content/uploads/2018/03/chingo-bling-atlanta-georgia-atlantalatinos-2-1068x1067.jpg" - }, - { - "name": "Chino XL", - "image_url": "http://iv1.lisimg.com/image/436161/600full-chino-xl.jpg" - }, - { - "name": "Chinx", - "image_url": "http://images.complex.com/complex/image/upload/t_article_image/chinx-rapper-2_jyerea.jpg" - }, - { - "name": "Chip", - "image_url": "http://www.voice-online.co.uk/sites/default/files/imagecache/455/chip-rapper-RIP.jpg" - }, - { - "name": "Choice", - "image_url": "http://2.bp.blogspot.com/-TjL6ZSCN8kA/UTimdEyVUSI/AAAAAAAABYI/fUlPXSKfg7o/s320/choiceback.jpg" - }, - { - "name": "Choppa", - "image_url": "http://fanpagepress.net/m/C/choppa-rapper-1.jpg" - }, - { - "name": "Chris Brown", - "image_url": "http://www.hdwallpaper4u.com/wp-content/uploads/2015/07/chris-brown_rapper_look.jpg" - }, - { - "name": "Chris Webby", - "image_url": "http://thissongissick.com/blog/wp-content/uploads/2011/11/Chris-Webby-Rapper.jpg" - }, - { - "name": "Christopher Martin", - "image_url": "http://www2.pictures.zimbio.com/gi/Heavy+D+Funeral+Service+Qy4IEAGabbUx.jpg" - }, - { - "name": "Christopher Reid", - "image_url": "http://static.atlantablackstar.com/wp-content/uploads/2014/09/Christopher-Kid-Reid.jpg" - }, - { - "name": "Chubb Rock", - "image_url": "http://www.largeup.com/wp-content/uploads/2012/07/chubb-rock.jpg" - }, - { - "name": "CJ Fly", - "image_url": "https://images.rapgenius.com/02df360b384c97322368321affc6603c.600x338x73.gif" - }, - { - "name": "CL", - "image_url": "http://koogle.tv/static/media/uploads/news/010915_2ne1-cl_01.jpg" - }, - { - "name": "CL Smooth", - "image_url": "http://i2.cdn.turner.com/cnnnext/dam/assets/130502100438-08-90s-rappers-horizontal-large-gallery.jpg" - }, - { - "name": "Classified", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/c5/2011_MuchMusic_Video_Awards_-_Classified.jpg" - }, - { - "name": "Clinton Sparks", - "image_url": "http://www.themusicgroupagency.com/Artist%20Bio_Pixs/DJ%20CLINTON%20SPARKS.jpg" - }, - { - "name": "Clyde Carson", - "image_url": "http://www2.pictures.zimbio.com/gi/Clyde+Carson+2012+BET+Awards+Celebrity+Gifting+h3makmUgLDQl.jpg" - }, - { - "name": "Cold 187um", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/471/MI0003471422.jpg" - }, - { - "name": "Common", - "image_url": "http://i.huffpost.com/gen/1352726/thumbs/o-RAPPER-COMMON-facebook.jpg" - }, - { - "name": "Consequence", - "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2013/01/consequence.jpg" - }, - { - "name": "Cool Breeze", - "image_url": "http://www4.pictures.zimbio.com/gi/2010+Vh1+Hip+Hop+Honors+Arrivals+6Kw4hn4nNHJl.jpg" - }, - { - "name": "Cool C", - "image_url": "http://bloximages.chicago2.vip.townnews.com/phillytrib.com/content/tncms/assets/v3/editorial/e/a3/ea3f0f99-c7b3-5a16-a498-43e00ef30007/5473f146bc971.image.jpg" - }, - { - "name": "Coolio", - "image_url": "http://1.bp.blogspot.com/_B1LlYh6iKqs/TEpHopMKndI/AAAAAAAACVQ/w5typW_-Cqo/s1600/coolio.jpg" - }, - { - "name": "Copywrite", - "image_url": "http://ifelicious.com/wp-content/uploads/2010/06/RapperCopywrite_614cap.jpg" - }, - { - "name": "Cormega", - "image_url": "http://www.iamhiphopmagazine.com/wp-content/uploads/2013/02/cormega_by_G_M_D_THREE_02.jpg" - }, - { - "name": "Cory Gunz", - "image_url": "http://www.aceshowbiz.com/images/wennpic/cory-gunz-set-music-video-fred-the-godson-01.jpg" - }, - { - "name": "Cordaro Stewart", - "image_url": "http://www.famousbirthdays.com/thumbnails/stewart-cordaro-large.jpg" - }, - { - "name": "Count Bass D", - "image_url": "https://massappeal.com/wp-content/uploads/2012/10/count-bass-d.jpg" - }, - { - "name": "The Coup", - "image_url": "http://media.philly.com/images/600*450/20121207_inq_wkpfea07-a.JPG" - }, - { - "name": "Craig Mack", - "image_url": "https://escobar300.files.wordpress.com/2011/08/craig-mack.jpg" - }, - { - "name": "Crime Boss", - "image_url": "http://www.angelfire.com/ok/midsouthhiphop/images/CRIME.jpg" - }, - { - "name": "Criminal Manne", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2013/02/Criminal-Manne.jpg" - }, - { - "name": "Crooked I", - "image_url": "http://zmldajoker.com/wp-content/uploads/2012/08/Crooked-I.jpg" - }, - { - "name": "Crucial Star", - "image_url": "http://www.allkpop.com/upload/2017/02/af_org/crucial-star_1486480774_af_org.jpg" - }, - { - "name": "Cupcakke", - "image_url": "https://lastfm-img2.akamaized.net/i/u/770x0/fd2ee4b462b471a02f1d47c6908aa414.jpg#fd2ee4b462b471a02f1d47c6908aa414" - }, - { - "name": "Currensy", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2013/09/currensy.jpg" - }, - { - "name": "Curtiss King", - "image_url": "http://images.genius.com/d117bf90749090895c48b26d53585f3f.640x640x1.jpg" - }, - { - "name": "Cyhi the Prynce", - "image_url": "http://hiphop-n-more.com/wp-content/uploads/2016/02/cyhi-the-prynce-montreality-680x462.jpg" - }, - { - "name": "Del Tha Funkee Homosapien", - "image_url": "http://www.fagostore.com/shared/d/de988c79be500dce37c77c306ca4c1c7_hw600_width.jpg" - }, - { - "name": "Dr. Dre", - "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/drdre.gif" - }, - { - "name": "D'Angelo", - "image_url": "http://1.bp.blogspot.com/-eWbI_zHem7w/T05dilWoEqI/AAAAAAADZjw/w-bTjY7Ro1Q/s400/dangelo-1.jpg" - }, - { - "name": "D'banj", - "image_url": "http://cache2.asset-cache.net/gc/150994476-rapper-d-banj-is-photographed-for-the-gettyimages.jpg" - }, - { - "name": "D-Loc", - "image_url": "http://s3.amazonaws.com/rapgenius/YJsUar79REWtkxvOpCVw_d-loc.jpg" - }, - { - "name": "D-Nice", - "image_url": "http://img.wax.fm/releases/2386762/d-nice-call-me-d-nice-1523902.jpeg" - }, - { - "name": "D-Pryde", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/b/ba/Plan_A_Merchandise_Promotion.png" - }, - { - "name": "The D.O.C.", - "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/01/The+DOC.jpg" - }, - { - "name": "Da Brat", - "image_url": "http://3.bp.blogspot.com/-2ptC5bvDzrc/Ti2nZQfRhKI/AAAAAAAARhA/Zq7JHQZPftU/s1600/Da-Brat-vibe1.jpg" - }, - { - "name": "Da$h", - "image_url": "http://s3.amazonaws.com/rapgenius/1362086799_Dah%20dashtweet.jpg" - }, - { - "name": "Da'unda'dogg", - "image_url": "https://images-na.ssl-images-amazon.com/images/I/61Scu%2BIkLYL._SL500_AA280_.jpg" - }, - { - "name": "Daddy-O", - "image_url": "http://m.i.uol.com.br/musica/2010/02/26/o-rapper-puffy-daddy-em-evento-em-nova-york-23012010-1267194075418_956x500.jpg" - }, - { - "name": "Dae Dae", - "image_url": "http://cdn.baeblemusic.com/bandcontent/dae_dae/dae_dae_bio-498.jpg" - }, - { - "name": "Damu the Fudgemunk", - "image_url": "http://berlin030.de/wp-content/uploads/2016/07/Damu-The-Fudgemunk.jpg" - }, - { - "name": "Dan Bull", - "image_url": "http://www.tubefilter.com/wp-content/uploads/2016/03/dan-bull.jpg" - }, - { - "name": "Dana Dane", - "image_url": "http://media-cache-ak0.pinimg.com/736x/14/57/5c/14575c78fb7f3e2e844ec15621acea74.jpg" - }, - { - "name": "Danny Boy", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/House_of_Pain-IMG_6536.jpg/1200px-House_of_Pain-IMG_6536.jpg" - }, - { - "name": "Danny Brown", - "image_url": "http://media.npr.org/assets/img/2012/08/27/rap-stream-db2_wide-2f0e39013c78f49f93129e2eef4c93e72b9c0eb1-s6-c30.jpg" - }, - { - "name": "Dappy", - "image_url": "http://madnews.files.wordpress.com/2010/05/dappy.jpg" - }, - { - "name": "Dave East", - "image_url": "http://www.rehabonlinemag.com/wp-content/uploads/2014/09/dave-east-cropped.jpg" - }, - { - "name": "Daveed Diggs", - "image_url": "http://theawesomer.com/photos/2016/05/Daveed-Diggs_fastest_rapper_on_broadway_t.jpg" - }, - { - "name": "David Banner", - "image_url": "http://www3.pictures.zimbio.com/gi/David+Banner+33rd+Annual+UNCF+Evening+Stars+ZUzQpuO0gb0l.jpg" - }, - { - "name": "David Dallas", - "image_url": "http://static.djbooth.net/pics-artist/daviddallas2.jpg" - }, - { - "name": "David Rush", - "image_url": "http://www.vegasnews.com/wp-content/uploads/davidrush_redcarpet-588.jpg" - }, - { - "name": "David Stones", - "image_url": "https://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAAfNAAAAJGY2M2Q3MDY5LWE4MTYtNDgyMS1hMWZmLWEzOTMzOTFmYTQ4Mw.jpg" - }, - { - "name": "Daz Dillinger", - "image_url": "https://s3.amazonaws.com/rapgenius/filepicker%2FXvubZbsJQue813tNktYE_Daz_Dillinger.jpg" - }, - { - "name": "Dazzie Dee", - "image_url": "https://lh6.googleusercontent.com/-2BfKUpLN9OU/TX9xEi7kAUI/AAAAAAAACDY/tcA_AynfDM8/s400/1.jpg" - }, - { - "name": "Dee Barnes", - "image_url": "http://i.dailymail.co.uk/i/pix/2015/08/19/01/2B7A5D7E00000578-0-image-a-2_1439945563429.jpg" - }, - { - "name": "Dee Dee King", - "image_url": "http://4.bp.blogspot.com/_svH18z9S5bU/SnSk-Vq8-SI/AAAAAAAAAsc/dr_YK0SSeV0/s320/FRONT.jpg" - }, - { - "name": "Dej Loaf", - "image_url": "http://i1.wp.com/inyaearhiphop.com/wp-content/uploads/2016/03/rapper-says-dej-loaf-is-lying-about-her-sexuality.png" - }, - { - "name": "Delyric Oracle", - "image_url": "http://thebaybridged.com/wp-content/uploads/2017/04/Chance-The-Rapper-at-Oracle-Arena-by-Joshua-Huver-14.jpg" - }, - { - "name": "Del the Funky Homosapien", - "image_url": "http://s3.amazonaws.com/rapgenius/del_the_funky_homosapien-130.jpg" - }, - { - "name": "Demrick", - "image_url": "http://theindustrywest.com/wp-content/uploads/2013/03/demrick.jpg" - }, - { - "name": "Deniro Farrar", - "image_url": "https://assets.audiomack.com/deniro-farrar/5a30d8d7a0f778a2e84ec2ebb5992768.jpeg" - }, - { - "name": "Denzel Curry", - "image_url": "https://media2.fdncms.com/orlando/imager/u/blog/2488240/denzel_-_photo-jmp_web.jpg" - }, - { - "name": "Derek Minor", - "image_url": "http://thegospelguru.com/wp-content/uploads/2014/10/derek-minor-03.jpg" - }, - { - "name": "Desiigner", - "image_url": "https://i.ytimg.com/vi/nmCYm7NOWME/maxresdefault.jpg" - }, - { - "name": "Detail", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2011/03/detail_03-21-11-300x300.jpg" - }, - { - "name": "Deuce", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/3/34/Deuce.jpg" - }, - { - "name": "Dev", - "image_url": "http://4.bp.blogspot.com/-DTmssduDnJk/TWfNLurcS1I/AAAAAAAAAjY/yNyTtcEEuM0/s1600/Dev-Bass_Down_Low-single_cover.jpg" - }, - { - "name": "Devin the Dude", - "image_url": "http://lahiphopevents.com/wp-content/uploads/2015/11/DEVIN-THE-DUDE.jpg" - }, - { - "name": "Devlin", - "image_url": "http://musiqexpo.files.wordpress.com/2012/08/devlin-rapper-freestyle-2012-e1343833573673.jpg" - }, - { - "name": "Diabolic", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/a/a3/DIABOLIC.jpg" - }, - { - "name": "Diamond", - "image_url": "http://2.bp.blogspot.com/-Zk504yF-lDo/Tbo7Vy75dfI/AAAAAAAAuEQ/FtRTLC65dJ8/s1600/diamond-rapper-3.jpg" - }, - { - "name": "Diamond D", - "image_url": "http://nahright.com/wp-content/uploads/2013/12/DIAMOND-450x304.jpg" - }, - { - "name": "Diggy Simmons", - "image_url": "http://www4.pictures.zimbio.com/gi/Diggy+Simmons+2012+BET+Awards+Celebrity+Gifting+f_6FuVhNcnSl.jpg" - }, - { - "name": "Dillon Cooper", - "image_url": "http://s3.amazonaws.com/rapgenius/1352155921_Dillon-Cooper-1.jpg" - }, - { - "name": "Disco D", - "image_url": "https://i.ytimg.com/vi/-pzjJ0Gnwg0/maxresdefault.jpg" - }, - { - "name": "Disco King Mario", - "image_url": "http://hiphopandpolitics.files.wordpress.com/2013/01/disco-king-mario.jpg" - }, - { - "name": "Dizzee Rascal", - "image_url": "https://juelzone.files.wordpress.com/2012/01/dizzee_rascal_2.jpg" - }, - { - "name": "Dizzy Wright", - "image_url": "http://thedailyloud.com/wp-content/uploads/2013/07/dizzy-wright.jpeg" - }, - { - "name": "DJ Cash Money", - "image_url": "https://i.ytimg.com/vi/YjQi0oLbfT4/maxresdefault.jpg" - }, - { - "name": "DJ Casper", - "image_url": "http://assets.libsyn.com/content/1652870" - }, - { - "name": "DJ Clay", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162471.jpg" - }, - { - "name": "DJ Clue?", - "image_url": "https://hhvibe.files.wordpress.com/2010/01/dj-clue.jpg" - }, - { - "name": "DJ Drama", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/thumb/2/28/DJ_Drama.jpg/1280px-DJ_Drama.jpg" - }, - { - "name": "DJ Felli Fel", - "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/f_auto,fl_lossy,pg_1,q_auto/vdonhefsu1vbqzkokfvl.jpg" - }, - { - "name": "DJ Fuze", - "image_url": "http://api.ning.com/files/twryudDDeJeBWWFC5lWwmMNonB3Ue79CfQIrNYzlFuV2rTlpK65jKYOrbTFCSI3uKyKLXfsXo-QtftbzfM98VkeRbvf10eQZ/fuze.jpg" - }, - { - "name": "DJ Green Lantern", - "image_url": "http://hw-img.datpiff.com/m76a31fd/Various_Artists_Green_Lantern_Instrumentals-front-large.jpg" - }, - { - "name": "DJ Head", - "image_url": "http://www.eminem.pro/wp-content/uploads/2013/09/DJ-Head.jpg" - }, - { - "name": "DJ Hurricane", - "image_url": "http://www.vanndigital.com/wp-content/uploads/djhurricanecominoffcentralcoastvibemusicvideoclip.jpg" - }, - { - "name": "DJ Kay Slay", - "image_url": "http://assets.audiomack.com/paperchaserdotcom/1d35c76ce398acf2bba0bc11508f0fba.jpeg" - }, - { - "name": "DJ Khaled", - "image_url": "https://www.bestvideorap.com/wp-content/uploads/bscap0008(3).jpg" - }, - { - "name": "DJ Krush", - "image_url": "https://image.redbull.com/rbcom/010/2016-11-16/1331829659822_2/0010/1/1600/1067/1/dj-krush.jpg" - }, - { - "name": "DJ Mustard", - "image_url": "http://the5thelementmag.files.wordpress.com/2014/08/rapper-yg-and-dj-mustard.jpg" - }, - { - "name": "DJ Paul", - "image_url": "http://hiphoprapscene.com/wp-content/uploads/2016/08/dj-paul.jpg" - }, - { - "name": "DJ Pooh", - "image_url": "https://img.discogs.com/KHTPZVL6Pa1dtmD3PhfQvKz-eQg=/fit-in/300x300/filters:strip_icc():format(jpeg):mode_rgb():quality(40)/discogs-images/A-131630-1487348732-7573.jpeg.jpg" - }, - { - "name": "DJ Premier", - "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2016/05/dj-premier-producer.jpg" - }, - { - "name": "DJ Quik", - "image_url": "http://dieenormousla.files.wordpress.com/2013/05/dj-quik.jpg" - }, - { - "name": "DJ Run", - "image_url": "https://c2.staticflickr.com/6/5022/5615202725_2e4e019896_b.jpg" - }, - { - "name": "DJ Screw", - "image_url": "http://screweduprecords.com/wp-content/uploads/2010/11/djSCREW5.jpg" - }, - { - "name": "DJ Shadow", - "image_url": "http://static.djbooth.net/pics-artist/dj-shadow.jpg" - }, - { - "name": "DJ Yella", - "image_url": "https://i.ytimg.com/vi/qaRqdspVNdo/maxresdefault.jpg" - }, - { - "name": "DMC", - "image_url": "http://i.huffpost.com/gen/1235615/images/o-RAPPER-DMC-facebook.jpg" - }, - { - "name": "DMX", - "image_url": "http://4hdwallpapers.com/wp-content/uploads/2013/04/Dmx-Rapper.jpg" - }, - { - "name": "Doap Nixon", - "image_url": "http://imagecache.blastro.com/timthumb.php/src=http%3A%2F%2Fimages.blastro.com%2Fimages%2Fartist_images%2Ffull%2Ffull_vinniepazvinniepazondoapnixon.jpg&w=610&h=457&zc=2&a=T" - }, - { - "name": "Doe B", - "image_url": "http://assets.noisey.com/content-images/contentimage/22592/Doe%20B%20featured%20image.jpg" - }, - { - "name": "Dok2", - "image_url": "http://static.askkpop.com/images/upload/18/ifrit1112/2016/05/12/Dok2-says-female-rappers-dontwrite-their-own-lyrics.jpg" - }, - { - "name": "Dolla", - "image_url": "http://www.streetgangs.com/wp-content/uploads/2009/05/20090529-dolla3.jpg" - }, - { - "name": "Dom Kennedy", - "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2015/05/Rapper-Dom-Kennedy-Reveals-Album-Release-Date-MusicSnake-1024x576.jpg" - }, - { - "name": "Dominique Young Unique", - "image_url": "http://images.dailystar.co.uk/dynamic/45/photos/984000/620x/5327940d40cfe_18f12domm.jpg" - }, - { - "name": "Domino", - "image_url": "https://unitedgangs.files.wordpress.com/2013/09/domino.png" - }, - { - "name": "Domo Genesis", - "image_url": "http://media.gettyimages.com/photos/rapper-domo-genesis-of-mellowhigh-and-the-odd-future-collective-at-picture-id538084320" - }, - { - "name": "Don Cannon", - "image_url": "http://freddyo.com/wp-content/uploads/2013/07/don-cannon.jpg" - }, - { - "name": "Donnis", - "image_url": "http://www3.pictures.zimbio.com/gi/Donnis+Nokia+Lumia+900+Launches+Times+Square+ZmfXDpow5Jkl.jpg" - }, - { - "name": "Dorrough", - "image_url": "http://theboombox.com/files/2011/02/dorrough-200-020811.jpg" - }, - { - "name": "Doseone", - "image_url": "http://l7.alamy.com/zooms/d51db8efa60f4be5890e618183a22976/doseone-rapper-producer-poet-and-artist-performing-at-all-tomorrows-d7wtt5.jpg" - }, - { - "name": "Doug E. Fresh", - "image_url": "https://s-media-cache-ak0.pinimg.com/564x/d3/e9/47/d3e94702d1d9ad80b155eca525e91ce9.jpg" - }, - { - "name": "Doughbeezy", - "image_url": "http://www.brooklynvegan.com/img/indie/doughbeezy.jpg" - }, - { - "name": "Dr. Dre", - "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/drdre.gif" - }, - { - "name": "Drag-On", - "image_url": "https://ioneglobalgrind.files.wordpress.com/2016/03/14573801941016.png" - }, - { - "name": "Drake", - "image_url": "http://2.bp.blogspot.com/-PF-iHgXDePo/TrjTRk8SsfI/AAAAAAAAAvk/8j_OnnCRbLc/s1600/Drake_ThankMe_Publici_5000DPI300RGB550255.jpg" - }, - { - "name": "Dres", - "image_url": "http://images.complex.com/complex/image/upload/c_fill,g_center,w_1200/fl_lossy,pg_1,q_auto/cxinsw78yglijdcx7xfh.jpg" - }, - { - "name": "Dresta", - "image_url": "http://www.prlog.org/11403708-dresta.jpg" - }, - { - "name": "Drew Deezy", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Photo-of-Drew-Deezy.jpg/220px-Photo-of-Drew-Deezy.jpg" - }, - { - "name": "Driicky Graham", - "image_url": "http://www3.pictures.zimbio.com/gi/2012+BET+Awards+Celebrity+Gifting+Suite+Day+s6iambQit8Kx.jpg" - }, - { - "name": "Droop-E", - "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/f_auto,fl_lossy,pg_1,q_auto/yumgqwihf7wyqgrhbsjh.jpg" - }, - { - "name": "Dru Down", - "image_url": "http://s3.amazonaws.com/rapgenius/252244_106167516141612_7339951_n.jpg" - }, - { - "name": "Drumma Boy", - "image_url": "http://www.azquotes.com/public/pictures/authors/b2/29/b229ecbe96e3bf6858a880ad34c9dc21/55ee91fea5d8b_drumma_boy.jpg" - }, - { - "name": "Dumbfoundead", - "image_url": "http://onwardstate.com/wp-content/uploads/2013/12/DFD_15.jpg" - }, - { - "name": "Duncan Mighty", - "image_url": "http://howng.com/wp-content/uploads/2016/09/Duncan-Mighty.png" - }, - { - "name": "Eve", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/53/Eve_2011_cropped.jpg" - }, - { - "name": "E-40", - "image_url": "http://www.diablomag.com/March-2016/Rapper-E-40-Malt-Liquor-Sluricane-Hurricane/DM1603_116_DIG800.jpg" - }, - { - "name": "E.D.I. Mean", - "image_url": "https://www.ballerstatus.com/wp-content/uploads/2015/07/edi.jpg" - }, - { - "name": "E-Sens", - "image_url": "https://images.rapgenius.com/9b9cf127a072d14eda839946d33e8b06.500x500x1.jpg" - }, - { - "name": "E.S.G.", - "image_url": "https://vignette4.wikia.nocookie.net/hip-hop-music/images/9/90/E.S.G..jpg/revision/latest" - }, - { - "name": "Earl Sweatshirt", - "image_url": "https://s3.amazonaws.com/rapgenius/1348551787_Earl-Sweatshirt.jpg" - }, - { - "name": "Easy Mo Bee", - "image_url": "https://bomboclap.files.wordpress.com/2012/01/easy-mo-bee2.jpg" - }, - { - "name": "Eazy-E", - "image_url": "http://3.bp.blogspot.com/-OCsagfqI7hc/Ui9BHy4S6xI/AAAAAAAAATk/H1DL94luEHg/s1600/Eazy+E+rapper.jpg" - }, - { - "name": "Ed O.G.", - "image_url": "http://2.bp.blogspot.com/_Wm5H75m6zhE/TL4201QyKgI/AAAAAAAAAm0/UnMY54i171c/s1600/ed.jpg" - }, - { - "name": "Edo Maajka", - "image_url": "http://www.ravnododna.com/wp-content/uploads/2013/06/edo-maajka01.jpg" - }, - { - "name": "El Da Sensei", - "image_url": "http://cdn.ticketfly.com/i/00/02/15/04/45-exl.jpg" - }, - { - "name": "El-P", - "image_url": "https://consequenceofsound.files.wordpress.com/2018/04/the-meadows-2017-ben-kaye-run-the-jewels-7.jpg" - }, - { - "name": "Elephant Man", - "image_url": "http://www.farfrommoscow.com/wp-content/uploads/2009/02/elephant-man.jpg" - }, - { - "name": "Elzhi", - "image_url": "https://images.rapgenius.com/727e2b38afd6daf878861a026a9b748f.1000x667x1.jpg" - }, - { - "name": "Emcee N.I.C.E.", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/94/Emcee_N.I.C.E..JPG" - }, - { - "name": "Eminem", - "image_url": "http://www.dopeshxtdaily.com/wp-content/uploads/2018/04/Eminem-Framed-3.jpg" - }, - { - "name": "Eric Biddines", - "image_url": "http://images1.miaminewtimes.com/imager/u/745xauto/9106282/eric-biddines-elliot-liss.jpg" - }, - { - "name": "Erick Arc Elliott", - "image_url": "http://www4.pictures.zimbio.com/gi/Erick+Elliott+Coachella+Valley+Music+Arts+DCw4bFEm-O4l.jpg" - }, - { - "name": "Erick Sermon", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/5a/12/e1/5a12e16dbad591b63da7eef19e59a11d.jpg" - }, - { - "name": "Eric Stanley", - "image_url": "https://i.scdn.co/image/0b3f8ab808d49b6c4b8a7d70a5bedf399a105377" - }, - { - "name": "Esham", - "image_url": "https://media2.fdncms.com/metrotimes/imager/mayor-esham-what/u/slideshow/2229545/esham_press3jpg" - }, - { - "name": "Esoteric", - "image_url": "https://i.ytimg.com/vi/Ekzu8upcHo0/maxresdefault.jpg" - }, - { - "name": "Eve", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/53/Eve_2011_cropped.jpg" - }, - { - "name": "Everlast", - "image_url": "http://www.latimes.com/resizer/ON_hgfI8nrImP_htAnzUnEpLUBE=/1400x0/arc-anglerfish-arc2-prod-tronc.s3.amazonaws.com/public/OUCVGT32CRHGVA3VJGMJB2PSC4.jpg" - }, - { - "name": "Evidence", - "image_url": "http://www.brutalmusic.org/wp-content/uploads/2012/02/evidence-rapper.jpg" - }, - { - "name": "Eyedea", - "image_url": "http://www.rapgrid.com/sites/default/files/rapper-photo/eyedea.jpg" - }, - { - "name": "Ghostface Killah", - "image_url": "https://fanart.tv/fanart/music/3b39abeb-0064-4eed-9ddd-ee47a45c54cb/artistbackground/ghostface-killah-5053b6c4a440f.jpg" - }, - { - "name": "Fabolous", - "image_url": "http://www.maybachmedia.com/wp-content/uploads/2018/03/emily-b-and-fabolous.jpg" - }, - { - "name": "Fabri Fibra", - "image_url": "http://static.nanopress.it/nanopress/fotogallery/843X0/80541/fabri-fibra-tatuaggi.jpg" - }, - { - "name": "Fam-Lay", - "image_url": "http://s3.amazonaws.com/rapgenius/1369303498_FamLay.jpg" - }, - { - "name": "Famous Dex", - "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2016/09/IMG_6195.jpg" - }, - { - "name": "Fashawn", - "image_url": "http://portlandmetrolive.com/wp-content/uploads/2015/02/Rapper-Fashawn-comes-to-Peter%E2%80%99s-Room.jpg" - }, - { - "name": "Fat Joe", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1437632.1377553895!/img/httpImage/image.jpg_gen/derivatives/article_970/83094393.jpg" - }, - { - "name": "Fat Pat", - "image_url": "http://s3.amazonaws.com/rapgenius/1363587723_Fat%20Pat%20fatpat.jpg" - }, - { - "name": "Fat Trel", - "image_url": "https://ioneglobalgrind.files.wordpress.com/2013/11/screen-shot-2013-11-07-at-3-48-54-pm.png" - }, - { - "name": "Fatboi", - "image_url": "https://www.sohh.com/wp-content/uploads/Fatboy-SSE.jpg" - }, - { - "name": "Father MC", - "image_url": "http://www.rapartists.com/_files/pictures/full/618_fathermc.jpg" - }, - { - "name": "Fatman Scoop", - "image_url": "http://d.ibtimes.co.uk/en/full/1577170/fatman-scoop.jpg" - }, - { - "name": "Fergie", - "image_url": "http://4everstatic.com/pictures/674xX/people/musicians/fergie,-singer,-music-134929.jpg" - }, - { - "name": "Fetty Wap", - "image_url": "http://image1.redbull.com/rbcom/010/2015-05-07/1331721730967_2/0010/1/1500/1000/2/fetty-wap.jpg" - }, - { - "name": "Fiend", - "image_url": "http://i1169.photobucket.com/albums/r502/ThaFixxDotCom/fiend.jpg" - }, - { - "name": "FLAME", - "image_url": "http://thefrontrowreport.com/wp-content/uploads/2012/08/flame2.jpg" - }, - { - "name": "Flavor Flav", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1185779.1350499171!/img/httpImage/image.jpg_gen/derivatives/landscape_635/flavor-flav.jpg" - }, - { - "name": "Flavour N'abania", - "image_url": "http://www.naijaolofofo.com/wp-content/uploads/2016/05/flavour.jpg" - }, - { - "name": "Flo Rida", - "image_url": "https://bossip.files.wordpress.com/2014/07/flo-rida.jpg" - }, - { - "name": "Flying Lotus", - "image_url": "http://exclaim.ca/images/flylo10.jpg" - }, - { - "name": "Focus...", - "image_url": "http://cdn5.hiphoplead.com/static/2011/07/focus.jpg" - }, - { - "name": "Fonzworth Bentley", - "image_url": "https://i.ytimg.com/vi/PKT8_mXk1-g/maxresdefault.jpg" - }, - { - "name": "Fort Minor", - "image_url": "http://4.bp.blogspot.com/_VVVnguvXP6s/S8tfaGjCefI/AAAAAAAAA0c/SfnVfFFEgjs/s1600/Fort%2BMinor.jpg" - }, - { - "name": "Foxx", - "image_url": "https://hiphollywood.com/wp-content/uploads/2018/04/946479462.jpg" - }, - { - "name": "Foxy Brown", - "image_url": "http://static.vibe.com/files/2017/03/foxy-brown-endorses-donald-trump-640x476-1488571302-640x476.jpg" - }, - { - "name": "Frank Ocean", - "image_url": "http://static.vibe.com/files/2017/03/frank-ocean-rapper-vibe-1489602237.jpg" - }, - { - "name": "Frankie J", - "image_url": "http://static.djbooth.net/pics-artist/frankiej.jpg" - }, - { - "name": "Frayser Boy", - "image_url": "http://trapsntrunks.com/wp-content/uploads/2017/07/motives-672x672.jpg" - }, - { - "name": "Freak Nasty", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/827/MI0003827380.jpg" - }, - { - "name": "Freaky Tah", - "image_url": "http://upload.wikimedia.org/wikipedia/en/9/9b/Freaky_Tah.jpg" - }, - { - "name": "Fred Durst", - "image_url": "http://trendliest.files.wordpress.com/2008/07/durst-fred-photo-xl-fred-durst-6209268.jpg" - }, - { - "name": "Freddie Foxxx", - "image_url": "http://grandgood.com/wordpress/wp-content/uploads/2008/06/freddie-foxxx.jpg" - }, - { - "name": "Freddie Gibbs", - "image_url": "http://www.networth2013.com/wp-content/uploads/2013/07/Frddie+Gibbs+VIP+Area+Governors+Ball+Day+3+p6VBOlpeThel.jpg" - }, - { - "name": "Fredo Santana", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/11/fredosantana.jpg" - }, - { - "name": "Fredro Starr", - "image_url": "http://ambrosiaforheads.com/wp-content/uploads/2014/02/Fredro-Starr-Sticky-Fingaz-610x400.jpg" - }, - { - "name": "Fredwreck", - "image_url": "http://www.beatmakingvideos.com/sites/default/files/producer_foto/fredwreck.jpg" - }, - { - "name": "Free", - "image_url": "http://www.whosampled.com/static/artist_images_200/lr2929_2010525_114148297125.jpg" - }, - { - "name": "Freekey Zekey", - "image_url": "https://1.bp.blogspot.com/-TSFhXxYHSZI/V8kVNFnN7TI/AAAAAAAAmJ8/GiIVH63gXwsxVIbWGZlYeVep9JhsPYgHQCK4B/w1200-h630-p-k-nu/freekey-zekey-net-worth.jpg" - }, - { - "name": "Freeway", - "image_url": "http://www.5pillarz.com/wp-content/uploads/2014/10/freeway1.jpg" - }, - { - "name": "French Montana", - "image_url": "https://lasentinel.net/wp-content/uploads/sites/5/2016/06/ENT-its-a-rap-french-montana2.jpg" - }, - { - "name": "Frenkie", - "image_url": "http://cps-static.rovicorp.com/3/JPG_500/MI0003/596/MI0003596298.jpg" - }, - { - "name": "Fresh Kid Ice", - "image_url": "https://zayzay.com/wp-content/uploads/2017/07/Rapper-Fresh-Kid-Ice-Of-%E2%80%982-Live-Crew%E2%80%99-Dead-At-53.jpg" - }, - { - "name": "Froggy Fresh", - "image_url": "http://i.ytimg.com/vi/4feIwig2AtA/0.jpg" - }, - { - "name": "Frost", - "image_url": "http://askkissy.com/wp-content/uploads/2015/09/EAZY-E-RAPPER-FROST.jpeg" - }, - { - "name": "Full Blooded", - "image_url": "https://i.skyrock.net/5301/5285301/pics/235349117_small.jpg" - }, - { - "name": "Funkmaster Flex", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/04/6a00d8341c4fe353ef01156ff9e8f1970c-800wi.jpg" - }, - { - "name": "Future", - "image_url": "http://www.thefamouspeople.com/profiles/images/future-1.jpg" - }, - { - "name": "Grandmaster Caz", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Grandmastercaz.jpg/1200px-Grandmastercaz.jpg" - }, - { - "name": "Grandmaster Flash", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/34/60/41/346041acd20fbe40c44b97a91c9a2a80.jpg" - }, - { - "name": "G-Dragon", - "image_url": "http://www.soompi.com/wp-content/uploads/a/t/7m/356158/356158.jpg" - }, - { - "name": "G-Eazy", - "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/14/16/4B18913E00000578-5615765-Cute_couple_The_New_Jersey_native_is_dating_rapper_G_Eazy_with_t-a-5_1523718500475.jpg" - }, - { - "name": "G. Dep", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.473448.1314633586!/img/httpImage/image.jpg_gen/derivatives/article_970/alg-g-dep-portrait-jpg.jpg" - }, - { - "name": "G Herbo", - "image_url": "http://www.datwav.com/wp-content/uploads/2017/04/G_Herbo_In_Studio-1024x683.jpg" - }, - { - "name": "Gaeko", - "image_url": "http://www.weekendnotes.co.uk/im/002/07/geko-rapper-tour-birmingham-academy-21.jpg" - }, - { - "name": "The Game", - "image_url": "http://images2.fanpop.com/images/photos/3600000/The-Game-the-game-rapper-3618562-1024-768.jpg" - }, - { - "name": "Gang Starr", - "image_url": "http://www.billboard.com/files/styles/promo_650/public/stylus/106631-Gangstarr-guru-617_409.jpg" - }, - { - "name": "Gangsta Blac", - "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Gangsta-Blac-Return-Of-The-Gangsta.jpg" - }, - { - "name": "Gangsta Boo", - "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/43439_lg.jpg" - }, - { - "name": "Ganksta N-I-P", - "image_url": "http://www.ugs4life.com/wp-content/uploads/2014/06/ganxsta-nip.png" - }, - { - "name": "Gary", - "image_url": "http://media-cache-ec0.pinimg.com/736x/1e/52/6c/1e526ce56e4e7a0d8ce5b588faa49102.jpg" - }, - { - "name": "Gee Money", - "image_url": "https://amonpointtv.com/wp-content/uploads/2017/09/ABCD1505228816.jpg" - }, - { - "name": "General Woo", - "image_url": "https://natasavajagic.files.wordpress.com/2008/11/dsc044672.jpg" - }, - { - "name": "Ghostface Killah", - "image_url": "https://fanart.tv/fanart/music/3b39abeb-0064-4eed-9ddd-ee47a45c54cb/artistbackground/ghostface-killah-5053b6c4a440f.jpg" - }, - { - "name": "Giggs", - "image_url": "http://4.bp.blogspot.com/-NLMOcLtTIgs/Tbidhpi_LpI/AAAAAAAAANY/4gL5Wzj4f1s/s1600/mytypeofhype_giggs_rapper-thumb.jpg" - }, - { - "name": "Gilbere Forte", - "image_url": "http://famousfamilybirthdaysbiofacts.com/BirthDayPersonality/Gilbere-Forte-Rapper-birhday-image.jpg" - }, - { - "name": "Glasses Malone", - "image_url": "http://siccness.net/wp/wp-content/uploads/2012/11/glasses-malone.jpg" - }, - { - "name": "GLC", - "image_url": "https://d.ibtimes.co.uk/en/full/1396199/mike-glc.jpg" - }, - { - "name": "Goldie Loc", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/88/03/67/8803675d722cc75dd4eb071ea1b9809d.jpg" - }, - { - "name": "GoldLink", - "image_url": "http://unbiasedwriter.com/wp-content/uploads/2014/10/GoldLink-rapper.jpg" - }, - { - "name": "Gorilla Zoe", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gorilla_zoe_picture.jpg/1200px-Gorilla_zoe_picture.jpg" - }, - { - "name": "Grafh", - "image_url": "http://static.djbooth.net/pics-artist/grafh.jpg" - }, - { - "name": "Grand Puba", - "image_url": "http://images.complex.com/complex/image/upload/t_article_image/akb1hkm8uzgscqwucuan.jpg" - }, - { - "name": "Grandmaster Caz", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Grandmastercaz.jpg/1200px-Grandmastercaz.jpg" - }, - { - "name": "Grandmaster Flash", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/34/60/41/346041acd20fbe40c44b97a91c9a2a80.jpg" - }, - { - "name": "Greydon Square", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/2/2e/TAM_6_-_Greydon_Square.jpg" - }, - { - "name": "Grieves", - "image_url": "http://thissongissick.com/blog/wp-content/uploads/2011/05/Grieves-Rapper-Bloody-Poetry.jpg" - }, - { - "name": "Gucci Mane", - "image_url": "https://www.amlu.com/wp-content/uploads/2018/04/rapper-gucci-mane-skips-three-year-waiting-list-and-gets-the-first-ferrari-812-superfast1.jpg" - }, - { - "name": "Gudda Gudda", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-gudda-gudda-singer-celebrity-rap.jpg" - }, - { - "name": "Guerilla Black", - "image_url": "http://i1-news.softpedia-static.com/images/news2/Rapper-Guerilla-Black-Arrested-for-Buying-and-Using-Stolen-Payment-Card-Details-2.jpg" - }, - { - "name": "Guilty Simpson", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-guilty-simpson-star-celebrity-rap.jpg" - }, - { - "name": "Gunplay", - "image_url": "http://www.passionweiss.com/wp-content/uploads/2015/07/gunplay-press2.jpg" - }, - { - "name": "Guru", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/7/72/Guru_%28rapper%29.jpg" - }, - { - "name": "GZA", - "image_url": "http://api.ning.com/files/Cr*mNN-mhgZVTnMO1Ax5ew2lFizHAFllT8mDVu1iYmXBixU5MNOvS6DzmIs82Yuhin8A2u0Hpk48uLC2goXSr74xqMAwQK5C/GZAMetro.jpg" - }, - { - "name": "Half a Mill", - "image_url": "http://www.kingsizemagazine.se/wp-content/uploads/2013/10/half-a-mill-S.jpg" - }, - { - "name": "Hard Kaur", - "image_url": "http://www.prokerala.com/news/photos/imgs/800/singer-rapper-hard-kaur-during-an-interview-at-440863.jpg" - }, - { - "name": "Hasan Salaam", - "image_url": "http://api.ning.com/files/2VGrzzXedu3*LX5VRoIFBZeWe8qqGJjpAxzb0ZR9giaHZEvLo8d8B7mpIcLrLmH5gmcJt8aUpyPHr2aVLVFxrlylSJByg*eO/HasanSalaam.jpg" - }, - { - "name": "Havoc", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/01/Prodigy.jpg" - }, - { - "name": "Heavy D", - "image_url": "http://www.guttaworld.com/wp-content/uploads/2011/12/obit-heavy-d.jpg" - }, - { - "name": "Hefe Heetroc", - "image_url": "https://1.bp.blogspot.com/-nmJ_Z8xC9Wg/V_GjdMvY_fI/AAAAAAAAAyQ/9hfGLMDGemgyOsjY5mM3XW9ul-3WCpGnQCLcB/s640/20160223_1125571.jpg" - }, - { - "name": "Heize", - "image_url": "http://cdn.koreaboo.com/wp-content/uploads/2016/12/heize.jpg" - }, - { - "name": "Hemlock Ernst", - "image_url": "http://static.stereogum.com/uploads/2015/09/rappingfutureislands1.png" - }, - { - "name": "Hi-C", - "image_url": "http://unitedgangs.files.wordpress.com/2013/11/hic_feb2005a.jpg" - }, - { - "name": "Hi-Tek", - "image_url": "http://thamidwest.com/wp-content/uploads/Hi-Tek.jpg" - }, - { - "name": "Hit-Boy", - "image_url": "http://3.bp.blogspot.com/-pzifRQd37EQ/TwaMSQmoOfI/AAAAAAAAA7s/YUaDMqmATM4/s1600/whiterapper.jpg" - }, - { - "name": "Hittman", - "image_url": "http://s3.amazonaws.com/hiphopdx-production/2014/11/Hittman_11-13-2014.jpg" - }, - { - "name": "Hodgy Beats", - "image_url": "http://www.rapburger.com/wp-content/uploads/2013/07/hodgy-beats-Godsss-free-download-1024x682.jpg" - }, - { - "name": "Honey Cocaine", - "image_url": "http://swaggarightentertainment.com/wp-content/uploads/2014/10/rapper-honey-cocaine.jpeg" - }, - { - "name": "Hoodie Allen", - "image_url": "http://conversationsabouther.net/wp-content/uploads/2014/10/Hoodie-Allen.jpg" - }, - { - "name": "Hopsin", - "image_url": "http://www.stasheverything.com/wp-content/uploads/2012/10/Hopsin-banner.jpg" - }, - { - "name": "Hot Dollar", - "image_url": "http://www.aceshowbiz.com/images/news/00010456.jpg" - }, - { - "name": "Huey", - "image_url": "http://images5.fanpop.com/image/photos/30200000/Huey-huey-rapper-30242374-1024-768.jpg" - }, - { - "name": "Hurricane Chris", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/c8/Hurricane_Chris.jpg" - }, - { - "name": "Hurricane G", - "image_url": "https://i.ytimg.com/vi/3pTO0lsjzco/maxresdefault.jpg" - }, - { - "name": "Hush", - "image_url": "https://www.gannett-cdn.com/-mm-/a691de1d2241d7baf1c60d5d31346451d4cd3669/c=0-236-1360-1004&r=x633&c=1200x630/local/-/media/2015/06/22/DetroitFreePress/DetroitFreePress/635705966302572023-Hush.jpg" - }, - { - "name": "Hussein Fatal", - "image_url": "https://pmchollywoodlife.files.wordpress.com/2015/07/hussein-fatal-rapper-dies-at-38-car-accident-lead.jpg" - }, - { - "name": "Ice Cube", - "image_url": "http://www.ultimatemovierankings.com/wp-content/uploads/2016/04/ice-cube-11111.jpg" - }, - { - "name": "I-20", - "image_url": "http://1.bp.blogspot.com/_IXe2z8hItAg/TBxH_T19eQI/AAAAAAAABX0/dFXw4HYqdqI/s1600/i20_self.jpg" - }, - { - "name": "Iamsu!", - "image_url": "http://media.gettyimages.com/photos/rapper-iamsu-arrives-at-ditch-fridays-at-palms-pool-dayclub-on-may-13-picture-id531300532" - }, - { - "name": "Ice Cube", - "image_url": "http://www.ultimatemovierankings.com/wp-content/uploads/2016/04/ice-cube-11111.jpg" - }, - { - "name": "Ice-T", - "image_url": "http://www.ireport.cz/images/ireport/clanky/Ice_T/ice-t.jpg" - }, - { - "name": "IDK", - "image_url": "https://static.highsnobiety.com/wp-content/uploads/2017/07/27163702/jay-idk-idk-interview-01-480x320.jpg" - }, - { - "name": "Iggy Azalea", - "image_url": "http://www.maybachmedia.com/wp-content/uploads/2018/04/Iggy-Azalea-Tyga.jpg" - }, - { - "name": "IHeartMemphis", - "image_url": "https://memphisrap.com/mr-uploads/2015/12/iLoveMemphis-rapper.jpg" - }, - { - "name": "Ill Bill", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Ill_Bill.jpg/1200px-Ill_Bill.jpg" - }, - { - "name": "Illmind", - "image_url": "http://media.charged.fm/media/file_5429de95c0e71.jpg" - }, - { - "name": "ILoveMakonnen", - "image_url": "http://s3-ak.buzzfeed.com/static/2014-08/13/14/enhanced/webdr11/enhanced-8028-1407955933-1.jpg" - }, - { - "name": "Immortal Technique", - "image_url": "http://www.digitaljournal.com/img/7/5/0/1/1/0/i/1/5/5/o/3534639765_39c888714b_b.jpg" - }, - { - "name": "Imran Khan", - "image_url": "http://bollyspice.com/wp-content/uploads/2014/12/14dec_Imran-Khan-singer.jpg" - }, - { - "name": "Indo G", - "image_url": "http://purple-drank.com/wp-content/uploads/2013/03/Indo-G-New.jpg" - }, - { - "name": "Inspectah Deck", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-inspectah-deck-celebrity-jacket-photo.jpg" - }, - { - "name": "Isaiah Rashad", - "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2014/06/xxl-freshman-2014-cypher-drama-cannon-lead.jpg" - }, - { - "name": "Iyanya", - "image_url": "https://4.bp.blogspot.com/-GeL-JX7MH2o/V4NryaxgfEI/AAAAAAAAIuw/KrtCr4Tp3cskgDG7QHHJ6M-Gvaz7a5AogCLcB/w1200-h630-p-k-no-nu/Iyanya.JPG" - }, - { - "name": "Iyaz", - "image_url": "http://muzicjunkies.com/wp-content/uploads/2014/10/slim2.jpg" - }, - { - "name": "Jay-Z", - "image_url": "http://th07.deviantart.net/fs70/PRE/f/2011/042/6/d/rapper___jay_z_by_rwpike-d39aevp.jpg" - }, - { - "name": "Kanye West", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.3936461.1523887222!/img/httpImage/image.jpg_gen/derivatives/article_750/604289829cc00020-kanye-west.jpg" - }, - { - "name": "Kendrick Lamar", - "image_url": "https://stupiddope.com/wp-content/uploads/2018/04/kendrick-lamar-damn-2018-pulitzer-prize-first-rapper-music.jpg" - }, - { - "name": "KRS-One", - "image_url": "http://ifihavent.files.wordpress.com/2007/07/krs_blaze02991.jpg" - }, - { - "name": "J Dilla", - "image_url": "http://www.stonesthrow.com/images/2012/DILLA_2.jpg" - }, - { - "name": "J-Diggs", - "image_url": "http://www.sierrasun.com/wp-content/uploads/2016/09/JDiggs-SSU-011415-1-244x325.jpg" - }, - { - "name": "J-Kwon", - "image_url": "http://hiphop-n-more.com/wp-content/uploads/2010/03/j-kwon-s02.jpg" - }, - { - "name": "J-Son", - "image_url": "https://i.ytimg.com/vi/SjV2lPTUB2o/maxresdefault.jpg" - }, - { - "name": "J. Cole", - "image_url": "http://www.rap-up.com/app/uploads/2018/04/j-cole-kod-cover.jpg" - }, - { - "name": "J. Stalin", - "image_url": "http://siccness.net/wp/wp-content/uploads/2015/10/stalin.jpg" - }, - { - "name": "J. Valentine", - "image_url": "http://cache2.asset-cache.net/gc/56850135-rapper-ll-cool-j-delivers-valentines-day-gettyimages.jpg" - }, - { - "name": "J.I.D", - "image_url": "http://www.musicfesttv.com/wp-content/uploads/2017/02/J.-Cole-Sign039s-Atlanta-Rapper-J.I.D.-To-Dreamville-1200x600.png" - }, - { - "name": "J.R. Rotem", - "image_url": "http://m2.paperblog.com/i/56/567622/j-r-rotem-beluga-heights-artist-of-the-week-L-9apUCg.jpeg" - }, - { - "name": "J.R. Writer", - "image_url": "http://static.djbooth.net/pics-artist/jrwriter.jpg" - }, - { - "name": "Ja Rule", - "image_url": "http://fanart.tv/fanart/music/b504f625-4ef6-4a5a-81e8-870a61e8dc9c/artistbackground/ja-rule-503dd1b16fcfa.jpg" - }, - { - "name": "Jack Parow", - "image_url": "http://sunelia89.files.wordpress.com/2012/11/parow_duck-manfred-werner-hr.jpg" - }, - { - "name": "The Jacka", - "image_url": "http://static.stereogum.com/uploads/2015/02/The-Jacka.jpg" - }, - { - "name": "Jackie Hill-Perry", - "image_url": "http://media.washtimes.com.s3.amazonaws.com/media/image/2014/10/27/10272014_jackie-3-color8201.jpg" - }, - { - "name": "Jadakiss", - "image_url": "https://hhvibe.files.wordpress.com/2010/02/jadakiss.jpg" - }, - { - "name": "Jaden Smith", - "image_url": "http://i.dailymail.co.uk/i/pix/2013/02/28/article-2285761-1856EF78000005DC-756_634x493.jpg" - }, - { - "name": "Jae Millz", - "image_url": "http://theboombox.com/files/2010/05/jae-millz-200ak051910.jpg" - }, - { - "name": "Jahlil Beats", - "image_url": "http://www3.pictures.zimbio.com/gi/Jahlil+Beats+BET+Hip+Hop+Awards+2012+Red+Carpet+8GcDsHs2IfRl.jpg" - }, - { - "name": "Jamie Madrox", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Jamie_Madrox_at_the_Abominationz_Tour.JPG/1200px-Jamie_Madrox_at_the_Abominationz_Tour.JPG" - }, - { - "name": "Jahred", - "image_url": "http://www.sportsgraphs.com/1314rampage4.jpg" - }, - { - "name": "Jake Miller", - "image_url": "http://thetriangle.org/wp-content/uploads/2013/11/Jake-Miller_Edgar-Estevez_WEB.jpg" - }, - { - "name": "Jake One", - "image_url": "http://www.nodfactor.com/wp-content/uploads/2013/11/Jake-One-Acid-Rain.png" - }, - { - "name": "Jam Master Jay", - "image_url": "http://ww3.hdnux.com/photos/10/27/41/2193534/5/920x920.jpg" - }, - { - "name": "Jamal", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.421164.1314528333!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-jamal-woolard-jpg.jpg" - }, - { - "name": "Jamal Woolard", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.421164.1314528333!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-jamal-woolard-jpg.jpg" - }, - { - "name": "Jamie Foxx", - "image_url": "https://hiphollywood.com/wp-content/uploads/2018/04/946479462.jpg" - }, - { - "name": "Jarren Benton", - "image_url": "https://ioneglobalgrind.files.wordpress.com/2015/02/photo-credit-funk-volume-extralarge_1408660385558.jpg" - }, - { - "name": "Jay Burna", - "image_url": "http://jamsphere.com/wp-content/uploads/2014/12/jay-burna-300.jpg" - }, - { - "name": "Jay Critch", - "image_url": "https://cdn.spinrilla.com/users/11645663/original/46d961baf0.jpg" - }, - { - "name": "Jay Electronica", - "image_url": "http://i.dailymail.co.uk/i/pix/2012/06/09/article-2156691-13845E1F000005DC-865_634x809.jpg" - }, - { - "name": "Jay Park", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/76/2a/65/762a65ec5adc664e7e7edc3c7f3ce526.jpg" - }, - { - "name": "Jay Rock", - "image_url": "http://rapsandhustles.com/wp-content/uploads/2012/04/jayrock.jpeg" - }, - { - "name": "Jay Z", - "image_url": "http://www.streetgangs.com/wp-content/uploads/2010/06/jay-z.jpg" - }, - { - "name": "Jayo Felony", - "image_url": "http://unitedgangs.files.wordpress.com/2013/12/jayo_felony.jpg" - }, - { - "name": "Jaz-O", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1c/Jaz-O--mika.jpg" - }, - { - "name": "Jazz Cartier", - "image_url": "http://respect-mag.com/wp-content/uploads/2018/04/1C6378F4-D2A9-4F48-93E8-AA47A154E54E.jpeg" - }, - { - "name": "Jazze Pha", - "image_url": "http://media.gettyimages.com/photos/music-producer-jazze-pha-rapper-heavy-d-and-dj-toomp-attend-tis-akoo-picture-id127898169" - }, - { - "name": "Jean Grae", - "image_url": "http://www.jayforce.com/wp-content/uploads/2011/03/jeangreen.jpg" - }, - { - "name": "Jeremiah Jae", - "image_url": "http://www.brooklynvegan.com/img/as/jeremiah-jae.jpg" - }, - { - "name": "Jeremih", - "image_url": "http://i2.wp.com/therighthairstyles.com/wp-content/uploads/2013/12/jeremih.jpg" - }, - { - "name": "Jermaine Dupri", - "image_url": "http://media.gettyimages.com/photos/rapper-jermaine-dupri-poses-for-photos-at-the-swissotel-in-chicago-picture-id145014316" - }, - { - "name": "Jeru the Damaja", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Out4Fame-Festival_2016_-_Jeru_the_Damaja.JPG/1200px-Out4Fame-Festival_2016_-_Jeru_the_Damaja.JPG" - }, - { - "name": "Jewell", - "image_url": "http://www.celebpronto.com/wp-content/uploads/2010/08/jewel11.jpg" - }, - { - "name": "Jibbs", - "image_url": "http://rapdirt.com/images/misc/Jibbs_0306f.jpg" - }, - { - "name": "Jim Jones", - "image_url": "http://www.networth2013.com/wp-content/uploads/2013/08/Jim-Jones-Rapper.jpg" - }, - { - "name": "Jim Jonsin", - "image_url": "http://www.networth2013.com/wp-content/uploads/2013/08/Jim-Jones-Rapper.jpg" - }, - { - "name": "Jipsta", - "image_url": "http://getoutmag.com/wp-content/uploads/2011/10/jipsta.jpg" - }, - { - "name": "Jme", - "image_url": "http://conversationsabouther.net/wp-content/uploads/2015/09/Jme.jpg" - }, - { - "name": "Joe Budden", - "image_url": "http://dailyentertainmentnews.com/wpgo/wp-content/uploads/2014/08/rapper-joe-budden-girlfriend-Audely-Robles.jpg" - }, - { - "name": "Joell Ortiz", - "image_url": "https://movesmusic.files.wordpress.com/2015/01/joell.jpg" - }, - { - "name": "Joey Badass", - "image_url": "https://www.thestar.com/content/dam/thestar/news/gta/2017/08/24/rapper-joey-bada-cancels-toronto-show-after-staring-at-eclipse/joey-badass.jpg.size.custom.crop.1086x724.jpg" - }, - { - "name": "John Cena", - "image_url": "http://www.picshunger.com/wp-content/uploads/2014/04/Rap.jpg" - }, - { - "name": "Johnny J", - "image_url": "http://media.rapnews.net/ArtistPics/JohnnyJ_rnn.jpg" - }, - { - "name": "Johntá Austin", - "image_url": "http://www.rap-up.com/app/uploads/2010/05/johnta-austin.jpg" - }, - { - "name": "Joji Miller", - "image_url": "http://pre11.deviantart.net/2640/th/pre/i/2016/122/1/8/joji_miller__filthy_frank__by_shuploc-da122fv.jpg" - }, - { - "name": "Jon Connor", - "image_url": "http://s3.amazonaws.com/rapgenius/jonconnor.png" - }, - { - "name": "Joyner Lucas", - "image_url": "https://www.sohh.com/wp-content/uploads/Joyner-Lucas-1.png" - }, - { - "name": "JT Money", - "image_url": "http://purple-drank.com/wp-content/uploads/2013/06/JT-Money-New.jpg" - }, - { - "name": "JT the Bigga Figga", - "image_url": "http://a1yola.com/wp-content/uploads/2010/10/JT-The-Bigga-Figga-Dwellin-In-Tha-Labb1-e1299005670778.jpg" - }, - { - "name": "Juelz Santana", - "image_url": "http://ll-media.tmz.com/2016/12/12/1212-juelz-santana-instagram-3.jpg" - }, - { - "name": "Juice (Đus)", - "image_url": "http://images.genius.com/37b135c1e081633b01d3b09bf4e785ed.600x600x1.png" - }, - { - "name": "Juicy J", - "image_url": "http://www.beyondblackwhite.com/wp-content/uploads/2014/01/Juicy-j-cup-1.png" - }, - { - "name": "Junhyung", - "image_url": "http://stuffpoint.com/kpopshineecnbluesujubapexoetc/image/378408-kpopshineecnbluesujub-a-pexoetc-rapper-junhyung.jpg" - }, - { - "name": "Jus Allah", - "image_url": "http://farm5.staticflickr.com/4014/5169574228_84ff1a04f4_z.jpg" - }, - { - "name": "Just Ice", - "image_url": "https://images.genius.com/608c268dba94e441e3f19c1e46207413.879x876x1.jpg" - }, - { - "name": "Juvenile", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/club937.com/files/2012/08/56688577-630x418.jpg" - }, - { - "name": "Kurtis Blow", - "image_url": "http://is4.mzstatic.com/image/thumb/Music/v4/69/fd/9f/69fd9f31-d152-c8ba-57be-80308d6b5d0c/source/1200x1200sr.jpg" - }, - { - "name": "Lauryn Hill", - "image_url": "http://images.musictimes.com/data/images/full/75871/lauryn-hill-tour.jpg" - }, - { - "name": "K Camp", - "image_url": "http://www2.pictures.zimbio.com/gi/K+Camp+American+Authors+Visit+Music+Choice+Furxjl-IhJ7l.jpg" - }, - { - "name": "K'naan", - "image_url": "http://images2.fanpop.com/image/photos/13600000/Stock-Knaan-on-twitter-knaan-club-13681875-483-570.jpg" - }, - { - "name": "K-Dee", - "image_url": "https://i.ytimg.com/vi/ovfrEfeqjf0/hqdefault.jpg" - }, - { - "name": "K-OS", - "image_url": "http://torontorappers.com/newsite/wp-content/uploads/2016/08/k-os-rapper.jpg" - }, - { - "name": "K-Solo", - "image_url": "http://freshnewsbysteph.com/wp-content/uploads/2011/07/k-solo.jpg" - }, - { - "name": "K.E. on the Track", - "image_url": "https://akpopworld.files.wordpress.com/2015/08/sik-k.jpg" - }, - { - "name": "K7", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0001/792/MI0001792148.jpg" - }, - { - "name": "Kafani", - "image_url": "http://gossip-grind.com/wp-content/uploads/2014/09/image18.jpg" - }, - { - "name": "Kam", - "image_url": "http://3.bp.blogspot.com/_qqc1V4I4JkY/RiKG8DfqsLI/AAAAAAAABmU/e7zmHRlRL9M/kam2.jpg" - }, - { - "name": "Kangol Kid", - "image_url": "http://cache4.asset-cache.net/gc/141797166-rapper-kangol-kid-attends-the-back-to-the-gettyimages.jpg" - }, - { - "name": "Kanye West", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.3936461.1523887222!/img/httpImage/image.jpg_gen/derivatives/article_750/604289829cc00020-kanye-west.jpg" - }, - { - "name": "Kap G", - "image_url": "http://remezcla.com/wp-content/uploads/2016/04/kap-g-2016-e1466531632221.jpg" - }, - { - "name": "Kardinal Offishall", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-kardinal-offishall-fame-rap-singer.jpg" - }, - { - "name": "Kastro", - "image_url": "https://i.ytimg.com/vi/tV66DD_rxNU/maxresdefault.jpg" - }, - { - "name": "Kat Dahlia", - "image_url": "http://static.djbooth.net/pics-artist/katdahlia.jpg" - }, - { - "name": "Katie Got Bandz", - "image_url": "http://moodswingmgmt.com/wp-content/uploads/2013/10/Katie_Main.jpg" - }, - { - "name": "KB", - "image_url": "http://www.rapzilla.com/rz/images/kbillboard.jpg" - }, - { - "name": "Keak da Sneak", - "image_url": "http://theboombox.com/files/2017/01/Keak-Da-Sneak-Shot.jpg" - }, - { - "name": "Keith Ape", - "image_url": "http://conversationsabouther.net/wp-content/uploads/2016/08/Keith-Ape.jpg" - }, - { - "name": "Keith Murray", - "image_url": "http://mrdaveyd.files.wordpress.com/2010/10/keith-murray.jpg" - }, - { - "name": "Malcolm David Kelley", - "image_url": "http://cdn.cnwimg.com/searchThumb/wp-content/uploads/2014/09/Malcolm-David-Kelley.jpg" - }, - { - "name": "Kendrick Lamar", - "image_url": "https://stupiddope.com/wp-content/uploads/2018/04/kendrick-lamar-damn-2018-pulitzer-prize-first-rapper-music.jpg" - }, - { - "name": "Kent Jones", - "image_url": "http://static.vibe.com/files/2015/12/kent-jones-binishPR.jpg" - }, - { - "name": "Kerser", - "image_url": "http://dailyurbanculture.com/wp-content/uploads/2014/07/3.13.jpg" - }, - { - "name": "Kevin Abstract", - "image_url": "http://images.greenlabel.com/assets/2015/09/kevin-abstract-2.jpg" - }, - { - "name": "Kevin Gates", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/73/db/e4/73dbe4857b26434fdfaab15b98a622de.jpg" - }, - { - "name": "Kevin McCall", - "image_url": "http://resources3.news.com.au/images/2013/04/29/1226631/457575-kevin-mccall.jpg" - }, - { - "name": "Khia", - "image_url": "http://planetill.com/wp-content/uploads/2012/01/Khia.jpg" - }, - { - "name": "Khleo", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/2b/fb/f7/2bfbf784203a8fbd7a032c6eb77cbaef.jpg" - }, - { - "name": "Kia Shine", - "image_url": "http://i1.ytimg.com/vi/8OZx1vK4PNE/maxresdefault.jpg" - }, - { - "name": "Kid Capri", - "image_url": "https://s3.amazonaws.com/battlerap-production/2014/08/rsz_caprirsz.jpg" - }, - { - "name": "Kid Cudi", - "image_url": "http://www.stasheverything.com/wp-content/uploads/2013/04/Kid-Cudi-pic.jpg" - }, - { - "name": "Kid Frost", - "image_url": "http://media-cache-ak0.pinimg.com/736x/8f/36/61/8f3661da395898b46c6c3c84ce4ecef1.jpg" - }, - { - "name": "Kid Ink", - "image_url": "http://chekadigital.co.za/wp-content/uploads/2013/03/kid-ink.jpg" - }, - { - "name": "Kid Rock", - "image_url": "http://www.feelnumb.com/wp-content/uploads/2011/02/gallery0219.jpg" - }, - { - "name": "Kid Sister", - "image_url": "http://s3.amazonaws.com/rapgenius/jpg_Kid_Sister__MG_2600copy2.jpg" - }, - { - "name": "Kidd Kidd", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.2284876.1436323996!/img/httpImage/image.jpg_gen/derivatives/article_750/webconfitems78f-1-web.jpg" - }, - { - "name": "Killah Priest", - "image_url": "http://media-cache-ak0.pinimg.com/736x/ce/9a/5c/ce9a5c2abde75b828adae9b87dc8e020.jpg" - }, - { - "name": "Killer Mike", - "image_url": "http://www.findnews.co.uk/wp-content/uploads/2018/03/killer-mike-rapper-defends-gun-ownership-in-nra-video.jpg" - }, - { - "name": "Kilo Ali", - "image_url": "http://straightfromthea.com/wp-content/uploads/2014/09/KiloAli.jpg" - }, - { - "name": "King Chip", - "image_url": "http://jasperdowney.files.wordpress.com/2013/09/king-chip.jpg" - }, - { - "name": "King Gordy", - "image_url": "https://s3.amazonaws.com/rapgenius/King%20Gordy%2051.jpg" - }, - { - "name": "King L", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2012/11/king-l-456-11212.jpg" - }, - { - "name": "King Tee", - "image_url": "http://siccness.net/wp/wp-content/uploads/2015/03/king-t.jpeg" - }, - { - "name": "Kirk Knight", - "image_url": "https://s3.amazonaws.com/rapgenius/dsc_0086.jpg" - }, - { - "name": "Kirko Bangz", - "image_url": "http://api.ning.com/files/SVfVaVsl8W2HxUovnHG5eBzdyEzEx0OOHA5U4cWbuT8ShSldd7ZKPKOi2RnF*LScvMps4AXVqwGVzjyDRdPbhW**MOzSt8V3/151263619.jpg" - }, - { - "name": "Kitty", - "image_url": "http://www.mxdwn.com/wp-content/uploads/2014/06/kitty-pryde2-580x386.jpg" - }, - { - "name": "KJ-52", - "image_url": "http://www.vegasnews.com/wp-content/uploads/KJ-52-570.jpg" - }, - { - "name": "Knero", - "image_url": "https://upload.wikimedia.org/wikipedia/en/a/a8/Knero_performing_during_the_Liberian_Independent_Celebration.jpg" - }, - { - "name": "Knoc-turn'al", - "image_url": "http://images.artistdirect.com/Images/artd/amg/music/bio/1640940_knocturnal_200x200.jpg" - }, - { - "name": "KO", - "image_url": "http://hbr.co.ke/wp-content/uploads/2015/09/K.O-CARACARA-RAPPER-HIP-HOP-MUSIC.jpg" - }, - { - "name": "KOHH", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/6a/1a/12/6a1a128849b04dfde612195054e9568d.jpg" - }, - { - "name": "Kodak Black", - "image_url": "https://media.nbcnewyork.com/images/1200*675/kodakblackout1.jpg" - }, - { - "name": "Kokane", - "image_url": "http://images1.laweekly.com/imager/kokane/u/original/5095855/kokane.jpg" - }, - { - "name": "Kool A.D", - "image_url": "http://s3.amazonaws.com/rapgenius/1362185468_Kool-AD-Okayplayer-interview2.jpg" - }, - { - "name": "Kool G Rap", - "image_url": "http://www.howtorapbook.com/wp-content/uploads/2015/07/040511-music-kool-g-rap.png" - }, - { - "name": "Kool Keith", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-kool-keith-hip-hop-celebrity-star.jpg" - }, - { - "name": "Kool Moe Dee", - "image_url": "https://s3.amazonaws.com/rapgenius/kool_moe_dee.jpg" - }, - { - "name": "Koolade", - "image_url": "http://media-cache-ak0.pinimg.com/736x/48/d5/96/48d596e5d2914e055459440cd92cd802.jpg" - }, - { - "name": "Krayzie Bone", - "image_url": "http://articlebio.com/uploads/bio/2016/03/23/krayzie-bone.jpg" - }, - { - "name": "Kreayshawn", - "image_url": "http://thesuperslice.com/wp-content/uploads/2011/05/Kreayshawn-03.jpg" - }, - { - "name": "Krizz Kaliko", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-krizz-kaliko-hip-hop-star-celebrity.jpg" - }, - { - "name": "KRS-One", - "image_url": "http://ifihavent.files.wordpress.com/2007/07/krs_blaze02991.jpg" - }, - { - "name": "Kung Fu Vampire", - "image_url": "https://kungfuvampire.com/wp-content/uploads/2015/03/KFV-Love-Bites_cover1200x1200.jpeg" - }, - { - "name": "Kurious", - "image_url": "http://theciphershow.com/image/uploads/kurious.jpg" - }, - { - "name": "Kurtis Blow", - "image_url": "http://is4.mzstatic.com/image/thumb/Music/v4/69/fd/9f/69fd9f31-d152-c8ba-57be-80308d6b5d0c/source/1200x1200sr.jpg" - }, - { - "name": "Kurupt", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/1/19/Kurupt_Young_Gotti_in_Abu_Dhabi.jpg" - }, - { - "name": "Kutt Calhoun", - "image_url": "http://cdn.ticketfly.com/i/00/02/01/08/95-atxl.jpg" - }, - { - "name": "Kwamé", - "image_url": "http://3.bp.blogspot.com/-jgNTkFb4SrQ/UD5DgQgbdPI/AAAAAAAAAJI/13r9_kMiDkY/s1600/kwame_classic1.jpg" - }, - { - "name": "Kyle", - "image_url": "http://www.dailypublic.com/sites/default/files/2015/Apr/kyle.jpg" - }, - { - "name": "Lil' Kim", - "image_url": "http://4.bp.blogspot.com/-EngYxv2jBPA/UTknA4a939I/AAAAAAAAzBU/nb9YucfMRzs/s1600/41.jpg" - }, - { - "name": "Lil Wayne", - "image_url": "http://matchmusik.files.wordpress.com/2012/01/lil-wayne.jpg" - }, - { - "name": "L.T. Hutton", - "image_url": "http://www1.pictures.zimbio.com/gi/L+T+Hutton+Tupac+Production+Celebration+Santa+0yDUOUDKzhxl.jpg" - }, - { - "name": "La Chat", - "image_url": "http://uptwnxs.com/wp-content/uploads/2013/09/lachat.png" - }, - { - "name": "La the Darkman", - "image_url": "http://cdn5.hiphoplead.com/static/2010/02/la-the-darkman2.jpg" - }, - { - "name": "Lady Luck", - "image_url": "http://www.rapgrid.com/sites/default/files/rapper-photo/lady-luck.jpg" - }, - { - "name": "The Lady of Rage", - "image_url": "https://static1.squarespace.com/static/520ed800e4b0229123208764/526f4c76e4b0096d44b292ac/526f4c78e4b0096d44b292ad/1383025791721/1.jpg" - }, - { - "name": "Lakey The Kid", - "image_url": "http://nahright.com/wp-content/uploads/2014/10/Lakey.jpg" - }, - { - "name": "Lakim Shabazz", - "image_url": "http://uniqueheat.files.wordpress.com/2011/09/lakim-shabazz-11.jpg" - }, - { - "name": "Lakutis", - "image_url": "http://first-avenue.com/sites/default/files/styles/medium/public/images/performers/lakutis11.jpg" - }, - { - "name": "Large Professor", - "image_url": "http://www.hiphopnometry.org/wp-content/uploads/2015/03/download.jpg" - }, - { - "name": "Lauryn Hill", - "image_url": "http://images.musictimes.com/data/images/full/75871/lauryn-hill-tour.jpg" - }, - { - "name": "Lazarus", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/d/dc/Lazarus_%28rapper%29.jpeg" - }, - { - "name": "LE", - "image_url": "http://hiphopenquirer.com/wp-content/uploads/2013/01/le.jpg" - }, - { - "name": "Lecrae", - "image_url": "http://blog.beliefnet.com/wholenotes/files/2012/06/Lecrae1.jpg" - }, - { - "name": "Left Brain", - "image_url": "http://s3.amazonaws.com/rapgenius/tumblr_m81jhwwa8m1qa42jro1_1280.jpg" - }, - { - "name": "Lex Luger", - "image_url": "http://static01.nyt.com/images/2011/11/06/magazine/06luger/06luger-popup-v2.jpg" - }, - { - "name": "Lil' B", - "image_url": "http://celebrityinsider.org/wp-content/uploads/2018/04/Cardi-B-Nicki-Minaj-Lil-Scrappy.jpg" - }, - { - "name": "Lil' Bibby", - "image_url": "http://www.billboard.com/files/styles/article_main_image/public/media/462817929-rapper-lil-bibby-enters-the-sirius-xm-650.jpg" - }, - { - "name": "Lil' Debbie", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/4/42/Lil_Debbie_on_March_14%2C_2013.jpg" - }, - { - "name": "Lil' Dicky", - "image_url": "http://b-sides.tv/wp-content/uploads/2015/10/lil-dicky.jpg" - }, - { - "name": "Lil' Durk", - "image_url": "http://www.trbimg.com/img-5693fc6e/turbine/ct-chicago-rapper-lil-durk-announces-tour-drops-new-video-20160111" - }, - { - "name": "Lil' Eazy-E", - "image_url": "http://s3.amazonaws.com/hiphopdx-production/2014/09/Lil-Eazy-E_09-05-2014.jpg" - }, - { - "name": "Lil' Flip", - "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2010/12/083011-lil-flip-lil-flip.png" - }, - { - "name": "Lil' Herb", - "image_url": "https://urbanstylzclothing.files.wordpress.com/2015/09/herb.jpg" - }, - { - "name": "Lil' Jon", - "image_url": "http://s3.amazonaws.com/rapgenius/lil-jon-w.jpg" - }, - { - "name": "Lil' Joseph", - "image_url": "http://beardfist.com/images/lil_joseph.png" - }, - { - "name": "Lil' Mama", - "image_url": "http://images2.fanpop.com/image/photos/11900000/Lil-Mama-3-female-rappers-11934192-440-348.jpg" - }, - { - "name": "Lil' Peep", - "image_url": "http://www.sobrietyresources.org/wp-content/uploads/2017/11/Lil-Peep-920x584.jpg" - }, - { - "name": "Lil' Phat", - "image_url": "http://api.ning.com/files/pQ8PE*Dabum6BY5-C2af3tLPWvIZgBdgFHHT*JOkvQAU8VjVm9v*Tl*M5TmfXHOqV4ji67tMnQY9zl7p-2QdcmKmsJPGcl6Y/WTFRussianMobsterChargedInTheMurderOfRapperLilPhatAtAtlantaHospitalInAOrderedShootingVideoInside.jpg" - }, - { - "name": "Lil' Pump", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2017/05/170530-Lil-Pump-800x600.jpg" - }, - { - "name": "Lil' Reese", - "image_url": "https://assets.dnainfo.com/generated/chicago_photo/2013/06/tavares-taylor-1372019233.jpg/extralarge.jpg" - }, - { - "name": "Lil' Ric", - "image_url": "http://a1yola.com/wp-content/uploads/2010/10/Lil-Ric.jpg" - }, - { - "name": "Lil' Ru", - "image_url": "http://authenticcore.files.wordpress.com/2009/06/lil-ru.jpg" - }, - { - "name": "Lil' Scrappy", - "image_url": "http://www.memphisrap.com/mr-uploads/2014/04/Lil-Scrappy-rapper-photo.jpg" - }, - { - "name": "Lil' Skies", - "image_url": "http://dailychiefers.com/wp-content/media/2017/08/Screen-Shot-2017-08-14-at-1.47.54-PM-1160x1088.png" - }, - { - "name": "Lil' Twist", - "image_url": "http://static.vibe.com/files/2015/03/Lil-Twist.jpg" - }, - { - "name": "Lil' Uzi Vert", - "image_url": "https://static.vibe.com/files/2017/05/Lil-Uzi-Vert-photo-1494953208-640x635.jpg" - }, - { - "name": "Lil' Wayne", - "image_url": "http://matchmusik.files.wordpress.com/2012/01/lil-wayne.jpg" - }, - { - "name": "Lil' Wyte", - "image_url": "https://bloximages.chicago2.vip.townnews.com/siouxcityjournal.com/content/tncms/assets/v3/editorial/f/16/f16599f8-8e54-5711-bb60-dae0d43f7a57/4f20871f57f10.image.jpg" - }, - { - "name": "Lil' Xan", - "image_url": "http://dailychiefers.com/wp-content/media/2017/05/lil-xan-1160x1119.png" - }, - { - "name": "Lil' Yachty", - "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/09/4B34F62B00000578-5620125-To_celebrate_her_15th_birthday_rapper_Danielle_Bregoli_released_-a-23_1523865744678.jpg" - }, - { - "name": "Lil' Zane", - "image_url": "http://eotm.files.wordpress.com/2010/07/lil_zane_677x600.jpg" - }, - { - "name": "Lil' Cease", - "image_url": "http://www1.pictures.zimbio.com/gi/Lil+Cease+Celebs+BET+Networks+New+York+Upfront+MTLFBnBGM_Gl.jpg" - }, - { - "name": "Lil' Fizz", - "image_url": "http://img.spokeo.com/public/900-600/lil_fizz_2007_07_10.jpg" - }, - { - "name": "Lil' Flip", - "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2010/12/083011-lil-flip-lil-flip.png" - }, - { - "name": "Lil' Keke", - "image_url": "http://rapdose.com/wp-content/uploads/2014/04/Lil-Keke.jpg" - }, - { - "name": "Lil' Kim", - "image_url": "http://4.bp.blogspot.com/-EngYxv2jBPA/UTknA4a939I/AAAAAAAAzBU/nb9YucfMRzs/s1600/41.jpg" - }, - { - "name": "Lil' O", - "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Lil-O-Grind-Hard-Pray-Harder.jpg" - }, - { - "name": "Lil' Ronnie", - "image_url": "http://s3.amazonaws.com/hiphopdx-production/2016/10/Lil-Ronny-Instagram-e1477254471301-824x620.jpg" - }, - { - "name": "Lil' Troy", - "image_url": "http://photos1.blogger.com/x/blogger/2167/1769/1600/398335/liltroy.jpg" - }, - { - "name": "Lil' Wil", - "image_url": "http://www.rap-up.com/app/uploads/2018/04/lil-uzi-vert-japan.jpg" - }, - { - "name": "Lin Que", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/LinQue_5287-theOne.jpg/220px-LinQue_5287-theOne.jpg" - }, - { - "name": "Lisa Lopes", - "image_url": "http://images.rapgenius.com/3c8e978c534d938aa60f47229515ee66.527x600x1.jpg" - }, - { - "name": "LL Cool J", - "image_url": "http://media.npr.org/assets/img/2012/08/23/ll-cool-j_sq-ad8a68251f21a82c02dec641aad124d6b4de1ca0-s6-c30.jpg" - }, - { - "name": "Lloyd Banks", - "image_url": "https://www.bet.com/music/2018/03/17/lloyd-banks/_jcr_content/image.large2x1image.dimg/__1521337827454__1521335807971/031718-music-lloyd-banks.jpg" - }, - { - "name": "Locksmith", - "image_url": "http://api.ning.com/files/J*jFKCPdofWd1tPJxEdhL67p02O8suSNVExOVE0sZ0Gr*i9CA1T6aus8mXwgRx-xZODjLxtX5Am03SCXd8YZS1dm-MQZU*rN/locksmith.PNG" - }, - { - "name": "Logic", - "image_url": "http://hiphopnewssource.com/wp-content/uploads/2015/01/Logic-rapper.jpg" - }, - { - "name": "LoLa Monroe", - "image_url": "http://talkingpretty.com/wp-content/uploads/2011/12/Lola_Monroe.jpg" - }, - { - "name": "London On Da Track", - "image_url": "http://image1.redbull.com/rbcom/010/2017-02-27/1331846909916_2/0010/1/1500/1000/2/rapper-pell-and-producer-london-on-da-track.jpg" - }, - { - "name": "Loon", - "image_url": "http://rollingout.com/wp-content/uploads/2013/07/loon.jpg" - }, - { - "name": "Lord Finesse", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2012/07/lordfinesse.jpg" - }, - { - "name": "Lord Have Mercy", - "image_url": "http://4.bp.blogspot.com/-e0M8qmkHdr4/T-OOzru_EbI/AAAAAAAAB4c/b2Xzs3Uhx2M/s1600/lord-have-mercy-black-n-white.jpg" - }, - { - "name": "Lord Infamous", - "image_url": "http://www.aceshowbiz.com/images/news/lord-infamous-of-three-6-mafia-died-at-40.jpg" - }, - { - "name": "Lord Jamar", - "image_url": "http://insidejamarifox.com/wp-content/uploads/2013/09/LORDJAMAR.jpg" - }, - { - "name": "Los", - "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2014/03/los-rapper.jpeg" - }, - { - "name": "Louis Logic", - "image_url": "http://www.mvremix.com/urban/interviews/images/l_l.jpg" - }, - { - "name": "Lovebug Starski", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/12/Starski.jpg" - }, - { - "name": "LoveRance", - "image_url": "http://www.famousbirthdays.com/thumbnails/loverance-medium.jpg" - }, - { - "name": "Lowkey", - "image_url": "https://www.thecanary.co/wp-content/uploads/2018/04/Rapper-Lowkey-on-Going-Underground-770x403.jpg" - }, - { - "name": "LRoc", - "image_url": "https://i1.wp.com/www.respectmyregion.com/wp-content/uploads/2015/07/unnamed1-e1438370960295.jpg" - }, - { - "name": "Ludacris", - "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/ludacris.jpg" - }, - { - "name": "Luis Resto", - "image_url": "http://images.genius.com/1555dd4015e93a37e901dd6bbcf8fd94.502x502x1.jpg" - }, - { - "name": "Luni Coleone", - "image_url": "http://hw-static.worldstarhiphop.com/pics/images/tp/2lieagk.jpg" - }, - { - "name": "Lupe Fiasco", - "image_url": "http://2.bp.blogspot.com/-sB8Ufk5JalU/TnVCVMu-QaI/AAAAAAAAGZk/ih8up0ox8AA/s1600/lupe_fiasco.jpg" - }, - { - "name": "Luther Campbell", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/55/bf/a2/55bfa20740ef48b87c79db4bf83045e6.jpg" - }, - { - "name": "MC Lyte", - "image_url": "http://www2.pictures.zimbio.com/gi/MC+Lyte+Soul+Train+Awards+2012+Glade+Suite+pwqWuYKKQkwl.jpg" - }, - { - "name": "Melle Mel", - "image_url": "http://www4.pictures.zimbio.com/gi/Melle+Mel+GRAMMY+Nominations+Concert+Live+uqqOc_pgcOKl.jpg" - }, - { - "name": "MF Doom", - "image_url": "http://1.bp.blogspot.com/-sV6R16-qWxo/Tm6ZhYV7_aI/AAAAAAAAACI/Hh6dPl1H2L0/s1600/MF%2BDOOM.jpg" - }, - { - "name": "M Trill", - "image_url": "http://www.iwantairplay.com/artist/img/201011041288886539_mtrill%202.jpg" - }, - { - "name": "M-1", - "image_url": "http://i.huffpost.com/gen/2559626/images/o-M1-RAPPER-facebook.jpg" - }, - { - "name": "M.I.A.", - "image_url": "http://media.santabanta.com/newsite/cinemascope/feed/mia20.jpg" - }, - { - "name": "Mac", - "image_url": "http://s3.amazonaws.com/rapgenius/Earlly.jpg" - }, - { - "name": "Mac Dre", - "image_url": "http://s3.amazonaws.com/rapgenius/10683a596c9b82548291.jpg" - }, - { - "name": "Mac Lethal", - "image_url": "http://i.ytimg.com/vi/UV-q4q66SAQ/maxresdefault.jpg" - }, - { - "name": "Mac Mall", - "image_url": "http://s3.amazonaws.com/rapgenius/DSC_2267a.jpg" - }, - { - "name": "Mac Miller", - "image_url": "http://s3.amazonaws.com/rapgenius/1357230347_MacMiller.jpg" - }, - { - "name": "Mac Minister", - "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:3088181" - }, - { - "name": "Machine Gun Kelly", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Machine_Gun_Kelly.jpg/1200px-Machine_Gun_Kelly.jpg" - }, - { - "name": "Mack 10", - "image_url": "http://s3.amazonaws.com/rapgenius/1368457732_77476E77A10496D1F7CAD8DC2CBA9F72.jpg" - }, - { - "name": "Mack Maine", - "image_url": "http://www1.pictures.zimbio.com/gi/Cash+Money+Records+Lil+Wayne+Album+Release+4Y_9ed0dAwal.jpg" - }, - { - "name": "Macklemore", - "image_url": "http://cdn1.bostonmagazine.com/wp-content/uploads/2013/10/macklemore-boston-rappers.jpg" - }, - { - "name": "Mad Lion", - "image_url": "http://ring.cdandlp.com/oldiers/photo_grande/114795296.jpg" - }, - { - "name": "Madchild", - "image_url": "http://i1.wp.com/www.ballerstatus.com/wp-content/uploads/2013/07/madchild.jpg" - }, - { - "name": "Madlib", - "image_url": "http://www.stasheverything.com/wp-content/uploads/2012/08/madlib.jpg" - }, - { - "name": "Maejor Ali", - "image_url": "http://www.rap-up.com/app/uploads/2014/10/maejor-ali-team.jpg" - }, - { - "name": "Magic", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2013/03/mrmagic.jpg" - }, - { - "name": "Magneto Dayo", - "image_url": "http://images1.laweekly.com/imager/magneto-dayo/u/original/4246159/dayophoto.jpg" - }, - { - "name": "Magnolia Shorty", - "image_url": "http://img.wennermedia.com/social/rs-896-rectangle.jpg" - }, - { - "name": "Maino", - "image_url": "https://fanart.tv/fanart/music/2c2cc2fe-0dcf-4995-8199-91fd5f159323/artistbackground/maino-50a1d2727401b.jpg" - }, - { - "name": "Manafest", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-manafest-celebrity-rap-singer.jpg" - }, - { - "name": "Mann", - "image_url": "https://ipeoplewatch.files.wordpress.com/2010/11/mann.png" - }, - { - "name": "Mannie Fresh", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/08/Mannie-Fresh-3.jpg" - }, - { - "name": "Marčelo", - "image_url": "http://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Mar%C4%8Delo_2008.jpg/600px-Mar%C4%8Delo_2008.jpg" - }, - { - "name": "Mariah Carey", - "image_url": "http://37.media.tumblr.com/ddcd2842cfaa27ad749eb1c8f0fa87d3/tumblr_mrvw1psZ391szbfero1_500.jpg" - }, - { - "name": "Mark Battles", - "image_url": "http://www.gannett-cdn.com/-mm-/ea1e306e18ab38d38fd0c7bad5df798dc9e6bf2a/c=1-0-1142-858&r=x404&c=534x401/local/-/media/2016/09/12/INGroup/Indianapolis/636092765862586531-MARKBATTLES-1-.jpg" - }, - { - "name": "Marky Mark", - "image_url": "http://i.dailymail.co.uk/i/pix/2014/12/15/23C0FCDA00000578-2874607-Back_in_the_day_Marky_Mark_Mark_Wahlberg_rapper_and_actor_circa_-m-4_1418665581123.jpg" - }, - { - "name": "Marley Marl", - "image_url": "http://www.waxpoetics.com/wp-content/uploads/2014/06/Kool-G-Rap_Promo2_suekwon-1.jpg" - }, - { - "name": "Marvaless", - "image_url": "http://a1yola.com/wp-content/uploads/2011/01/Marvaless-Ghetto-Blues.jpg" - }, - { - "name": "Marz", - "image_url": "http://wadeoradio.com/wp-content/uploads/2013/05/marz_with_hoodie.jpg" - }, - { - "name": "Mase", - "image_url": "http://richglare.com/wp-content/uploads/2014/03/mase.jpg" - }, - { - "name": "Masspike Miles", - "image_url": "http://api.ning.com/files/mWq-Pv8RWzQj-MamUWH9TNTYNoW0BlcruPGRV8J5nMMxDR76Wm0*Jgimy-pJMwxDTY5CcBFnbIJEj2GQDyirFkBKOdLYcw7C/masspikemiles20120105300x300.jpg" - }, - { - "name": "Masta Ace", - "image_url": "http://www.okayplayer.com/wp-content/uploads/2012/04/Masta_Ace_x_DOOM.jpg" - }, - { - "name": "Masta Killa", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-masta-killa-singer-rap-hip-hop.jpg" - }, - { - "name": "Master P", - "image_url": "http://cdn2.hiphopsince1987.com/wp-content/uploads/2014/04/MasterP.jpg" - }, - { - "name": "Master Shortie", - "image_url": "http://cache4.asset-cache.net/gc/98003447-british-rapper-master-shortie-performs-at-the-gettyimages.jpg" - }, - { - "name": "Matt Toka", - "image_url": "http://cdn.baeblemusic.com/bandcontent/matt_toka/matt_toka-498.jpg" - }, - { - "name": "Max B", - "image_url": "http://www.therapscene.com/wp-content/uploads/2016/09/max-b.png" - }, - { - "name": "Maxo Kream", - "image_url": "http://images.livemixtapes.com/artists/nodj/maxo_kream-maxo_187/cover.jpg" - }, - { - "name": "MC Breed", - "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2015/10/MCBreed_Tupac.jpg" - }, - { - "name": "MC Davo", - "image_url": "https://i.scdn.co/image/8ca10c2e0345c064fd77e23dffd044e095cd09d9" - }, - { - "name": "MC Eiht", - "image_url": "http://happybday.to/sites/pics/mc-eiht-2013-3.jpg" - }, - { - "name": "MC Frontalot", - "image_url": "http://s3.amazonaws.com/media.wbur.org/wordpress/9/files/2011/11/1102_frontalot.jpg" - }, - { - "name": "MC Hammer", - "image_url": "http://i2.cdn.turner.com/cnnnext/dam/assets/111020033101-mc-hammer-story-top.jpg" - }, - { - "name": "MC Jin", - "image_url": "http://blog.asianinny.com/wp-content/uploads/2014/08/Edit-2.jpg" - }, - { - "name": "MC Lyte", - "image_url": "http://www2.pictures.zimbio.com/gi/MC+Lyte+Soul+Train+Awards+2012+Glade+Suite+pwqWuYKKQkwl.jpg" - }, - { - "name": "MC Mong", - "image_url": "http://www.christianitydaily.com/data/images/full/292/mc-mong.jpg" - }, - { - "name": "MC Pressure", - "image_url": "http://resources1.news.com.au/images/2013/09/13/1226718/911813-6111b67a-1b93-11e3-885a-29191a963f6e.jpg" - }, - { - "name": "MC Ren", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-mc-ren-celebrity-rap-star.jpg" - }, - { - "name": "MC Ride", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/72/MC_Ride_of_Death_Grips_in_2012.jpg" - }, - { - "name": "MC Serch", - "image_url": "http://www.eurweb.com/wp-content/uploads/2013/09/MC-Serch1.jpg" - }, - { - "name": "MC Shan", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0001/369/MI0001369927.jpg" - }, - { - "name": "MC Solaar", - "image_url": "http://www.potoclips.com/wp-content/uploads/2014/12/MC-Solaar-Zoom-90-11-2014-10.png" - }, - { - "name": "MC Trouble", - "image_url": "http://urbanbridgez.com/ubgblog/wp-content/uploads/2012/06/MCTrouble.jpg" - }, - { - "name": "MC Tunes", - "image_url": "http://i4.manchestereveningnews.co.uk/incoming/article4024647.ece/ALTERNATES/s615/nicky-lockett.jpg" - }, - { - "name": "Meechy Darko", - "image_url": "http://www4.pictures.zimbio.com/gi/Meechy+Darko+Coachella+Valley+Music+Arts+Festival+TkYgAgZECOrl.jpg" - }, - { - "name": "Meek Mill", - "image_url": "https://mk0slamonlinensgt39k.kinstacdn.com/wp-content/uploads/2018/04/meek.jpg" - }, - { - "name": "Melle Mel", - "image_url": "http://www4.pictures.zimbio.com/gi/Melle+Mel+GRAMMY+Nominations+Concert+Live+uqqOc_pgcOKl.jpg" - }, - { - "name": "Mellow Man Ace", - "image_url": "http://www.thecubanhistory.com/wp-content/uploads/2014/09/mellow-man-ace-posing-for-pic-picture.jpg" - }, - { - "name": "Memphis Bleek", - "image_url": "http://www4.pictures.gi.zimbio.com/Jay+Z+Celebrates+Grand+Opening+40+40+Club+BLwPtvgRe4Sl.jpg" - }, - { - "name": "Messy Marv", - "image_url": "http://gossip-grind.com/wp-content/uploads/2013/09/image3.jpg" - }, - { - "name": "Method Man", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.384069!/img/httpImage/image.jpg_gen/derivatives/landscape_1200/alg-rapper-method-man-jpg.jpg" - }, - { - "name": "Metro Boomin", - "image_url": "http://static.stereogum.com/uploads/2017/05/Metro-Boomin-1496168461-compressed.jpg" - }, - { - "name": "MF Doom", - "image_url": "http://1.bp.blogspot.com/-sV6R16-qWxo/Tm6ZhYV7_aI/AAAAAAAAACI/Hh6dPl1H2L0/s1600/MF%2BDOOM.jpg" - }, - { - "name": "MF Grimm", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-mf-grimm-fame-hip-hop-star.jpg" - }, - { - "name": "Mia X", - "image_url": "http://www.blackvibes.com/images/bvc/81/16306-mia-x.jpg" - }, - { - "name": "Mic Geronimo", - "image_url": "http://img.spokeo.com/public/900-600/mic_geronimo_2003_06_04.jpg" - }, - { - "name": "Mick Jenkins", - "image_url": "http://thekoalition.com/images/2015/10/Mick-Jenkins.jpg" - }, - { - "name": "Mickey Factz", - "image_url": "http://www.thefader.com/ys_assets/0005/4038/mfactz_main.jpg" - }, - { - "name": "Mike Dean", - "image_url": "https://vice-images.vice.com/images/content-images-crops/2015/10/23/smoking-weed-and-talking-rap-urban-legends-with-the-biggest-stoner-in-hip-hop-420-body-image-1445632224-size_1000.jpg" - }, - { - "name": "Mike G", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.2687217.1466809127!/img/httpImage/image.jpg_gen/derivatives/article_750/brown25f-2-web.jpg" - }, - { - "name": "Mike Jones", - "image_url": "http://content6.flixster.com/photo/12/68/69/12686960_ori.jpg" - }, - { - "name": "Mike Posner", - "image_url": "http://i.ytimg.com/vi/_z1aJvUTXUY/maxresdefault.jpg" - }, - { - "name": "Mike Shinoda", - "image_url": "http://www.canada.com/entertainment/cms/binary/7181890.jpg" - }, - { - "name": "Mike Stud", - "image_url": "https://cab.blog.gustavus.edu/files/2014/01/STUDITUNES2.jpg" - }, - { - "name": "Mike Will Made It", - "image_url": "http://generations.fr/media/son/_src/mike-will-made-it.jpg" - }, - { - "name": "Mike Zombie", - "image_url": "http://www.lifeistremendez.com/wp-content/uploads/2016/06/MIKE-ZOMBIE.jpg" - }, - { - "name": "Milo", - "image_url": "http://images1.laweekly.com/imager/milo/u/original/4244882/milo2final.jpg" - }, - { - "name": "Mims", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/f/f5/Shawn-Mims_2009-04-10_by-Adam-Bielawski.jpg" - }, - { - "name": "Mino", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/9c/ab/e8/9cabe8d370440fada55bc1e8f338b332.jpg" - }, - { - "name": "Miryo", - "image_url": "http://i1.wp.com/www.koreaboo.com/wp-content/uploads/2015/11/80059600.jpg" - }, - { - "name": "Missy Elliott", - "image_url": "http://thatgrapejuice.net/wp-content/uploads/2011/06/Missy%2BElliott1.jpg" - }, - { - "name": "Mista Grimm", - "image_url": "http://steadydippin.com/wp-content/uploads/Mista-Grimm.jpg" - }, - { - "name": "Mistah F.A.B.", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/5f/Mistah_F.A.B._%28cropped%29.jpg" - }, - { - "name": "Mister Cee", - "image_url": "http://ocdn.hiphopdx.com/mister-cee-gq-magazine-january-2014-hip-hop-dj-atlanta-music-01.jpg" - }, - { - "name": "Mitchy Slick", - "image_url": "http://celebnmusic247.com/wp-content/uploads/2013/12/San-Diego-rapper-Lil-Mitchy-Slick-Killed-news-1216-1.jpg" - }, - { - "name": "Mo B. Dick", - "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Mo-B.-Dick.jpg" - }, - { - "name": "Mod Sun", - "image_url": "https://i.ytimg.com/vi/077gBsOpfLY/maxresdefault.jpg" - }, - { - "name": "Money-B", - "image_url": "https://static1.squarespace.com/static/537f7de4e4b07cc20962a0fe/57d9ce70d482e972e8422601/57d9ced41b631b43099ada2e/1486258009597/money+b+icicles.jpg" - }, - { - "name": "Monie Love", - "image_url": "https://68.media.tumblr.com/34e9804dcd3a4307e744fc0b343318bf/tumblr_mvftdi4xlG1szbfero1_500.jpg" - }, - { - "name": "Monoxide Child", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Monoxide_Child_at_the_Abominationz_tour_in_Chesterfield%2C_MI_on_April_27th%2C_2013.jpg/220px-Monoxide_Child_at_the_Abominationz_tour_in_Chesterfield%2C_MI_on_April_27th%2C_2013.jpg" - }, - { - "name": "Mopreme Shakur", - "image_url": "https://media.gettyimages.com/photos/rapper-mopreme-shakur-attends-the-2012-estrella-de-moet-program-at-picture-id143587959" - }, - { - "name": "Mos Def", - "image_url": "http://1.bp.blogspot.com/-OfuE_iF9YT4/TarRyZ1raYI/AAAAAAAABJA/JZ6p4D2dMjw/s1600/mos_def1.jpg" - }, - { - "name": "Mr. Capone-E", - "image_url": "http://media-cache-ak0.pinimg.com/736x/06/58/dd/0658ddcf276465f97bee8e59ac5937ef.jpg" - }, - { - "name": "Mr. Cheeks", - "image_url": "http://www.twincities.com/wp-content/uploads/2016/03/08-RapperMrCheeks.jpg" - }, - { - "name": "Mr. Collipark", - "image_url": "http://urltv.tv/wp-content/uploads/2015/02/mr-collipark.png" - }, - { - "name": "Mr. Criminal", - "image_url": "https://nueonline.files.wordpress.com/2010/05/mr-cr.jpg" - }, - { - "name": "Mr. Lif", - "image_url": "https://media2.wnyc.org/i/800/0/c/80/nprproxy/477517970" - }, - { - "name": "Mr. Porter", - "image_url": "https://s3.amazonaws.com/rapgenius/1364090355_l.jpg" - }, - { - "name": "Mr. Serv-On", - "image_url": "http://purple-drank.com/wp-content/uploads/2013/09/Mr.-Serv-On-Gangsta-1-More-Time.jpg" - }, - { - "name": "Mr. Short Khop", - "image_url": "https://www.rapmusicguide.com/amass/images/inventory/4474/Mr.%20Short%20Khop%20-%20Da%20Khop%20Shop.jpg" - }, - { - "name": "Ms. Jade", - "image_url": "http://www.billboard.com/files/media/ms-jade-press-2002-650a.jpg" - }, - { - "name": "Murphy Lee", - "image_url": "http://1.bp.blogspot.com/_72Fq2ASEDsQ/SylcE_hqPzI/AAAAAAAAJSQ/VlycqZcZFQE/s320/murphy_lee_mo-174781.jpg" - }, - { - "name": "Murs", - "image_url": "http://planetill.com/wp-content/uploads/2011/01/murs1a.jpg" - }, - { - "name": "Mystikal", - "image_url": "http://theboombox.com/files/2015/09/mystikal-630x420.jpg" - }, - { - "name": "Myzery", - "image_url": "http://faygoluvers.net/v5/wp-content/uploads/2013/03/MYZERY-INT-2013th.jpg" - }, - { - "name": "Montana of 300", - "image_url": "http://www.rapswag.com/wp-content/uploads/2016/05/montana-of-300.jpg" - }, - { - "name": "Nas", - "image_url": "http://www.howtorapbook.com/wp-content/uploads/2016/04/nas_rapper_reuters_1200.jpg" - }, - { - "name": "Nicki Minaj", - "image_url": "http://www.rap-up.com/app/uploads/2018/04/nicki-minaj-chun-li.jpg" - }, - { - "name": "NBA YoungBoy", - "image_url": "http://feedbox.com/wp-content/uploads/2017/07/rapper-nba-youngboy.jpg" - }, - { - "name": "N.O. Joe", - "image_url": "https://images.genius.com/e6d317c1fc41f258cab262a651d1032d.220x222x1.jpg" - }, - { - "name": "N.O.R.E.", - "image_url": "http://rapradar.com/wp-content/uploads/2016/03/nore-rapradar-2.jpg" - }, - { - "name": "Napoleon", - "image_url": "http://2paclegacy.net/wp-content/uploads/2015/12/Napoleon-Outlawz.jpg" - }, - { - "name": "Nas", - "image_url": "http://www.howtorapbook.com/wp-content/uploads/2016/04/nas_rapper_reuters_1200.jpg" - }, - { - "name": "Nate Dogg", - "image_url": "http://www.evilbeetgossip.com/wp-content/uploads/2011/03/Nate-Dogg-AKA-Nathaniel-Hale.jpg" - }, - { - "name": "Nature", - "image_url": "http://blogordiepgh.com/wp-content/uploads/2016/02/nature2-590x738.jpg" - }, - { - "name": "Nav", - "image_url": "https://www.desiblitz.com/wp-content/uploads/2017/02/Nav-Rapper-Watch-2017-Featued-1.jpg" - }, - { - "name": "Nebu Kiniza", - "image_url": "https://www.famousbirthdays.com/faces/kiniza-nebu-image.jpg" - }, - { - "name": "Necro", - "image_url": "https://m3event.files.wordpress.com/2012/05/necro.png" - }, - { - "name": "Needlz", - "image_url": "http://www.mvremix.com/urban/interviews/images/choppa.jpg" - }, - { - "name": "Nelly", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/04/nelly-4ee7ec5a1b162.jpg" - }, - { - "name": "NF", - "image_url": "http://nfrealmusic.umg-wp.com/wp-content/blogs.dir/390/files_mf/1427238717nfbg2.jpg" - }, - { - "name": "Nick Cannon", - "image_url": "http://4.bp.blogspot.com/-WlJB4GcpcJI/TrIsDVJpnCI/AAAAAAAAAQs/KvUN9_OEwRg/s1600/Nick-Cannon-biography.jpg" - }, - { - "name": "Nicki Minaj", - "image_url": "http://www.rap-up.com/app/uploads/2018/04/nicki-minaj-chun-li.jpg" - }, - { - "name": "Nicky da B", - "image_url": "http://www.out.com/sites/out.com/files/2014/09/04/nicky-1%20main.jpg" - }, - { - "name": "Nicole Wray", - "image_url": "http://static.djbooth.net/pics-artist-rec/Nicole_Wray_1.jpg" - }, - { - "name": "Nikki D", - "image_url": "http://4.bp.blogspot.com/-Qc-EvZbPM1Q/UZhHG-wvkUI/AAAAAAAASYY/FRdaUwO8KJg/s1600/nikkid.jpg" - }, - { - "name": "Ninja", - "image_url": "http://www.dieantwoord.com/wp-content/uploads/2016/06/13355485_1803315693234477_1383954422_n.jpg" - }, - { - "name": "Nipsey Hussle", - "image_url": "https://badgerherald.com/media/2013/10/nipsey_headshot.jpg" - }, - { - "name": "Nitty", - "image_url": "http://versetracker.com/sites/default/files/rapper-pictures/r/rum-nitty.jpg" - }, - { - "name": "Nitty Scott MC", - "image_url": "http://www.thesocialmediasamurai.com/wp-content/uploads/2015/06/TMT_6971-Edit_HighResEdit.jpg" - }, - { - "name": "NoClue", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/94/RickyBrown2.jpg" - }, - { - "name": "No Malice", - "image_url": "http://www.xxlmag.com/files/2015/08/no-malice-interview.jpg" - }, - { - "name": "Noah 40 Shebib", - "image_url": "http://www.rap-up.com/app/uploads/2018/04/drake-floral.jpg" - }, - { - "name": "Noname", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Noname_%28rapper%29_2017.jpg/1200px-Noname_%28rapper%29_2017.jpg" - }, - { - "name": "Nonchalant", - "image_url": "http://bandwidth.wamu.org/wp-content/uploads/2014/05/nonchalant-900x503.png" - }, - { - "name": "The Notorious B.I.G.", - "image_url": "http://www.neontommy.com/sites/default/files/NotoriousBIG.jpg" - }, - { - "name": "Nottz", - "image_url": "http://brandnew-hiphop.com/wp-content/uploads/2015/11/rapper-big-pooh-nottz-300z.jpg" - }, - { - "name": "Nujabes", - "image_url": "http://www.posterinvation.com/wp-content/uploads/2017/11/Nujabes-Japanese-Rapper.jpg" - }, - { - "name": "Nump", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/0/08/NUMP_Photo_By_Linda_Poeng.jpg" - }, - { - "name": "Numskull", - "image_url": "http://a1yola.com/wp-content/uploads/2010/10/knumskull.jpeg" - }, - { - "name": "Nyck Caution", - "image_url": "https://s3.amazonaws.com/rapgenius/1370913624_Nyck-Caution.jpeg" - }, - { - "name": "Nyzzy Nyce", - "image_url": "http://cache.vevo.com/Content/VevoImages/artist/F77096AEAB227EDC7749E54A60AD84FD20133151332767.jpg" - }, - { - "name": "O.T. Genasis", - "image_url": "http://www.atlanticrecords.com/sites/g/files/g2000003466/f/styles/post_thumbnail_home/public/201407/O.T.Genasis_NewArtist_StoryImage.jpg" - }, - { - "name": "Obie Trice", - "image_url": "https://i.ytimg.com/vi/k0CukaaPmpk/hqdefault.jpg" - }, - { - "name": "Oddisee", - "image_url": "http://image2.redbull.com/rbcom/010/2015-04-21/1331718387121_2/0012/0/905/0/2616/2573/1500/2/oddisee.jpg" - }, - { - "name": "Offset", - "image_url": "http://celebrityinsider.org/wp-content/uploads/2018/04/Offset.jpg" - }, - { - "name": "OG Maco", - "image_url": "http://rack.0.mshcdn.com/media/ZgkyMDE0LzA5LzE5LzY2L29nbWFjb3VndWVzLjI3ZTY4LmpwZwpwCXRodW1iCTk1MHg1MzQjCmUJanBn/e9db9255/336/og-maco-uguessedit.jpg" - }, - { - "name": "Oh No", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2015/07/Screen-Shot-2015-07-17-at-6.45.39-PM-300x300.png" - }, - { - "name": "OJ da Juiceman", - "image_url": "http://www.stacksmag.net/wp-content/uploads/2013/03/Oj+Da+Juiceman.jpg" - }, - { - "name": "Ol' Dirty Bastard", - "image_url": "http://25.media.tumblr.com/tumblr_llopqgJSCs1qcnjjco1_500.jpg" - }, - { - "name": "Olamide", - "image_url": "http://i0.wp.com/www.currentnewsnow.com/wp-content/uploads/2017/02/olamide-rapper.jpg" - }, - { - "name": "Olivia", - "image_url": "http://4.bp.blogspot.com/-zjgq7UuGNO8/TtdcuvdVFoI/AAAAAAAAEtA/5zoyt9VRv3E/s1600/olivia+longott.jpg" - }, - { - "name": "Omarion", - "image_url": "https://i0.wp.com/favimages.com/wp-content/uploads/2012/08/rapper-omarion-rap-celebrity-singer.jpg" - }, - { - "name": "Omega Red", - "image_url": "https://www.rap-n-blues.com/wp-content/uploads/2010/10/Exclusive-Interview-with-Omega-Red-pt-1-11.jpg" - }, - { - "name": "Omillio Sparks", - "image_url": "https://i.ytimg.com/vi/bgjehnnP7vE/maxresdefault.jpg" - }, - { - "name": "One Be Lo", - "image_url": "https://grownuprap.files.wordpress.com/2015/06/one-be-lo.jpg" - }, - { - "name": "Oneya", - "image_url": "http://4.bp.blogspot.com/_rc6elIZnb9w/StfvPh8AExI/AAAAAAAAAPI/_RXYXzPY8PI/s320/grillz%5B1%5D.png" - }, - { - "name": "Open Mike Eagle", - "image_url": "http://normalimage.cdn.ucbt.net/person_69295.png" - }, - { - "name": "Psy", - "image_url": "http://www.soompi.com/wp-content/uploads/2013/05/psy-yahoo.jpg" - }, - { - "name": "Q-Tip", - "image_url": "http://amarudontv.com/wp-content/uploads/2011/06/q-tip.jpg" - }, - { - "name": "P. Reign", - "image_url": "http://www.thisisyourconscience.com/wp-content/uploads/2011/03/P-Reign.jpg" - }, - { - "name": "P.C.T", - "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" - }, - { - "name": "Papa Reu", - "image_url": "http://thesource.com/wp-content/uploads/2015/07/papa-reu-1.jpg" - }, - { - "name": "Papoose", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.281729.1314351515!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-papoose-jpg.jpg" - }, - { - "name": "Paris", - "image_url": "http://cps-static.rovicorp.com/3/JPG_1080/MI0001/400/MI0001400360.jpg" - }, - { - "name": "PARTYNEXTDOOR", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2013/10/PARTYNEXTDOOR.jpg" - }, - { - "name": "Pastor Troy", - "image_url": "http://veganrapnerd.com/wp-content/uploads/2013/08/pastortroy.jpg" - }, - { - "name": "Paul Wall", - "image_url": "http://aaenglish.files.wordpress.com/2010/07/paul_wall.jpg" - }, - { - "name": "Peedi Peedi", - "image_url": "http://www.yorapper.com/Photos/peedi-peedi-ringtone.jpg" - }, - { - "name": "Peewee Longway", - "image_url": "http://thedailyloud.com/wp-content/uploads/2014/07/PeeWee+Longway.jpg" - }, - { - "name": "Pacewon", - "image_url": "http://s3.amazonaws.com/rapgenius/1362133040_pacewon1.jpg" - }, - { - "name": "Percee P", - "image_url": "https://images.genius.com/5043bb54deda4ff352e7a413107e40fd.455x489x1.jpg" - }, - { - "name": "Petey Pablo", - "image_url": "http://i.perezhilton.com/wp-content/uploads/2012/02/rapper-petey-pablo-goes-to-prison__oPt.jpg" - }, - { - "name": "Pharoahe Monch", - "image_url": "http://thecorner.co.nz/wp-content/uploads/2010/10/monch.jpg" - }, - { - "name": "Pharrell Williams", - "image_url": "http://www.alux.com/wp-content/uploads/2016/05/pharrell-williams8.jpg" - }, - { - "name": "Phat Kat", - "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2015/09/Phat-Kat-FACT-Freestyles-Episode-1200x630.png" - }, - { - "name": "Phife Dawg", - "image_url": "http://static.celebuzz.com/uploads/2016/03/phife-dawg-32316.jpg" - }, - { - "name": "Philthy Rich", - "image_url": "http://i2.wp.com/allhiphop.com/wp-content/uploads/2012/02/20120214-133154-1.jpg" - }, - { - "name": "Phyno", - "image_url": "https://i.onthe.io/vllkyt2uq4dmo3ouf.bf39c0a9.jpg" - }, - { - "name": "Pill", - "image_url": "http://missdimplez.com/wp-content/uploads/2011/12/pill-rapper.jpg" - }, - { - "name": "Pimp C", - "image_url": "http://media-cache-ak0.pinimg.com/736x/4a/5d/da/4a5dda5cf63497a7a7323d64036ea588.jpg" - }, - { - "name": "Pinkie Pie", - "image_url": "http://fc09.deviantart.net/fs71/i/2014/106/a/e/rap_pinkie_pie_by_racoonkun-d7eqdf7.png" - }, - { - "name": "Pitbull", - "image_url": "http://images5.fanpop.com/image/photos/25000000/Pitbull-wallpaper-pitbull-rapper-25094094-1024-768.jpg" - }, - { - "name": "Planet Asia", - "image_url": "http://2.bp.blogspot.com/_3i6Ja3TzR3U/TUsqDLt5_eI/AAAAAAAAA5E/o5cNPWjIOUc/s1600/Planet+Asia.jpg" - }, - { - "name": "Planetary", - "image_url": "https://www.universetoday.com/wp-content/uploads/2013/06/star_cluster_planet.jpg" - }, - { - "name": "Plies", - "image_url": "http://siccness.net/wp/wp-content/uploads/2013/01/Plies.png" - }, - { - "name": "Playboi Carti", - "image_url": "http://images.complex.com/complex/image/upload/t_article_image/playboi-carti_hylalw.jpg" - }, - { - "name": "PnB Rock", - "image_url": "http://www.trbimg.com/img-593a8ea1/turbine/mc-rapper-pnb-rocks-show-to-open-easton-s-new-one-centre-square-is-rescheduled-20170609" - }, - { - "name": "PNC", - "image_url": "https://resources.stuff.co.nz/content/dam/images/1/d/s/t/f/0/image.related.StuffLandscapeSixteenByNine.620x349.1gbkoq.png/1483310043452.jpg" - }, - { - "name": "Porta", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/93/Christian_Jim%C3%A9nez_Porta.jpg" - }, - { - "name": "Positive K", - "image_url": "https://i.ytimg.com/vi/rKSu3MMqjNA/maxresdefault.jpg" - }, - { - "name": "Post Malone", - "image_url": "http://s3.amazonaws.com/factmag-images/wp-content/uploads/2016/06/Post-Malone-6-15-16-616x440.jpg" - }, - { - "name": "Pras", - "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2015/11/pras-grey.jpg" - }, - { - "name": "Prince Ital Joe", - "image_url": "http://api.ning.com/files/HX2HJ5zFz1VXk6nnlv3UuQYepy3Zaqp7FB99CwchCVK9qZAdUGnd2wgm8KBTPBQ5TPA7viKN70LkASDddCvpMRV*qbrLbSTS/2pacPrinceItalJoe.jpg" - }, - { - "name": "Prince Paul", - "image_url": "http://s3.amazonaws.com/hiphopdx-production/2017/06/DJ-Prince-Paul-789x591.jpg" - }, - { - "name": "Prince Po", - "image_url": "http://s3.amazonaws.com/rapgenius/1354768383_tumblr_m4e3h3JIu51rrnvtco1_500.png" - }, - { - "name": "Problem", - "image_url": "http://media-cache-ec0.pinimg.com/736x/91/12/c5/9112c5e71840687c066eb9bf199a6c8b.jpg" - }, - { - "name": "Prodigy", - "image_url": "http://www.genycis.com/blog/php/prodigy.jpg" - }, - { - "name": "Professor Green", - "image_url": "http://www.thedrum.com/uploads/drum_basic_article/154317/main_images/ProfessorGreen.jpg" - }, - { - "name": "Project Pat", - "image_url": "http://purple-drank.com/wp-content/uploads/2013/04/Project-Pat-New.jpg" - }, - { - "name": "Proof", - "image_url": "http://api.ning.com/files/id8pBTnWr70l7rcG7ybqV4HsnNh-BPxmwnyZ9v0VIyOITru56VjRVTRg9zdpsZMShSK3pPDKlmcbXnYrswx9fJCRZh8Y5ooC/proof.jpg" - }, - { - "name": "Prozak", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-prozak-celebrity-rap-photo.jpg" - }, - { - "name": "Psy", - "image_url": "http://www.soompi.com/wp-content/uploads/2013/05/psy-yahoo.jpg" - }, - { - "name": "Pusha T", - "image_url": "https://images.vice.com/noisey/content-images/article/pusha-t-interview-my-name-is-my-name/Pusha%20T%20Close.jpg" - }, - { - "name": "Queen Latifah", - "image_url": "http://media-cache-ec0.pinimg.com/736x/98/eb/23/98eb236df993bb4d0a7b2bbb6f8887d6.jpg" - }, - { - "name": "Q-Tip", - "image_url": "http://amarudontv.com/wp-content/uploads/2011/06/q-tip.jpg" - }, - { - "name": "Quan", - "image_url": "http://www.collegedj.net/wp-content/uploads/2011/09/Quan-rapper.jpg" - }, - { - "name": "Quavo", - "image_url": "http://www.globallnews.com/wp-content/uploads/2018/04/725393107_quavo_hunchoday_1522628161372_11247409_ver1.0_640_360.jpg" - }, - { - "name": "Quazedelic", - "image_url": "https://ilovemssugar.files.wordpress.com/2009/08/quazedelic.jpg" - }, - { - "name": "Queen Latifah", - "image_url": "http://media-cache-ec0.pinimg.com/736x/98/eb/23/98eb236df993bb4d0a7b2bbb6f8887d6.jpg" - }, - { - "name": "Queen Pen", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/48/19/d1/4819d1636cf36c92194437765638240b.jpg" - }, - { - "name": "The Quiett", - "image_url": "http://korcan50years.files.wordpress.com/2013/06/the-quiett-798x1024.jpg" - }, - { - "name": "Quincy Jones III", - "image_url": "http://theboombox.com/files/2010/05/david-banner-200ak050410.jpg" - }, - { - "name": "Qwazaar", - "image_url": "http://cdn.ticketfly.com/i/00/01/88/84/11-atxl1.jpg" - }, - { - "name": "Qwel", - "image_url": "http://img.karaoke-lyrics.net/img/artists/4536/qwel-247381.jpg" - }, - { - "name": "Rakim", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162077.jpg" - }, - { - "name": "RZA", - "image_url": "https://static01.nyt.com/images/2012/10/21/arts/21RZA1_SPAN/21RZA1_SPAN-jumbo.jpg" - }, - { - "name": "R. Kelly", - "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/21/4B25AB0C00000578-5622755-image-a-24_1523909544359.jpg" - }, - { - "name": "R.A. the Rugged Man", - "image_url": "http://www.kapu.or.at/sites/default/files/event/image/ruggednew1.jpg" - }, - { - "name": "Raekwon", - "image_url": "http://www.bkhiphopfestival.com/wp-content/uploads/2014/06/Raekwon.jpg" - }, - { - "name": "Rah Digga", - "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2015/08/2012-music-topic-rah-digga.png" - }, - { - "name": "Rahzel", - "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/04/rahzel.jpg" - }, - { - "name": "Rakim", - "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162077.jpg" - }, - { - "name": "Rampage", - "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2012/01/rampage.jpg" - }, - { - "name": "Rap Monster", - "image_url": "http://xinspirit.files.wordpress.com/2013/06/rap-monster.jpg" - }, - { - "name": "Rappin' 4-Tay", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2016/10/Rappin-4-Tay_10-13-2016-596x447.jpg" - }, - { - "name": "Rapsody", - "image_url": "http://rollingout.com/wp-content/uploads/2014/05/rapsody.jpg" - }, - { - "name": "Ramey Dawoud", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/70/Kashta_Live.jpg" - }, - { - "name": "Ras Kass", - "image_url": "http://cdn4.hiphoplead.com/static/2012/03/Ras-Kass.jpg" - }, - { - "name": "Rasheeda", - "image_url": "http://media-cache-ak0.pinimg.com/736x/df/01/4f/df014fca71f89f5efc4d58f27b1beb2a.jpg" - }, - { - "name": "Ravi", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Ravi_-_2016_Gaon_Chart_K-pop_Awards_red_carpet.jpg/1200px-Ravi_-_2016_Gaon_Chart_K-pop_Awards_red_carpet.jpg" - }, - { - "name": "Ray Cash", - "image_url": "http://www.hipstrumentals.com/wp-content/uploads/2012/12/Ray-Cash-Bumpin-My-Music.jpg" - }, - { - "name": "Ray J", - "image_url": "http://www3.pictures.zimbio.com/pc/Rapper+Ray+J+spotted+Tru+night+club+Hollywood+0orxsqqyQ49x.jpg" - }, - { - "name": "Ray Luv", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Ray_Luv_performing_at_5th_Annual_AHSC_1.JPG/1200px-Ray_Luv_performing_at_5th_Annual_AHSC_1.JPG" - }, - { - "name": "Raz Fresco", - "image_url": "http://exclaim.ca/images/razfresco2.jpg" - }, - { - "name": "RBX", - "image_url": "http://www.longbeachindependent.com/wp-content/uploads/2015/03/rbx-rapper-long-beach1.jpg" - }, - { - "name": "The Real Roxanne", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/dd/e9/61/dde961ccc373460deb2bab6b8df479b8.jpg" - }, - { - "name": "Really Doe", - "image_url": "http://cdn.smosh.com/sites/default/files/ftpuploads/bloguploads/1113/least-badass-name-really-doe.jpg" - }, - { - "name": "Red Café", - "image_url": "http://www1.pictures.zimbio.com/gi/Red+Cafe+Interscope+Geffen+Promotions+Department+MlqC_HJwxQMl.jpg" - }, - { - "name": "Red Spyda", - "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2012/08/red-spyda.png" - }, - { - "name": "Redfoo", - "image_url": "http://media.gettyimages.com/photos/rapper-redfoo-of-lmfao-arrives-for-party-rock-mondays-at-marquee-in-picture-id131805210" - }, - { - "name": "Redman", - "image_url": "http://djstorm.files.wordpress.com/2011/02/redman1.jpg" - }, - { - "name": "Reef the Lost Cauze", - "image_url": "http://thekey.xpn.org/aatk/files/2016/02/ReefCaliph-9726-620x413.jpg" - }, - { - "name": "Reema Major", - "image_url": "http://www.bet.com/topics/r/reema-major/_jcr_content/image.heroimage.dimg/__1411088698102/080312-topic-music-reema-major-rapper.jpg" - }, - { - "name": "Reks", - "image_url": "http://hypeverse.files.wordpress.com/2012/10/reks.jpg" - }, - { - "name": "Remy Ma", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/d9/79/0e/d9790e372e4df2baf687770b711968bf.jpg" - }, - { - "name": "Rhymefest", - "image_url": "http://i.huffpost.com/gen/2824474/images/h-CHE-RHYMEFEST-SMITH-348x516.jpg" - }, - { - "name": "Rich Boy", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2009/01/rich-boy_011509_200.jpg" - }, - { - "name": "Rich Brian", - "image_url": "https://www.tinymixtapes.com/sites/default/files/imagecache/Article_Width/1801/rich-chigga-amen-cover-low-res.jpg" - }, - { - "name": "Rich Homie Quan", - "image_url": "http://www.judiciaryreport.com/images_4/rich-homie-quan-4-10-15-1.png" - }, - { - "name": "Rich The Kid", - "image_url": "https://gazettereview.com/wp-content/uploads/2017/05/rich4.jpg" - }, - { - "name": "Richie Rich", - "image_url": "http://www.rule4080.com/wp-content/uploads/2011/08/Richie_Rich_rapper.jpeg" - }, - { - "name": "Rick Rock", - "image_url": "http://s3.amazonaws.com/rapgenius/rick_rock.jpg" - }, - { - "name": "Rick Ross", - "image_url": "http://www.thefamouspeople.com/profiles/images/rick-ross-2.jpg" - }, - { - "name": "Rico Love", - "image_url": "http://media.gettyimages.com/photos/record-producer-singer-songwriter-and-rapper-rico-love-is-interviewed-picture-id177991029" - }, - { - "name": "Riff Raff", - "image_url": "http://images1.laweekly.com/imager/riff-raff/u/original/4248950/rrone.jpg" - }, - { - "name": "Rittz", - "image_url": "http://theciphershow.com/image/uploads/rittz.jpg" - }, - { - "name": "RJ", - "image_url": "http://images1.laweekly.com/imager/u/original/6044341/rj-kenneth-wynn.jpg" - }, - { - "name": "Rob Sonic", - "image_url": "http://cdn.ticketfly.com/i/00/01/30/07/57-exl.jpeg" - }, - { - "name": "Rob Stone", - "image_url": "https://i1.wp.com/hypebeast.com/image/ht/2016/08/rob-stone-chill-bill-remix1.png" - }, - { - "name": "Roc Marciano", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2010/09/marciano_304.jpg" - }, - { - "name": "Rockie Fresh", - "image_url": "http://www.missinfo.tv/wp-content/uploads/2014/03/rockie-fresh.jpg.jpg" - }, - { - "name": "Rocko", - "image_url": "http://www.bet.com/content/dam/betcom/images/2013/06/Shows/Music-News/mn13_rockoadon_final.jpg" - }, - { - "name": "Roger Troutman", - "image_url": "https://www.thefamousbirthdays.com/photo/en/c/c6/wk_60128_40208_large.jpg" - }, - { - "name": "Romeo Miller", - "image_url": "http://www1.pictures.zimbio.com/gi/BET+Awards+11+Arrivals+XFI1wmisCnBx.jpg" - }, - { - "name": "Ronnie Radke", - "image_url": "http://www.altpress.com/images/uploads/feature_header_images/ronnie_radke_list_2015.jpg" - }, - { - "name": "Roots Manuva", - "image_url": "http://dis.resized.images.s3.amazonaws.com/940x535/27742.jpeg" - }, - { - "name": "Roscoe", - "image_url": "http://www4.pictures.stylebistro.com/gi/Roscoe%2BDash%2BScarves%2BPatterned%2BScarf%2B8lklV6z5LqUl.jpg" - }, - { - "name": "Roscoe Dash", - "image_url": "http://www.africamusiclaw.com/wp-content/uploads/2012/09/Rapper-Roscoe-Dash-Says-Wale-and-Kanye-Did-not-Give-Credits.jpg" - }, - { - "name": "Rowdy Rebel", - "image_url": "https://images.vice.com/noisey/content-images/article/rowdy-rebel-interview/Screen-Shot-2014-09-19-at-1-26-44-PM.jpg" - }, - { - "name": "Roxanne Shanté", - "image_url": "https://s-media-cache-ak0.pinimg.com/564x/aa/0a/11/aa0a117dbca70d9867e8ec57cda0209f.jpg" - }, - { - "name": "Royce da 5'9", - "image_url": "http://www.ihiphop.com/wp-content/uploads/2011/08/royce.jpg" - }, - { - "name": "Russ", - "image_url": "http://dailychiefers.com/wp-content/media/2016/04/russ.jpg" - }, - { - "name": "Rucka Rucka Ali", - "image_url": "https://www.thefamouspeople.com/profiles/images/rucka-rucka-ali-1.jpg" - }, - { - "name": "Rydah J. Klyde", - "image_url": "http://siccness.net/wp/wp-content/uploads/2016/08/dj-fresh-rydah-j-klyde.jpg" - }, - { - "name": "Rye Rye", - "image_url": "http://www.bet.com/topics/r/rye-rye/_jcr_content/image.heroimage.dimg/__1411951278058/051512-shows-106-park-rye-rye-9.jpg" - }, - { - "name": "RZA", - "image_url": "http://www.sosoactive.com/wp-content/uploads/2014/04/rza-2.jpg" - }, - { - "name": "Roy Woods", - "image_url": "http://bendxl.com/wp-content/uploads/2015/07/ROYWoodsOVO.jpg" - }, - { - "name": "Slick Rick", - "image_url": "http://jobbiecrew.com/wp-content/uploads/2015/04/0slickrick2.jpg" - }, - { - "name": "Snoop Dogg", - "image_url": "https://media.nbcnewyork.com/images/1200*675/Snoop+Dogg3.jpg" - }, - { - "name": "Skabo", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/8/83/Bosko.jpg" - }, - { - "name": "Saafir", - "image_url": "http://www.okayplayer.com/wp-content/uploads/2013/02/saafir.jpg" - }, - { - "name": "Sabac Red", - "image_url": "http://wildstylemag.com/wp-content/uploads/Sabac-Red.gif" - }, - { - "name": "Sacario", - "image_url": "http://www.hellhoundmusic.com/wp-content/uploads/2013/11/sacario-1.jpg" - }, - { - "name": "Sadat X", - "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2012/10/sadat-x-10.25.2012.j.jpeg" - }, - { - "name": "Sadistik", - "image_url": "http://potholesinmyblog.com/wp-content/uploads/2013/01/sadistik-mic.jpg" - }, - { - "name": "Sage Francis", - "image_url": "https://consequenceofsound.files.wordpress.com/2014/03/sage-francis_1276598819.jpg" - }, - { - "name": "Sage the Gemini", - "image_url": "https://images.vice.com/noisey/content-images/article/sage-the-gemini-doesnt-listen-to-rap/E9FA1B25DC26BCB317C236E1CD46175920132510124230269.jpg" - }, - { - "name": "Saigon", - "image_url": "http://thekoalition.com/images/2011/01/Saigon.jpg" - }, - { - "name": "Sam Sneed", - "image_url": "http://www.post-gazette.com/image/2013/10/17/Sam-Sneed.jpg" - }, - { - "name": "Sammy Adams", - "image_url": "https://s3.amazonaws.com/rapgenius/1374121236_Sam_Adams-Bostons_Boy_Album.jpg" - }, - { - "name": "San E", - "image_url": "http://www.soompi.com/wp-content/uploads/2014/10/1013-san-e.jpg" - }, - { - "name": "San Quinn", - "image_url": "http://www.therealspill.com/uploads/2/0/6/4/2064107/5641474.jpg" - }, - { - "name": "Sarkodie", - "image_url": "http://www.thecable.ng/wp-content/uploads/2015/06/sak1.jpg" - }, - { - "name": "Sauce Money", - "image_url": "http://images.rapgenius.com/709f4d670c0505627849b8664f8276de.422x530x1.jpg" - }, - { - "name": "Savage", - "image_url": "https://i1.wp.com/hypebeast.com/image/2016/08/off-white-2016-fw-collection-21-savage-lookbook-2.jpg" - }, - { - "name": "Scarface", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/10/SCARFACE.jpg" - }, - { - "name": "Schoolboy Q", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/02/Schoolboy_Q_Speaks_on_best_tde_rapper.jpg" - }, - { - "name": "Schoolly D", - "image_url": "http://www.rapmusicguide.com/blog/wp-content/uploads/2013/12/Schoolly-D-arms.jpg" - }, - { - "name": "Scott Storch", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2014/02/Scott-Storch_02-17-2014-300x300.jpg" - }, - { - "name": "Scotty", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1b/Scotty_%28Scotty_ATL%29.jpg" - }, - { - "name": "Scram Jones", - "image_url": "http://i1.wp.com/allhiphop.com/wp-content/uploads/2013/10/scram-jones.jpg" - }, - { - "name": "Scribe", - "image_url": "http://static2.stuff.co.nz/1296207390/967/4595967.jpg" - }, - { - "name": "Scrilla", - "image_url": "http://media.nbcmiami.com/images/1200*675/Young-Scrilla.jpg" - }, - { - "name": "Scrufizzer", - "image_url": "http://jumpoff.tv/assets/images/made/assets/images/posts/12dec11_scrufizzer_war_MAIN_580_352.jpg" - }, - { - "name": "Sean Combs", - "image_url": "http://s1.ibtimes.com/sites/www.ibtimes.com/files/styles/lg/public/2012/04/20/265198-rapper-sean-diddy-combs.jpg" - }, - { - "name": "Sean Paul", - "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2009/12/seanp_bbx_200_122309.jpg" - }, - { - "name": "Sean Price", - "image_url": "http://img2.timeinc.net/people/i/2015/news/150824/sean-price-435.jpg" - }, - { - "name": "Sean T", - "image_url": "http://www.talentedprofiles.com/wp-content/uploads/2016/02/Rapper-Big-Sean-600x600_t.jpg" - }, - { - "name": "Serengeti", - "image_url": "http://www.anticon.com/sites/default/files/imagecache/artist/White%20Collar%209.jpg" - }, - { - "name": "Serius Jones", - "image_url": "http://www2.pictures.zimbio.com/gi/Serius+Jones+Sean+Diddy+Combs+Hosts+Pool+Party+3ntNwfoXEMil.jpg" - }, - { - "name": "Sev Statik", - "image_url": "http://i.ytimg.com/vi/vbQhHs2_10s/maxresdefault.jpg" - }, - { - "name": "Sha Money XL", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-sha-money-xl-celebrity-singer-photos.jpg" - }, - { - "name": "Shabazz the Disciple", - "image_url": "http://i1.ytimg.com/vi/UzKEnCSozmA/maxresdefault.jpg" - }, - { - "name": "Shad", - "image_url": "http://www.chartattack.com/wp-content/uploads/2014/04/shad.jpg" - }, - { - "name": "Shade Sheist", - "image_url": "http://beatsandrhymesfc.com/wp-content/uploads/2012/04/ss-bb.jpg" - }, - { - "name": "Shady Nate", - "image_url": "http://bloximages.newyork1.vip.townnews.com/montereycountyweekly.com/content/tncms/assets/v3/editorial/e/b5/eb5a2b49-dc95-557a-9967-09f87b6818a1/519523d286802.image.jpg" - }, - { - "name": "Shaggy", - "image_url": "http://img.karaoke-lyrics.net/img/artists/10440/shaggy-132443.jpg" - }, - { - "name": "Shaggy 2 Dope", - "image_url": "http://www.faygoluvers.net/v5/wp-content/uploads/2013/05/Shaggy-2-Dope1.jpg" - }, - { - "name": "Shaquille O'Neal", - "image_url": "https://nextshark-vxdsockgvw3ki.stackpathdns.com/wp-content/uploads/2018/04/maxresdefault.jpg" - }, - { - "name": "Shawnna", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/05/Shawnna.jpg" - }, - { - "name": "Shawty Lo", - "image_url": "http://jusflippin.com/wp-content/uploads/2011/07/Shawty-Lo.jpg" - }, - { - "name": "Sheek Louch", - "image_url": "http://highlineballroom.com/assets/Sheek-Louch.jpg" - }, - { - "name": "Shing02", - "image_url": "http://media-cache-ec0.pinimg.com/736x/78/23/8e/78238e9ab30512cfb4d52af6ccb40292.jpg" - }, - { - "name": "Sho Baraka", - "image_url": "https://i0.wp.com/allhiphop.com/wp-content/uploads/2017/02/rapper-sho-baraka-banned-from-ch.jpg" - }, - { - "name": "Shock G", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/ca/ShkWiki9.jpg" - }, - { - "name": "Shorty", - "image_url": "http://starcasm.net/wp-content/uploads/2010/12/Magnolia-Shorty-490x445.jpg" - }, - { - "name": "Shorty Mack", - "image_url": "https://i0.wp.com/www.hip-hopvibe.com/wp-content/uploads/2013/01/Shorty-Mack.jpg" - }, - { - "name": "Shwayze", - "image_url": "http://www.aceshowbiz.com/images/wennpic/wenn5188509.jpg" - }, - { - "name": "Shy Glizzy", - "image_url": "http://www.trbimg.com/img-57a2315f/turbine/bal-shy-glizzy-young-jefe-2-cut-it-royal-farms-arena" - }, - { - "name": "Shyheim", - "image_url": "http://www.eurweb.com/wp-content/uploads/2014/07/Shyheim_04-24-2013-300x300.jpg" - }, - { - "name": "Shyne", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/01/Shyne-2.jpg" - }, - { - "name": "Silentó", - "image_url": "https://cmgajcmusic.files.wordpress.com/2015/06/silento-2.jpg" - }, - { - "name": "Silkk the Shocker", - "image_url": "http://2.bp.blogspot.com/_B1LlYh6iKqs/TK0gNRXZJ_I/AAAAAAAAC7g/vT3VW7tT8C4/s1600/silkk-the-shocker.jpg" - }, - { - "name": "Silla", - "image_url": "http://rap.de/wp-content/uploads/silla-rapde.png" - }, - { - "name": "Simon D", - "image_url": "http://3.bp.blogspot.com/-o789bRAl2C8/UaSCreHk8lI/AAAAAAAAD6A/671amIdPmxA/s1600/simon+d.jpg" - }, - { - "name": "Sir Jinx", - "image_url": "http://www.dubcnn.com/wp-content/uploads/2012/12/jinx-pic1000001.png" - }, - { - "name": "Sir Mix-a-Lot", - "image_url": "https://usatftw.files.wordpress.com/2018/03/pjimage-23-e1520876763340.jpg" - }, - { - "name": "Sirah", - "image_url": "http://www3.pictures.zimbio.com/gi/Sirah+55th+Annual+GRAMMY+Awards+Press+Room+AQYNmS4HQPUl.jpg" - }, - { - "name": "Skee-Lo", - "image_url": "http://whatisplayinginmyitunes.files.wordpress.com/2012/12/skee-lo.jpg" - }, - { - "name": "Skeme", - "image_url": "http://rapdose.com/wp-content/uploads/2014/05/Skeme-Believe.jpg" - }, - { - "name": "Skepta", - "image_url": "http://runthetrap.com/wp-content/uploads/2015/03/skepta-50bb835c0adb7.jpg" - }, - { - "name": "Skinnyman", - "image_url": "http://eslhiphop.com/wp-content/uploads/2013/06/skinnyman.png" - }, - { - "name": "Skooly", - "image_url": "https://i.ytimg.com/vi/6mZHPf-ZvFA/maxresdefault.jpg" - }, - { - "name": "Skyzoo", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2009/05/skyzoo.jpg" - }, - { - "name": "SL Jones", - "image_url": "http://www.audibletreats.com/Media/newspics/SL_Jones-08.jpg" - }, - { - "name": "Sleepy Brown", - "image_url": "http://s3.amazonaws.com/rapgenius/sleepy-brown-129.jpg" - }, - { - "name": "Slick Rick", - "image_url": "http://jobbiecrew.com/wp-content/uploads/2015/04/0slickrick2.jpg" - }, - { - "name": "Slim Jxmmi", - "image_url": "https://images.genius.com/7e898276f657a3d38d0febfee65a7280.640x640x1.jpg" - }, - { - "name": "Slim Thug", - "image_url": "http://1.bp.blogspot.com/-qfh469KzybM/TkT0T9dTN9I/AAAAAAAAAY8/uB-uoTiwCv4/s1600/Slim-Thug-Rapper-Gun.jpg" - }, - { - "name": "Slug", - "image_url": "http://unspokenstyle.files.wordpress.com/2011/01/slug.jpg" - }, - { - "name": "Smitty", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Smitty-rapper.jpg/1200px-Smitty-rapper.jpg" - }, - { - "name": "Smoke DZA", - "image_url": "http://massappeal.com/wp-content/uploads/2014/03/smoke-dza-.png" - }, - { - "name": "Smooth", - "image_url": "https://i.ytimg.com/vi/KmtRq-iucII/maxresdefault.jpg" - }, - { - "name": "Smoothe da Hustler", - "image_url": "https://i.ytimg.com/vi/e_zc1qBlu-c/maxresdefault.jpg" - }, - { - "name": "Sniper J", - "image_url": "http://medias.2kmusic.com/uploads/2010/03/19/img-1269021506-cb5ef53ef55ea9e90358d91d4e4b25f7.jpg" - }, - { - "name": "Snoop Dogg", - "image_url": "https://media.nbcnewyork.com/images/1200*675/Snoop+Dogg3.jpg" - }, - { - "name": "Snootie Wild", - "image_url": "https://images.genius.com/e0d17ec7650545545dabdf923613065c.600x600x1.jpg" - }, - { - "name": "Snow Tha Product", - "image_url": "http://blog.krizzkaliko.com/wp-content/uploads/2012/11/SNow-On-Kaliko.jpg" - }, - { - "name": "Soce the elemental wizard", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Soce.jpg/1200px-Soce.jpg" - }, - { - "name": "Sole", - "image_url": "http://lobermanhiphop.files.wordpress.com/2013/02/sole.jpg" - }, - { - "name": "Solzilla", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Sol_%28Seattle_rapper%29_03.jpg/1200px-Sol_%28Seattle_rapper%29_03.jpg" - }, - { - "name": "Sonny Digital", - "image_url": "https://nationofbillions.com/wp-content/uploads/2016/07/SONNYDIGITAL_1_Wireless.jpg" - }, - { - "name": "SonReal", - "image_url": "http://www.digitaljournal.com/img/2/7/4/3/7/7/i/1/7/0/o/BWsuit_15.JPG" - }, - { - "name": "Sonsee", - "image_url": "http://img2-ak.lst.fm/i/u/avatar170s/ed38054f95d64ddf9b5e6a53f9702497.jpg" - }, - { - "name": "Soopafly", - "image_url": "http://cache1.asset-cache.net/xc/136582867-rapper-soopafly-visits-the-late-show-with-filmmagic.jpg" - }, - { - "name": "Soulja Boy", - "image_url": "http://www.wallpaperup.com/uploads/wallpapers/2014/03/04/284914/a82261adb443e8646b88831a16649ffe.jpg" - }, - { - "name": "Soulja Slim", - "image_url": "http://listofdeadrappers.files.wordpress.com/2011/09/soulja_slim.jpg" - }, - { - "name": "South Park Mexican", - "image_url": "http://ww3.hdnux.com/photos/04/30/72/1150654/0/960x540.jpg" - }, - { - "name": "Southside", - "image_url": "https://i.ytimg.com/vi/L95z8KjFPZo/maxresdefault.jpg" - }, - { - "name": "SpaceGhostPurrp", - "image_url": "http://images1.miaminewtimes.com/imager/spaceghostpurrp-will-not-abide-the-fakes/u/original/6387038/7915708.0.jpg" - }, - { - "name": "Special Ed", - "image_url": "http://i1.ytimg.com/vi/XXOHX9HBeXk/maxresdefault.jpg" - }, - { - "name": "Spice 1", - "image_url": "http://s3.amazonaws.com/rapgenius/1378684361_tumblr_mi7aw9N3cj1qzx6s2o1_500.jpg" - }, - { - "name": "Spider Loc", - "image_url": "http://www.datwav.com/wp-content/uploads/2017/06/G-Unit-Rapper-Spider-Loc.jpg" - }, - { - "name": "Spoonie Gee", - "image_url": "http://www.boogitybeat.com/images/BB13068.jpg" - }, - { - "name": "Spose", - "image_url": "http://img3.wikia.nocookie.net/__cb20111103180051/rap/images/d/d7/Spose.png" - }, - { - "name": "Spot", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/6/6c/SPOT_January_2012_Photoshoot.jpg" - }, - { - "name": "Stalley", - "image_url": "http://blahblahblahscience.com/wp-content/uploads/2014/09/stalley.jpg" - }, - { - "name": "Starlito", - "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2010/02/starlito-sq-39399222.jpg" - }, - { - "name": "Stat Quo", - "image_url": "http://hiphopscholar.files.wordpress.com/2008/09/stat_quo.jpg" - }, - { - "name": "Static Major", - "image_url": "http://3.bp.blogspot.com/_DuzxFBl8bfQ/TKdHgLphHHI/AAAAAAAAAlA/e4rL00OHn-I/s1600/static+major+1.jpg" - }, - { - "name": "Statik Selektah", - "image_url": "http://www.tunecore.com/blog/wp-content/uploads/2015/05/statik.selektah-actual_wide-970ed5943d6d8b812a0e74a38aac7f8a2d1ae196-s6-c30.jpg" - }, - { - "name": "Steady B", - "image_url": "http://ring.cdandlp.com/lower/photo_grande/115261787.jpg" - }, - { - "name": "Stevie Joe", - "image_url": "http://siccness.net/wp/wp-content/uploads/2016/02/Stevie_Joe.jpg" - }, - { - "name": "Stevie Stone", - "image_url": "http://faygoluvers.net/v5/wp-content/uploads/2012/09/steviestone101912.jpg" - }, - { - "name": "Stezo", - "image_url": "http://phaseonemusic.com/wp-content/uploads/2012/02/STEZO+FREAK+THE+FUNK+COVER+1.jpg" - }, - { - "name": "Stitches", - "image_url": "https://pmchollywoodlife.files.wordpress.com/2015/12/stitches-the-game-insta-ftr.jpg" - }, - { - "name": "Sticky Fingaz", - "image_url": "http://interestingcelebrities.com/pictures/sticky_fingaz.jpg" - }, - { - "name": "Stoka", - "image_url": "https://www.hhunity.org/wp-content/uploads/2014/11/Stoka-Agram-Audio.png" - }, - { - "name": "Stoupe the Enemy of Mankind", - "image_url": "http://images.rapgenius.com/8ed6eb4ea61413e34c0a67f5e04f3b3c.600x340x1.jpg" - }, - { - "name": "Stormzy", - "image_url": "https://d.ibtimes.co.uk/en/full/1475476/stormzy.jpg" - }, - { - "name": "Stretch", - "image_url": "http://img2.wikia.nocookie.net/__cb20130717123821/hip-hop-music/images/6/69/Stretch.jpg" - }, - { - "name": "Styles P", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-styles-p-singer-celebrity-hip-hop.jpg" - }, - { - "name": "Substantial", - "image_url": "http://www.hiphopsite.com/wp-content/uploads/2010/06/Substantial.jpg" - }, - { - "name": "Suga Free", - "image_url": "http://s3.amazonaws.com/rapgenius/1361309346_l.jpg" - }, - { - "name": "Suffa", - "image_url": "http://i.dailymail.co.uk/i/pix/2015/02/28/262B331400000578-2973396-In_the_zone_The_Suffa_MC_from_the_Hilltop_Hoods_also_took_to_the-a-13_1425134138732.jpg" - }, - { - "name": "Swagg Man", - "image_url": "http://www.famousbirthdays.com/headshots/swagg-man-7.jpg" - }, - { - "name": "Sweet Tee", - "image_url": "http://www.rapindustry.com/sweet_tee_in.jpg" - }, - { - "name": "Swings", - "image_url": "http://cdn.koreaboo.com/wp-content/uploads/2014/11/htm_20141106171738c010c0111.jpg" - }, - { - "name": "Swizz Beatz", - "image_url": "http://www1.pictures.zimbio.com/gi/Swizz+Beatz+40th+American+Music+Awards+Arrivals+cTuFcCa4A2sl.jpg" - }, - { - "name": "SwizZz", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-swizzz-star-rap-hip-hop.jpg" - }, - { - "name": "Syd Tha Kyd", - "image_url": "https://i1.wp.com/hypebeast.com/image/2012/03/syd-tha-kyd-by-lance-bangs-edit-0.jpg" - }, - { - "name": "SZA", - "image_url": "http://www.billboard.com/files/styles/promo_650/public/media/sza-650.jpg" - }, - { - "name": "T.I.", - "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" - }, - { - "name": "Tyler the Creator", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/fa/52/a6/fa52a6dd8c76a533092056f173900e80.jpg" - }, - { - "name": "T La Rock", - "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-9.55.59-PM-715x719.png" - }, - { - "name": "T-Bone", - "image_url": "http://www.christianmusic.com/PHOTOS/t_bone-2.jpg" - }, - { - "name": "T-Nutty", - "image_url": "http://siccness.net/wp/wp-content/uploads/2016/02/nutty.png" - }, - { - "name": "T-Pain", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/02/grammy-award-winning-rapper-t-pain-Talks-Chance-The-Rapper.jpg" - }, - { - "name": "T-Wayne", - "image_url": "https://images.rapgenius.com/822e2be4f84c2ecdada82f017f75b7fb.960x960x1.jpg" - }, - { - "name": "T. Mills", - "image_url": "http://www2.pictures.zimbio.com/gi/T+Mills+Arrivals+Young+Hollywood+Awards+Part+NJl90h8MOpal.jpg" - }, - { - "name": "T.I.", - "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" - }, - { - "name": "T.O.P", - "image_url": "http://i2.asntown.net/h2/Korea/7/kpop-bigbang/TOP-bigbang-fashion06.jpg" - }, - { - "name": "Tabi Bonney", - "image_url": "https://thisguysworld.files.wordpress.com/2010/07/tabi.jpg" - }, - { - "name": "Tablo", - "image_url": "http://images5.fanpop.com/image/photos/30500000/Tablo-tablo-30511618-333-500.jpg" - }, - { - "name": "Taio Cruz", - "image_url": "http://colunas.multishowfm.globoradio.globo.com/platb/files/806/2010/11/Taio-Cruz-.jpg" - }, - { - "name": "Talib Kweli", - "image_url": "http://media2.fdncms.com/orlando/imager/u/original/2404812/talib_kweli.jpg" - }, - { - "name": "Target", - "image_url": "http://static5.businessinsider.com/image/4e9876896bb3f74864000017/rapper-rick-ross-was-the-target-of-a-drive-by-shooting-in-florida.jpg" - }, - { - "name": "Tay Dizm", - "image_url": "http://static.djbooth.net/pics-artist-rec/Tay_Dizm_1.jpg" - }, - { - "name": "Tay-K", - "image_url": "https://hypb.imgix.net/image/2017/10/ybn-nahmir-tay-k-the-race-remix-0.jpg" - }, - { - "name": "TD Cruze", - "image_url": "http://www.berliner-kurier.de/image/26201312/max/600/450/49d662a34b7203e4183c320bf0785416/UF/ted-cruz.jpg" - }, - { - "name": "Teairra Marí", - "image_url": "http://hw-img.datpiff.com/mb740e75/Teairra_Marie_Unfinished_Business-front-large.jpg" - }, - { - "name": "Tech N9ne", - "image_url": "http://vegasimpulse.files.wordpress.com/2012/04/tech-n9ne-2.jpg" - }, - { - "name": "Tedashii", - "image_url": "http://images.christianpost.com/full/75663/tedashii.jpg" - }, - { - "name": "TeeFlii", - "image_url": "http://www3.pictures.zimbio.com/gi/TeeFlii+BET+AWARDS+14+Day+1+Kp7kNUhHFvyl.jpg" - }, - { - "name": "Tee Grizzley", - "image_url": "https://i1.wp.com/hypebeast.com/image/2016/11/detroit-rapper-tee-grizzley-first-day-out-video-0.jpg" - }, - { - "name": "Tekitha", - "image_url": "http://rollingout.com/wp-content/uploads/2015/12/Anthony-Hamilton-380x280.jpg" - }, - { - "name": "Tela", - "image_url": "http://nebula.wsimg.com/88482f2967eb7b323b8df1fd1eff4d3a" - }, - { - "name": "Termanology", - "image_url": "http://static.djbooth.net/pics-artist/termanology.jpg" - }, - { - "name": "Terrace Martin", - "image_url": "https://lastfm-img2.akamaized.net/i/u/57e7f81f5b8f4d2daea075100bf0473a.png" - }, - { - "name": "Teyana Taylor", - "image_url": "http://worldofblackheroes.files.wordpress.com/2012/03/teyana-taylor-17.jpg" - }, - { - "name": "Tha Chill", - "image_url": "http://steadydippin.com/wp-content/uploads/Tha-Chill.jpg" - }, - { - "name": "Tha City Paper", - "image_url": "http://hw-img.datpiff.com/ma42439e/Tha_City_Paper_Paper_Aka_Tha_City_Paper_paper_Vie-front-large.jpg" - }, - { - "name": "Tha Trademarc", - "image_url": "http://s3.amazonaws.com/rapgenius/1363145335_John%20Cena%20%20Tha%20Trademarc%20JOHN_CENA___THA_TRADEMARCcolti.jpg" - }, - { - "name": "The-Dream", - "image_url": "http://thatgrapejuice.net/wp-content/uploads/2010/06/the-dream1.jpg" - }, - { - "name": "Theophilus London", - "image_url": "http://www2.pictures.zimbio.com/gi/Theophilus+London+Carlos+Campos+Presentation+NeU7Y7HGrqwl.jpg" - }, - { - "name": "Tiffany Foxx", - "image_url": "http://bloximages.newyork1.vip.townnews.com/stltoday.com/content/tncms/assets/v3/editorial/b/2c/b2cd2408-9233-5bff-9a8b-5d39bafa4029/50928305bb4ba.preview-620.jpg" - }, - { - "name": "Tim Dog", - "image_url": "http://assets.rollingstone.com/assets/2014/article/tim-dog-rapper-accused-of-faking-death-confirmed-dead-20140916/168425/large_rect/1401x788-retna2059832.jpg" - }, - { - "name": "Timaya", - "image_url": "http://www.360nobs.com/wp-content/uploads/2015/01/Jahbless1.jpg" - }, - { - "name": "Timbaland", - "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/timbaland.jpg" - }, - { - "name": "Timbe", - "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/timbaland.jpg" - }, - { - "name": "Tinie Tempah", - "image_url": "http://dollyumez.files.wordpress.com/2013/01/tinie-tempah.jpg" - }, - { - "name": "Tink (musician)", - "image_url": "https://cocoocd.files.wordpress.com/2013/04/228090_507024229347791_1052484062_n.jpg" - }, - { - "name": "TobyMac", - "image_url": "https://s-media-cache-ak0.pinimg.com/564x/e7/a8/9e/e7a89ea48cbf5822fb909ec267b79499.jpg" - }, - { - "name": "Tone Lōc", - "image_url": "http://media-cache-ak0.pinimg.com/736x/68/72/60/6872607c9c8e2dacc6a52a776d4b843a.jpg" - }, - { - "name": "Tone Trump", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2012/06/tonetrump.jpg" - }, - { - "name": "Tonedeff", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/51/Tonedefflive.png" - }, - { - "name": "Toni Blackman", - "image_url": "http://www.womex.com/virtual/image/artist/toni_blackman_big_29989.jpg" - }, - { - "name": "Tony Yayo", - "image_url": "http://zmldajoker.com/wp-content/uploads/2012/08/Tony-Yayo.jpg" - }, - { - "name": "Too Short", - "image_url": "https://escobar300.files.wordpress.com/2011/08/tooshort.jpg" - }, - { - "name": "Torch (American)", - "image_url": "http://1.bp.blogspot.com/-XU66PTiuIIA/T36hTMQCXJI/AAAAAAAAAcU/5rfwuQ6TWAU/s1600/Torch_(US_rapper).jpg" - }, - { - "name": "Torch (German)", - "image_url": "http://leaveyournineathome.files.wordpress.com/2007/10/torch-blauer_samt.jpg" - }, - { - "name": "Tory Lanez", - "image_url": "http://cdn.ratedrnb.com/2016/10/tory-lanez.jpg" - }, - { - "name": "Tracey Lee", - "image_url": "http://madrapper.com/wp-content/uploads/2010/12/Lee1.jpg" - }, - { - "name": "Trae tha Truth", - "image_url": "https://media.thehypemagazine.com/wp-content/uploads/2018/04/trae-tha-truth-paras-griffin-1024x683.jpg" - }, - { - "name": "Tragedy Khadafi", - "image_url": "http://assets2.vice.com/images/content-images/2014/12/29/tragedy-khadafi-is-still-queensbridges-realest-456-body-image-1419881556.jpg" - }, - { - "name": "Travis Scott", - "image_url": "http://www1.pictures.zimbio.com/gi/Travis+Scott+Arrivals+BET+Awards+54GWNTvi2gDl.jpg" - }, - { - "name": "Traxamillion", - "image_url": "https://cbarap.files.wordpress.com/2014/05/traxamillion.jpg" - }, - { - "name": "Tray Deee", - "image_url": "https://unitedgangs.files.wordpress.com/2013/07/ta36tw1.jpg" - }, - { - "name": "Treach", - "image_url": "https://ionehellobeautiful.files.wordpress.com/2016/01/14520871976376.jpg" - }, - { - "name": "Trey Songz", - "image_url": "http://www.creativefan.com/important/cf/2012/08/trey-songz-tattoo/trey-songz-body-tattoo.jpg" - }, - { - "name": "Trick Daddy", - "image_url": "https://i1.wp.com/celebritybio.org/wp-content/uploads/2014/08/Trick-Daddy-Net-Worth.jpg" - }, - { - "name": "Trick-Trick", - "image_url": "http://ctt.marketwire.com/" - }, - { - "name": "Trina", - "image_url": "http://www.missxpose.com/wp-content/uploads/2011/11/trina-bet-photo-shoot-4.jpg" - }, - { - "name": "Trinidad James", - "image_url": "https://cbshot937.files.wordpress.com/2012/12/trinidad_james10.jpg" - }, - { - "name": "Trip Lee", - "image_url": "http://www.eewmagazine.com/images/Trip-Lee-Good-life.jpg" - }, - { - "name": "Trippie Redd", - "image_url": "http://hiphopheads.net/wp-content/uploads/2017/08/Trippie-Redd-1.jpg" - }, - { - "name": "Tristan Wilds", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/8c/a2/44/8ca24487846ce97afbae1ff967fb78c5--tristan-wilds-rapper.jpg" - }, - { - "name": "Troy Ave", - "image_url": "http://www.ballerstatus.com/wp-content/uploads/2016/05/tave.jpg" - }, - { - "name": "Tupac Shakur", - "image_url": "http://sahiphopmag.co.za/wp-content/uploads/2016/05/Rap-artist-Tupac-Shakur.jpg" - }, - { - "name": "Turf Talk", - "image_url": "http://www.wallpaperup.com/uploads/wallpapers/2013/12/01/181203/19ce36a2c8ceed416ad66fa6d96db889.jpg" - }, - { - "name": "Turk", - "image_url": "http://www.brothersonsports.com/wp-content/uploads/2014/12/turkandwayne.jpg" - }, - { - "name": "Tweedy Bird Loc", - "image_url": "http://steadydippin.com/wp-content/uploads/Tweedy-Bird-Loc.jpg" - }, - { - "name": "Twista", - "image_url": "http://www.trbimg.com/img-53503146/turbine/ct-twista-chicago-rap-durty-nellies-20140417-001/2048/1365x2048" - }, - { - "name": "Twisted Insane", - "image_url": "http://assets.audiomack.com/rap-ebashit/f6e96e7ed6b0e965062aaed0ab4a9983.jpeg" - }, - { - "name": "Ty Dolla Sign", - "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/01/tydolla.jpg" - }, - { - "name": "Tyga", - "image_url": "http://www.eurweb.com/wp-content/uploads/2015/07/tyga.jpg" - }, - { - "name": "Tyler Joseph", - "image_url": "https://s-media-cache-ak0.pinimg.com/564x/02/1c/b9/021cb958f946bfa08f64aea9d90b1a5b.jpg" - }, - { - "name": "Tyler The Creator", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/fa/52/a6/fa52a6dd8c76a533092056f173900e80.jpg" - }, - { - "name": "Tyra Bolling", - "image_url": "http://www.famousbirthdays.com/faces/bolling-tyra-image.jpg" - }, - { - "name": "Verbal Jint", - "image_url": "https://www.allkpop.com/upload/2017/09/af_org/22120146/verbal-jint.jpg" - }, - { - "name": "U-God", - "image_url": "http://assets.rollingstone.com/assets/2014/albumreview/wu-tang-clan-a-better-tomorrow-20141218/178198/large_rect/1418859659/1401x788-Wu_Tang_Clan_JW_WBR_107(2).JPG" - }, - { - "name": "Ugly God", - "image_url": "http://dailychiefers.com/wp-content/media/2016/03/ugly-god.jpg" - }, - { - "name": "Uncle Murda", - "image_url": "http://hiphop-n-more.com/wp-content/uploads/2015/01/uncle-murda-2014-rap-up.jpg" - }, - { - "name": "Unk", - "image_url": "http://antoniofam.files.wordpress.com/2011/05/dj_unk.jpg" - }, - { - "name": "U$O", - "image_url": "http://images.stiften.dk/22/63622_1200_0_0_35_1921_1200_2.jpg" - }, - { - "name": "Wyclef Jean", - "image_url": "http://media.gettyimages.com/photos/rapper-wyclef-jean-performs-in-concert-at-brooklyn-bowl-on-march-29-picture-id518080012" - }, - { - "name": "V-Nasty", - "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/fl_lossy,pg_1,q_auto/daxoo4uvasmysgziontg.jpg" - }, - { - "name": "V.I.C.", - "image_url": "http://www.bigbloc.com/proto/images/hiphop/V.I.C._.jpg" - }, - { - "name": "Vado", - "image_url": "http://messymandella.files.wordpress.com/2012/10/vado_.jpg" - }, - { - "name": "Vakill", - "image_url": "http://thamidwest.com/wp-content/uploads/Vakill.png" - }, - { - "name": "Val Young", - "image_url": "https://i.ytimg.com/vi/uxy12OgQL54/maxresdefault.jpg" - }, - { - "name": "Valete", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/0/04/ValeteRapper.jpg" - }, - { - "name": "Vanilla Ice", - "image_url": "http://i.dailymail.co.uk/i/pix/2008/04_02/iceLFI1104_468x762.jpg" - }, - { - "name": "Vast Aire", - "image_url": "http://exclaim.ca/images/vast1.jpg" - }, - { - "name": "Verbal Jint", - "image_url": "https://www.allkpop.com/upload/2017/09/af_org/22120146/verbal-jint.jpg" - }, - { - "name": "Verse Simmonds", - "image_url": "https://i0.wp.com/allhiphop.com/wp-content/uploads/2012/02/verse-simmonds-1.png" - }, - { - "name": "Vic Mensa", - "image_url": "http://media-cache-ak0.pinimg.com/736x/91/aa/c1/91aac1b95e805342d2225913359ebd2b.jpg" - }, - { - "name": "Vince Staples", - "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/21/4B25AB0C00000578-5622755-image-a-24_1523909544359.jpg" - }, - { - "name": "Vinnie Paz", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-vinnie-paz-celebrity-song-rap.jpg" - }, - { - "name": "Violent J", - "image_url": "http://www.celebdirtylaundry.com/wp-content/uploads/violent-j-stereo-stolen.jpg" - }, - { - "name": "Viper", - "image_url": "http://static.qobuz.com/images/covers/14/83/3610154048314_600.jpg" - }, - { - "name": "VL Mike", - "image_url": "http://themusicsover.com/wp-content/uploads/2008/04/vlmike2.jpg" - }, - { - "name": "Xzibit", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.330091.1314424298!/img/httpImage/image.jpg_gen/derivatives/article_1200/amd-xzibit-jpg.jpg" - }, - { - "name": "Waka Flocka Flame", - "image_url": "http://2.bp.blogspot.com/-32xuBz8T-dk/T8oPlIH1PjI/AAAAAAAAqb0/pVwsKQXbigU/s1600/99_waka-flocka.jpg" - }, - { - "name": "Wale", - "image_url": "http://upbjmu.files.wordpress.com/2010/04/wale.jpg" - }, - { - "name": "Warren G", - "image_url": "http://images.huffingtonpost.com/2014-06-23-WarrenG.jpg" - }, - { - "name": "Warryn Campbell", - "image_url": "http://www.famousbirthdays.com/thumbnails/campbell-warryn-medium.jpg" - }, - { - "name": "Watsky", - "image_url": "http://www.gannett-cdn.com/-mm-/ac1394dbdcca6a36cbf486633b129cd813095ac3/r=x404&c=534x401/local/-/media/USATODAY/USATODAY/2013/05/23/1369356877000-image-1305232056_4_3.jpg" - }, - { - "name": "Wax (rapper)", - "image_url": "http://s3.amazonaws.com/rapgenius/Big_Wax_in_Front_of_a_Fence.jpg" - }, - { - "name": "WC", - "image_url": "http://www3.pictures.zimbio.com/fp/Wc+WC+Performing+In+Vancouver+RlfP1TE81Vzl.jpg" - }, - { - "name": "Webbie", - "image_url": "https://messymandella.files.wordpress.com/2012/08/16.jpg" - }, - { - "name": "The Weeknd", - "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2013/02/the_weeknd_0205131.jpg" - }, - { - "name": "Westside Gunn", - "image_url": "http://247hiphopnews.com/wp-content/uploads/2017/06/WestSide-Gunn-JAYFORCE.COM_.png" - }, - { - "name": "Wikluh Sky", - "image_url": "https://a4-images.myspacecdn.com/images01/12/691bb215a8b471aa86fc0f11a46ddfdb/full.jpg" - }, - { - "name": "Will Smith", - "image_url": "http://www.clashmusic.com/sites/default/files/styles/article_feature/public/legacy/files/willsmith-freshprince.jpg" - }, - { - "name": "will.i.am", - "image_url": "http://i1.tribune.com.pk/wp-content/uploads/2013/04/538192-image-1366470972-209-640x480.JPG" - }, - { - "name": "Willie D", - "image_url": "http://siccness.net/wp/wp-content/uploads/2013/02/Willie-D-blackchair1.jpg" - }, - { - "name": "Willie the Kid", - "image_url": "http://static.djbooth.net/pics-artist/williethekid.jpg" - }, - { - "name": "Willow Smith", - "image_url": "http://i.dailymail.co.uk/i/pix/2010/12/26/article-1341770-0C9599D1000005DC-328_468x531.jpg" - }, - { - "name": "Willy Northpole", - "image_url": "http://www.bet.com/topics/w/willy-northpole/_jcr_content/image.heroimage.dimg/__1378865366064/081012-topic-music-willy-northpole.jpg" - }, - { - "name": "Wish Bone", - "image_url": "http://djrushmusic.files.wordpress.com/2011/05/wish.jpg" - }, - { - "name": "Witchdoctor", - "image_url": "http://www.cocaineblunts.com/blunts/wp-content/uploads/2007/11/witch3.jpg" - }, - { - "name": "Wiz Khalifa", - "image_url": "http://farm8.staticflickr.com/7154/6622364753_1b2ab906b4.jpg" - }, - { - "name": "Wizkid", - "image_url": "http://www.thenet.ng/wp-content/uploads/2012/07/wale_wizkid-1.jpg" - }, - { - "name": "Wrekonize", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/a6/03/8d/a6038dcfe1d2068294fd3991603bedcf.jpg" - }, - { - "name": "Wyclef Jean", - "image_url": "http://media.gettyimages.com/photos/rapper-wyclef-jean-performs-in-concert-at-brooklyn-bowl-on-march-29-picture-id518080012" - }, - { - "name": "X-Raided", - "image_url": "http://siccness.net/wp/wp-content/uploads/2016/03/xraided.jpg" - }, - { - "name": "XV", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/XV_performance_Dancefestopia_2013_2014-01-28_00-39.jpg/1200px-XV_performance_Dancefestopia_2013_2014-01-28_00-39.jpg" - }, - { - "name": "Xzibit", - "image_url": "http://assets.nydailynews.com/polopoly_fs/1.330091.1314424298!/img/httpImage/image.jpg_gen/derivatives/article_1200/amd-xzibit-jpg.jpg" - }, - { - "name": "XXXTentacion", - "image_url": "https://dancehallhiphop.com/wp-content/uploads/2017/12/XXXTentacion-rapper-800x565.jpg" - }, - { - "name": "X Clan", - "image_url": "http://www.xxlmag.com/files/2015/03/x-clan-feat2.jpg" - }, - { - "name": "Yolandi Visser", - "image_url": "https://i.pinimg.com/originals/d0/fd/b2/d0fdb22ac606edd8f1bd15abd8d67faa.jpg" - }, - { - "name": "Young Jeezy", - "image_url": "http://pennylibertygbow.files.wordpress.com/2012/02/youngjeezy3.jpg" - }, - { - "name": "Ya Boy", - "image_url": "http://www.yorapper.com/Photos/ya-boy-rapper.jpg" - }, - { - "name": "Yaki Kadafi", - "image_url": "https://40.media.tumblr.com/d340fd47b49c53270809188a633dd53b/tumblr_nnhcxjUrQ41tm7i3uo1_500.jpg" - }, - { - "name": "Yazz The Greatest", - "image_url": "http://l7.alamy.com/zooms/ed94feec8a1b4ca9a29552f71c0625ac/philadelphia-pa-usa-15th-may-2016-american-rapper-yazz-the-greatest-g1ppkr.jpg" - }, - { - "name": "YBN Nahmir", - "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/YBN-Nahmir-2018.png/1200px-YBN-Nahmir-2018.png" - }, - { - "name": "YC", - "image_url": "http://www2.pictures.zimbio.com/gi/YC+BET+Awards+11+Press+Room+RRqra9BH48Ql.jpg" - }, - { - "name": "YDG", - "image_url": "http://www.bntnews.co.uk/images/news/2014/z7rqhmv4d3wjw5nffyob82va89tuo6me.jpg" - }, - { - "name": "Yelawolf", - "image_url": "http://3.bp.blogspot.com/-tOoHr9RZwUA/TjvmXyGFLWI/AAAAAAAAALg/tNy7P4_BWy4/s1600/Yelawolf-994x1024.jpg" - }, - { - "name": "YFN Lucci", - "image_url": "https://www.trapworldhiphop.com/wp-content/uploads/YFN-Lucci.jpg" - }, - { - "name": "YG", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/39/40/81/3940811a323f82520ca394aa7cec923f.jpg" - }, - { - "name": "Yo Gotti", - "image_url": "https://s-media-cache-ak0.pinimg.com/736x/b8/25/70/b82570e97603b42d3ff6f8dc26d2d0c5.jpg" - }, - { - "name": "Yo Yo Honey Singh", - "image_url": "http://media2.intoday.in/indiatoday/images/stories/honey-4_650_090214091121.jpg" - }, - { - "name": "Yoon Mi-rae", - "image_url": "http://media.tumblr.com/tumblr_m5sq6s8kb41r84myb.jpg" - }, - { - "name": "Young Bleed", - "image_url": "http://udgsounds.com/wp-content/uploads/2016/01/young-bleed-pic-for-interview-1.jpg" - }, - { - "name": "Young Buck", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-young-buck-hip-hop-fame-rap.jpg" - }, - { - "name": "Young Chop", - "image_url": "http://rollingout.com/wp-content/uploads/2014/11/young_chop.jpg" - }, - { - "name": "Young Chris", - "image_url": "http://hustlebunny.com/content/2012/08/young-chris-rapper.jpg" - }, - { - "name": "Young Dolph", - "image_url": "http://img.wennermedia.com/social/rs-young-dolph-v1-d999645e-11e4-4549-b0f6-61af8728931a.jpg" - }, - { - "name": "Young Dre the Truth", - "image_url": "https://www.rapmusicguide.com/amass/images/inventory/9868/young%20dre-rev-4.jpg" - }, - { - "name": "Young Dro", - "image_url": "http://www.sohh.com/wp-content/uploads/2014/06/young-dro-2012-11-10-300x3001.jpg" - }, - { - "name": "Young Greatness", - "image_url": "http://hw-static.hiphopearly.com/images/tracks/3/Trappin-t32631-large.jpg" - }, - { - "name": "Young Jeezy", - "image_url": "http://pennylibertygbow.files.wordpress.com/2012/02/youngjeezy3.jpg" - }, - { - "name": "Young M.A", - "image_url": "https://cmga360music.files.wordpress.com/2017/03/youngma_img_9284_mike-marquez.jpg" - }, - { - "name": "Young Maylay", - "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2013/03/Young-Maylay-3.jpg" - }, - { - "name": "Young MC", - "image_url": "http://www1.pictures.zimbio.com/gi/Young+MC+Screening+Lionsgate+Films+Expendables+A6aEODh_pRRl.jpg" - }, - { - "name": "Young Noble", - "image_url": "https://www.strangemusicinc.com/wp-content/uploads/2011/09/Noble.jpg" - }, - { - "name": "Young Scooter", - "image_url": "http://www.4umf.com/wp-content/uploads/2013/04/Rapper-Young-Scooter-Arrested.jpg" - }, - { - "name": "Young Thug", - "image_url": "https://djbooth.net/.image/t_share/MTU0NzgzMTA4OTEzMTc3NzI3/chance-the-rapper-project-with-young-thug.jpg" - }, - { - "name": "YoungBoy Never Broke Again", - "image_url": "http://image.nola.com/home/nola-media/width600/img/crime_impact/photo/youngboy-never-broke-again-499fcd968041c808.jpg" - }, - { - "name": "Your Old Droog", - "image_url": "https://2.bp.blogspot.com/-LBeysv-KSHw/V1oDq2dOglI/AAAAAAAAIZc/NiQPZ0DOaBgHnZiILbvwTUJfSHT7vNMTQCLcB/s1600/Your%2BOld%2BDroog.jpg" - }, - { - "name": "Yubin", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-yubin-celebrity-hip-hop-singer-style.jpg" - }, - { - "name": "Yukmouth", - "image_url": "http://content9.flixster.com/photo/13/58/04/13580447_ori.jpg" - }, - { - "name": "Yung Berg", - "image_url": "http://4.bp.blogspot.com/_sBPAPP8w_cA/TLgdFYjm7FI/AAAAAAAAAtU/blx-d1WJmMQ/s1600/yung%20berg.jpg" - }, - { - "name": "Yung Joc", - "image_url": "http://www.judiciaryreport.com/images_4/yung-joc-5-12-15-3.jpg" - }, - { - "name": "Yung L.A.", - "image_url": "http://2.bp.blogspot.com/_WcsRR3fKzyU/TPZx4zZP_9I/AAAAAAAAAXY/z7SrxMG6ehs/s1600/yung_la_1.jpg" - }, - { - "name": "Yung Lean", - "image_url": "http://content.acclaimmag.com/content/uploads/2016/04/yung-lean3-600x400.jpg" - }, - { - "name": "Yung Ro", - "image_url": "http://c3.cduniverse.ws/resized/250x500/music/135/7350135.jpg" - }, - { - "name": "Yung Wun", - "image_url": "http://independentmusicpromotions.com/wp-content/uploads/2011/12/16279_Yung-Wun-pr04.jpg" - }, - { - "name": "Yung6ix", - "image_url": "https://mojidelano.com/wp-content/uploads/2017/03/Yung6ix-1.jpg" - }, - { - "name": "YZ", - "image_url": "http://www.cocaineblunts.com/blunts/wp-content/uploads/2009/06/yz.jpg" - }, - { - "name": "Z-Ro", - "image_url": "http://hiphop-n-more.com/wp-content/uploads/2013/04/z-ro-4.jpg" - }, - { - "name": "Zack de la Rocha", - "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-zack-de-la-rocha-singer-rap-photoshoot-young.jpg" - }, - { - "name": "Zaytoven", - "image_url": "https://s3.amazonaws.com/hiphopdx-production/2016/03/Zaytoven-Bankroll-Fresh-e1457227555254-824x620.png" - }, - { - "name": "Zebra Katz", - "image_url": "http://thencrowd14.com/wp-content/uploads/2016/11/04-371x500.jpg" - }, - { - "name": "Zelooperz", - "image_url": "https://i-d-images.vice.com/images/articles/meta/2016/01/26/untitled-article-1453817283.jpg" - }, - { - "name": "Zico", - "image_url": "https://i.pinimg.com/736x/05/4a/2e/054a2eb016aa2d165fb3d933c0b47207.jpg" - } -] \ No newline at end of file diff --git a/pysite/migrations/__init__.py b/pysite/migrations/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pysite/migrations/runner.py b/pysite/migrations/runner.py new file mode 100644 index 00000000..d498832f --- /dev/null +++ b/pysite/migrations/runner.py @@ -0,0 +1,95 @@ +import importlib +import json +import os +from typing import Callable + +from pysite.database import RethinkDB +from pysite.tables import TABLES + +TABLES_DIR = os.path.abspath("./pysite/migrations/tables") +VERSIONS_TABLE = "_versions" + + +def get_migrations(table_path, table): + """ + Take a table name and the path to its migration files, and return a dict containing versions and modules + corresponding with each migration. + + And, yes, migrations start at 1. + """ + migrations = {} + final_version = 0 + + for filename in sorted(os.listdir(table_path)): + if filename.startswith("v") and filename.endswith(".py"): + final_version = int(filename[1:-3]) + migrations[final_version] = f"pysite.migrations.tables.{table}.v{final_version}" + + return migrations, final_version + + +def run_migrations(db: RethinkDB, output: Callable[[str], None]=None): + for table, obj in TABLES.items(): # All _defined_ tables + table_path = os.path.join(TABLES_DIR, table) + + if not os.path.exists(table_path): # Check whether we actually have any migration data for this table at all + output(f"No migration data found for table: {table}") + continue + + with db.get_connection() as conn: # Make sure we have an active connection + try: + if not db.query(table).count().run(conn): # If there are no documents in the table... + # Table's empty, so we'll have to run migrations again anyway + db.delete(VERSIONS_TABLE, table) + + json_path = os.path.join(table_path, "initial_data.json") + + if os.path.exists(json_path): # We have initial data to insert, so let's do that + with open(json_path, "r", encoding="utf-8") as json_file: + data = json.load(json_file) + db.insert(table, *data) # Table's empty, so... just do the thing + + output(f"Inserted initial data for table: {table}") + else: # There's no json data file for this table + output(f"No initial_data.json file for table: {table}") + output(json_path) + + # Translate migration files into modules and versions + migrations, final_version = get_migrations(table_path, table) + + if not migrations: # No migration files found + output(f"No structural migrations for table: {table}") + continue + + current_version = 0 + doc = db.get(VERSIONS_TABLE, table) + + if doc: # We've done a migration before, so continue from where we left off + current_version = doc["version"] + + if current_version == final_version: # Nothing to do, we're up to date + output(f"Table is already up to date: {table}") + continue + output(f"Table has never been migrated: {table}") + + while current_version < final_version: + current_version += 1 + + module = importlib.import_module(migrations[current_version]) + module.run(db, table, obj) + output(f"Table upgraded to version {current_version}/{final_version}: {table}") + + # Make sure the versions table is kept up to date, so we don't ever migrate twice + # We do this in the loop to save our progress, in case we fail during a migration + + db.insert( + VERSIONS_TABLE, + {"table": table, "version": current_version}, + conflict="replace", + durability="soft" + ) + except Exception: + output(f"Failed to migrate table: {table}") + raise + finally: + db.sync(VERSIONS_TABLE) diff --git a/pysite/migrations/tables/__init__.py b/pysite/migrations/tables/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pysite/migrations/tables/hiphopify_namelist/__init__.py b/pysite/migrations/tables/hiphopify_namelist/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pysite/migrations/tables/hiphopify_namelist/initial_data.json b/pysite/migrations/tables/hiphopify_namelist/initial_data.json new file mode 100644 index 00000000..6d90a4a2 --- /dev/null +++ b/pysite/migrations/tables/hiphopify_namelist/initial_data.json @@ -0,0 +1,5198 @@ +[ + { + "name": "100 Kila", + "image_url": "http://hotnews.bg/uploads/tinymce/w09/100-%D0%BA%D0%B8%D0%BB%D0%B0.jpg" + }, + { + "name": "100s", + "image_url": "http://images.complex.com/complex/image/upload/t_article_image/nzwte8lxj3p1orqf5yrm.jpg" + }, + { + "name": "12 Gauge", + "image_url": "http://cps-static.rovicorp.com/3/JPG_250/MI0001/358/MI0001358517.jpg" + }, + { + "name": "2 Chainz", + "image_url": "http://thesource.com/wp-content/uploads/2016/01/2-Chainz-rapper.jpg" + }, + { + "name": "2 Pistols", + "image_url": "http://images3.wikia.nocookie.net/__cb20130521104737/rap/images/0/0c/2p.jpg" + }, + { + "name": "2$ Fabo", + "image_url": "http://assets.audiomack.com/2-fabo/355f3587905bb4e2bc936f76cd64cef3.jpeg" + }, + { + "name": "21 Savage", + "image_url": "https://nyppagesix.files.wordpress.com/2018/04/21-savage-amber-rose.jpg" + }, + { + "name": "2Mex", + "image_url": "https://www.ballerstatus.com/wp-content/uploads/2016/05/2mex.jpg" + }, + { + "name": "360", + "image_url": "http://resources1.news.com.au/images/2012/07/19/1226428/465937-rapper-360-hit.jpg" + }, + { + "name": "40 Glocc", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2014/06/40glocc.jpg" + }, + { + "name": "50 Cent", + "image_url": "http://www.michellehenry.fr/rapper_50_cent.jpg" + }, + { + "name": "6lack", + "image_url": "http://electriccircus.co/home/wp-content/uploads/2017/01/black.jpg" + }, + { + "name": "6ix9ine", + "image_url": "http://thesource.com/wp-content/uploads/2018/04/Screen-Shot-2018-04-11-at-8.51.56-AM.png" + }, + { + "name": "The 6th Letter", + "image_url": "http://hw-img.datpiff.com/m5dadf91/The_6th_Letter_What_The_F_the_Mixtape-front-large.jpg" + }, + { + "name": "9th Wonder", + "image_url": "http://www.hiphopvideoworld.com/wp-content/uploads/2016/06/Talib-Kweli-ft.-9th-Wonder-Rapsody-Life-Ahead-Of-Me.jpg" + }, + { + "name": "Andre 3000", + "image_url": "http://1.bp.blogspot.com/-1TAyMhARS8s/UaWDLXzZzdI/AAAAAAAACDg/NOToaM0g_as/s1600/80999804-e1369795094594.jpg" + }, + { + "name": "Big Boi", + "image_url": "http://redalertpolitics.com/files/2013/01/BigBoi.jpg" + }, + { + "name": "A.CHAL", + "image_url": "http://images.thissongissick.com/c_fill-f_auto-g_faces-h_630-w_1200-v1496443961-this-song-is-sick-media-image-a-chal-press-shot-1496443960836-png.jpg" + }, + { + "name": "A+", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/72/Guru_(rapper).jpg" + }, + { + "name": "A-Q", + "image_url": "http://www.eurweb.com/wp-content/uploads/2011/05/qtip.jpg" + }, + { + "name": "Arabian Prince", + "image_url": "https://68.media.tumblr.com/3938a8b6b11d462ba95807666e47f778/tumblr_mvjf8kRjCx1qzx6s2o1_500.jpg" + }, + { + "name": "Ab-Soul", + "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2014/05/ab-soul.jpg" + }, + { + "name": "A Boogie wit da Hoodie", + "image_url": "https://vergecampus.com/wp-content/uploads/2018/04/Screen-Shot-2018-04-09-at-9.47.46-PM-1024x594.png" + }, + { + "name": "Abstract Rude", + "image_url": "http://media1.fdncms.com/orlando/imager/u/original/2554165/20170112_abstract_rude_5.jpg" + }, + { + "name": "Ace Hood", + "image_url": "http://www.aceshowbiz.com/images/news/00024363.jpg" + }, + { + "name": "Aceyalone", + "image_url": "http://images.rapgenius.com/4f38e699f6f80a3255420adf5e98a0a8.600x600x1.jpg" + }, + { + "name": "Action Bronson", + "image_url": "http://alloveralbany.com/images/rapper_Action_Bronson.jpg" + }, + { + "name": "Adam Saleh", + "image_url": "http://naibuzz.com/wp-content/uploads/2016/05/adam-saleh.jpg" + }, + { + "name": "Aesop Rock", + "image_url": "https://static-secure.guim.co.uk/sys-images/Guardian/Pix/pictures/2014/5/5/1399294322119/Rapper-Aesop-Rock-014.jpg" + }, + { + "name": "Afrika Bambaataa", + "image_url": "http://imageslogotv-a.akamaihd.net/uri/mgid:uma:image:logotv.com:11564172" + }, + { + "name": "Afroman", + "image_url": "http://www.irishnews.com/picturesarchive/irishnews/irishnews/2017/01/10/130012018-8220bff2-983c-48f3-ae57-276cab82f911.png" + }, + { + "name": "Afu-Ra", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/20120504_-_Afu-Ra.jpg/220px-20120504_-_Afu-Ra.jpg" + }, + { + "name": "Agallah", + "image_url": "http://1.bp.blogspot.com/-jJBR6f4cBwI/ThQ-NxjTffI/AAAAAAAABF4/Oe2n71hDmtM/s320/8%2Boff%2Bagallah.jpg" + }, + { + "name": "Ahmad", + "image_url": "http://images.rapgenius.com/38af31ae445f8c6ac6ce2a3b21a4605b.1000x684x1.jpg" + }, + { + "name": "Ajs Nigrutin", + "image_url": "http://vignette2.wikia.nocookie.net/rap/images/0/0f/Medium_ajs-nigrutin.jpg/revision/latest" + }, + { + "name": "Akala", + "image_url": "http://assets.londonist.com/uploads/2015/11/akala.jpg" + }, + { + "name": "Akinyele", + "image_url": "http://www.hiphopfind.com/upload/bukmtqhhlj.jpg" + }, + { + "name": "Akir", + "image_url": "http://www.iamhiphopmagazine.com/wp-content/uploads/2013/05/Akir.jpg" + }, + { + "name": "Akon", + "image_url": "http://img.mi9.com/male-celebrities/5077/akon-rapper-2012_1920x1200_96228.jpg" + }, + { + "name": "The Alchemist", + "image_url": "http://4.bp.blogspot.com/_nF-S6ZVuhd4/SuESHfU70_I/AAAAAAAAABs/s0txyMZP-Ps/s400/alc.jpg" + }, + { + "name": "Ali Vegas", + "image_url": "https://s3-us-west-2.amazonaws.com/maven-user-photos/f0f13b1e-f33a-4136-bc5a-6a0f09dd591f" + }, + { + "name": "Alpha", + "image_url": "https://images.rapgenius.com/9f2ba7bd713179faa8fe8968969f82eb.1000x667x1.jpg" + }, + { + "name": "AMG", + "image_url": "http://en.academic.ru/pictures/enwiki/65/Amg_rapper.jpg" + }, + { + "name": "Amil", + "image_url": "http://3.bp.blogspot.com/_RaOrchOImw8/SxSVt5z1auI/AAAAAAAAbeQ/sZ7xLZjOmco/s1600/Amil.jpg" + }, + { + "name": "Aminé", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/17/Amine_performing_on_Jimmy_Fallon_in_2017_%28crop%29.png/1200px-Amine_performing_on_Jimmy_Fallon_in_2017_%28crop%29.png" + }, + { + "name": "Amir Obè", + "image_url": "http://www.brooklynvegan.com/files/2016/03/Amir-Obe-Press-2015-billboard-650-e1457450170547.jpg" + }, + { + "name": "Ampichino", + "image_url": "http://ecx.images-amazon.com/images/I/51rPUuz7FTL._SL500_AA280_.jpg" + }, + { + "name": "Anderson .Paak", + "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2017/01/Chance-The-Rapper-Anderson-.Paak_.jpg" + }, + { + "name": "André 3000", + "image_url": "http://1.bp.blogspot.com/-1TAyMhARS8s/UaWDLXzZzdI/AAAAAAAACDg/NOToaM0g_as/s1600/80999804-e1369795094594.jpg" + }, + { + "name": "Andre Nickatina", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-andre-nickatina-singer-man-star.jpg" + }, + { + "name": "Andy Mineo", + "image_url": "http://media-cache-ec0.pinimg.com/736x/8c/fa/7a/8cfa7aebe58f9bc08a140cc571d62723.jpg" + }, + { + "name": "Angel Haze", + "image_url": "http://www.trbimg.com/img-508ac7c2/turbine/la-et-ms-fall-in-love-with-angel-haze-20121025-003/600" + }, + { + "name": "Angie Martinez", + "image_url": "http://www.missinfo.tv/wp-content/uploads/2014/03/yg-angie-martinez.png" + }, + { + "name": "Ant", + "image_url": "http://static.vibe.com/files/article_images/yg-addie.jpg" + }, + { + "name": "Ant Banks", + "image_url": "http://www.rapmusicguide.com/amass/images/inventory/2415/Ant%20Banks%20-%20Big%20Thangs.jpg" + }, + { + "name": "Antoinette", + "image_url": "http://static.squarespace.com/static/520ed800e4b0229123208764/521febeae4b011f034449849/521febebe4b0b42980e39d2d/1377823723826/whostheboss.jpg" + }, + { + "name": "Anybody Killa", + "image_url": "http://cdn.ticketfly.com/i/00/01/38/13/01-atxl1.png" + }, + { + "name": "Apache", + "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:4554653" + }, + { + "name": "Apathy", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1f/Apathy_rapper.jpg" + }, + { + "name": "Arin Hanson", + "image_url": "https://i.redditmedia.com/WE_gR0aOODE9WLF-83188AYG9Rd2QknnezyMyKVv_q0.jpg" + }, + { + "name": "A$AP Ferg", + "image_url": "http://media.gettyimages.com/photos/rapper-aap-ferg-performs-in-concert-at-austin-music-hall-on-february-picture-id508118894" + }, + { + "name": "A$AP Nast", + "image_url": "https://i1.wp.com/hypebeast.com/image/2017/02/asap-nast-calabasas-collection-video-0-1.jpg" + }, + { + "name": "A$AP Rocky", + "image_url": "http://3.bp.blogspot.com/-4ks0l9W_v9w/T_H3jtPbI-I/AAAAAAACePQ/9fbnSjU60zE/s1600/Rapper+A$AP+Rocky.jpg" + }, + { + "name": "A$AP Yams", + "image_url": "http://cdn.chartattack.com/wp-content/uploads/2015/01/asap-yams.jpg" + }, + { + "name": "A$ton Matthews", + "image_url": "http://hivesociety.com/wp-content/uploads/2014/07/Aston004.jpg" + }, + { + "name": "Asher Roth", + "image_url": "http://www.streetgangs.com/wp-content/uploads/2010/08/asher-roth.jpg" + }, + { + "name": "Astronautalis", + "image_url": "http://jacksonville.com/sites/default/files/imagecache/superphoto/photos/blogs/141/13358_203735570707_32280295707_4512309_5261114_n.jpg" + }, + { + "name": "Awol One", + "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/fl_lossy,pg_1,q_auto/lqiqtknfvukvwx4ki4te.jpg" + }, + { + "name": "Awkwafina", + "image_url": "http://media3.s-nbcnews.com/i/newscms/2014_35/635111/awkwafina_06_00cd08f4bbc01bf20145954bf5e97fc0.jpg" + }, + { + "name": "AZ", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/76/Az-03.jpg" + }, + { + "name": "Azealia Banks", + "image_url": "http://i.huffpost.com/gen/920953/images/o-RAPPER-AZEALIA-BANKS-facebook.jpg" + }, + { + "name": "Big Daddy Kane", + "image_url": "http://images.rapgenius.com/30a5d7f5135fdf9124beff6834884ff8.640x773x1.jpg" + }, + { + "name": "Busta Rhymes", + "image_url": "http://newsbite.it/public/images/articles/busta-drake.jpg" + }, + { + "name": "B-Legit", + "image_url": "http://cps-static.rovicorp.com/3/JPG_500/MI0003/729/MI0003729154.jpg" + }, + { + "name": "B-Real", + "image_url": "http://www3.pictures.zimbio.com/pc/Rapper+B+Real+Cypress+Hill+outside+Beso+Hollywood+sklqv7IPKMfl.jpg" + }, + { + "name": "B.G.", + "image_url": "http://1.bp.blogspot.com/-L8lASsCAFzo/Ve46XOQJynI/AAAAAAAAJOw/zJ6vIxtAbrs/s400/BG-In-Prison-2015.jpg" + }, + { + "name": "B.G. Knocc Out", + "image_url": "https://escobar300.files.wordpress.com/2013/08/b-g-knocc-out.png" + }, + { + "name": "B.o.B", + "image_url": "http://www4.pictures.zimbio.com/gi/B+o+B+rapper+BET+Hip+Hop+Awards+2010+Arrivals+bQ93QLw6t05l.jpg" + }, + { + "name": "Baby Bash", + "image_url": "http://ww2.hdnux.com/photos/24/26/14/5333761/5/960x540.jpg" + }, + { + "name": "Baby Boy da Prince", + "image_url": "http://www.rapartists.com/_files/pictures/full/1924_baby_boy_da_prince_u03.jpg" + }, + { + "name": "Baby D", + "image_url": "http://cdn.straightfromthea.com/wp-content/uploads/2008/03/babyd2.jpg" + }, + { + "name": "Bad Azz", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2015/10/Bad-Azz_10-08-2015.jpg" + }, + { + "name": "Badshah", + "image_url": "http://freehdwallpapersz.com/wp-content/uploads/2016/06/badshah-rapper-wallpaper.jpg" + }, + { + "name": "Baeza", + "image_url": "https://40.media.tumblr.com/bcb78b58c6c7a906342772115424c983/tumblr_mhpekhIOKd1rily04o1_500.jpg" + }, + { + "name": "Bahamadia", + "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2015/08/CS1700455-02A-BIG.jpg" + }, + { + "name": "Baka Not Nice", + "image_url": "http://rapradar.com/wp-content/uploads/2015/05/baka.jpg" + }, + { + "name": "Bang Yong-guk", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-bang-yong-guk-dance-song-hip-hop.jpg" + }, + { + "name": "Bangladesh", + "image_url": "http://www.nodfactor.com/wp-content/uploads/2010/04/bangladesh_0.jpg" + }, + { + "name": "Bas", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0004/032/MI0004032446.jpg" + }, + { + "name": "Battlecat", + "image_url": "https://mediaanarchist.files.wordpress.com/2013/07/7995104660_aeda73b31f_z.jpg" + }, + { + "name": "Beanie Sigel", + "image_url": "http://hustlebunny.com/content/2012/07/beanie-sigel-rapper.jpg" + }, + { + "name": "Becky G", + "image_url": "https://40.media.tumblr.com/da84f75189bb52c8d66f64dc5ea20bf1/tumblr_mo8inbcBAK1qfyjoto1_500.jpg" + }, + { + "name": "Benny Blanco", + "image_url": "http://cache2.asset-cache.net/gc/473115600-rapper-benny-blanco-attends-the-63rd-annual-gettyimages.jpg" + }, + { + "name": "Beenzino", + "image_url": "http://www.kpopmusic.com/wp-content/uploads/2015/10/beenzino-3.jpg" + }, + { + "name": "Benzino", + "image_url": "http://missxpose.com/wp-content/uploads/2014/03/benzino.png" + }, + { + "name": "Big Boi", + "image_url": "http://redalertpolitics.com/files/2013/01/BigBoi.jpg" + }, + { + "name": "Big Daddy Kane", + "image_url": "http://images.rapgenius.com/30a5d7f5135fdf9124beff6834884ff8.640x773x1.jpg" + }, + { + "name": "Big Ed", + "image_url": "http://upload.wikimedia.org/wikipedia/en/8/8d/Big_Ed.jpg" + }, + { + "name": "Big Gipp", + "image_url": "http://www.stacksmag.net/wp-content/uploads/2014/09/stacksmag007atllive.png" + }, + { + "name": "Big Hawk", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-big-hawk-celebrity-star-style.jpg" + }, + { + "name": "Big K.R.I.T.", + "image_url": "http://www.thissongslaps.com/wp-content/uploads/2014/09/big_krit-news-article921121.png" + }, + { + "name": "Big Kuntry King", + "image_url": "http://s4.evcdn.com/images/block250/I0-001/000/989/283-8.jpeg_/big-kuntry-king-83.jpeg" + }, + { + "name": "Big L", + "image_url": "http://outlookaub.com/wp-content/uploads/2015/03/big-l.jpg" + }, + { + "name": "Big Lurch", + "image_url": "https://thoughtcatalog.files.wordpress.com/2015/09/big_lurch.jpg" + }, + { + "name": "Big Mello", + "image_url": "http://hivesociety.com/wp-content/uploads/2015/10/big-mello.jpg" + }, + { + "name": "Big Mike", + "image_url": "http://fakehustle.files.wordpress.com/2009/02/big-mike.jpg" + }, + { + "name": "Big Moe", + "image_url": "http://s3.amazonaws.com/rapgenius/big-moe_480x480.jpg" + }, + { + "name": "Big Noyd", + "image_url": "http://singersroom.com/upload/2013/03/Big-Noyd-Light-Up-The-Night.jpg" + }, + { + "name": "Big Pokey", + "image_url": "http://purple-drank.com/wp-content/uploads/2013/06/Big-Pokey.png" + }, + { + "name": "Big Pooh", + "image_url": "http://ambrosiaforheads.com/wp-content/uploads/2012/07/Rapper+Big+Pooh+Big+p00h.jpg" + }, + { + "name": "Big Pun", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1620420.1392857208!/img/httpImage/image.jpg_gen/derivatives/article_750/big-pun-legacy.jpg" + }, + { + "name": "Big Reese", + "image_url": "https://dpjsgvx0fhwmn.cloudfront.net/albums/34235/large/bb2c7032b95187e95b92.jpg" + }, + { + "name": "Big Scoob", + "image_url": "http://www.funmissouri.com/uploads/files/2013/06/big-scoob-rapper-missouri.png" + }, + { + "name": "Big Smo", + "image_url": "https://i.ytimg.com/vi/igZweLr604Y/maxresdefault.jpg" + }, + { + "name": "Big Sean", + "image_url": "http://images5.fanpop.com/image/photos/27200000/Big-Sean-big-sean-rapper-27232010-500-610.jpg" + }, + { + "name": "Big Shaq", + "image_url": "https://hypebeast.imgix.net/http%3A%2F%2Fhypebeast.com%2Fimage%2F2017%2F10%2Frapper-halloween-costumes-lil-pump-roadman-shaq-lil-peep-lil-b-lil-uzi-vert-00.jpg" + }, + { + "name": "Big Shug", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/d1/2a/db/d12adb999028c2db003aa5e736e585a2.jpg" + }, + { + "name": "Big Syke", + "image_url": "https://pmchollywoodlife.files.wordpress.com/2016/12/big-syke-rapper-died-ftr.jpg" + }, + { + "name": "Bigg D", + "image_url": "http://www.4umf.com/wp-content/uploads/2014/11/Rapper-Big-Paybacc-Killed.jpg" + }, + { + "name": "Billy Woods", + "image_url": "http://backwoodzstudioz.com/wp-content/uploads/2013/06/BillyWoods_AlexanderRichter_WebReady_Press_DourCandy_2C.jpg" + }, + { + "name": "Birdman", + "image_url": "http://www.ablogtowatch.com/wp-content/uploads/2010/12/clip_image008.jpg" + }, + { + "name": "Bishop Nehru", + "image_url": "http://cdn2.pitchfork.com/news/53665/e5bac495.jpg" + }, + { + "name": "Biz Markie", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1451937.1378902764!/img/httpImage/image.jpg_gen/derivatives/article_1200/biz-markie.jpg" + }, + { + "name": "Bizarre", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Bizarre.jpg/1200px-Bizarre.jpg" + }, + { + "name": "Bugz", + "image_url": "http://1.bp.blogspot.com/-zqDNlEcJS9Q/U3JTKpcl7hI/AAAAAAAAAcw/sQJSzSDVIq4/s1600/bugz+image.jpg" + }, + { + "name": "Bizzy", + "image_url": "http://wprapradar.s3.amazonaws.com/wp-content/uploads/2010/05/bizzy-bone1.jpg" + }, + { + "name": "Bizzy Bone", + "image_url": "https://nowtoronto.com/downloads/68186/download/BizzyBone.jpg" + }, + { + "name": "BJ the Chicago Kid", + "image_url": "https://consequenceofsound.files.wordpress.com/2015/08/chance-the-rapper-bj-the-chicago-kid.jpg" + }, + { + "name": "Black Milk", + "image_url": "http://hiphop-n-more.com/wp-content/uploads/2010/09/black-milk-9.jpg" + }, + { + "name": "Black Rob", + "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:1676761" + }, + { + "name": "Black Thought", + "image_url": "http://vibesource.files.wordpress.com/2008/06/black-thought-mcsforlifevibesourcemag.jpg" + }, + { + "name": "Blade Icewood", + "image_url": "http://www.officialpsds.com/images/thumbs/Blade-Icewood-psd61214.png" + }, + { + "name": "Blaq Poet", + "image_url": "http://www.audibletreats.com/wp-content/gallery/blaqpoet/blaq_poet-street.jpg" + }, + { + "name": "Blaze Ya Dead Homie", + "image_url": "http://img3.wikia.nocookie.net/__cb20130520210459/rap/images/b/bb/Blaze_ya_dead_homie.jpg" + }, + { + "name": "BlocBoy JB", + "image_url": "https://rapdose.com/wp-content/uploads/fly-images/146583/asap-forever-378x250-c.jpg" + }, + { + "name": "Blood Raw", + "image_url": "http://www.rapartists.com/_files/pictures/full/2313_blood_raw.jpg" + }, + { + "name": "Blu", + "image_url": "http://thecomeupshow.com/wp-content/uploads/2012/08/blu-rapper.jpg" + }, + { + "name": "Bob Doe", + "image_url": "http://media-cache-ak0.pinimg.com/736x/84/e0/35/84e0355d2eaac3e990892bad26267ff2.jpg" + }, + { + "name": "Bobby Brackins", + "image_url": "http://www1.pictures.zimbio.com/gi/Bobby+Brackins+Puma+Presents+Riddim+Run+Benefiting+1v-Ki1nD2Owl.jpg" + }, + { + "name": "Bobby Creekwater", + "image_url": "http://static.djbooth.net/pics-artist/bobbycreekwater2.jpg" + }, + { + "name": "Bobby Shmurda", + "image_url": "https://static.pulse.ng/img/incoming/origs3920830/3240485024-w980-h640/bobby-shmurda-and-rihanna.jpg" + }, + { + "name": "Bohemia", + "image_url": "http://1.bp.blogspot.com/-vnAVLnSXj1k/UskN6icYkBI/AAAAAAAAAUM/6jbrIjj-GS0/s1600/From+the+set+of+Dada+in+Bahrain.jpg" + }, + { + "name": "Boi-1da", + "image_url": "http://www.beatmakingvideos.com/sites/default/files/producer_foto/boi_1da.jpg" + }, + { + "name": "Boldy James", + "image_url": "http://thoughtontracks.files.wordpress.com/2012/06/boldy-james.jpg" + }, + { + "name": "Bone Crusher", + "image_url": "http://images2.mtv.com/uri/mgid:uma:artist:mtv.com:1235147" + }, + { + "name": "Bones", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/e7/3a/2e/e73a2e853bd074c32d1abe08900ba2a7.jpg" + }, + { + "name": "Booba", + "image_url": "https://underneathestarz.files.wordpress.com/2015/06/boo23.jpg" + }, + { + "name": "Boondox", + "image_url": "http://static.tvtropes.org/pmwiki/pub/images/boondox01_7971.jpg" + }, + { + "name": "Boosie Badazz", + "image_url": "http://www.rap-up.com/app/uploads/2015/11/boosie-hat.jpg" + }, + { + "name": "Boss", + "image_url": "http://3.bp.blogspot.com/-2Tn1dMXQIzE/TtW53Kcvo4I/AAAAAAAADcQ/LNWNkwDCwIY/s1600/Boss.jpg" + }, + { + "name": "Bow Wow", + "image_url": "https://thedrinksbusiness.com/wordpress/wp-content/uploads/2015/03/lil-bow-wow-net-worth-424x640.jpg" + }, + { + "name": "Braille", + "image_url": "http://media1.fdncms.com/bend/imager/braille-read-him-with-your-ears/u/original/2148215/braille.jpg" + }, + { + "name": "Brandun DeShay", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/4b/28/bb/4b28bbbd4f6d7223e07d312b7cacc2ac--rapper-artists.jpg" + }, + { + "name": "Brianna Perry", + "image_url": "http://4.bp.blogspot.com/-IXYep2nCIwI/T0F0AX6zRZI/AAAAAAAACRg/4agQBS5a50Y/s1600/rapper-brianna.jpg" + }, + { + "name": "Brisco", + "image_url": "http://www.yorapper.com/Photos/brisco-rap.jpg" + }, + { + "name": "Brotha Lynch Hung", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-brotha-lynch-hung-song-recitation-fame.jpg" + }, + { + "name": "Bruno Mars", + "image_url": "http://www2.pictures.zimbio.com/gi/Bruno+Mars+B+o+B+rapper+2010+MTV+Video+Music+TeX5_EMP-jDl.jpg" + }, + { + "name": "Brother Ali", + "image_url": "http://www.killerhiphop.com/wp-content/uploads/2012/02/Brother-Ali.jpg" + }, + { + "name": "Bryson Tiller", + "image_url": "https://i.pinimg.com/736x/00/2d/f7/002df7c879422acb3a18c00c224300f3--bryson-tiller-rapper.jpg" + }, + { + "name": "Bubba Sparxxx", + "image_url": "http://www.contactmusic.com/pics/l/ludacris_benefit_250408/rapper_bubba_sparxxx_5124692.jpg" + }, + { + "name": "Buckshot", + "image_url": "https://i.ytimg.com/vi/JU81txDlbx8/maxresdefault.jpg" + }, + { + "name": "Buckwild", + "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/04/buckwild-producer1.jpg" + }, + { + "name": "Bumpy Knuckles", + "image_url": "http://streetknowledge.files.wordpress.com/2008/07/bumpy_knuckles.jpg" + }, + { + "name": "Bun B", + "image_url": "http://ww4.hdnux.com/photos/23/53/75/5160803/3/rawImage.jpg" + }, + { + "name": "Busdriver", + "image_url": "http://images2.laweekly.com/imager/busdriver/u/original/5177944/busdriver_photo-l_dianadalsasso2014.jpg" + }, + { + "name": "Bushwick Bill", + "image_url": "http://www.collegebaseballtoday.com/files/2013/05/BushwickBill_Stitches1.jpg" + }, + { + "name": "Busta Rhymes", + "image_url": "http://newsbite.it/public/images/articles/busta-drake.jpg" + }, + { + "name": "Busy Bee Starski", + "image_url": "https://s3.amazonaws.com/battlerap-production/2014/09/Busy-Bee610.jpg" + }, + { + "name": "Butch Cassidy", + "image_url": "https://pbs.twimg.com/profile_images/378800000221503061/5d6802b25f28f80c390d48fd1aca20d1.jpeg" + }, + { + "name": "Common", + "image_url": "http://i.huffpost.com/gen/1352726/thumbs/o-RAPPER-COMMON-facebook.jpg" + }, + { + "name": "C-Bo", + "image_url": "http://unitedgangs.files.wordpress.com/2010/04/c-bo.jpg" + }, + { + "name": "C-Murder", + "image_url": "http://media.nola.com/crime_impact/photo/cmurder-horizontal-cropjpg-77be374eafb600e4.jpg" + }, + { + "name": "C-Note", + "image_url": "https://i.ytimg.com/vi/F40M4icrNMQ/maxresdefault.jpg" + }, + { + "name": "C-Rayz Walz", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2017/04/C-Rayz-WalzInstagram-e1491328882399-827x620.png" + }, + { + "name": "Cage", + "image_url": "http://1.bp.blogspot.com/_4ZiWxZWnbZE/TVEuUjybxkI/AAAAAAAAAWQ/SjyC6aacpXc/s1600/cagecrazy.jpg" + }, + { + "name": "Cam'ron", + "image_url": "http://www.yorapper.com/Photos/camron-ringtones.jpg" + }, + { + "name": "Canibus", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/d/d9/Canibus_at_Amager_Bio_4.jpg" + }, + { + "name": "Capital Steez", + "image_url": "http://images.complex.com/complex/image/upload/c_fill,g_center,h_640,w_640/fl_lossy,pg_1,q_auto/gjpwujnfpj1afsu4uawy.jpg" + }, + { + "name": "Capone", + "image_url": "https://consequenceofsound.files.wordpress.com/2018/04/the-meadows-2017-ben-kaye-run-the-jewels-7.jpg" + }, + { + "name": "Cappadonna", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-cappadonna-star-celebrity-best-photo.jpg" + }, + { + "name": "Cardi B", + "image_url": "https://rapdose.com/wp-content/uploads/2018/03/cardi-b-be-careful.jpg" + }, + { + "name": "Casey Veggies", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2015/02/caseyveggies-630x420.jpg" + }, + { + "name": "Cash Out", + "image_url": "http://jojocrews.com/wp-content/uploads/2015/01/cash1.jpg" + }, + { + "name": "Cashis", + "image_url": "http://mediastarr.files.wordpress.com/2008/10/cashismusiccom1.jpg" + }, + { + "name": "Caskey", + "image_url": "http://social.rollins.edu/wpsites/mousetrap/files/2016/06/Caskey.jpg" + }, + { + "name": "Casper Nyovest", + "image_url": "http://www.destinyman.com/wp-content/uploads/2015/04/Casper-Nyovest--690x450.jpg" + }, + { + "name": "Cassidy", + "image_url": "http://www.missxpose.com/wp-content/uploads/2010/03/BET+Rip+Runway+2010+Arrivals+MPN9FSqiQxql2.jpg" + }, + { + "name": "Cazwell", + "image_url": "http://1.bp.blogspot.com/-yxVYPS6GT4Q/TdLjbiV2bYI/AAAAAAAAESs/ecXi9lrdkKM/s1600/cazwell.jpg" + }, + { + "name": "CeeLo Green", + "image_url": "https://www.festivalsherpa.com/wp-content/uploads/2014/09/ceelo.jpg" + }, + { + "name": "Cellski", + "image_url": "http://images.rapgenius.com/56c23a073295a1baa7c88f22411a8a9a.500x500x1.jpg" + }, + { + "name": "Celly Cel", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/729/MI0003729697.jpg" + }, + { + "name": "Celph Titled", + "image_url": "http://s3.amazonaws.com/rapgenius/1362723298_l.jpg" + }, + { + "name": "Cesar Comanche", + "image_url": "http://d2jos65913uaef.cloudfront.net/wp-content/uploads/2013/07/Cesar_comanche_interview-200x130.jpg" + }, + { + "name": "Ceza", + "image_url": "https://musicinculture.files.wordpress.com/2011/04/ceza40ke9_1_.jpg" + }, + { + "name": "Chamillionaire", + "image_url": "http://i.dailymail.co.uk/i/pix/2016/02/19/09/01BC5195000004B0-3454235-image-m-26_1455874575624.jpg" + }, + { + "name": "Chance the Rapper", + "image_url": "http://rukkus.com/blog/wp-content/uploads/2014/01/chance-the-rapper.png" + }, + { + "name": "Chanel West Coast", + "image_url": "http://images1.laweekly.com/imager/rapper-reality-tv-star-chanel-west-coast/u/original/5002632/law_chanel_west_coast-3280-edit.jpg" + }, + { + "name": "Channel 7", + "image_url": "http://media.gettyimages.com/photos/south-korean-rapper-psy-performs-live-on-channel-7s-sunrise-at-martin-picture-id154251648" + }, + { + "name": "Charizma", + "image_url": "http://4ca03fhcpiv4bsn7vbg2ef11td.wpengine.netdna-cdn.com/wp-content/uploads/2014/09/1b820b3864413e7b3fba3958b433d733-1024x690.jpg" + }, + { + "name": "Charles Hamilton", + "image_url": "http://www.billboard.com/files/styles/promo_650/public/media/charles-hamilton-brigitte-sire-bb7-2015-billboard-650.jpg" + }, + { + "name": "Charli Baltimore", + "image_url": "http://djpinkietuscadero.files.wordpress.com/2013/08/charli-baltimore.jpg" + }, + { + "name": "Chevy Woods", + "image_url": "http://www.post-gazette.com/image/2015/08/04/ca11,5,1918,1913/chevy0806b0553-1.jpg" + }, + { + "name": "Chi Ali", + "image_url": "http://www.vladtv.com/images/size_fs/video_image-133965.jpg" + }, + { + "name": "Chali 2na", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/2/2a/Chali2na.jpg" + }, + { + "name": "Chiddy Bang", + "image_url": "http://campuseventsblog.com/wp-content/uploads/2012/09/CHIDDYPHOTO1.jpg" + }, + { + "name": "Chief Keef", + "image_url": "http://wallpapersqq.net/wp-content/uploads/2016/01/Chief-Keef-6.jpg" + }, + { + "name": "Childish Gambino", + "image_url": "http://diymag.com/media/img/Artists/C/Childish-Gambino/_1500x1000_crop_center-center_75/Childish-Gambino-Press-Photo-copy.jpg" + }, + { + "name": "Chill Rob G", + "image_url": "https://img.youtube.com/vi/Hd0aNVDOo3U/0.jpg" + }, + { + "name": "Chingy", + "image_url": "http://tattletailzz.com/wp-content/uploads/2013/03/SGG-008258.jpg" + }, + { + "name": "Chingo Bling", + "image_url": "https://atlantalatinos.com/wp-content/uploads/2018/03/chingo-bling-atlanta-georgia-atlantalatinos-2-1068x1067.jpg" + }, + { + "name": "Chino XL", + "image_url": "http://iv1.lisimg.com/image/436161/600full-chino-xl.jpg" + }, + { + "name": "Chinx", + "image_url": "http://images.complex.com/complex/image/upload/t_article_image/chinx-rapper-2_jyerea.jpg" + }, + { + "name": "Chip", + "image_url": "http://www.voice-online.co.uk/sites/default/files/imagecache/455/chip-rapper-RIP.jpg" + }, + { + "name": "Choice", + "image_url": "http://2.bp.blogspot.com/-TjL6ZSCN8kA/UTimdEyVUSI/AAAAAAAABYI/fUlPXSKfg7o/s320/choiceback.jpg" + }, + { + "name": "Choppa", + "image_url": "http://fanpagepress.net/m/C/choppa-rapper-1.jpg" + }, + { + "name": "Chris Brown", + "image_url": "http://www.hdwallpaper4u.com/wp-content/uploads/2015/07/chris-brown_rapper_look.jpg" + }, + { + "name": "Chris Webby", + "image_url": "http://thissongissick.com/blog/wp-content/uploads/2011/11/Chris-Webby-Rapper.jpg" + }, + { + "name": "Christopher Martin", + "image_url": "http://www2.pictures.zimbio.com/gi/Heavy+D+Funeral+Service+Qy4IEAGabbUx.jpg" + }, + { + "name": "Christopher Reid", + "image_url": "http://static.atlantablackstar.com/wp-content/uploads/2014/09/Christopher-Kid-Reid.jpg" + }, + { + "name": "Chubb Rock", + "image_url": "http://www.largeup.com/wp-content/uploads/2012/07/chubb-rock.jpg" + }, + { + "name": "CJ Fly", + "image_url": "https://images.rapgenius.com/02df360b384c97322368321affc6603c.600x338x73.gif" + }, + { + "name": "CL", + "image_url": "http://koogle.tv/static/media/uploads/news/010915_2ne1-cl_01.jpg" + }, + { + "name": "CL Smooth", + "image_url": "http://i2.cdn.turner.com/cnnnext/dam/assets/130502100438-08-90s-rappers-horizontal-large-gallery.jpg" + }, + { + "name": "Classified", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/c5/2011_MuchMusic_Video_Awards_-_Classified.jpg" + }, + { + "name": "Clinton Sparks", + "image_url": "http://www.themusicgroupagency.com/Artist%20Bio_Pixs/DJ%20CLINTON%20SPARKS.jpg" + }, + { + "name": "Clyde Carson", + "image_url": "http://www2.pictures.zimbio.com/gi/Clyde+Carson+2012+BET+Awards+Celebrity+Gifting+h3makmUgLDQl.jpg" + }, + { + "name": "Cold 187um", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/471/MI0003471422.jpg" + }, + { + "name": "Common", + "image_url": "http://i.huffpost.com/gen/1352726/thumbs/o-RAPPER-COMMON-facebook.jpg" + }, + { + "name": "Consequence", + "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2013/01/consequence.jpg" + }, + { + "name": "Cool Breeze", + "image_url": "http://www4.pictures.zimbio.com/gi/2010+Vh1+Hip+Hop+Honors+Arrivals+6Kw4hn4nNHJl.jpg" + }, + { + "name": "Cool C", + "image_url": "http://bloximages.chicago2.vip.townnews.com/phillytrib.com/content/tncms/assets/v3/editorial/e/a3/ea3f0f99-c7b3-5a16-a498-43e00ef30007/5473f146bc971.image.jpg" + }, + { + "name": "Coolio", + "image_url": "http://1.bp.blogspot.com/_B1LlYh6iKqs/TEpHopMKndI/AAAAAAAACVQ/w5typW_-Cqo/s1600/coolio.jpg" + }, + { + "name": "Copywrite", + "image_url": "http://ifelicious.com/wp-content/uploads/2010/06/RapperCopywrite_614cap.jpg" + }, + { + "name": "Cormega", + "image_url": "http://www.iamhiphopmagazine.com/wp-content/uploads/2013/02/cormega_by_G_M_D_THREE_02.jpg" + }, + { + "name": "Cory Gunz", + "image_url": "http://www.aceshowbiz.com/images/wennpic/cory-gunz-set-music-video-fred-the-godson-01.jpg" + }, + { + "name": "Cordaro Stewart", + "image_url": "http://www.famousbirthdays.com/thumbnails/stewart-cordaro-large.jpg" + }, + { + "name": "Count Bass D", + "image_url": "https://massappeal.com/wp-content/uploads/2012/10/count-bass-d.jpg" + }, + { + "name": "The Coup", + "image_url": "http://media.philly.com/images/600*450/20121207_inq_wkpfea07-a.JPG" + }, + { + "name": "Craig Mack", + "image_url": "https://escobar300.files.wordpress.com/2011/08/craig-mack.jpg" + }, + { + "name": "Crime Boss", + "image_url": "http://www.angelfire.com/ok/midsouthhiphop/images/CRIME.jpg" + }, + { + "name": "Criminal Manne", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2013/02/Criminal-Manne.jpg" + }, + { + "name": "Crooked I", + "image_url": "http://zmldajoker.com/wp-content/uploads/2012/08/Crooked-I.jpg" + }, + { + "name": "Crucial Star", + "image_url": "http://www.allkpop.com/upload/2017/02/af_org/crucial-star_1486480774_af_org.jpg" + }, + { + "name": "Cupcakke", + "image_url": "https://lastfm-img2.akamaized.net/i/u/770x0/fd2ee4b462b471a02f1d47c6908aa414.jpg#fd2ee4b462b471a02f1d47c6908aa414" + }, + { + "name": "Currensy", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2013/09/currensy.jpg" + }, + { + "name": "Curtiss King", + "image_url": "http://images.genius.com/d117bf90749090895c48b26d53585f3f.640x640x1.jpg" + }, + { + "name": "Cyhi the Prynce", + "image_url": "http://hiphop-n-more.com/wp-content/uploads/2016/02/cyhi-the-prynce-montreality-680x462.jpg" + }, + { + "name": "Del Tha Funkee Homosapien", + "image_url": "http://www.fagostore.com/shared/d/de988c79be500dce37c77c306ca4c1c7_hw600_width.jpg" + }, + { + "name": "Dr. Dre", + "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/drdre.gif" + }, + { + "name": "D'Angelo", + "image_url": "http://1.bp.blogspot.com/-eWbI_zHem7w/T05dilWoEqI/AAAAAAADZjw/w-bTjY7Ro1Q/s400/dangelo-1.jpg" + }, + { + "name": "D'banj", + "image_url": "http://cache2.asset-cache.net/gc/150994476-rapper-d-banj-is-photographed-for-the-gettyimages.jpg" + }, + { + "name": "D-Loc", + "image_url": "http://s3.amazonaws.com/rapgenius/YJsUar79REWtkxvOpCVw_d-loc.jpg" + }, + { + "name": "D-Nice", + "image_url": "http://img.wax.fm/releases/2386762/d-nice-call-me-d-nice-1523902.jpeg" + }, + { + "name": "D-Pryde", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/b/ba/Plan_A_Merchandise_Promotion.png" + }, + { + "name": "The D.O.C.", + "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/01/The+DOC.jpg" + }, + { + "name": "Da Brat", + "image_url": "http://3.bp.blogspot.com/-2ptC5bvDzrc/Ti2nZQfRhKI/AAAAAAAARhA/Zq7JHQZPftU/s1600/Da-Brat-vibe1.jpg" + }, + { + "name": "Da$h", + "image_url": "http://s3.amazonaws.com/rapgenius/1362086799_Dah%20dashtweet.jpg" + }, + { + "name": "Da'unda'dogg", + "image_url": "https://images-na.ssl-images-amazon.com/images/I/61Scu%2BIkLYL._SL500_AA280_.jpg" + }, + { + "name": "Daddy-O", + "image_url": "http://m.i.uol.com.br/musica/2010/02/26/o-rapper-puffy-daddy-em-evento-em-nova-york-23012010-1267194075418_956x500.jpg" + }, + { + "name": "Dae Dae", + "image_url": "http://cdn.baeblemusic.com/bandcontent/dae_dae/dae_dae_bio-498.jpg" + }, + { + "name": "Damu the Fudgemunk", + "image_url": "http://berlin030.de/wp-content/uploads/2016/07/Damu-The-Fudgemunk.jpg" + }, + { + "name": "Dan Bull", + "image_url": "http://www.tubefilter.com/wp-content/uploads/2016/03/dan-bull.jpg" + }, + { + "name": "Dana Dane", + "image_url": "http://media-cache-ak0.pinimg.com/736x/14/57/5c/14575c78fb7f3e2e844ec15621acea74.jpg" + }, + { + "name": "Danny Boy", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/House_of_Pain-IMG_6536.jpg/1200px-House_of_Pain-IMG_6536.jpg" + }, + { + "name": "Danny Brown", + "image_url": "http://media.npr.org/assets/img/2012/08/27/rap-stream-db2_wide-2f0e39013c78f49f93129e2eef4c93e72b9c0eb1-s6-c30.jpg" + }, + { + "name": "Dappy", + "image_url": "http://madnews.files.wordpress.com/2010/05/dappy.jpg" + }, + { + "name": "Dave East", + "image_url": "http://www.rehabonlinemag.com/wp-content/uploads/2014/09/dave-east-cropped.jpg" + }, + { + "name": "Daveed Diggs", + "image_url": "http://theawesomer.com/photos/2016/05/Daveed-Diggs_fastest_rapper_on_broadway_t.jpg" + }, + { + "name": "David Banner", + "image_url": "http://www3.pictures.zimbio.com/gi/David+Banner+33rd+Annual+UNCF+Evening+Stars+ZUzQpuO0gb0l.jpg" + }, + { + "name": "David Dallas", + "image_url": "http://static.djbooth.net/pics-artist/daviddallas2.jpg" + }, + { + "name": "David Rush", + "image_url": "http://www.vegasnews.com/wp-content/uploads/davidrush_redcarpet-588.jpg" + }, + { + "name": "David Stones", + "image_url": "https://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAAfNAAAAJGY2M2Q3MDY5LWE4MTYtNDgyMS1hMWZmLWEzOTMzOTFmYTQ4Mw.jpg" + }, + { + "name": "Daz Dillinger", + "image_url": "https://s3.amazonaws.com/rapgenius/filepicker%2FXvubZbsJQue813tNktYE_Daz_Dillinger.jpg" + }, + { + "name": "Dazzie Dee", + "image_url": "https://lh6.googleusercontent.com/-2BfKUpLN9OU/TX9xEi7kAUI/AAAAAAAACDY/tcA_AynfDM8/s400/1.jpg" + }, + { + "name": "Dee Barnes", + "image_url": "http://i.dailymail.co.uk/i/pix/2015/08/19/01/2B7A5D7E00000578-0-image-a-2_1439945563429.jpg" + }, + { + "name": "Dee Dee King", + "image_url": "http://4.bp.blogspot.com/_svH18z9S5bU/SnSk-Vq8-SI/AAAAAAAAAsc/dr_YK0SSeV0/s320/FRONT.jpg" + }, + { + "name": "Dej Loaf", + "image_url": "http://i1.wp.com/inyaearhiphop.com/wp-content/uploads/2016/03/rapper-says-dej-loaf-is-lying-about-her-sexuality.png" + }, + { + "name": "Delyric Oracle", + "image_url": "http://thebaybridged.com/wp-content/uploads/2017/04/Chance-The-Rapper-at-Oracle-Arena-by-Joshua-Huver-14.jpg" + }, + { + "name": "Del the Funky Homosapien", + "image_url": "http://s3.amazonaws.com/rapgenius/del_the_funky_homosapien-130.jpg" + }, + { + "name": "Demrick", + "image_url": "http://theindustrywest.com/wp-content/uploads/2013/03/demrick.jpg" + }, + { + "name": "Deniro Farrar", + "image_url": "https://assets.audiomack.com/deniro-farrar/5a30d8d7a0f778a2e84ec2ebb5992768.jpeg" + }, + { + "name": "Denzel Curry", + "image_url": "https://media2.fdncms.com/orlando/imager/u/blog/2488240/denzel_-_photo-jmp_web.jpg" + }, + { + "name": "Derek Minor", + "image_url": "http://thegospelguru.com/wp-content/uploads/2014/10/derek-minor-03.jpg" + }, + { + "name": "Desiigner", + "image_url": "https://i.ytimg.com/vi/nmCYm7NOWME/maxresdefault.jpg" + }, + { + "name": "Detail", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2011/03/detail_03-21-11-300x300.jpg" + }, + { + "name": "Deuce", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/3/34/Deuce.jpg" + }, + { + "name": "Dev", + "image_url": "http://4.bp.blogspot.com/-DTmssduDnJk/TWfNLurcS1I/AAAAAAAAAjY/yNyTtcEEuM0/s1600/Dev-Bass_Down_Low-single_cover.jpg" + }, + { + "name": "Devin the Dude", + "image_url": "http://lahiphopevents.com/wp-content/uploads/2015/11/DEVIN-THE-DUDE.jpg" + }, + { + "name": "Devlin", + "image_url": "http://musiqexpo.files.wordpress.com/2012/08/devlin-rapper-freestyle-2012-e1343833573673.jpg" + }, + { + "name": "Diabolic", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/a/a3/DIABOLIC.jpg" + }, + { + "name": "Diamond", + "image_url": "http://2.bp.blogspot.com/-Zk504yF-lDo/Tbo7Vy75dfI/AAAAAAAAuEQ/FtRTLC65dJ8/s1600/diamond-rapper-3.jpg" + }, + { + "name": "Diamond D", + "image_url": "http://nahright.com/wp-content/uploads/2013/12/DIAMOND-450x304.jpg" + }, + { + "name": "Diggy Simmons", + "image_url": "http://www4.pictures.zimbio.com/gi/Diggy+Simmons+2012+BET+Awards+Celebrity+Gifting+f_6FuVhNcnSl.jpg" + }, + { + "name": "Dillon Cooper", + "image_url": "http://s3.amazonaws.com/rapgenius/1352155921_Dillon-Cooper-1.jpg" + }, + { + "name": "Disco D", + "image_url": "https://i.ytimg.com/vi/-pzjJ0Gnwg0/maxresdefault.jpg" + }, + { + "name": "Disco King Mario", + "image_url": "http://hiphopandpolitics.files.wordpress.com/2013/01/disco-king-mario.jpg" + }, + { + "name": "Dizzee Rascal", + "image_url": "https://juelzone.files.wordpress.com/2012/01/dizzee_rascal_2.jpg" + }, + { + "name": "Dizzy Wright", + "image_url": "http://thedailyloud.com/wp-content/uploads/2013/07/dizzy-wright.jpeg" + }, + { + "name": "DJ Cash Money", + "image_url": "https://i.ytimg.com/vi/YjQi0oLbfT4/maxresdefault.jpg" + }, + { + "name": "DJ Casper", + "image_url": "http://assets.libsyn.com/content/1652870" + }, + { + "name": "DJ Clay", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162471.jpg" + }, + { + "name": "DJ Clue?", + "image_url": "https://hhvibe.files.wordpress.com/2010/01/dj-clue.jpg" + }, + { + "name": "DJ Drama", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/thumb/2/28/DJ_Drama.jpg/1280px-DJ_Drama.jpg" + }, + { + "name": "DJ Felli Fel", + "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/f_auto,fl_lossy,pg_1,q_auto/vdonhefsu1vbqzkokfvl.jpg" + }, + { + "name": "DJ Fuze", + "image_url": "http://api.ning.com/files/twryudDDeJeBWWFC5lWwmMNonB3Ue79CfQIrNYzlFuV2rTlpK65jKYOrbTFCSI3uKyKLXfsXo-QtftbzfM98VkeRbvf10eQZ/fuze.jpg" + }, + { + "name": "DJ Green Lantern", + "image_url": "http://hw-img.datpiff.com/m76a31fd/Various_Artists_Green_Lantern_Instrumentals-front-large.jpg" + }, + { + "name": "DJ Head", + "image_url": "http://www.eminem.pro/wp-content/uploads/2013/09/DJ-Head.jpg" + }, + { + "name": "DJ Hurricane", + "image_url": "http://www.vanndigital.com/wp-content/uploads/djhurricanecominoffcentralcoastvibemusicvideoclip.jpg" + }, + { + "name": "DJ Kay Slay", + "image_url": "http://assets.audiomack.com/paperchaserdotcom/1d35c76ce398acf2bba0bc11508f0fba.jpeg" + }, + { + "name": "DJ Khaled", + "image_url": "https://www.bestvideorap.com/wp-content/uploads/bscap0008(3).jpg" + }, + { + "name": "DJ Krush", + "image_url": "https://image.redbull.com/rbcom/010/2016-11-16/1331829659822_2/0010/1/1600/1067/1/dj-krush.jpg" + }, + { + "name": "DJ Mustard", + "image_url": "http://the5thelementmag.files.wordpress.com/2014/08/rapper-yg-and-dj-mustard.jpg" + }, + { + "name": "DJ Paul", + "image_url": "http://hiphoprapscene.com/wp-content/uploads/2016/08/dj-paul.jpg" + }, + { + "name": "DJ Pooh", + "image_url": "https://img.discogs.com/KHTPZVL6Pa1dtmD3PhfQvKz-eQg=/fit-in/300x300/filters:strip_icc():format(jpeg):mode_rgb():quality(40)/discogs-images/A-131630-1487348732-7573.jpeg.jpg" + }, + { + "name": "DJ Premier", + "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2016/05/dj-premier-producer.jpg" + }, + { + "name": "DJ Quik", + "image_url": "http://dieenormousla.files.wordpress.com/2013/05/dj-quik.jpg" + }, + { + "name": "DJ Run", + "image_url": "https://c2.staticflickr.com/6/5022/5615202725_2e4e019896_b.jpg" + }, + { + "name": "DJ Screw", + "image_url": "http://screweduprecords.com/wp-content/uploads/2010/11/djSCREW5.jpg" + }, + { + "name": "DJ Shadow", + "image_url": "http://static.djbooth.net/pics-artist/dj-shadow.jpg" + }, + { + "name": "DJ Yella", + "image_url": "https://i.ytimg.com/vi/qaRqdspVNdo/maxresdefault.jpg" + }, + { + "name": "DMC", + "image_url": "http://i.huffpost.com/gen/1235615/images/o-RAPPER-DMC-facebook.jpg" + }, + { + "name": "DMX", + "image_url": "http://4hdwallpapers.com/wp-content/uploads/2013/04/Dmx-Rapper.jpg" + }, + { + "name": "Doap Nixon", + "image_url": "http://imagecache.blastro.com/timthumb.php/src=http%3A%2F%2Fimages.blastro.com%2Fimages%2Fartist_images%2Ffull%2Ffull_vinniepazvinniepazondoapnixon.jpg&w=610&h=457&zc=2&a=T" + }, + { + "name": "Doe B", + "image_url": "http://assets.noisey.com/content-images/contentimage/22592/Doe%20B%20featured%20image.jpg" + }, + { + "name": "Dok2", + "image_url": "http://static.askkpop.com/images/upload/18/ifrit1112/2016/05/12/Dok2-says-female-rappers-dontwrite-their-own-lyrics.jpg" + }, + { + "name": "Dolla", + "image_url": "http://www.streetgangs.com/wp-content/uploads/2009/05/20090529-dolla3.jpg" + }, + { + "name": "Dom Kennedy", + "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2015/05/Rapper-Dom-Kennedy-Reveals-Album-Release-Date-MusicSnake-1024x576.jpg" + }, + { + "name": "Dominique Young Unique", + "image_url": "http://images.dailystar.co.uk/dynamic/45/photos/984000/620x/5327940d40cfe_18f12domm.jpg" + }, + { + "name": "Domino", + "image_url": "https://unitedgangs.files.wordpress.com/2013/09/domino.png" + }, + { + "name": "Domo Genesis", + "image_url": "http://media.gettyimages.com/photos/rapper-domo-genesis-of-mellowhigh-and-the-odd-future-collective-at-picture-id538084320" + }, + { + "name": "Don Cannon", + "image_url": "http://freddyo.com/wp-content/uploads/2013/07/don-cannon.jpg" + }, + { + "name": "Donnis", + "image_url": "http://www3.pictures.zimbio.com/gi/Donnis+Nokia+Lumia+900+Launches+Times+Square+ZmfXDpow5Jkl.jpg" + }, + { + "name": "Dorrough", + "image_url": "http://theboombox.com/files/2011/02/dorrough-200-020811.jpg" + }, + { + "name": "Doseone", + "image_url": "http://l7.alamy.com/zooms/d51db8efa60f4be5890e618183a22976/doseone-rapper-producer-poet-and-artist-performing-at-all-tomorrows-d7wtt5.jpg" + }, + { + "name": "Doug E. Fresh", + "image_url": "https://s-media-cache-ak0.pinimg.com/564x/d3/e9/47/d3e94702d1d9ad80b155eca525e91ce9.jpg" + }, + { + "name": "Doughbeezy", + "image_url": "http://www.brooklynvegan.com/img/indie/doughbeezy.jpg" + }, + { + "name": "Dr. Dre", + "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/drdre.gif" + }, + { + "name": "Drag-On", + "image_url": "https://ioneglobalgrind.files.wordpress.com/2016/03/14573801941016.png" + }, + { + "name": "Drake", + "image_url": "http://2.bp.blogspot.com/-PF-iHgXDePo/TrjTRk8SsfI/AAAAAAAAAvk/8j_OnnCRbLc/s1600/Drake_ThankMe_Publici_5000DPI300RGB550255.jpg" + }, + { + "name": "Dres", + "image_url": "http://images.complex.com/complex/image/upload/c_fill,g_center,w_1200/fl_lossy,pg_1,q_auto/cxinsw78yglijdcx7xfh.jpg" + }, + { + "name": "Dresta", + "image_url": "http://www.prlog.org/11403708-dresta.jpg" + }, + { + "name": "Drew Deezy", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f7/Photo-of-Drew-Deezy.jpg/220px-Photo-of-Drew-Deezy.jpg" + }, + { + "name": "Driicky Graham", + "image_url": "http://www3.pictures.zimbio.com/gi/2012+BET+Awards+Celebrity+Gifting+Suite+Day+s6iambQit8Kx.jpg" + }, + { + "name": "Droop-E", + "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/f_auto,fl_lossy,pg_1,q_auto/yumgqwihf7wyqgrhbsjh.jpg" + }, + { + "name": "Dru Down", + "image_url": "http://s3.amazonaws.com/rapgenius/252244_106167516141612_7339951_n.jpg" + }, + { + "name": "Drumma Boy", + "image_url": "http://www.azquotes.com/public/pictures/authors/b2/29/b229ecbe96e3bf6858a880ad34c9dc21/55ee91fea5d8b_drumma_boy.jpg" + }, + { + "name": "Dumbfoundead", + "image_url": "http://onwardstate.com/wp-content/uploads/2013/12/DFD_15.jpg" + }, + { + "name": "Duncan Mighty", + "image_url": "http://howng.com/wp-content/uploads/2016/09/Duncan-Mighty.png" + }, + { + "name": "Eve", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/53/Eve_2011_cropped.jpg" + }, + { + "name": "E-40", + "image_url": "http://www.diablomag.com/March-2016/Rapper-E-40-Malt-Liquor-Sluricane-Hurricane/DM1603_116_DIG800.jpg" + }, + { + "name": "E.D.I. Mean", + "image_url": "https://www.ballerstatus.com/wp-content/uploads/2015/07/edi.jpg" + }, + { + "name": "E-Sens", + "image_url": "https://images.rapgenius.com/9b9cf127a072d14eda839946d33e8b06.500x500x1.jpg" + }, + { + "name": "E.S.G.", + "image_url": "https://vignette4.wikia.nocookie.net/hip-hop-music/images/9/90/E.S.G..jpg/revision/latest" + }, + { + "name": "Earl Sweatshirt", + "image_url": "https://s3.amazonaws.com/rapgenius/1348551787_Earl-Sweatshirt.jpg" + }, + { + "name": "Easy Mo Bee", + "image_url": "https://bomboclap.files.wordpress.com/2012/01/easy-mo-bee2.jpg" + }, + { + "name": "Eazy-E", + "image_url": "http://3.bp.blogspot.com/-OCsagfqI7hc/Ui9BHy4S6xI/AAAAAAAAATk/H1DL94luEHg/s1600/Eazy+E+rapper.jpg" + }, + { + "name": "Ed O.G.", + "image_url": "http://2.bp.blogspot.com/_Wm5H75m6zhE/TL4201QyKgI/AAAAAAAAAm0/UnMY54i171c/s1600/ed.jpg" + }, + { + "name": "Edo Maajka", + "image_url": "http://www.ravnododna.com/wp-content/uploads/2013/06/edo-maajka01.jpg" + }, + { + "name": "El Da Sensei", + "image_url": "http://cdn.ticketfly.com/i/00/02/15/04/45-exl.jpg" + }, + { + "name": "El-P", + "image_url": "https://consequenceofsound.files.wordpress.com/2018/04/the-meadows-2017-ben-kaye-run-the-jewels-7.jpg" + }, + { + "name": "Elephant Man", + "image_url": "http://www.farfrommoscow.com/wp-content/uploads/2009/02/elephant-man.jpg" + }, + { + "name": "Elzhi", + "image_url": "https://images.rapgenius.com/727e2b38afd6daf878861a026a9b748f.1000x667x1.jpg" + }, + { + "name": "Emcee N.I.C.E.", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/94/Emcee_N.I.C.E..JPG" + }, + { + "name": "Eminem", + "image_url": "http://www.dopeshxtdaily.com/wp-content/uploads/2018/04/Eminem-Framed-3.jpg" + }, + { + "name": "Eric Biddines", + "image_url": "http://images1.miaminewtimes.com/imager/u/745xauto/9106282/eric-biddines-elliot-liss.jpg" + }, + { + "name": "Erick Arc Elliott", + "image_url": "http://www4.pictures.zimbio.com/gi/Erick+Elliott+Coachella+Valley+Music+Arts+DCw4bFEm-O4l.jpg" + }, + { + "name": "Erick Sermon", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/5a/12/e1/5a12e16dbad591b63da7eef19e59a11d.jpg" + }, + { + "name": "Eric Stanley", + "image_url": "https://i.scdn.co/image/0b3f8ab808d49b6c4b8a7d70a5bedf399a105377" + }, + { + "name": "Esham", + "image_url": "https://media2.fdncms.com/metrotimes/imager/mayor-esham-what/u/slideshow/2229545/esham_press3jpg" + }, + { + "name": "Esoteric", + "image_url": "https://i.ytimg.com/vi/Ekzu8upcHo0/maxresdefault.jpg" + }, + { + "name": "Eve", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/53/Eve_2011_cropped.jpg" + }, + { + "name": "Everlast", + "image_url": "http://www.latimes.com/resizer/ON_hgfI8nrImP_htAnzUnEpLUBE=/1400x0/arc-anglerfish-arc2-prod-tronc.s3.amazonaws.com/public/OUCVGT32CRHGVA3VJGMJB2PSC4.jpg" + }, + { + "name": "Evidence", + "image_url": "http://www.brutalmusic.org/wp-content/uploads/2012/02/evidence-rapper.jpg" + }, + { + "name": "Eyedea", + "image_url": "http://www.rapgrid.com/sites/default/files/rapper-photo/eyedea.jpg" + }, + { + "name": "Ghostface Killah", + "image_url": "https://fanart.tv/fanart/music/3b39abeb-0064-4eed-9ddd-ee47a45c54cb/artistbackground/ghostface-killah-5053b6c4a440f.jpg" + }, + { + "name": "Fabolous", + "image_url": "http://www.maybachmedia.com/wp-content/uploads/2018/03/emily-b-and-fabolous.jpg" + }, + { + "name": "Fabri Fibra", + "image_url": "http://static.nanopress.it/nanopress/fotogallery/843X0/80541/fabri-fibra-tatuaggi.jpg" + }, + { + "name": "Fam-Lay", + "image_url": "http://s3.amazonaws.com/rapgenius/1369303498_FamLay.jpg" + }, + { + "name": "Famous Dex", + "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2016/09/IMG_6195.jpg" + }, + { + "name": "Fashawn", + "image_url": "http://portlandmetrolive.com/wp-content/uploads/2015/02/Rapper-Fashawn-comes-to-Peter%E2%80%99s-Room.jpg" + }, + { + "name": "Fat Joe", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1437632.1377553895!/img/httpImage/image.jpg_gen/derivatives/article_970/83094393.jpg" + }, + { + "name": "Fat Pat", + "image_url": "http://s3.amazonaws.com/rapgenius/1363587723_Fat%20Pat%20fatpat.jpg" + }, + { + "name": "Fat Trel", + "image_url": "https://ioneglobalgrind.files.wordpress.com/2013/11/screen-shot-2013-11-07-at-3-48-54-pm.png" + }, + { + "name": "Fatboi", + "image_url": "https://www.sohh.com/wp-content/uploads/Fatboy-SSE.jpg" + }, + { + "name": "Father MC", + "image_url": "http://www.rapartists.com/_files/pictures/full/618_fathermc.jpg" + }, + { + "name": "Fatman Scoop", + "image_url": "http://d.ibtimes.co.uk/en/full/1577170/fatman-scoop.jpg" + }, + { + "name": "Fergie", + "image_url": "http://4everstatic.com/pictures/674xX/people/musicians/fergie,-singer,-music-134929.jpg" + }, + { + "name": "Fetty Wap", + "image_url": "http://image1.redbull.com/rbcom/010/2015-05-07/1331721730967_2/0010/1/1500/1000/2/fetty-wap.jpg" + }, + { + "name": "Fiend", + "image_url": "http://i1169.photobucket.com/albums/r502/ThaFixxDotCom/fiend.jpg" + }, + { + "name": "FLAME", + "image_url": "http://thefrontrowreport.com/wp-content/uploads/2012/08/flame2.jpg" + }, + { + "name": "Flavor Flav", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.1185779.1350499171!/img/httpImage/image.jpg_gen/derivatives/landscape_635/flavor-flav.jpg" + }, + { + "name": "Flavour N'abania", + "image_url": "http://www.naijaolofofo.com/wp-content/uploads/2016/05/flavour.jpg" + }, + { + "name": "Flo Rida", + "image_url": "https://bossip.files.wordpress.com/2014/07/flo-rida.jpg" + }, + { + "name": "Flying Lotus", + "image_url": "http://exclaim.ca/images/flylo10.jpg" + }, + { + "name": "Focus...", + "image_url": "http://cdn5.hiphoplead.com/static/2011/07/focus.jpg" + }, + { + "name": "Fonzworth Bentley", + "image_url": "https://i.ytimg.com/vi/PKT8_mXk1-g/maxresdefault.jpg" + }, + { + "name": "Fort Minor", + "image_url": "http://4.bp.blogspot.com/_VVVnguvXP6s/S8tfaGjCefI/AAAAAAAAA0c/SfnVfFFEgjs/s1600/Fort%2BMinor.jpg" + }, + { + "name": "Foxx", + "image_url": "https://hiphollywood.com/wp-content/uploads/2018/04/946479462.jpg" + }, + { + "name": "Foxy Brown", + "image_url": "http://static.vibe.com/files/2017/03/foxy-brown-endorses-donald-trump-640x476-1488571302-640x476.jpg" + }, + { + "name": "Frank Ocean", + "image_url": "http://static.vibe.com/files/2017/03/frank-ocean-rapper-vibe-1489602237.jpg" + }, + { + "name": "Frankie J", + "image_url": "http://static.djbooth.net/pics-artist/frankiej.jpg" + }, + { + "name": "Frayser Boy", + "image_url": "http://trapsntrunks.com/wp-content/uploads/2017/07/motives-672x672.jpg" + }, + { + "name": "Freak Nasty", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/827/MI0003827380.jpg" + }, + { + "name": "Freaky Tah", + "image_url": "http://upload.wikimedia.org/wikipedia/en/9/9b/Freaky_Tah.jpg" + }, + { + "name": "Fred Durst", + "image_url": "http://trendliest.files.wordpress.com/2008/07/durst-fred-photo-xl-fred-durst-6209268.jpg" + }, + { + "name": "Freddie Foxxx", + "image_url": "http://grandgood.com/wordpress/wp-content/uploads/2008/06/freddie-foxxx.jpg" + }, + { + "name": "Freddie Gibbs", + "image_url": "http://www.networth2013.com/wp-content/uploads/2013/07/Frddie+Gibbs+VIP+Area+Governors+Ball+Day+3+p6VBOlpeThel.jpg" + }, + { + "name": "Fredo Santana", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/11/fredosantana.jpg" + }, + { + "name": "Fredro Starr", + "image_url": "http://ambrosiaforheads.com/wp-content/uploads/2014/02/Fredro-Starr-Sticky-Fingaz-610x400.jpg" + }, + { + "name": "Fredwreck", + "image_url": "http://www.beatmakingvideos.com/sites/default/files/producer_foto/fredwreck.jpg" + }, + { + "name": "Free", + "image_url": "http://www.whosampled.com/static/artist_images_200/lr2929_2010525_114148297125.jpg" + }, + { + "name": "Freekey Zekey", + "image_url": "https://1.bp.blogspot.com/-TSFhXxYHSZI/V8kVNFnN7TI/AAAAAAAAmJ8/GiIVH63gXwsxVIbWGZlYeVep9JhsPYgHQCK4B/w1200-h630-p-k-nu/freekey-zekey-net-worth.jpg" + }, + { + "name": "Freeway", + "image_url": "http://www.5pillarz.com/wp-content/uploads/2014/10/freeway1.jpg" + }, + { + "name": "French Montana", + "image_url": "https://lasentinel.net/wp-content/uploads/sites/5/2016/06/ENT-its-a-rap-french-montana2.jpg" + }, + { + "name": "Frenkie", + "image_url": "http://cps-static.rovicorp.com/3/JPG_500/MI0003/596/MI0003596298.jpg" + }, + { + "name": "Fresh Kid Ice", + "image_url": "https://zayzay.com/wp-content/uploads/2017/07/Rapper-Fresh-Kid-Ice-Of-%E2%80%982-Live-Crew%E2%80%99-Dead-At-53.jpg" + }, + { + "name": "Froggy Fresh", + "image_url": "http://i.ytimg.com/vi/4feIwig2AtA/0.jpg" + }, + { + "name": "Frost", + "image_url": "http://askkissy.com/wp-content/uploads/2015/09/EAZY-E-RAPPER-FROST.jpeg" + }, + { + "name": "Full Blooded", + "image_url": "https://i.skyrock.net/5301/5285301/pics/235349117_small.jpg" + }, + { + "name": "Funkmaster Flex", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/04/6a00d8341c4fe353ef01156ff9e8f1970c-800wi.jpg" + }, + { + "name": "Future", + "image_url": "http://www.thefamouspeople.com/profiles/images/future-1.jpg" + }, + { + "name": "Grandmaster Caz", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Grandmastercaz.jpg/1200px-Grandmastercaz.jpg" + }, + { + "name": "Grandmaster Flash", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/34/60/41/346041acd20fbe40c44b97a91c9a2a80.jpg" + }, + { + "name": "G-Dragon", + "image_url": "http://www.soompi.com/wp-content/uploads/a/t/7m/356158/356158.jpg" + }, + { + "name": "G-Eazy", + "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/14/16/4B18913E00000578-5615765-Cute_couple_The_New_Jersey_native_is_dating_rapper_G_Eazy_with_t-a-5_1523718500475.jpg" + }, + { + "name": "G. Dep", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.473448.1314633586!/img/httpImage/image.jpg_gen/derivatives/article_970/alg-g-dep-portrait-jpg.jpg" + }, + { + "name": "G Herbo", + "image_url": "http://www.datwav.com/wp-content/uploads/2017/04/G_Herbo_In_Studio-1024x683.jpg" + }, + { + "name": "Gaeko", + "image_url": "http://www.weekendnotes.co.uk/im/002/07/geko-rapper-tour-birmingham-academy-21.jpg" + }, + { + "name": "The Game", + "image_url": "http://images2.fanpop.com/images/photos/3600000/The-Game-the-game-rapper-3618562-1024-768.jpg" + }, + { + "name": "Gang Starr", + "image_url": "http://www.billboard.com/files/styles/promo_650/public/stylus/106631-Gangstarr-guru-617_409.jpg" + }, + { + "name": "Gangsta Blac", + "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Gangsta-Blac-Return-Of-The-Gangsta.jpg" + }, + { + "name": "Gangsta Boo", + "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/43439_lg.jpg" + }, + { + "name": "Ganksta N-I-P", + "image_url": "http://www.ugs4life.com/wp-content/uploads/2014/06/ganxsta-nip.png" + }, + { + "name": "Gary", + "image_url": "http://media-cache-ec0.pinimg.com/736x/1e/52/6c/1e526ce56e4e7a0d8ce5b588faa49102.jpg" + }, + { + "name": "Gee Money", + "image_url": "https://amonpointtv.com/wp-content/uploads/2017/09/ABCD1505228816.jpg" + }, + { + "name": "General Woo", + "image_url": "https://natasavajagic.files.wordpress.com/2008/11/dsc044672.jpg" + }, + { + "name": "Ghostface Killah", + "image_url": "https://fanart.tv/fanart/music/3b39abeb-0064-4eed-9ddd-ee47a45c54cb/artistbackground/ghostface-killah-5053b6c4a440f.jpg" + }, + { + "name": "Giggs", + "image_url": "http://4.bp.blogspot.com/-NLMOcLtTIgs/Tbidhpi_LpI/AAAAAAAAANY/4gL5Wzj4f1s/s1600/mytypeofhype_giggs_rapper-thumb.jpg" + }, + { + "name": "Gilbere Forte", + "image_url": "http://famousfamilybirthdaysbiofacts.com/BirthDayPersonality/Gilbere-Forte-Rapper-birhday-image.jpg" + }, + { + "name": "Glasses Malone", + "image_url": "http://siccness.net/wp/wp-content/uploads/2012/11/glasses-malone.jpg" + }, + { + "name": "GLC", + "image_url": "https://d.ibtimes.co.uk/en/full/1396199/mike-glc.jpg" + }, + { + "name": "Goldie Loc", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/88/03/67/8803675d722cc75dd4eb071ea1b9809d.jpg" + }, + { + "name": "GoldLink", + "image_url": "http://unbiasedwriter.com/wp-content/uploads/2014/10/GoldLink-rapper.jpg" + }, + { + "name": "Gorilla Zoe", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a6/Gorilla_zoe_picture.jpg/1200px-Gorilla_zoe_picture.jpg" + }, + { + "name": "Grafh", + "image_url": "http://static.djbooth.net/pics-artist/grafh.jpg" + }, + { + "name": "Grand Puba", + "image_url": "http://images.complex.com/complex/image/upload/t_article_image/akb1hkm8uzgscqwucuan.jpg" + }, + { + "name": "Grandmaster Caz", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/f/fc/Grandmastercaz.jpg/1200px-Grandmastercaz.jpg" + }, + { + "name": "Grandmaster Flash", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/34/60/41/346041acd20fbe40c44b97a91c9a2a80.jpg" + }, + { + "name": "Greydon Square", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/2/2e/TAM_6_-_Greydon_Square.jpg" + }, + { + "name": "Grieves", + "image_url": "http://thissongissick.com/blog/wp-content/uploads/2011/05/Grieves-Rapper-Bloody-Poetry.jpg" + }, + { + "name": "Gucci Mane", + "image_url": "https://www.amlu.com/wp-content/uploads/2018/04/rapper-gucci-mane-skips-three-year-waiting-list-and-gets-the-first-ferrari-812-superfast1.jpg" + }, + { + "name": "Gudda Gudda", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-gudda-gudda-singer-celebrity-rap.jpg" + }, + { + "name": "Guerilla Black", + "image_url": "http://i1-news.softpedia-static.com/images/news2/Rapper-Guerilla-Black-Arrested-for-Buying-and-Using-Stolen-Payment-Card-Details-2.jpg" + }, + { + "name": "Guilty Simpson", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-guilty-simpson-star-celebrity-rap.jpg" + }, + { + "name": "Gunplay", + "image_url": "http://www.passionweiss.com/wp-content/uploads/2015/07/gunplay-press2.jpg" + }, + { + "name": "Guru", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/7/72/Guru_%28rapper%29.jpg" + }, + { + "name": "GZA", + "image_url": "http://api.ning.com/files/Cr*mNN-mhgZVTnMO1Ax5ew2lFizHAFllT8mDVu1iYmXBixU5MNOvS6DzmIs82Yuhin8A2u0Hpk48uLC2goXSr74xqMAwQK5C/GZAMetro.jpg" + }, + { + "name": "Half a Mill", + "image_url": "http://www.kingsizemagazine.se/wp-content/uploads/2013/10/half-a-mill-S.jpg" + }, + { + "name": "Hard Kaur", + "image_url": "http://www.prokerala.com/news/photos/imgs/800/singer-rapper-hard-kaur-during-an-interview-at-440863.jpg" + }, + { + "name": "Hasan Salaam", + "image_url": "http://api.ning.com/files/2VGrzzXedu3*LX5VRoIFBZeWe8qqGJjpAxzb0ZR9giaHZEvLo8d8B7mpIcLrLmH5gmcJt8aUpyPHr2aVLVFxrlylSJByg*eO/HasanSalaam.jpg" + }, + { + "name": "Havoc", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/01/Prodigy.jpg" + }, + { + "name": "Heavy D", + "image_url": "http://www.guttaworld.com/wp-content/uploads/2011/12/obit-heavy-d.jpg" + }, + { + "name": "Hefe Heetroc", + "image_url": "https://1.bp.blogspot.com/-nmJ_Z8xC9Wg/V_GjdMvY_fI/AAAAAAAAAyQ/9hfGLMDGemgyOsjY5mM3XW9ul-3WCpGnQCLcB/s640/20160223_1125571.jpg" + }, + { + "name": "Heize", + "image_url": "http://cdn.koreaboo.com/wp-content/uploads/2016/12/heize.jpg" + }, + { + "name": "Hemlock Ernst", + "image_url": "http://static.stereogum.com/uploads/2015/09/rappingfutureislands1.png" + }, + { + "name": "Hi-C", + "image_url": "http://unitedgangs.files.wordpress.com/2013/11/hic_feb2005a.jpg" + }, + { + "name": "Hi-Tek", + "image_url": "http://thamidwest.com/wp-content/uploads/Hi-Tek.jpg" + }, + { + "name": "Hit-Boy", + "image_url": "http://3.bp.blogspot.com/-pzifRQd37EQ/TwaMSQmoOfI/AAAAAAAAA7s/YUaDMqmATM4/s1600/whiterapper.jpg" + }, + { + "name": "Hittman", + "image_url": "http://s3.amazonaws.com/hiphopdx-production/2014/11/Hittman_11-13-2014.jpg" + }, + { + "name": "Hodgy Beats", + "image_url": "http://www.rapburger.com/wp-content/uploads/2013/07/hodgy-beats-Godsss-free-download-1024x682.jpg" + }, + { + "name": "Honey Cocaine", + "image_url": "http://swaggarightentertainment.com/wp-content/uploads/2014/10/rapper-honey-cocaine.jpeg" + }, + { + "name": "Hoodie Allen", + "image_url": "http://conversationsabouther.net/wp-content/uploads/2014/10/Hoodie-Allen.jpg" + }, + { + "name": "Hopsin", + "image_url": "http://www.stasheverything.com/wp-content/uploads/2012/10/Hopsin-banner.jpg" + }, + { + "name": "Hot Dollar", + "image_url": "http://www.aceshowbiz.com/images/news/00010456.jpg" + }, + { + "name": "Huey", + "image_url": "http://images5.fanpop.com/image/photos/30200000/Huey-huey-rapper-30242374-1024-768.jpg" + }, + { + "name": "Hurricane Chris", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/c8/Hurricane_Chris.jpg" + }, + { + "name": "Hurricane G", + "image_url": "https://i.ytimg.com/vi/3pTO0lsjzco/maxresdefault.jpg" + }, + { + "name": "Hush", + "image_url": "https://www.gannett-cdn.com/-mm-/a691de1d2241d7baf1c60d5d31346451d4cd3669/c=0-236-1360-1004&r=x633&c=1200x630/local/-/media/2015/06/22/DetroitFreePress/DetroitFreePress/635705966302572023-Hush.jpg" + }, + { + "name": "Hussein Fatal", + "image_url": "https://pmchollywoodlife.files.wordpress.com/2015/07/hussein-fatal-rapper-dies-at-38-car-accident-lead.jpg" + }, + { + "name": "Ice Cube", + "image_url": "http://www.ultimatemovierankings.com/wp-content/uploads/2016/04/ice-cube-11111.jpg" + }, + { + "name": "I-20", + "image_url": "http://1.bp.blogspot.com/_IXe2z8hItAg/TBxH_T19eQI/AAAAAAAABX0/dFXw4HYqdqI/s1600/i20_self.jpg" + }, + { + "name": "Iamsu!", + "image_url": "http://media.gettyimages.com/photos/rapper-iamsu-arrives-at-ditch-fridays-at-palms-pool-dayclub-on-may-13-picture-id531300532" + }, + { + "name": "Ice Cube", + "image_url": "http://www.ultimatemovierankings.com/wp-content/uploads/2016/04/ice-cube-11111.jpg" + }, + { + "name": "Ice-T", + "image_url": "http://www.ireport.cz/images/ireport/clanky/Ice_T/ice-t.jpg" + }, + { + "name": "IDK", + "image_url": "https://static.highsnobiety.com/wp-content/uploads/2017/07/27163702/jay-idk-idk-interview-01-480x320.jpg" + }, + { + "name": "Iggy Azalea", + "image_url": "http://www.maybachmedia.com/wp-content/uploads/2018/04/Iggy-Azalea-Tyga.jpg" + }, + { + "name": "IHeartMemphis", + "image_url": "https://memphisrap.com/mr-uploads/2015/12/iLoveMemphis-rapper.jpg" + }, + { + "name": "Ill Bill", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c3/Ill_Bill.jpg/1200px-Ill_Bill.jpg" + }, + { + "name": "Illmind", + "image_url": "http://media.charged.fm/media/file_5429de95c0e71.jpg" + }, + { + "name": "ILoveMakonnen", + "image_url": "http://s3-ak.buzzfeed.com/static/2014-08/13/14/enhanced/webdr11/enhanced-8028-1407955933-1.jpg" + }, + { + "name": "Immortal Technique", + "image_url": "http://www.digitaljournal.com/img/7/5/0/1/1/0/i/1/5/5/o/3534639765_39c888714b_b.jpg" + }, + { + "name": "Imran Khan", + "image_url": "http://bollyspice.com/wp-content/uploads/2014/12/14dec_Imran-Khan-singer.jpg" + }, + { + "name": "Indo G", + "image_url": "http://purple-drank.com/wp-content/uploads/2013/03/Indo-G-New.jpg" + }, + { + "name": "Inspectah Deck", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-inspectah-deck-celebrity-jacket-photo.jpg" + }, + { + "name": "Isaiah Rashad", + "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2014/06/xxl-freshman-2014-cypher-drama-cannon-lead.jpg" + }, + { + "name": "Iyanya", + "image_url": "https://4.bp.blogspot.com/-GeL-JX7MH2o/V4NryaxgfEI/AAAAAAAAIuw/KrtCr4Tp3cskgDG7QHHJ6M-Gvaz7a5AogCLcB/w1200-h630-p-k-no-nu/Iyanya.JPG" + }, + { + "name": "Iyaz", + "image_url": "http://muzicjunkies.com/wp-content/uploads/2014/10/slim2.jpg" + }, + { + "name": "Jay-Z", + "image_url": "http://th07.deviantart.net/fs70/PRE/f/2011/042/6/d/rapper___jay_z_by_rwpike-d39aevp.jpg" + }, + { + "name": "Kanye West", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.3936461.1523887222!/img/httpImage/image.jpg_gen/derivatives/article_750/604289829cc00020-kanye-west.jpg" + }, + { + "name": "Kendrick Lamar", + "image_url": "https://stupiddope.com/wp-content/uploads/2018/04/kendrick-lamar-damn-2018-pulitzer-prize-first-rapper-music.jpg" + }, + { + "name": "KRS-One", + "image_url": "http://ifihavent.files.wordpress.com/2007/07/krs_blaze02991.jpg" + }, + { + "name": "J Dilla", + "image_url": "http://www.stonesthrow.com/images/2012/DILLA_2.jpg" + }, + { + "name": "J-Diggs", + "image_url": "http://www.sierrasun.com/wp-content/uploads/2016/09/JDiggs-SSU-011415-1-244x325.jpg" + }, + { + "name": "J-Kwon", + "image_url": "http://hiphop-n-more.com/wp-content/uploads/2010/03/j-kwon-s02.jpg" + }, + { + "name": "J-Son", + "image_url": "https://i.ytimg.com/vi/SjV2lPTUB2o/maxresdefault.jpg" + }, + { + "name": "J. Cole", + "image_url": "http://www.rap-up.com/app/uploads/2018/04/j-cole-kod-cover.jpg" + }, + { + "name": "J. Stalin", + "image_url": "http://siccness.net/wp/wp-content/uploads/2015/10/stalin.jpg" + }, + { + "name": "J. Valentine", + "image_url": "http://cache2.asset-cache.net/gc/56850135-rapper-ll-cool-j-delivers-valentines-day-gettyimages.jpg" + }, + { + "name": "J.I.D", + "image_url": "http://www.musicfesttv.com/wp-content/uploads/2017/02/J.-Cole-Sign039s-Atlanta-Rapper-J.I.D.-To-Dreamville-1200x600.png" + }, + { + "name": "J.R. Rotem", + "image_url": "http://m2.paperblog.com/i/56/567622/j-r-rotem-beluga-heights-artist-of-the-week-L-9apUCg.jpeg" + }, + { + "name": "J.R. Writer", + "image_url": "http://static.djbooth.net/pics-artist/jrwriter.jpg" + }, + { + "name": "Ja Rule", + "image_url": "http://fanart.tv/fanart/music/b504f625-4ef6-4a5a-81e8-870a61e8dc9c/artistbackground/ja-rule-503dd1b16fcfa.jpg" + }, + { + "name": "Jack Parow", + "image_url": "http://sunelia89.files.wordpress.com/2012/11/parow_duck-manfred-werner-hr.jpg" + }, + { + "name": "The Jacka", + "image_url": "http://static.stereogum.com/uploads/2015/02/The-Jacka.jpg" + }, + { + "name": "Jackie Hill-Perry", + "image_url": "http://media.washtimes.com.s3.amazonaws.com/media/image/2014/10/27/10272014_jackie-3-color8201.jpg" + }, + { + "name": "Jadakiss", + "image_url": "https://hhvibe.files.wordpress.com/2010/02/jadakiss.jpg" + }, + { + "name": "Jaden Smith", + "image_url": "http://i.dailymail.co.uk/i/pix/2013/02/28/article-2285761-1856EF78000005DC-756_634x493.jpg" + }, + { + "name": "Jae Millz", + "image_url": "http://theboombox.com/files/2010/05/jae-millz-200ak051910.jpg" + }, + { + "name": "Jahlil Beats", + "image_url": "http://www3.pictures.zimbio.com/gi/Jahlil+Beats+BET+Hip+Hop+Awards+2012+Red+Carpet+8GcDsHs2IfRl.jpg" + }, + { + "name": "Jamie Madrox", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/39/Jamie_Madrox_at_the_Abominationz_Tour.JPG/1200px-Jamie_Madrox_at_the_Abominationz_Tour.JPG" + }, + { + "name": "Jahred", + "image_url": "http://www.sportsgraphs.com/1314rampage4.jpg" + }, + { + "name": "Jake Miller", + "image_url": "http://thetriangle.org/wp-content/uploads/2013/11/Jake-Miller_Edgar-Estevez_WEB.jpg" + }, + { + "name": "Jake One", + "image_url": "http://www.nodfactor.com/wp-content/uploads/2013/11/Jake-One-Acid-Rain.png" + }, + { + "name": "Jam Master Jay", + "image_url": "http://ww3.hdnux.com/photos/10/27/41/2193534/5/920x920.jpg" + }, + { + "name": "Jamal", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.421164.1314528333!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-jamal-woolard-jpg.jpg" + }, + { + "name": "Jamal Woolard", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.421164.1314528333!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-jamal-woolard-jpg.jpg" + }, + { + "name": "Jamie Foxx", + "image_url": "https://hiphollywood.com/wp-content/uploads/2018/04/946479462.jpg" + }, + { + "name": "Jarren Benton", + "image_url": "https://ioneglobalgrind.files.wordpress.com/2015/02/photo-credit-funk-volume-extralarge_1408660385558.jpg" + }, + { + "name": "Jay Burna", + "image_url": "http://jamsphere.com/wp-content/uploads/2014/12/jay-burna-300.jpg" + }, + { + "name": "Jay Critch", + "image_url": "https://cdn.spinrilla.com/users/11645663/original/46d961baf0.jpg" + }, + { + "name": "Jay Electronica", + "image_url": "http://i.dailymail.co.uk/i/pix/2012/06/09/article-2156691-13845E1F000005DC-865_634x809.jpg" + }, + { + "name": "Jay Park", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/76/2a/65/762a65ec5adc664e7e7edc3c7f3ce526.jpg" + }, + { + "name": "Jay Rock", + "image_url": "http://rapsandhustles.com/wp-content/uploads/2012/04/jayrock.jpeg" + }, + { + "name": "Jay Z", + "image_url": "http://www.streetgangs.com/wp-content/uploads/2010/06/jay-z.jpg" + }, + { + "name": "Jayo Felony", + "image_url": "http://unitedgangs.files.wordpress.com/2013/12/jayo_felony.jpg" + }, + { + "name": "Jaz-O", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1c/Jaz-O--mika.jpg" + }, + { + "name": "Jazz Cartier", + "image_url": "http://respect-mag.com/wp-content/uploads/2018/04/1C6378F4-D2A9-4F48-93E8-AA47A154E54E.jpeg" + }, + { + "name": "Jazze Pha", + "image_url": "http://media.gettyimages.com/photos/music-producer-jazze-pha-rapper-heavy-d-and-dj-toomp-attend-tis-akoo-picture-id127898169" + }, + { + "name": "Jean Grae", + "image_url": "http://www.jayforce.com/wp-content/uploads/2011/03/jeangreen.jpg" + }, + { + "name": "Jeremiah Jae", + "image_url": "http://www.brooklynvegan.com/img/as/jeremiah-jae.jpg" + }, + { + "name": "Jeremih", + "image_url": "http://i2.wp.com/therighthairstyles.com/wp-content/uploads/2013/12/jeremih.jpg" + }, + { + "name": "Jermaine Dupri", + "image_url": "http://media.gettyimages.com/photos/rapper-jermaine-dupri-poses-for-photos-at-the-swissotel-in-chicago-picture-id145014316" + }, + { + "name": "Jeru the Damaja", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Out4Fame-Festival_2016_-_Jeru_the_Damaja.JPG/1200px-Out4Fame-Festival_2016_-_Jeru_the_Damaja.JPG" + }, + { + "name": "Jewell", + "image_url": "http://www.celebpronto.com/wp-content/uploads/2010/08/jewel11.jpg" + }, + { + "name": "Jibbs", + "image_url": "http://rapdirt.com/images/misc/Jibbs_0306f.jpg" + }, + { + "name": "Jim Jones", + "image_url": "http://www.networth2013.com/wp-content/uploads/2013/08/Jim-Jones-Rapper.jpg" + }, + { + "name": "Jim Jonsin", + "image_url": "http://www.networth2013.com/wp-content/uploads/2013/08/Jim-Jones-Rapper.jpg" + }, + { + "name": "Jipsta", + "image_url": "http://getoutmag.com/wp-content/uploads/2011/10/jipsta.jpg" + }, + { + "name": "Jme", + "image_url": "http://conversationsabouther.net/wp-content/uploads/2015/09/Jme.jpg" + }, + { + "name": "Joe Budden", + "image_url": "http://dailyentertainmentnews.com/wpgo/wp-content/uploads/2014/08/rapper-joe-budden-girlfriend-Audely-Robles.jpg" + }, + { + "name": "Joell Ortiz", + "image_url": "https://movesmusic.files.wordpress.com/2015/01/joell.jpg" + }, + { + "name": "Joey Badass", + "image_url": "https://www.thestar.com/content/dam/thestar/news/gta/2017/08/24/rapper-joey-bada-cancels-toronto-show-after-staring-at-eclipse/joey-badass.jpg.size.custom.crop.1086x724.jpg" + }, + { + "name": "John Cena", + "image_url": "http://www.picshunger.com/wp-content/uploads/2014/04/Rap.jpg" + }, + { + "name": "Johnny J", + "image_url": "http://media.rapnews.net/ArtistPics/JohnnyJ_rnn.jpg" + }, + { + "name": "Johntá Austin", + "image_url": "http://www.rap-up.com/app/uploads/2010/05/johnta-austin.jpg" + }, + { + "name": "Joji Miller", + "image_url": "http://pre11.deviantart.net/2640/th/pre/i/2016/122/1/8/joji_miller__filthy_frank__by_shuploc-da122fv.jpg" + }, + { + "name": "Jon Connor", + "image_url": "http://s3.amazonaws.com/rapgenius/jonconnor.png" + }, + { + "name": "Joyner Lucas", + "image_url": "https://www.sohh.com/wp-content/uploads/Joyner-Lucas-1.png" + }, + { + "name": "JT Money", + "image_url": "http://purple-drank.com/wp-content/uploads/2013/06/JT-Money-New.jpg" + }, + { + "name": "JT the Bigga Figga", + "image_url": "http://a1yola.com/wp-content/uploads/2010/10/JT-The-Bigga-Figga-Dwellin-In-Tha-Labb1-e1299005670778.jpg" + }, + { + "name": "Juelz Santana", + "image_url": "http://ll-media.tmz.com/2016/12/12/1212-juelz-santana-instagram-3.jpg" + }, + { + "name": "Juice (Đus)", + "image_url": "http://images.genius.com/37b135c1e081633b01d3b09bf4e785ed.600x600x1.png" + }, + { + "name": "Juicy J", + "image_url": "http://www.beyondblackwhite.com/wp-content/uploads/2014/01/Juicy-j-cup-1.png" + }, + { + "name": "Junhyung", + "image_url": "http://stuffpoint.com/kpopshineecnbluesujubapexoetc/image/378408-kpopshineecnbluesujub-a-pexoetc-rapper-junhyung.jpg" + }, + { + "name": "Jus Allah", + "image_url": "http://farm5.staticflickr.com/4014/5169574228_84ff1a04f4_z.jpg" + }, + { + "name": "Just Ice", + "image_url": "https://images.genius.com/608c268dba94e441e3f19c1e46207413.879x876x1.jpg" + }, + { + "name": "Juvenile", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/club937.com/files/2012/08/56688577-630x418.jpg" + }, + { + "name": "Kurtis Blow", + "image_url": "http://is4.mzstatic.com/image/thumb/Music/v4/69/fd/9f/69fd9f31-d152-c8ba-57be-80308d6b5d0c/source/1200x1200sr.jpg" + }, + { + "name": "Lauryn Hill", + "image_url": "http://images.musictimes.com/data/images/full/75871/lauryn-hill-tour.jpg" + }, + { + "name": "K Camp", + "image_url": "http://www2.pictures.zimbio.com/gi/K+Camp+American+Authors+Visit+Music+Choice+Furxjl-IhJ7l.jpg" + }, + { + "name": "K'naan", + "image_url": "http://images2.fanpop.com/image/photos/13600000/Stock-Knaan-on-twitter-knaan-club-13681875-483-570.jpg" + }, + { + "name": "K-Dee", + "image_url": "https://i.ytimg.com/vi/ovfrEfeqjf0/hqdefault.jpg" + }, + { + "name": "K-OS", + "image_url": "http://torontorappers.com/newsite/wp-content/uploads/2016/08/k-os-rapper.jpg" + }, + { + "name": "K-Solo", + "image_url": "http://freshnewsbysteph.com/wp-content/uploads/2011/07/k-solo.jpg" + }, + { + "name": "K.E. on the Track", + "image_url": "https://akpopworld.files.wordpress.com/2015/08/sik-k.jpg" + }, + { + "name": "K7", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0001/792/MI0001792148.jpg" + }, + { + "name": "Kafani", + "image_url": "http://gossip-grind.com/wp-content/uploads/2014/09/image18.jpg" + }, + { + "name": "Kam", + "image_url": "http://3.bp.blogspot.com/_qqc1V4I4JkY/RiKG8DfqsLI/AAAAAAAABmU/e7zmHRlRL9M/kam2.jpg" + }, + { + "name": "Kangol Kid", + "image_url": "http://cache4.asset-cache.net/gc/141797166-rapper-kangol-kid-attends-the-back-to-the-gettyimages.jpg" + }, + { + "name": "Kanye West", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.3936461.1523887222!/img/httpImage/image.jpg_gen/derivatives/article_750/604289829cc00020-kanye-west.jpg" + }, + { + "name": "Kap G", + "image_url": "http://remezcla.com/wp-content/uploads/2016/04/kap-g-2016-e1466531632221.jpg" + }, + { + "name": "Kardinal Offishall", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-kardinal-offishall-fame-rap-singer.jpg" + }, + { + "name": "Kastro", + "image_url": "https://i.ytimg.com/vi/tV66DD_rxNU/maxresdefault.jpg" + }, + { + "name": "Kat Dahlia", + "image_url": "http://static.djbooth.net/pics-artist/katdahlia.jpg" + }, + { + "name": "Katie Got Bandz", + "image_url": "http://moodswingmgmt.com/wp-content/uploads/2013/10/Katie_Main.jpg" + }, + { + "name": "KB", + "image_url": "http://www.rapzilla.com/rz/images/kbillboard.jpg" + }, + { + "name": "Keak da Sneak", + "image_url": "http://theboombox.com/files/2017/01/Keak-Da-Sneak-Shot.jpg" + }, + { + "name": "Keith Ape", + "image_url": "http://conversationsabouther.net/wp-content/uploads/2016/08/Keith-Ape.jpg" + }, + { + "name": "Keith Murray", + "image_url": "http://mrdaveyd.files.wordpress.com/2010/10/keith-murray.jpg" + }, + { + "name": "Malcolm David Kelley", + "image_url": "http://cdn.cnwimg.com/searchThumb/wp-content/uploads/2014/09/Malcolm-David-Kelley.jpg" + }, + { + "name": "Kendrick Lamar", + "image_url": "https://stupiddope.com/wp-content/uploads/2018/04/kendrick-lamar-damn-2018-pulitzer-prize-first-rapper-music.jpg" + }, + { + "name": "Kent Jones", + "image_url": "http://static.vibe.com/files/2015/12/kent-jones-binishPR.jpg" + }, + { + "name": "Kerser", + "image_url": "http://dailyurbanculture.com/wp-content/uploads/2014/07/3.13.jpg" + }, + { + "name": "Kevin Abstract", + "image_url": "http://images.greenlabel.com/assets/2015/09/kevin-abstract-2.jpg" + }, + { + "name": "Kevin Gates", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/73/db/e4/73dbe4857b26434fdfaab15b98a622de.jpg" + }, + { + "name": "Kevin McCall", + "image_url": "http://resources3.news.com.au/images/2013/04/29/1226631/457575-kevin-mccall.jpg" + }, + { + "name": "Khia", + "image_url": "http://planetill.com/wp-content/uploads/2012/01/Khia.jpg" + }, + { + "name": "Khleo", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/2b/fb/f7/2bfbf784203a8fbd7a032c6eb77cbaef.jpg" + }, + { + "name": "Kia Shine", + "image_url": "http://i1.ytimg.com/vi/8OZx1vK4PNE/maxresdefault.jpg" + }, + { + "name": "Kid Capri", + "image_url": "https://s3.amazonaws.com/battlerap-production/2014/08/rsz_caprirsz.jpg" + }, + { + "name": "Kid Cudi", + "image_url": "http://www.stasheverything.com/wp-content/uploads/2013/04/Kid-Cudi-pic.jpg" + }, + { + "name": "Kid Frost", + "image_url": "http://media-cache-ak0.pinimg.com/736x/8f/36/61/8f3661da395898b46c6c3c84ce4ecef1.jpg" + }, + { + "name": "Kid Ink", + "image_url": "http://chekadigital.co.za/wp-content/uploads/2013/03/kid-ink.jpg" + }, + { + "name": "Kid Rock", + "image_url": "http://www.feelnumb.com/wp-content/uploads/2011/02/gallery0219.jpg" + }, + { + "name": "Kid Sister", + "image_url": "http://s3.amazonaws.com/rapgenius/jpg_Kid_Sister__MG_2600copy2.jpg" + }, + { + "name": "Kidd Kidd", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.2284876.1436323996!/img/httpImage/image.jpg_gen/derivatives/article_750/webconfitems78f-1-web.jpg" + }, + { + "name": "Killah Priest", + "image_url": "http://media-cache-ak0.pinimg.com/736x/ce/9a/5c/ce9a5c2abde75b828adae9b87dc8e020.jpg" + }, + { + "name": "Killer Mike", + "image_url": "http://www.findnews.co.uk/wp-content/uploads/2018/03/killer-mike-rapper-defends-gun-ownership-in-nra-video.jpg" + }, + { + "name": "Kilo Ali", + "image_url": "http://straightfromthea.com/wp-content/uploads/2014/09/KiloAli.jpg" + }, + { + "name": "King Chip", + "image_url": "http://jasperdowney.files.wordpress.com/2013/09/king-chip.jpg" + }, + { + "name": "King Gordy", + "image_url": "https://s3.amazonaws.com/rapgenius/King%20Gordy%2051.jpg" + }, + { + "name": "King L", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2012/11/king-l-456-11212.jpg" + }, + { + "name": "King Tee", + "image_url": "http://siccness.net/wp/wp-content/uploads/2015/03/king-t.jpeg" + }, + { + "name": "Kirk Knight", + "image_url": "https://s3.amazonaws.com/rapgenius/dsc_0086.jpg" + }, + { + "name": "Kirko Bangz", + "image_url": "http://api.ning.com/files/SVfVaVsl8W2HxUovnHG5eBzdyEzEx0OOHA5U4cWbuT8ShSldd7ZKPKOi2RnF*LScvMps4AXVqwGVzjyDRdPbhW**MOzSt8V3/151263619.jpg" + }, + { + "name": "Kitty", + "image_url": "http://www.mxdwn.com/wp-content/uploads/2014/06/kitty-pryde2-580x386.jpg" + }, + { + "name": "KJ-52", + "image_url": "http://www.vegasnews.com/wp-content/uploads/KJ-52-570.jpg" + }, + { + "name": "Knero", + "image_url": "https://upload.wikimedia.org/wikipedia/en/a/a8/Knero_performing_during_the_Liberian_Independent_Celebration.jpg" + }, + { + "name": "Knoc-turn'al", + "image_url": "http://images.artistdirect.com/Images/artd/amg/music/bio/1640940_knocturnal_200x200.jpg" + }, + { + "name": "KO", + "image_url": "http://hbr.co.ke/wp-content/uploads/2015/09/K.O-CARACARA-RAPPER-HIP-HOP-MUSIC.jpg" + }, + { + "name": "KOHH", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/6a/1a/12/6a1a128849b04dfde612195054e9568d.jpg" + }, + { + "name": "Kodak Black", + "image_url": "https://media.nbcnewyork.com/images/1200*675/kodakblackout1.jpg" + }, + { + "name": "Kokane", + "image_url": "http://images1.laweekly.com/imager/kokane/u/original/5095855/kokane.jpg" + }, + { + "name": "Kool A.D", + "image_url": "http://s3.amazonaws.com/rapgenius/1362185468_Kool-AD-Okayplayer-interview2.jpg" + }, + { + "name": "Kool G Rap", + "image_url": "http://www.howtorapbook.com/wp-content/uploads/2015/07/040511-music-kool-g-rap.png" + }, + { + "name": "Kool Keith", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-kool-keith-hip-hop-celebrity-star.jpg" + }, + { + "name": "Kool Moe Dee", + "image_url": "https://s3.amazonaws.com/rapgenius/kool_moe_dee.jpg" + }, + { + "name": "Koolade", + "image_url": "http://media-cache-ak0.pinimg.com/736x/48/d5/96/48d596e5d2914e055459440cd92cd802.jpg" + }, + { + "name": "Krayzie Bone", + "image_url": "http://articlebio.com/uploads/bio/2016/03/23/krayzie-bone.jpg" + }, + { + "name": "Kreayshawn", + "image_url": "http://thesuperslice.com/wp-content/uploads/2011/05/Kreayshawn-03.jpg" + }, + { + "name": "Krizz Kaliko", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-krizz-kaliko-hip-hop-star-celebrity.jpg" + }, + { + "name": "KRS-One", + "image_url": "http://ifihavent.files.wordpress.com/2007/07/krs_blaze02991.jpg" + }, + { + "name": "Kung Fu Vampire", + "image_url": "https://kungfuvampire.com/wp-content/uploads/2015/03/KFV-Love-Bites_cover1200x1200.jpeg" + }, + { + "name": "Kurious", + "image_url": "http://theciphershow.com/image/uploads/kurious.jpg" + }, + { + "name": "Kurtis Blow", + "image_url": "http://is4.mzstatic.com/image/thumb/Music/v4/69/fd/9f/69fd9f31-d152-c8ba-57be-80308d6b5d0c/source/1200x1200sr.jpg" + }, + { + "name": "Kurupt", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/1/19/Kurupt_Young_Gotti_in_Abu_Dhabi.jpg" + }, + { + "name": "Kutt Calhoun", + "image_url": "http://cdn.ticketfly.com/i/00/02/01/08/95-atxl.jpg" + }, + { + "name": "Kwamé", + "image_url": "http://3.bp.blogspot.com/-jgNTkFb4SrQ/UD5DgQgbdPI/AAAAAAAAAJI/13r9_kMiDkY/s1600/kwame_classic1.jpg" + }, + { + "name": "Kyle", + "image_url": "http://www.dailypublic.com/sites/default/files/2015/Apr/kyle.jpg" + }, + { + "name": "Lil' Kim", + "image_url": "http://4.bp.blogspot.com/-EngYxv2jBPA/UTknA4a939I/AAAAAAAAzBU/nb9YucfMRzs/s1600/41.jpg" + }, + { + "name": "Lil Wayne", + "image_url": "http://matchmusik.files.wordpress.com/2012/01/lil-wayne.jpg" + }, + { + "name": "L.T. Hutton", + "image_url": "http://www1.pictures.zimbio.com/gi/L+T+Hutton+Tupac+Production+Celebration+Santa+0yDUOUDKzhxl.jpg" + }, + { + "name": "La Chat", + "image_url": "http://uptwnxs.com/wp-content/uploads/2013/09/lachat.png" + }, + { + "name": "La the Darkman", + "image_url": "http://cdn5.hiphoplead.com/static/2010/02/la-the-darkman2.jpg" + }, + { + "name": "Lady Luck", + "image_url": "http://www.rapgrid.com/sites/default/files/rapper-photo/lady-luck.jpg" + }, + { + "name": "The Lady of Rage", + "image_url": "https://static1.squarespace.com/static/520ed800e4b0229123208764/526f4c76e4b0096d44b292ac/526f4c78e4b0096d44b292ad/1383025791721/1.jpg" + }, + { + "name": "Lakey The Kid", + "image_url": "http://nahright.com/wp-content/uploads/2014/10/Lakey.jpg" + }, + { + "name": "Lakim Shabazz", + "image_url": "http://uniqueheat.files.wordpress.com/2011/09/lakim-shabazz-11.jpg" + }, + { + "name": "Lakutis", + "image_url": "http://first-avenue.com/sites/default/files/styles/medium/public/images/performers/lakutis11.jpg" + }, + { + "name": "Large Professor", + "image_url": "http://www.hiphopnometry.org/wp-content/uploads/2015/03/download.jpg" + }, + { + "name": "Lauryn Hill", + "image_url": "http://images.musictimes.com/data/images/full/75871/lauryn-hill-tour.jpg" + }, + { + "name": "Lazarus", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/d/dc/Lazarus_%28rapper%29.jpeg" + }, + { + "name": "LE", + "image_url": "http://hiphopenquirer.com/wp-content/uploads/2013/01/le.jpg" + }, + { + "name": "Lecrae", + "image_url": "http://blog.beliefnet.com/wholenotes/files/2012/06/Lecrae1.jpg" + }, + { + "name": "Left Brain", + "image_url": "http://s3.amazonaws.com/rapgenius/tumblr_m81jhwwa8m1qa42jro1_1280.jpg" + }, + { + "name": "Lex Luger", + "image_url": "http://static01.nyt.com/images/2011/11/06/magazine/06luger/06luger-popup-v2.jpg" + }, + { + "name": "Lil' B", + "image_url": "http://celebrityinsider.org/wp-content/uploads/2018/04/Cardi-B-Nicki-Minaj-Lil-Scrappy.jpg" + }, + { + "name": "Lil' Bibby", + "image_url": "http://www.billboard.com/files/styles/article_main_image/public/media/462817929-rapper-lil-bibby-enters-the-sirius-xm-650.jpg" + }, + { + "name": "Lil' Debbie", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/4/42/Lil_Debbie_on_March_14%2C_2013.jpg" + }, + { + "name": "Lil' Dicky", + "image_url": "http://b-sides.tv/wp-content/uploads/2015/10/lil-dicky.jpg" + }, + { + "name": "Lil' Durk", + "image_url": "http://www.trbimg.com/img-5693fc6e/turbine/ct-chicago-rapper-lil-durk-announces-tour-drops-new-video-20160111" + }, + { + "name": "Lil' Eazy-E", + "image_url": "http://s3.amazonaws.com/hiphopdx-production/2014/09/Lil-Eazy-E_09-05-2014.jpg" + }, + { + "name": "Lil' Flip", + "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2010/12/083011-lil-flip-lil-flip.png" + }, + { + "name": "Lil' Herb", + "image_url": "https://urbanstylzclothing.files.wordpress.com/2015/09/herb.jpg" + }, + { + "name": "Lil' Jon", + "image_url": "http://s3.amazonaws.com/rapgenius/lil-jon-w.jpg" + }, + { + "name": "Lil' Joseph", + "image_url": "http://beardfist.com/images/lil_joseph.png" + }, + { + "name": "Lil' Mama", + "image_url": "http://images2.fanpop.com/image/photos/11900000/Lil-Mama-3-female-rappers-11934192-440-348.jpg" + }, + { + "name": "Lil' Peep", + "image_url": "http://www.sobrietyresources.org/wp-content/uploads/2017/11/Lil-Peep-920x584.jpg" + }, + { + "name": "Lil' Phat", + "image_url": "http://api.ning.com/files/pQ8PE*Dabum6BY5-C2af3tLPWvIZgBdgFHHT*JOkvQAU8VjVm9v*Tl*M5TmfXHOqV4ji67tMnQY9zl7p-2QdcmKmsJPGcl6Y/WTFRussianMobsterChargedInTheMurderOfRapperLilPhatAtAtlantaHospitalInAOrderedShootingVideoInside.jpg" + }, + { + "name": "Lil' Pump", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2017/05/170530-Lil-Pump-800x600.jpg" + }, + { + "name": "Lil' Reese", + "image_url": "https://assets.dnainfo.com/generated/chicago_photo/2013/06/tavares-taylor-1372019233.jpg/extralarge.jpg" + }, + { + "name": "Lil' Ric", + "image_url": "http://a1yola.com/wp-content/uploads/2010/10/Lil-Ric.jpg" + }, + { + "name": "Lil' Ru", + "image_url": "http://authenticcore.files.wordpress.com/2009/06/lil-ru.jpg" + }, + { + "name": "Lil' Scrappy", + "image_url": "http://www.memphisrap.com/mr-uploads/2014/04/Lil-Scrappy-rapper-photo.jpg" + }, + { + "name": "Lil' Skies", + "image_url": "http://dailychiefers.com/wp-content/media/2017/08/Screen-Shot-2017-08-14-at-1.47.54-PM-1160x1088.png" + }, + { + "name": "Lil' Twist", + "image_url": "http://static.vibe.com/files/2015/03/Lil-Twist.jpg" + }, + { + "name": "Lil' Uzi Vert", + "image_url": "https://static.vibe.com/files/2017/05/Lil-Uzi-Vert-photo-1494953208-640x635.jpg" + }, + { + "name": "Lil' Wayne", + "image_url": "http://matchmusik.files.wordpress.com/2012/01/lil-wayne.jpg" + }, + { + "name": "Lil' Wyte", + "image_url": "https://bloximages.chicago2.vip.townnews.com/siouxcityjournal.com/content/tncms/assets/v3/editorial/f/16/f16599f8-8e54-5711-bb60-dae0d43f7a57/4f20871f57f10.image.jpg" + }, + { + "name": "Lil' Xan", + "image_url": "http://dailychiefers.com/wp-content/media/2017/05/lil-xan-1160x1119.png" + }, + { + "name": "Lil' Yachty", + "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/09/4B34F62B00000578-5620125-To_celebrate_her_15th_birthday_rapper_Danielle_Bregoli_released_-a-23_1523865744678.jpg" + }, + { + "name": "Lil' Zane", + "image_url": "http://eotm.files.wordpress.com/2010/07/lil_zane_677x600.jpg" + }, + { + "name": "Lil' Cease", + "image_url": "http://www1.pictures.zimbio.com/gi/Lil+Cease+Celebs+BET+Networks+New+York+Upfront+MTLFBnBGM_Gl.jpg" + }, + { + "name": "Lil' Fizz", + "image_url": "http://img.spokeo.com/public/900-600/lil_fizz_2007_07_10.jpg" + }, + { + "name": "Lil' Flip", + "image_url": "http://cdn.cnwimg.com/wp-content/uploads/2010/12/083011-lil-flip-lil-flip.png" + }, + { + "name": "Lil' Keke", + "image_url": "http://rapdose.com/wp-content/uploads/2014/04/Lil-Keke.jpg" + }, + { + "name": "Lil' Kim", + "image_url": "http://4.bp.blogspot.com/-EngYxv2jBPA/UTknA4a939I/AAAAAAAAzBU/nb9YucfMRzs/s1600/41.jpg" + }, + { + "name": "Lil' O", + "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Lil-O-Grind-Hard-Pray-Harder.jpg" + }, + { + "name": "Lil' Ronnie", + "image_url": "http://s3.amazonaws.com/hiphopdx-production/2016/10/Lil-Ronny-Instagram-e1477254471301-824x620.jpg" + }, + { + "name": "Lil' Troy", + "image_url": "http://photos1.blogger.com/x/blogger/2167/1769/1600/398335/liltroy.jpg" + }, + { + "name": "Lil' Wil", + "image_url": "http://www.rap-up.com/app/uploads/2018/04/lil-uzi-vert-japan.jpg" + }, + { + "name": "Lin Que", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/LinQue_5287-theOne.jpg/220px-LinQue_5287-theOne.jpg" + }, + { + "name": "Lisa Lopes", + "image_url": "http://images.rapgenius.com/3c8e978c534d938aa60f47229515ee66.527x600x1.jpg" + }, + { + "name": "LL Cool J", + "image_url": "http://media.npr.org/assets/img/2012/08/23/ll-cool-j_sq-ad8a68251f21a82c02dec641aad124d6b4de1ca0-s6-c30.jpg" + }, + { + "name": "Lloyd Banks", + "image_url": "https://www.bet.com/music/2018/03/17/lloyd-banks/_jcr_content/image.large2x1image.dimg/__1521337827454__1521335807971/031718-music-lloyd-banks.jpg" + }, + { + "name": "Locksmith", + "image_url": "http://api.ning.com/files/J*jFKCPdofWd1tPJxEdhL67p02O8suSNVExOVE0sZ0Gr*i9CA1T6aus8mXwgRx-xZODjLxtX5Am03SCXd8YZS1dm-MQZU*rN/locksmith.PNG" + }, + { + "name": "Logic", + "image_url": "http://hiphopnewssource.com/wp-content/uploads/2015/01/Logic-rapper.jpg" + }, + { + "name": "LoLa Monroe", + "image_url": "http://talkingpretty.com/wp-content/uploads/2011/12/Lola_Monroe.jpg" + }, + { + "name": "London On Da Track", + "image_url": "http://image1.redbull.com/rbcom/010/2017-02-27/1331846909916_2/0010/1/1500/1000/2/rapper-pell-and-producer-london-on-da-track.jpg" + }, + { + "name": "Loon", + "image_url": "http://rollingout.com/wp-content/uploads/2013/07/loon.jpg" + }, + { + "name": "Lord Finesse", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2012/07/lordfinesse.jpg" + }, + { + "name": "Lord Have Mercy", + "image_url": "http://4.bp.blogspot.com/-e0M8qmkHdr4/T-OOzru_EbI/AAAAAAAAB4c/b2Xzs3Uhx2M/s1600/lord-have-mercy-black-n-white.jpg" + }, + { + "name": "Lord Infamous", + "image_url": "http://www.aceshowbiz.com/images/news/lord-infamous-of-three-6-mafia-died-at-40.jpg" + }, + { + "name": "Lord Jamar", + "image_url": "http://insidejamarifox.com/wp-content/uploads/2013/09/LORDJAMAR.jpg" + }, + { + "name": "Los", + "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2014/03/los-rapper.jpeg" + }, + { + "name": "Louis Logic", + "image_url": "http://www.mvremix.com/urban/interviews/images/l_l.jpg" + }, + { + "name": "Lovebug Starski", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/12/Starski.jpg" + }, + { + "name": "LoveRance", + "image_url": "http://www.famousbirthdays.com/thumbnails/loverance-medium.jpg" + }, + { + "name": "Lowkey", + "image_url": "https://www.thecanary.co/wp-content/uploads/2018/04/Rapper-Lowkey-on-Going-Underground-770x403.jpg" + }, + { + "name": "LRoc", + "image_url": "https://i1.wp.com/www.respectmyregion.com/wp-content/uploads/2015/07/unnamed1-e1438370960295.jpg" + }, + { + "name": "Ludacris", + "image_url": "https://pennylibertygbow.files.wordpress.com/2012/02/ludacris.jpg" + }, + { + "name": "Luis Resto", + "image_url": "http://images.genius.com/1555dd4015e93a37e901dd6bbcf8fd94.502x502x1.jpg" + }, + { + "name": "Luni Coleone", + "image_url": "http://hw-static.worldstarhiphop.com/pics/images/tp/2lieagk.jpg" + }, + { + "name": "Lupe Fiasco", + "image_url": "http://2.bp.blogspot.com/-sB8Ufk5JalU/TnVCVMu-QaI/AAAAAAAAGZk/ih8up0ox8AA/s1600/lupe_fiasco.jpg" + }, + { + "name": "Luther Campbell", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/55/bf/a2/55bfa20740ef48b87c79db4bf83045e6.jpg" + }, + { + "name": "MC Lyte", + "image_url": "http://www2.pictures.zimbio.com/gi/MC+Lyte+Soul+Train+Awards+2012+Glade+Suite+pwqWuYKKQkwl.jpg" + }, + { + "name": "Melle Mel", + "image_url": "http://www4.pictures.zimbio.com/gi/Melle+Mel+GRAMMY+Nominations+Concert+Live+uqqOc_pgcOKl.jpg" + }, + { + "name": "MF Doom", + "image_url": "http://1.bp.blogspot.com/-sV6R16-qWxo/Tm6ZhYV7_aI/AAAAAAAAACI/Hh6dPl1H2L0/s1600/MF%2BDOOM.jpg" + }, + { + "name": "M Trill", + "image_url": "http://www.iwantairplay.com/artist/img/201011041288886539_mtrill%202.jpg" + }, + { + "name": "M-1", + "image_url": "http://i.huffpost.com/gen/2559626/images/o-M1-RAPPER-facebook.jpg" + }, + { + "name": "M.I.A.", + "image_url": "http://media.santabanta.com/newsite/cinemascope/feed/mia20.jpg" + }, + { + "name": "Mac", + "image_url": "http://s3.amazonaws.com/rapgenius/Earlly.jpg" + }, + { + "name": "Mac Dre", + "image_url": "http://s3.amazonaws.com/rapgenius/10683a596c9b82548291.jpg" + }, + { + "name": "Mac Lethal", + "image_url": "http://i.ytimg.com/vi/UV-q4q66SAQ/maxresdefault.jpg" + }, + { + "name": "Mac Mall", + "image_url": "http://s3.amazonaws.com/rapgenius/DSC_2267a.jpg" + }, + { + "name": "Mac Miller", + "image_url": "http://s3.amazonaws.com/rapgenius/1357230347_MacMiller.jpg" + }, + { + "name": "Mac Minister", + "image_url": "http://mtv.mtvnimages.com/uri/mgid:uma:image:mtv.com:3088181" + }, + { + "name": "Machine Gun Kelly", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/a/a7/Machine_Gun_Kelly.jpg/1200px-Machine_Gun_Kelly.jpg" + }, + { + "name": "Mack 10", + "image_url": "http://s3.amazonaws.com/rapgenius/1368457732_77476E77A10496D1F7CAD8DC2CBA9F72.jpg" + }, + { + "name": "Mack Maine", + "image_url": "http://www1.pictures.zimbio.com/gi/Cash+Money+Records+Lil+Wayne+Album+Release+4Y_9ed0dAwal.jpg" + }, + { + "name": "Macklemore", + "image_url": "http://cdn1.bostonmagazine.com/wp-content/uploads/2013/10/macklemore-boston-rappers.jpg" + }, + { + "name": "Mad Lion", + "image_url": "http://ring.cdandlp.com/oldiers/photo_grande/114795296.jpg" + }, + { + "name": "Madchild", + "image_url": "http://i1.wp.com/www.ballerstatus.com/wp-content/uploads/2013/07/madchild.jpg" + }, + { + "name": "Madlib", + "image_url": "http://www.stasheverything.com/wp-content/uploads/2012/08/madlib.jpg" + }, + { + "name": "Maejor Ali", + "image_url": "http://www.rap-up.com/app/uploads/2014/10/maejor-ali-team.jpg" + }, + { + "name": "Magic", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2013/03/mrmagic.jpg" + }, + { + "name": "Magneto Dayo", + "image_url": "http://images1.laweekly.com/imager/magneto-dayo/u/original/4246159/dayophoto.jpg" + }, + { + "name": "Magnolia Shorty", + "image_url": "http://img.wennermedia.com/social/rs-896-rectangle.jpg" + }, + { + "name": "Maino", + "image_url": "https://fanart.tv/fanart/music/2c2cc2fe-0dcf-4995-8199-91fd5f159323/artistbackground/maino-50a1d2727401b.jpg" + }, + { + "name": "Manafest", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-manafest-celebrity-rap-singer.jpg" + }, + { + "name": "Mann", + "image_url": "https://ipeoplewatch.files.wordpress.com/2010/11/mann.png" + }, + { + "name": "Mannie Fresh", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/08/Mannie-Fresh-3.jpg" + }, + { + "name": "Marčelo", + "image_url": "http://upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Mar%C4%8Delo_2008.jpg/600px-Mar%C4%8Delo_2008.jpg" + }, + { + "name": "Mariah Carey", + "image_url": "http://37.media.tumblr.com/ddcd2842cfaa27ad749eb1c8f0fa87d3/tumblr_mrvw1psZ391szbfero1_500.jpg" + }, + { + "name": "Mark Battles", + "image_url": "http://www.gannett-cdn.com/-mm-/ea1e306e18ab38d38fd0c7bad5df798dc9e6bf2a/c=1-0-1142-858&r=x404&c=534x401/local/-/media/2016/09/12/INGroup/Indianapolis/636092765862586531-MARKBATTLES-1-.jpg" + }, + { + "name": "Marky Mark", + "image_url": "http://i.dailymail.co.uk/i/pix/2014/12/15/23C0FCDA00000578-2874607-Back_in_the_day_Marky_Mark_Mark_Wahlberg_rapper_and_actor_circa_-m-4_1418665581123.jpg" + }, + { + "name": "Marley Marl", + "image_url": "http://www.waxpoetics.com/wp-content/uploads/2014/06/Kool-G-Rap_Promo2_suekwon-1.jpg" + }, + { + "name": "Marvaless", + "image_url": "http://a1yola.com/wp-content/uploads/2011/01/Marvaless-Ghetto-Blues.jpg" + }, + { + "name": "Marz", + "image_url": "http://wadeoradio.com/wp-content/uploads/2013/05/marz_with_hoodie.jpg" + }, + { + "name": "Mase", + "image_url": "http://richglare.com/wp-content/uploads/2014/03/mase.jpg" + }, + { + "name": "Masspike Miles", + "image_url": "http://api.ning.com/files/mWq-Pv8RWzQj-MamUWH9TNTYNoW0BlcruPGRV8J5nMMxDR76Wm0*Jgimy-pJMwxDTY5CcBFnbIJEj2GQDyirFkBKOdLYcw7C/masspikemiles20120105300x300.jpg" + }, + { + "name": "Masta Ace", + "image_url": "http://www.okayplayer.com/wp-content/uploads/2012/04/Masta_Ace_x_DOOM.jpg" + }, + { + "name": "Masta Killa", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-masta-killa-singer-rap-hip-hop.jpg" + }, + { + "name": "Master P", + "image_url": "http://cdn2.hiphopsince1987.com/wp-content/uploads/2014/04/MasterP.jpg" + }, + { + "name": "Master Shortie", + "image_url": "http://cache4.asset-cache.net/gc/98003447-british-rapper-master-shortie-performs-at-the-gettyimages.jpg" + }, + { + "name": "Matt Toka", + "image_url": "http://cdn.baeblemusic.com/bandcontent/matt_toka/matt_toka-498.jpg" + }, + { + "name": "Max B", + "image_url": "http://www.therapscene.com/wp-content/uploads/2016/09/max-b.png" + }, + { + "name": "Maxo Kream", + "image_url": "http://images.livemixtapes.com/artists/nodj/maxo_kream-maxo_187/cover.jpg" + }, + { + "name": "MC Breed", + "image_url": "http://cdn.ambrosiaforheads.com/wp-content/uploads/2015/10/MCBreed_Tupac.jpg" + }, + { + "name": "MC Davo", + "image_url": "https://i.scdn.co/image/8ca10c2e0345c064fd77e23dffd044e095cd09d9" + }, + { + "name": "MC Eiht", + "image_url": "http://happybday.to/sites/pics/mc-eiht-2013-3.jpg" + }, + { + "name": "MC Frontalot", + "image_url": "http://s3.amazonaws.com/media.wbur.org/wordpress/9/files/2011/11/1102_frontalot.jpg" + }, + { + "name": "MC Hammer", + "image_url": "http://i2.cdn.turner.com/cnnnext/dam/assets/111020033101-mc-hammer-story-top.jpg" + }, + { + "name": "MC Jin", + "image_url": "http://blog.asianinny.com/wp-content/uploads/2014/08/Edit-2.jpg" + }, + { + "name": "MC Lyte", + "image_url": "http://www2.pictures.zimbio.com/gi/MC+Lyte+Soul+Train+Awards+2012+Glade+Suite+pwqWuYKKQkwl.jpg" + }, + { + "name": "MC Mong", + "image_url": "http://www.christianitydaily.com/data/images/full/292/mc-mong.jpg" + }, + { + "name": "MC Pressure", + "image_url": "http://resources1.news.com.au/images/2013/09/13/1226718/911813-6111b67a-1b93-11e3-885a-29191a963f6e.jpg" + }, + { + "name": "MC Ren", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-mc-ren-celebrity-rap-star.jpg" + }, + { + "name": "MC Ride", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/72/MC_Ride_of_Death_Grips_in_2012.jpg" + }, + { + "name": "MC Serch", + "image_url": "http://www.eurweb.com/wp-content/uploads/2013/09/MC-Serch1.jpg" + }, + { + "name": "MC Shan", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0001/369/MI0001369927.jpg" + }, + { + "name": "MC Solaar", + "image_url": "http://www.potoclips.com/wp-content/uploads/2014/12/MC-Solaar-Zoom-90-11-2014-10.png" + }, + { + "name": "MC Trouble", + "image_url": "http://urbanbridgez.com/ubgblog/wp-content/uploads/2012/06/MCTrouble.jpg" + }, + { + "name": "MC Tunes", + "image_url": "http://i4.manchestereveningnews.co.uk/incoming/article4024647.ece/ALTERNATES/s615/nicky-lockett.jpg" + }, + { + "name": "Meechy Darko", + "image_url": "http://www4.pictures.zimbio.com/gi/Meechy+Darko+Coachella+Valley+Music+Arts+Festival+TkYgAgZECOrl.jpg" + }, + { + "name": "Meek Mill", + "image_url": "https://mk0slamonlinensgt39k.kinstacdn.com/wp-content/uploads/2018/04/meek.jpg" + }, + { + "name": "Melle Mel", + "image_url": "http://www4.pictures.zimbio.com/gi/Melle+Mel+GRAMMY+Nominations+Concert+Live+uqqOc_pgcOKl.jpg" + }, + { + "name": "Mellow Man Ace", + "image_url": "http://www.thecubanhistory.com/wp-content/uploads/2014/09/mellow-man-ace-posing-for-pic-picture.jpg" + }, + { + "name": "Memphis Bleek", + "image_url": "http://www4.pictures.gi.zimbio.com/Jay+Z+Celebrates+Grand+Opening+40+40+Club+BLwPtvgRe4Sl.jpg" + }, + { + "name": "Messy Marv", + "image_url": "http://gossip-grind.com/wp-content/uploads/2013/09/image3.jpg" + }, + { + "name": "Method Man", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.384069!/img/httpImage/image.jpg_gen/derivatives/landscape_1200/alg-rapper-method-man-jpg.jpg" + }, + { + "name": "Metro Boomin", + "image_url": "http://static.stereogum.com/uploads/2017/05/Metro-Boomin-1496168461-compressed.jpg" + }, + { + "name": "MF Doom", + "image_url": "http://1.bp.blogspot.com/-sV6R16-qWxo/Tm6ZhYV7_aI/AAAAAAAAACI/Hh6dPl1H2L0/s1600/MF%2BDOOM.jpg" + }, + { + "name": "MF Grimm", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-mf-grimm-fame-hip-hop-star.jpg" + }, + { + "name": "Mia X", + "image_url": "http://www.blackvibes.com/images/bvc/81/16306-mia-x.jpg" + }, + { + "name": "Mic Geronimo", + "image_url": "http://img.spokeo.com/public/900-600/mic_geronimo_2003_06_04.jpg" + }, + { + "name": "Mick Jenkins", + "image_url": "http://thekoalition.com/images/2015/10/Mick-Jenkins.jpg" + }, + { + "name": "Mickey Factz", + "image_url": "http://www.thefader.com/ys_assets/0005/4038/mfactz_main.jpg" + }, + { + "name": "Mike Dean", + "image_url": "https://vice-images.vice.com/images/content-images-crops/2015/10/23/smoking-weed-and-talking-rap-urban-legends-with-the-biggest-stoner-in-hip-hop-420-body-image-1445632224-size_1000.jpg" + }, + { + "name": "Mike G", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.2687217.1466809127!/img/httpImage/image.jpg_gen/derivatives/article_750/brown25f-2-web.jpg" + }, + { + "name": "Mike Jones", + "image_url": "http://content6.flixster.com/photo/12/68/69/12686960_ori.jpg" + }, + { + "name": "Mike Posner", + "image_url": "http://i.ytimg.com/vi/_z1aJvUTXUY/maxresdefault.jpg" + }, + { + "name": "Mike Shinoda", + "image_url": "http://www.canada.com/entertainment/cms/binary/7181890.jpg" + }, + { + "name": "Mike Stud", + "image_url": "https://cab.blog.gustavus.edu/files/2014/01/STUDITUNES2.jpg" + }, + { + "name": "Mike Will Made It", + "image_url": "http://generations.fr/media/son/_src/mike-will-made-it.jpg" + }, + { + "name": "Mike Zombie", + "image_url": "http://www.lifeistremendez.com/wp-content/uploads/2016/06/MIKE-ZOMBIE.jpg" + }, + { + "name": "Milo", + "image_url": "http://images1.laweekly.com/imager/milo/u/original/4244882/milo2final.jpg" + }, + { + "name": "Mims", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/f/f5/Shawn-Mims_2009-04-10_by-Adam-Bielawski.jpg" + }, + { + "name": "Mino", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/9c/ab/e8/9cabe8d370440fada55bc1e8f338b332.jpg" + }, + { + "name": "Miryo", + "image_url": "http://i1.wp.com/www.koreaboo.com/wp-content/uploads/2015/11/80059600.jpg" + }, + { + "name": "Missy Elliott", + "image_url": "http://thatgrapejuice.net/wp-content/uploads/2011/06/Missy%2BElliott1.jpg" + }, + { + "name": "Mista Grimm", + "image_url": "http://steadydippin.com/wp-content/uploads/Mista-Grimm.jpg" + }, + { + "name": "Mistah F.A.B.", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/5f/Mistah_F.A.B._%28cropped%29.jpg" + }, + { + "name": "Mister Cee", + "image_url": "http://ocdn.hiphopdx.com/mister-cee-gq-magazine-january-2014-hip-hop-dj-atlanta-music-01.jpg" + }, + { + "name": "Mitchy Slick", + "image_url": "http://celebnmusic247.com/wp-content/uploads/2013/12/San-Diego-rapper-Lil-Mitchy-Slick-Killed-news-1216-1.jpg" + }, + { + "name": "Mo B. Dick", + "image_url": "http://purple-drank.com/wp-content/uploads/2011/06/Mo-B.-Dick.jpg" + }, + { + "name": "Mod Sun", + "image_url": "https://i.ytimg.com/vi/077gBsOpfLY/maxresdefault.jpg" + }, + { + "name": "Money-B", + "image_url": "https://static1.squarespace.com/static/537f7de4e4b07cc20962a0fe/57d9ce70d482e972e8422601/57d9ced41b631b43099ada2e/1486258009597/money+b+icicles.jpg" + }, + { + "name": "Monie Love", + "image_url": "https://68.media.tumblr.com/34e9804dcd3a4307e744fc0b343318bf/tumblr_mvftdi4xlG1szbfero1_500.jpg" + }, + { + "name": "Monoxide Child", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Monoxide_Child_at_the_Abominationz_tour_in_Chesterfield%2C_MI_on_April_27th%2C_2013.jpg/220px-Monoxide_Child_at_the_Abominationz_tour_in_Chesterfield%2C_MI_on_April_27th%2C_2013.jpg" + }, + { + "name": "Mopreme Shakur", + "image_url": "https://media.gettyimages.com/photos/rapper-mopreme-shakur-attends-the-2012-estrella-de-moet-program-at-picture-id143587959" + }, + { + "name": "Mos Def", + "image_url": "http://1.bp.blogspot.com/-OfuE_iF9YT4/TarRyZ1raYI/AAAAAAAABJA/JZ6p4D2dMjw/s1600/mos_def1.jpg" + }, + { + "name": "Mr. Capone-E", + "image_url": "http://media-cache-ak0.pinimg.com/736x/06/58/dd/0658ddcf276465f97bee8e59ac5937ef.jpg" + }, + { + "name": "Mr. Cheeks", + "image_url": "http://www.twincities.com/wp-content/uploads/2016/03/08-RapperMrCheeks.jpg" + }, + { + "name": "Mr. Collipark", + "image_url": "http://urltv.tv/wp-content/uploads/2015/02/mr-collipark.png" + }, + { + "name": "Mr. Criminal", + "image_url": "https://nueonline.files.wordpress.com/2010/05/mr-cr.jpg" + }, + { + "name": "Mr. Lif", + "image_url": "https://media2.wnyc.org/i/800/0/c/80/nprproxy/477517970" + }, + { + "name": "Mr. Porter", + "image_url": "https://s3.amazonaws.com/rapgenius/1364090355_l.jpg" + }, + { + "name": "Mr. Serv-On", + "image_url": "http://purple-drank.com/wp-content/uploads/2013/09/Mr.-Serv-On-Gangsta-1-More-Time.jpg" + }, + { + "name": "Mr. Short Khop", + "image_url": "https://www.rapmusicguide.com/amass/images/inventory/4474/Mr.%20Short%20Khop%20-%20Da%20Khop%20Shop.jpg" + }, + { + "name": "Ms. Jade", + "image_url": "http://www.billboard.com/files/media/ms-jade-press-2002-650a.jpg" + }, + { + "name": "Murphy Lee", + "image_url": "http://1.bp.blogspot.com/_72Fq2ASEDsQ/SylcE_hqPzI/AAAAAAAAJSQ/VlycqZcZFQE/s320/murphy_lee_mo-174781.jpg" + }, + { + "name": "Murs", + "image_url": "http://planetill.com/wp-content/uploads/2011/01/murs1a.jpg" + }, + { + "name": "Mystikal", + "image_url": "http://theboombox.com/files/2015/09/mystikal-630x420.jpg" + }, + { + "name": "Myzery", + "image_url": "http://faygoluvers.net/v5/wp-content/uploads/2013/03/MYZERY-INT-2013th.jpg" + }, + { + "name": "Montana of 300", + "image_url": "http://www.rapswag.com/wp-content/uploads/2016/05/montana-of-300.jpg" + }, + { + "name": "Nas", + "image_url": "http://www.howtorapbook.com/wp-content/uploads/2016/04/nas_rapper_reuters_1200.jpg" + }, + { + "name": "Nicki Minaj", + "image_url": "http://www.rap-up.com/app/uploads/2018/04/nicki-minaj-chun-li.jpg" + }, + { + "name": "NBA YoungBoy", + "image_url": "http://feedbox.com/wp-content/uploads/2017/07/rapper-nba-youngboy.jpg" + }, + { + "name": "N.O. Joe", + "image_url": "https://images.genius.com/e6d317c1fc41f258cab262a651d1032d.220x222x1.jpg" + }, + { + "name": "N.O.R.E.", + "image_url": "http://rapradar.com/wp-content/uploads/2016/03/nore-rapradar-2.jpg" + }, + { + "name": "Napoleon", + "image_url": "http://2paclegacy.net/wp-content/uploads/2015/12/Napoleon-Outlawz.jpg" + }, + { + "name": "Nas", + "image_url": "http://www.howtorapbook.com/wp-content/uploads/2016/04/nas_rapper_reuters_1200.jpg" + }, + { + "name": "Nate Dogg", + "image_url": "http://www.evilbeetgossip.com/wp-content/uploads/2011/03/Nate-Dogg-AKA-Nathaniel-Hale.jpg" + }, + { + "name": "Nature", + "image_url": "http://blogordiepgh.com/wp-content/uploads/2016/02/nature2-590x738.jpg" + }, + { + "name": "Nav", + "image_url": "https://www.desiblitz.com/wp-content/uploads/2017/02/Nav-Rapper-Watch-2017-Featued-1.jpg" + }, + { + "name": "Nebu Kiniza", + "image_url": "https://www.famousbirthdays.com/faces/kiniza-nebu-image.jpg" + }, + { + "name": "Necro", + "image_url": "https://m3event.files.wordpress.com/2012/05/necro.png" + }, + { + "name": "Needlz", + "image_url": "http://www.mvremix.com/urban/interviews/images/choppa.jpg" + }, + { + "name": "Nelly", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/04/nelly-4ee7ec5a1b162.jpg" + }, + { + "name": "NF", + "image_url": "http://nfrealmusic.umg-wp.com/wp-content/blogs.dir/390/files_mf/1427238717nfbg2.jpg" + }, + { + "name": "Nick Cannon", + "image_url": "http://4.bp.blogspot.com/-WlJB4GcpcJI/TrIsDVJpnCI/AAAAAAAAAQs/KvUN9_OEwRg/s1600/Nick-Cannon-biography.jpg" + }, + { + "name": "Nicki Minaj", + "image_url": "http://www.rap-up.com/app/uploads/2018/04/nicki-minaj-chun-li.jpg" + }, + { + "name": "Nicky da B", + "image_url": "http://www.out.com/sites/out.com/files/2014/09/04/nicky-1%20main.jpg" + }, + { + "name": "Nicole Wray", + "image_url": "http://static.djbooth.net/pics-artist-rec/Nicole_Wray_1.jpg" + }, + { + "name": "Nikki D", + "image_url": "http://4.bp.blogspot.com/-Qc-EvZbPM1Q/UZhHG-wvkUI/AAAAAAAASYY/FRdaUwO8KJg/s1600/nikkid.jpg" + }, + { + "name": "Ninja", + "image_url": "http://www.dieantwoord.com/wp-content/uploads/2016/06/13355485_1803315693234477_1383954422_n.jpg" + }, + { + "name": "Nipsey Hussle", + "image_url": "https://badgerherald.com/media/2013/10/nipsey_headshot.jpg" + }, + { + "name": "Nitty", + "image_url": "http://versetracker.com/sites/default/files/rapper-pictures/r/rum-nitty.jpg" + }, + { + "name": "Nitty Scott MC", + "image_url": "http://www.thesocialmediasamurai.com/wp-content/uploads/2015/06/TMT_6971-Edit_HighResEdit.jpg" + }, + { + "name": "NoClue", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/94/RickyBrown2.jpg" + }, + { + "name": "No Malice", + "image_url": "http://www.xxlmag.com/files/2015/08/no-malice-interview.jpg" + }, + { + "name": "Noah 40 Shebib", + "image_url": "http://www.rap-up.com/app/uploads/2018/04/drake-floral.jpg" + }, + { + "name": "Noname", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b8/Noname_%28rapper%29_2017.jpg/1200px-Noname_%28rapper%29_2017.jpg" + }, + { + "name": "Nonchalant", + "image_url": "http://bandwidth.wamu.org/wp-content/uploads/2014/05/nonchalant-900x503.png" + }, + { + "name": "The Notorious B.I.G.", + "image_url": "http://www.neontommy.com/sites/default/files/NotoriousBIG.jpg" + }, + { + "name": "Nottz", + "image_url": "http://brandnew-hiphop.com/wp-content/uploads/2015/11/rapper-big-pooh-nottz-300z.jpg" + }, + { + "name": "Nujabes", + "image_url": "http://www.posterinvation.com/wp-content/uploads/2017/11/Nujabes-Japanese-Rapper.jpg" + }, + { + "name": "Nump", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/0/08/NUMP_Photo_By_Linda_Poeng.jpg" + }, + { + "name": "Numskull", + "image_url": "http://a1yola.com/wp-content/uploads/2010/10/knumskull.jpeg" + }, + { + "name": "Nyck Caution", + "image_url": "https://s3.amazonaws.com/rapgenius/1370913624_Nyck-Caution.jpeg" + }, + { + "name": "Nyzzy Nyce", + "image_url": "http://cache.vevo.com/Content/VevoImages/artist/F77096AEAB227EDC7749E54A60AD84FD20133151332767.jpg" + }, + { + "name": "O.T. Genasis", + "image_url": "http://www.atlanticrecords.com/sites/g/files/g2000003466/f/styles/post_thumbnail_home/public/201407/O.T.Genasis_NewArtist_StoryImage.jpg" + }, + { + "name": "Obie Trice", + "image_url": "https://i.ytimg.com/vi/k0CukaaPmpk/hqdefault.jpg" + }, + { + "name": "Oddisee", + "image_url": "http://image2.redbull.com/rbcom/010/2015-04-21/1331718387121_2/0012/0/905/0/2616/2573/1500/2/oddisee.jpg" + }, + { + "name": "Offset", + "image_url": "http://celebrityinsider.org/wp-content/uploads/2018/04/Offset.jpg" + }, + { + "name": "OG Maco", + "image_url": "http://rack.0.mshcdn.com/media/ZgkyMDE0LzA5LzE5LzY2L29nbWFjb3VndWVzLjI3ZTY4LmpwZwpwCXRodW1iCTk1MHg1MzQjCmUJanBn/e9db9255/336/og-maco-uguessedit.jpg" + }, + { + "name": "Oh No", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2015/07/Screen-Shot-2015-07-17-at-6.45.39-PM-300x300.png" + }, + { + "name": "OJ da Juiceman", + "image_url": "http://www.stacksmag.net/wp-content/uploads/2013/03/Oj+Da+Juiceman.jpg" + }, + { + "name": "Ol' Dirty Bastard", + "image_url": "http://25.media.tumblr.com/tumblr_llopqgJSCs1qcnjjco1_500.jpg" + }, + { + "name": "Olamide", + "image_url": "http://i0.wp.com/www.currentnewsnow.com/wp-content/uploads/2017/02/olamide-rapper.jpg" + }, + { + "name": "Olivia", + "image_url": "http://4.bp.blogspot.com/-zjgq7UuGNO8/TtdcuvdVFoI/AAAAAAAAEtA/5zoyt9VRv3E/s1600/olivia+longott.jpg" + }, + { + "name": "Omarion", + "image_url": "https://i0.wp.com/favimages.com/wp-content/uploads/2012/08/rapper-omarion-rap-celebrity-singer.jpg" + }, + { + "name": "Omega Red", + "image_url": "https://www.rap-n-blues.com/wp-content/uploads/2010/10/Exclusive-Interview-with-Omega-Red-pt-1-11.jpg" + }, + { + "name": "Omillio Sparks", + "image_url": "https://i.ytimg.com/vi/bgjehnnP7vE/maxresdefault.jpg" + }, + { + "name": "One Be Lo", + "image_url": "https://grownuprap.files.wordpress.com/2015/06/one-be-lo.jpg" + }, + { + "name": "Oneya", + "image_url": "http://4.bp.blogspot.com/_rc6elIZnb9w/StfvPh8AExI/AAAAAAAAAPI/_RXYXzPY8PI/s320/grillz%5B1%5D.png" + }, + { + "name": "Open Mike Eagle", + "image_url": "http://normalimage.cdn.ucbt.net/person_69295.png" + }, + { + "name": "Psy", + "image_url": "http://www.soompi.com/wp-content/uploads/2013/05/psy-yahoo.jpg" + }, + { + "name": "Q-Tip", + "image_url": "http://amarudontv.com/wp-content/uploads/2011/06/q-tip.jpg" + }, + { + "name": "P. Reign", + "image_url": "http://www.thisisyourconscience.com/wp-content/uploads/2011/03/P-Reign.jpg" + }, + { + "name": "P.C.T", + "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" + }, + { + "name": "Papa Reu", + "image_url": "http://thesource.com/wp-content/uploads/2015/07/papa-reu-1.jpg" + }, + { + "name": "Papoose", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.281729.1314351515!/img/httpImage/image.jpg_gen/derivatives/article_970/amd-papoose-jpg.jpg" + }, + { + "name": "Paris", + "image_url": "http://cps-static.rovicorp.com/3/JPG_1080/MI0001/400/MI0001400360.jpg" + }, + { + "name": "PARTYNEXTDOOR", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2013/10/PARTYNEXTDOOR.jpg" + }, + { + "name": "Pastor Troy", + "image_url": "http://veganrapnerd.com/wp-content/uploads/2013/08/pastortroy.jpg" + }, + { + "name": "Paul Wall", + "image_url": "http://aaenglish.files.wordpress.com/2010/07/paul_wall.jpg" + }, + { + "name": "Peedi Peedi", + "image_url": "http://www.yorapper.com/Photos/peedi-peedi-ringtone.jpg" + }, + { + "name": "Peewee Longway", + "image_url": "http://thedailyloud.com/wp-content/uploads/2014/07/PeeWee+Longway.jpg" + }, + { + "name": "Pacewon", + "image_url": "http://s3.amazonaws.com/rapgenius/1362133040_pacewon1.jpg" + }, + { + "name": "Percee P", + "image_url": "https://images.genius.com/5043bb54deda4ff352e7a413107e40fd.455x489x1.jpg" + }, + { + "name": "Petey Pablo", + "image_url": "http://i.perezhilton.com/wp-content/uploads/2012/02/rapper-petey-pablo-goes-to-prison__oPt.jpg" + }, + { + "name": "Pharoahe Monch", + "image_url": "http://thecorner.co.nz/wp-content/uploads/2010/10/monch.jpg" + }, + { + "name": "Pharrell Williams", + "image_url": "http://www.alux.com/wp-content/uploads/2016/05/pharrell-williams8.jpg" + }, + { + "name": "Phat Kat", + "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2015/09/Phat-Kat-FACT-Freestyles-Episode-1200x630.png" + }, + { + "name": "Phife Dawg", + "image_url": "http://static.celebuzz.com/uploads/2016/03/phife-dawg-32316.jpg" + }, + { + "name": "Philthy Rich", + "image_url": "http://i2.wp.com/allhiphop.com/wp-content/uploads/2012/02/20120214-133154-1.jpg" + }, + { + "name": "Phyno", + "image_url": "https://i.onthe.io/vllkyt2uq4dmo3ouf.bf39c0a9.jpg" + }, + { + "name": "Pill", + "image_url": "http://missdimplez.com/wp-content/uploads/2011/12/pill-rapper.jpg" + }, + { + "name": "Pimp C", + "image_url": "http://media-cache-ak0.pinimg.com/736x/4a/5d/da/4a5dda5cf63497a7a7323d64036ea588.jpg" + }, + { + "name": "Pinkie Pie", + "image_url": "http://fc09.deviantart.net/fs71/i/2014/106/a/e/rap_pinkie_pie_by_racoonkun-d7eqdf7.png" + }, + { + "name": "Pitbull", + "image_url": "http://images5.fanpop.com/image/photos/25000000/Pitbull-wallpaper-pitbull-rapper-25094094-1024-768.jpg" + }, + { + "name": "Planet Asia", + "image_url": "http://2.bp.blogspot.com/_3i6Ja3TzR3U/TUsqDLt5_eI/AAAAAAAAA5E/o5cNPWjIOUc/s1600/Planet+Asia.jpg" + }, + { + "name": "Planetary", + "image_url": "https://www.universetoday.com/wp-content/uploads/2013/06/star_cluster_planet.jpg" + }, + { + "name": "Plies", + "image_url": "http://siccness.net/wp/wp-content/uploads/2013/01/Plies.png" + }, + { + "name": "Playboi Carti", + "image_url": "http://images.complex.com/complex/image/upload/t_article_image/playboi-carti_hylalw.jpg" + }, + { + "name": "PnB Rock", + "image_url": "http://www.trbimg.com/img-593a8ea1/turbine/mc-rapper-pnb-rocks-show-to-open-easton-s-new-one-centre-square-is-rescheduled-20170609" + }, + { + "name": "PNC", + "image_url": "https://resources.stuff.co.nz/content/dam/images/1/d/s/t/f/0/image.related.StuffLandscapeSixteenByNine.620x349.1gbkoq.png/1483310043452.jpg" + }, + { + "name": "Porta", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/9/93/Christian_Jim%C3%A9nez_Porta.jpg" + }, + { + "name": "Positive K", + "image_url": "https://i.ytimg.com/vi/rKSu3MMqjNA/maxresdefault.jpg" + }, + { + "name": "Post Malone", + "image_url": "http://s3.amazonaws.com/factmag-images/wp-content/uploads/2016/06/Post-Malone-6-15-16-616x440.jpg" + }, + { + "name": "Pras", + "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2015/11/pras-grey.jpg" + }, + { + "name": "Prince Ital Joe", + "image_url": "http://api.ning.com/files/HX2HJ5zFz1VXk6nnlv3UuQYepy3Zaqp7FB99CwchCVK9qZAdUGnd2wgm8KBTPBQ5TPA7viKN70LkASDddCvpMRV*qbrLbSTS/2pacPrinceItalJoe.jpg" + }, + { + "name": "Prince Paul", + "image_url": "http://s3.amazonaws.com/hiphopdx-production/2017/06/DJ-Prince-Paul-789x591.jpg" + }, + { + "name": "Prince Po", + "image_url": "http://s3.amazonaws.com/rapgenius/1354768383_tumblr_m4e3h3JIu51rrnvtco1_500.png" + }, + { + "name": "Problem", + "image_url": "http://media-cache-ec0.pinimg.com/736x/91/12/c5/9112c5e71840687c066eb9bf199a6c8b.jpg" + }, + { + "name": "Prodigy", + "image_url": "http://www.genycis.com/blog/php/prodigy.jpg" + }, + { + "name": "Professor Green", + "image_url": "http://www.thedrum.com/uploads/drum_basic_article/154317/main_images/ProfessorGreen.jpg" + }, + { + "name": "Project Pat", + "image_url": "http://purple-drank.com/wp-content/uploads/2013/04/Project-Pat-New.jpg" + }, + { + "name": "Proof", + "image_url": "http://api.ning.com/files/id8pBTnWr70l7rcG7ybqV4HsnNh-BPxmwnyZ9v0VIyOITru56VjRVTRg9zdpsZMShSK3pPDKlmcbXnYrswx9fJCRZh8Y5ooC/proof.jpg" + }, + { + "name": "Prozak", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-prozak-celebrity-rap-photo.jpg" + }, + { + "name": "Psy", + "image_url": "http://www.soompi.com/wp-content/uploads/2013/05/psy-yahoo.jpg" + }, + { + "name": "Pusha T", + "image_url": "https://images.vice.com/noisey/content-images/article/pusha-t-interview-my-name-is-my-name/Pusha%20T%20Close.jpg" + }, + { + "name": "Queen Latifah", + "image_url": "http://media-cache-ec0.pinimg.com/736x/98/eb/23/98eb236df993bb4d0a7b2bbb6f8887d6.jpg" + }, + { + "name": "Q-Tip", + "image_url": "http://amarudontv.com/wp-content/uploads/2011/06/q-tip.jpg" + }, + { + "name": "Quan", + "image_url": "http://www.collegedj.net/wp-content/uploads/2011/09/Quan-rapper.jpg" + }, + { + "name": "Quavo", + "image_url": "http://www.globallnews.com/wp-content/uploads/2018/04/725393107_quavo_hunchoday_1522628161372_11247409_ver1.0_640_360.jpg" + }, + { + "name": "Quazedelic", + "image_url": "https://ilovemssugar.files.wordpress.com/2009/08/quazedelic.jpg" + }, + { + "name": "Queen Latifah", + "image_url": "http://media-cache-ec0.pinimg.com/736x/98/eb/23/98eb236df993bb4d0a7b2bbb6f8887d6.jpg" + }, + { + "name": "Queen Pen", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/48/19/d1/4819d1636cf36c92194437765638240b.jpg" + }, + { + "name": "The Quiett", + "image_url": "http://korcan50years.files.wordpress.com/2013/06/the-quiett-798x1024.jpg" + }, + { + "name": "Quincy Jones III", + "image_url": "http://theboombox.com/files/2010/05/david-banner-200ak050410.jpg" + }, + { + "name": "Qwazaar", + "image_url": "http://cdn.ticketfly.com/i/00/01/88/84/11-atxl1.jpg" + }, + { + "name": "Qwel", + "image_url": "http://img.karaoke-lyrics.net/img/artists/4536/qwel-247381.jpg" + }, + { + "name": "Rakim", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162077.jpg" + }, + { + "name": "RZA", + "image_url": "https://static01.nyt.com/images/2012/10/21/arts/21RZA1_SPAN/21RZA1_SPAN-jumbo.jpg" + }, + { + "name": "R. Kelly", + "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/21/4B25AB0C00000578-5622755-image-a-24_1523909544359.jpg" + }, + { + "name": "R.A. the Rugged Man", + "image_url": "http://www.kapu.or.at/sites/default/files/event/image/ruggednew1.jpg" + }, + { + "name": "Raekwon", + "image_url": "http://www.bkhiphopfestival.com/wp-content/uploads/2014/06/Raekwon.jpg" + }, + { + "name": "Rah Digga", + "image_url": "http://hiphopgoldenage.com/wp-content/uploads/2015/08/2012-music-topic-rah-digga.png" + }, + { + "name": "Rahzel", + "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2011/04/rahzel.jpg" + }, + { + "name": "Rakim", + "image_url": "http://cps-static.rovicorp.com/3/JPG_400/MI0003/162/MI0003162077.jpg" + }, + { + "name": "Rampage", + "image_url": "http://www.blackouthiphop.com/blog/wp-content/uploads/2012/01/rampage.jpg" + }, + { + "name": "Rap Monster", + "image_url": "http://xinspirit.files.wordpress.com/2013/06/rap-monster.jpg" + }, + { + "name": "Rappin' 4-Tay", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2016/10/Rappin-4-Tay_10-13-2016-596x447.jpg" + }, + { + "name": "Rapsody", + "image_url": "http://rollingout.com/wp-content/uploads/2014/05/rapsody.jpg" + }, + { + "name": "Ramey Dawoud", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/7/70/Kashta_Live.jpg" + }, + { + "name": "Ras Kass", + "image_url": "http://cdn4.hiphoplead.com/static/2012/03/Ras-Kass.jpg" + }, + { + "name": "Rasheeda", + "image_url": "http://media-cache-ak0.pinimg.com/736x/df/01/4f/df014fca71f89f5efc4d58f27b1beb2a.jpg" + }, + { + "name": "Ravi", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Ravi_-_2016_Gaon_Chart_K-pop_Awards_red_carpet.jpg/1200px-Ravi_-_2016_Gaon_Chart_K-pop_Awards_red_carpet.jpg" + }, + { + "name": "Ray Cash", + "image_url": "http://www.hipstrumentals.com/wp-content/uploads/2012/12/Ray-Cash-Bumpin-My-Music.jpg" + }, + { + "name": "Ray J", + "image_url": "http://www3.pictures.zimbio.com/pc/Rapper+Ray+J+spotted+Tru+night+club+Hollywood+0orxsqqyQ49x.jpg" + }, + { + "name": "Ray Luv", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Ray_Luv_performing_at_5th_Annual_AHSC_1.JPG/1200px-Ray_Luv_performing_at_5th_Annual_AHSC_1.JPG" + }, + { + "name": "Raz Fresco", + "image_url": "http://exclaim.ca/images/razfresco2.jpg" + }, + { + "name": "RBX", + "image_url": "http://www.longbeachindependent.com/wp-content/uploads/2015/03/rbx-rapper-long-beach1.jpg" + }, + { + "name": "The Real Roxanne", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/dd/e9/61/dde961ccc373460deb2bab6b8df479b8.jpg" + }, + { + "name": "Really Doe", + "image_url": "http://cdn.smosh.com/sites/default/files/ftpuploads/bloguploads/1113/least-badass-name-really-doe.jpg" + }, + { + "name": "Red Café", + "image_url": "http://www1.pictures.zimbio.com/gi/Red+Cafe+Interscope+Geffen+Promotions+Department+MlqC_HJwxQMl.jpg" + }, + { + "name": "Red Spyda", + "image_url": "http://16762-presscdn-0-89.pagely.netdna-cdn.com/wp-content/uploads/2012/08/red-spyda.png" + }, + { + "name": "Redfoo", + "image_url": "http://media.gettyimages.com/photos/rapper-redfoo-of-lmfao-arrives-for-party-rock-mondays-at-marquee-in-picture-id131805210" + }, + { + "name": "Redman", + "image_url": "http://djstorm.files.wordpress.com/2011/02/redman1.jpg" + }, + { + "name": "Reef the Lost Cauze", + "image_url": "http://thekey.xpn.org/aatk/files/2016/02/ReefCaliph-9726-620x413.jpg" + }, + { + "name": "Reema Major", + "image_url": "http://www.bet.com/topics/r/reema-major/_jcr_content/image.heroimage.dimg/__1411088698102/080312-topic-music-reema-major-rapper.jpg" + }, + { + "name": "Reks", + "image_url": "http://hypeverse.files.wordpress.com/2012/10/reks.jpg" + }, + { + "name": "Remy Ma", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/d9/79/0e/d9790e372e4df2baf687770b711968bf.jpg" + }, + { + "name": "Rhymefest", + "image_url": "http://i.huffpost.com/gen/2824474/images/h-CHE-RHYMEFEST-SMITH-348x516.jpg" + }, + { + "name": "Rich Boy", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2009/01/rich-boy_011509_200.jpg" + }, + { + "name": "Rich Brian", + "image_url": "https://www.tinymixtapes.com/sites/default/files/imagecache/Article_Width/1801/rich-chigga-amen-cover-low-res.jpg" + }, + { + "name": "Rich Homie Quan", + "image_url": "http://www.judiciaryreport.com/images_4/rich-homie-quan-4-10-15-1.png" + }, + { + "name": "Rich The Kid", + "image_url": "https://gazettereview.com/wp-content/uploads/2017/05/rich4.jpg" + }, + { + "name": "Richie Rich", + "image_url": "http://www.rule4080.com/wp-content/uploads/2011/08/Richie_Rich_rapper.jpeg" + }, + { + "name": "Rick Rock", + "image_url": "http://s3.amazonaws.com/rapgenius/rick_rock.jpg" + }, + { + "name": "Rick Ross", + "image_url": "http://www.thefamouspeople.com/profiles/images/rick-ross-2.jpg" + }, + { + "name": "Rico Love", + "image_url": "http://media.gettyimages.com/photos/record-producer-singer-songwriter-and-rapper-rico-love-is-interviewed-picture-id177991029" + }, + { + "name": "Riff Raff", + "image_url": "http://images1.laweekly.com/imager/riff-raff/u/original/4248950/rrone.jpg" + }, + { + "name": "Rittz", + "image_url": "http://theciphershow.com/image/uploads/rittz.jpg" + }, + { + "name": "RJ", + "image_url": "http://images1.laweekly.com/imager/u/original/6044341/rj-kenneth-wynn.jpg" + }, + { + "name": "Rob Sonic", + "image_url": "http://cdn.ticketfly.com/i/00/01/30/07/57-exl.jpeg" + }, + { + "name": "Rob Stone", + "image_url": "https://i1.wp.com/hypebeast.com/image/ht/2016/08/rob-stone-chill-bill-remix1.png" + }, + { + "name": "Roc Marciano", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2010/09/marciano_304.jpg" + }, + { + "name": "Rockie Fresh", + "image_url": "http://www.missinfo.tv/wp-content/uploads/2014/03/rockie-fresh.jpg.jpg" + }, + { + "name": "Rocko", + "image_url": "http://www.bet.com/content/dam/betcom/images/2013/06/Shows/Music-News/mn13_rockoadon_final.jpg" + }, + { + "name": "Roger Troutman", + "image_url": "https://www.thefamousbirthdays.com/photo/en/c/c6/wk_60128_40208_large.jpg" + }, + { + "name": "Romeo Miller", + "image_url": "http://www1.pictures.zimbio.com/gi/BET+Awards+11+Arrivals+XFI1wmisCnBx.jpg" + }, + { + "name": "Ronnie Radke", + "image_url": "http://www.altpress.com/images/uploads/feature_header_images/ronnie_radke_list_2015.jpg" + }, + { + "name": "Roots Manuva", + "image_url": "http://dis.resized.images.s3.amazonaws.com/940x535/27742.jpeg" + }, + { + "name": "Roscoe", + "image_url": "http://www4.pictures.stylebistro.com/gi/Roscoe%2BDash%2BScarves%2BPatterned%2BScarf%2B8lklV6z5LqUl.jpg" + }, + { + "name": "Roscoe Dash", + "image_url": "http://www.africamusiclaw.com/wp-content/uploads/2012/09/Rapper-Roscoe-Dash-Says-Wale-and-Kanye-Did-not-Give-Credits.jpg" + }, + { + "name": "Rowdy Rebel", + "image_url": "https://images.vice.com/noisey/content-images/article/rowdy-rebel-interview/Screen-Shot-2014-09-19-at-1-26-44-PM.jpg" + }, + { + "name": "Roxanne Shanté", + "image_url": "https://s-media-cache-ak0.pinimg.com/564x/aa/0a/11/aa0a117dbca70d9867e8ec57cda0209f.jpg" + }, + { + "name": "Royce da 5'9", + "image_url": "http://www.ihiphop.com/wp-content/uploads/2011/08/royce.jpg" + }, + { + "name": "Russ", + "image_url": "http://dailychiefers.com/wp-content/media/2016/04/russ.jpg" + }, + { + "name": "Rucka Rucka Ali", + "image_url": "https://www.thefamouspeople.com/profiles/images/rucka-rucka-ali-1.jpg" + }, + { + "name": "Rydah J. Klyde", + "image_url": "http://siccness.net/wp/wp-content/uploads/2016/08/dj-fresh-rydah-j-klyde.jpg" + }, + { + "name": "Rye Rye", + "image_url": "http://www.bet.com/topics/r/rye-rye/_jcr_content/image.heroimage.dimg/__1411951278058/051512-shows-106-park-rye-rye-9.jpg" + }, + { + "name": "RZA", + "image_url": "http://www.sosoactive.com/wp-content/uploads/2014/04/rza-2.jpg" + }, + { + "name": "Roy Woods", + "image_url": "http://bendxl.com/wp-content/uploads/2015/07/ROYWoodsOVO.jpg" + }, + { + "name": "Slick Rick", + "image_url": "http://jobbiecrew.com/wp-content/uploads/2015/04/0slickrick2.jpg" + }, + { + "name": "Snoop Dogg", + "image_url": "https://media.nbcnewyork.com/images/1200*675/Snoop+Dogg3.jpg" + }, + { + "name": "Skabo", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/8/83/Bosko.jpg" + }, + { + "name": "Saafir", + "image_url": "http://www.okayplayer.com/wp-content/uploads/2013/02/saafir.jpg" + }, + { + "name": "Sabac Red", + "image_url": "http://wildstylemag.com/wp-content/uploads/Sabac-Red.gif" + }, + { + "name": "Sacario", + "image_url": "http://www.hellhoundmusic.com/wp-content/uploads/2013/11/sacario-1.jpg" + }, + { + "name": "Sadat X", + "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2012/10/sadat-x-10.25.2012.j.jpeg" + }, + { + "name": "Sadistik", + "image_url": "http://potholesinmyblog.com/wp-content/uploads/2013/01/sadistik-mic.jpg" + }, + { + "name": "Sage Francis", + "image_url": "https://consequenceofsound.files.wordpress.com/2014/03/sage-francis_1276598819.jpg" + }, + { + "name": "Sage the Gemini", + "image_url": "https://images.vice.com/noisey/content-images/article/sage-the-gemini-doesnt-listen-to-rap/E9FA1B25DC26BCB317C236E1CD46175920132510124230269.jpg" + }, + { + "name": "Saigon", + "image_url": "http://thekoalition.com/images/2011/01/Saigon.jpg" + }, + { + "name": "Sam Sneed", + "image_url": "http://www.post-gazette.com/image/2013/10/17/Sam-Sneed.jpg" + }, + { + "name": "Sammy Adams", + "image_url": "https://s3.amazonaws.com/rapgenius/1374121236_Sam_Adams-Bostons_Boy_Album.jpg" + }, + { + "name": "San E", + "image_url": "http://www.soompi.com/wp-content/uploads/2014/10/1013-san-e.jpg" + }, + { + "name": "San Quinn", + "image_url": "http://www.therealspill.com/uploads/2/0/6/4/2064107/5641474.jpg" + }, + { + "name": "Sarkodie", + "image_url": "http://www.thecable.ng/wp-content/uploads/2015/06/sak1.jpg" + }, + { + "name": "Sauce Money", + "image_url": "http://images.rapgenius.com/709f4d670c0505627849b8664f8276de.422x530x1.jpg" + }, + { + "name": "Savage", + "image_url": "https://i1.wp.com/hypebeast.com/image/2016/08/off-white-2016-fw-collection-21-savage-lookbook-2.jpg" + }, + { + "name": "Scarface", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/10/SCARFACE.jpg" + }, + { + "name": "Schoolboy Q", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/02/Schoolboy_Q_Speaks_on_best_tde_rapper.jpg" + }, + { + "name": "Schoolly D", + "image_url": "http://www.rapmusicguide.com/blog/wp-content/uploads/2013/12/Schoolly-D-arms.jpg" + }, + { + "name": "Scott Storch", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2014/02/Scott-Storch_02-17-2014-300x300.jpg" + }, + { + "name": "Scotty", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/1/1b/Scotty_%28Scotty_ATL%29.jpg" + }, + { + "name": "Scram Jones", + "image_url": "http://i1.wp.com/allhiphop.com/wp-content/uploads/2013/10/scram-jones.jpg" + }, + { + "name": "Scribe", + "image_url": "http://static2.stuff.co.nz/1296207390/967/4595967.jpg" + }, + { + "name": "Scrilla", + "image_url": "http://media.nbcmiami.com/images/1200*675/Young-Scrilla.jpg" + }, + { + "name": "Scrufizzer", + "image_url": "http://jumpoff.tv/assets/images/made/assets/images/posts/12dec11_scrufizzer_war_MAIN_580_352.jpg" + }, + { + "name": "Sean Combs", + "image_url": "http://s1.ibtimes.com/sites/www.ibtimes.com/files/styles/lg/public/2012/04/20/265198-rapper-sean-diddy-combs.jpg" + }, + { + "name": "Sean Paul", + "image_url": "http://wac.450f.edgecastcdn.net/80450F/theboombox.com/files/2009/12/seanp_bbx_200_122309.jpg" + }, + { + "name": "Sean Price", + "image_url": "http://img2.timeinc.net/people/i/2015/news/150824/sean-price-435.jpg" + }, + { + "name": "Sean T", + "image_url": "http://www.talentedprofiles.com/wp-content/uploads/2016/02/Rapper-Big-Sean-600x600_t.jpg" + }, + { + "name": "Serengeti", + "image_url": "http://www.anticon.com/sites/default/files/imagecache/artist/White%20Collar%209.jpg" + }, + { + "name": "Serius Jones", + "image_url": "http://www2.pictures.zimbio.com/gi/Serius+Jones+Sean+Diddy+Combs+Hosts+Pool+Party+3ntNwfoXEMil.jpg" + }, + { + "name": "Sev Statik", + "image_url": "http://i.ytimg.com/vi/vbQhHs2_10s/maxresdefault.jpg" + }, + { + "name": "Sha Money XL", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-sha-money-xl-celebrity-singer-photos.jpg" + }, + { + "name": "Shabazz the Disciple", + "image_url": "http://i1.ytimg.com/vi/UzKEnCSozmA/maxresdefault.jpg" + }, + { + "name": "Shad", + "image_url": "http://www.chartattack.com/wp-content/uploads/2014/04/shad.jpg" + }, + { + "name": "Shade Sheist", + "image_url": "http://beatsandrhymesfc.com/wp-content/uploads/2012/04/ss-bb.jpg" + }, + { + "name": "Shady Nate", + "image_url": "http://bloximages.newyork1.vip.townnews.com/montereycountyweekly.com/content/tncms/assets/v3/editorial/e/b5/eb5a2b49-dc95-557a-9967-09f87b6818a1/519523d286802.image.jpg" + }, + { + "name": "Shaggy", + "image_url": "http://img.karaoke-lyrics.net/img/artists/10440/shaggy-132443.jpg" + }, + { + "name": "Shaggy 2 Dope", + "image_url": "http://www.faygoluvers.net/v5/wp-content/uploads/2013/05/Shaggy-2-Dope1.jpg" + }, + { + "name": "Shaquille O'Neal", + "image_url": "https://nextshark-vxdsockgvw3ki.stackpathdns.com/wp-content/uploads/2018/04/maxresdefault.jpg" + }, + { + "name": "Shawnna", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/05/Shawnna.jpg" + }, + { + "name": "Shawty Lo", + "image_url": "http://jusflippin.com/wp-content/uploads/2011/07/Shawty-Lo.jpg" + }, + { + "name": "Sheek Louch", + "image_url": "http://highlineballroom.com/assets/Sheek-Louch.jpg" + }, + { + "name": "Shing02", + "image_url": "http://media-cache-ec0.pinimg.com/736x/78/23/8e/78238e9ab30512cfb4d52af6ccb40292.jpg" + }, + { + "name": "Sho Baraka", + "image_url": "https://i0.wp.com/allhiphop.com/wp-content/uploads/2017/02/rapper-sho-baraka-banned-from-ch.jpg" + }, + { + "name": "Shock G", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/c/ca/ShkWiki9.jpg" + }, + { + "name": "Shorty", + "image_url": "http://starcasm.net/wp-content/uploads/2010/12/Magnolia-Shorty-490x445.jpg" + }, + { + "name": "Shorty Mack", + "image_url": "https://i0.wp.com/www.hip-hopvibe.com/wp-content/uploads/2013/01/Shorty-Mack.jpg" + }, + { + "name": "Shwayze", + "image_url": "http://www.aceshowbiz.com/images/wennpic/wenn5188509.jpg" + }, + { + "name": "Shy Glizzy", + "image_url": "http://www.trbimg.com/img-57a2315f/turbine/bal-shy-glizzy-young-jefe-2-cut-it-royal-farms-arena" + }, + { + "name": "Shyheim", + "image_url": "http://www.eurweb.com/wp-content/uploads/2014/07/Shyheim_04-24-2013-300x300.jpg" + }, + { + "name": "Shyne", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2012/01/Shyne-2.jpg" + }, + { + "name": "Silentó", + "image_url": "https://cmgajcmusic.files.wordpress.com/2015/06/silento-2.jpg" + }, + { + "name": "Silkk the Shocker", + "image_url": "http://2.bp.blogspot.com/_B1LlYh6iKqs/TK0gNRXZJ_I/AAAAAAAAC7g/vT3VW7tT8C4/s1600/silkk-the-shocker.jpg" + }, + { + "name": "Silla", + "image_url": "http://rap.de/wp-content/uploads/silla-rapde.png" + }, + { + "name": "Simon D", + "image_url": "http://3.bp.blogspot.com/-o789bRAl2C8/UaSCreHk8lI/AAAAAAAAD6A/671amIdPmxA/s1600/simon+d.jpg" + }, + { + "name": "Sir Jinx", + "image_url": "http://www.dubcnn.com/wp-content/uploads/2012/12/jinx-pic1000001.png" + }, + { + "name": "Sir Mix-a-Lot", + "image_url": "https://usatftw.files.wordpress.com/2018/03/pjimage-23-e1520876763340.jpg" + }, + { + "name": "Sirah", + "image_url": "http://www3.pictures.zimbio.com/gi/Sirah+55th+Annual+GRAMMY+Awards+Press+Room+AQYNmS4HQPUl.jpg" + }, + { + "name": "Skee-Lo", + "image_url": "http://whatisplayinginmyitunes.files.wordpress.com/2012/12/skee-lo.jpg" + }, + { + "name": "Skeme", + "image_url": "http://rapdose.com/wp-content/uploads/2014/05/Skeme-Believe.jpg" + }, + { + "name": "Skepta", + "image_url": "http://runthetrap.com/wp-content/uploads/2015/03/skepta-50bb835c0adb7.jpg" + }, + { + "name": "Skinnyman", + "image_url": "http://eslhiphop.com/wp-content/uploads/2013/06/skinnyman.png" + }, + { + "name": "Skooly", + "image_url": "https://i.ytimg.com/vi/6mZHPf-ZvFA/maxresdefault.jpg" + }, + { + "name": "Skyzoo", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2009/05/skyzoo.jpg" + }, + { + "name": "SL Jones", + "image_url": "http://www.audibletreats.com/Media/newspics/SL_Jones-08.jpg" + }, + { + "name": "Sleepy Brown", + "image_url": "http://s3.amazonaws.com/rapgenius/sleepy-brown-129.jpg" + }, + { + "name": "Slick Rick", + "image_url": "http://jobbiecrew.com/wp-content/uploads/2015/04/0slickrick2.jpg" + }, + { + "name": "Slim Jxmmi", + "image_url": "https://images.genius.com/7e898276f657a3d38d0febfee65a7280.640x640x1.jpg" + }, + { + "name": "Slim Thug", + "image_url": "http://1.bp.blogspot.com/-qfh469KzybM/TkT0T9dTN9I/AAAAAAAAAY8/uB-uoTiwCv4/s1600/Slim-Thug-Rapper-Gun.jpg" + }, + { + "name": "Slug", + "image_url": "http://unspokenstyle.files.wordpress.com/2011/01/slug.jpg" + }, + { + "name": "Smitty", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Smitty-rapper.jpg/1200px-Smitty-rapper.jpg" + }, + { + "name": "Smoke DZA", + "image_url": "http://massappeal.com/wp-content/uploads/2014/03/smoke-dza-.png" + }, + { + "name": "Smooth", + "image_url": "https://i.ytimg.com/vi/KmtRq-iucII/maxresdefault.jpg" + }, + { + "name": "Smoothe da Hustler", + "image_url": "https://i.ytimg.com/vi/e_zc1qBlu-c/maxresdefault.jpg" + }, + { + "name": "Sniper J", + "image_url": "http://medias.2kmusic.com/uploads/2010/03/19/img-1269021506-cb5ef53ef55ea9e90358d91d4e4b25f7.jpg" + }, + { + "name": "Snoop Dogg", + "image_url": "https://media.nbcnewyork.com/images/1200*675/Snoop+Dogg3.jpg" + }, + { + "name": "Snootie Wild", + "image_url": "https://images.genius.com/e0d17ec7650545545dabdf923613065c.600x600x1.jpg" + }, + { + "name": "Snow Tha Product", + "image_url": "http://blog.krizzkaliko.com/wp-content/uploads/2012/11/SNow-On-Kaliko.jpg" + }, + { + "name": "Soce the elemental wizard", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/b/b7/Soce.jpg/1200px-Soce.jpg" + }, + { + "name": "Sole", + "image_url": "http://lobermanhiphop.files.wordpress.com/2013/02/sole.jpg" + }, + { + "name": "Solzilla", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Sol_%28Seattle_rapper%29_03.jpg/1200px-Sol_%28Seattle_rapper%29_03.jpg" + }, + { + "name": "Sonny Digital", + "image_url": "https://nationofbillions.com/wp-content/uploads/2016/07/SONNYDIGITAL_1_Wireless.jpg" + }, + { + "name": "SonReal", + "image_url": "http://www.digitaljournal.com/img/2/7/4/3/7/7/i/1/7/0/o/BWsuit_15.JPG" + }, + { + "name": "Sonsee", + "image_url": "http://img2-ak.lst.fm/i/u/avatar170s/ed38054f95d64ddf9b5e6a53f9702497.jpg" + }, + { + "name": "Soopafly", + "image_url": "http://cache1.asset-cache.net/xc/136582867-rapper-soopafly-visits-the-late-show-with-filmmagic.jpg" + }, + { + "name": "Soulja Boy", + "image_url": "http://www.wallpaperup.com/uploads/wallpapers/2014/03/04/284914/a82261adb443e8646b88831a16649ffe.jpg" + }, + { + "name": "Soulja Slim", + "image_url": "http://listofdeadrappers.files.wordpress.com/2011/09/soulja_slim.jpg" + }, + { + "name": "South Park Mexican", + "image_url": "http://ww3.hdnux.com/photos/04/30/72/1150654/0/960x540.jpg" + }, + { + "name": "Southside", + "image_url": "https://i.ytimg.com/vi/L95z8KjFPZo/maxresdefault.jpg" + }, + { + "name": "SpaceGhostPurrp", + "image_url": "http://images1.miaminewtimes.com/imager/spaceghostpurrp-will-not-abide-the-fakes/u/original/6387038/7915708.0.jpg" + }, + { + "name": "Special Ed", + "image_url": "http://i1.ytimg.com/vi/XXOHX9HBeXk/maxresdefault.jpg" + }, + { + "name": "Spice 1", + "image_url": "http://s3.amazonaws.com/rapgenius/1378684361_tumblr_mi7aw9N3cj1qzx6s2o1_500.jpg" + }, + { + "name": "Spider Loc", + "image_url": "http://www.datwav.com/wp-content/uploads/2017/06/G-Unit-Rapper-Spider-Loc.jpg" + }, + { + "name": "Spoonie Gee", + "image_url": "http://www.boogitybeat.com/images/BB13068.jpg" + }, + { + "name": "Spose", + "image_url": "http://img3.wikia.nocookie.net/__cb20111103180051/rap/images/d/d7/Spose.png" + }, + { + "name": "Spot", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/6/6c/SPOT_January_2012_Photoshoot.jpg" + }, + { + "name": "Stalley", + "image_url": "http://blahblahblahscience.com/wp-content/uploads/2014/09/stalley.jpg" + }, + { + "name": "Starlito", + "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2010/02/starlito-sq-39399222.jpg" + }, + { + "name": "Stat Quo", + "image_url": "http://hiphopscholar.files.wordpress.com/2008/09/stat_quo.jpg" + }, + { + "name": "Static Major", + "image_url": "http://3.bp.blogspot.com/_DuzxFBl8bfQ/TKdHgLphHHI/AAAAAAAAAlA/e4rL00OHn-I/s1600/static+major+1.jpg" + }, + { + "name": "Statik Selektah", + "image_url": "http://www.tunecore.com/blog/wp-content/uploads/2015/05/statik.selektah-actual_wide-970ed5943d6d8b812a0e74a38aac7f8a2d1ae196-s6-c30.jpg" + }, + { + "name": "Steady B", + "image_url": "http://ring.cdandlp.com/lower/photo_grande/115261787.jpg" + }, + { + "name": "Stevie Joe", + "image_url": "http://siccness.net/wp/wp-content/uploads/2016/02/Stevie_Joe.jpg" + }, + { + "name": "Stevie Stone", + "image_url": "http://faygoluvers.net/v5/wp-content/uploads/2012/09/steviestone101912.jpg" + }, + { + "name": "Stezo", + "image_url": "http://phaseonemusic.com/wp-content/uploads/2012/02/STEZO+FREAK+THE+FUNK+COVER+1.jpg" + }, + { + "name": "Stitches", + "image_url": "https://pmchollywoodlife.files.wordpress.com/2015/12/stitches-the-game-insta-ftr.jpg" + }, + { + "name": "Sticky Fingaz", + "image_url": "http://interestingcelebrities.com/pictures/sticky_fingaz.jpg" + }, + { + "name": "Stoka", + "image_url": "https://www.hhunity.org/wp-content/uploads/2014/11/Stoka-Agram-Audio.png" + }, + { + "name": "Stoupe the Enemy of Mankind", + "image_url": "http://images.rapgenius.com/8ed6eb4ea61413e34c0a67f5e04f3b3c.600x340x1.jpg" + }, + { + "name": "Stormzy", + "image_url": "https://d.ibtimes.co.uk/en/full/1475476/stormzy.jpg" + }, + { + "name": "Stretch", + "image_url": "http://img2.wikia.nocookie.net/__cb20130717123821/hip-hop-music/images/6/69/Stretch.jpg" + }, + { + "name": "Styles P", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-styles-p-singer-celebrity-hip-hop.jpg" + }, + { + "name": "Substantial", + "image_url": "http://www.hiphopsite.com/wp-content/uploads/2010/06/Substantial.jpg" + }, + { + "name": "Suga Free", + "image_url": "http://s3.amazonaws.com/rapgenius/1361309346_l.jpg" + }, + { + "name": "Suffa", + "image_url": "http://i.dailymail.co.uk/i/pix/2015/02/28/262B331400000578-2973396-In_the_zone_The_Suffa_MC_from_the_Hilltop_Hoods_also_took_to_the-a-13_1425134138732.jpg" + }, + { + "name": "Swagg Man", + "image_url": "http://www.famousbirthdays.com/headshots/swagg-man-7.jpg" + }, + { + "name": "Sweet Tee", + "image_url": "http://www.rapindustry.com/sweet_tee_in.jpg" + }, + { + "name": "Swings", + "image_url": "http://cdn.koreaboo.com/wp-content/uploads/2014/11/htm_20141106171738c010c0111.jpg" + }, + { + "name": "Swizz Beatz", + "image_url": "http://www1.pictures.zimbio.com/gi/Swizz+Beatz+40th+American+Music+Awards+Arrivals+cTuFcCa4A2sl.jpg" + }, + { + "name": "SwizZz", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-swizzz-star-rap-hip-hop.jpg" + }, + { + "name": "Syd Tha Kyd", + "image_url": "https://i1.wp.com/hypebeast.com/image/2012/03/syd-tha-kyd-by-lance-bangs-edit-0.jpg" + }, + { + "name": "SZA", + "image_url": "http://www.billboard.com/files/styles/promo_650/public/media/sza-650.jpg" + }, + { + "name": "T.I.", + "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" + }, + { + "name": "Tyler the Creator", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/fa/52/a6/fa52a6dd8c76a533092056f173900e80.jpg" + }, + { + "name": "T La Rock", + "image_url": "http://okp-cdn.okayplayer.com/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-9.55.59-PM-715x719.png" + }, + { + "name": "T-Bone", + "image_url": "http://www.christianmusic.com/PHOTOS/t_bone-2.jpg" + }, + { + "name": "T-Nutty", + "image_url": "http://siccness.net/wp/wp-content/uploads/2016/02/nutty.png" + }, + { + "name": "T-Pain", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2014/02/grammy-award-winning-rapper-t-pain-Talks-Chance-The-Rapper.jpg" + }, + { + "name": "T-Wayne", + "image_url": "https://images.rapgenius.com/822e2be4f84c2ecdada82f017f75b7fb.960x960x1.jpg" + }, + { + "name": "T. Mills", + "image_url": "http://www2.pictures.zimbio.com/gi/T+Mills+Arrivals+Young+Hollywood+Awards+Part+NJl90h8MOpal.jpg" + }, + { + "name": "T.I.", + "image_url": "http://media-cache-ec0.pinimg.com/736x/d8/6e/c4/d86ec4828778e4997a77313619d0d370.jpg" + }, + { + "name": "T.O.P", + "image_url": "http://i2.asntown.net/h2/Korea/7/kpop-bigbang/TOP-bigbang-fashion06.jpg" + }, + { + "name": "Tabi Bonney", + "image_url": "https://thisguysworld.files.wordpress.com/2010/07/tabi.jpg" + }, + { + "name": "Tablo", + "image_url": "http://images5.fanpop.com/image/photos/30500000/Tablo-tablo-30511618-333-500.jpg" + }, + { + "name": "Taio Cruz", + "image_url": "http://colunas.multishowfm.globoradio.globo.com/platb/files/806/2010/11/Taio-Cruz-.jpg" + }, + { + "name": "Talib Kweli", + "image_url": "http://media2.fdncms.com/orlando/imager/u/original/2404812/talib_kweli.jpg" + }, + { + "name": "Target", + "image_url": "http://static5.businessinsider.com/image/4e9876896bb3f74864000017/rapper-rick-ross-was-the-target-of-a-drive-by-shooting-in-florida.jpg" + }, + { + "name": "Tay Dizm", + "image_url": "http://static.djbooth.net/pics-artist-rec/Tay_Dizm_1.jpg" + }, + { + "name": "Tay-K", + "image_url": "https://hypb.imgix.net/image/2017/10/ybn-nahmir-tay-k-the-race-remix-0.jpg" + }, + { + "name": "TD Cruze", + "image_url": "http://www.berliner-kurier.de/image/26201312/max/600/450/49d662a34b7203e4183c320bf0785416/UF/ted-cruz.jpg" + }, + { + "name": "Teairra Marí", + "image_url": "http://hw-img.datpiff.com/mb740e75/Teairra_Marie_Unfinished_Business-front-large.jpg" + }, + { + "name": "Tech N9ne", + "image_url": "http://vegasimpulse.files.wordpress.com/2012/04/tech-n9ne-2.jpg" + }, + { + "name": "Tedashii", + "image_url": "http://images.christianpost.com/full/75663/tedashii.jpg" + }, + { + "name": "TeeFlii", + "image_url": "http://www3.pictures.zimbio.com/gi/TeeFlii+BET+AWARDS+14+Day+1+Kp7kNUhHFvyl.jpg" + }, + { + "name": "Tee Grizzley", + "image_url": "https://i1.wp.com/hypebeast.com/image/2016/11/detroit-rapper-tee-grizzley-first-day-out-video-0.jpg" + }, + { + "name": "Tekitha", + "image_url": "http://rollingout.com/wp-content/uploads/2015/12/Anthony-Hamilton-380x280.jpg" + }, + { + "name": "Tela", + "image_url": "http://nebula.wsimg.com/88482f2967eb7b323b8df1fd1eff4d3a" + }, + { + "name": "Termanology", + "image_url": "http://static.djbooth.net/pics-artist/termanology.jpg" + }, + { + "name": "Terrace Martin", + "image_url": "https://lastfm-img2.akamaized.net/i/u/57e7f81f5b8f4d2daea075100bf0473a.png" + }, + { + "name": "Teyana Taylor", + "image_url": "http://worldofblackheroes.files.wordpress.com/2012/03/teyana-taylor-17.jpg" + }, + { + "name": "Tha Chill", + "image_url": "http://steadydippin.com/wp-content/uploads/Tha-Chill.jpg" + }, + { + "name": "Tha City Paper", + "image_url": "http://hw-img.datpiff.com/ma42439e/Tha_City_Paper_Paper_Aka_Tha_City_Paper_paper_Vie-front-large.jpg" + }, + { + "name": "Tha Trademarc", + "image_url": "http://s3.amazonaws.com/rapgenius/1363145335_John%20Cena%20%20Tha%20Trademarc%20JOHN_CENA___THA_TRADEMARCcolti.jpg" + }, + { + "name": "The-Dream", + "image_url": "http://thatgrapejuice.net/wp-content/uploads/2010/06/the-dream1.jpg" + }, + { + "name": "Theophilus London", + "image_url": "http://www2.pictures.zimbio.com/gi/Theophilus+London+Carlos+Campos+Presentation+NeU7Y7HGrqwl.jpg" + }, + { + "name": "Tiffany Foxx", + "image_url": "http://bloximages.newyork1.vip.townnews.com/stltoday.com/content/tncms/assets/v3/editorial/b/2c/b2cd2408-9233-5bff-9a8b-5d39bafa4029/50928305bb4ba.preview-620.jpg" + }, + { + "name": "Tim Dog", + "image_url": "http://assets.rollingstone.com/assets/2014/article/tim-dog-rapper-accused-of-faking-death-confirmed-dead-20140916/168425/large_rect/1401x788-retna2059832.jpg" + }, + { + "name": "Timaya", + "image_url": "http://www.360nobs.com/wp-content/uploads/2015/01/Jahbless1.jpg" + }, + { + "name": "Timbaland", + "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/timbaland.jpg" + }, + { + "name": "Timbe", + "image_url": "http://live.drjays.com/wp-content/uploads/2009/12/timbaland.jpg" + }, + { + "name": "Tinie Tempah", + "image_url": "http://dollyumez.files.wordpress.com/2013/01/tinie-tempah.jpg" + }, + { + "name": "Tink (musician)", + "image_url": "https://cocoocd.files.wordpress.com/2013/04/228090_507024229347791_1052484062_n.jpg" + }, + { + "name": "TobyMac", + "image_url": "https://s-media-cache-ak0.pinimg.com/564x/e7/a8/9e/e7a89ea48cbf5822fb909ec267b79499.jpg" + }, + { + "name": "Tone Lōc", + "image_url": "http://media-cache-ak0.pinimg.com/736x/68/72/60/6872607c9c8e2dacc6a52a776d4b843a.jpg" + }, + { + "name": "Tone Trump", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2012/06/tonetrump.jpg" + }, + { + "name": "Tonedeff", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/5/51/Tonedefflive.png" + }, + { + "name": "Toni Blackman", + "image_url": "http://www.womex.com/virtual/image/artist/toni_blackman_big_29989.jpg" + }, + { + "name": "Tony Yayo", + "image_url": "http://zmldajoker.com/wp-content/uploads/2012/08/Tony-Yayo.jpg" + }, + { + "name": "Too Short", + "image_url": "https://escobar300.files.wordpress.com/2011/08/tooshort.jpg" + }, + { + "name": "Torch (American)", + "image_url": "http://1.bp.blogspot.com/-XU66PTiuIIA/T36hTMQCXJI/AAAAAAAAAcU/5rfwuQ6TWAU/s1600/Torch_(US_rapper).jpg" + }, + { + "name": "Torch (German)", + "image_url": "http://leaveyournineathome.files.wordpress.com/2007/10/torch-blauer_samt.jpg" + }, + { + "name": "Tory Lanez", + "image_url": "http://cdn.ratedrnb.com/2016/10/tory-lanez.jpg" + }, + { + "name": "Tracey Lee", + "image_url": "http://madrapper.com/wp-content/uploads/2010/12/Lee1.jpg" + }, + { + "name": "Trae tha Truth", + "image_url": "https://media.thehypemagazine.com/wp-content/uploads/2018/04/trae-tha-truth-paras-griffin-1024x683.jpg" + }, + { + "name": "Tragedy Khadafi", + "image_url": "http://assets2.vice.com/images/content-images/2014/12/29/tragedy-khadafi-is-still-queensbridges-realest-456-body-image-1419881556.jpg" + }, + { + "name": "Travis Scott", + "image_url": "http://www1.pictures.zimbio.com/gi/Travis+Scott+Arrivals+BET+Awards+54GWNTvi2gDl.jpg" + }, + { + "name": "Traxamillion", + "image_url": "https://cbarap.files.wordpress.com/2014/05/traxamillion.jpg" + }, + { + "name": "Tray Deee", + "image_url": "https://unitedgangs.files.wordpress.com/2013/07/ta36tw1.jpg" + }, + { + "name": "Treach", + "image_url": "https://ionehellobeautiful.files.wordpress.com/2016/01/14520871976376.jpg" + }, + { + "name": "Trey Songz", + "image_url": "http://www.creativefan.com/important/cf/2012/08/trey-songz-tattoo/trey-songz-body-tattoo.jpg" + }, + { + "name": "Trick Daddy", + "image_url": "https://i1.wp.com/celebritybio.org/wp-content/uploads/2014/08/Trick-Daddy-Net-Worth.jpg" + }, + { + "name": "Trick-Trick", + "image_url": "http://ctt.marketwire.com/" + }, + { + "name": "Trina", + "image_url": "http://www.missxpose.com/wp-content/uploads/2011/11/trina-bet-photo-shoot-4.jpg" + }, + { + "name": "Trinidad James", + "image_url": "https://cbshot937.files.wordpress.com/2012/12/trinidad_james10.jpg" + }, + { + "name": "Trip Lee", + "image_url": "http://www.eewmagazine.com/images/Trip-Lee-Good-life.jpg" + }, + { + "name": "Trippie Redd", + "image_url": "http://hiphopheads.net/wp-content/uploads/2017/08/Trippie-Redd-1.jpg" + }, + { + "name": "Tristan Wilds", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/8c/a2/44/8ca24487846ce97afbae1ff967fb78c5--tristan-wilds-rapper.jpg" + }, + { + "name": "Troy Ave", + "image_url": "http://www.ballerstatus.com/wp-content/uploads/2016/05/tave.jpg" + }, + { + "name": "Tupac Shakur", + "image_url": "http://sahiphopmag.co.za/wp-content/uploads/2016/05/Rap-artist-Tupac-Shakur.jpg" + }, + { + "name": "Turf Talk", + "image_url": "http://www.wallpaperup.com/uploads/wallpapers/2013/12/01/181203/19ce36a2c8ceed416ad66fa6d96db889.jpg" + }, + { + "name": "Turk", + "image_url": "http://www.brothersonsports.com/wp-content/uploads/2014/12/turkandwayne.jpg" + }, + { + "name": "Tweedy Bird Loc", + "image_url": "http://steadydippin.com/wp-content/uploads/Tweedy-Bird-Loc.jpg" + }, + { + "name": "Twista", + "image_url": "http://www.trbimg.com/img-53503146/turbine/ct-twista-chicago-rap-durty-nellies-20140417-001/2048/1365x2048" + }, + { + "name": "Twisted Insane", + "image_url": "http://assets.audiomack.com/rap-ebashit/f6e96e7ed6b0e965062aaed0ab4a9983.jpeg" + }, + { + "name": "Ty Dolla Sign", + "image_url": "http://www.rapbasement.com/wp-content/uploads/2015/01/tydolla.jpg" + }, + { + "name": "Tyga", + "image_url": "http://www.eurweb.com/wp-content/uploads/2015/07/tyga.jpg" + }, + { + "name": "Tyler Joseph", + "image_url": "https://s-media-cache-ak0.pinimg.com/564x/02/1c/b9/021cb958f946bfa08f64aea9d90b1a5b.jpg" + }, + { + "name": "Tyler The Creator", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/fa/52/a6/fa52a6dd8c76a533092056f173900e80.jpg" + }, + { + "name": "Tyra Bolling", + "image_url": "http://www.famousbirthdays.com/faces/bolling-tyra-image.jpg" + }, + { + "name": "Verbal Jint", + "image_url": "https://www.allkpop.com/upload/2017/09/af_org/22120146/verbal-jint.jpg" + }, + { + "name": "U-God", + "image_url": "http://assets.rollingstone.com/assets/2014/albumreview/wu-tang-clan-a-better-tomorrow-20141218/178198/large_rect/1418859659/1401x788-Wu_Tang_Clan_JW_WBR_107(2).JPG" + }, + { + "name": "Ugly God", + "image_url": "http://dailychiefers.com/wp-content/media/2016/03/ugly-god.jpg" + }, + { + "name": "Uncle Murda", + "image_url": "http://hiphop-n-more.com/wp-content/uploads/2015/01/uncle-murda-2014-rap-up.jpg" + }, + { + "name": "Unk", + "image_url": "http://antoniofam.files.wordpress.com/2011/05/dj_unk.jpg" + }, + { + "name": "U$O", + "image_url": "http://images.stiften.dk/22/63622_1200_0_0_35_1921_1200_2.jpg" + }, + { + "name": "Wyclef Jean", + "image_url": "http://media.gettyimages.com/photos/rapper-wyclef-jean-performs-in-concert-at-brooklyn-bowl-on-march-29-picture-id518080012" + }, + { + "name": "V-Nasty", + "image_url": "http://images.complex.com/complex/image/upload/c_limit,w_680/fl_lossy,pg_1,q_auto/daxoo4uvasmysgziontg.jpg" + }, + { + "name": "V.I.C.", + "image_url": "http://www.bigbloc.com/proto/images/hiphop/V.I.C._.jpg" + }, + { + "name": "Vado", + "image_url": "http://messymandella.files.wordpress.com/2012/10/vado_.jpg" + }, + { + "name": "Vakill", + "image_url": "http://thamidwest.com/wp-content/uploads/Vakill.png" + }, + { + "name": "Val Young", + "image_url": "https://i.ytimg.com/vi/uxy12OgQL54/maxresdefault.jpg" + }, + { + "name": "Valete", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/0/04/ValeteRapper.jpg" + }, + { + "name": "Vanilla Ice", + "image_url": "http://i.dailymail.co.uk/i/pix/2008/04_02/iceLFI1104_468x762.jpg" + }, + { + "name": "Vast Aire", + "image_url": "http://exclaim.ca/images/vast1.jpg" + }, + { + "name": "Verbal Jint", + "image_url": "https://www.allkpop.com/upload/2017/09/af_org/22120146/verbal-jint.jpg" + }, + { + "name": "Verse Simmonds", + "image_url": "https://i0.wp.com/allhiphop.com/wp-content/uploads/2012/02/verse-simmonds-1.png" + }, + { + "name": "Vic Mensa", + "image_url": "http://media-cache-ak0.pinimg.com/736x/91/aa/c1/91aac1b95e805342d2225913359ebd2b.jpg" + }, + { + "name": "Vince Staples", + "image_url": "http://i.dailymail.co.uk/i/newpix/2018/04/16/21/4B25AB0C00000578-5622755-image-a-24_1523909544359.jpg" + }, + { + "name": "Vinnie Paz", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-vinnie-paz-celebrity-song-rap.jpg" + }, + { + "name": "Violent J", + "image_url": "http://www.celebdirtylaundry.com/wp-content/uploads/violent-j-stereo-stolen.jpg" + }, + { + "name": "Viper", + "image_url": "http://static.qobuz.com/images/covers/14/83/3610154048314_600.jpg" + }, + { + "name": "VL Mike", + "image_url": "http://themusicsover.com/wp-content/uploads/2008/04/vlmike2.jpg" + }, + { + "name": "Xzibit", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.330091.1314424298!/img/httpImage/image.jpg_gen/derivatives/article_1200/amd-xzibit-jpg.jpg" + }, + { + "name": "Waka Flocka Flame", + "image_url": "http://2.bp.blogspot.com/-32xuBz8T-dk/T8oPlIH1PjI/AAAAAAAAqb0/pVwsKQXbigU/s1600/99_waka-flocka.jpg" + }, + { + "name": "Wale", + "image_url": "http://upbjmu.files.wordpress.com/2010/04/wale.jpg" + }, + { + "name": "Warren G", + "image_url": "http://images.huffingtonpost.com/2014-06-23-WarrenG.jpg" + }, + { + "name": "Warryn Campbell", + "image_url": "http://www.famousbirthdays.com/thumbnails/campbell-warryn-medium.jpg" + }, + { + "name": "Watsky", + "image_url": "http://www.gannett-cdn.com/-mm-/ac1394dbdcca6a36cbf486633b129cd813095ac3/r=x404&c=534x401/local/-/media/USATODAY/USATODAY/2013/05/23/1369356877000-image-1305232056_4_3.jpg" + }, + { + "name": "Wax (rapper)", + "image_url": "http://s3.amazonaws.com/rapgenius/Big_Wax_in_Front_of_a_Fence.jpg" + }, + { + "name": "WC", + "image_url": "http://www3.pictures.zimbio.com/fp/Wc+WC+Performing+In+Vancouver+RlfP1TE81Vzl.jpg" + }, + { + "name": "Webbie", + "image_url": "https://messymandella.files.wordpress.com/2012/08/16.jpg" + }, + { + "name": "The Weeknd", + "image_url": "http://factmag-images.s3.amazonaws.com/wp-content/uploads/2013/02/the_weeknd_0205131.jpg" + }, + { + "name": "Westside Gunn", + "image_url": "http://247hiphopnews.com/wp-content/uploads/2017/06/WestSide-Gunn-JAYFORCE.COM_.png" + }, + { + "name": "Wikluh Sky", + "image_url": "https://a4-images.myspacecdn.com/images01/12/691bb215a8b471aa86fc0f11a46ddfdb/full.jpg" + }, + { + "name": "Will Smith", + "image_url": "http://www.clashmusic.com/sites/default/files/styles/article_feature/public/legacy/files/willsmith-freshprince.jpg" + }, + { + "name": "will.i.am", + "image_url": "http://i1.tribune.com.pk/wp-content/uploads/2013/04/538192-image-1366470972-209-640x480.JPG" + }, + { + "name": "Willie D", + "image_url": "http://siccness.net/wp/wp-content/uploads/2013/02/Willie-D-blackchair1.jpg" + }, + { + "name": "Willie the Kid", + "image_url": "http://static.djbooth.net/pics-artist/williethekid.jpg" + }, + { + "name": "Willow Smith", + "image_url": "http://i.dailymail.co.uk/i/pix/2010/12/26/article-1341770-0C9599D1000005DC-328_468x531.jpg" + }, + { + "name": "Willy Northpole", + "image_url": "http://www.bet.com/topics/w/willy-northpole/_jcr_content/image.heroimage.dimg/__1378865366064/081012-topic-music-willy-northpole.jpg" + }, + { + "name": "Wish Bone", + "image_url": "http://djrushmusic.files.wordpress.com/2011/05/wish.jpg" + }, + { + "name": "Witchdoctor", + "image_url": "http://www.cocaineblunts.com/blunts/wp-content/uploads/2007/11/witch3.jpg" + }, + { + "name": "Wiz Khalifa", + "image_url": "http://farm8.staticflickr.com/7154/6622364753_1b2ab906b4.jpg" + }, + { + "name": "Wizkid", + "image_url": "http://www.thenet.ng/wp-content/uploads/2012/07/wale_wizkid-1.jpg" + }, + { + "name": "Wrekonize", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/a6/03/8d/a6038dcfe1d2068294fd3991603bedcf.jpg" + }, + { + "name": "Wyclef Jean", + "image_url": "http://media.gettyimages.com/photos/rapper-wyclef-jean-performs-in-concert-at-brooklyn-bowl-on-march-29-picture-id518080012" + }, + { + "name": "X-Raided", + "image_url": "http://siccness.net/wp/wp-content/uploads/2016/03/xraided.jpg" + }, + { + "name": "XV", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/XV_performance_Dancefestopia_2013_2014-01-28_00-39.jpg/1200px-XV_performance_Dancefestopia_2013_2014-01-28_00-39.jpg" + }, + { + "name": "Xzibit", + "image_url": "http://assets.nydailynews.com/polopoly_fs/1.330091.1314424298!/img/httpImage/image.jpg_gen/derivatives/article_1200/amd-xzibit-jpg.jpg" + }, + { + "name": "XXXTentacion", + "image_url": "https://dancehallhiphop.com/wp-content/uploads/2017/12/XXXTentacion-rapper-800x565.jpg" + }, + { + "name": "X Clan", + "image_url": "http://www.xxlmag.com/files/2015/03/x-clan-feat2.jpg" + }, + { + "name": "Yolandi Visser", + "image_url": "https://i.pinimg.com/originals/d0/fd/b2/d0fdb22ac606edd8f1bd15abd8d67faa.jpg" + }, + { + "name": "Young Jeezy", + "image_url": "http://pennylibertygbow.files.wordpress.com/2012/02/youngjeezy3.jpg" + }, + { + "name": "Ya Boy", + "image_url": "http://www.yorapper.com/Photos/ya-boy-rapper.jpg" + }, + { + "name": "Yaki Kadafi", + "image_url": "https://40.media.tumblr.com/d340fd47b49c53270809188a633dd53b/tumblr_nnhcxjUrQ41tm7i3uo1_500.jpg" + }, + { + "name": "Yazz The Greatest", + "image_url": "http://l7.alamy.com/zooms/ed94feec8a1b4ca9a29552f71c0625ac/philadelphia-pa-usa-15th-may-2016-american-rapper-yazz-the-greatest-g1ppkr.jpg" + }, + { + "name": "YBN Nahmir", + "image_url": "https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/YBN-Nahmir-2018.png/1200px-YBN-Nahmir-2018.png" + }, + { + "name": "YC", + "image_url": "http://www2.pictures.zimbio.com/gi/YC+BET+Awards+11+Press+Room+RRqra9BH48Ql.jpg" + }, + { + "name": "YDG", + "image_url": "http://www.bntnews.co.uk/images/news/2014/z7rqhmv4d3wjw5nffyob82va89tuo6me.jpg" + }, + { + "name": "Yelawolf", + "image_url": "http://3.bp.blogspot.com/-tOoHr9RZwUA/TjvmXyGFLWI/AAAAAAAAALg/tNy7P4_BWy4/s1600/Yelawolf-994x1024.jpg" + }, + { + "name": "YFN Lucci", + "image_url": "https://www.trapworldhiphop.com/wp-content/uploads/YFN-Lucci.jpg" + }, + { + "name": "YG", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/39/40/81/3940811a323f82520ca394aa7cec923f.jpg" + }, + { + "name": "Yo Gotti", + "image_url": "https://s-media-cache-ak0.pinimg.com/736x/b8/25/70/b82570e97603b42d3ff6f8dc26d2d0c5.jpg" + }, + { + "name": "Yo Yo Honey Singh", + "image_url": "http://media2.intoday.in/indiatoday/images/stories/honey-4_650_090214091121.jpg" + }, + { + "name": "Yoon Mi-rae", + "image_url": "http://media.tumblr.com/tumblr_m5sq6s8kb41r84myb.jpg" + }, + { + "name": "Young Bleed", + "image_url": "http://udgsounds.com/wp-content/uploads/2016/01/young-bleed-pic-for-interview-1.jpg" + }, + { + "name": "Young Buck", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-young-buck-hip-hop-fame-rap.jpg" + }, + { + "name": "Young Chop", + "image_url": "http://rollingout.com/wp-content/uploads/2014/11/young_chop.jpg" + }, + { + "name": "Young Chris", + "image_url": "http://hustlebunny.com/content/2012/08/young-chris-rapper.jpg" + }, + { + "name": "Young Dolph", + "image_url": "http://img.wennermedia.com/social/rs-young-dolph-v1-d999645e-11e4-4549-b0f6-61af8728931a.jpg" + }, + { + "name": "Young Dre the Truth", + "image_url": "https://www.rapmusicguide.com/amass/images/inventory/9868/young%20dre-rev-4.jpg" + }, + { + "name": "Young Dro", + "image_url": "http://www.sohh.com/wp-content/uploads/2014/06/young-dro-2012-11-10-300x3001.jpg" + }, + { + "name": "Young Greatness", + "image_url": "http://hw-static.hiphopearly.com/images/tracks/3/Trappin-t32631-large.jpg" + }, + { + "name": "Young Jeezy", + "image_url": "http://pennylibertygbow.files.wordpress.com/2012/02/youngjeezy3.jpg" + }, + { + "name": "Young M.A", + "image_url": "https://cmga360music.files.wordpress.com/2017/03/youngma_img_9284_mike-marquez.jpg" + }, + { + "name": "Young Maylay", + "image_url": "http://www.hip-hopvibe.com/wp-content/uploads/2013/03/Young-Maylay-3.jpg" + }, + { + "name": "Young MC", + "image_url": "http://www1.pictures.zimbio.com/gi/Young+MC+Screening+Lionsgate+Films+Expendables+A6aEODh_pRRl.jpg" + }, + { + "name": "Young Noble", + "image_url": "https://www.strangemusicinc.com/wp-content/uploads/2011/09/Noble.jpg" + }, + { + "name": "Young Scooter", + "image_url": "http://www.4umf.com/wp-content/uploads/2013/04/Rapper-Young-Scooter-Arrested.jpg" + }, + { + "name": "Young Thug", + "image_url": "https://djbooth.net/.image/t_share/MTU0NzgzMTA4OTEzMTc3NzI3/chance-the-rapper-project-with-young-thug.jpg" + }, + { + "name": "YoungBoy Never Broke Again", + "image_url": "http://image.nola.com/home/nola-media/width600/img/crime_impact/photo/youngboy-never-broke-again-499fcd968041c808.jpg" + }, + { + "name": "Your Old Droog", + "image_url": "https://2.bp.blogspot.com/-LBeysv-KSHw/V1oDq2dOglI/AAAAAAAAIZc/NiQPZ0DOaBgHnZiILbvwTUJfSHT7vNMTQCLcB/s1600/Your%2BOld%2BDroog.jpg" + }, + { + "name": "Yubin", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-yubin-celebrity-hip-hop-singer-style.jpg" + }, + { + "name": "Yukmouth", + "image_url": "http://content9.flixster.com/photo/13/58/04/13580447_ori.jpg" + }, + { + "name": "Yung Berg", + "image_url": "http://4.bp.blogspot.com/_sBPAPP8w_cA/TLgdFYjm7FI/AAAAAAAAAtU/blx-d1WJmMQ/s1600/yung%20berg.jpg" + }, + { + "name": "Yung Joc", + "image_url": "http://www.judiciaryreport.com/images_4/yung-joc-5-12-15-3.jpg" + }, + { + "name": "Yung L.A.", + "image_url": "http://2.bp.blogspot.com/_WcsRR3fKzyU/TPZx4zZP_9I/AAAAAAAAAXY/z7SrxMG6ehs/s1600/yung_la_1.jpg" + }, + { + "name": "Yung Lean", + "image_url": "http://content.acclaimmag.com/content/uploads/2016/04/yung-lean3-600x400.jpg" + }, + { + "name": "Yung Ro", + "image_url": "http://c3.cduniverse.ws/resized/250x500/music/135/7350135.jpg" + }, + { + "name": "Yung Wun", + "image_url": "http://independentmusicpromotions.com/wp-content/uploads/2011/12/16279_Yung-Wun-pr04.jpg" + }, + { + "name": "Yung6ix", + "image_url": "https://mojidelano.com/wp-content/uploads/2017/03/Yung6ix-1.jpg" + }, + { + "name": "YZ", + "image_url": "http://www.cocaineblunts.com/blunts/wp-content/uploads/2009/06/yz.jpg" + }, + { + "name": "Z-Ro", + "image_url": "http://hiphop-n-more.com/wp-content/uploads/2013/04/z-ro-4.jpg" + }, + { + "name": "Zack de la Rocha", + "image_url": "http://favimages.com/wp-content/uploads/2012/08/rapper-zack-de-la-rocha-singer-rap-photoshoot-young.jpg" + }, + { + "name": "Zaytoven", + "image_url": "https://s3.amazonaws.com/hiphopdx-production/2016/03/Zaytoven-Bankroll-Fresh-e1457227555254-824x620.png" + }, + { + "name": "Zebra Katz", + "image_url": "http://thencrowd14.com/wp-content/uploads/2016/11/04-371x500.jpg" + }, + { + "name": "Zelooperz", + "image_url": "https://i-d-images.vice.com/images/articles/meta/2016/01/26/untitled-article-1453817283.jpg" + }, + { + "name": "Zico", + "image_url": "https://i.pinimg.com/736x/05/4a/2e/054a2eb016aa2d165fb3d933c0b47207.jpg" + } +] \ No newline at end of file diff --git a/pysite/migrations/tables/wiki/__init__.py b/pysite/migrations/tables/wiki/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pysite/migrations/tables/wiki/v1.py b/pysite/migrations/tables/wiki/v1.py new file mode 100644 index 00000000..a5282f28 --- /dev/null +++ b/pysite/migrations/tables/wiki/v1.py @@ -0,0 +1,7 @@ +def run(db, table, table_obj): + for document in db.pluck(table, table_obj.primary_key, "title"): + if not document.get("title"): + document["title"] = "No Title" + + db.insert(table, document, conflict="update", durability="soft") + db.sync(table) diff --git a/pysite/route_manager.py b/pysite/route_manager.py index 429a553e..f99a4736 100644 --- a/pysite/route_manager.py +++ b/pysite/route_manager.py @@ -6,11 +6,12 @@ import os from flask import Blueprint, Flask, _request_ctx_stack from flask_dance.contrib.discord import make_discord_blueprint from flask_sockets import Sockets +from gunicorn_config import when_ready from pysite.base_route import APIView, BaseView, ErrorView, RouteView from pysite.constants import ( - CSRF, DISCORD_OAUTH_AUTHORIZED, DISCORD_OAUTH_ID, DISCORD_OAUTH_REDIRECT, DISCORD_OAUTH_SCOPE, - DISCORD_OAUTH_SECRET, PREFERRED_URL_SCHEME) + CSRF, DEBUG_MODE, DISCORD_OAUTH_AUTHORIZED, DISCORD_OAUTH_ID, DISCORD_OAUTH_REDIRECT, + DISCORD_OAUTH_SCOPE, DISCORD_OAUTH_SECRET, PREFERRED_URL_SCHEME) from pysite.database import RethinkDB from pysite.oauth import OauthBackend from pysite.websockets import WS @@ -40,6 +41,10 @@ class RouteManager: # to edit self.app.config["WTF_CSRF_TIME_LIMIT"] = None + if DEBUG_MODE: + # Migrate the database, as we would in prod + when_ready(output_func=self.db.log.info) + self.app.before_request(self.db.before_request) self.app.teardown_request(self.db.teardown_request) diff --git a/pysite/tables.py b/pysite/tables.py new file mode 100644 index 00000000..4d9142fa --- /dev/null +++ b/pysite/tables.py @@ -0,0 +1,89 @@ +from typing import List, NamedTuple + + +class Table(NamedTuple): + primary_key: str + keys: List[str] + locked: bool = True + + +TABLES = { + "hiphopify": Table( # Users in hiphop prison + primary_key="user_id", + keys=sorted([ + "user_id", + "end_timestamp", + "forced_nick" + ]) + ), + + "hiphopify_namelist": Table( # Names and images of hiphop artists + primary_key="name", + keys=sorted([ + "name", + "image_url" + ]), + locked=False + ), + + "oauth_data": Table( # OAuth login information + primary_key="id", + keys=sorted([ + "id", + "access_token", + "expires_at", + "refresh_token", + "snowflake" + ]) + ), + + "tags": Table( # Tag names and values + primary_key="tag_name", + keys=sorted([ + "tag_name", + "tag_content" + ]), + locked=False + ), + + "users": Table( # Users from the Discord server + primary_key="user_id", + keys=sorted([ + "user_id", + "roles", + "username", + "discriminator", + "email" + ]) + ), + + "wiki": Table( # Wiki articles + primary_key="slug", + keys=sorted([ + "slug", + "headers", + "html", + "rst", + "text", + "title" + ]) + ), + + "wiki_revisions": Table( # Revisions of wiki articles + primary_key="id", keys=sorted([ + "id", + "date", + "post", + "slug", + "user" + ]) + ), + + "_versions": Table( # Table migration versions + primary_key="table", + keys=sorted([ + "table", + "version" + ]) + ) +} diff --git a/pysite/views/staff/index.py b/pysite/views/staff/index.py index 11447f87..fc05f1a7 100644 --- a/pysite/views/staff/index.py +++ b/pysite/views/staff/index.py @@ -3,14 +3,29 @@ from pprint import pformat from flask import current_app from pysite.base_route import RouteView -from pysite.constants import ALL_STAFF_ROLES +from pysite.constants import ALL_STAFF_ROLES, DEBUG_MODE, TABLE_MANAGER_ROLES from pysite.decorators import require_roles class StaffView(RouteView): path = "/" - name = "index" + name = "staff_index" @require_roles(*ALL_STAFF_ROLES) def get(self): - return self.render("staff/staff.html", app_config=pformat(current_app.config, indent=4, width=120)) + return self.render( + "staff/staff.html", manager=self.is_table_editor(), + app_config=pformat(current_app.config, indent=4, width=120) + ) + + def is_table_editor(self): + if DEBUG_MODE: + return True + + data = self.user_data + + for role in TABLE_MANAGER_ROLES: + if role in data.get("roles", []): + return True + + return False diff --git a/pysite/views/staff/tables/__init__.py b/pysite/views/staff/tables/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/pysite/views/staff/tables/edit.py b/pysite/views/staff/tables/edit.py new file mode 100644 index 00000000..b70bc20e --- /dev/null +++ b/pysite/views/staff/tables/edit.py @@ -0,0 +1,110 @@ +import json + +from flask import redirect, request, url_for +from werkzeug.exceptions import BadRequest, NotFound + +from pysite.base_route import RouteView +from pysite.constants import TABLE_MANAGER_ROLES +from pysite.decorators import csrf, require_roles +from pysite.mixins import DBMixin +from pysite.tables import TABLES + + +class TableEditView(RouteView, DBMixin): + path = "/tables//edit" + name = "tables.edit" + + @require_roles(*TABLE_MANAGER_ROLES) + def get(self, table): + obj = TABLES.get(table) + + if not obj: + # Unknown table + raise NotFound() + + if obj.locked: + return redirect(url_for("staff.tables.table", table=table, page=1), code=303) + + key = request.args.get("key") + + old_primary = None + + if key: + db_obj = self.db.get(table, key) + old_primary = key # Provide the current document's primary key, in case it's modified + + document = json.dumps( # Editor uses JSON + db_obj, + indent=4 + ) + else: + document = json.dumps( # Generate default document from key schema + {k: "" for k in obj.keys}, + indent=4 + ) + + return self.render( + "staff/tables/edit.html", table=table, primary_key=obj.primary_key, + document=document, old_primary=old_primary + ) + + @require_roles(*TABLE_MANAGER_ROLES) + @csrf + def post(self, table): + obj = TABLES.get(TABLES) + + if not obj: + # Unknown table + raise NotFound() + + if obj.locked: + raise BadRequest() + + data = request.form.get("json") + old_primary = request.form.get("old_primary") + + if not data: + # No data given (for some reason) + document = json.dumps( + {k: "" for k in obj.keys}, + indent=4 + ) + + return self.render( + "staff/tables/edit.html", table=table, primary_key=obj.primary_key, document=document, + message="Please provide some data to save", old_primary=old_primary + ) + + try: + data = json.loads(data) + except json.JSONDecodeError as e: + # Invalid JSON + return self.render( + "staff/tables/edit.html", table=table, primary_key=obj.primary_key, document=data, + message=f"Invalid JSON, please try again: {e}", old_primary=old_primary + ) + + if not data[obj.primary_key]: + # No primary key value provided + return self.render( + "staff/tables/edit.html", table=table, primary_key=obj.primary_key, document=data, + message=f"Please provide a value for the primary key: {obj.primary_key}", old_primary=old_primary + ) + + if old_primary is None: + self.db.insert( # This is a new object, so just insert it + table, data + ) + elif old_primary == data[obj.primary_key]: + self.db.insert( # This is an update without a primary key change, replace the whole document + table, data, conflict="replace" + ) + else: + self.db.delete( # This is a primary key change, so we need to remove the old object + table, old_primary + ) + self.db.insert( + table, data, + ) + + return redirect(url_for("staff.tables.table", table=table, page=1), code=303) diff --git a/pysite/views/staff/tables/index.py b/pysite/views/staff/tables/index.py new file mode 100644 index 00000000..0d84aeb4 --- /dev/null +++ b/pysite/views/staff/tables/index.py @@ -0,0 +1,13 @@ +from pysite.base_route import RouteView +from pysite.constants import TABLE_MANAGER_ROLES +from pysite.decorators import require_roles +from pysite.tables import TABLES + + +class TablesView(RouteView): + path = "/tables" + name = "tables.index" + + @require_roles(*TABLE_MANAGER_ROLES) + def get(self): + return self.render("staff/tables/index.html", tables=TABLES) diff --git a/pysite/views/staff/tables/table.py b/pysite/views/staff/tables/table.py new file mode 100644 index 00000000..f47d7793 --- /dev/null +++ b/pysite/views/staff/tables/table.py @@ -0,0 +1,63 @@ +from math import ceil + +from flask import request +from werkzeug.exceptions import BadRequest, NotFound + +from pysite.base_route import RouteView +from pysite.constants import TABLE_MANAGER_ROLES +from pysite.decorators import require_roles +from pysite.mixins import DBMixin +from pysite.tables import TABLES + + +class TableView(RouteView, DBMixin): + path = "/tables/
/" + name = "tables.table" + + @require_roles(*TABLE_MANAGER_ROLES) + def get(self, table, page): + search = request.args.get("search") + search_key = request.args.get("search-key") + + pages = page + obj = TABLES.get(table) + + if not obj: + return NotFound() + + if search: + new_search = f"(?i){search}" # Case-insensitive search + search_key = search_key or obj.primary_key + + query = self.db.query(table).filter(lambda d: d[search_key].match(new_search)) + else: + query = self.db.query(table) + + if page != "all": + try: + page = int(page) + except ValueError: + # Not an integer + return BadRequest() + + count = self.db.run(query.count(), coerce=int) + pages = max(ceil(count / 10), 1) # Pages if we have 10 documents per page, always at least one + + if page < 1 or page > pages: + # If the page is too small or too big, well, that's an error + return BadRequest() + + documents = self.db.run( # Get only the documents for this page + query.skip((page - 1) * 10).limit(10), + coerce=list + ) + else: + documents = self.db.run(query, coerce=list) + + documents = [dict(sorted(d.items())) for d in documents] + + return self.render( + "staff/tables/table.html", + table=table, documents=documents, table_obj=obj, + page=page, pages=pages, search=search, search_key=search_key + ) diff --git a/pysite/views/staff/tables/table_bare.py b/pysite/views/staff/tables/table_bare.py new file mode 100644 index 00000000..abd6cb19 --- /dev/null +++ b/pysite/views/staff/tables/table_bare.py @@ -0,0 +1,30 @@ +from flask import redirect, request, url_for +from werkzeug.exceptions import NotFound + +from pysite.base_route import RouteView +from pysite.constants import TABLE_MANAGER_ROLES +from pysite.decorators import require_roles +from pysite.mixins import DBMixin +from pysite.tables import TABLES + + +class TableView(RouteView, DBMixin): + path = "/tables/
" + name = "tables.table_bare" + + @require_roles(*TABLE_MANAGER_ROLES) + def get(self, table): + if table not in TABLES: + raise NotFound() + + search = request.args.get("search") + + args = { + "table": table, + "page": 1 + } + + if search is not None: + args["search"] = search + + return redirect(url_for("staff.tables.table", **args)) diff --git a/pysite/views/wiki/special/__init__.py b/pysite/views/wiki/special/__init__.py index 9bad5790..e69de29b 100644 --- a/pysite/views/wiki/special/__init__.py +++ b/pysite/views/wiki/special/__init__.py @@ -1 +0,0 @@ -# coding=utf-8 diff --git a/static/style.css b/static/style.css index f99fd256..2b9b329c 100644 --- a/static/style.css +++ b/static/style.css @@ -109,6 +109,16 @@ footer div.uk-section div.uk-text-center { background: rgba(0, 0, 0, 0.22); } +.uk-button-dark { + background: rgba(0, 0, 0, 0.95); + border: 1px solid rgba(34, 34, 34, 0.93); + color: white; +} + +.uk-button-dark:hover { + background: rgba(0, 0, 0, 0.70); +} + /* Flash of Unstyled Content fixes */ .prevent_fouc { display: none; @@ -161,4 +171,12 @@ div.quote { .uk-article-meta { margin-left: 2px; +} + +select { + position: relative !important; + top: auto !important; + left: auto !important; + -webkit-appearance: unset !important; + opacity: 1 !important; } \ No newline at end of file diff --git a/templates/staff/staff.html b/templates/staff/staff.html index 157bdf21..b22bfcec 100644 --- a/templates/staff/staff.html +++ b/templates/staff/staff.html @@ -3,12 +3,20 @@ {% block og_title %}Staff | Home{% endblock %} {% block og_description %}Landing page for the staff management area{% endblock %} {% block content %} -
-

- App config -

-
-{{ app_config | safe }}
-    
+
+

+ Management links +

+ {% if manager %} + Table Management + {% else %} +

Nothing for you yet, I'm afraid.

+ {% endif %} +

+ App config +

+
+    {{ app_config | safe }}
+        
{% endblock %} \ No newline at end of file diff --git a/templates/staff/tables/edit.html b/templates/staff/tables/edit.html new file mode 100644 index 00000000..7b027884 --- /dev/null +++ b/templates/staff/tables/edit.html @@ -0,0 +1,51 @@ +{% extends "main/base.html" %} +{% block title %}Staff | Home{% endblock %} +{% block og_title %}Staff | Home{% endblock %} +{% block og_description %}Landing page for the staff management area{% endblock %} +{% block extra_head %} + +{% endblock %} +{% block content %} +
+ {% if message %} +
+ {{ message }} +
+ {% endif %} +
+
+

Primary key: "{{ primary_key }}"

+
+
+   Back + +
+
+
{{ document }}
+ +
+ + + + {% if old_primary %} + + {% endif %} + + + +
+{% endblock %} diff --git a/templates/staff/tables/index.html b/templates/staff/tables/index.html new file mode 100644 index 00000000..079ed306 --- /dev/null +++ b/templates/staff/tables/index.html @@ -0,0 +1,32 @@ +{% extends "main/base.html" %} +{% block title %}Staff | Tables{% endblock %} +{% block og_title %}Staff | Tables{% endblock %} +{% block og_description %}Table management and editor{% endblock %} +{% block content %} +
+  Back +

+ Table manager +

+

+ Click one of the tables below to manage its data: +

+ +
+{% endblock %} \ No newline at end of file diff --git a/templates/staff/tables/table.html b/templates/staff/tables/table.html new file mode 100644 index 00000000..aa26818f --- /dev/null +++ b/templates/staff/tables/table.html @@ -0,0 +1,165 @@ +{% extends "main/base.html" %} +{% block title %}Staff | Home{% endblock %} +{% block og_title %}Staff | Home{% endblock %} +{% block og_description %}Landing page for the staff management area{% endblock %} +{% block content %} +
+  Back + + {% if page == "all" %} +  Page 1 + {% else %} +  All Data + {% endif %} + + {% if not table_obj.locked %} +  Add + {% endif %} + +

+ + {{ table }} + + {% if table_obj.locked %} + + {% endif %} + +

+ +
+
+ {% if search %} + + {% else %} + + {% endif %} + +
+ +
+ + + +
+ + + {% macro paginate() %} + {% if pages != "all" %} +
    + {% if page > 1 %} +
  • + {% else %} +
  • + {% endif %} + + {% if page == 1 %} +
  • 1
  • + {% else %} +
  • 1
  • + {% endif %} + + {% if page >= 5 %} +
  • ...
  • + {% endif %} + + {% set current_page = page - 2 %} + + {% for num in range(5) %} + {% if current_page + num > 1 and current_page + num < pages %} + {% if current_page + num == page %} +
  • {{ current_page + num }}
  • + {% else %} +
  • {{ current_page + num }}
  • + {% endif %} + {% endif %} + {% set current_page = current_page - 1 %} + {% endfor %} + + {% if pages - page > 3 %} +
  • ...
  • + {% endif %} + + {% if pages != 1 %} + {% if page == pages %} +
  • {{ pages }}
  • + {% else %} +
  • {{ pages }}
  • + {% endif %} + {% endif %} + + {% if page < pages %} +
  • + {% else %} +
  • + {% endif %} +
+ {% endif %} + {% endmacro %} + + {{ paginate() }} + +
+
+ {% if documents %} +
+ + + {% if not table_obj.locked %} + + {% endif %} + + {% for key in table_obj.keys %} + + {% endfor %} + + + + {% for doc in documents %} + + {% if not table_obj.locked %} + + {% endif %} + + {% for key in table_obj.keys %} + + {% endfor %} + + {% endfor %} + +
+ + + {% if key == table_obj.primary_key %} + {{ key }} + {% else %} + {{ key }} + {% endif %} +
+ + + + + {% if key == table_obj.primary_key %} + {{ doc[key] }} + {% else %} + {{ doc[key] }} + {% endif %} +
+ {% else %} +

No documents found

+ {% endif %} + + {{ paginate() }} + +{% endblock %} \ No newline at end of file -- cgit v1.2.3