├── tr4.py ├── .gitattributes ├── __pycache__ └── funkyFunctions.cpython-310.pyc ├── test2.py ├── README.md ├── test.py ├── LICENSE ├── main.py ├── csv ├── rap_hold.csv ├── raper_name.csv ├── rap.csv ├── rap_start.csv ├── country_names.csv └── rap_end.csv ├── funkyFunctions.py ├── countryJUP.ipynb └── rapJUP.ipynb /tr4.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /__pycache__/funkyFunctions.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TrippingLettuce/Statistical-Analysis-of-Music-Genres/main/__pycache__/funkyFunctions.cpython-310.pyc -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | import numpy as np 4 | from lyricsgenius import Genius 5 | from dotenv import load_dotenv 6 | 7 | 8 | import pandas as pd 9 | 10 | rap_df = pd.read_csv('/home/lettuce/MyCode/pandasproject/Rap-vs-Country-StatisticalStudy/final_rap.csv') 11 | 12 | index_list = rap_df.columns.tolist() 13 | 14 | my_dict = {key: 0 for key in index_list} 15 | 16 | print(my_dict) 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Statistical Anaylsis of Music Genres 2 | 3 | An anyalisis of lyrics in multiple music genres. This analisis is for understanding how music changes overtime and how it is different between genres. This analisis will also focus on Swears, Common Words, Lyrical Diversity, and Lyrical Themes. 4 | 5 | ### Genera Information 6 | Steps - Colletion, Organization, Anaylasys, and Presentation 7 | [✅,✅,✅,✅] 8 | 9 | [✅,✅] Rap/Hip Hop 10 | [✅,✅] Country 11 | [] Pop 12 | [] Rock 13 | [] Prog 14 | [] Metal 15 | [] Punk Rock 16 | [] Kpop 17 | 18 | -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | import pandas as pd 2 | import numpy as np 3 | 4 | 5 | rap_df = pd.read_csv('/home/lettuce/MyCode/pandasproject/Rap-vs-Country-StatisticalStudy/raper_name copy.csv') 6 | 7 | input_string = rap_df["Lyrics"][2] 8 | 9 | print(input_string) 10 | 11 | import re 12 | 13 | def process_string(input_string): 14 | # Remove all occurrences of a standalone backslash 15 | input_string = re.sub(r'\\(?![n])', '', input_string) 16 | 17 | # Replace all occurrences of \n with a single space 18 | input_string = re.sub(r'\\n', ' ', input_string) 19 | 20 | # Remove specified characters: ',', ''', '(', ')', '?', '"', ':', '-', '!' 21 | input_string = re.sub(r"[,'\(\)\?\":\-!]", '', input_string) 22 | 23 | return input_string 24 | 25 | 26 | 27 | output_string = process_string(input_string) 28 | print(output_string) 29 | 30 | 31 | rap_df["Lyrics"][0] = output_string 32 | 33 | rap_df.to_csv('/home/lettuce/MyCode/pandasproject/Rap-vs-Country-StatisticalStudy/raper_name copy.csv',index=False) -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Caleb Klinger 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | import numpy as np 4 | from lyricsgenius import Genius 5 | from dotenv import load_dotenv 6 | import funkyFunctions 7 | 8 | load_dotenv() # Load environment variables from the .env file 9 | 10 | genius_key = os.getenv('GENUIS_KEY') 11 | genius = Genius(genius_key,timeout=15) 12 | genius.verbose = False 13 | genius.remove_section_headers = True 14 | genius.excluded_terms = ["(Remix)", "(Live)"] 15 | 16 | #Define Dataframes 17 | csv_start = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_start.csv') 18 | 19 | 20 | 21 | #Get data 22 | funkyFunctions.getData(csv_start) 23 | #Clean Data 24 | csv_mid = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_mid1.csv') 25 | funkyFunctions.cleanData(csv_mid) 26 | #Organize Data 27 | csv_mid = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_mid2.csv') 28 | funkyFunctions.organizeDataTotal(csv_mid) 29 | #Orgaize Data Artist 30 | csv_final = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_end.csv') 31 | funkyFunctions.organizeDataArtist(csv_mid, csv_final) 32 | 33 | #Anaylize Data 34 | 35 | 36 | #Eras of rap 37 | 38 | 39 | # Take 50 top hip hop and 50 top rap combo 40 | 41 | #TOp 100 country 42 | 43 | #raper_df = pd.read_csv('/home/lettuce/MyCode/pandasproject/raper_name.csv') 44 | 45 | #print(raper_df.head().to_string()) -------------------------------------------------------------------------------- /csv/rap_hold.csv: -------------------------------------------------------------------------------- 1 | Rap Name,Era 2 | The Notorious B.I.G.,1990s 3 | Tupac,1990s 4 | Eminem,2000s 5 | Kendrick Lamar,2010s 6 | Nas,1990s 7 | Dr. Dre,1990s 8 | Ice Cube,1990s 9 | Snoop Dogg,1990s 10 | JAY-Z,2000s 11 | Kanye West,2010s 12 | J. Cole,2010s 13 | Lil Wayne,2000s 14 | André 3000,2000s 15 | 50 Cent,2000s 16 | Eazy-E,1980s 17 | Drake,2010s 18 | DMX,1990s 19 | A$AP Rocky,2010s 20 | MF Doom,2000s 21 | Childish Gambino,2010s 22 | Kid Cudi,2010s 23 | "Tyler, the Creator",2020s 24 | Busta Rhymes,2000s 25 | Travis Scott,2010s 26 | XXXTentacion,2010s 27 | Ghostface Killah,1990s 28 | Chance the Rapper,2010s 29 | Juice Wrld,2010s 30 | Logic,2010s 31 | Nate Dogg,2000s 32 | Wiz Khalifa,2010s 33 | Future,2010s 34 | Joey Bada$$,2010s 35 | Method Man,1990s 36 | Mac Miller,2010s 37 | Big Sean,2010s 38 | Lil Uzi Vert,2010s 39 | The Game,2000s 40 | 21 Savage,2010s 41 | Tech N9ne,2000s 42 | Meek Mill,2010s 43 | Joyner Lucas,2010s 44 | Schoolboy Q,2010s 45 | 2 Chainz,2010s 46 | Nelly,2000s 47 | Gucci Mane,2010s 48 | Rakim,1990s 49 | Ski Mask The Slump God,2010s 50 | Ludacris,2000s 51 | Chief Keef,2010s 52 | Ice-T,1980s 53 | T.I.,2000s 54 | Missy Elliott,1990s 55 | Warren G,1990s 56 | Redman,1990s 57 | LL Cool J,1980s 58 | DMC,1980s 59 | A$AP Ferg,2010s 60 | Big L,1990s 61 | Ol' Dirty Bastard,1990s 62 | RZA,1990s 63 | Rick Ross,2000s 64 | Twista,1990s 65 | Big Pun,1990s 66 | Raekwon,1990s 67 | J.I.D,2020s 68 | Xzibit,2000s 69 | Scarface,1990s 70 | Lil Dicky,2010s 71 | Will Smith,1990s 72 | Mos Def,2000s 73 | Hopsin,2010s 74 | Big Boi,2000s 75 | G-Eazy,2010s 76 | Slick Rick,1980s 77 | GZA,1990s 78 | Q-Tip,1990s 79 | Prodigy,2000s 80 | Post Malone,2020s 81 | Young Thug,2010s 82 | NF,2010s 83 | Lil Baby,2020s 84 | T-Pain,2000s 85 | Coolio,1990s 86 | Polo G,2020s 87 | MC Ren,1980s 88 | Lupe Fiasco,2000s 89 | Quavo,2020s 90 | Common,2000s 91 | E-40,1990s 92 | Fat Joe,1990s 93 | Roddy Ricch,2020s 94 | DaBaby,2020s 95 | YG,2010s 96 | Grandmaster Flash,1980s 97 | KRS-One,1980s 98 | Big Daddy Kane,1980s 99 | Pharrell Williams,2000s 100 | Juicy J,2000s 101 | Kurupt,2000s 102 | Vince Staples,2010s 103 | Nicki Minaj,2010s 104 | A Boogie wit da Hoodie,2020s 105 | Playboi Carti,2020s 106 | NLE Choppa,2020s 107 | N.W.A,1980s 108 | Public Enemy,1980s 109 | Kurtis Blow,1980s 110 | De La Soul,1980s 111 | Chuck D,1980s 112 | Doja Cat,2020s 113 | Jack Harlow,2020s 114 | lil nas x,2020s 115 | lil Durk,2020s 116 | Baby Keem,2020s 117 | JPEGMAFIA,2020s 118 | Death Grips,2020s 119 | BROCKHAMPTON,2020s 120 | JID,2020s 121 | Denzel Curry,2020s 122 | Isaiah Rashad,2010s 123 | -------------------------------------------------------------------------------- /csv/raper_name.csv: -------------------------------------------------------------------------------- 1 | Rap Name,Rap Like,Era 2 | The Notorious B.I.G.,"251,394 votes" 3 | Tupac,"301,383 votes" 4 | Eminem,"371,057 votes" 5 | Kendrick Lamar,"233,050 votes" 6 | Nas,"203,041 votes" 7 | Dr. Dre,"180,231 votes" 8 | Ice Cube,"183,978 votes" 9 | Snoop Dogg,"188,011 votes" 10 | JAY-Z,"192,703 votes" 11 | Kanye West,"185,337 votes" 12 | J. Cole,"157,354 votes" 13 | Lil Wayne,"147,237 votes" 14 | André 3000,"131,906 votes" 15 | 50 Cent,"142,501 votes" 16 | Eazy-E,"132,893 votes" 17 | Drake,"127,401 votes" 18 | DMX,"100,512 votes" 19 | A$AP Rocky,"84,652 votes" 20 | MF Doom,"33,159 votes" 21 | Childish Gambino,"74,899 votes" 22 | Kid Cudi,"69,130 votes" 23 | "Tyler, the Creator","59,669 votes" 24 | Busta Rhymes,"88,234 votes" 25 | Travis Scott,"69,257 votes" 26 | XXXTentacion,"80,923 votes" 27 | Ghostface Killah,"63,278 votes" 28 | Chance the Rapper,"75,684 votes" 29 | Juice Wrld,"30,639 votes" 30 | Logic,"87,101 votes" 31 | Nate Dogg,"57,050 votes" 32 | Wiz Khalifa,"64,243 votes" 33 | Future,"34,645 votes" 34 | Joey Bada$$,"42,994 votes" 35 | Method Man,"76,763 votes" 36 | Mac Miller,"37,206 votes" 37 | Big Sean,"19,873 votes" 38 | Lil Uzi Vert,"58,246 votes" 39 | The Game,"39,177 votes" 40 | 21 Savage,"54,845 votes" 41 | Tech N9ne,"29,482 votes" 42 | Meek Mill,"34,749 votes" 43 | Joyner Lucas,"53,900 votes" 44 | Schoolboy Q,"31,068 votes" 45 | 2 Chainz,"35,231 votes" 46 | Nelly,"36,182 votes" 47 | Gucci Mane,"36,827 votes" 48 | Rakim,"36,118 votes" 49 | Ski Mask The Slump God,"31,621 votes" 50 | Ludacris,"23,696 votes" 51 | Chief Keef,"103,419 votes" 52 | Ice-T,"15,376 votes" 53 | T.I.,"74,335 votes" 54 | Missy Elliott,"16,643 votes" 55 | Warren G,"31,727 votes" 56 | Redman,"61,503 votes" 57 | LL Cool J,"29,907 votes" 58 | DMC,"26,553 votes" 59 | A$AP Ferg,"43,802 votes" 60 | Big L,"61,009 votes" 61 | Ol' Dirty Bastard,"20,742 votes" 62 | RZA,"21,515 votes" 63 | Rick Ross,"51,444 votes" 64 | Twista,"34,152 votes" 65 | Big Pun,"28,002 votes" 66 | Raekwon,"24,683 votes" 67 | J.I.D,"23,725 votes" 68 | Xzibit,"44,070 votes" 69 | Scarface,"33,305 votes" 70 | Lil Dicky,"5,383 votes" 71 | Will Smith,"26,314 votes" 72 | Mos Def,"34,456 votes" 73 | Hopsin,"27,285 votes" 74 | Big Boi,"32,577 votes" 75 | G-Eazy,"61,228 votes" 76 | Slick Rick,"29,938 votes" 77 | GZA,"22,168 votes" 78 | Q-Tip,"23,304 votes" 79 | Prodigy,"35,486 votes" 80 | Post Malone,"26,074 votes" 81 | Young Thug,"24,176 votes" 82 | NF,"17,992 votes" 83 | Lil Baby,"13,537 votes" 84 | T-Pain,"15,293 votes" 85 | Coolio,"14,119 votes" 86 | Polo G,"9,695 votes" 87 | MC Ren,"9,646 votes" 88 | Lupe Fiasco,"17,836 votes" 89 | Quavo,"9,582 votes" 90 | Common,"17,586 votes" 91 | E-40,"31,916 votes" 92 | Fat Joe,"19,617 votes" 93 | Roddy Ricch,"47,404 votes" 94 | DaBaby,"20,355 votes" 95 | YG,"14,664 votes" 96 | Grandmaster Flash,"7,459 votes" 97 | KRS-One,"10,139 votes" 98 | Big Daddy Kane,"16,006 votes" 99 | Pharrell Williams,"15,556 votes" 100 | Juicy J,"50,620 votes" 101 | Kurupt,"28,500 votes" 102 | Vince Staples,"16,261 votes" 103 | Afroman,"15,148 votes" 104 | MC Hammer,"15,893 votes" 105 | Nicki Minaj,"19,098 votes" 106 | A Boogie wit da Hoodie,"10,280 votes" 107 | B.o.B,"8,552 votes" 108 | Jeezy,"11,346 votes" 109 | Playboi Carti,"4,784 votes" 110 | Lil Tjay,"20,176 votes" 111 | Flo Rida,"13,279 votes" 112 | NLE Choppa,"5,818 votes" 113 | Queen Latifah,"4,591 votes" 114 | Fetty Wap,"4,336 votes" 115 | Puff Daddy,"9,535 votes" 116 | Waka Flocka Flame,"13,399 votes" 117 | -------------------------------------------------------------------------------- /csv/rap.csv: -------------------------------------------------------------------------------- 1 | Rap Name,Rap Like,Era 2 | The Notorious B.I.G.,"251,394 votes" 3 | Tupac,"301,383 votes" 4 | Eminem,"371,057 votes" 5 | Kendrick Lamar,"233,050 votes" 6 | Nas,"203,041 votes" 7 | Dr. Dre,"180,231 votes" 8 | Ice Cube,"183,978 votes" 9 | Snoop Dogg,"188,011 votes" 10 | JAY-Z,"192,703 votes" 11 | Kanye West,"185,337 votes" 12 | J. Cole,"157,354 votes" 13 | Lil Wayne,"147,237 votes" 14 | André 3000,"131,906 votes" 15 | 50 Cent,"142,501 votes" 16 | Eazy-E,"132,893 votes" 17 | Drake,"127,401 votes" 18 | DMX,"100,512 votes" 19 | A$AP Rocky,"84,652 votes" 20 | MF Doom,"33,159 votes" 21 | Childish Gambino,"74,899 votes" 22 | Kid Cudi,"69,130 votes" 23 | "Tyler, the Creator","59,669 votes" 24 | Busta Rhymes,"88,234 votes" 25 | Travis Scott,"69,257 votes" 26 | XXXTentacion,"80,923 votes" 27 | Ghostface Killah,"63,278 votes" 28 | Chance the Rapper,"75,684 votes" 29 | Juice Wrld,"30,639 votes" 30 | Logic,"87,101 votes" 31 | Nate Dogg,"57,050 votes" 32 | Wiz Khalifa,"64,243 votes" 33 | Future,"34,645 votes" 34 | Joey Bada$$,"42,994 votes" 35 | Method Man,"76,763 votes" 36 | Mac Miller,"37,206 votes" 37 | Big Sean,"19,873 votes" 38 | Lil Uzi Vert,"58,246 votes" 39 | The Game,"39,177 votes" 40 | 21 Savage,"54,845 votes" 41 | Tech N9ne,"29,482 votes" 42 | Meek Mill,"34,749 votes" 43 | Joyner Lucas,"53,900 votes" 44 | Schoolboy Q,"31,068 votes" 45 | 2 Chainz,"35,231 votes" 46 | Nelly,"36,182 votes" 47 | Gucci Mane,"36,827 votes" 48 | Rakim,"36,118 votes" 49 | Ski Mask The Slump God,"31,621 votes" 50 | Ludacris,"23,696 votes" 51 | Chief Keef,"103,419 votes" 52 | Ice-T,"15,376 votes" 53 | T.I.,"74,335 votes" 54 | Missy Elliott,"16,643 votes" 55 | Warren G,"31,727 votes" 56 | Redman,"61,503 votes" 57 | LL Cool J,"29,907 votes" 58 | DMC,"26,553 votes" 59 | A$AP Ferg,"43,802 votes" 60 | Big L,"61,009 votes" 61 | Ol' Dirty Bastard,"20,742 votes" 62 | RZA,"21,515 votes" 63 | Rick Ross,"51,444 votes" 64 | Twista,"34,152 votes" 65 | Big Pun,"28,002 votes" 66 | Raekwon,"24,683 votes" 67 | J.I.D,"23,725 votes" 68 | Xzibit,"44,070 votes" 69 | Scarface,"33,305 votes" 70 | Lil Dicky,"5,383 votes" 71 | Will Smith,"26,314 votes" 72 | Mos Def,"34,456 votes" 73 | Hopsin,"27,285 votes" 74 | Big Boi,"32,577 votes" 75 | G-Eazy,"61,228 votes" 76 | Slick Rick,"29,938 votes" 77 | GZA,"22,168 votes" 78 | Q-Tip,"23,304 votes" 79 | Prodigy,"35,486 votes" 80 | Post Malone,"26,074 votes" 81 | Young Thug,"24,176 votes" 82 | NF,"17,992 votes" 83 | Lil Baby,"13,537 votes" 84 | T-Pain,"15,293 votes" 85 | Coolio,"14,119 votes" 86 | Polo G,"9,695 votes" 87 | MC Ren,"9,646 votes" 88 | Lupe Fiasco,"17,836 votes" 89 | Quavo,"9,582 votes" 90 | Common,"17,586 votes" 91 | E-40,"31,916 votes" 92 | Fat Joe,"19,617 votes" 93 | Roddy Ricch,"47,404 votes" 94 | DaBaby,"20,355 votes" 95 | YG,"14,664 votes" 96 | Grandmaster Flash,"7,459 votes" 97 | KRS-One,"10,139 votes" 98 | Big Daddy Kane,"16,006 votes" 99 | Pharrell Williams,"15,556 votes" 100 | Juicy J,"50,620 votes" 101 | Kurupt,"28,500 votes" 102 | Vince Staples,"16,261 votes" 103 | Nicki Minaj,"19,098 votes" 104 | A Boogie wit da Hoodie,"10,280 votes" 105 | Playboi Carti,"4,784 votes" 106 | NLE Choppa,"5,818 votes" 107 | N.W.A,"" 108 | Public Enemy,"" 109 | Kurtis Blow, "" 110 | De La Soul, "" 111 | Chuck D, "" 112 | Doja Cat, "" 113 | Jack Harlow, "" 114 | lil nas x, "" 115 | lil Durk, "" 116 | Baby Keem, "" 117 | JPEGMAFIA, "" 118 | Death Grips, "" 119 | BROCKHAMPTON, "" 120 | JID,"" 121 | Denzel Curry, "" 122 | Isaiah Rashad, "" 123 | -------------------------------------------------------------------------------- /csv/rap_start.csv: -------------------------------------------------------------------------------- 1 | Rap Name,Rap Like 2 | The Notorious B.I.G.,"251,394 votes" 3 | Tupac,"301,383 votes" 4 | Eminem,"371,057 votes" 5 | Kendrick Lamar,"233,050 votes" 6 | Nas,"203,041 votes" 7 | Dr. Dre,"180,231 votes" 8 | Ice Cube,"183,978 votes" 9 | Snoop Dogg,"188,011 votes" 10 | JAY-Z,"192,703 votes" 11 | Kanye West,"185,337 votes" 12 | J. Cole,"157,354 votes" 13 | Lil Wayne,"147,237 votes" 14 | André 3000,"131,906 votes" 15 | 50 Cent,"142,501 votes" 16 | Eazy-E,"132,893 votes" 17 | Drake,"127,401 votes" 18 | DMX,"100,512 votes" 19 | A$AP Rocky,"84,652 votes" 20 | MF Doom,"33,159 votes" 21 | Childish Gambino,"74,899 votes" 22 | Kid Cudi,"69,130 votes" 23 | "Tyler, the Creator","59,669 votes" 24 | Busta Rhymes,"88,234 votes" 25 | Travis Scott,"69,257 votes" 26 | XXXTentacion,"80,923 votes" 27 | Ghostface Killah,"63,278 votes" 28 | Chance the Rapper,"75,684 votes" 29 | Juice Wrld,"30,639 votes" 30 | Logic,"87,101 votes" 31 | Nate Dogg,"57,050 votes" 32 | Wiz Khalifa,"64,243 votes" 33 | Future,"34,645 votes" 34 | Joey Bada$$,"42,994 votes" 35 | Method Man,"76,763 votes" 36 | Mac Miller,"37,206 votes" 37 | Big Sean,"19,873 votes" 38 | Lil Uzi Vert,"58,246 votes" 39 | The Game,"39,177 votes" 40 | 21 Savage,"54,845 votes" 41 | Tech N9ne,"29,482 votes" 42 | Meek Mill,"34,749 votes" 43 | Joyner Lucas,"53,900 votes" 44 | Schoolboy Q,"31,068 votes" 45 | 2 Chainz,"35,231 votes" 46 | Nelly,"36,182 votes" 47 | Gucci Mane,"36,827 votes" 48 | Rakim,"36,118 votes" 49 | Ski Mask The Slump God,"31,621 votes" 50 | Ludacris,"23,696 votes" 51 | Chief Keef,"103,419 votes" 52 | Ice-T,"15,376 votes" 53 | T.I.,"74,335 votes" 54 | Missy Elliott,"16,643 votes" 55 | Warren G,"31,727 votes" 56 | Redman,"61,503 votes" 57 | LL Cool J,"29,907 votes" 58 | DMC,"26,553 votes" 59 | A$AP Ferg,"43,802 votes" 60 | Big L,"61,009 votes" 61 | Ol' Dirty Bastard,"20,742 votes" 62 | RZA,"21,515 votes" 63 | Rick Ross,"51,444 votes" 64 | Twista,"34,152 votes" 65 | Big Pun,"28,002 votes" 66 | Raekwon,"24,683 votes" 67 | J.I.D,"23,725 votes" 68 | Xzibit,"44,070 votes" 69 | Scarface,"33,305 votes" 70 | Lil Dicky,"5,383 votes" 71 | Will Smith,"26,314 votes" 72 | Mos Def,"34,456 votes" 73 | Hopsin,"27,285 votes" 74 | Big Boi,"32,577 votes" 75 | G-Eazy,"61,228 votes" 76 | Slick Rick,"29,938 votes" 77 | GZA,"22,168 votes" 78 | Q-Tip,"23,304 votes" 79 | Prodigy,"35,486 votes" 80 | Post Malone,"26,074 votes" 81 | Young Thug,"24,176 votes" 82 | NF,"17,992 votes" 83 | Lil Baby,"13,537 votes" 84 | T-Pain,"15,293 votes" 85 | Coolio,"14,119 votes" 86 | Polo G,"9,695 votes" 87 | MC Ren,"9,646 votes" 88 | Lupe Fiasco,"17,836 votes" 89 | Quavo,"9,582 votes" 90 | Common,"17,586 votes" 91 | E-40,"31,916 votes" 92 | Fat Joe,"19,617 votes" 93 | Roddy Ricch,"47,404 votes" 94 | DaBaby,"20,355 votes" 95 | YG,"14,664 votes" 96 | Grandmaster Flash,"7,459 votes" 97 | KRS-One,"10,139 votes" 98 | Big Daddy Kane,"16,006 votes" 99 | Pharrell Williams,"15,556 votes" 100 | Juicy J,"50,620 votes" 101 | Kurupt,"28,500 votes" 102 | Too $hort,"13,216 votes" 103 | Jadakiss,"9,794 votes" 104 | Vince Staples,"16,261 votes" 105 | Afroman,"15,148 votes" 106 | MC Hammer,"15,893 votes" 107 | Fabolous,"10,455 votes" 108 | Nicki Minaj,"19,098 votes" 109 | A Boogie wit da Hoodie,"10,280 votes" 110 | B.o.B,"8,552 votes" 111 | Jeezy,"11,346 votes" 112 | Wyclef Jean,"13,486 votes" 113 | Anderson .Paak,"49,777 votes" 114 | Playboi Carti,"4,784 votes" 115 | Lil Tjay,"20,176 votes" 116 | Flo Rida,"13,279 votes" 117 | NLE Choppa,"5,818 votes" 118 | Obie Trice,"3,107 votes" 119 | TI big Silly potato head,"3,498 votes" 120 | Queen Latifah,"4,591 votes" 121 | Biz Markie,"7,730 votes" 122 | Fetty Wap,"4,336 votes" 123 | Puff Daddy,"9,535 votes" 124 | Waka Flocka Flame,"13,399 votes" 125 | Master P,"10,675 votes" -------------------------------------------------------------------------------- /csv/country_names.csv: -------------------------------------------------------------------------------- 1 | Country Name,Country Like 2 | Johnny Cash,"4,997 votes" 3 | Hank Williams,"3,721 votes" 4 | George Strait,"4,732 votes" 5 | Merle Haggard,"3,498 votes" 6 | Alan Jackson,"3,606 votes" 7 | Waylon Jennings,"3,361 votes" 8 | George Jones,"3,253 votes" 9 | Willie Nelson,"3,728 votes" 10 | Conway Twitty,"2,392 votes" 11 | Randy Travis,"2,324 votes" 12 | Dolly Parton,"3,086 votes" 13 | Patsy Cline,"2,603 votes" 14 | "Hank Williams, Jr.","2,733 votes" 15 | Brooks & Dunn,"2,313 votes" 16 | Reba McEntire,"2,129 votes" 17 | Loretta Lynn,"2,252 votes" 18 | Alabama,"2,786 votes" 19 | Garth Brooks,"3,545 votes" 20 | Charlie Daniels,"1,058 votes" 21 | Toby Keith,"2,029 votes" 22 | Kenny Rogers,"2,201 votes" 23 | Chris Stapleton,"1,876 votes" 24 | John Denver,"1,284 votes" 25 | Dwight Yoakam,"1,894 votes" 26 | Travis Tritt,"1,751 votes" 27 | Carrie Underwood,"1,389 votes" 28 | Kenny Chesney,"1,780 votes" 29 | Tim McGraw,"1,745 votes" 30 | The Charlie Daniels Band,"2,327 votes" 31 | Brad Paisley,"1,509 votes" 32 | Shania Twain,"2,039 votes" 33 | Emmylou Harris,"2,090 votes" 34 | Roy Orbison,491 votes 35 | Tammy Wynette,617 votes 36 | Lynyrd Skynyrd,"1,596 votes" 37 | Buck Owens,606 votes 38 | Keith Whitley,"1,386 votes" 39 | Don Williams,"1,248 votes" 40 | Vince Gill,"1,531 votes" 41 | Glen Campbell,"1,617 votes" 42 | Eric Church,"1,633 votes" 43 | Kris Kristofferson,"1,087 votes" 44 | The Oak Ridge Boys,"1,458 votes" 45 | Zac Brown Band,"1,208 votes" 46 | Nitty Gritty Dirt Band,"1,342 votes" 47 | John Anderson,864 votes 48 | Alison Krauss,847 votes 49 | John Michael Montgomery,"1,383 votes" 50 | Luke Combs,"1,203 votes" 51 | David Allan Coe,573 votes 52 | Martina McBride,"1,337 votes" 53 | Blake Shelton,"1,359 votes" 54 | Joe Diffie,"1,714 votes" 55 | Johnny Paycheck,637 votes 56 | Jerry Reed,889 votes 57 | Roger Miller,"1,053 votes" 58 | Crystal Gayle,868 votes 59 | The Judds,449 votes 60 | Trace Adkins,850 votes 61 | Tanya Tucker,"1,241 votes" 62 | Ernest Tubb,"1,152 votes" 63 | Ronnie Milsap,966 votes 64 | Jimmie Rodgers,"1,357 votes" 65 | Gene Autry,364 votes 66 | Jim Reeves,364 votes 67 | Tracy Lawrence,957 votes 68 | June Carter Cash,891 votes 69 | Miranda Lambert,959 votes 70 | Wynonna Judd,"1,188 votes" 71 | Ray Price,244 votes 72 | Faith Hill,828 votes 73 | The Eagles,"1,053 votes" 74 | Dierks Bentley,"1,194 votes" 75 | Johnny Horton,789 votes 76 | Mel Tillis,848 votes 77 | Montgomery Gentry,716 votes 78 | The Statler Brothers,689 votes 79 | LeAnn Rimes,"1,065 votes" 80 | Pam Tillis,475 votes 81 | Marty Stuart,256 votes 82 | Diamond Rio,530 votes 83 | Jerry Lee Lewis,675 votes 84 | Sammy Kershaw,718 votes 85 | Chris LeDoux,493 votes 86 | Bob Wills,694 votes 87 | Lefty Frizzell,629 votes 88 | Jason Aldean,884 votes 89 | Tom T. Hall,542 votes 90 | Eddie Rabbitt,618 votes 91 | Darius Rucker,915 votes 92 | Trisha Yearwood,"1,059 votes" 93 | Keith Urban,747 votes 94 | Roy Clark,982 votes 95 | Mark Chesnutt,709 votes 96 | Ray Charles,650 votes 97 | Kitty Wells,417 votes 98 | Bobby Bare,558 votes 99 | Patty Loveless,832 votes 100 | Rascal Flatts,"1,161 votes" 101 | Ricky Skaggs,998 votes 102 | Lorrie Morgan,298 votes 103 | Lonestar,669 votes 104 | The Bellamy Brothers,674 votes 105 | Lester Flatt & Earl Scruggs,475 votes 106 | Gary Allan,673 votes 107 | Lady A,546 votes 108 | Chet Atkins,"1,011 votes" 109 | Hank Snow,727 votes 110 | Ricky Van Shelton,363 votes 111 | Charlie Rich,861 votes 112 | Lee Ann Womack,641 votes 113 | Roy Rogers,467 votes 114 | Bill Monroe and His Bluegrass Boys,734 votes 115 | Roy Acuff,864 votes 116 | Steve Earle,485 votes 117 | Eddy Arnold,779 votes 118 | Kacey Musgraves,395 votes 119 | The Marshall Tucker Band,504 votes 120 | Porter Wagoner,242 votes 121 | Billy Currington,695 votes 122 | Barbara Mandrell,482 votes 123 | Clay Walker,371 votes 124 | Jon Pardi,609 votes -------------------------------------------------------------------------------- /funkyFunctions.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | import numpy as np 4 | from lyricsgenius import Genius 5 | from dotenv import load_dotenv 6 | import re 7 | import requests 8 | 9 | 10 | load_dotenv() # Load environment variables from the .env file 11 | 12 | genius_key = os.getenv('GENUIS_KEY') 13 | genius = Genius(genius_key,timeout=30) 14 | genius.verbose = False 15 | genius.remove_section_headers = True 16 | genius.excluded_terms = ["(Remix)", "(Live)"] 17 | 18 | def getData(rap_df): 19 | 20 | song_number = 5 21 | #Fill Songs and Lyrics Column with Nan 22 | rap_df['Songs'] = np.nan 23 | rap_df['Lyrics'] = np.nan 24 | #Show head 25 | print(rap_df.head()) 26 | 27 | #Loop through rows 28 | #for x in range(loc(rap_df)): 29 | for x in range(4): 30 | #Get artist name 31 | artist_name = rap_df.loc[x][0] 32 | print(f"Getting Data for {artist_name}") 33 | #Pull song data from genuis 34 | # Retry mechanism 35 | retries = 3 36 | while retries > 0: 37 | try: 38 | # Pull song data from genius 39 | artist = genius.search_artist(artist_name, max_songs=song_number, sort="popularity") 40 | break 41 | except requests.exceptions.Timeout: 42 | retries -= 1 43 | print(f"Request timed out. Retrying... {retries} attempts remaining.") 44 | if retries == 0: 45 | print(f"Failed to get data for {artist_name}. Skipping...") 46 | continue 47 | #Temp song and lyric list 48 | song_list = [] 49 | song_lyrics_list = [] 50 | 51 | #iiterate through songs and year 52 | for song in artist.songs: 53 | print(song.title) 54 | song_list.append(song.title) 55 | 56 | 57 | # Add to row 58 | rap_df['Songs'][x] = song_list 59 | 60 | # Iterate over the lyrics and add them to the list 61 | for song in song_list: 62 | lyrics = genius.search_song(artist_name,song) 63 | song_lyrics_list.append(lyrics.lyrics) 64 | #Add to row 65 | rap_df['Lyrics'][x] = song_lyrics_list 66 | 67 | print("Data Has Been Recived") 68 | #Show head 69 | print(rap_df.head()) 70 | 71 | rap_df.to_csv("/home/lettuce/MyCode/pandasproject/rap_mid1.csv",index=False) 72 | 73 | 74 | 75 | def cleanData(rap_df): 76 | print("Cleaning Data...") 77 | 78 | for x in range(4): 79 | name = rap_df["Rap Name"][x] 80 | print(f"Cleaning data for {name}") 81 | 82 | lyrics_list = rap_df["Lyrics"][x] 83 | cleaned_lyrics_list = [] 84 | 85 | #Maybe not go trhough loop 86 | cleaned_lyric = process_string(lyrics_list) 87 | cleaned_lyrics_list.append(cleaned_lyric) 88 | 89 | rap_df["Lyrics"][x] = cleaned_lyrics_list 90 | 91 | print("Cleaned Data") 92 | print(rap_df.head()) 93 | rap_df.to_csv("/home/lettuce/MyCode/pandasproject/rap_mid2.csv",index=False) 94 | 95 | 96 | def process_string(input_string): 97 | # Remove all occurrences of a standalone backslash 98 | input_string = re.sub(r'\\(?![n])', '', input_string) 99 | 100 | # Replace all occurrences of \n with a single space 101 | input_string = re.sub(r'\\n', ' ', input_string) 102 | 103 | # Remove specified characters: ',', ''', '(', ')', '?', '"', ':', '-', '!' 104 | input_string = re.sub(r"[,'\(\)\?\":\-!]", '', input_string) 105 | 106 | return input_string 107 | 108 | 109 | #Create a dictornary Key is word Value is count 110 | # IF there is a new word apphend the dictonary 111 | # IF word exist then add 1 to value 112 | def organizeDataTotal(rap_df): 113 | #Overall for all rappers 114 | lyric_dict_all_rap = {} 115 | 116 | print("") 117 | print("Organizing TotalData...") 118 | print("") 119 | 120 | #Itterate through each row 121 | for x in range(4): 122 | #Take lyric column 123 | lyrics = rap_df['Lyrics'][x] 124 | words = lyrics.lower().split() 125 | for word in words: 126 | if word in lyric_dict_all_rap: 127 | lyric_dict_all_rap[word] += 1 128 | else: 129 | lyric_dict_all_rap[word] = 1 130 | 131 | 132 | # Append the key-value pair to the dictionary 133 | #my_dict[key] = value 134 | #Sorting the dictonary 135 | sorted_word_count = sorted(lyric_dict_all_rap.items(), key=lambda item: item[1], reverse=True) 136 | #Put in new data frame 137 | #Rows 138 | my_index = ['Total'] 139 | for x in range(len(rap_df)): 140 | my_index.append(rap_df['Rap Name'][x]) 141 | #Put in new data frame 142 | #Columns 143 | my_columns = [] #Go to top 500 words when we have more data 144 | for key, value in sorted_word_count[:500]: 145 | my_columns.append(key) 146 | 147 | #Fill in data with Nan 148 | nan_array = np.empty((len(my_index), len(my_columns))) 149 | nan_array[:] = np.NaN 150 | #Filling in Total Row 151 | total_list = [] 152 | for key, value in sorted_word_count[:500]: 153 | total_list.append(value) 154 | 155 | #Create DF 156 | rap_final = pd.DataFrame(nan_array,index=my_index,columns=my_columns) 157 | #Add total values 158 | rap_final.loc["Total"] = total_list 159 | 160 | # Create a new DataFrame with "Artist Name" as the first column 161 | artist_name_df = pd.DataFrame(['Total'] + rap_df['Rap Name'].tolist(), columns=["Artist Name"]) 162 | 163 | # Reset the index of rap_final DataFrame to be numeric 164 | rap_final.reset_index(drop=True, inplace=True) 165 | 166 | # Concatenate the artist_name_df DataFrame with rap_final DataFrame 167 | rap_final = pd.concat([artist_name_df, rap_final], axis=1) 168 | 169 | #Index needs to be True 170 | rap_final.to_csv("/home/lettuce/MyCode/pandasproject/rap_end.csv",index=False) 171 | 172 | 173 | #Had to use ChatGpt for some of this as Idk 174 | def organizeDataArtist(rap_df, rap_final): 175 | print("Organizing Data...") 176 | 177 | #Grab Total Row 178 | total = rap_final.iloc[0].to_dict() 179 | 180 | #Get index list 181 | index_list = rap_final.columns.tolist() 182 | 183 | for x in range(4): 184 | artist_name = rap_df["Rap Name"][x] # Update the index to start from 0 185 | print(f"Organizing Lyrics for {artist_name}") 186 | 187 | # Temp dictionary reset (Uses most common [] words) 188 | dick = {key: 0 for key in index_list} 189 | 190 | # Add artist column 191 | dick["Artist Name"] = artist_name 192 | 193 | # Take lyric column 194 | lyrics = rap_df['Lyrics'][x] # Update the index to start from 0 195 | words = lyrics.lower().split() 196 | for word in words: 197 | if word in index_list: 198 | # Add one to dick 199 | dick[word] += 1 200 | 201 | # Update the row in rap_final DataFrame 202 | rap_final.loc[x] = dick 203 | 204 | #So bassically I have to create a new empty row and save the total to top cuz I am a dumb ass somehow 205 | nan_row = pd.DataFrame(columns=rap_final.columns, index=[0]) 206 | nan_row.loc[0] = np.nan 207 | rap_final = pd.concat([nan_row, rap_final], ignore_index=True) 208 | 209 | rap_final.loc[0] = total 210 | 211 | #Gonna also change nword to nword ok 212 | #Want to talk or not to talk about the use of the nword in rap 213 | #N-word N-words HardR 214 | 215 | #Add like column to front 216 | 217 | 218 | rap_final.to_csv("/home/lettuce/MyCode/pandasproject/rap_end.csv",index=False) 219 | print("Organized Data") 220 | 221 | 222 | 223 | 224 | 225 | -------------------------------------------------------------------------------- /countryJUP.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 1, 6 | "metadata": {}, 7 | "outputs": [], 8 | "source": [ 9 | "import pandas as pd\n", 10 | "import numpy as np " 11 | ] 12 | }, 13 | { 14 | "cell_type": "code", 15 | "execution_count": 2, 16 | "metadata": {}, 17 | "outputs": [ 18 | { 19 | "data": { 20 | "text/html": [ 21 | "
\n", 22 | "\n", 35 | "\n", 36 | " \n", 37 | " \n", 38 | " \n", 39 | " \n", 40 | " \n", 41 | " \n", 42 | " \n", 43 | " \n", 44 | " \n", 45 | " \n", 46 | " \n", 47 | " \n", 48 | " \n", 49 | " \n", 50 | " \n", 51 | " \n", 52 | " \n", 53 | " \n", 54 | " \n", 55 | " \n", 56 | " \n", 57 | " \n", 58 | " \n", 59 | " \n", 60 | " \n", 61 | " \n", 62 | " \n", 63 | " \n", 64 | " \n", 65 | " \n", 66 | " \n", 67 | " \n", 68 | " \n", 69 | " \n", 70 | "
Country NameCountry Like
0Johnny Cash4,997 votes
1Hank Williams3,721 votes
2George Strait4,732 votes
3Merle Haggard3,498 votes
4Alan Jackson3,606 votes
\n", 71 | "
" 72 | ], 73 | "text/plain": [ 74 | " Country Name Country Like\n", 75 | "0 Johnny Cash 4,997 votes\n", 76 | "1 Hank Williams 3,721 votes\n", 77 | "2 George Strait 4,732 votes\n", 78 | "3 Merle Haggard 3,498 votes\n", 79 | "4 Alan Jackson 3,606 votes" 80 | ] 81 | }, 82 | "execution_count": 2, 83 | "metadata": {}, 84 | "output_type": "execute_result" 85 | } 86 | ], 87 | "source": [ 88 | "# Import the data\n", 89 | "df = pd.read_csv('country_names.csv')\n", 90 | "df.head()" 91 | ] 92 | }, 93 | { 94 | "cell_type": "code", 95 | "execution_count": null, 96 | "metadata": {}, 97 | "outputs": [], 98 | "source": [ 99 | "1920 2\n", 100 | "1930 3\n", 101 | "1940 4\n", 102 | "1950 5\n", 103 | "1960 6\n", 104 | "1970 7\n", 105 | "1980 8\n", 106 | "1990 9\n", 107 | "2000 00\n", 108 | "2010 10\n", 109 | "2020 20" 110 | ] 111 | }, 112 | { 113 | "cell_type": "code", 114 | "execution_count": 13, 115 | "metadata": {}, 116 | "outputs": [ 117 | { 118 | "data": { 119 | "text/html": [ 120 | "
\n", 121 | "\n", 134 | "\n", 135 | " \n", 136 | " \n", 137 | " \n", 138 | " \n", 139 | " \n", 140 | " \n", 141 | " \n", 142 | " \n", 143 | " \n", 144 | " \n", 145 | " \n", 146 | " \n", 147 | " \n", 148 | " \n", 149 | " \n", 150 | " \n", 151 | " \n", 152 | " \n", 153 | " \n", 154 | " \n", 155 | " \n", 156 | " \n", 157 | " \n", 158 | " \n", 159 | " \n", 160 | " \n", 161 | " \n", 162 | " \n", 163 | " \n", 164 | " \n", 165 | " \n", 166 | " \n", 167 | " \n", 168 | " \n", 169 | " \n", 170 | " \n", 171 | " \n", 172 | " \n", 173 | " \n", 174 | " \n", 175 | " \n", 176 | " \n", 177 | " \n", 178 | " \n", 179 | " \n", 180 | " \n", 181 | " \n", 182 | " \n", 183 | " \n", 184 | " \n", 185 | " \n", 186 | " \n", 187 | " \n", 188 | " \n", 189 | " \n", 190 | " \n", 191 | " \n", 192 | " \n", 193 | " \n", 194 | " \n", 195 | " \n", 196 | " \n", 197 | " \n", 198 | " \n", 199 | " \n", 200 | " \n", 201 | " \n", 202 | " \n", 203 | " \n", 204 | " \n", 205 | " \n", 206 | " \n", 207 | " \n", 208 | " \n", 209 | " \n", 210 | " \n", 211 | " \n", 212 | " \n", 213 | " \n", 214 | " \n", 215 | " \n", 216 | " \n", 217 | " \n", 218 | " \n", 219 | " \n", 220 | " \n", 221 | " \n", 222 | " \n", 223 | " \n", 224 | " \n", 225 | " \n", 226 | " \n", 227 | " \n", 228 | " \n", 229 | " \n", 230 | " \n", 231 | " \n", 232 | " \n", 233 | " \n", 234 | " \n", 235 | " \n", 236 | " \n", 237 | " \n", 238 | " \n", 239 | " \n", 240 | " \n", 241 | " \n", 242 | " \n", 243 | " \n", 244 | " \n", 245 | " \n", 246 | " \n", 247 | " \n", 248 | " \n", 249 | " \n", 250 | " \n", 251 | " \n", 252 | " \n", 253 | " \n", 254 | " \n", 255 | " \n", 256 | " \n", 257 | " \n", 258 | " \n", 259 | " \n", 260 | " \n", 261 | " \n", 262 | " \n", 263 | " \n", 264 | " \n", 265 | " \n", 266 | " \n", 267 | " \n", 268 | " \n", 269 | " \n", 270 | " \n", 271 | " \n", 272 | " \n", 273 | " \n", 274 | " \n", 275 | " \n", 276 | " \n", 277 | " \n", 278 | " \n", 279 | " \n", 280 | " \n", 281 | " \n", 282 | " \n", 283 | " \n", 284 | " \n", 285 | " \n", 286 | " \n", 287 | " \n", 288 | " \n", 289 | " \n", 290 | " \n", 291 | " \n", 292 | " \n", 293 | " \n", 294 | " \n", 295 | " \n", 296 | " \n", 297 | " \n", 298 | " \n", 299 | " \n", 300 | " \n", 301 | " \n", 302 | " \n", 303 | " \n", 304 | " \n", 305 | " \n", 306 | " \n", 307 | " \n", 308 | " \n", 309 | " \n", 310 | " \n", 311 | " \n", 312 | " \n", 313 | " \n", 314 | " \n", 315 | " \n", 316 | " \n", 317 | " \n", 318 | " \n", 319 | " \n", 320 | " \n", 321 | " \n", 322 | " \n", 323 | " \n", 324 | " \n", 325 | " \n", 326 | " \n", 327 | " \n", 328 | " \n", 329 | " \n", 330 | " \n", 331 | " \n", 332 | " \n", 333 | " \n", 334 | " \n", 335 | " \n", 336 | " \n", 337 | " \n", 338 | " \n", 339 | " \n", 340 | " \n", 341 | " \n", 342 | " \n", 343 | " \n", 344 | " \n", 345 | " \n", 346 | " \n", 347 | " \n", 348 | " \n", 349 | " \n", 350 | " \n", 351 | " \n", 352 | " \n", 353 | " \n", 354 | " \n", 355 | " \n", 356 | " \n", 357 | " \n", 358 | " \n", 359 | " \n", 360 | " \n", 361 | " \n", 362 | " \n", 363 | " \n", 364 | " \n", 365 | " \n", 366 | " \n", 367 | " \n", 368 | " \n", 369 | " \n", 370 | " \n", 371 | " \n", 372 | " \n", 373 | " \n", 374 | " \n", 375 | " \n", 376 | " \n", 377 | " \n", 378 | " \n", 379 | " \n", 380 | " \n", 381 | " \n", 382 | " \n", 383 | "
Country Name
64Gene Autry
65Jim Reeves
66Tracy Lawrence
67June Carter Cash
68Miranda Lambert
69Wynonna Judd
70Ray Price
71Faith Hill
72The Eagles
73Dierks Bentley
74Johnny Horton
75Mel Tillis
76Montgomery Gentry
77The Statler Brothers
78LeAnn Rimes
79Pam Tillis
80Marty Stuart
81Diamond Rio
82Jerry Lee Lewis
83Sammy Kershaw
84Chris LeDoux
85Bob Wills
86Lefty Frizzell
87Jason Aldean
88Tom T. Hall
89Eddie Rabbitt
90Darius Rucker
91Trisha Yearwood
92Keith Urban
93Roy Clark
94Mark Chesnutt
95Ray Charles
96Kitty Wells
97Bobby Bare
98Patty Loveless
99Rascal Flatts
100Ricky Skaggs
101Lorrie Morgan
102Lonestar
103The Bellamy Brothers
104Lester Flatt & Earl Scruggs
105Gary Allan
106Lady A
107Chet Atkins
108Hank Snow
109Ricky Van Shelton
110Charlie Rich
111Lee Ann Womack
112Roy Rogers
113Bill Monroe and His Bluegrass Boys
114Roy Acuff
115Steve Earle
116Eddy Arnold
117Kacey Musgraves
118The Marshall Tucker Band
119Porter Wagoner
120Billy Currington
121Barbara Mandrell
122Clay Walker
123Jon Pardi
\n", 384 | "
" 385 | ], 386 | "text/plain": [ 387 | " Country Name\n", 388 | "64 Gene Autry\n", 389 | "65 Jim Reeves\n", 390 | "66 Tracy Lawrence\n", 391 | "67 June Carter Cash\n", 392 | "68 Miranda Lambert\n", 393 | "69 Wynonna Judd\n", 394 | "70 Ray Price\n", 395 | "71 Faith Hill\n", 396 | "72 The Eagles\n", 397 | "73 Dierks Bentley\n", 398 | "74 Johnny Horton\n", 399 | "75 Mel Tillis\n", 400 | "76 Montgomery Gentry\n", 401 | "77 The Statler Brothers\n", 402 | "78 LeAnn Rimes\n", 403 | "79 Pam Tillis\n", 404 | "80 Marty Stuart\n", 405 | "81 Diamond Rio\n", 406 | "82 Jerry Lee Lewis\n", 407 | "83 Sammy Kershaw\n", 408 | "84 Chris LeDoux\n", 409 | "85 Bob Wills\n", 410 | "86 Lefty Frizzell\n", 411 | "87 Jason Aldean\n", 412 | "88 Tom T. Hall\n", 413 | "89 Eddie Rabbitt\n", 414 | "90 Darius Rucker\n", 415 | "91 Trisha Yearwood\n", 416 | "92 Keith Urban\n", 417 | "93 Roy Clark\n", 418 | "94 Mark Chesnutt\n", 419 | "95 Ray Charles\n", 420 | "96 Kitty Wells\n", 421 | "97 Bobby Bare\n", 422 | "98 Patty Loveless\n", 423 | "99 Rascal Flatts\n", 424 | "100 Ricky Skaggs\n", 425 | "101 Lorrie Morgan\n", 426 | "102 Lonestar\n", 427 | "103 The Bellamy Brothers\n", 428 | "104 Lester Flatt & Earl Scruggs\n", 429 | "105 Gary Allan\n", 430 | "106 Lady A\n", 431 | "107 Chet Atkins\n", 432 | "108 Hank Snow\n", 433 | "109 Ricky Van Shelton\n", 434 | "110 Charlie Rich\n", 435 | "111 Lee Ann Womack\n", 436 | "112 Roy Rogers\n", 437 | "113 Bill Monroe and His Bluegrass Boys\n", 438 | "114 Roy Acuff\n", 439 | "115 Steve Earle\n", 440 | "116 Eddy Arnold\n", 441 | "117 Kacey Musgraves\n", 442 | "118 The Marshall Tucker Band\n", 443 | "119 Porter Wagoner\n", 444 | "120 Billy Currington\n", 445 | "121 Barbara Mandrell\n", 446 | "122 Clay Walker\n", 447 | "123 Jon Pardi" 448 | ] 449 | }, 450 | "execution_count": 13, 451 | "metadata": {}, 452 | "output_type": "execute_result" 453 | } 454 | ], 455 | "source": [ 456 | "[6,5,8,7,9,7,6,7,6,8,7,6,8,9,8,6,8,9,7,00,7,10,7,8,9,00,00,9,7,10,9,7,6,6,7,6,8,7,9,6,20,7,8,10,7,8,00,9,20,8,00,10,9,7,7,6,7,8,10,7,4,7,3,4,5,9,6,10,9,5,00,7,10,5,7,00,6,00,9,9,9,5,9,8,3,6,10,6,7,10,00,10,6,9,5,8,9,8,5,10]\n", 457 | "df.tail(60)" 458 | ] 459 | } 460 | ], 461 | "metadata": { 462 | "kernelspec": { 463 | "display_name": "Python 3", 464 | "language": "python", 465 | "name": "python3" 466 | }, 467 | "language_info": { 468 | "codemirror_mode": { 469 | "name": "ipython", 470 | "version": 3 471 | }, 472 | "file_extension": ".py", 473 | "mimetype": "text/x-python", 474 | "name": "python", 475 | "nbconvert_exporter": "python", 476 | "pygments_lexer": "ipython3", 477 | "version": "3.10.6" 478 | }, 479 | "orig_nbformat": 4 480 | }, 481 | "nbformat": 4, 482 | "nbformat_minor": 2 483 | } 484 | -------------------------------------------------------------------------------- /rapJUP.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "code", 5 | "execution_count": 2, 6 | "metadata": {}, 7 | "outputs": [], 8 | "source": [ 9 | "import pandas as pd\n", 10 | "import numpy as np\n", 11 | "import spacy\n" 12 | ] 13 | }, 14 | { 15 | "cell_type": "code", 16 | "execution_count": 3, 17 | "metadata": {}, 18 | "outputs": [ 19 | { 20 | "data": { 21 | "text/html": [ 22 | "
\n", 23 | "\n", 36 | "\n", 37 | " \n", 38 | " \n", 39 | " \n", 40 | " \n", 41 | " \n", 42 | " \n", 43 | " \n", 44 | " \n", 45 | " \n", 46 | " \n", 47 | " \n", 48 | " \n", 49 | " \n", 50 | " \n", 51 | " \n", 52 | " \n", 53 | " \n", 54 | " \n", 55 | " \n", 56 | " \n", 57 | " \n", 58 | " \n", 59 | " \n", 60 | " \n", 61 | " \n", 62 | " \n", 63 | " \n", 64 | " \n", 65 | " \n", 66 | " \n", 67 | " \n", 68 | " \n", 69 | " \n", 70 | " \n", 71 | " \n", 72 | " \n", 73 | " \n", 74 | " \n", 75 | " \n", 76 | " \n", 77 | " \n", 78 | " \n", 79 | " \n", 80 | " \n", 81 | " \n", 82 | " \n", 83 | " \n", 84 | " \n", 85 | " \n", 86 | " \n", 87 | " \n", 88 | " \n", 89 | " \n", 90 | " \n", 91 | " \n", 92 | " \n", 93 | " \n", 94 | " \n", 95 | " \n", 96 | " \n", 97 | " \n", 98 | " \n", 99 | " \n", 100 | " \n", 101 | " \n", 102 | " \n", 103 | " \n", 104 | " \n", 105 | " \n", 106 | " \n", 107 | " \n", 108 | " \n", 109 | " \n", 110 | " \n", 111 | " \n", 112 | " \n", 113 | " \n", 114 | " \n", 115 | " \n", 116 | " \n", 117 | " \n", 118 | " \n", 119 | " \n", 120 | " \n", 121 | " \n", 122 | " \n", 123 | " \n", 124 | " \n", 125 | " \n", 126 | " \n", 127 | " \n", 128 | " \n", 129 | " \n", 130 | " \n", 131 | " \n", 132 | " \n", 133 | " \n", 134 | " \n", 135 | " \n", 136 | " \n", 137 | " \n", 138 | " \n", 139 | " \n", 140 | " \n", 141 | " \n", 142 | " \n", 143 | " \n", 144 | " \n", 145 | " \n", 146 | " \n", 147 | " \n", 148 | " \n", 149 | " \n", 150 | " \n", 151 | " \n", 152 | " \n", 153 | " \n", 154 | " \n", 155 | " \n", 156 | " \n", 157 | " \n", 158 | " \n", 159 | " \n", 160 | " \n", 161 | " \n", 162 | " \n", 163 | " \n", 164 | " \n", 165 | " \n", 166 | " \n", 167 | " \n", 168 | " \n", 169 | " \n", 170 | " \n", 171 | " \n", 172 | " \n", 173 | " \n", 174 | " \n", 175 | " \n", 176 | " \n", 177 | " \n", 178 | " \n", 179 | " \n", 180 | " \n", 181 | " \n", 182 | " \n", 183 | " \n", 184 | " \n", 185 | "
Artist Nametheyouaitoandinitup...placeworknobodyparkkneeltotinshouldarmpayhomage
0Total491.0372.0325.0306.0271.0241.0162.0152.0147.0...3.03.03.03.03.03.03.03.03.03.0
1The Notorious B.I.G.85.082.090.073.070.051.037.030.010.0...1.01.01.01.01.01.01.01.01.01.0
2Tupac100.075.038.038.045.037.018.047.022.0...1.00.00.00.00.01.01.00.00.00.0
3Eminem85.082.090.073.070.051.037.030.010.0...1.01.01.01.01.01.01.01.01.01.0
4Kendrick Lamar74.036.036.040.014.029.023.017.075.0...0.00.01.00.00.00.00.00.00.00.0
\n", 186 | "

5 rows × 501 columns

\n", 187 | "
" 188 | ], 189 | "text/plain": [ 190 | " Artist Name the you a i to and in \\\n", 191 | "0 Total 491.0 372.0 325.0 306.0 271.0 241.0 162.0 \n", 192 | "1 The Notorious B.I.G. 85.0 82.0 90.0 73.0 70.0 51.0 37.0 \n", 193 | "2 Tupac 100.0 75.0 38.0 38.0 45.0 37.0 18.0 \n", 194 | "3 Eminem 85.0 82.0 90.0 73.0 70.0 51.0 37.0 \n", 195 | "4 Kendrick Lamar 74.0 36.0 36.0 40.0 14.0 29.0 23.0 \n", 196 | "\n", 197 | " it up ... place work nobody park kneel totin should arm \\\n", 198 | "0 152.0 147.0 ... 3.0 3.0 3.0 3.0 3.0 3.0 3.0 3.0 \n", 199 | "1 30.0 10.0 ... 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \n", 200 | "2 47.0 22.0 ... 1.0 0.0 0.0 0.0 0.0 1.0 1.0 0.0 \n", 201 | "3 30.0 10.0 ... 1.0 1.0 1.0 1.0 1.0 1.0 1.0 1.0 \n", 202 | "4 17.0 75.0 ... 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 \n", 203 | "\n", 204 | " pay homage \n", 205 | "0 3.0 3.0 \n", 206 | "1 1.0 1.0 \n", 207 | "2 0.0 0.0 \n", 208 | "3 1.0 1.0 \n", 209 | "4 0.0 0.0 \n", 210 | "\n", 211 | "[5 rows x 501 columns]" 212 | ] 213 | }, 214 | "execution_count": 3, 215 | "metadata": {}, 216 | "output_type": "execute_result" 217 | } 218 | ], 219 | "source": [ 220 | "csv_rap_final = pd.read_csv('/home/lettuce/MyCode/pandasproject/Rap-vs-Country-StatisticalStudy/final_rap.csv')\n", 221 | "csv_rap_final.head()" 222 | ] 223 | }, 224 | { 225 | "cell_type": "code", 226 | "execution_count": 4, 227 | "metadata": {}, 228 | "outputs": [ 229 | { 230 | "data": { 231 | "text/html": [ 232 | "
\n", 233 | "\n", 246 | "\n", 247 | " \n", 248 | " \n", 249 | " \n", 250 | " \n", 251 | " \n", 252 | " \n", 253 | " \n", 254 | " \n", 255 | " \n", 256 | " \n", 257 | " \n", 258 | " \n", 259 | " \n", 260 | " \n", 261 | " \n", 262 | " \n", 263 | " \n", 264 | " \n", 265 | " \n", 266 | " \n", 267 | " \n", 268 | " \n", 269 | " \n", 270 | " \n", 271 | " \n", 272 | " \n", 273 | " \n", 274 | " \n", 275 | " \n", 276 | " \n", 277 | " \n", 278 | " \n", 279 | " \n", 280 | " \n", 281 | " \n", 282 | " \n", 283 | " \n", 284 | " \n", 285 | " \n", 286 | " \n", 287 | " \n", 288 | " \n", 289 | " \n", 290 | " \n", 291 | " \n", 292 | " \n", 293 | " \n", 294 | " \n", 295 | " \n", 296 | " \n", 297 | " \n", 298 | " \n", 299 | " \n", 300 | " \n", 301 | " \n", 302 | " \n", 303 | " \n", 304 | " \n", 305 | " \n", 306 | " \n", 307 | " \n", 308 | " \n", 309 | " \n", 310 | " \n", 311 | " \n", 312 | " \n", 313 | " \n", 314 | " \n", 315 | " \n", 316 | " \n", 317 | " \n", 318 | " \n", 319 | " \n", 320 | " \n", 321 | " \n", 322 | " \n", 323 | " \n", 324 | " \n", 325 | " \n", 326 | " \n", 327 | " \n", 328 | " \n", 329 | " \n", 330 | " \n", 331 | " \n", 332 | " \n", 333 | " \n", 334 | " \n", 335 | " \n", 336 | " \n", 337 | " \n", 338 | " \n", 339 | " \n", 340 | " \n", 341 | " \n", 342 | " \n", 343 | " \n", 344 | " \n", 345 | " \n", 346 | " \n", 347 | " \n", 348 | " \n", 349 | " \n", 350 | " \n", 351 | " \n", 352 | " \n", 353 | " \n", 354 | " \n", 355 | " \n", 356 | " \n", 357 | " \n", 358 | " \n", 359 | " \n", 360 | " \n", 361 | " \n", 362 | " \n", 363 | " \n", 364 | " \n", 365 | " \n", 366 | " \n", 367 | " \n", 368 | " \n", 369 | " \n", 370 | " \n", 371 | " \n", 372 | " \n", 373 | " \n", 374 | " \n", 375 | " \n", 376 | " \n", 377 | " \n", 378 | " \n", 379 | " \n", 380 | " \n", 381 | " \n", 382 | " \n", 383 | " \n", 384 | " \n", 385 | " \n", 386 | " \n", 387 | " \n", 388 | " \n", 389 | " \n", 390 | " \n", 391 | " \n", 392 | " \n", 393 | " \n", 394 | " \n", 395 | "
Artist Namegotgetdontwayknowseedocauseaint...freepourfameflocktimesnormalwantedgodzillabreathliveget
0Total93.087.082.073.069.069.064.061.059.0...5.05.05.05.05.05.05.05.05.05.0
1The Notorious B.I.G.13.010.020.04.025.015.08.015.08.0...0.00.00.00.00.00.00.00.00.00.0
2Tupac20.024.031.041.021.029.025.014.028.0...2.01.00.00.00.00.00.00.00.00.0
3Eminem23.039.021.09.013.06.016.026.08.0...0.00.05.01.03.05.05.05.05.00.0
4Kendrick Lamar37.014.010.019.010.019.015.06.015.0...3.04.00.04.02.00.00.00.00.05.0
\n", 396 | "

5 rows × 303 columns

\n", 397 | "
" 398 | ], 399 | "text/plain": [ 400 | " Artist Name got get dont way know see do cause \\\n", 401 | "0 Total 93.0 87.0 82.0 73.0 69.0 69.0 64.0 61.0 \n", 402 | "1 The Notorious B.I.G. 13.0 10.0 20.0 4.0 25.0 15.0 8.0 15.0 \n", 403 | "2 Tupac 20.0 24.0 31.0 41.0 21.0 29.0 25.0 14.0 \n", 404 | "3 Eminem 23.0 39.0 21.0 9.0 13.0 6.0 16.0 26.0 \n", 405 | "4 Kendrick Lamar 37.0 14.0 10.0 19.0 10.0 19.0 15.0 6.0 \n", 406 | "\n", 407 | " aint ... free pour fame flock times normal wanted godzilla \\\n", 408 | "0 59.0 ... 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 \n", 409 | "1 8.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \n", 410 | "2 28.0 ... 2.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 \n", 411 | "3 8.0 ... 0.0 0.0 5.0 1.0 3.0 5.0 5.0 5.0 \n", 412 | "4 15.0 ... 3.0 4.0 0.0 4.0 2.0 0.0 0.0 0.0 \n", 413 | "\n", 414 | " breath liveget \n", 415 | "0 5.0 5.0 \n", 416 | "1 0.0 0.0 \n", 417 | "2 0.0 0.0 \n", 418 | "3 5.0 0.0 \n", 419 | "4 0.0 5.0 \n", 420 | "\n", 421 | "[5 rows x 303 columns]" 422 | ] 423 | }, 424 | "execution_count": 4, 425 | "metadata": {}, 426 | "output_type": "execute_result" 427 | } 428 | ], 429 | "source": [ 430 | "df = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_end.csv')\n", 431 | "\n", 432 | "# Load the English model in Spacy\n", 433 | "nlp = spacy.load('en_core_web_sm')\n", 434 | "\n", 435 | "# Define a function to check if a word is a noun, verb, or adjective\n", 436 | "def is_noun_verb_adj(word):\n", 437 | " pos = nlp(word)[0].pos_\n", 438 | " return pos in ['NOUN', 'VERB', 'ADJ']\n", 439 | "\n", 440 | "# Iterate over columns and drop those not meeting the criteria\n", 441 | "for col in df.columns:\n", 442 | " if not is_noun_verb_adj(col):\n", 443 | " df = df.drop(columns=[col])\n", 444 | " \n", 445 | "df.head()" 446 | ] 447 | }, 448 | { 449 | "cell_type": "code", 450 | "execution_count": 5, 451 | "metadata": {}, 452 | "outputs": [ 453 | { 454 | "data": { 455 | "text/html": [ 456 | "
\n", 457 | "\n", 470 | "\n", 471 | " \n", 472 | " \n", 473 | " \n", 474 | " \n", 475 | " \n", 476 | " \n", 477 | " \n", 478 | " \n", 479 | " \n", 480 | " \n", 481 | " \n", 482 | " \n", 483 | " \n", 484 | " \n", 485 | " \n", 486 | " \n", 487 | " \n", 488 | " \n", 489 | " \n", 490 | " \n", 491 | " \n", 492 | " \n", 493 | " \n", 494 | " \n", 495 | " \n", 496 | " \n", 497 | " \n", 498 | " \n", 499 | " \n", 500 | " \n", 501 | " \n", 502 | " \n", 503 | " \n", 504 | " \n", 505 | " \n", 506 | " \n", 507 | " \n", 508 | " \n", 509 | " \n", 510 | " \n", 511 | " \n", 512 | " \n", 513 | " \n", 514 | " \n", 515 | " \n", 516 | " \n", 517 | " \n", 518 | " \n", 519 | " \n", 520 | " \n", 521 | " \n", 522 | " \n", 523 | "
kill
014.0
10.0
26.0
34.0
44.0
......
121NaN
122NaN
123NaN
124NaN
125NaN
\n", 524 | "

126 rows × 1 columns

\n", 525 | "
" 526 | ], 527 | "text/plain": [ 528 | " kill\n", 529 | "0 14.0\n", 530 | "1 0.0\n", 531 | "2 6.0\n", 532 | "3 4.0\n", 533 | "4 4.0\n", 534 | ".. ...\n", 535 | "121 NaN\n", 536 | "122 NaN\n", 537 | "123 NaN\n", 538 | "124 NaN\n", 539 | "125 NaN\n", 540 | "\n", 541 | "[126 rows x 1 columns]" 542 | ] 543 | }, 544 | "execution_count": 5, 545 | "metadata": {}, 546 | "output_type": "execute_result" 547 | } 548 | ], 549 | "source": [ 550 | "#df.set_index('Artist Name', inplace=True)\n", 551 | "df[['kill']]" 552 | ] 553 | }, 554 | { 555 | "cell_type": "code", 556 | "execution_count": 6, 557 | "metadata": {}, 558 | "outputs": [ 559 | { 560 | "data": { 561 | "text/html": [ 562 | "
\n", 563 | "\n", 576 | "\n", 577 | " \n", 578 | " \n", 579 | " \n", 580 | " \n", 581 | " \n", 582 | " \n", 583 | " \n", 584 | " \n", 585 | " \n", 586 | " \n", 587 | " \n", 588 | " \n", 589 | " \n", 590 | " \n", 591 | " \n", 592 | " \n", 593 | " \n", 594 | " \n", 595 | " \n", 596 | " \n", 597 | " \n", 598 | " \n", 599 | " \n", 600 | " \n", 601 | " \n", 602 | " \n", 603 | " \n", 604 | " \n", 605 | " \n", 606 | " \n", 607 | " \n", 608 | " \n", 609 | " \n", 610 | " \n", 611 | " \n", 612 | " \n", 613 | " \n", 614 | " \n", 615 | " \n", 616 | " \n", 617 | " \n", 618 | " \n", 619 | " \n", 620 | " \n", 621 | " \n", 622 | " \n", 623 | " \n", 624 | " \n", 625 | " \n", 626 | " \n", 627 | " \n", 628 | " \n", 629 | " \n", 630 | " \n", 631 | " \n", 632 | " \n", 633 | " \n", 634 | " \n", 635 | " \n", 636 | " \n", 637 | " \n", 638 | " \n", 639 | " \n", 640 | " \n", 641 | " \n", 642 | " \n", 643 | " \n", 644 | " \n", 645 | " \n", 646 | " \n", 647 | " \n", 648 | " \n", 649 | " \n", 650 | " \n", 651 | " \n", 652 | " \n", 653 | " \n", 654 | " \n", 655 | " \n", 656 | " \n", 657 | " \n", 658 | " \n", 659 | " \n", 660 | " \n", 661 | " \n", 662 | " \n", 663 | " \n", 664 | " \n", 665 | " \n", 666 | " \n", 667 | " \n", 668 | " \n", 669 | " \n", 670 | " \n", 671 | " \n", 672 | " \n", 673 | " \n", 674 | " \n", 675 | " \n", 676 | " \n", 677 | " \n", 678 | " \n", 679 | " \n", 680 | " \n", 681 | " \n", 682 | " \n", 683 | " \n", 684 | " \n", 685 | " \n", 686 | " \n", 687 | " \n", 688 | " \n", 689 | " \n", 690 | " \n", 691 | " \n", 692 | " \n", 693 | " \n", 694 | " \n", 695 | " \n", 696 | " \n", 697 | " \n", 698 | " \n", 699 | " \n", 700 | " \n", 701 | " \n", 702 | " \n", 703 | " \n", 704 | " \n", 705 | " \n", 706 | " \n", 707 | " \n", 708 | " \n", 709 | " \n", 710 | " \n", 711 | " \n", 712 | " \n", 713 | " \n", 714 | " \n", 715 | " \n", 716 | " \n", 717 | " \n", 718 | " \n", 719 | " \n", 720 | " \n", 721 | " \n", 722 | " \n", 723 | " \n", 724 | " \n", 725 | "
Artist Namegetitsniggaseecauseifbackaintwas...fameflocktimesnormalamwantedgodzillabreathlamarliveget
0Total87.077.072.069.061.061.059.059.058.0...5.05.05.05.05.05.05.05.05.05.0
1The Notorious B.I.G.10.020.028.015.015.017.08.08.07.0...0.00.00.00.00.00.00.00.00.00.0
2Tupac24.024.018.029.014.015.019.028.019.0...0.00.00.00.00.00.00.00.00.00.0
3Eminem39.026.00.06.026.014.023.08.015.0...5.01.03.05.02.05.05.05.00.00.0
4Kendrick Lamar14.07.026.019.06.015.09.015.017.0...0.04.02.00.03.00.00.00.05.05.0
\n", 726 | "

5 rows × 462 columns

\n", 727 | "
" 728 | ], 729 | "text/plain": [ 730 | " Artist Name get its nigga see cause if back aint \\\n", 731 | "0 Total 87.0 77.0 72.0 69.0 61.0 61.0 59.0 59.0 \n", 732 | "1 The Notorious B.I.G. 10.0 20.0 28.0 15.0 15.0 17.0 8.0 8.0 \n", 733 | "2 Tupac 24.0 24.0 18.0 29.0 14.0 15.0 19.0 28.0 \n", 734 | "3 Eminem 39.0 26.0 0.0 6.0 26.0 14.0 23.0 8.0 \n", 735 | "4 Kendrick Lamar 14.0 7.0 26.0 19.0 6.0 15.0 9.0 15.0 \n", 736 | "\n", 737 | " was ... fame flock times normal am wanted godzilla breath \\\n", 738 | "0 58.0 ... 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 \n", 739 | "1 7.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \n", 740 | "2 19.0 ... 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \n", 741 | "3 15.0 ... 5.0 1.0 3.0 5.0 2.0 5.0 5.0 5.0 \n", 742 | "4 17.0 ... 0.0 4.0 2.0 0.0 3.0 0.0 0.0 0.0 \n", 743 | "\n", 744 | " lamar liveget \n", 745 | "0 5.0 5.0 \n", 746 | "1 0.0 0.0 \n", 747 | "2 0.0 0.0 \n", 748 | "3 0.0 0.0 \n", 749 | "4 5.0 5.0 \n", 750 | "\n", 751 | "[5 rows x 462 columns]" 752 | ] 753 | }, 754 | "execution_count": 6, 755 | "metadata": {}, 756 | "output_type": "execute_result" 757 | } 758 | ], 759 | "source": [ 760 | "csv = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap_end.csv')\n", 761 | "dropper = ['the','you','i','dont','a','know','way','when','to','me','it','my','and','in','up','on','your','of','im','that','with','like','is','we','but','this','all','just','be','got','for','what','do','yeah','no','now','thats','they','never']\n", 762 | "csv_drop = csv.drop(dropper, axis=1)\n", 763 | "csv_drop.head()" 764 | ] 765 | }, 766 | { 767 | "cell_type": "code", 768 | "execution_count": 99, 769 | "metadata": {}, 770 | "outputs": [ 771 | { 772 | "name": "stdout", 773 | "output_type": "stream", 774 | "text": [ 775 | "15\n", 776 | "26\n", 777 | "24\n", 778 | "36\n", 779 | "21\n" 780 | ] 781 | }, 782 | { 783 | "data": { 784 | "text/plain": [ 785 | "122" 786 | ] 787 | }, 788 | "execution_count": 99, 789 | "metadata": {}, 790 | "output_type": "execute_result" 791 | } 792 | ], 793 | "source": [ 794 | "era = [2,2,3,4,2,2,2,2,3,4,4,3,3,3,1,4,2,4,3,4,4,5,3,4,4,2,4,4,4,3,4,4,4,2,4,4,4,3,4,3,4,4,4,4,3,4,2,4,3,4,1,3,2,2,2,1,4,2,2,2,3,2,2,2,5,3,2,4,2,3,4,3,4,1,2,2,3,5,4,4,5,3,2,5,1,3,5,3,2,2,5,5,4,1,1,1,3,3,3,4,4,5,5,5,1,1,1,1,1,5,5,5,5,5,5,5,5,5,5,4,1]\n", 795 | "y = 0\n", 796 | "era.insert(56,1)\n", 797 | "\n", 798 | "for x in range(1,6):\n", 799 | " print(era.count(x))\n", 800 | " y += era.count(x)\n", 801 | "y" 802 | ] 803 | }, 804 | { 805 | "cell_type": "code", 806 | "execution_count": 89, 807 | "metadata": {}, 808 | "outputs": [ 809 | { 810 | "data": { 811 | "text/plain": [ 812 | "['1990s',\n", 813 | " '1990s',\n", 814 | " '2000s',\n", 815 | " '2010s',\n", 816 | " '1990s',\n", 817 | " '1990s',\n", 818 | " '1990s',\n", 819 | " '1990s',\n", 820 | " '2000s',\n", 821 | " '2010s',\n", 822 | " '2010s',\n", 823 | " '2000s',\n", 824 | " '2000s',\n", 825 | " '2000s',\n", 826 | " '1980s',\n", 827 | " '2010s',\n", 828 | " '1990s',\n", 829 | " '2010s',\n", 830 | " '2000s',\n", 831 | " '2010s',\n", 832 | " '2010s',\n", 833 | " '2020s',\n", 834 | " '2000s',\n", 835 | " '2010s',\n", 836 | " '2010s',\n", 837 | " '1990s',\n", 838 | " '2010s',\n", 839 | " '2010s',\n", 840 | " '2010s',\n", 841 | " '2000s',\n", 842 | " '2010s',\n", 843 | " '2010s',\n", 844 | " '2010s',\n", 845 | " '1990s',\n", 846 | " '2010s',\n", 847 | " '2010s',\n", 848 | " '2010s',\n", 849 | " '2000s',\n", 850 | " '2010s',\n", 851 | " '2000s',\n", 852 | " '2010s',\n", 853 | " '2010s',\n", 854 | " '2010s',\n", 855 | " '2010s',\n", 856 | " '2000s',\n", 857 | " '2010s',\n", 858 | " '1990s',\n", 859 | " '2010s',\n", 860 | " '2000s',\n", 861 | " '2010s',\n", 862 | " '1980s',\n", 863 | " '2000s',\n", 864 | " '1990s',\n", 865 | " '1990s',\n", 866 | " '1990s',\n", 867 | " '1980s',\n", 868 | " '1980s',\n", 869 | " '2010s',\n", 870 | " '1990s',\n", 871 | " '1990s',\n", 872 | " '1990s',\n", 873 | " '2000s',\n", 874 | " '1990s',\n", 875 | " '1990s',\n", 876 | " '1990s',\n", 877 | " '2020s',\n", 878 | " '2000s',\n", 879 | " '1990s',\n", 880 | " '2010s',\n", 881 | " '1990s',\n", 882 | " '2000s',\n", 883 | " '2010s',\n", 884 | " '2000s',\n", 885 | " '2010s',\n", 886 | " '1980s',\n", 887 | " '1990s',\n", 888 | " '1990s',\n", 889 | " '2000s',\n", 890 | " '2020s',\n", 891 | " '2010s',\n", 892 | " '2010s',\n", 893 | " '2020s',\n", 894 | " '2000s',\n", 895 | " '1990s',\n", 896 | " '2020s',\n", 897 | " '1980s',\n", 898 | " '2000s',\n", 899 | " '2020s',\n", 900 | " '2000s',\n", 901 | " '1990s',\n", 902 | " '1990s',\n", 903 | " '2020s',\n", 904 | " '2020s',\n", 905 | " '2010s',\n", 906 | " '1980s',\n", 907 | " '1980s',\n", 908 | " '1980s',\n", 909 | " '2000s',\n", 910 | " '2000s',\n", 911 | " '2000s',\n", 912 | " '2010s',\n", 913 | " '2010s',\n", 914 | " '2020s',\n", 915 | " '2020s',\n", 916 | " '2020s',\n", 917 | " '1980s',\n", 918 | " '1980s',\n", 919 | " '1980s',\n", 920 | " '1980s',\n", 921 | " '1980s',\n", 922 | " '2020s',\n", 923 | " '2020s',\n", 924 | " '2020s',\n", 925 | " '2020s',\n", 926 | " '2020s',\n", 927 | " '2020s',\n", 928 | " '2020s',\n", 929 | " '2020s',\n", 930 | " '2020s',\n", 931 | " '2020s',\n", 932 | " '2010s']" 933 | ] 934 | }, 935 | "execution_count": 89, 936 | "metadata": {}, 937 | "output_type": "execute_result" 938 | } 939 | ], 940 | "source": [ 941 | "era_fix = []\n", 942 | "\n", 943 | "for x in range(0,121):\n", 944 | " if era[x] == 0:\n", 945 | " era_fix.append('0')\n", 946 | " if era[x] == 1:\n", 947 | " era_fix.append('1980s')\n", 948 | " elif era[x] == 2:\n", 949 | " era_fix.append('1990s')\n", 950 | " elif era[x] == 3:\n", 951 | " era_fix.append('2000s')\n", 952 | " elif era[x] == 4:\n", 953 | " era_fix.append('2010s')\n", 954 | " elif era[x] == 5:\n", 955 | " era_fix.append('2020s')\n", 956 | "era_fix" 957 | ] 958 | }, 959 | { 960 | "cell_type": "code", 961 | "execution_count": null, 962 | "metadata": {}, 963 | "outputs": [], 964 | "source": [] 965 | }, 966 | { 967 | "cell_type": "code", 968 | "execution_count": 90, 969 | "metadata": {}, 970 | "outputs": [], 971 | "source": [ 972 | "rap = pd.read_csv('/home/lettuce/MyCode/pandasproject/rap.csv')\n", 973 | "rap['Era'] = era_fix" 974 | ] 975 | }, 976 | { 977 | "cell_type": "code", 978 | "execution_count": 91, 979 | "metadata": {}, 980 | "outputs": [ 981 | { 982 | "data": { 983 | "text/html": [ 984 | "
\n", 985 | "\n", 998 | "\n", 999 | " \n", 1000 | " \n", 1001 | " \n", 1002 | " \n", 1003 | " \n", 1004 | " \n", 1005 | " \n", 1006 | " \n", 1007 | " \n", 1008 | " \n", 1009 | " \n", 1010 | " \n", 1011 | " \n", 1012 | " \n", 1013 | " \n", 1014 | " \n", 1015 | " \n", 1016 | " \n", 1017 | " \n", 1018 | " \n", 1019 | " \n", 1020 | " \n", 1021 | " \n", 1022 | " \n", 1023 | " \n", 1024 | " \n", 1025 | " \n", 1026 | " \n", 1027 | " \n", 1028 | " \n", 1029 | " \n", 1030 | " \n", 1031 | " \n", 1032 | " \n", 1033 | " \n", 1034 | " \n", 1035 | " \n", 1036 | " \n", 1037 | " \n", 1038 | " \n", 1039 | " \n", 1040 | " \n", 1041 | " \n", 1042 | " \n", 1043 | " \n", 1044 | " \n", 1045 | " \n", 1046 | " \n", 1047 | " \n", 1048 | " \n", 1049 | " \n", 1050 | " \n", 1051 | " \n", 1052 | " \n", 1053 | " \n", 1054 | " \n", 1055 | " \n", 1056 | " \n", 1057 | " \n", 1058 | " \n", 1059 | " \n", 1060 | " \n", 1061 | " \n", 1062 | " \n", 1063 | " \n", 1064 | " \n", 1065 | " \n", 1066 | " \n", 1067 | " \n", 1068 | " \n", 1069 | " \n", 1070 | " \n", 1071 | " \n", 1072 | " \n", 1073 | " \n", 1074 | " \n", 1075 | " \n", 1076 | " \n", 1077 | " \n", 1078 | " \n", 1079 | " \n", 1080 | " \n", 1081 | " \n", 1082 | " \n", 1083 | " \n", 1084 | " \n", 1085 | " \n", 1086 | " \n", 1087 | " \n", 1088 | " \n", 1089 | " \n", 1090 | " \n", 1091 | " \n", 1092 | " \n", 1093 | " \n", 1094 | " \n", 1095 | " \n", 1096 | " \n", 1097 | " \n", 1098 | " \n", 1099 | " \n", 1100 | " \n", 1101 | " \n", 1102 | " \n", 1103 | " \n", 1104 | " \n", 1105 | " \n", 1106 | " \n", 1107 | " \n", 1108 | " \n", 1109 | " \n", 1110 | " \n", 1111 | " \n", 1112 | " \n", 1113 | " \n", 1114 | " \n", 1115 | " \n", 1116 | " \n", 1117 | " \n", 1118 | " \n", 1119 | " \n", 1120 | " \n", 1121 | " \n", 1122 | " \n", 1123 | " \n", 1124 | " \n", 1125 | " \n", 1126 | " \n", 1127 | " \n", 1128 | " \n", 1129 | " \n", 1130 | " \n", 1131 | " \n", 1132 | " \n", 1133 | " \n", 1134 | " \n", 1135 | " \n", 1136 | " \n", 1137 | " \n", 1138 | " \n", 1139 | " \n", 1140 | " \n", 1141 | " \n", 1142 | " \n", 1143 | " \n", 1144 | " \n", 1145 | " \n", 1146 | " \n", 1147 | " \n", 1148 | " \n", 1149 | " \n", 1150 | " \n", 1151 | " \n", 1152 | " \n", 1153 | " \n", 1154 | " \n", 1155 | " \n", 1156 | " \n", 1157 | " \n", 1158 | " \n", 1159 | " \n", 1160 | " \n", 1161 | " \n", 1162 | " \n", 1163 | " \n", 1164 | " \n", 1165 | " \n", 1166 | " \n", 1167 | " \n", 1168 | " \n", 1169 | " \n", 1170 | " \n", 1171 | " \n", 1172 | " \n", 1173 | " \n", 1174 | " \n", 1175 | " \n", 1176 | " \n", 1177 | " \n", 1178 | " \n", 1179 | " \n", 1180 | " \n", 1181 | " \n", 1182 | " \n", 1183 | " \n", 1184 | " \n", 1185 | " \n", 1186 | " \n", 1187 | " \n", 1188 | " \n", 1189 | " \n", 1190 | " \n", 1191 | " \n", 1192 | " \n", 1193 | " \n", 1194 | " \n", 1195 | " \n", 1196 | " \n", 1197 | " \n", 1198 | " \n", 1199 | " \n", 1200 | " \n", 1201 | " \n", 1202 | " \n", 1203 | " \n", 1204 | " \n", 1205 | " \n", 1206 | " \n", 1207 | " \n", 1208 | " \n", 1209 | " \n", 1210 | " \n", 1211 | " \n", 1212 | " \n", 1213 | " \n", 1214 | " \n", 1215 | " \n", 1216 | " \n", 1217 | " \n", 1218 | " \n", 1219 | " \n", 1220 | " \n", 1221 | " \n", 1222 | " \n", 1223 | " \n", 1224 | " \n", 1225 | " \n", 1226 | " \n", 1227 | " \n", 1228 | " \n", 1229 | " \n", 1230 | " \n", 1231 | " \n", 1232 | " \n", 1233 | " \n", 1234 | " \n", 1235 | " \n", 1236 | " \n", 1237 | " \n", 1238 | " \n", 1239 | " \n", 1240 | " \n", 1241 | " \n", 1242 | " \n", 1243 | " \n", 1244 | " \n", 1245 | " \n", 1246 | " \n", 1247 | " \n", 1248 | " \n", 1249 | " \n", 1250 | " \n", 1251 | " \n", 1252 | " \n", 1253 | " \n", 1254 | " \n", 1255 | " \n", 1256 | " \n", 1257 | " \n", 1258 | " \n", 1259 | " \n", 1260 | " \n", 1261 | " \n", 1262 | " \n", 1263 | " \n", 1264 | " \n", 1265 | " \n", 1266 | " \n", 1267 | " \n", 1268 | " \n", 1269 | " \n", 1270 | " \n", 1271 | " \n", 1272 | " \n", 1273 | " \n", 1274 | " \n", 1275 | " \n", 1276 | " \n", 1277 | " \n", 1278 | " \n", 1279 | " \n", 1280 | " \n", 1281 | " \n", 1282 | " \n", 1283 | " \n", 1284 | " \n", 1285 | " \n", 1286 | " \n", 1287 | " \n", 1288 | " \n", 1289 | " \n", 1290 | " \n", 1291 | " \n", 1292 | " \n", 1293 | " \n", 1294 | " \n", 1295 | " \n", 1296 | " \n", 1297 | " \n", 1298 | " \n", 1299 | " \n", 1300 | " \n", 1301 | " \n", 1302 | " \n", 1303 | " \n", 1304 | " \n", 1305 | " \n", 1306 | " \n", 1307 | " \n", 1308 | " \n", 1309 | " \n", 1310 | " \n", 1311 | " \n", 1312 | " \n", 1313 | " \n", 1314 | " \n", 1315 | " \n", 1316 | " \n", 1317 | " \n", 1318 | " \n", 1319 | " \n", 1320 | " \n", 1321 | " \n", 1322 | " \n", 1323 | " \n", 1324 | " \n", 1325 | " \n", 1326 | " \n", 1327 | " \n", 1328 | " \n", 1329 | " \n", 1330 | " \n", 1331 | " \n", 1332 | " \n", 1333 | " \n", 1334 | " \n", 1335 | " \n", 1336 | " \n", 1337 | " \n", 1338 | " \n", 1339 | " \n", 1340 | " \n", 1341 | " \n", 1342 | " \n", 1343 | " \n", 1344 | " \n", 1345 | " \n", 1346 | " \n", 1347 | " \n", 1348 | " \n", 1349 | " \n", 1350 | " \n", 1351 | " \n", 1352 | " \n", 1353 | " \n", 1354 | " \n", 1355 | " \n", 1356 | " \n", 1357 | " \n", 1358 | " \n", 1359 | " \n", 1360 | " \n", 1361 | " \n", 1362 | " \n", 1363 | " \n", 1364 | " \n", 1365 | " \n", 1366 | " \n", 1367 | " \n", 1368 | " \n", 1369 | "
Rap NameRap LikeEra
61Rick Ross51,444 votes2000s
62Twista34,152 votes1990s
63Big Pun28,002 votes1990s
64Raekwon24,683 votes1990s
65J.I.D23,725 votes2020s
66Xzibit44,070 votes2000s
67Scarface33,305 votes1990s
68Lil Dicky5,383 votes2010s
69Will Smith26,314 votes1990s
70Mos Def34,456 votes2000s
71Hopsin27,285 votes2010s
72Big Boi32,577 votes2000s
73G-Eazy61,228 votes2010s
74Slick Rick29,938 votes1980s
75GZA22,168 votes1990s
76Q-Tip23,304 votes1990s
77Prodigy35,486 votes2000s
78Post Malone26,074 votes2020s
79Young Thug24,176 votes2010s
80NF17,992 votes2010s
81Lil Baby13,537 votes2020s
82T-Pain15,293 votes2000s
83Coolio14,119 votes1990s
84Polo G9,695 votes2020s
85MC Ren9,646 votes1980s
86Lupe Fiasco17,836 votes2000s
87Quavo9,582 votes2020s
88Common17,586 votes2000s
89E-4031,916 votes1990s
90Fat Joe19,617 votes1990s
91Roddy Ricch47,404 votes2020s
92DaBaby20,355 votes2020s
93YG14,664 votes2010s
94Grandmaster Flash7,459 votes1980s
95KRS-One10,139 votes1980s
96Big Daddy Kane16,006 votes1980s
97Pharrell Williams15,556 votes2000s
98Juicy J50,620 votes2000s
99Kurupt28,500 votes2000s
100Vince Staples16,261 votes2010s
101Nicki Minaj19,098 votes2010s
102A Boogie wit da Hoodie10,280 votes2020s
103Playboi Carti4,784 votes2020s
104NLE Choppa5,818 votes2020s
105N.W.ANaN1980s
106Public EnemyNaN1980s
107Kurtis Blow\"\"1980s
108De La Soul\"\"1980s
109Chuck D\"\"1980s
110Doja Cat\"\"2020s
111Jack Harlow\"\"2020s
112lil nas x\"\"2020s
113lil Durk\"\"2020s
114Baby Keem\"\"2020s
115JPEGMAFIA\"\"2020s
116Death Grips\"\"2020s
117BROCKHAMPTON\"\"2020s
118JIDNaN2020s
119Denzel Curry\"\"2020s
120Isaiah Rashad\"\"2010s
\n", 1370 | "
" 1371 | ], 1372 | "text/plain": [ 1373 | " Rap Name Rap Like Era\n", 1374 | "61 Rick Ross 51,444 votes 2000s\n", 1375 | "62 Twista 34,152 votes 1990s\n", 1376 | "63 Big Pun 28,002 votes 1990s\n", 1377 | "64 Raekwon 24,683 votes 1990s\n", 1378 | "65 J.I.D 23,725 votes 2020s\n", 1379 | "66 Xzibit 44,070 votes 2000s\n", 1380 | "67 Scarface 33,305 votes 1990s\n", 1381 | "68 Lil Dicky 5,383 votes 2010s\n", 1382 | "69 Will Smith 26,314 votes 1990s\n", 1383 | "70 Mos Def 34,456 votes 2000s\n", 1384 | "71 Hopsin 27,285 votes 2010s\n", 1385 | "72 Big Boi 32,577 votes 2000s\n", 1386 | "73 G-Eazy 61,228 votes 2010s\n", 1387 | "74 Slick Rick 29,938 votes 1980s\n", 1388 | "75 GZA 22,168 votes 1990s\n", 1389 | "76 Q-Tip 23,304 votes 1990s\n", 1390 | "77 Prodigy 35,486 votes 2000s\n", 1391 | "78 Post Malone 26,074 votes 2020s\n", 1392 | "79 Young Thug 24,176 votes 2010s\n", 1393 | "80 NF 17,992 votes 2010s\n", 1394 | "81 Lil Baby 13,537 votes 2020s\n", 1395 | "82 T-Pain 15,293 votes 2000s\n", 1396 | "83 Coolio 14,119 votes 1990s\n", 1397 | "84 Polo G 9,695 votes 2020s\n", 1398 | "85 MC Ren 9,646 votes 1980s\n", 1399 | "86 Lupe Fiasco 17,836 votes 2000s\n", 1400 | "87 Quavo 9,582 votes 2020s\n", 1401 | "88 Common 17,586 votes 2000s\n", 1402 | "89 E-40 31,916 votes 1990s\n", 1403 | "90 Fat Joe 19,617 votes 1990s\n", 1404 | "91 Roddy Ricch 47,404 votes 2020s\n", 1405 | "92 DaBaby 20,355 votes 2020s\n", 1406 | "93 YG 14,664 votes 2010s\n", 1407 | "94 Grandmaster Flash 7,459 votes 1980s\n", 1408 | "95 KRS-One 10,139 votes 1980s\n", 1409 | "96 Big Daddy Kane 16,006 votes 1980s\n", 1410 | "97 Pharrell Williams 15,556 votes 2000s\n", 1411 | "98 Juicy J 50,620 votes 2000s\n", 1412 | "99 Kurupt 28,500 votes 2000s\n", 1413 | "100 Vince Staples 16,261 votes 2010s\n", 1414 | "101 Nicki Minaj 19,098 votes 2010s\n", 1415 | "102 A Boogie wit da Hoodie 10,280 votes 2020s\n", 1416 | "103 Playboi Carti 4,784 votes 2020s\n", 1417 | "104 NLE Choppa 5,818 votes 2020s\n", 1418 | "105 N.W.A NaN 1980s\n", 1419 | "106 Public Enemy NaN 1980s\n", 1420 | "107 Kurtis Blow \"\" 1980s\n", 1421 | "108 De La Soul \"\" 1980s\n", 1422 | "109 Chuck D \"\" 1980s\n", 1423 | "110 Doja Cat \"\" 2020s\n", 1424 | "111 Jack Harlow \"\" 2020s\n", 1425 | "112 lil nas x \"\" 2020s\n", 1426 | "113 lil Durk \"\" 2020s\n", 1427 | "114 Baby Keem \"\" 2020s\n", 1428 | "115 JPEGMAFIA \"\" 2020s\n", 1429 | "116 Death Grips \"\" 2020s\n", 1430 | "117 BROCKHAMPTON \"\" 2020s\n", 1431 | "118 JID NaN 2020s\n", 1432 | "119 Denzel Curry \"\" 2020s\n", 1433 | "120 Isaiah Rashad \"\" 2010s" 1434 | ] 1435 | }, 1436 | "execution_count": 91, 1437 | "metadata": {}, 1438 | "output_type": "execute_result" 1439 | } 1440 | ], 1441 | "source": [ 1442 | "rap.tail(60)" 1443 | ] 1444 | }, 1445 | { 1446 | "cell_type": "code", 1447 | "execution_count": 97, 1448 | "metadata": {}, 1449 | "outputs": [], 1450 | "source": [ 1451 | "#remove Rap Like column from df\n", 1452 | "#rap = rap.drop(['Rap Like'], axis=1)\n", 1453 | "#rap.head()\n", 1454 | "\n", 1455 | "#write to csv\n", 1456 | "rap.to_csv('/home/lettuce/MyCode/pandasproject/rap_hold.csv', index=False)" 1457 | ] 1458 | } 1459 | ], 1460 | "metadata": { 1461 | "kernelspec": { 1462 | "display_name": "Python 3", 1463 | "language": "python", 1464 | "name": "python3" 1465 | }, 1466 | "language_info": { 1467 | "codemirror_mode": { 1468 | "name": "ipython", 1469 | "version": 3 1470 | }, 1471 | "file_extension": ".py", 1472 | "mimetype": "text/x-python", 1473 | "name": "python", 1474 | "nbconvert_exporter": "python", 1475 | "pygments_lexer": "ipython3", 1476 | "version": "3.10.6" 1477 | }, 1478 | "orig_nbformat": 4 1479 | }, 1480 | "nbformat": 4, 1481 | "nbformat_minor": 2 1482 | } 1483 | -------------------------------------------------------------------------------- /csv/rap_end.csv: -------------------------------------------------------------------------------- 1 | Artist Name,the,you,i,a,and,to,in,my,it,up,me,on,your,im,of,that,with,like,is,we,but,this,all,just,be,got,for,when,get,dont,they,thats,its,yeah,way,nigga,know,see,what,do,no,now,cause,if,never,back,aint,was,one,bitch,hol,out,so,fuck,youre,ya,down,as,go,shit,take,em,from,can,how,niggas,love,biggie,money,come,are,he,let,not,head,make,why,at,or,then,uh,say,drank,good,feel,who,tell,had,off,cant,lil,sit,some,might,still,man,think,wanna,call,life,right,these,have,time,only,keep,fuckin,bish,ill,day,inside,yo,better,mama,hit,lyrics,well,oh,where,even,ima,him,gotta,yooooh,nothin,also,two,boy,big,through,our,oohooh,rap,same,too,about,us,them,want,ride,monster,dna,baby,hold,give,die,gonna,hes,full,every,broke,friends,little,god,crazy,his,humble,ayy,her,gun,here,words,hail,lookin,mary,front,made,by,gon,la,real,yourself,own,shot,run,ooh,liquor,tryin,black,paid,whole,bad,poppa,gettin,things,nah,crack,will,hypnotize,motherfuckin,kill,people,an,she,place,than,uhhuh,next,ass,been,did,sometimes,guess,hoes,blow,girl,pool,more,show,while,around,livin,dollar,hell,ayo,there,ways,1,theres,wake,shots,said,da,lady,look,dive,number,change,dead,need,music,enough,new,put,lose,bang,pass,under,kids,thingsll,though,wont,once,kendrick,live,over,lets,please,watch,comin,somethin,sick,flashy,stay,brother,aww,feelin,turn,moment,used,til,smoke,miss,school,face,sleep,really,leave,knows,stop,talk,since,first,last,sweet,fucked,blood,tryna,quick,killed,goes,into,body,along,motherfucker,id,would,world,hood,check,crew,junior,mad,shoot,should,came,drop,goin,dick,after,mind,car,three,game,nobody,bring,hopin,always,their,other,hey,women,child,hope,dada,doin,forever,home,ever,fire,city,opportunity,faded,told,thought,peace,very,reach,many,close,girls,could,play,smalls,high,wonder,damn,ladies,yous,playin,straight,name,2,pull,few,bout,white,mother,street,fact,again,ive,set,before,streets,motherfuckers,thug,hate,another,huh,everybody,mouth,changes,bein,pay,stand,trip,everything,appreciated,pain,chance,comes,save,hustlin,feed,rock,smokin,eat,stars,plenty,went,bed,true,throw,havin,end,understand,try,night,six,easy,3,4,5,years,rules,listen,break,/,2pac,didnt,block,open,each,old,war,raise,woman,left,work,dear,low,nod,rappers,outta,dance,lifetime,louis,voices,hundred,holdin,yawk,chopper,swimming,sherane,above,daughter,sayin,word,attack,remember,kid,clothes,haha,brooklyn,honeys,hear,speak,five,phone,thinkin,m.a.f.i.a.,believe,player,tonight,most,buy,fill,top,aw,hard,talkin,probably,guns,crime,drugs,track,beat,sister,bitches,walk,four,half,homie,9,boys,done,heard,king,fat,drama,pop,funk,somebody,myself,dark,evil,seems,cool,long,young,brighter,rough,gave,mic,hand,father,free,pour,beginnin,fame,flock,times,normal,am,wanted,godzilla,breath,lamar,liveget 2 | Total,659.0,510.0,458.0,386.0,363.0,338.0,223.0,220.0,220.0,209.0,201.0,173.0,167.0,158.0,152.0,151.0,129.0,121.0,120.0,115.0,112.0,110.0,106.0,105.0,101.0,93.0,91.0,90.0,87.0,82.0,80.0,80.0,77.0,74.0,73.0,72.0,69.0,69.0,65.0,64.0,63.0,61.0,61.0,61.0,59.0,59.0,59.0,58.0,58.0,58.0,57.0,56.0,56.0,54.0,54.0,54.0,53.0,53.0,50.0,50.0,47.0,47.0,47.0,45.0,45.0,44.0,43.0,43.0,42.0,42.0,40.0,39.0,37.0,37.0,37.0,36.0,36.0,36.0,35.0,35.0,34.0,33.0,33.0,32.0,32.0,31.0,31.0,30.0,30.0,30.0,30.0,30.0,29.0,29.0,29.0,29.0,29.0,29.0,28.0,27.0,27.0,27.0,27.0,26.0,26.0,26.0,26.0,26.0,25.0,25.0,25.0,24.0,23.0,23.0,23.0,22.0,22.0,22.0,21.0,21.0,21.0,21.0,21.0,21.0,20.0,20.0,20.0,20.0,20.0,20.0,20.0,20.0,19.0,19.0,19.0,19.0,19.0,19.0,19.0,19.0,19.0,19.0,18.0,18.0,18.0,18.0,18.0,18.0,18.0,17.0,17.0,17.0,17.0,17.0,17.0,17.0,17.0,17.0,16.0,16.0,16.0,16.0,16.0,16.0,16.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,15.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,14.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,13.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,12.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,11.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,10.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,9.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,8.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,7.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,6.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0,5.0 3 | The Notorious B.I.G.,101.0,105.0,84.0,50.0,78.0,64.0,39.0,46.0,34.0,35.0,51.0,35.0,55.0,16.0,19.0,32.0,25.0,26.0,13.0,11.0,8.0,17.0,29.0,27.0,11.0,13.0,26.0,20.0,10.0,20.0,24.0,22.0,20.0,12.0,4.0,28.0,25.0,15.0,15.0,8.0,13.0,15.0,15.0,17.0,11.0,8.0,8.0,7.0,8.0,1.0,0.0,6.0,15.0,8.0,15.0,1.0,6.0,2.0,11.0,17.0,6.0,8.0,8.0,8.0,4.0,15.0,21.0,37.0,9.0,14.0,6.0,3.0,8.0,12.0,3.0,4.0,16.0,8.0,1.0,0.0,23.0,3.0,0.0,20.0,1.0,11.0,8.0,8.0,3.0,15.0,0.0,0.0,7.0,5.0,3.0,12.0,4.0,4.0,16.0,3.0,13.0,6.0,3.0,4.0,4.0,7.0,7.0,0.0,5.0,3.0,0.0,5.0,1.0,1.0,3.0,5.0,5.0,1.0,4.0,2.0,1.0,1.0,2.0,0.0,3.0,5.0,5.0,2.0,12.0,2.0,0.0,0.0,1.0,2.0,3.0,4.0,8.0,4.0,5.0,1.0,0.0,0.0,13.0,8.0,4.0,2.0,1.0,1.0,0.0,6.0,11.0,6.0,2.0,3.0,1.0,0.0,0.0,0.0,6.0,3.0,1.0,10.0,1.0,0.0,0.0,2.0,2.0,3.0,4.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,1.0,5.0,11.0,2.0,3.0,14.0,5.0,1.0,2.0,6.0,1.0,14.0,0.0,0.0,2.0,2.0,9.0,4.0,3.0,13.0,2.0,6.0,4.0,3.0,10.0,10.0,7.0,2.0,4.0,1.0,3.0,2.0,3.0,1.0,2.0,1.0,2.0,10.0,3.0,10.0,10.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,10.0,1.0,4.0,2.0,1.0,1.0,2.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,3.0,1.0,6.0,3.0,1.0,2.0,4.0,10.0,2.0,0.0,0.0,0.0,0.0,0.0,5.0,2.0,2.0,2.0,1.0,2.0,1.0,2.0,4.0,2.0,1.0,2.0,1.0,1.0,2.0,1.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,3.0,1.0,1.0,5.0,5.0,4.0,5.0,4.0,4.0,1.0,1.0,3.0,3.0,1.0,1.0,3.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,3.0,2.0,5.0,6.0,4.0,3.0,3.0,1.0,2.0,5.0,2.0,1.0,2.0,4.0,3.0,3.0,1.0,2.0,6.0,2.0,2.0,1.0,2.0,2.0,1.0,1.0,1.0,1.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.0,2.0,2.0,2.0,1.0,5.0,4.0,1.0,1.0,5.0,5.0,3.0,1.0,1.0,1.0,1.0,2.0,1.0,5.0,5.0,5.0,2.0,2.0,1.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,2.0,3.0,1.0,2.0,1.0,5.0,1.0,4.0,5.0,1.0,3.0,2.0,2.0,1.0,2.0,2.0,3.0,3.0,2.0,2.0,3.0,1.0,3.0,1.0,3.0,1.0,2.0,2.0,1.0,2.0,1.0,1.0,1.0,1.0,2.0,2.0,2.0,2.0,1.0,1.0,3.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 4 | Tupac,194.0,151.0,116.0,90.0,104.0,104.0,42.0,57.0,71.0,49.0,56.0,53.0,31.0,24.0,27.0,19.0,37.0,15.0,53.0,74.0,33.0,24.0,27.0,21.0,28.0,20.0,28.0,33.0,24.0,31.0,25.0,27.0,24.0,34.0,41.0,18.0,21.0,29.0,16.0,25.0,26.0,26.0,14.0,15.0,25.0,19.0,28.0,19.0,12.0,4.0,0.0,16.0,7.0,21.0,13.0,28.0,5.0,14.0,7.0,9.0,29.0,15.0,14.0,16.0,13.0,17.0,16.0,5.0,24.0,23.0,14.0,8.0,13.0,0.0,17.0,12.0,12.0,2.0,13.0,6.0,8.0,6.0,0.0,1.0,9.0,5.0,7.0,9.0,5.0,9.0,3.0,0.0,10.0,5.0,5.0,5.0,5.0,11.0,3.0,10.0,5.0,4.0,10.0,10.0,2.0,14.0,3.0,0.0,5.0,3.0,2.0,7.0,3.0,20.0,6.0,5.0,6.0,16.0,2.0,10.0,2.0,6.0,12.0,0.0,4.0,5.0,4.0,6.0,1.0,8.0,14.0,0.0,1.0,9.0,7.0,5.0,10.0,3.0,1.0,12.0,0.0,0.0,2.0,5.0,5.0,12.0,7.0,3.0,1.0,3.0,2.0,3.0,12.0,4.0,4.0,5.0,1.0,0.0,3.0,2.0,8.0,3.0,15.0,3.0,16.0,1.0,5.0,3.0,1.0,14.0,9.0,0.0,4.0,2.0,9.0,13.0,2.0,6.0,7.0,2.0,4.0,8.0,0.0,6.0,12.0,0.0,6.0,7.0,0.0,6.0,6.0,2.0,0.0,1.0,5.0,4.0,0.0,1.0,3.0,1.0,5.0,1.0,1.0,0.0,1.0,2.0,0.0,2.0,4.0,4.0,6.0,4.0,1.0,6.0,2.0,5.0,1.0,0.0,7.0,1.0,2.0,3.0,12.0,12.0,0.0,0.0,0.0,9.0,1.0,3.0,0.0,1.0,3.0,2.0,1.0,0.0,2.0,3.0,8.0,11.0,7.0,3.0,0.0,0.0,4.0,1.0,5.0,4.0,1.0,5.0,1.0,1.0,0.0,3.0,9.0,10.0,4.0,1.0,0.0,2.0,4.0,2.0,0.0,1.0,2.0,2.0,2.0,4.0,0.0,2.0,0.0,3.0,3.0,1.0,8.0,4.0,0.0,4.0,8.0,2.0,1.0,2.0,2.0,1.0,2.0,4.0,0.0,3.0,0.0,2.0,2.0,4.0,0.0,0.0,3.0,3.0,2.0,1.0,0.0,2.0,1.0,0.0,0.0,5.0,3.0,5.0,6.0,7.0,2.0,7.0,2.0,6.0,8.0,3.0,8.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,2.0,1.0,2.0,0.0,1.0,1.0,3.0,0.0,3.0,0.0,2.0,2.0,3.0,1.0,3.0,1.0,0.0,1.0,1.0,0.0,1.0,0.0,4.0,2.0,4.0,1.0,2.0,0.0,0.0,2.0,1.0,4.0,7.0,6.0,5.0,2.0,5.0,1.0,2.0,7.0,3.0,6.0,1.0,2.0,3.0,7.0,1.0,0.0,0.0,0.0,0.0,1.0,1.0,4.0,2.0,1.0,1.0,1.0,0.0,0.0,0.0,2.0,1.0,4.0,4.0,2.0,0.0,2.0,0.0,0.0,0.0,3.0,3.0,0.0,1.0,2.0,5.0,6.0,3.0,3.0,6.0,2.0,4.0,5.0,6.0,2.0,2.0,6.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.0,0.0,0.0,1.0,2.0,2.0,1.0,0.0,3.0,1.0,0.0,3.0,0.0,1.0,1.0,0.0,3.0,1.0,1.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,1.0,3.0,1.0,2.0,4.0,2.0,1.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,0.0,1.0,4.0,1.0,1.0,1.0,2.0,3.0,2.0,5.0,1.0,2.0,3.0,5.0,3.0,3.0,1.0,1.0,3.0,2.0,1.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 5 | Eminem,195.0,155.0,122.0,155.0,107.0,125.0,72.0,55.0,68.0,20.0,57.0,44.0,40.0,100.0,56.0,38.0,42.0,52.0,22.0,6.0,58.0,40.0,23.0,22.0,30.0,23.0,23.0,21.0,39.0,21.0,15.0,15.0,26.0,15.0,9.0,0.0,13.0,6.0,23.0,16.0,11.0,10.0,26.0,14.0,13.0,23.0,8.0,15.0,18.0,14.0,0.0,13.0,28.0,10.0,23.0,1.0,3.0,21.0,23.0,5.0,8.0,17.0,14.0,15.0,9.0,0.0,3.0,1.0,2.0,4.0,15.0,19.0,10.0,19.0,8.0,13.0,2.0,16.0,10.0,5.0,1.0,11.0,0.0,2.0,9.0,11.0,3.0,8.0,14.0,5.0,3.0,1.0,3.0,5.0,16.0,7.0,19.0,7.0,9.0,4.0,4.0,15.0,11.0,6.0,15.0,4.0,12.0,0.0,13.0,12.0,7.0,9.0,18.0,1.0,4.0,7.0,10.0,5.0,2.0,6.0,7.0,8.0,5.0,21.0,10.0,5.0,2.0,11.0,4.0,5.0,0.0,20.0,16.0,3.0,6.0,9.0,0.0,2.0,8.0,0.0,19.0,0.0,1.0,3.0,9.0,1.0,5.0,14.0,4.0,3.0,2.0,7.0,3.0,9.0,11.0,8.0,0.0,2.0,6.0,3.0,5.0,3.0,0.0,10.0,0.0,5.0,5.0,4.0,1.0,0.0,1.0,10.0,10.0,9.0,3.0,1.0,0.0,7.0,2.0,1.0,5.0,2.0,0.0,2.0,1.0,0.0,1.0,5.0,0.0,8.0,4.0,5.0,9.0,0.0,1.0,4.0,0.0,8.0,0.0,1.0,3.0,2.0,1.0,3.0,9.0,0.0,0.0,6.0,1.0,5.0,5.0,1.0,0.0,3.0,0.0,3.0,1.0,1.0,4.0,2.0,0.0,4.0,0.0,0.0,9.0,0.0,0.0,1.0,3.0,6.0,10.0,6.0,3.0,6.0,9.0,0.0,2.0,5.0,2.0,0.0,3.0,4.0,10.0,0.0,1.0,5.0,4.0,0.0,0.0,3.0,2.0,3.0,0.0,1.0,0.0,0.0,2.0,3.0,10.0,2.0,2.0,2.0,6.0,3.0,5.0,3.0,5.0,1.0,6.0,6.0,5.0,2.0,0.0,3.0,0.0,0.0,5.0,2.0,1.0,3.0,8.0,7.0,0.0,6.0,3.0,2.0,2.0,2.0,0.0,0.0,0.0,0.0,3.0,4.0,1.0,0.0,2.0,2.0,3.0,2.0,3.0,0.0,2.0,1.0,3.0,0.0,0.0,0.0,3.0,1.0,5.0,2.0,0.0,1.0,0.0,1.0,1.0,4.0,4.0,8.0,1.0,8.0,0.0,3.0,0.0,0.0,2.0,0.0,2.0,1.0,0.0,3.0,1.0,0.0,0.0,2.0,3.0,0.0,0.0,3.0,3.0,4.0,0.0,1.0,1.0,1.0,2.0,0.0,0.0,2.0,3.0,3.0,3.0,5.0,0.0,0.0,0.0,1.0,1.0,0.0,2.0,4.0,0.0,3.0,1.0,0.0,2.0,3.0,0.0,1.0,7.0,7.0,7.0,0.0,3.0,2.0,0.0,1.0,0.0,0.0,2.0,5.0,1.0,1.0,1.0,2.0,1.0,1.0,3.0,4.0,2.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,3.0,1.0,0.0,0.0,1.0,0.0,4.0,0.0,1.0,0.0,2.0,1.0,0.0,0.0,6.0,2.0,5.0,5.0,6.0,4.0,6.0,2.0,5.0,0.0,0.0,0.0,0.0,1.0,3.0,2.0,0.0,2.0,0.0,3.0,0.0,1.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,0.0,1.0,1.0,0.0,0.0,1.0,2.0,1.0,0.0,3.0,1.0,1.0,0.0,0.0,0.0,2.0,2.0,0.0,1.0,3.0,1.0,3.0,1.0,1.0,1.0,1.0,0.0,4.0,2.0,1.0,2.0,0.0,1.0,3.0,0.0,2.0,0.0,0.0,3.0,1.0,0.0,1.0,2.0,4.0,2.0,2.0,0.0,0.0,5.0,5.0,1.0,3.0,5.0,2.0,5.0,5.0,5.0,0.0,0.0 6 | Kendrick Lamar,169.0,99.0,136.0,91.0,74.0,45.0,70.0,62.0,47.0,105.0,37.0,41.0,41.0,18.0,50.0,62.0,25.0,28.0,32.0,24.0,13.0,29.0,27.0,35.0,32.0,37.0,14.0,16.0,14.0,10.0,16.0,16.0,7.0,13.0,19.0,26.0,10.0,19.0,11.0,15.0,13.0,10.0,6.0,15.0,10.0,9.0,15.0,17.0,20.0,39.0,57.0,21.0,6.0,15.0,3.0,24.0,39.0,16.0,9.0,19.0,4.0,7.0,11.0,6.0,19.0,12.0,3.0,0.0,7.0,1.0,5.0,9.0,6.0,6.0,9.0,7.0,6.0,10.0,11.0,24.0,2.0,13.0,33.0,9.0,13.0,4.0,13.0,5.0,8.0,1.0,24.0,29.0,9.0,14.0,5.0,5.0,1.0,7.0,0.0,10.0,5.0,2.0,3.0,6.0,5.0,1.0,4.0,26.0,2.0,7.0,16.0,3.0,1.0,1.0,10.0,5.0,1.0,0.0,13.0,3.0,11.0,6.0,2.0,0.0,3.0,5.0,9.0,1.0,3.0,5.0,6.0,0.0,1.0,5.0,3.0,1.0,1.0,10.0,5.0,6.0,0.0,19.0,2.0,2.0,0.0,3.0,5.0,0.0,13.0,5.0,2.0,1.0,0.0,1.0,1.0,4.0,16.0,15.0,1.0,8.0,2.0,0.0,0.0,3.0,0.0,7.0,3.0,5.0,9.0,0.0,2.0,3.0,0.0,4.0,3.0,1.0,13.0,0.0,0.0,0.0,3.0,1.0,0.0,1.0,0.0,12.0,1.0,1.0,0.0,0.0,4.0,4.0,2.0,3.0,3.0,2.0,0.0,2.0,4.0,7.0,2.0,0.0,1.0,2.0,0.0,6.0,11.0,1.0,5.0,0.0,0.0,5.0,10.0,1.0,0.0,1.0,0.0,1.0,0.0,8.0,10.0,5.0,0.0,0.0,3.0,12.0,1.0,0.0,3.0,0.0,0.0,3.0,3.0,1.0,0.0,10.0,6.0,3.0,1.0,0.0,1.0,4.0,1.0,11.0,3.0,1.0,0.0,0.0,6.0,1.0,5.0,2.0,0.0,4.0,1.0,0.0,4.0,6.0,0.0,0.0,1.0,3.0,1.0,4.0,0.0,3.0,0.0,0.0,1.0,0.0,2.0,3.0,5.0,3.0,0.0,3.0,3.0,2.0,0.0,4.0,0.0,0.0,7.0,2.0,1.0,1.0,3.0,2.0,7.0,1.0,1.0,0.0,0.0,0.0,0.0,4.0,3.0,2.0,2.0,3.0,3.0,5.0,3.0,0.0,1.0,3.0,2.0,1.0,3.0,0.0,1.0,0.0,0.0,4.0,0.0,6.0,6.0,2.0,4.0,0.0,7.0,0.0,8.0,1.0,3.0,3.0,0.0,0.0,0.0,0.0,4.0,0.0,4.0,0.0,3.0,1.0,1.0,0.0,3.0,1.0,2.0,0.0,1.0,3.0,4.0,1.0,1.0,1.0,5.0,2.0,3.0,3.0,1.0,0.0,3.0,0.0,1.0,1.0,4.0,2.0,4.0,1.0,0.0,1.0,0.0,6.0,3.0,1.0,0.0,5.0,0.0,0.0,0.0,4.0,0.0,1.0,0.0,2.0,0.0,1.0,2.0,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,1.0,1.0,4.0,3.0,1.0,0.0,0.0,3.0,2.0,0.0,0.0,2.0,0.0,0.0,2.0,3.0,0.0,5.0,0.0,4.0,1.0,1.0,0.0,2.0,0.0,4.0,1.0,6.0,6.0,6.0,6.0,0.0,1.0,1.0,1.0,0.0,1.0,0.0,0.0,0.0,0.0,0.0,1.0,1.0,1.0,1.0,3.0,0.0,1.0,0.0,0.0,3.0,2.0,0.0,3.0,2.0,0.0,0.0,3.0,1.0,2.0,1.0,0.0,0.0,0.0,1.0,0.0,2.0,0.0,1.0,2.0,1.0,3.0,1.0,0.0,2.0,0.0,2.0,4.0,3.0,0.0,2.0,1.0,0.0,4.0,0.0,1.0,0.0,1.0,0.0,0.0,2.0,0.0,3.0,4.0,0.0,0.0,4.0,2.0,0.0,3.0,0.0,0.0,0.0,5.0,5.0 7 | Kendrick Lamar,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 8 | Nas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 9 | Dr. Dre,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 10 | Ice Cube,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 11 | Snoop Dogg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 12 | JAY-Z,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 13 | Kanye West,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 14 | J. Cole,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 15 | Lil Wayne,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 16 | André 3000,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 17 | 50 Cent,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 18 | Eazy-E,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 19 | Drake,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 20 | DMX,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 21 | A$AP Rocky,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 22 | MF Doom,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 23 | Childish Gambino,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 24 | Kid Cudi,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 25 | "Tyler, the Creator",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 26 | Busta Rhymes,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 27 | Travis Scott,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 28 | XXXTentacion,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 29 | Ghostface Killah,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 30 | Chance the Rapper,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 31 | Juice Wrld,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 32 | Logic,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 33 | Nate Dogg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 34 | Wiz Khalifa,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 35 | Future,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 36 | Joey Bada$$,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 37 | Method Man,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 38 | Mac Miller,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 39 | Big Sean,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 40 | Lil Uzi Vert,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 41 | The Game,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 42 | 21 Savage,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 43 | Tech N9ne,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 44 | Meek Mill,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 45 | Joyner Lucas,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 46 | Schoolboy Q,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 47 | 2 Chainz,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 48 | Nelly,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 49 | Gucci Mane,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 50 | Rakim,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 51 | Ski Mask The Slump God,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 52 | Ludacris,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 53 | Chief Keef,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 54 | Ice-T,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 55 | T.I.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 56 | Missy Elliott,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 57 | Warren G,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 58 | Redman,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 59 | LL Cool J,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 60 | DMC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 61 | A$AP Ferg,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 62 | Big L,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 63 | Ol' Dirty Bastard,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 64 | RZA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 65 | Rick Ross,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 66 | Twista,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 67 | Big Pun,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 68 | Raekwon,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 69 | J.I.D,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 70 | Xzibit,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 71 | Scarface,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 72 | Lil Dicky,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 73 | Will Smith,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 74 | Mos Def,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 75 | Hopsin,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 76 | Big Boi,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 77 | G-Eazy,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 78 | Slick Rick,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 79 | GZA,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 80 | Q-Tip,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 81 | Prodigy,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 82 | Post Malone,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 83 | Young Thug,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 84 | NF,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 85 | Lil Baby,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 86 | T-Pain,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 87 | Coolio,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 88 | Polo G,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 89 | MC Ren,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 90 | Lupe Fiasco,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 91 | Quavo,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 92 | Common,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 93 | E-40,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 94 | Fat Joe,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 95 | Roddy Ricch,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 96 | DaBaby,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 97 | YG,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 98 | Grandmaster Flash,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 99 | KRS-One,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 100 | Big Daddy Kane,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 101 | Pharrell Williams,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 102 | Juicy J,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 103 | Kurupt,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 104 | Too $hort,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 105 | Jadakiss,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 106 | Vince Staples,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 107 | Afroman,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 108 | MC Hammer,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 109 | Fabolous,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 110 | Nicki Minaj,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 111 | A Boogie wit da Hoodie,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 112 | B.o.B,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 113 | Jeezy,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 114 | Wyclef Jean,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 115 | Anderson .Paak,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 116 | Playboi Carti,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 117 | Lil Tjay,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 118 | Flo Rida,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 119 | NLE Choppa,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 120 | Obie Trice,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 121 | TI big Silly potato head,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 122 | Queen Latifah,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 123 | Biz Markie,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 124 | Fetty Wap,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 125 | Puff Daddy,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 126 | Waka Flocka Flame,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 127 | Master P,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, 128 | --------------------------------------------------------------------------------