diff --git a/.DS_Store b/.DS_Store index f63cc5a..f68bf02 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..095c19b --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app). + +## Getting Started + +First, run the development server: + +```bash +npm run dev +# or +yarn dev +# or +pnpm dev +# or +bun dev +``` +# In our intermediate project we aimed to create a set of graphs indentifying key trends within our dataset as well as a gameplay that allows the user to input their choices in different attributes (ex. liveliness, energy, danceability, etc.) and the program will offer the user five songs that have matching outputs. This project not only has many implications for helping in the field of AI music, but offers some unique prospectives for the viewers. Additionally the program requires extensive use of databases to work. We were able to successfully create the set of graphs and design the website. +To run clone the repository and in one terminal run + uvicorn backend.main:app --reload +Second terminal for the frontend run + npm run dev +There might be libary issues which might need to be installed either using homebrew or pip. +Such as: + pip install kagglehub +Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. + +You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. + +This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel. + +## Learn More + +To learn more about Next.js, take a look at the following resources: + +- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. +- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. + +You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome! + +## Deploy on Vercel + +The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. + +Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details. diff --git a/backend/__pycache__/main.cpython-312.pyc b/backend/__pycache__/main.cpython-312.pyc index 9f59b44..35b34a6 100644 Binary files a/backend/__pycache__/main.cpython-312.pyc and b/backend/__pycache__/main.cpython-312.pyc differ diff --git a/backend/__pycache__/main.cpython-313.pyc b/backend/__pycache__/main.cpython-313.pyc index 02402af..684755a 100644 Binary files a/backend/__pycache__/main.cpython-313.pyc and b/backend/__pycache__/main.cpython-313.pyc differ diff --git a/backend/main.py b/backend/main.py index 21e0921..faf29eb 100644 --- a/backend/main.py +++ b/backend/main.py @@ -1,21 +1,115 @@ from fastapi import FastAPI +import csv from fastapi.middleware.cors import CORSMiddleware +import kagglehub +from fastapi.responses import JSONResponse +import os +import shutil +song_features = {} app = FastAPI() -# Allow frontend access +song_features = {} + app.add_middleware( CORSMiddleware, - allow_origins=["*"], # Adjust in production + allow_origins=["*"], allow_credentials=True, allow_methods=["*"], allow_headers=["*"], ) +def copy_file(source, destination): + try: + shutil.copy(source, destination) + print(f"File copied from {source} to {destination}") + except Exception as e: + print(f"Error: {e}") + +def reduce_csv_file_inplace(input_file, num_lines): + try: + with open(input_file, 'r+', newline='', encoding='utf-8') as file: + lines = file.readlines() + if len(lines) > num_lines: + file.seek(0) + file.writelines(lines[:num_lines]) + file.truncate() + else: + print("The CSV file has fewer than 500 lines, no truncation needed.") + except Exception as e: + print(f"Error: {e}") + +@app.get("/api/download_dataset") +async def download_dataset(): + try: + folder_path = 'data' + if os.path.exists(folder_path): + shutil.rmtree(folder_path) + os.makedirs(folder_path, exist_ok=True) + temp_path = kagglehub.dataset_download("amitanshjoshi/spotify-1million-tracks") + filename = os.path.basename(temp_path) + final_path = os.path.join(folder_path, filename) + shutil.move(temp_path, final_path) + input_file = 'data/1/spotify_data.csv' + reduce_csv_file_inplace(input_file, 1000) + parseData(input_file) + except Exception as e: + return JSONResponse(status_code=400, content={"message": str(e)}) + @app.get("/api/message") def get_message(): return {"message": "Hello, World!"} +@app.get("/api/data") +def pass_value(): + return song_features + if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=8000) + +default_template = { + "artist_name": None, + "track_name": None, + "track_id": None, + "popularity": None, + "year": None, + "genre": None, + "danceability": None, + "energy": None, + "key": None, + "loudness": None, + "mode": None, + "speechiness": None, + "acousticness": None, + "instrumentalness": None, + "liveness": None, + "valence": None, + "tempo": None, + "duration_ms": None, + "time_signature": None +} + +def parseData(inputfile): + with open(inputfile, newline="", encoding="utf-8") as file: + reader = csv.DictReader(file) + i = 1 + for row in reader: + track_id = i + song_features[track_id] = default_template.copy() + + song_features[track_id]["artist_name"] = row.get("artist_name") + song_features[track_id]["track_name"] = row.get("track_name") + song_features[track_id]["popularity"] = int(row.get("popularity", 0))/10 + song_features[track_id]["key"] = int(row.get("key")) + song_features[track_id]["year"] = int(row.get("year", 0)) + song_features[track_id]["danceability"] = float(row.get("danceability", 0.0))*10 + song_features[track_id]["energy"] = float(row.get("energy", 0.0))*10 + song_features[track_id]["loudness"] = float(row.get("loudness", -60.0))/2 + song_features[track_id]["instrumentalness"] = float(row.get("instrumentalness", 0.0))*10 + song_features[track_id]["liveness"] = float(row.get("liveness", 0.0))*10 + song_features[track_id]["valence"] = float(row.get("valence", 0.0))*10 + song_features[track_id]["tempo"] = float(row.get("tempo", 0))/20 + song_features[track_id]["duration_ms"] = int(row.get("duration_ms", 0)) // 40000 + song_features[track_id]["time_signature"] = int(row.get("time_signature", 0)) + i+=1 \ No newline at end of file diff --git a/data/1/spotify_data.csv b/data/1/spotify_data.csv new file mode 100644 index 0000000..6c3fdf7 --- /dev/null +++ b/data/1/spotify_data.csv @@ -0,0 +1,1000 @@ +,artist_name,track_name,track_id,popularity,year,genre,danceability,energy,key,loudness,mode,speechiness,acousticness,instrumentalness,liveness,valence,tempo,duration_ms,time_signature +0,Jason Mraz,I Won't Give Up,53QF56cjZA9RTuuMZDrSA6,68,2012,acoustic,0.483,0.303,4,-10.058,1,0.0429,0.694,0.0,0.115,0.139,133.406,240166,3 +1,Jason Mraz,93 Million Miles,1s8tP3jP4GZcyHDsjvw218,50,2012,acoustic,0.572,0.454,3,-10.286,1,0.0258,0.477,1.37e-05,0.0974,0.515,140.182,216387,4 +2,Joshua Hyslop,Do Not Let Me Go,7BRCa8MPiyuvr2VU3O9W0F,57,2012,acoustic,0.409,0.234,3,-13.711,1,0.0323,0.338,5e-05,0.0895,0.145,139.832,158960,4 +3,Boyce Avenue,Fast Car,63wsZUhUZLlh1OsyrZq7sz,58,2012,acoustic,0.392,0.251,10,-9.845,1,0.0363,0.807,0.0,0.0797,0.508,204.961,304293,4 +4,Andrew Belle,Sky's Still Blue,6nXIYClvJAfi6ujLiKqEq8,54,2012,acoustic,0.43,0.791,6,-5.419,0,0.0302,0.0726,0.0193,0.11,0.217,171.864,244320,4 +5,Chris Smither,What They Say,24NvptbNKGs6sPy1Vh1O0v,48,2012,acoustic,0.566,0.57,2,-6.42,1,0.0329,0.688,1.73e-06,0.0943,0.96,83.403,166240,4 +6,Matt Wertz,Walking in a Winter Wonderland,0BP7hSvLAG3URGrEvNNbGM,48,2012,acoustic,0.575,0.606,9,-8.197,1,0.03,0.0119,0.0,0.0675,0.364,121.083,152307,4 +7,Green River Ordinance,Dancing Shoes,3Y6BuzQCg9p4yH347Nn8OW,45,2012,acoustic,0.586,0.423,7,-7.459,1,0.0261,0.252,5.83e-06,0.0976,0.318,138.133,232373,4 +8,Jason Mraz,Living in the Moment,3ce7k1L4EkZppZPz1EJWTS,44,2012,acoustic,0.65,0.628,7,-7.16,1,0.0232,0.0483,0.0,0.119,0.7,84.141,235080,4 +9,Boyce Avenue,Heaven,2EKxmYmUdAVXlaHCnnW13o,58,2012,acoustic,0.619,0.28,8,-10.238,0,0.0317,0.73,0.0,0.103,0.292,129.948,250063,4 +10,Tristan Prettyman,Say Anything,1RjEDlhTp2iJXWPdLpa8OM,45,2012,acoustic,0.657,0.43,1,-10.202,1,0.0314,0.534,0.000238,0.12,0.335,91.967,236379,4 +11,David Gray,Money (That's What I Want) - From Jim Beam's Live Music Series,38sSJ12azM6Mic7ajbHKBi,45,2012,acoustic,0.655,0.692,5,-6.217,1,0.0326,0.568,2.34e-05,0.119,0.547,121.455,234270,4 +12,Boyce Avenue,Someone Like You,6VtoP2sJt5oCmPOQIve2sf,55,2012,acoustic,0.439,0.207,1,-9.573,1,0.0297,0.608,0.0,0.186,0.264,136.514,276147,4 +13,Jason Mraz,The Woman I Love,0AYG9AcwqEeqgAw3OvshPC,40,2012,acoustic,0.591,0.647,4,-8.34,1,0.0277,0.067,6.57e-05,0.231,0.678,79.68,190752,4 +14,Eddie Vedder,I Shall Be Released,0J1iFISejodqBIy0Q9AS0N,44,2012,acoustic,0.45,0.713,6,-7.503,0,0.0386,0.157,0.0,0.992,0.36,74.71,283587,4 +15,The Civil Wars,Kingdom Come,1IZc5f9ulw7Ge2eOpQH7w6,41,2012,acoustic,0.497,0.277,4,-11.382,0,0.0373,0.846,4.77e-06,0.111,0.179,81.367,222560,4 +16,Gabrielle Aplin,Home,20kpTTSvI4ok6Gm1uZqtcz,57,2012,acoustic,0.439,0.265,2,-10.72,1,0.0343,0.736,0.0,0.093,0.382,140.494,247002,4 +17,Harley Poe,Transvestities Can Be Cannibals Too,46KacVTVWMkyXS0jf7TwOX,39,2012,acoustic,0.499,0.614,7,-8.175,1,0.0621,0.151,3.52e-06,0.0555,0.605,89.038,276973,4 +18,Ron Pope,One Grain of Sand,3yqJGfvXtPZLiWHVeLWtm8,49,2012,acoustic,0.713,0.824,3,-7.168,1,0.0393,0.106,8.03e-05,0.13,0.696,120.028,207240,4 +19,Sara Bareilles,Once Upon Another Time,7KG9zriC6iP8F1CNihtR8Y,39,2012,acoustic,0.275,0.216,2,-14.504,1,0.0493,0.896,0.0,0.231,0.0551,95.421,324333,5 +20,Harley Poe,The Hearse Song,09ibWmdrePCN2E2Gbm4Aen,39,2012,acoustic,0.512,0.375,11,-9.525,0,0.0652,0.527,0.0,0.109,0.445,183.452,166467,3 +21,Jason Mraz,Winter Wonderland,0zXjeGMMe7esPTvqJCN5d8,36,2012,acoustic,0.609,0.359,5,-6.715,1,0.0468,0.777,0.0,0.221,0.645,145.178,127080,4 +22,Meiko,Stuck On You,4vfioWSgbZSVwsYtPS1a6s,35,2012,acoustic,0.638,0.538,2,-6.667,1,0.034,0.516,0.0,0.0797,0.843,98.591,186640,4 +23,Harley Poe,Ouija,3SUY9IKXcU5VN95FOujS6S,37,2012,acoustic,0.479,0.519,9,-8.022,0,0.0459,0.263,1.84e-06,0.112,0.357,146.819,220160,4 +24,Boyce Avenue,Just the Way You Are,2FSkBDGsqZIxcsnKNgtMLx,53,2012,acoustic,0.531,0.296,1,-7.594,1,0.0304,0.84,0.0,0.124,0.212,106.359,239573,4 +25,Eric Hutchinson,Watching You Watch Him,7j6t0kr66wFLkBjjKxh5FJ,36,2012,acoustic,0.588,0.71,8,-5.974,1,0.0382,0.043,5.28e-06,0.114,0.63,91.036,211027,4 +26,Jason Mraz,Be Honest (feat. Inara George),5T0N6xybJyZq34R1807OTt,36,2012,acoustic,0.757,0.308,11,-13.66,0,0.0449,0.851,0.0,0.097,0.47,107.948,205000,4 +27,Sara Bareilles,Stay,24xqELXbmKDFLKkR3271jb,37,2012,acoustic,0.262,0.341,2,-8.496,1,0.031,0.589,0.00154,0.14,0.181,99.913,262613,3 +28,Harley Poe,Ima Killer,0ijjTpuUC6DGrST4a4l6Gk,36,2012,acoustic,0.461,0.879,4,-7.341,0,0.0946,0.171,5.16e-05,0.414,0.656,172.178,233373,4 +29,Ross Copperman,Holding On and Letting Go,0v0pc1lIt5p6EBX7pnfOGF,44,2012,acoustic,0.486,0.555,2,-9.466,1,0.0271,0.818,0.00269,0.109,0.0992,77.987,317441,4 +30,Harley Poe,Everybody Knows My Name,1fHBkl9GcUZq0I5kFfrR2r,35,2012,acoustic,0.49,0.662,2,-7.63,0,0.0555,0.108,1.45e-05,0.167,0.662,124.229,186640,4 +31,Harley Poe,Still Here,2uUZodl12OHB8K6uZ0jLr3,34,2012,acoustic,0.526,0.527,2,-8.403,1,0.0674,0.434,3.5e-06,0.262,0.666,88.263,82680,4 +32,Johnnyswim,Annie,6SU4bifjXJwueCHG8maEXz,34,2012,acoustic,0.594,0.251,4,-9.036,1,0.0295,0.63,2.8e-06,0.112,0.0502,98.819,270841,4 +33,Eric Hutchinson,Breakdown More,2sqNYse3PoPzzOA2j2jTlZ,33,2012,acoustic,0.598,0.703,0,-7.313,1,0.03,0.104,0.000118,0.141,0.604,77.998,245880,4 +34,Boyce Avenue,Teenage Dream,65MVsQOcfdeFbFRUYdfFq5,44,2012,acoustic,0.654,0.319,2,-8.43,1,0.0322,0.844,0.0,0.0854,0.484,115.578,242107,4 +35,AJJ,Black Dog,279Iabhr2afcc93hAc1YZ8,33,2012,acoustic,0.53,0.249,2,-18.414,1,0.131,0.688,0.0,0.188,0.22,87.265,82027,4 +36,Boyce Avenue,Fix You,2OcZ7956nCJ1OJ6oyNDLtf,48,2012,acoustic,0.421,0.441,3,-8.012,1,0.0271,0.413,8.35e-06,0.118,0.0992,138.07,294737,4 +37,Sara Bareilles,Bright Lights and Cityscapes,7CEWZ0h4rez5BqMQwx4QXf,33,2012,acoustic,0.343,0.184,5,-12.633,1,0.0369,0.977,0.00049,0.0923,0.213,66.509,356093,4 +38,Jason Mraz,Everything Is Sound,61uAuQITuz62vOnGXQslaA,33,2012,acoustic,0.508,0.563,9,-8.238,1,0.0605,0.511,0.0,0.143,0.432,167.42,285547,4 +39,Boyce Avenue,Faithfully,3eGK4zpPPPoHrcUNkb8dUF,36,2012,acoustic,0.509,0.34,6,-8.972,1,0.0335,0.755,1.52e-05,0.101,0.131,130.257,265200,4 +40,Meiko,Leave The Lights On,7esHVZvcWKChIIxGO8mB98,31,2012,acoustic,0.646,0.818,1,-6.469,0,0.0314,0.0348,0.00012,0.0919,0.713,121.931,248373,4 +41,Not Half Bad,We're Going To Hell,47tWBYs1sGtVQdSFhYgF1X,32,2012,acoustic,0.775,0.523,0,-7.462,1,0.0381,0.571,0.0,0.352,0.487,81.037,142240,4 +42,Boyce Avenue,What Makes You Beautiful,1jseyXx3Q0Vfjr5Z6jiUnU,42,2012,acoustic,0.458,0.275,5,-8.241,1,0.0365,0.827,0.0,0.174,0.2,114.158,208893,4 +43,A Fine Frenzy,Now Is The Start,3gEyA6UtRSk1058sev61D6,30,2012,acoustic,0.559,0.781,1,-6.805,1,0.0332,0.00124,0.0353,0.101,0.227,114.962,286429,4 +44,Jason Mraz,The World as I See It,2ORU4XRGqFjPB2mTft0VPj,32,2012,acoustic,0.573,0.747,10,-7.011,1,0.0316,0.164,0.0,0.144,0.464,119.012,239156,4 +45,Get Dead,Fuck You,5DUAKXpyv3nL50PnAQbPS0,32,2012,acoustic,0.608,0.917,11,-5.341,1,0.0601,0.236,0.0,0.13,0.936,117.875,169267,4 +46,Harley Poe,Taxidermy Girl,7pmbRTdvcjnCKJF7WyHzmE,31,2012,acoustic,0.336,0.362,7,-10.046,1,0.0336,0.434,0.000143,0.122,0.455,175.228,278707,3 +47,Sara Bareilles,Sweet As Whole,04BcODyhCDTV7SBFeJHOXe,32,2012,acoustic,0.431,0.352,8,-9.335,1,0.0275,0.742,0.0,0.148,0.246,94.915,277547,3 +48,Chad Hates George,"Shooting Up, Breaking Down (feat. Jesse Sendejas)",1gIXgeL8KPbRCnWvPfZyUJ,30,2012,acoustic,0.488,0.813,0,-7.12,1,0.286,0.699,0.0,0.273,0.583,162.285,208666,4 +49,Taj Mahal,Shady Grove,6MVmw9Ea73B1XQjbAu6uuw,33,2012,acoustic,0.581,0.55,1,-11.719,1,0.0394,0.878,0.742,0.112,0.66,126.128,565787,4 +50,David Ramirez,Find the Light,7jhcBzFm4W2UpFPa9fZFlR,31,2012,acoustic,0.617,0.131,11,-12.775,1,0.0331,0.903,0.000536,0.105,0.394,129.31,197253,4 +51,Ichiko Aoba,kanashii yume o mitara,52RSwU0HHP9ugX2K7j8iar,34,2012,acoustic,0.474,0.0374,5,-20.324,1,0.0479,0.993,0.021,0.102,0.224,135.099,179787,5 +52,Ichiko Aoba,hikari no furusato,7c59LJZv6klezUN3jRCXE6,35,2012,acoustic,0.404,0.0427,3,-19.076,1,0.0397,0.99,0.224,0.0852,0.181,74.137,192147,4 +53,Amos Lee,Simple Things,0GK6pzHhJNuxRPOULLPFo6,33,2012,acoustic,0.498,0.17,10,-11.818,1,0.0341,0.889,0.000561,0.0998,0.165,131.976,201360,4 +54,Jason Mraz,The Freedom Song,7hevpquSrhFLsEUzbDFrWB,33,2012,acoustic,0.661,0.693,6,-7.562,0,0.0578,0.0872,0.0,0.086,0.848,94.045,239987,4 +55,Steve Petrunak,Walking in a Winter Wonderland,3mng76g6guqrd0Lb9gJ0LX,32,2012,acoustic,0.518,0.269,7,-11.957,1,0.0498,0.93,0.857,0.115,0.356,116.262,134120,4 +56,Kris Allen,Better with You,77xgXc56h19AhTLKrWcijW,42,2012,acoustic,0.732,0.712,0,-5.672,1,0.0252,0.17,0.0,0.0809,0.772,101.005,194147,4 +57,Steve Petrunak,Silver Bells,7HKRdvf1PWH1Ml7xJzV2NV,31,2012,acoustic,0.341,0.171,1,-15.618,1,0.0485,0.905,0.909,0.126,0.42,89.618,160040,3 +58,Boyce Avenue,Glad You Came,4LlCL8KQCa5CNStnDg4eSA,40,2012,acoustic,0.722,0.542,6,-8.703,0,0.0371,0.135,0.0,0.168,0.444,125.998,195933,4 +59,Boyce Avenue,Superman,6AyGrpqr2TeGCTXj1nuzbv,41,2012,acoustic,0.587,0.209,9,-10.426,1,0.0304,0.759,0.0,0.113,0.247,105.669,194093,4 +60,Eric Hutchinson,The Basement,5lGimjX5CT7gL0kwB1AqQF,31,2012,acoustic,0.544,0.921,7,-3.93,1,0.0505,0.00348,0.0,0.215,0.65,165.949,214880,4 +61,Tristan Prettyman,My Oh My,4AzRVhbDkK6pqW03h5u34I,28,2012,acoustic,0.69,0.803,0,-6.827,0,0.0242,0.00873,0.354,0.136,0.712,96.042,218587,4 +62,Ann Sally,Mother's Song,3pkVDKAPIhrpsAR79fa05P,30,2012,acoustic,0.27,0.0758,0,-14.469,1,0.0384,0.961,3.55e-05,0.136,0.354,76.388,310640,4 +63,Sara Bareilles,Beautiful Girl,35THgVT9h3X5UTqthKkr4d,29,2012,acoustic,0.708,0.125,7,-12.539,0,0.105,0.961,0.0,0.106,0.383,124.948,242907,4 +64,Harley Poe,I Am The Living Dead,4k5Gc1tzDHNnkMQmB3ArkC,29,2012,acoustic,0.554,0.765,2,-8.252,0,0.0363,0.21,0.000114,0.104,0.767,92.43,205493,4 +65,The Civil Wars,I Heard The Bells On Christmas Day,1qSBHo7rjtqYdd0XJB8ngq,28,2012,acoustic,0.492,0.145,2,-14.504,0,0.0421,0.872,9.7e-06,0.106,0.218,90.078,154440,4 +66,Boyce Avenue,Here Without You,3Fwdij9seLaCGs4yOCQcJM,43,2012,acoustic,0.665,0.559,9,-6.78,0,0.0286,0.684,0.0,0.0843,0.476,143.822,220000,4 +67,Tristan Prettyman,I Was Gonna Marry You,2ikbRpHU3pH3Y0va9we9s6,28,2012,acoustic,0.448,0.455,1,-10.041,1,0.0379,0.318,0.0141,0.0969,0.495,82.726,191720,4 +68,Ingrid Michaelson,Ghost,6UGhHbDZ76PqGR2C9pdWbb,29,2012,acoustic,0.519,0.484,2,-5.808,1,0.0249,0.357,0.0,0.145,0.291,88.03,241640,4 +69,Jason Mraz,You Fckn' Did It - Live,0k78hapVRILyPAdOenCevc,30,2012,acoustic,0.558,0.646,11,-9.822,0,0.071,0.632,0.0,0.972,0.7,124.911,305330,4 +70,Andrew Belle,The Daylight,3fy4r3gnyaNejuc7jZwAxG,32,2012,acoustic,0.721,0.571,1,-5.857,1,0.0282,0.0478,0.17,0.0808,0.574,119.993,282742,4 +71,Ichiko Aoba,IMPERIAL SMOKE TOWN,0awBHWlzmycfbukAxGecCK,31,2012,acoustic,0.511,0.153,10,-18.468,0,0.0651,0.989,0.244,0.0918,0.0568,113.496,437733,3 +72,Steve Petrunak,O Come All Ye Faithful,2VPVtEqfCbxwrgQRdNPKp1,29,2012,acoustic,0.469,0.241,8,-11.934,1,0.0443,0.846,0.976,0.113,0.598,111.097,142253,4 +73,Boyce Avenue,Somebody That I Used to Know,0UrGdW00AYx3eqNmzLHIEf,40,2012,acoustic,0.729,0.408,11,-10.078,0,0.0323,0.345,0.0,0.0957,0.263,120.02,238200,4 +74,Steve Petrunak,Angels We Have Heard on High,4zUrEicnZk7cXYcntIX12b,28,2012,acoustic,0.487,0.17,2,-14.93,1,0.047,0.87,0.58,0.15,0.225,97.965,203853,4 +75,Ingrid Michaelson,How We Love,4FFnf39apAJSeKp1qXNovT,27,2012,acoustic,0.666,0.114,4,-13.755,1,0.0565,0.913,3.25e-06,0.111,0.293,119.791,213640,4 +76,Eric Hutchinson,Not There Yet,3492c69DsiY9PZsjspF2cb,27,2012,acoustic,0.72,0.839,9,-4.138,1,0.0326,0.0772,0.0,0.672,0.968,122.007,205187,4 +77,Steve Petrunak,The Old Guitar,2NXoEhxRepl0NKHYDw9s5N,31,2012,acoustic,0.542,0.342,1,-8.939,1,0.0481,0.851,0.948,0.17,0.17,120.4,165373,4 +78,Jon Bryant,Evening Sun,23FJw5F8nipFrzkZviz5vQ,29,2012,acoustic,0.45,0.254,11,-13.203,1,0.0299,0.756,0.0177,0.104,0.195,77.396,214703,4 +79,Boyce Avenue,The One That Got Away,1Llvr4v5Y0rZtm494ak7oh,42,2012,acoustic,0.655,0.502,8,-7.962,1,0.0349,0.579,0.0,0.117,0.368,123.931,247705,4 +80,Steve Petrunak,Have Yourself a Merry Little Christmas,2aIibN0HnNczY7sQQi4JIg,28,2012,acoustic,0.461,0.135,7,-14.374,1,0.0645,0.947,0.881,0.11,0.197,137.922,159280,4 +81,Otis Spann,Someday (Electric),5ZUxxja3WzBZUFF6P9M9HN,34,2012,acoustic,0.581,0.333,0,-14.209,1,0.032,0.944,0.472,0.332,0.488,94.197,206800,3 +82,Harley Poe,Vampire's Night Out,7jN7uoP2ov1VVo9XguFEio,27,2012,acoustic,0.365,0.522,9,-7.854,1,0.0702,0.174,0.0,0.182,0.492,166.242,252213,4 +83,Harley Poe,That Time Of The Month,7dWYhwVvcWIKsXaPBLdDHg,27,2012,acoustic,0.567,0.609,2,-7.941,1,0.0767,0.173,2.13e-06,0.15,0.522,92.506,257147,4 +84,Boyce Avenue,I Want It That Way,16COzZ7jCVn3O8b8ZgviOx,39,2012,acoustic,0.361,0.273,2,-9.805,1,0.0314,0.798,0.0,0.0962,0.306,199.366,215161,4 +85,Ron Pope,In My Bones,6UkuYlZarpxN8rSG10ewSk,33,2012,acoustic,0.492,0.639,10,-6.067,1,0.0382,0.591,5.53e-06,0.0794,0.304,151.915,208267,4 +86,Joshua Radin,Tomorrow Is Gonna Be Better,24UET6X7UiKFuv0DCutYis,24,2012,acoustic,0.498,0.217,6,-12.042,1,0.0305,0.536,0.00013,0.126,0.605,111.735,169547,4 +87,AJJ,Hate Song for Brains,6WWw88Mk3GFQbtspaY6ddH,26,2012,acoustic,0.533,0.523,2,-5.645,1,0.0284,0.324,8.41e-05,0.116,0.492,145.113,143613,4 +88,Boyce Avenue,Will You Be There,3D2A4RVGIEzqzhXGgzocuU,35,2012,acoustic,0.431,0.383,0,-8.092,1,0.0283,0.709,0.0,0.109,0.232,82.471,207629,4 +89,Boyce Avenue,A Thousand Miles,4vNGuGIIzh6soeBTw8hjfq,41,2012,acoustic,0.564,0.731,9,-7.538,1,0.0295,0.517,3.48e-06,0.105,0.257,95.036,244174,4 +90,Boyce Avenue,With or Without You,6sT9s9sILm7LkgVzyjwcEP,38,2012,acoustic,0.483,0.285,5,-8.994,1,0.0271,0.791,0.0,0.13,0.116,105.42,243187,4 +91,Boyce Avenue,Breakeven (Falling to Pieces),5A0Bjgk5tQM3hRWxPpafmd,35,2012,acoustic,0.604,0.324,7,-9.706,1,0.0306,0.598,0.0,0.136,0.407,92.636,255242,4 +92,Jaymay,Niagara Falls,4lomrPZgyfrilub7E92rdj,28,2012,acoustic,0.485,0.208,6,-10.049,1,0.0295,0.809,0.000147,0.138,0.136,92.942,119493,4 +93,Boyce Avenue,Wherever You Will Go,6qrmX6Kzw4Yhrftev3RENE,39,2012,acoustic,0.669,0.31,2,-7.844,1,0.0273,0.619,0.0,0.108,0.199,112.075,204888,4 +94,Boyce Avenue,Payphone,1jfvBRXzBY2eCzF75i67qw,41,2012,acoustic,0.65,0.655,7,-5.358,1,0.0309,0.213,0.0,0.134,0.546,109.931,218124,4 +95,Jason Mraz,I Won't Give Up - Demo,6RLkxQmjmbB6ItZBOwSK73,28,2012,acoustic,0.467,0.234,4,-10.538,1,0.0362,0.821,2.15e-06,0.105,0.126,142.718,315983,3 +96,Johnnyswim,Adelina,1KUgTKdoh0DKIbIIedAscB,24,2012,acoustic,0.528,0.443,5,-6.884,1,0.0267,0.738,0.0,0.182,0.302,82.924,218195,4 +97,Drew Holcomb & The Neighbors,"Don't Think Twice, It's Alright",6wGoWEBRj1cQTafm7sg4ZM,28,2012,acoustic,0.535,0.587,4,-8.174,1,0.0308,0.396,0.00119,0.121,0.6,78.162,279221,4 +98,Mark Lanegan,St Louis Elegy,1r3aX7XuYrtPcJ1tqpmA01,35,2012,acoustic,0.46,0.405,9,-9.627,1,0.0257,0.387,0.0346,0.119,0.161,155.528,273840,4 +99,Boyce Avenue,We Found Love,1mzqQq3PJyTEbI1yN4uGmD,39,2012,acoustic,0.65,0.561,11,-8.6,1,0.0282,0.579,3.22e-06,0.0909,0.331,127.926,217376,4 +100,Jason Mraz,5/6,4Cd1nnR2RKdbFN2eTaxAFR,26,2012,acoustic,0.468,0.614,5,-8.272,1,0.0404,0.161,1.9e-06,0.337,0.71,155.574,357213,3 +101,Joshua James,Coal War - from Sons of Anarchy,1comtwISxatJvVAAbugM9g,29,2012,acoustic,0.608,0.454,6,-7.477,1,0.0375,0.0151,0.0,0.198,0.222,82.004,313080,4 +102,Steve Petrunak,I'll Be Home for Christmas,4naAhPrJLFdL62ymCOtLZc,27,2012,acoustic,0.523,0.115,7,-15.325,1,0.108,0.927,0.861,0.0957,0.172,127.281,149413,4 +103,Boyce Avenue,Without You,0Wb9s9oeJCNikrMNmli8lc,40,2012,acoustic,0.512,0.388,1,-8.62,1,0.0309,0.653,0.0,0.0915,0.167,125.223,208493,4 +104,Josh Garrels,Run,38NCfJBaaAb3PQSLM6KRht,25,2012,acoustic,0.677,0.885,10,-7.463,1,0.0294,0.0671,0.016,0.514,0.857,115.033,243942,4 +105,Jason Mraz,Who's Thinking About You Now?,530jQ6wTfWrdM1yNCPwdDt,26,2012,acoustic,0.554,0.5,3,-10.572,0,0.0338,0.188,1.08e-05,0.113,0.299,144.237,287653,4 +106,Mark Lanegan,The Gravedigger's Song,0U7I0dlEa9rzyTTQLZOJCn,35,2012,acoustic,0.321,0.81,9,-7.412,0,0.0702,0.00717,0.0495,0.179,0.195,185.904,223107,3 +107,Jon Bryant,Carolina,431aJf5rb7MRvRK04Y1pZP,25,2012,acoustic,0.509,0.24,5,-10.105,1,0.0344,0.909,0.0,0.109,0.348,79.227,246251,4 +108,Steve Petrunak,Joy to the World,1R2y8R0KJxhvQILUUjTTMD,26,2012,acoustic,0.543,0.301,7,-12.243,1,0.0508,0.921,0.893,0.125,0.458,124.22,143106,4 +109,Sanders Bohlke,The Loved Ones,51Z96PI1usQ6271y7J5bFb,28,2012,acoustic,0.36,0.167,10,-12.583,0,0.0306,0.956,0.00631,0.111,0.156,139.193,283200,3 +110,Kris Allen,My Weakness,1FodcO2NcaGsjIHlu6Nni0,28,2012,acoustic,0.615,0.771,8,-4.054,1,0.0754,0.0509,0.0,0.0758,0.91,93.88,163427,4 +111,Jason Mraz,I'm Coming Over,7CQPMuC66RwBvh5KUUZIjH,25,2012,acoustic,0.465,0.459,9,-12.185,1,0.0291,0.347,0.0155,0.289,0.28,98.163,269031,4 +112,Boyce Avenue,Skyscraper,3nCQzV8Nb1o1aIC2g88Rrx,38,2012,acoustic,0.453,0.337,7,-9.027,1,0.0555,0.406,0.0,0.106,0.427,207.849,227028,4 +113,Kaki King,Bowen Island,2HInMgktCFmyvZesbLhduq,26,2012,acoustic,0.525,0.407,1,-14.784,0,0.0354,0.607,0.95,0.102,0.347,139.98,170438,4 +114,Boyce Avenue,It Will Rain,3Awljtm8xO7sQxCkxAwUyd,39,2012,acoustic,0.433,0.417,9,-9.062,1,0.0452,0.484,0.0,0.111,0.176,73.997,268212,4 +115,Jon McLaughlin,I'll Follow You,43gcMBIeIDxFVdqLLNDuBu,27,2012,acoustic,0.312,0.33,8,-9.474,1,0.0273,0.896,0.000328,0.11,0.279,89.803,273267,4 +116,Boyce Avenue,Rolling In The Deep,3bWGIcOnxnaHkc9Wb9BIdK,42,2012,acoustic,0.663,0.571,4,-6.505,0,0.0351,0.627,0.0,0.337,0.26,105.055,260373,4 +117,Meiko,Leave the Lights On - Culture Code Remix,0F8yv1d2wHWGvT9LN8lu5S,22,2012,acoustic,0.577,0.592,1,-9.729,0,0.0298,0.0038,0.416,0.358,0.32,139.998,326907,4 +118,Boyce Avenue,Set Fire to the Rain,6qFnAsON1WA0q96PjTlgot,38,2012,acoustic,0.579,0.273,9,-9.2,0,0.0312,0.955,0.0,0.122,0.339,110.047,252901,4 +119,Ichiko Aoba,anata no kazari,4vU0btmY9gJdjoCY1aQ6lB,27,2012,acoustic,0.525,0.0719,5,-17.177,1,0.0472,0.99,0.0245,0.138,0.186,133.111,277987,4 +120,Boyce Avenue,She Will Be Loved,32SjCGePcnCkvWAbsQ8T1l,39,2012,acoustic,0.421,0.398,2,-5.939,1,0.0324,0.862,0.0,0.0765,0.323,103.168,250653,4 +121,Jason Mraz,Frank D. Fixer,5noTaf7614u8970wOMYgIE,26,2012,acoustic,0.662,0.665,7,-7.732,1,0.0294,0.112,1.02e-06,0.131,0.543,90.982,285160,4 +122,Boyce Avenue,Jumper,6B6unwaKEYAUvhJuERHQO3,31,2012,acoustic,0.716,0.446,0,-9.291,1,0.0307,0.0847,0.0,0.189,0.62,90.958,228435,4 +123,Boyce Avenue,With Arms Wide Open,1B1LKE0U8TqigfThDR4No0,36,2012,acoustic,0.45,0.369,0,-6.539,1,0.029,0.709,0.0,0.128,0.164,141.077,248200,4 +124,Noah Gundersen,Family - from Sons of Anarchy,7k7NljRsKSl5sTgc2aUMHO,30,2012,acoustic,0.442,0.165,6,-13.955,0,0.0345,0.867,0.0029,0.156,0.15,110.188,213667,3 +125,Boyce Avenue,Jar of Hearts,5indGtlR04vAgxadH91Avq,38,2012,acoustic,0.572,0.252,5,-9.057,1,0.0325,0.68,0.0,0.179,0.215,75.014,246133,4 +126,Boyce Avenue,Back for Good,2OElXSjcpQDx0AsFR31pzA,40,2012,acoustic,0.565,0.334,3,-9.271,1,0.0298,0.805,0.0,0.11,0.61,79.064,240167,4 +127,Matthew Mayfield,Take What I Can Get,6hUtLSw6vqaztCPHZ56gAl,28,2012,acoustic,0.334,0.347,4,-10.888,1,0.0299,0.315,0.0,0.0766,0.0632,96.9,268426,4 +128,Jenny & Tyler,See The Conqueror,74m2VSn09mtORFf6oria7A,23,2012,acoustic,0.558,0.485,9,-7.878,1,0.035,0.468,0.0,0.0912,0.389,150.111,217733,3 +129,Boyce Avenue,Last Kiss,17nTRIt0yUy4Sa9zF7GBFO,34,2012,acoustic,0.563,0.283,11,-11.309,1,0.0286,0.864,0.0,0.108,0.187,80.14,362570,3 +130,Jason Mraz,The Woman I Love - Live,3H3OMA1T5wlD28HnOjnNID,25,2012,acoustic,0.586,0.299,4,-13.557,1,0.0393,0.532,0.0,0.339,0.62,81.559,200266,4 +131,Mark Lanegan,Bleeding Muddy Water,354rsPvcUmElBPPMTZ1Xq1,32,2012,acoustic,0.507,0.482,10,-9.792,1,0.0306,0.47,0.0868,0.111,0.168,117.894,377520,4 +132,Harley Poe,Father McKee,7MwwL39IJcY2hioKsl3Hdr,24,2012,acoustic,0.564,0.618,0,-7.885,1,0.0312,0.0647,0.0099,0.305,0.693,91.257,164760,4 +133,NEEDTOBREATHE,Solomon's Ashes - B-Side,6jD0vPIy9xNqbHNbdchEHi,23,2012,acoustic,0.386,0.958,9,-3.384,1,0.0631,0.0107,0.00241,0.127,0.419,187.999,201680,4 +134,Boyce Avenue,Firework,50yShdGMlkCQKPKl9lr8pG,37,2012,acoustic,0.579,0.483,0,-7.847,1,0.0276,0.715,0.0,0.15,0.352,116.042,285737,4 +135,David Ramirez,Stick Around,3N7IFsjrOibzV5PqtFk2gT,23,2012,acoustic,0.608,0.354,4,-11.623,1,0.0373,0.181,1.69e-05,0.279,0.37,115.718,185973,4 +136,Jason Mraz,In Your Hands,7kzMRQciSdCPOE0N6GXBXK,24,2012,acoustic,0.677,0.341,6,-14.562,1,0.035,0.77,0.000624,0.122,0.402,136.176,291347,4 +137,Corporate Hearts,Suck on Soil Lounge Act,6yTE22JhMXkrMR3XsoGbxQ,23,2012,acoustic,0.307,0.957,2,-2.166,1,0.0747,0.189,0.0,0.205,0.643,106.178,62485,3 +138,Drew Holcomb & The Neighbors,Learning to Fly,4uIEThFPflLuKfDmmB8ZNl,22,2012,acoustic,0.685,0.737,0,-5.355,1,0.0301,0.376,0.000365,0.142,0.484,115.634,185233,4 +139,Jon McLaughlin,Summer Is Over,3MgJZsiw4oS1PsPQG2YsGj,26,2012,acoustic,0.517,0.682,0,-5.301,1,0.0315,0.0338,1.07e-05,0.167,0.254,130.004,300533,4 +140,Boyce Avenue,Only Girl (In the World),4KIv4r54Y0RneYx8GWTdgC,35,2012,acoustic,0.719,0.56,11,-9.532,1,0.0341,0.645,0.0,0.0707,0.466,118.094,237849,4 +141,Ingrid Michaelson,I'm Through,7KxMq2YidfuQWOayvcoKUb,23,2012,acoustic,0.265,0.16,7,-12.916,0,0.0375,0.873,8.22e-05,0.0815,0.0529,71.912,207493,3 +142,Greg Laswell,Landline,2EWGco6TH7zyW6lPKOijUQ,24,2012,acoustic,0.383,0.464,11,-6.85,1,0.029,0.76,7.45e-05,0.203,0.183,169.95,293493,4 +143,Matt Wertz,Snow Globe,0tc5oRonHjo4cI9e5bhLSD,23,2012,acoustic,0.627,0.679,9,-7.146,1,0.0305,0.027,0.0,0.0928,0.68,128.086,195360,4 +144,Get Dead,This One's for Johnny,6mFsYlDjG2Esy5hXhNy78t,27,2012,acoustic,0.482,0.772,1,-5.128,1,0.0318,0.0265,0.0,0.269,0.586,129.91,195640,4 +145,Boyce Avenue,Shimmer,4Qg2PKNifKhK0zUfSp5AF3,31,2012,acoustic,0.625,0.595,6,-7.52,1,0.0341,0.376,0.0,0.218,0.367,114.698,200895,4 +146,(Person) (Noun),A Punk Song About How Law Enforcement Ruins Everything,08ghdigTArcRWO12GdojbN,21,2012,acoustic,0.501,0.574,3,-5.168,1,0.0479,0.351,0.0,0.106,0.777,81.45,172111,4 +147,Kaki King,Skimming the Fractured Surface to a Place of Endless Light,7qT0I32aQseLqqt3tAZRBt,24,2012,acoustic,0.641,0.235,6,-17.22,1,0.0365,0.721,0.895,0.112,0.324,116.166,210221,4 +148,Boyce Avenue,We Are Young,0WjTnatR8L132K6jckMsLD,38,2012,acoustic,0.437,0.352,2,-11.511,1,0.0286,0.673,0.0,0.117,0.419,83.034,237687,4 +149,Sara Bareilles,Lie To Me,15zarGPJkaG3btC3Co7Luo,23,2012,acoustic,0.683,0.622,4,-6.878,0,0.0425,0.0516,0.000177,0.0937,0.795,94.999,238533,4 +150,Boyce Avenue,Grenade,0Mn7mWp0ALaK38J8nbYGU1,36,2012,acoustic,0.372,0.187,8,-9.663,0,0.0321,0.875,0.0,0.193,0.317,102.696,242307,4 +151,Daryl Shawn,All Is Forgiven,3ZX6UTRnmdnMs2DB8JgryB,21,2012,acoustic,0.291,0.241,2,-21.785,1,0.05,0.913,0.896,0.119,0.381,93.723,221427,4 +152,Boyce Avenue,Perfect,6bi5QcHuwZx0MWM5cPcOie,36,2012,acoustic,0.348,0.48,1,-7.141,1,0.0324,0.323,0.0,0.165,0.236,92.491,208173,4 +153,Taj Mahal,Butter,6AhRjuwY1b3wlan2DxPQRp,26,2012,acoustic,0.563,0.197,2,-11.112,1,0.0514,0.593,0.468,0.11,0.516,74.368,167653,4 +154,Matthew Perryman Jones,Land of the Living,75NxkuOkcV48r9PPjIN1TJ,27,2012,acoustic,0.391,0.759,2,-7.843,1,0.0402,0.163,0.0106,0.158,0.212,136.069,364533,4 +155,Steve Petrunak,Little Drummer Boy,5uUC4BNJ556zr7uqLWZOG6,23,2012,acoustic,0.429,0.169,3,-13.758,1,0.0503,0.93,0.927,0.108,0.18,107.062,184560,4 +156,Eric Bibb,We Don't Care,4a0ohEQ8L4zr9fr4n8iIcb,23,2012,acoustic,0.732,0.317,6,-13.399,0,0.0784,0.517,0.0137,0.098,0.475,81.03,240520,4 +157,Noah Gundersen,He Got Away - from Sons of Anarchy,4rakibNjIUCuzUGAytGOrH,30,2012,acoustic,0.605,0.0946,7,-14.98,1,0.0291,0.861,0.00239,0.108,0.235,137.809,210173,4 +158,Boyce Avenue,For the First Time,3OmajA5t8V434eQSSMDpdh,33,2012,acoustic,0.421,0.482,7,-7.787,1,0.0332,0.806,0.0,0.336,0.492,172.718,281947,4 +159,Boyce Avenue,Airplanes,0majnowXPs9y7KjlGcucyP,35,2012,acoustic,0.661,0.663,6,-7.846,0,0.0966,0.834,0.0,0.109,0.54,93.007,175883,4 +160,Tyler Ward,We Found Love - Acoustic,5uXMRPK76nEjSAubcgpL5Y,31,2012,acoustic,0.525,0.166,2,-14.552,0,0.0384,0.87,0.0,0.142,0.305,100.054,187086,4 +161,Mark Lanegan,Ode to Sad Disco,0XQQV21AQBskS6BFRL4k5h,34,2012,acoustic,0.408,0.87,5,-5.571,1,0.0487,4.15e-05,0.59,0.392,0.422,116.046,383867,4 +162,AJJ,Lady Liberty,7LMhBkdtPEIj0mHQsJ4NyY,21,2012,acoustic,0.764,0.375,7,-7.619,1,0.0404,0.749,0.0,0.484,0.88,109.21,133960,4 +163,AJJ,Lookin' for a Love,0RyrdYywwknwWtjDQXsZYD,21,2012,acoustic,0.616,0.378,7,-9.709,1,0.0274,0.714,0.0,0.0814,0.305,84.158,190360,4 +164,Hannah Trigwell,Hallelujah,2t0GPzo9vURxmfgkTx2Bmf,38,2012,acoustic,0.448,0.125,4,-12.419,1,0.0336,0.978,0.0,0.0863,0.233,97.813,295142,3 +165,Eric Hutchinson,Best Days,0AQW0xp3kmjNZ2sE3KwNrH,21,2012,acoustic,0.696,0.805,2,-4.562,1,0.0244,0.00242,1.2e-05,0.0262,0.825,99.983,244120,4 +166,Eric Hutchinson,The People I Know,4Ax7ux0DqjXO7vBiznYEZg,21,2012,acoustic,0.736,0.787,9,-5.342,1,0.0376,0.0139,0.0,0.0399,0.864,116.984,226627,4 +167,Steve Petrunak,White Christmas,1RqnQUJqmZVHbiCrza09Lg,22,2012,acoustic,0.401,0.151,0,-13.671,1,0.0533,0.921,0.921,0.12,0.327,81.027,205493,4 +168,Scars On 45,Heart on Fire,1Ok8BY1ph096s1YHDUzQXJ,23,2012,acoustic,0.571,0.847,1,-7.506,1,0.0345,0.242,0.0,0.123,0.459,131.971,219520,4 +169,Ingrid Michaelson,Fire,6ohcFAmjdwQyWNhU7BO03T,21,2012,acoustic,0.418,0.941,5,-4.365,1,0.0886,0.123,0.0,0.124,0.432,79.924,201000,4 +170,Johnnyswim,Home,2m5N4awG3sG1I4vH9MTDP1,21,2012,acoustic,0.7,0.8,0,-4.732,1,0.0618,0.392,0.0,0.149,0.847,110.008,212416,4 +171,Boyce Avenue,Best of You,3cuzNcXnUhwqED7kl5vwd6,36,2012,acoustic,0.515,0.385,11,-6.559,1,0.049,0.9,2.09e-06,0.0705,0.363,124.194,234173,4 +172,NEEDTOBREATHE,Keep Your Eyes Open - Acoustic Version,0eC2E0sd67p1olyQFYLR3s,21,2012,acoustic,0.557,0.768,9,-5.9,1,0.0427,0.309,0.0,0.198,0.62,75.039,245590,4 +173,Ingrid Michaelson,Do It Now,0vJVq3K16luwPw54DBmKe6,21,2012,acoustic,0.769,0.658,10,-6.712,1,0.0333,0.449,0.000182,0.103,0.777,121.004,196747,4 +174,Steve Petrunak,Hark! The Herald Angels Sing,55zSbbABalE4xxa9NUvChE,22,2012,acoustic,0.613,0.183,7,-12.661,1,0.0545,0.912,0.96,0.128,0.509,98.657,160706,4 +175,AJJ,Dipping Things in Stuff,5OY3c9YchGlH0wbIT3FD7g,21,2012,acoustic,0.769,0.572,7,-5.869,1,0.0307,0.491,0.197,0.112,0.915,88.351,99133,4 +176,Joshua Radin,Underwater,5EXiJK0i9B9zWvkYZd1iFt,18,2012,acoustic,0.406,0.487,1,-10.958,1,0.0333,0.487,0.124,0.108,0.341,107.746,284333,4 +177,Ichiko Aoba,sanbiki no kuma,006bSCF5D7Z547EuVKSiRK,22,2012,acoustic,0.49,0.0289,8,-18.037,1,0.0391,0.992,0.00218,0.0956,0.232,109.197,280560,4 +178,Joey Cape,I Must Be Hateful,0Lg0A8dSTrqdt0uhJBYtgn,26,2012,acoustic,0.584,0.309,5,-8.913,1,0.031,0.878,0.0,0.113,0.429,140.757,198107,4 +179,Boyce Avenue,Nothin' on You / My Love / Rocketeer,2GKhXT8pBJc35YGvXkbn6j,32,2012,acoustic,0.578,0.308,2,-12.729,0,0.0315,0.826,0.0,0.374,0.282,106.425,278227,4 +180,Joshua James,No Milk Today - from Sons of Anarchy,0h8sphCgaczfLyzKYITefq,26,2012,acoustic,0.521,0.542,9,-7.998,1,0.0305,0.0203,0.0716,0.0857,0.261,96.988,263760,4 +181,Boyce Avenue,Just a Kiss,6STurd0ZGrYfqldGUS8Io6,33,2012,acoustic,0.603,0.627,10,-7.244,0,0.0353,0.532,0.0,0.129,0.31,142.93,215177,4 +182,Greg Laswell,Another Life To Lose,00G0cFfgXWwK3BH3DGxrTQ,24,2012,acoustic,0.459,0.748,7,-5.785,1,0.0284,0.0329,0.00113,0.164,0.246,150.057,247973,4 +183,Boyce Avenue,Just Can't Get Enough,42GCZwdW8qxuexRGuHJl55,35,2012,acoustic,0.741,0.622,3,-9.217,0,0.258,0.452,0.0,0.115,0.325,93.977,212406,4 +184,Jason Mraz,I Never Knew You - Live,2wOZVKXMZQvEyHcY9rQzU3,22,2012,acoustic,0.477,0.273,4,-12.113,0,0.0373,0.682,0.0,0.688,0.0882,147.998,535111,4 +185,Boyce Avenue,Jeremy,7kEGGdM9TMw9QjjVcTt42x,30,2012,acoustic,0.607,0.33,2,-9.607,1,0.0326,0.51,0.0,0.104,0.221,104.695,298180,4 +186,Mark Lanegan,Phantasmagoria Blues,1UsUjgxG2nFa6GgG2KND5g,29,2012,acoustic,0.562,0.47,5,-10.7,1,0.0299,0.533,0.0846,0.156,0.267,107.963,195960,4 +187,Boyce Avenue,The A Team,5FCl747EStpEffRsd2Qbxp,31,2012,acoustic,0.507,0.195,7,-11.657,1,0.0402,0.865,0.0,0.0602,0.282,80.26,282173,4 +188,Boyce Avenue,Water Runs Dry,7xJztdi210scTxzqLYw3JN,30,2012,acoustic,0.596,0.201,9,-11.341,0,0.0271,0.884,0.0,0.0876,0.439,89.981,202227,4 +189,Fuyumi Abe,希望のうた,24dq1uvUoVVQ6WMwFTqUPl,34,2012,acoustic,0.384,0.0751,2,-16.534,1,0.0436,0.955,1.23e-06,0.132,0.254,162.503,245747,3 +190,AJJ,Skipping Stone,51ocbwPg5kEeDgZH1eQ71J,19,2012,acoustic,0.762,0.628,0,-4.554,1,0.0379,0.531,0.0,0.107,0.829,106.092,115227,4 +191,AJJ,This Is Not a War,7lwkgy6neVU6WYeeZmwoeC,20,2012,acoustic,0.684,0.601,7,-4.644,1,0.0431,0.275,0.0,0.124,0.732,109.192,197747,4 +192,Ron Pope,I Do Not Love You,7ppd3SVpYfKVTWYooDIpup,22,2012,acoustic,0.547,0.307,3,-11.464,1,0.0274,0.71,0.000941,0.133,0.135,93.034,229747,4 +193,Tony Sly,Soulmate,67XaJoa6mpodNciqYMQmLy,27,2012,acoustic,0.513,0.657,5,-3.96,1,0.0275,0.336,0.0,0.0681,0.819,155.935,217427,4 +194,AJJ,Hate & Kill,2g1NxVJac1P1grmNp5mfb4,20,2012,acoustic,0.436,0.99,9,-5.326,1,0.0814,4.3e-05,0.000176,0.141,0.116,103.56,74533,4 +195,Tyler Ward,Paradise - Acoustic,5Qpe1Tw0y2sUdIdvicdtJS,32,2012,acoustic,0.584,0.463,5,-10.332,1,0.0322,0.622,0.0,0.0792,0.384,142.007,209839,4 +196,Kris Allen,The Vision of Love,2OVSlo1c9nYjJ3qqKQIkZR,27,2012,acoustic,0.614,0.797,10,-5.575,1,0.0345,0.00202,0.0,0.166,0.338,117.981,214640,4 +197,Jason Mraz,I’m Yours,5smPViFYtztTo7ww9gJXpD,29,2012,acoustic,0.549,0.107,0,-16.147,1,0.0844,0.957,0.0,0.111,0.307,74.63,219053,4 +198,Jason Reeves,More in Love With You (feat. Nelly Joy),288rPrDfex8ads1nO4gGpi,23,2012,acoustic,0.52,0.293,1,-12.618,1,0.0303,0.802,0.0,0.107,0.521,151.955,281933,4 +199,Tyler Ward,Red,1aLnDN8v257cJUgkplnTOy,25,2012,acoustic,0.706,0.392,3,-8.44,0,0.0279,0.15,0.0117,0.117,0.539,125.025,204600,4 +200,Johnnyswim,Heart Beats,1lh0ca3jjIysThpLxfjMH2,19,2012,acoustic,0.465,0.752,11,-5.003,0,0.0494,0.466,0.0,0.138,0.341,129.766,206646,4 +201,Boyce Avenue,Lights,2mdxZbS0rjbkl5gaE28b85,30,2012,acoustic,0.691,0.348,10,-7.633,0,0.0314,0.73,0.0,0.106,0.357,118.237,211187,4 +202,Boyce Avenue,Dynamite,5eWwgBxTCyJnCOZ5kh8tq7,34,2012,acoustic,0.735,0.515,2,-8.524,1,0.0407,0.617,0.0,0.0928,0.584,115.28,230320,4 +203,Ingrid Michaelson,Blood Brothers,0KZw9ygUfo5AezBxU8L0aB,20,2012,acoustic,0.631,0.816,5,-4.399,1,0.0258,0.19,0.000174,0.116,0.415,129.999,192293,4 +204,Dan Andriano in the Emergency Room,"Of Peace, Quiet And Monsters",1VdQTD2rFIYWpFngckkmSS,20,2012,acoustic,0.479,0.285,1,-12.619,0,0.0327,0.942,0.0437,0.111,0.618,104.933,261000,4 +205,Josh Kelley,Almost Honest,7zgjmHItVpoClD39UDJk71,23,2012,acoustic,0.515,0.577,3,-4.057,1,0.0277,0.264,0.0,0.168,0.386,141.781,197544,4 +206,A Fine Frenzy,Pinesong,0dxuoyXyQslh83KUzNkTCf,17,2012,acoustic,0.588,0.31,6,-16.313,0,0.0381,0.322,0.179,0.0757,0.0718,122.036,463040,4 +207,AJJ,Lucky Strike,01qsvOsRL8FGd5cghQJXIv,19,2012,acoustic,0.659,0.443,7,-4.493,1,0.0358,0.494,0.0,0.0951,0.653,137.058,96667,4 +208,Jason Mraz,The World as I See It - Live,70mrEnltTjQre4AYufBhPk,21,2012,acoustic,0.496,0.304,9,-13.277,1,0.0694,0.678,0.0,0.476,0.388,118.716,514848,4 +209,Hana Sekitori,10月のあなた,24lx6wmteh98ewSupJUQ7B,31,2012,acoustic,0.824,0.196,10,-7.769,1,0.0306,0.888,0.0,0.123,0.582,96.911,254120,4 +210,Green River Ordinance,Heart of Me,2LaoI1GMcL2fBO4uZfmon7,18,2012,acoustic,0.523,0.782,9,-4.617,1,0.0308,0.0378,0.0,0.352,0.588,122.031,209773,4 +211,Scars On 45,Give Me Something,4jkHmRrFNERDvFiwM1nr4j,19,2012,acoustic,0.531,0.658,6,-6.129,0,0.0298,0.19,0.0,0.15,0.35,139.945,201480,4 +212,Ron Pope,October Trees,7I6QEqTcJkCr43CKu7Hzlp,24,2012,acoustic,0.659,0.74,7,-6.706,0,0.0526,0.611,6.27e-05,0.155,0.396,110.046,264493,4 +213,Rodrigo y Gabriela,Diabo Rojo - Area 52 Version,3xhC4SC7UuHzGLjLGDYTw6,16,2012,acoustic,0.674,0.921,9,-6.541,0,0.042,0.598,0.724,0.0735,0.931,130.017,310440,4 +214,Tony Sly,Chasing Rainbows,7y36qo6eYqsIgKoRuup5qA,26,2012,acoustic,0.559,0.752,10,-5.008,1,0.0274,0.35,0.0,0.0906,0.687,103.51,206427,4 +215,Jack Savoretti,Hate & Love,4nZRvBLAVCC2JJRbCYHilQ,32,2012,acoustic,0.517,0.428,9,-9.825,0,0.029,0.691,0.00531,0.105,0.301,73.472,233469,4 +216,AJJ,Joe Arpaio Is a Punk,1cpgeInv0C0GHOxGLQ6frG,18,2012,acoustic,0.351,0.948,0,-5.251,1,0.0875,0.0109,0.0,0.223,0.455,111.485,138160,4 +217,Joshua Hyslop,Shelter From The Storm,6APgkRFRBnyvJidv1umcmO,24,2012,acoustic,0.429,0.12,4,-17.165,1,0.0449,0.887,0.000482,0.0985,0.521,174.878,206053,4 +218,Jill Andrews,These Words,0glo4jllxS7sW0Bz5qfV7k,19,2012,acoustic,0.534,0.204,11,-13.705,1,0.0362,0.901,0.000236,0.338,0.188,120.627,290000,4 +219,Eric Hutchinson,Talk Is Cheap,0Z9N0gWeoCUNu2zSKG67OE,19,2012,acoustic,0.616,0.816,9,-4.116,1,0.047,0.0119,0.0,0.35,0.485,169.954,273293,4 +220,Boyce Avenue,Every Teardrop Is a Waterfall,3vdUsTGp7bSsHSK15ZlsS2,31,2012,acoustic,0.45,0.645,9,-7.326,1,0.0411,0.329,0.0,0.179,0.112,118.003,237040,4 +221,Zee Avi,Concrete Wall - RAC Remix,1SKUJAAfiKLkHDrBPOXdpF,18,2012,acoustic,0.683,0.603,5,-5.772,0,0.0495,0.0346,0.0166,0.074,0.805,170.025,254347,4 +222,Mark Kroos,Flowers for April,2uMAWX0zM8t2xRFAhTWY1x,18,2012,acoustic,0.477,0.0646,6,-18.445,1,0.101,0.829,0.84,0.103,0.206,122.401,263293,4 +223,Ichiko Aoba,kiseki wa itsudemo,2HlSyQIukNiv4t1sKve8uH,21,2012,acoustic,0.423,0.0391,8,-17.551,1,0.0461,0.987,0.00157,0.0949,0.172,133.742,314867,3 +224,Ichiko Aoba,watashi no nusubito,5OSoisyT5dmJIKOtbPcJX6,21,2012,acoustic,0.435,0.0317,3,-19.044,1,0.0377,0.992,0.00311,0.109,0.0562,133.427,311587,4 +225,Josh Garrels,Processional (Mason Jar Remix),2oOp14OYYhDVnw1aCzYDAr,18,2012,acoustic,0.502,0.217,2,-12.186,1,0.0342,0.968,0.433,0.11,0.174,150.054,240621,3 +226,Frank Turner,I Still Believe,7Gn3EmzREuZ8ORkZQk4e9Z,21,2012,acoustic,0.618,0.85,0,-4.992,1,0.042,0.0604,0.0,0.177,0.5,99.182,225133,4 +227,Jack Savoretti,Take Me Home,0ALRetjPWxaoFSMrDIuS87,37,2012,acoustic,0.686,0.656,7,-8.573,1,0.0298,0.00712,1.2e-05,0.0755,0.469,131.856,235880,4 +228,AJJ,Sense & Sensibility,0dEXaj5bknMei0OtrVr7h9,18,2012,acoustic,0.62,0.624,7,-3.78,1,0.0543,0.779,0.0,0.328,0.865,135.172,129000,4 +229,AJJ,Fortune Teller,5WwINFDBAGJVYeDtWNryZC,18,2012,acoustic,0.612,0.614,7,-7.972,1,0.0477,0.306,0.0,0.534,0.387,93.238,144200,4 +230,Jason Reeves,You're My Best Friend,2KPf8nsCIjxVZtWOiKM5VK,21,2012,acoustic,0.583,0.393,9,-10.323,1,0.0338,0.858,2.3e-06,0.0971,0.151,121.723,283653,4 +231,Steve Petrunak,O Holy Night,55mvDKNrwfLmWwCamCVqYr,18,2012,acoustic,0.413,0.125,7,-15.754,1,0.0479,0.971,0.886,0.111,0.185,97.967,226200,3 +232,Sanders Bohlke,My Baby,012CS1QIhUjjRctJwZasSx,21,2012,acoustic,0.487,0.498,2,-9.091,0,0.0433,0.014,0.00608,0.115,0.39,110.675,171853,4 +233,Joey Cape,Know It All,7hR6iEUjUzwF3gK0MIM9Wo,24,2012,acoustic,0.664,0.607,10,-4.859,1,0.0392,0.671,0.0,0.0785,0.744,147.071,202720,4 +234,Ingrid Michaelson,End Of The World,2rH8Q0gCdQElBuXac1S20P,18,2012,acoustic,0.563,0.414,10,-7.295,1,0.0275,0.0454,0.0165,0.111,0.134,108.024,224867,3 +235,Ingrid Michaelson,This Is War,14GM81g9tm098DQZt2T634,18,2012,acoustic,0.652,0.898,8,-4.844,1,0.0698,0.083,0.00797,0.104,0.65,156.952,199227,4 +236,Mark Lanegan,Harborview Hospital,6Cn5R9nEEliMDrwScAFZfX,28,2012,acoustic,0.208,0.806,10,-6.785,1,0.045,0.000135,0.19,0.0996,0.421,108.738,271333,4 +237,AJJ,If Jeff Swiney Had a Hammer,5tuV2nTMHAyCu9EwcNUeZa,18,2012,acoustic,0.535,0.939,0,-4.047,1,0.106,0.00944,2.01e-05,0.271,0.665,111.116,77280,4 +238,Boyce Avenue,Mean,2QoNc4MbHYq9YHZiB006cP,29,2012,acoustic,0.461,0.425,8,-6.974,1,0.0298,0.66,0.0,0.367,0.378,81.758,240159,4 +239,Tristan Prettyman,Never Say Never,3fEL4Hq56pcTkYvpY46XhO,16,2012,acoustic,0.584,0.352,11,-11.333,1,0.033,0.509,0.00695,0.135,0.227,81.927,354400,4 +240,Eric Bibb,On My Way To Bamako,7FBgu3BtKRZgwaQnxTr7RY,19,2012,acoustic,0.632,0.328,0,-12.0,1,0.032,0.795,0.000441,0.115,0.793,91.986,195093,4 +241,Jack Savoretti,Breaking the Rules,3lxZsowcDLsagnpwYNXSfE,36,2012,acoustic,0.59,0.652,11,-5.702,0,0.0245,0.0956,0.0,0.295,0.398,146.014,214493,4 +242,Tim Myers,A Beautiful World,19nbrRzEM0ldFwbqO0KsZI,22,2012,acoustic,0.534,0.413,11,-9.701,0,0.0289,0.167,1.94e-06,0.147,0.329,138.135,205613,4 +243,Ingrid Michaelson,Black & Blue,7uTVsNFHMTc8yKYSzh0LX8,18,2012,acoustic,0.683,0.768,0,-4.617,1,0.0732,0.0575,5.43e-05,0.0712,0.692,175.042,217187,4 +244,Ingrid Michaelson,Ribbons,7zP7eHb33ROL6KwkFIeBHc,18,2012,acoustic,0.659,0.532,6,-6.099,1,0.0293,0.0723,4.26e-05,0.115,0.368,143.025,207120,4 +245,Kris Allen,Fighters,6agssQSBqSqPvg5xepe7T0,20,2012,acoustic,0.577,0.692,7,-5.598,1,0.0292,0.00613,0.0,0.0801,0.668,92.986,181560,4 +246,NEEDTOBREATHE,Disaster Road,4dB6Mqi2IeH5CEA6dvZhDK,17,2012,acoustic,0.487,0.582,9,-7.653,1,0.0265,0.786,0.0284,0.081,0.357,92.933,271044,4 +247,Elenowen,Head To My Heart,737H81c1MA45V8gllE6ESp,21,2012,acoustic,0.541,0.55,1,-7.425,1,0.0391,0.513,0.000647,0.114,0.242,114.018,216703,4 +248,Boyce Avenue,I Look to You,6utb05mq8V4os4e8JdLGvN,29,2012,acoustic,0.344,0.309,11,-9.897,1,0.0317,0.851,1.02e-05,0.11,0.339,109.903,275166,4 +249,Hannah Trigwell,Torn (feat. Alex Goot),1e1xGXc1ykTPlZGrwKqoHt,34,2012,acoustic,0.368,0.38,5,-6.213,1,0.0289,0.898,0.0,0.095,0.229,98.893,185135,4 +250,Joshua James,Feel the Same,4R3Na59B94RVyi2e2jgLRl,21,2012,acoustic,0.318,0.569,1,-9.338,0,0.0466,0.728,0.187,0.131,0.246,152.726,234000,4 +251,Ingrid Michaelson,In The Sea,1cZF6K3nXG6XKMBeiAb7n1,18,2012,acoustic,0.444,0.823,8,-5.109,0,0.0403,0.0476,0.00105,0.106,0.606,169.931,198160,4 +252,AJJ,Love Will Fuck Us Apart,2wRwrJXgVeTYP03JlMrcb8,17,2012,acoustic,0.611,0.141,0,-16.993,1,0.0545,0.626,0.000116,0.357,0.38,119.685,121653,4 +253,Tony Sly,Liver Let Die,1wMa1vL7NOcDMFDzuO6wXb,24,2012,acoustic,0.444,0.724,8,-4.852,1,0.0425,0.314,0.0,0.29,0.628,187.993,199773,4 +254,Joshua Hyslop,Nowhere Left To Go,23fZ0OxUQzGPLyFKkcKYNv,23,2012,acoustic,0.689,0.342,2,-13.271,1,0.0308,0.53,0.0154,0.286,0.271,134.883,218973,4 +255,Boyce Avenue,Babylon,2xr4HySQRQBH2r5SMf5MuO,28,2012,acoustic,0.665,0.244,3,-10.93,1,0.0313,0.709,0.0,0.109,0.206,112.842,212683,4 +256,Erin McCarley,Re-Arrange Again,3SzN4ElGewbeGA1UKwg4KH,19,2012,acoustic,0.548,0.517,9,-6.868,1,0.0313,0.177,5.21e-06,0.0957,0.162,129.943,244333,4 +257,Priscilla Ahn,Dear Sweetheart,24r7KNyZP4JivQ3rNqcQAB,21,2012,acoustic,0.557,0.402,4,-10.812,1,0.0263,0.849,4.8e-05,0.108,0.501,114.057,148213,4 +258,Human Kitten,What If I Am Queer?,6W7ILdWPWX5zYlsmHsAfI2,17,2012,acoustic,0.45,0.3,6,-9.046,1,0.0351,0.898,0.0,0.0858,0.404,99.64,142628,4 +259,Josh Ritter,Love Is Making Its Way Back Home,7GRecetOAe7L6U74fDxB8N,18,2012,acoustic,0.707,0.539,3,-11.025,1,0.028,0.863,0.0124,0.129,0.858,114.736,223637,4 +260,Josh Kelley,The Best Of Me,2pMiM6pe3CAp9QQbmnyo9K,15,2012,acoustic,0.455,0.516,0,-7.293,1,0.0342,0.139,0.0,0.0944,0.169,87.678,207013,4 +261,Madi Diaz,Burn,3X991cvT28DMhkVqe8S5tz,22,2012,acoustic,0.388,0.427,0,-10.766,0,0.0321,0.487,0.000575,0.113,0.0526,149.064,277467,4 +262,Tyrone Wells,This Moment Now,0dFnfX4NdiAJPnA9CTa5aN,24,2012,acoustic,0.49,0.29,8,-9.996,1,0.0299,0.413,9.66e-06,0.133,0.212,93.989,257920,4 +263,Ron Pope,About the Rain,4mWVFz0wjFUIvUlD0ox9Ej,19,2012,acoustic,0.642,0.705,4,-7.75,1,0.0347,0.364,5.91e-06,0.158,0.34,106.043,192533,4 +264,Amos Lee,Say Goodbye,4nXA1B8tlkcorJItsV8mvO,18,2012,acoustic,0.523,0.643,0,-7.943,1,0.0253,0.338,0.00174,0.111,0.795,88.757,169853,4 +265,NEEDTOBREATHE,Cops,5Xo42Ja5ESUevOze9DSY3o,17,2012,acoustic,0.377,0.899,5,-3.499,1,0.104,0.00291,0.000259,0.118,0.339,170.253,163327,4 +266,AJJ,Still Smokin',3kAFM0GaMqFCdrATTkC92L,17,2012,acoustic,0.432,0.644,0,-2.947,1,0.117,0.598,0.0,0.337,0.927,145.849,75000,4 +267,Joshua James,Queen of the City,6yH3Fo7bCE1Qer3DDN7I3m,22,2012,acoustic,0.642,0.648,9,-5.179,0,0.0337,0.0641,0.0149,0.106,0.605,101.931,199427,4 +268,Tim Barry,Fine Foods Market,6prYiT5EDXZH1PGqqiDFmM,16,2012,acoustic,0.494,0.601,3,-6.936,1,0.115,0.228,0.0,0.0673,0.814,85.178,194280,4 +269,Ramshackle Glory,Song for Next May Day,2JHs7pn8zHCwL4hCyzUUco,17,2012,acoustic,0.335,0.866,0,-9.299,1,0.0675,0.122,1.25e-06,0.322,0.327,115.701,281307,4 +270,AJJ,Deep Dark Basement,68afbeID9HUMEaL6ScsFyR,17,2012,acoustic,0.296,0.936,0,-4.752,1,0.0593,1.7e-05,0.000743,0.296,0.447,100.747,128853,4 +271,Mark Kroos,Petals Change,7IWwvUTwqC53KTyVBRInJb,17,2012,acoustic,0.397,0.0762,4,-20.219,1,0.216,0.759,0.753,0.081,0.674,142.975,178227,4 +272,Get Dead,Kerouac's Teeth,3o98RH8WS5RC0ZZdz9EOHN,18,2012,acoustic,0.533,0.856,4,-6.377,1,0.0309,0.143,2.48e-05,0.485,0.753,105.049,274973,4 +273,Ingrid Michaelson,Palm Of Your Hand,1o83RoEnKj18m3Aqyf7ddk,17,2012,acoustic,0.541,0.781,8,-4.801,1,0.063,0.000589,0.0182,0.118,0.72,174.0,191880,4 +274,Peter Bradley Adams,Bring You Home,5hMHYRFyypjZEfiMbDSYx4,20,2012,acoustic,0.593,0.391,5,-13.814,1,0.0289,0.372,0.139,0.108,0.38,154.223,196000,4 +275,AJJ,S.O.S.,4GcebX2UXoYql1ZpFDhYS4,16,2012,acoustic,0.446,0.96,0,-4.73,1,0.063,0.000378,4.84e-06,0.753,0.52,102.994,124200,4 +276,Amy Stroup,Sabotage,7zRpF0NObigGlGa66UsWgg,20,2012,acoustic,0.568,0.413,5,-11.06,1,0.0246,0.857,0.0118,0.119,0.211,93.991,230053,4 +277,AJJ,Bold with Fire,7ythmhL9UYnhK894T6jQhE,16,2012,acoustic,0.678,0.34,0,-5.87,1,0.0371,0.65,2.47e-06,0.151,0.271,133.469,120693,4 +278,AJJ,Ziggy Stardust,0l339jwjDTuqax54PvSgju,16,2012,acoustic,0.475,0.576,7,-3.982,1,0.0399,0.413,1.65e-06,0.339,0.579,162.921,206600,4 +279,AJJ,Drink Another Beer,4YPn9VDVl4FMZDXmNkL0eA,16,2012,acoustic,0.477,0.635,7,-2.716,1,0.047,0.34,0.0044,0.166,0.601,79.975,109907,4 +280,Not Half Bad,Chace's Song,3S3oOHqOkwxwogn4PKXdj5,15,2012,acoustic,0.415,0.956,1,-5.443,1,0.0925,0.00214,2.98e-06,0.34,0.388,196.101,162547,4 +281,A Fine Frenzy,Dream In The Dark,0l8abjLU8NTOhBojVTxxeg,14,2012,acoustic,0.541,0.0141,1,-26.339,1,0.0422,0.993,0.14,0.0849,0.253,131.229,200792,3 +282,The Civil Wars,From This Valley,0HCW7lRkZyF4LLRP6HDRyK,16,2012,acoustic,0.56,0.534,10,-8.093,1,0.0354,0.472,0.0,0.0946,0.47,87.344,204640,4 +283,Cary Brothers,Never Tear Us Apart,7N25m7BXUuC6UdUbkLCd20,22,2012,acoustic,0.255,0.631,0,-3.912,1,0.0504,0.0847,9.41e-05,0.0835,0.36,174.316,171893,3 +284,Steve Petrunak,Feelin' Groovy,3EyvpoGYJG2AubA8qStvp2,20,2012,acoustic,0.544,0.245,7,-13.066,1,0.0402,0.359,0.448,0.258,0.437,113.507,111626,4 +285,Ramshackle Glory,The Club Hits of Today Will Be the Show Tunes of Tomorrow,18qlQ8KWzzZKEQypOhqWoE,16,2012,acoustic,0.482,0.124,5,-12.752,1,0.0361,0.723,0.00317,0.3,0.213,126.022,95040,4 +286,A Fine Frenzy,Avalanches (Culla's Song),5oVLOuA1B6JfxGaCBYcGAw,14,2012,acoustic,0.527,0.328,2,-13.433,1,0.0391,0.597,0.00198,0.11,0.213,123.256,211839,4 +287,AJJ,Hate Stick Hard Party Part 2,0ra1JdB5sQdqVkUtYqnHpo,16,2012,acoustic,0.61,0.448,0,-7.25,1,0.0399,0.672,0.000737,0.11,0.546,146.344,107227,4 +288,Dave Barnes,Love Will Be Enough For Us,3Oib0FHG9fl5IznMelNfZC,15,2012,acoustic,0.518,0.486,1,-8.116,1,0.0277,0.088,4.16e-05,0.0794,0.194,151.996,228653,4 +289,Masaharu Fukuyama,生きてる生きてく,6TT5cVq9gtm9Fxm1jm3RSj,48,2012,acoustic,0.705,0.924,7,-2.038,1,0.0305,0.315,0.0,0.161,0.971,120.991,209133,4 +290,Boyce Avenue,Radioactive,1ZRhlEiPLy4vComxcmeFv9,28,2012,acoustic,0.491,0.725,11,-6.258,1,0.0534,0.261,0.0,0.0788,0.423,124.918,210333,4 +291,Green River Ordinance,New Day,7wT7EvhnZ1MygDBoRyO9z0,20,2012,acoustic,0.542,0.693,9,-6.049,1,0.0344,0.0572,0.000146,0.119,0.421,95.003,258573,4 +292,Tyler Ward,Super Bass - Acoustic,5pDCaHBiuhtVPuDPJKNJDT,20,2012,acoustic,0.748,0.445,4,-9.466,1,0.0371,0.823,0.0,0.0847,0.603,110.008,226388,4 +293,Sanders Bohlke,An Unkindness of Ravens,3FdE138lINIMLor2S3cpih,26,2012,acoustic,0.345,0.118,4,-12.246,1,0.0316,0.834,0.00635,0.305,0.0481,96.285,264680,3 +294,Scars On 45,Change My Needs,4hYRGgIHka0DLxgKzriSas,19,2012,acoustic,0.606,0.457,9,-10.857,1,0.0291,0.768,0.0,0.11,0.335,114.021,256307,4 +295,Jon Bryant,Ontario,7bJUoMjysndU0HpyBM4AIi,18,2012,acoustic,0.392,0.307,9,-10.725,1,0.0282,0.454,0.00512,0.122,0.18,76.634,370623,4 +296,Ingrid Michaelson,Keep Warm,0tcHKrQojbRQlOWykegZom,15,2012,acoustic,0.284,0.122,5,-11.986,1,0.0384,0.943,3.25e-06,0.111,0.158,70.869,198773,3 +297,Rodrigo y Gabriela,Tamacun - Area 52 Version,1iX3H33KgpA0kG7ljiH7Hl,13,2012,acoustic,0.685,0.957,9,-5.187,0,0.0495,0.467,0.76,0.197,0.83,128.0,415253,4 +298,Tristan Prettyman,Quit You,73fZzAsufiH6AjBe8OqxAx,15,2012,acoustic,0.823,0.555,4,-8.598,0,0.0395,0.0929,0.00128,0.1,0.841,118.592,188267,4 +299,Ramshackle Glory,Last Days,1BLPLW4oYH8fkr3ubLqHIO,16,2012,acoustic,0.344,0.731,9,-7.895,0,0.0328,0.00249,8.55e-06,0.367,0.801,106.259,130933,4 +300,Get Dead,101,2wGO4maDxM59OnoxeYW5eQ,17,2012,acoustic,0.558,0.77,4,-6.05,1,0.0297,0.546,0.0,0.507,0.435,100.986,252440,4 +301,Drew Holcomb & The Neighbors,I Saw the Light,5EIoHPj98VMiA04P2UnEiu,15,2012,acoustic,0.346,0.781,7,-5.406,1,0.0355,0.214,0.0,0.389,0.858,188.959,187928,4 +302,Get Dead,Rosebud,31BXYr5hLoBzKItygRERrb,18,2012,acoustic,0.478,0.681,6,-7.233,1,0.0334,0.101,1.66e-06,0.147,0.396,114.061,228053,4 +303,Josh Garrels,Rise (Kye Kye Remix),18J5HylXTteQJC00iwdgFf,19,2012,acoustic,0.461,0.745,11,-7.102,0,0.08,0.0271,0.153,0.279,0.382,125.005,270818,4 +304,Joshua Radin,Mark IV (with Joshua Radin) (Fifa13),37toHg2qY3N2GjOnVPcUlD,25,2012,acoustic,0.346,0.653,7,-8.81,1,0.0328,0.000789,0.348,0.256,0.131,170.131,341761,4 +305,Tristan Prettyman,Come Clean,5xtapDRKjJTDCcdMbWCjJH,15,2012,acoustic,0.642,0.204,2,-10.274,1,0.03,0.674,5.96e-06,0.0896,0.26,109.759,234000,3 +306,Trent Dabbs,I'm Not OK,2ToYIudAIrhlvkbE7UpnnV,22,2012,acoustic,0.622,0.317,2,-9.068,1,0.0283,0.76,0.0677,0.0947,0.243,123.094,240280,4 +307,Mark Lanegan,Gray Goes Black,3igqkda8a41Mcy1tGVgffH,27,2012,acoustic,0.485,0.822,9,-9.31,0,0.0431,0.103,0.595,0.336,0.604,135.008,250867,4 +308,Josh Garrels,White Owl (Josh Garrels & Mason Jar Remix),6z1eoGL05z7Kx5UoLP8aEc,17,2012,acoustic,0.59,0.519,11,-8.63,0,0.0281,0.0037,0.657,0.342,0.185,146.083,352470,4 +309,Get Dead,No High Road,7r4Xb2TLTaYuhRLGrlikWb,17,2012,acoustic,0.507,0.841,8,-5.432,1,0.0311,0.169,0.0,0.171,0.785,87.51,170653,4 +310,Frank Turner,The Ballad Of Me & My Friends,6xmY8Zrl1nDFFBM8EsErAN,16,2012,acoustic,0.487,0.367,6,-9.105,0,0.04,0.802,0.0,0.973,0.261,134.905,152987,4 +311,Frank Turner,Photosynthesis,0nxgsbfjUKZGNBFBmmXPp8,18,2012,acoustic,0.681,0.745,2,-6.906,1,0.0573,0.0668,0.0,0.326,0.525,98.99,252187,4 +312,Eric Hutchinson,Lisa,4JlGxhJJedaQXygGSWVmqE,14,2012,acoustic,0.555,0.884,10,-5.784,1,0.0439,0.00765,0.0,0.131,0.871,80.04,255520,4 +313,Mark Lanegan,Riot In My House,2mLSqZBEpnUtzF6GJl14R6,25,2012,acoustic,0.458,0.932,7,-5.73,1,0.0331,0.000132,0.000399,0.551,0.383,87.984,233053,4 +314,Denis Turbide,Rumbling Ramble,2RkyOOzMbTIWvOahYtlfoq,17,2012,acoustic,0.424,0.433,9,-14.078,1,0.0428,0.904,0.899,0.106,0.887,173.225,130125,4 +315,Gabrielle Aplin,Keep Pushing Me,0dt4CRRsWhEsgkgYNWMsh5,24,2012,acoustic,0.481,0.788,1,-8.816,0,0.0523,0.401,0.0,0.112,0.395,116.622,192367,4 +316,Patty Griffin,Truth #2,15yejGXrEwhkNV1n8LCIZ6,15,2012,acoustic,0.388,0.636,11,-8.497,1,0.0435,0.352,0.000166,0.131,0.731,177.422,270853,4 +317,NEEDTOBREATHE,Keep Your Eyes Open,3YdrhGuYeohPZ4ZUn5LEV0,16,2012,acoustic,0.52,0.834,0,-4.128,1,0.0477,0.113,0.0,0.283,0.371,79.025,250485,4 +318,Josh Garrels,Anchor (Beautiful Eulogy),1yJHtmzoiuIZu4RXJlIPnR,15,2012,acoustic,0.402,0.641,6,-7.453,1,0.171,0.0924,0.000124,0.116,0.17,81.92,337027,4 +319,Tyrone Wells,A Beautiful Place to Be,762yuu2n52bzhTvHl1x6vl,17,2012,acoustic,0.552,0.482,0,-7.81,1,0.0387,0.304,0.0,0.106,0.183,139.685,229538,4 +320,Josh Garrels,Cynicism,7oOkejm5Rj1H3DlrIaGpvR,15,2012,acoustic,0.768,0.831,9,-5.834,0,0.0869,0.0566,0.000152,0.337,0.836,107.023,215522,4 +321,Amos Lee,There I Go Again,6fTCqJRLU17CkIXCemMQlE,16,2012,acoustic,0.504,0.466,0,-8.57,1,0.0301,0.791,0.00832,0.194,0.467,139.248,304587,4 +322,Rodrigo y Gabriela,Ixtapa - Area 52 Version,4Lca3BIOvF9Mc6ISa8LdwU,12,2012,acoustic,0.538,0.806,6,-7.0,0,0.0376,0.714,0.865,0.0796,0.702,119.993,491947,4 +323,Frank Turner,Long Live The Queen,6QRDkWC9GcUskOn1NB66jt,16,2012,acoustic,0.448,0.445,9,-7.806,1,0.0713,0.398,0.0,0.349,0.709,172.561,206587,4 +324,Johnnyswim,Paris in June,2FlHJnYeLDWK3kw2X91HeP,13,2012,acoustic,0.242,0.31,5,-12.235,1,0.0382,0.89,0.00435,0.0973,0.102,82.649,220257,1 +325,Fay Wolf,I Wanna Dance With Somebody,0hXIuHaz9Z2YYbiowNuMYD,22,2012,acoustic,0.651,0.232,0,-9.686,1,0.0284,0.807,1.26e-05,0.0958,0.197,100.016,253389,4 +326,Kaki King,Great Round Burn,3lfNlcUKtrky8uyLEaWG4r,16,2012,acoustic,0.357,0.465,9,-9.042,0,0.0333,0.697,0.944,0.313,0.337,88.883,192385,4 +327,A Fine Frenzy,Riversong,04yF4HOQUVKqd5YlQ9B6FV,13,2012,acoustic,0.303,0.0714,11,-19.889,1,0.0416,0.803,3.6e-05,0.0995,0.116,104.512,466367,4 +328,Joshua Radin,The Greenest Grass,5WiCxBsZkcvlGYPzuTdLJM,13,2012,acoustic,0.434,0.541,3,-9.815,1,0.05,0.802,0.114,0.102,0.787,202.172,225413,4 +329,Joshua Hyslop,Hallelujah,10F7l8WTHPwXDyzkc9aKzB,21,2012,acoustic,0.485,0.0985,2,-16.179,1,0.0315,0.951,0.00294,0.0784,0.285,100.212,261627,3 +330,David Ramirez,Chapter II,5mh6jXON78l1HiLe3Q9cHd,15,2012,acoustic,0.39,0.2,7,-14.783,1,0.0353,0.406,0.000147,0.117,0.375,95.249,159000,4 +331,Eric Bibb,L.A.,4btERUvmhGfBPdHEwufHoE,16,2012,acoustic,0.379,0.318,3,-10.127,1,0.0326,0.886,0.0,0.14,0.46,82.272,337813,3 +332,Rodrigo y Gabriela,Santo Domingo - Area 52 Version,4jCoaq9wBNCsY1quK9hx6q,12,2012,acoustic,0.442,0.944,4,-6.224,0,0.0612,0.657,0.904,0.0948,0.624,133.052,391293,4 +333,Kate Havnevik,Think Again,5K2yPBCRfT6M05FwLTa3Kl,20,2012,acoustic,0.61,0.515,2,-8.78,1,0.0249,0.205,0.000413,0.123,0.272,107.981,215000,4 +334,Rodrigo y Gabriela,1899-12-31 11:11:00 - Area 52 Version,2b7s5CB6322yFPF91rQ0q0,12,2012,acoustic,0.576,0.724,0,-7.095,1,0.0594,0.663,0.756,0.55,0.532,187.814,450973,3 +335,Rodrigo y Gabriela,Juan Loco - Area 52 Version,3Km09WgjRZzcUJijauFg2l,12,2012,acoustic,0.688,0.934,8,-6.343,0,0.0367,0.489,0.901,0.177,0.962,117.012,249227,3 +336,Frank Turner,I Knew Prufrock Before He Got Famous,2FHSjSRo5vwLpLwkcmWG6c,16,2012,acoustic,0.412,0.607,0,-7.856,1,0.0438,0.186,0.0,0.358,0.43,100.675,193253,4 +337,Trent Dabbs,Better Off Now,5QF3qKPiPEm49edG2W5TYZ,17,2012,acoustic,0.674,0.159,4,-13.439,1,0.0386,0.917,0.016,0.0987,0.234,119.904,254413,3 +338,Ramshackle Glory,Last Song,1xTo7rP8pe1bVJ6OwrHX4w,14,2012,acoustic,0.302,0.371,7,-12.354,1,0.0423,0.0119,0.00476,0.207,0.364,82.259,226000,4 +339,Green River Ordinance,Resting Hour,1rCBWdI4CGvFrki2GiUjat,14,2012,acoustic,0.498,0.515,11,-6.03,1,0.0248,0.143,0.0,0.128,0.162,79.951,264453,4 +340,Jon Bryant,David Livingstone,0Q1hI9FVgOFaqdsbtHLASQ,19,2012,acoustic,0.357,0.216,1,-10.468,1,0.0319,0.843,9.28e-05,0.111,0.209,153.065,231112,3 +341,Jon McLaughlin,My Girl Tonight,7JeMyMZfYUrcau7HLhJEoR,16,2012,acoustic,0.573,0.284,1,-13.486,1,0.0316,0.926,9.29e-06,0.0975,0.352,122.144,235333,4 +342,Ron Pope,Everything,64p5emwVTAyOXQ97HfwhaR,18,2012,acoustic,0.526,0.55,2,-6.174,1,0.0309,0.392,6.14e-05,0.0759,0.3,143.61,256160,4 +343,AJJ,Deep Dark Basement (Spacejam Dub),2UEimugsOZY0EfHzX936DJ,14,2012,acoustic,0.697,0.494,0,-9.417,1,0.0435,0.814,0.32,0.144,0.399,132.628,193107,4 +344,Tristan Prettyman,Second Chance,60VmcKKcOAlexnYRiz46uq,13,2012,acoustic,0.529,0.628,10,-8.281,1,0.0479,0.0453,1.67e-05,0.139,0.309,179.91,213133,4 +345,Tristan Prettyman,Glass Jar,3Yt7Ez0nhup9zDza393S1e,13,2012,acoustic,0.636,0.235,0,-10.931,1,0.0326,0.739,1.83e-05,0.0949,0.418,125.521,292213,4 +346,Tristan Prettyman,When You Come Down,1IXjNvAsIysOcFW2ztRYe8,14,2012,acoustic,0.699,0.657,1,-8.061,1,0.025,0.207,2.21e-05,0.0903,0.754,111.984,204253,4 +347,Beans on Toast,Life,549fDjfdIlnvRw2TRy9JHP,24,2012,acoustic,0.612,0.343,0,-13.308,1,0.0466,0.773,0.0,0.134,0.745,82.39,224267,4 +348,Frank Turner,The Road,0qUqxxNci4PAj8YWTBA2l0,18,2012,acoustic,0.414,0.832,0,-5.694,1,0.12,0.00723,0.0,0.0531,0.573,187.818,237827,4 +349,Joey Cape,Confession,3fMMvNHd4koAhSZJSWq7lH,20,2012,acoustic,0.485,0.305,10,-6.39,1,0.0346,0.698,0.0,0.394,0.331,125.02,142000,4 +350,Steve Petrunak,How Great Thou Art,0tK8I6t7Z1KxetMTXTtpgh,14,2012,acoustic,0.567,0.3,10,-13.535,1,0.041,0.838,0.863,0.103,0.294,131.833,256444,4 +351,Tony Sly,Black Box,18TbIMwoBqAb4W3JUQo7KT,20,2012,acoustic,0.496,0.425,7,-5.582,1,0.0326,0.818,4.95e-06,0.0737,0.181,124.958,207760,4 +352,Frank Turner,Reasons Not To Be An Idiot,4h2F98rQVseI8cOsEql9sX,16,2012,acoustic,0.553,0.813,9,-4.915,1,0.0398,0.00404,0.0,0.107,0.765,145.048,228773,4 +353,Ramshackle Glory,Gospel Music for the Coming Social War,0zHGgFV3okHxtVIM6xxVgB,14,2012,acoustic,0.262,0.719,5,-8.474,1,0.0417,0.00996,0.053,0.298,0.722,58.309,239920,5 +354,Madi Diaz,Heavy Heart,7fNSeYZz8BdnSZ4PSi717k,17,2012,acoustic,0.581,0.246,4,-11.788,1,0.0286,0.46,0.00655,0.109,0.284,105.799,220933,4 +355,Greg Laswell,Dragging You Around,3ey9mK3flkMIevNQjFp2xD,18,2012,acoustic,0.497,0.854,7,-5.783,1,0.0373,0.0339,6.17e-06,0.183,0.386,129.026,223053,4 +356,Bukka White,Fixin' To Die Blues,2GM7Q376O8D1L5egNPjwTY,18,2012,acoustic,0.575,0.425,11,-7.611,1,0.0336,0.857,0.588,0.1,0.573,109.45,170266,4 +357,John Frusciante,Mistakes,5jpZ64gyazIZv4F5DHalMk,15,2012,acoustic,0.512,0.895,6,-4.074,0,0.0347,0.0315,0.433,0.16,0.473,161.711,229720,4 +358,Joshua Hyslop,Time Alone,3JXtTxrSa70YLYxAjwJ5pe,21,2012,acoustic,0.634,0.325,3,-14.148,1,0.0278,0.477,0.00739,0.0998,0.267,146.041,259867,4 +359,Roberto Diana,If You Are Happy,1YPbmTdxGNQOLnfTyK4kTi,15,2012,acoustic,0.516,0.344,2,-9.858,1,0.0482,0.923,0.767,0.0693,0.169,131.443,195187,4 +360,Dave Barnes,How Long,7qXgpZh7aNfbwz34GsM3fZ,13,2012,acoustic,0.667,0.653,1,-5.672,1,0.0348,0.00806,2.06e-05,0.0613,0.842,89.465,185253,4 +361,Kaki King,Fences,2xIfD9FHC76CLLWx9NDd7O,15,2012,acoustic,0.504,0.265,8,-15.679,0,0.0422,0.745,0.719,0.105,0.0498,139.026,203450,4 +362,Roberto Diana,In My Mind,0As5TtLywj47zWt3M7xjTi,17,2012,acoustic,0.411,0.117,2,-20.848,1,0.0402,0.891,0.88,0.109,0.0458,96.739,198947,4 +363,YUZU,Niji,7jsOy71a4Tt0p7tNJbZgV9,22,2012,acoustic,0.619,0.848,11,-3.082,1,0.0482,0.259,0.0,0.0874,0.536,113.005,325893,4 +364,Steve Petrunak,Days a Week,0XXbaDFx1mBegxDTEnaCTG,18,2012,acoustic,0.479,0.419,2,-6.915,1,0.0394,0.689,0.948,0.0877,0.202,137.705,169866,4 +365,Tyrone Wells,Freedom,1Ed5QRiwklWErs1XqwNgYC,14,2012,acoustic,0.733,0.86,2,-4.832,1,0.0479,0.12,1.15e-06,0.0457,0.916,102.048,170098,4 +366,Rodrigo y Gabriela,Hanuman - Area 52 Version,4NJruzai48eD3aCMGDl7Xz,11,2012,acoustic,0.63,0.936,4,-5.119,0,0.0459,0.384,0.746,0.331,0.831,130.041,333867,4 +367,Tristan Prettyman,The Rebound,7FpIlu3OoCp7VM5ajYgaWw,13,2012,acoustic,0.818,0.41,2,-8.696,1,0.0564,0.0953,6.29e-05,0.0853,0.75,92.002,147747,4 +368,Tim Barry,Bankers Dilemma,5vPQx2m1VgluqfWpmbaFwQ,13,2012,acoustic,0.631,0.652,7,-4.737,1,0.0524,0.352,0.0,0.136,0.662,97.967,169947,4 +369,Katie Herzig,We're All in This Together,428cC4nBhgRMLwkjMFjXhw,20,2012,acoustic,0.523,0.342,3,-10.328,1,0.0364,0.886,4.11e-05,0.114,0.441,124.145,120373,4 +370,Fuyumi Abe,更地,0xMHGvstLxWq0aXDfehI9D,29,2012,acoustic,0.676,0.301,11,-14.166,1,0.0264,0.803,3.02e-06,0.0947,0.511,97.988,159360,4 +371,Joey Cape,Resolve,0mztZtBx3boRw58FHDwlB8,20,2012,acoustic,0.339,0.51,8,-6.201,1,0.0391,0.717,0.0,0.307,0.621,84.093,130840,4 +372,David Ramirez,Paper Thin,1wC4FKffzQ6O228JTA2YZL,13,2012,acoustic,0.511,0.0613,9,-17.737,1,0.0549,0.503,0.000759,0.176,0.105,118.59,141467,4 +373,Benjamin Francis Leftwich,In the Open,0YxRq8qEwpXyWwJFiVYm9N,13,2012,acoustic,0.529,0.56,8,-8.786,1,0.0287,0.361,1.54e-06,0.159,0.569,131.269,213307,4 +374,Tyrone Wells,Give It Time,6DVTJ86mwBfg1zWCmIEzYx,18,2012,acoustic,0.546,0.588,6,-7.069,1,0.0264,0.0566,0.0,0.067,0.302,96.072,208760,4 +375,A Fine Frenzy,It's Alive,27BBs6uXwknJHO4EsTU082,12,2012,acoustic,0.713,0.513,5,-7.396,0,0.0359,0.00836,0.0,0.088,0.819,118.008,225095,4 +376,Jenny & Tyler,Psalm 86,54aohSaGyM0GzE02PDASZE,13,2012,acoustic,0.482,0.387,9,-11.731,1,0.0414,0.0699,0.0,0.0885,0.156,153.97,233933,4 +377,Tyler Ward,What Makes You Beautiful - Acoustic,381K4mTE7dLGzgVOYqwxOr,25,2012,acoustic,0.719,0.276,2,-8.619,1,0.0297,0.736,0.0,0.12,0.485,98.003,188878,4 +378,Tim Barry,40 Miler,1VNnaXhXUFS07Ev1PEd8j8,12,2012,acoustic,0.498,0.519,7,-6.843,1,0.0437,0.478,1.12e-05,0.201,0.552,134.819,218640,4 +379,Chuck Ragan,Field Holler,4GZFw5vY5pZ6ZMWyX8qPjr,18,2012,acoustic,0.619,0.574,2,-7.677,0,0.0284,0.528,0.0,0.0714,0.632,135.972,163475,4 +380,Dave Barnes,Mine To Love,6WI2N2R8Mf4RyVFQqu4mmQ,12,2012,acoustic,0.541,0.824,3,-5.9,1,0.0282,0.000941,0.0,0.228,0.637,101.98,228800,4 +381,Ramshackle Glory,Fuck Everything (Reportback from the Nihilist Working Group to the General Assembly of Occupy Tucson),5FfpnKwSfEV2ww0zGaFPun,14,2012,acoustic,0.194,0.663,0,-8.965,1,0.0387,0.00204,0.000139,0.333,0.537,68.273,204920,4 +382,Amos Lee,Mama Sail To Me,21EDq30Zgzb1BixIdtq0Ao,15,2012,acoustic,0.355,0.287,7,-11.034,1,0.0309,0.854,0.00113,0.103,0.296,80.463,251947,4 +383,Eric Hutchinson,In the First Place,2cyJaJQ0H3yLOa3oWorpk8,13,2012,acoustic,0.635,0.745,9,-5.013,1,0.0242,0.00093,0.0,0.177,0.644,97.997,250160,4 +384,Harley Poe,What's a Devil to Do?,4FdgOEa16hCKV09igvpiLW,14,2012,acoustic,0.552,0.67,9,-4.895,0,0.0308,0.204,0.0,0.0814,0.572,91.683,391000,4 +385,Harley Poe,The Worms Crawl In,3pBLHNsdMuqUTLRtcXXgNZ,16,2012,acoustic,0.413,0.515,0,-4.632,0,0.0467,0.339,0.0,0.0796,0.546,203.533,165000,3 +386,Steve Petrunak,Jingle Bell Rock,5vypcmaP4DnqH71TGZVTni,15,2012,acoustic,0.724,0.471,11,-7.038,0,0.0377,0.819,0.909,0.119,0.657,135.753,131600,4 +387,Jon McLaughlin,If Only I,0jfJ9q6TwCqPjZkiYr4BOV,16,2012,acoustic,0.621,0.557,7,-7.633,1,0.0324,0.14,0.000412,0.111,0.0392,119.48,326400,4 +388,David Ramirez,An Introduction,3WHJBKEhA6VsEMFCAaBxYP,14,2012,acoustic,0.41,0.78,11,-7.527,0,0.0281,0.00323,5.71e-05,0.325,0.578,171.833,218440,4 +389,Frank Turner,Substitute,1AT9wI4nIJyimwOvxKOpf9,15,2012,acoustic,0.575,0.407,9,-7.116,0,0.0297,0.785,0.0,0.105,0.494,93.881,165867,4 +390,Matthew Perryman Jones,Canción De La Noche,3e03PW09bAiFKrobeEBcJ7,17,2012,acoustic,0.382,0.561,9,-8.706,0,0.0318,0.413,0.141,0.264,0.17,93.948,399213,4 +391,Rachael Yamagata,Heavyweight,56PyvPa7GlysDiXYf0ua6p,18,2012,acoustic,0.312,0.305,9,-10.44,1,0.03,0.945,0.0269,0.179,0.327,135.815,202585,4 +392,Tony Sly,Under the Garden,3cDtWgmdZFdsWhpklpQfod,19,2012,acoustic,0.465,0.48,7,-6.119,1,0.0329,0.879,0.0,0.302,0.215,77.746,196560,4 +393,Mindy Smith,Pretending the Stars,7nKqml3KCfsMOfRqT4DgKT,12,2012,acoustic,0.537,0.695,1,-6.474,1,0.029,0.0518,2.47e-05,0.103,0.607,126.008,199987,4 +394,Kris Allen,Teach Me How Love Goes,7jfpsOLXpwKwtACP2iu35B,16,2012,acoustic,0.608,0.462,11,-10.113,1,0.0314,0.709,3.2e-05,0.105,0.223,87.037,206187,3 +395,Jon McLaughlin,Promising Promises,69aiUxLaitPztAnyyYsj2J,14,2012,acoustic,0.49,0.799,5,-4.506,1,0.0339,0.183,6.29e-06,0.18,0.124,86.95,284467,4 +396,Andrew Belle,In My Veins - Live (Bonus Track),4y63GaUy4u0eg2qD1Eop8d,19,2012,acoustic,0.492,0.488,9,-6.232,0,0.0276,0.643,0.000286,0.112,0.227,113.082,382490,4 +397,Chris Smither,Place In Line,2SeSE8ktfhgZmTVUpjjnBY,17,2012,acoustic,0.638,0.623,9,-7.926,1,0.0256,0.873,0.000582,0.219,0.678,102.809,231933,4 +398,Josh Garrels,Valor,23b1FPZZmMRWFHV5DhJNQq,13,2012,acoustic,0.547,0.68,9,-9.015,0,0.0538,0.406,0.0664,0.113,0.167,85.015,134596,4 +399,Rodrigo y Gabriela,Logos - Area 52 Version,7fJnpgXf1yw7BVt0GUgfp0,10,2012,acoustic,0.65,0.608,4,-8.274,0,0.0461,0.886,0.924,0.102,0.119,129.996,286187,4 +400,Greg Laswell,New Year's Eves,4q4WHMr06TpvYlV9rh25lp,15,2012,acoustic,0.36,0.602,8,-6.884,1,0.0319,0.451,5.78e-05,0.116,0.204,169.938,202387,4 +401,Mindy Smith,Come To Jesus,3WLR9FPAIojSNiX27BB1l2,12,2012,acoustic,0.535,0.371,8,-10.401,1,0.0335,0.591,0.0,0.101,0.153,146.1,254267,4 +402,Frank Turner,Try This At Home,6lgDndt95hRxXS5j8OaMyO,14,2012,acoustic,0.508,0.908,7,-4.188,1,0.042,0.0344,0.0,0.574,0.845,134.81,112960,4 +403,Drew Holcomb & The Neighbors,Ain't Nothing Like the Real Thing,3k6RBcCUzldU28jdhstSFt,12,2012,acoustic,0.462,0.676,0,-6.987,1,0.0285,0.084,4.07e-05,0.113,0.759,157.432,229088,4 +404,Drew Holcomb & The Neighbors,Long Monday,7G097EcnwP2Ijbt6dbTQU5,12,2012,acoustic,0.665,0.338,0,-13.108,1,0.0466,0.868,0.000761,0.102,0.218,76.589,213285,4 +405,Amy Stroup,Fell Like a Feather,3R53PzUKksFwPnCqEAUcRt,10,2012,acoustic,0.71,0.304,9,-14.561,1,0.0317,0.799,0.0355,0.0897,0.311,108.596,251640,4 +406,Toto Sorioso,Saving Forever For You,2l2ezBMXEfD7o6VLN1KXcA,28,2012,acoustic,0.681,0.371,4,-9.96,0,0.0368,0.783,0.0,0.105,0.488,132.882,255240,4 +407,Ron Pope,Bitterness or Sympathy,1MKgoDlcbAQCbcZIDAftC3,15,2012,acoustic,0.563,0.439,1,-9.515,1,0.0283,0.134,1.25e-05,0.109,0.512,141.89,245907,4 +408,Erin McCarley,What I Needed,2XliH3CK8MJrnpChahc4Mj,16,2012,acoustic,0.682,0.344,1,-7.52,0,0.0292,0.566,7.92e-06,0.112,0.26,97.001,218240,3 +409,Kris Allen,Rooftops,1L1YkLIi6vpNPwW1db7o8J,14,2012,acoustic,0.749,0.805,7,-5.682,1,0.0688,0.0779,0.0,0.184,0.624,86.988,182400,4 +410,David Ramirez,Goodbye,3Tu5k1C7ui9VnoTZrYZn2u,12,2012,acoustic,0.463,0.034,11,-18.503,1,0.0364,0.929,0.000104,0.111,0.221,91.606,149400,3 +411,Kaki King,No True Masterpiece Will Ever Be Complete,2sQVXnBwlXdyrMmGUSSUcM,14,2012,acoustic,0.501,0.377,3,-15.423,1,0.0301,0.77,0.929,0.142,0.241,137.88,204184,3 +412,Steve Petrunak,Yesterday Once More,3t1HSy5iSTNlwlb7JVw54L,24,2012,acoustic,0.722,0.401,4,-7.479,1,0.058,0.903,0.798,0.101,0.294,82.99,265926,4 +413,Eric Hutchinson,Living in the Afterlife,0OaFGpWo2SALjXQGcWZRDs,12,2012,acoustic,0.639,0.919,9,-5.749,1,0.0448,0.004,5.75e-06,0.104,0.688,103.991,270693,4 +414,Harley Poe,Herschell,3h5kgYI6Etafu9WbTqaI8o,13,2012,acoustic,0.698,0.625,9,-5.642,0,0.167,0.341,0.0,0.239,0.761,81.525,264000,4 +415,Matthew Perryman Jones,O Theo,4agM4Z6YLKo6ksodu072lW,15,2012,acoustic,0.337,0.577,0,-7.881,1,0.0313,0.721,0.00945,0.128,0.262,157.96,302320,3 +416,Tristan Prettyman,Deepest Ocean Blue,7649aUauAZ8tfvbjW78cHH,11,2012,acoustic,0.506,0.084,11,-11.393,1,0.0373,0.751,0.004,0.107,0.336,118.33,330600,4 +417,Tyrone Wells,"Beautiful Girl, Beautiful World",3bBUDZNQ2x42KWhKrNsQvE,13,2012,acoustic,0.596,0.184,4,-13.857,1,0.0317,0.642,0.0,0.187,0.591,128.142,186265,3 +418,Tony Sly,Pre-Medicated Murder,6sTzJD69ZNCiynzd3B64ZH,18,2012,acoustic,0.472,0.375,9,-6.86,1,0.0279,0.754,4.21e-06,0.33,0.241,142.172,163547,4 +419,Lulu Panganiban,I'll Never Get Over You Getting Over Me,0t9lXLs71zNvqsUcBZrOi8,30,2012,acoustic,0.503,0.319,9,-10.172,1,0.0264,0.728,3.67e-06,0.155,0.355,163.856,236013,4 +420,Jaymay,Lamb,7fvb00s9dY59NUhvtyhp6N,15,2012,acoustic,0.665,0.394,3,-8.372,1,0.034,0.517,0.0,0.371,0.77,150.978,118979,3 +421,Ichiko Aoba,IMPERIAL SMOKE TOWN - remastered,4E5kFoqMdJ9TVcyeAE10mJ,16,2012,acoustic,0.513,0.132,10,-19.708,0,0.0679,0.988,0.211,0.0734,0.0566,114.551,437732,4 +422,Joey Cape,Alison's Disease,2JpoBFBtUGZdon10jfIayr,19,2012,acoustic,0.408,0.276,10,-9.158,1,0.0322,0.871,0.0,0.117,0.191,127.906,176173,4 +423,Dave Barnes,Hey Now,0mlPvEbpVpSMId3RVsp1h4,11,2012,acoustic,0.709,0.503,9,-12.701,1,0.0402,0.364,0.0,0.209,0.895,106.004,156080,4 +424,A Fine Frenzy,They Can't If You Don't Let Them,0jhdk5ir8wAb8dIryDlUGe,10,2012,acoustic,0.595,0.53,1,-9.968,0,0.0292,0.281,0.000379,0.335,0.466,101.946,297910,3 +425,Dave Barnes,Warm Heart In A Cold World,5oRPKPzjxg4wC5CNck5BQN,13,2012,acoustic,0.646,0.398,10,-8.883,1,0.0261,0.574,0.083,0.164,0.533,72.995,252640,4 +426,Mark Lanegan,Leviathan,1pjGnLHgG94x0aKYtZkgJN,21,2012,acoustic,0.192,0.384,0,-8.276,1,0.0291,0.471,6.11e-06,0.453,0.128,99.311,262000,3 +427,Mark Lanegan,Deep Black Vanishing Train,4hOJVPNHWGeWQvBxDEQC2z,21,2012,acoustic,0.605,0.389,7,-10.129,1,0.0307,0.752,0.000128,0.261,0.23,106.094,186200,4 +428,Kris Allen,Out Alive,4ZE3lE2Y9zbGoa9hroEthg,15,2012,acoustic,0.619,0.593,3,-5.87,1,0.0276,0.00329,0.0,0.125,0.238,115.978,222707,4 +429,Gabrielle Aplin,Out On My Own,2j6IM6bho1XEweqd0ozrzr,22,2012,acoustic,0.549,0.439,1,-10.706,0,0.0404,0.529,2.77e-05,0.19,0.173,128.626,246021,4 +430,A Fine Frenzy,Sailingsong,103Fn14sKh41DrDrbvd8Oc,10,2012,acoustic,0.766,0.562,1,-8.843,1,0.0447,0.0941,0.567,0.0899,0.594,123.019,265305,4 +431,A Fine Frenzy,Untitled (Grasses Grow),3VEJAR3mb4eEj8Q2td1c7p,10,2012,acoustic,0.37,0.0257,2,-20.823,1,0.0386,0.972,0.000118,0.0803,0.0762,116.755,445781,4 +432,Steve Petrunak,Follow Me,2ecLamflG26HdReNMboOSD,14,2012,acoustic,0.504,0.406,7,-7.694,1,0.0432,0.803,0.615,0.171,0.398,124.577,181653,4 +433,Jack Savoretti,Knock Knock,0jpvmRWyuhBWz1shX515JY,30,2012,acoustic,0.639,0.846,2,-4.805,1,0.0518,0.00143,6.78e-06,0.159,0.908,90.06,177187,4 +434,The Moon Loungers,Under Pressure,4dsqYbUmRHHbtT6hJI3i7I,24,2012,acoustic,0.739,0.428,2,-8.558,1,0.0387,0.864,2.21e-05,0.0885,0.489,117.712,219097,4 +435,Jack Savoretti,Changes,6bM5S6FZ8zwMda9gPRyHTT,29,2012,acoustic,0.563,0.501,0,-6.774,1,0.023,0.0374,5.58e-05,0.118,0.0815,78.026,253733,4 +436,Jon Bryant,Take Me if You Must,1CxugdvAyL8WvqzbfcSUux,14,2012,acoustic,0.516,0.588,4,-8.411,1,0.0347,0.0529,2.87e-06,0.148,0.436,133.023,213045,4 +437,Amos Lee,May I Remind You,6JffGJu6ocKYIrj9WxKlnE,14,2012,acoustic,0.552,0.235,2,-12.077,1,0.0294,0.738,0.00422,0.331,0.243,120.112,279560,3 +438,Mischief Brew,Catch Fire,3xei3T9xnPfAheWOxTR0pN,13,2012,acoustic,0.432,0.778,9,-7.024,1,0.0338,0.0432,2.66e-06,0.212,0.382,103.793,288987,4 +439,Ron Pope,Atlanta,1ZVxkwGlboJdbxYDxGmsRh,16,2012,acoustic,0.598,0.523,0,-11.4,1,0.0377,0.583,0.00791,0.162,0.336,140.047,305467,4 +440,Dan Andriano in the Emergency Room,The Radiator,4gu0mVklVdg6ISVVwUwviN,12,2012,acoustic,0.561,0.325,5,-9.137,1,0.0321,0.798,0.0,0.0729,0.39,75.917,235000,4 +441,David Ramirez,Mighty Fine,5usply7cKJ7q2ReJB1TVeS,11,2012,acoustic,0.446,0.424,9,-8.184,1,0.0315,0.0127,0.0,0.0993,0.289,129.511,185173,4 +442,John Frusciante,Ratiug,67z6lT6u7sk0fgW0NZZPAi,12,2012,acoustic,0.662,0.771,1,-7.623,1,0.0379,0.122,0.0324,0.281,0.78,90.025,385770,4 +443,Andy Salvanos,Farewell,3GsTphMPtuiF4oS34FivTL,15,2012,acoustic,0.401,0.027,7,-21.837,0,0.0344,0.961,0.676,0.122,0.141,72.975,193587,4 +444,Chris Smither,What It Might Have Been,3qyPdwuA48AeB8gEdi3LuV,15,2012,acoustic,0.319,0.359,4,-9.822,1,0.0415,0.865,0.013,0.153,0.457,199.002,199147,3 +445,Mischief Brew,Bang-Up Policework,3V4fr9oeu918MQHtlUY8oY,12,2012,acoustic,0.469,0.967,7,-5.225,1,0.0823,0.00291,3.14e-06,0.154,0.565,94.548,158653,4 +446,Jon Bryant,Souls of Manhattan,5ZnVaxKep3PlRoudv87KGT,15,2012,acoustic,0.41,0.187,3,-13.192,1,0.0315,0.849,0.000319,0.0962,0.141,126.382,222933,3 +447,Jenny & Tyler,Abide,6KCgptqZJV0wec6LATUUcK,10,2012,acoustic,0.639,0.25,1,-12.341,1,0.0338,0.361,2.43e-06,0.0885,0.139,116.015,284307,3 +448,Joshua James,Mystic,41NfJ0nfTP11P60Pvq5n8c,13,2012,acoustic,0.394,0.287,2,-10.498,1,0.0367,0.757,3.31e-05,0.104,0.154,130.562,243773,4 +449,Joshua James,Ghost in the Town,4kAUNtghDs2WP5ipwJ3kxG,15,2012,acoustic,0.594,0.56,0,-9.103,0,0.0336,0.732,0.000383,0.106,0.327,128.047,179600,4 +450,Frank Turner,The Next Round,42ZpykiOpEIXHgYl0cr9Wy,13,2012,acoustic,0.481,0.184,7,-13.243,1,0.0358,0.565,0.000502,0.1,0.168,117.015,275640,3 +451,Brett Dennen,You Ain't Goin' Nowhere,2ftFFvfnqMXz4NYCK86hVZ,11,2012,acoustic,0.595,0.461,7,-8.317,1,0.0312,0.114,0.0,0.195,0.709,124.433,183280,4 +452,Gabrielle Aplin,Let Me In,6z0VNiNihK5hdxqrIrA7qI,21,2012,acoustic,0.58,0.0675,2,-13.626,1,0.0397,0.947,6.41e-06,0.096,0.135,84.647,197956,4 +453,Mark Lanegan,Tiny Grain of Truth,2TDUZHq5KXulbYtOGOa1sa,20,2012,acoustic,0.401,0.8,7,-5.5,1,0.0396,0.00123,0.599,0.323,0.146,116.024,427187,4 +454,Eric Bibb,Send Us Brighter Days,5Y4jV2tK69LmkyLMGnhc3N,12,2012,acoustic,0.658,0.202,7,-13.326,1,0.0356,0.914,0.0115,0.109,0.211,97.464,238307,3 +455,Matt Wertz,White Christmas,3tl3pscel2HtdiGAVkv1Lb,16,2012,acoustic,0.567,0.456,0,-9.657,1,0.0399,0.125,0.0,0.301,0.458,125.988,178720,4 +456,Matthew Mayfield,Heart in Wire,6kPkYuGlEucoO99DRWrDBc,12,2012,acoustic,0.395,0.181,11,-11.549,1,0.04,0.491,0.0,0.14,0.147,80.215,262364,4 +457,Ichiko Aoba,kanashii yume o mitara - remastered,3nB0X7dZbRR9GzXxCGyyGX,15,2012,acoustic,0.476,0.0298,5,-21.138,1,0.0477,0.993,0.0122,0.113,0.201,135.251,179785,3 +458,Ichiko Aoba,watashi no nusubito - remastered,4pvwJZdAlsjThquFYSJJcZ,14,2012,acoustic,0.433,0.028,3,-19.395,1,0.0375,0.992,0.00434,0.101,0.0687,134.009,311585,4 +459,Joey Cape,Broken Record,5xOQjDoakQDYxUV930EEDP,17,2012,acoustic,0.752,0.189,1,-9.681,1,0.0529,0.864,0.000227,0.127,0.412,121.504,145920,4 +460,Get Dead,Escape Plan,2LzD7vJUak0Grzruq7Hxdm,13,2012,acoustic,0.559,0.787,11,-5.393,1,0.0456,0.095,0.0,0.16,0.729,118.024,226173,4 +461,Hannah Trigwell,Don't Speak,4L62B5WYHBpFulsWF0mlmC,27,2012,acoustic,0.399,0.473,4,-6.416,0,0.0343,0.796,0.0,0.128,0.482,112.23,188127,3 +462,Steve Petrunak,O Little Town of Bethlehem,11GBHpTngZZmdyTZuTcBVc,11,2012,acoustic,0.457,0.142,8,-13.647,1,0.0483,0.89,0.941,0.134,0.483,96.45,136066,4 +463,Joshua Hyslop,Where The Mountain Meets The Valley,0LOxNQ3PElqnuUpazw1RUA,19,2012,acoustic,0.533,0.386,7,-13.431,1,0.0282,0.109,0.0141,0.149,0.333,77.987,281973,4 +464,Tyrone Wells,All You Gotta Do Is Dream,1MUUd3tTTh7z20isAk4ljK,16,2012,acoustic,0.728,0.422,4,-9.502,1,0.035,0.728,2.33e-05,0.167,0.379,134.936,207535,4 +465,John Standefer,Once Upon a Western Sky,7p0jYavIgLwjjBPC2oCYu7,14,2012,acoustic,0.383,0.208,2,-14.656,1,0.0353,0.907,0.955,0.132,0.298,84.841,162707,3 +466,Van Larkins,Freyah's Song,7jxbGAjBnR1jugGqv0j07q,13,2012,acoustic,0.592,0.19,8,-19.14,1,0.0501,0.841,0.824,0.117,0.451,123.963,123000,3 +467,Frank Turner,The Real Damage,77Sjb67YQPVUZzufE3RRff,13,2012,acoustic,0.645,0.438,7,-6.701,1,0.0269,0.425,0.0,0.134,0.615,89.001,215173,4 +468,Mindy Smith,No One Is to Blame,1ANbimG6Ev2ZaZVc4MWSdH,11,2012,acoustic,0.447,0.185,11,-10.578,1,0.0339,0.879,1.5e-06,0.102,0.28,181.587,213489,4 +469,Frank Turner,Sons Of Liberty,4Jp7YhB7sJs1UYzrbK8E3N,12,2012,acoustic,0.371,0.765,6,-6.917,0,0.0432,0.013,0.000165,0.114,0.281,96.088,268307,3 +470,Frank Turner,Dan's Song,5CkTDPtqkCO49qThnNZzVm,13,2012,acoustic,0.485,0.52,4,-8.028,1,0.0421,0.671,0.0,0.113,0.717,114.953,116680,4 +471,Matthew Perryman Jones,Waking the Dead,7dFfkQoKThIdy2mb3dCldS,12,2012,acoustic,0.419,0.854,10,-6.352,1,0.0528,0.00062,3.51e-05,0.128,0.289,135.007,212240,4 +472,Rodrigo y Gabriela,Master Maqui - Area 52 Version,1bBegAYUZWsVODyqvBtBp8,9,2012,acoustic,0.422,0.862,9,-7.427,0,0.0403,0.747,0.73,0.054,0.962,100.49,313387,3 +473,Kris Allen,Monster,3nM0eDJYu71MzLmBq3BiDV,12,2012,acoustic,0.604,0.887,8,-5.94,1,0.0619,0.00972,0.0,0.303,0.586,80.977,215867,4 +474,Green River Ordinance,Healing Touch,6Bcum8r3AsDLl4XnliOnPt,11,2012,acoustic,0.439,0.565,9,-6.02,1,0.0284,0.218,0.0,0.305,0.423,160.083,207613,4 +475,Greg Laswell,Late Arriving,5gbRfKXYhtN3TyGGhDazrt,12,2012,acoustic,0.348,0.618,10,-7.248,1,0.0283,0.734,9.06e-05,0.109,0.331,82.512,201187,3 +476,Ichiko Aoba,sanbiki no kuma - remastered,4Y9uyX128D4wkcejdepunY,15,2012,acoustic,0.491,0.0242,8,-18.691,1,0.0408,0.991,0.00238,0.0922,0.268,111.026,280558,4 +477,Rachael Yamagata,Falling in Love Again,0hXpmr5CEJ5860N1PViC1L,18,2012,acoustic,0.536,0.339,4,-11.931,1,0.028,0.895,0.196,0.104,0.078,132.073,240771,4 +478,Lulu Panganiban,Need To Be Next To You,3ucVwg5mQzrIuwIe4eeSpa,27,2012,acoustic,0.512,0.341,2,-9.573,1,0.0328,0.744,0.0,0.268,0.559,175.889,220013,4 +479,Rachael Yamagata,Has It Happened Yet,128HO1qzjqFWmmK3UF0euC,18,2012,acoustic,0.743,0.308,6,-11.267,1,0.0366,0.726,4.13e-05,0.108,0.419,115.944,278916,4 +480,Rachael Yamagata,Nothing Gets By Here,6rQxpkDbthSSisIXFNo5wv,17,2012,acoustic,0.364,0.399,5,-8.733,1,0.0262,0.606,0.0254,0.262,0.138,109.854,284196,3 +481,Get Dead,Battle Lines,17zPqeiG5056er12KcHQx8,13,2012,acoustic,0.313,0.622,8,-6.401,1,0.0309,0.0759,0.000254,0.209,0.363,89.879,181787,4 +482,Ichiko Aoba,hikari no furusato - remastered,6aob3cx3ppWNti336wNCpr,15,2012,acoustic,0.434,0.0498,3,-18.884,1,0.04,0.99,0.163,0.082,0.18,69.868,192145,4 +483,Ichiko Aoba,anata no kazari - remastered,6Mye7m0XQwjvcHaz3h5FRl,14,2012,acoustic,0.521,0.0625,5,-17.618,1,0.0438,0.99,0.0341,0.157,0.136,134.682,277985,4 +484,Get Dead,Shootin the Moon,4lgQ17oD90SqkK2GvkIzhw,13,2012,acoustic,0.367,0.915,6,-4.43,1,0.0699,0.268,1.97e-05,0.172,0.649,115.743,157360,4 +485,Cary Brothers,Ordinary World,0BqlulEIiQ1f2heOWPZ582,17,2012,acoustic,0.629,0.499,11,-8.105,1,0.0297,0.0908,0.00199,0.0971,0.202,129.922,227000,4 +486,Kaki King,Cargo Cult,1PtRLaATg0M0opeNwKVECu,12,2012,acoustic,0.486,0.394,6,-16.473,0,0.0752,0.471,0.742,0.369,0.166,114.051,236469,4 +487,Fay Wolf,Your Love,2KMf5RjNDIF1wDUS6Sb4Im,12,2012,acoustic,0.226,0.394,8,-8.891,1,0.0316,0.579,0.387,0.252,0.206,180.469,201996,4 +488,Right the Stars,Give It All,5PwPE8R9UDIY6uTpzURSAF,17,2012,acoustic,0.43,0.696,11,-6.277,1,0.0371,0.0141,0.232,0.103,0.23,139.995,224760,4 +489,Kaki King,Streetlight in the Egg,05Mfg7sc9dVrcCeG0ItX0V,12,2012,acoustic,0.566,0.516,0,-11.822,1,0.0268,0.114,0.769,0.101,0.408,92.61,223901,4 +490,Matthew Perryman Jones,I Won't Let You Down Again,3P6L9WtMyNTl0kQAz3kfYc,14,2012,acoustic,0.525,0.613,0,-6.162,1,0.0249,0.259,9.45e-05,0.145,0.359,105.047,237267,4 +491,The Moon Loungers,The Air That I Breathe vs Creep,2vlESCiXh3JANCGcC3pZBp,18,2012,acoustic,0.591,0.297,9,-10.167,1,0.0259,0.75,0.0,0.08,0.138,95.479,272013,4 +492,Augustana,Boston,29PU1knovCJcE0bYYle0tD,9,2012,acoustic,0.443,0.541,0,-5.564,1,0.0294,0.196,9.01e-06,0.138,0.287,73.493,246493,4 +493,Augustana,Sweet and Low - New Album Version,2CRTNlJ7k2adouy6WSKh3W,9,2012,acoustic,0.443,0.712,11,-4.764,1,0.0313,0.0056,0.0015,0.0964,0.444,151.911,214440,4 +494,The Civil Wars,Goodbye Girl,1LPdYksb2LhW4O9VmSPltR,10,2012,acoustic,0.56,0.235,11,-11.207,1,0.0281,0.643,0.0,0.0994,0.208,80.038,239492,4 +495,Ramshackle Glory,Introduction,5gHKYgKMiKfGhEsSONzej8,10,2012,acoustic,0.272,0.7,0,-10.424,1,0.0497,0.216,0.0,0.828,0.238,71.719,271093,4 +496,Tyler Ward,Ho Hey,3YbOccoztkmTTd4SqteNMb,20,2012,acoustic,0.457,0.45,0,-9.207,1,0.0322,0.368,9.04e-05,0.153,0.156,154.839,147484,4 +497,Dave Barnes,White Flag,0NSLR0NMQ9XhlFafhFCAM5,10,2012,acoustic,0.67,0.915,1,-5.111,1,0.0451,0.05,5.14e-06,0.34,0.881,104.975,204680,4 +498,Erin McCarley,Amber Waves,6JHHlemyLhmCKDkAE0yWWP,9,2012,acoustic,0.511,0.908,9,-5.965,0,0.0405,0.0193,4.32e-05,0.677,0.477,148.027,254680,4 +499,Benjamin Francis Leftwich,Break the Day Open,6dOtnixK6vXJEV4ufLvcpK,10,2012,acoustic,0.624,0.384,0,-12.409,0,0.028,0.896,0.00182,0.129,0.311,126.897,212480,4 +500,A Fine Frenzy,Winds Of Wander,1BgqsrK8WEMCfqqvXG0jGJ,9,2012,acoustic,0.359,0.278,10,-14.502,1,0.034,0.442,0.386,0.325,0.13,122.873,365712,3 +501,Scars On 45,Promises and Empty Words,2xp3Dv72K0AvDJrvTHkkXS,11,2012,acoustic,0.496,0.707,4,-5.578,1,0.026,0.425,0.0,0.1,0.444,95.055,199533,4 +502,Greg Laswell,Back To You,1uLsBstMorDSFhuBVkBC6n,11,2012,acoustic,0.323,0.278,5,-10.709,1,0.0301,0.779,0.0844,0.101,0.11,119.329,182613,5 +503,Matthew Mayfield,Track You Down,1Ufnc6i51IBap4SF6FMosO,13,2012,acoustic,0.333,0.505,7,-9.494,1,0.0374,0.32,0.0,0.155,0.319,94.533,211059,4 +504,Steve Petrunak,Morning Has Broken,2NA48alYil98ECWFXfZhUp,8,2012,acoustic,0.362,0.289,2,-13.776,1,0.0392,0.581,0.939,0.136,0.394,104.406,190613,3 +505,Ichiko Aoba,kiseki wa itsudemo - remastered,5jXc2okCvFScNfEQbsKNO8,14,2012,acoustic,0.426,0.0388,8,-17.818,1,0.0444,0.987,0.0021,0.0816,0.192,133.525,314865,3 +506,Moon Bandits,Community Love Song,6hzNofzayyRc1VnGHCzDaU,10,2012,acoustic,0.546,0.541,5,-6.657,1,0.0284,0.917,0.00216,0.103,0.628,102.417,119598,4 +507,Gabrielle Aplin,Romeo Must Die,4DHlfJVxV1vkxQt3SbmfxD,20,2012,acoustic,0.533,0.652,11,-8.87,0,0.0285,0.0299,0.00418,0.11,0.263,98.558,234258,4 +508,Get Dead,Lead Foot,5BOpiuKjeCzO8GNhQFIQfI,12,2012,acoustic,0.519,0.888,11,-4.457,1,0.0901,0.00342,2.31e-06,0.245,0.806,138.078,220613,4 +509,Steve Petrunak,Cat's in the Cradle,3KCJcWrBMZfveXwEqBV23z,12,2012,acoustic,0.368,0.227,2,-14.354,1,0.0437,0.278,0.824,0.138,0.208,126.616,219840,4 +510,Steve Petrunak,Do You Hear What I Hear,0MgVjMdwwWomsu37bImhHl,11,2012,acoustic,0.612,0.183,7,-14.334,1,0.043,0.978,0.879,0.106,0.188,82.695,208920,4 +511,Eric Bibb,Blowin' In The Wind,6F6Zl9oaUjTOXcctV129cy,11,2012,acoustic,0.61,0.19,8,-17.22,1,0.0418,0.892,0.022,0.11,0.38,90.106,285720,4 +512,David Ramirez,Dancing and Vodka,3F0KGeqkxQ7Y2ON80OFNcn,9,2012,acoustic,0.579,0.407,7,-9.268,1,0.0366,0.12,4.74e-05,0.154,0.287,121.717,191213,3 +513,David Ramirez,Kindness,65TTeV2W0tW7YbcshLQXDl,10,2012,acoustic,0.543,0.016,4,-20.561,1,0.0388,0.877,0.000132,0.118,0.3,131.556,215533,4 +514,Jason Reeves,Back With Me,1TK8xu9soRb6ZeXwuiZqWY,19,2012,acoustic,0.433,0.2,3,-16.514,1,0.0347,0.946,8.3e-05,0.11,0.142,139.679,200387,4 +515,Tyrone Wells,You and Me On Top of the World,7tn0RdqZ9cLscbwfKLHNI4,14,2012,acoustic,0.525,0.784,0,-4.602,0,0.283,0.228,0.0,0.0921,0.607,169.815,222338,4 +516,Charley Patton,Fixin' to Die Blues,568epmyR5fbutBWJu1U3eu,10,2012,acoustic,0.599,0.276,11,-12.404,1,0.0408,0.872,0.598,0.274,0.602,109.43,168213,4 +517,Drew Holcomb & The Neighbors,Nashville,1mwFE8s3rNH3CYItLl2SCv,10,2012,acoustic,0.64,0.411,7,-12.063,1,0.035,0.683,0.000781,0.111,0.132,98.427,245767,4 +518,Drew Holcomb & The Neighbors,Long Ride Home,4dZpV9tQLaQoa1fVrGCYdV,10,2012,acoustic,0.599,0.396,2,-9.251,1,0.0382,0.62,0.0,0.0964,0.317,80.014,232325,4 +519,Tyler Ward,Skyscraper - Acoustic,2onor8aIi5uJjVFcX8Gjlg,20,2012,acoustic,0.621,0.208,2,-8.834,1,0.034,0.77,0.0,0.256,0.236,104.037,208015,4 +520,Kris Allen,Blindfolded,5wS3YkqWYfNMkIsIF5FvkM,13,2012,acoustic,0.455,0.765,0,-5.599,1,0.0559,0.0193,0.0,0.208,0.331,87.494,189093,4 +521,Kris Allen,Turn The Pages,2zzK7CLXHiorj6DLLTjELq,13,2012,acoustic,0.553,0.75,9,-5.23,1,0.0421,0.0481,0.0,0.0817,0.759,95.984,181000,4 +522,Tyler Ward,Set Fire To The Rain - Acoustic,4p2xmM5OT1AatFFGN5ICGX,16,2012,acoustic,0.499,0.283,7,-9.743,1,0.0345,0.381,0.0,0.3,0.4,107.931,217349,4 +523,Mindy Smith,Little Lies,69VCXrG8GI8ZPSmY4YEXhj,11,2012,acoustic,0.684,0.727,6,-8.069,0,0.0331,0.538,0.000574,0.1,0.554,127.001,258693,4 +524,Matthew Perryman Jones,Stones FromThe Riverbed,52ry0zLAveUd7ZcJ1d481d,13,2012,acoustic,0.407,0.427,0,-10.381,1,0.0348,0.211,0.0113,0.0805,0.109,174.152,307453,4 +525,Frank Turner,Nashville Tennessee,6t3emphal4nKRj67Oj0inN,11,2012,acoustic,0.533,0.552,9,-7.309,1,0.0263,0.0795,0.0,0.358,0.555,146.002,222360,4 +526,Frank Turner,Father's Day,7xy4ZZz7sC0MtfPpsWrgi0,12,2012,acoustic,0.523,0.656,5,-6.431,1,0.0267,0.00431,2.05e-05,0.125,0.361,142.109,290093,4 +527,Amos Lee,The Darkness,2NCOBqKfBhJSHvyXF9vaxF,12,2012,acoustic,0.347,0.403,5,-8.341,1,0.0278,0.532,0.0464,0.14,0.302,139.377,280174,4 +528,Iron & Wine,The Long Black Veil,1MGuRzh3YHYpKWvvrGKc28,11,2012,acoustic,0.331,0.313,9,-10.488,1,0.0302,0.72,0.0,0.738,0.269,145.514,172973,4 +529,Bo Carter,Warm My Weiner,5e1f4pqz0k3XVN89Mr8KPZ,11,2012,acoustic,0.675,0.301,7,-13.441,1,0.0516,0.975,0.000373,0.0389,0.732,114.192,176956,4 +530,Scars On 45,Beauty's Running Wild,0qGkTvWC3qWjhUInmLZ9SN,14,2012,acoustic,0.329,0.696,7,-5.883,1,0.0283,0.00901,7.56e-06,0.0992,0.413,169.721,230520,4 +531,A Fine Frenzy,The Sighting,3yqwNJwlpS5QJhqknGrUMu,8,2012,acoustic,0.525,0.111,7,-20.205,0,0.0327,0.778,0.00125,0.115,0.17,94.992,299770,4 +532,John Frusciante,Guitar,6oU0biZvOkG3eHWzNSVUOj,10,2012,acoustic,0.49,0.938,1,-6.922,0,0.0751,0.352,0.546,0.248,0.208,146.946,137680,4 +533,John Frusciante,Sum,32fr1AA1Xofk9e8bi6FeUU,10,2012,acoustic,0.494,0.812,7,-7.611,0,0.0962,0.564,0.0129,0.141,0.184,131.959,258236,4 +534,Elenowen,Bittersweet,2YHWxtq49S6SfWbQqVuDol,12,2012,acoustic,0.503,0.156,10,-15.915,1,0.0304,0.926,9.88e-05,0.118,0.266,72.927,235625,4 +535,Corey Gray,Two Is Better Than One,6pzDUCfRZbkj5Iu9if8AzM,26,2012,acoustic,0.512,0.436,0,-9.433,1,0.0297,0.0106,0.0,0.103,0.237,140.985,208452,4 +536,Get Dead,Hang On,2rm1HMUoF1HsNZENAQeQ4l,12,2012,acoustic,0.467,0.474,8,-8.81,0,0.0289,0.0244,8.19e-05,0.129,0.363,151.767,144307,4 +537,Jon McLaughlin,Without You Now,2TbFg1ypxfQwtuH4G1nKwo,12,2012,acoustic,0.502,0.766,2,-4.554,1,0.0304,0.00167,0.0,0.122,0.376,146.962,250107,4 +538,Hana Sekitori,むすめ,4aWUc1lqVbHJZe2tZq4raK,23,2012,acoustic,0.685,0.273,9,-7.128,1,0.029,0.856,3.85e-05,0.0971,0.296,139.955,280093,4 +539,Brett Dennen,When That Evening Sun Goes Down,2Xe9EKlIJBEamKMKZg0yVr,11,2012,acoustic,0.61,0.747,9,-7.138,1,0.0336,0.152,0.0,0.295,0.929,79.964,183805,4 +540,Get Dead,Rattle Snake,1TVCtyFWkZz6gMTCHmIxMA,11,2012,acoustic,0.485,0.596,8,-5.848,0,0.0284,0.0429,0.0,0.113,0.347,95.979,154187,4 +541,Jon McLaughlin,You Never Know,6EHj46GP5XwP6FEVq4Yujq,11,2012,acoustic,0.599,0.669,8,-5.266,1,0.0279,0.0538,0.0,0.0799,0.268,112.034,270493,4 +542,Jon McLaughlin,Maybe It's Over,6f0cRoyzUsQLvTQQy0cgXk,11,2012,acoustic,0.378,0.648,11,-5.583,1,0.0333,0.0599,0.0,0.0829,0.337,182.089,255200,4 +543,Rachael Yamagata,It'll Do,6TOeNaqVyFR8lNHFxpjWUn,14,2012,acoustic,0.422,0.197,0,-11.857,1,0.0332,0.923,0.00872,0.0861,0.087,131.786,262824,4 +544,Tyrone Wells,Simple Life,0elo5mDy2XiZG6xqkyIr90,14,2012,acoustic,0.456,0.503,0,-7.789,1,0.0306,0.215,0.0,0.117,0.265,175.883,199048,4 +545,Roberto Diana,S'astore,6JCxnrAzCckV13nR2ULIR0,11,2012,acoustic,0.259,0.332,2,-13.293,1,0.0483,0.926,0.94,0.158,0.205,93.097,249747,4 +546,Kaki King,Holding the Severed Self,6Ays5DJN4m6k8nSN3xzEBv,10,2012,acoustic,0.381,0.522,9,-15.326,0,0.0314,0.476,0.803,0.0862,0.733,163.984,200508,4 +547,Kris Allen,Loves Me Not (feat. Meiko),0Iu6ox3OVurUJijJOTziRk,13,2012,acoustic,0.585,0.695,4,-5.368,1,0.0273,0.302,0.0,0.131,0.549,93.968,213787,4 +548,Ducking Punches,Burnt Matches,1wKzIi8lJHiSs3KV1pDS42,16,2012,acoustic,0.605,0.518,6,-8.459,1,0.0377,0.197,0.000633,0.178,0.395,151.882,176094,4 +549,Madi Diaz,Let's Go,3rtYsUYAdvhuSMGM2W2zfP,10,2012,acoustic,0.601,0.602,2,-7.241,1,0.0262,0.565,0.0138,0.0716,0.56,137.551,272827,4 +550,Tyler Ward,Somebody That I Used To Know - Acoustic,46w18VV5zVo45ZViyHvfLl,21,2012,acoustic,0.542,0.3,1,-8.116,0,0.051,0.208,0.0,0.102,0.25,125.86,185714,4 +551,Sungha Jung,Change the World,5putTwuVbsIY6ZQR4XAaZA,14,2012,acoustic,0.428,0.456,2,-9.537,1,0.0311,0.655,0.948,0.105,0.32,109.779,325787,4 +552,Tim Barry,Shed Song,4PG1vUqgjRpqbngvNGfbVP,8,2012,acoustic,0.496,0.453,7,-3.414,1,0.0291,0.666,0.0,0.121,0.17,120.392,242333,4 +553,Kate Havnevik,Halo,5ywk0QBKCIJN6DznjhB9AB,14,2012,acoustic,0.504,0.724,8,-7.52,1,0.0307,0.033,9.92e-06,0.115,0.481,155.933,223187,4 +554,Matthew Perryman Jones,Sleeping With a Stranger,13JYzvQxDBLbcYQWjCq0Ti,14,2012,acoustic,0.565,0.428,5,-9.706,1,0.0258,0.432,0.00218,0.0771,0.255,133.991,241227,4 +555,Madi Diaz,Gimme a Kiss,6MmqthRbvwnH2ZfrLIzbcC,9,2012,acoustic,0.789,0.681,0,-6.713,1,0.0296,0.0819,0.00324,0.16,0.72,123.001,208307,4 +556,Humming House,Gypsy Django,3hlem5MYelZA2opnwKQbvH,10,2012,acoustic,0.626,0.578,0,-8.907,1,0.0689,0.546,0.0,0.0957,0.731,95.056,170640,4 +557,Dave Barnes,One Of Us,3FeLzqJ2eCNb9wMQNbhGfY,8,2012,acoustic,0.593,0.214,2,-14.453,1,0.0304,0.849,0.0,0.129,0.346,132.084,228213,4 +558,Ron Pope,City in Motion,7omLHN4ao6LAti4VExU1DQ,14,2012,acoustic,0.534,0.848,4,-3.855,1,0.0475,0.038,0.0,0.0776,0.39,118.005,258693,4 +559,Ron Pope,A Wedding in Connecticut,4w3Eh7yckenE7jkP1avyoh,12,2012,acoustic,0.577,0.468,3,-8.04,1,0.0294,0.353,1.55e-06,0.105,0.257,139.858,316373,4 +560,Scars On 45,Warning Sign,7nXUSbJuC6rm2kxB0fFVHQ,9,2012,acoustic,0.534,0.89,6,-5.084,0,0.0438,0.107,0.0,0.0597,0.494,138.072,242267,4 +561,Andy Salvanos,Contemplation,2TydJ3kQIOtlkGUZ38ePtz,9,2012,acoustic,0.245,0.0206,8,-23.145,0,0.047,0.916,0.932,0.0991,0.106,82.237,264947,4 +562,Harley Poe,Ouija (Witchboard Version),0vXHsKZpTTZekD72ZmpH9t,10,2012,acoustic,0.418,0.549,9,-7.353,0,0.0733,0.324,0.0,0.161,0.364,73.022,231120,4 +563,Corey Gray,Lego House,0OSox3UmWel3WzSfN4JTnA,16,2012,acoustic,0.608,0.449,5,-6.365,1,0.04,0.672,0.0,0.0996,0.281,75.921,205364,1 +564,David Ramirez,Friends and Family,6Hh6MxRyHerzmUqswJNhFU,9,2012,acoustic,0.362,0.276,7,-11.366,1,0.0403,0.22,7.15e-05,0.112,0.0781,133.085,245680,4 +565,Kina Grannis,In Your Arms - Radio Edit,23XWMSPwf3hNKkeNP6XH64,13,2012,acoustic,0.635,0.398,2,-10.328,0,0.0343,0.51,1.48e-06,0.109,0.49,129.999,184960,4 +566,Steve Petrunak,If You Could Read My Mind,2t53nbStwJz4P1zgrfltLi,11,2012,acoustic,0.573,0.258,7,-16.667,1,0.0453,0.315,0.648,0.0896,0.309,116.047,252306,4 +567,Taj Mahal,Chainey Do,1YdPogTRPK3IMihlldjImj,12,2012,acoustic,0.715,0.878,5,-6.669,1,0.218,0.507,9.45e-05,0.0842,0.774,111.186,218573,4 +568,Drew Holcomb & The Neighbors,Merry Christmas Baby,7JRmrkCVRGrBAAMdHDJ4Lm,8,2012,acoustic,0.576,0.56,7,-7.187,0,0.0326,0.0512,0.00456,0.138,0.793,186.147,175133,4 +569,Drew Holcomb & The Neighbors,Who's Gonna Ride Your Wild Horses,0AlrUfdQAc4bipi0bLhPgs,9,2012,acoustic,0.476,0.272,2,-10.008,1,0.031,0.656,0.00296,0.0946,0.0712,119.981,264102,4 +570,Drew Holcomb & The Neighbors,Christmas for You and Me,2mRboutoJvTbYWkr4uDFPU,12,2012,acoustic,0.739,0.321,1,-11.239,1,0.0969,0.834,0.0,0.115,0.448,131.253,184773,4 +571,Joshua Hyslop,Have You Heard?,1YnZl6LlTLemEo2x9spCUF,14,2012,acoustic,0.637,0.369,9,-12.219,0,0.0358,0.249,1.09e-05,0.223,0.309,121.039,207360,3 +572,Meiko,I'm Not Sorry,4zSCEbL0gQxAaAqvU9FJo7,8,2012,acoustic,0.706,0.678,7,-4.83,1,0.028,0.284,3.85e-06,0.23,0.929,105.974,196360,4 +573,Jay Brannan,Beautifully,0xORSLe8xvzRYJx5ZgzTB7,10,2012,acoustic,0.641,0.636,1,-7.468,1,0.0257,0.039,0.000139,0.111,0.629,107.088,193973,4 +574,Jay Brannan,The Spanglish Song,6ZwRJNzsxyjBTN7llomUxh,9,2012,acoustic,0.548,0.387,7,-8.626,1,0.0288,0.523,0.0,0.169,0.636,106.067,237080,4 +575,Josh Ritter,Darlin',0qbwlCY74nkvPgOSb6df01,9,2012,acoustic,0.631,0.303,0,-13.009,1,0.0339,0.687,0.539,0.108,0.366,126.956,200652,4 +576,Augustana,Last Mistake,1ojeOJsfoD7bwtNyzJaLNo,7,2012,acoustic,0.361,0.843,9,-4.069,1,0.064,0.00289,0.0,0.0823,0.446,135.356,227853,4 +577,Tyler Ward,Someone Like You - Acoustic,1HmDkmK8oY0HrQVipZxRwt,14,2012,acoustic,0.487,0.258,8,-7.101,1,0.033,0.837,0.0,0.114,0.126,120.873,284420,4 +578,Denis Turbide,Day Into Night,2O7eHz0H8wMwIAirHVn1px,10,2012,acoustic,0.456,0.364,9,-14.857,1,0.0454,0.856,0.836,0.13,0.954,94.954,134906,4 +579,Tim Myers,Life's A Party,5H284ljre5mFNqC9P3tm1p,14,2012,acoustic,0.486,0.909,2,-4.362,1,0.301,0.000457,0.000151,0.106,0.239,196.066,216410,4 +580,Patty Griffin,Top Of The World,4TJprRJKZD9HQUrKZUinT4,10,2012,acoustic,0.557,0.262,4,-10.031,1,0.0281,0.734,4.01e-06,0.14,0.0752,96.829,299360,4 +581,Josh Garrels,Slip Away (Aaron Strumpel Remix),6ZYgYh8X61dIqKasPaI74L,9,2012,acoustic,0.203,0.714,6,-7.567,0,0.0641,0.167,0.207,0.301,0.208,84.202,296634,4 +582,Greg Laswell,I Might Drop By,4TXse8E2f450fdLAwaWW3c,10,2012,acoustic,0.272,0.715,7,-4.941,1,0.0319,0.175,0.0,0.321,0.38,169.871,210147,3 +583,Benjamin Francis Leftwich,Is That You on That Plane,0WMwkg5FbIWSiVC5T3I0HV,8,2012,acoustic,0.455,0.273,11,-10.304,1,0.0286,0.941,0.000332,0.0978,0.162,104.398,321680,4 +584,Will Hoge,Jesus Came to Tennessee,3EIFixcqPO9wALWJKZUK1O,8,2012,acoustic,0.435,0.827,9,-5.481,1,0.119,0.143,0.0,0.116,0.699,199.806,298929,4 +585,Eric Bibb,Tombouctou,0ledI9SlcYDBnRtU3mbmF3,10,2012,acoustic,0.546,0.39,6,-15.563,1,0.0797,0.78,0.0846,0.0942,0.696,150.012,243107,3 +586,Not Half Bad,Our Time,5JYr0Rzl8sULMRYuHJhmUx,8,2012,acoustic,0.551,0.97,4,-5.989,1,0.0628,0.00215,0.0,0.42,0.259,109.008,222520,4 +587,Jack Savoretti,Crazy Fool,2y2BYMHPrAzcxLl95XJtQ0,21,2012,acoustic,0.657,0.345,7,-13.081,1,0.0338,0.788,2.41e-05,0.135,0.504,96.049,209560,4 +588,Joshua James,"Doctor, Oh Doctor",4QkBBCCVgWikYZ8CBwRqet,10,2012,acoustic,0.326,0.47,3,-11.773,1,0.0844,0.752,0.0098,0.109,0.45,168.98,193600,4 +589,Matthew Perryman Jones,Keep It On the Inside,52cl4vJHDBisO8w319UyIh,11,2012,acoustic,0.542,0.85,5,-7.582,1,0.0331,0.11,0.000146,0.136,0.297,113.97,208987,4 +590,Corporate Hearts,The Walking Winded,6PzogvB0x7DvgwV11CNUW8,8,2012,acoustic,0.352,0.608,7,-5.388,1,0.0395,0.522,0.0,0.671,0.0779,141.5,259265,4 +591,Mindy Smith,Jolene,3nYAC5YR8iCMPNabLNvx3Z,10,2012,acoustic,0.429,0.379,9,-9.498,0,0.0284,0.431,0.0,0.0948,0.182,86.968,258307,4 +592,Mozella,You Don't Love Anyone But Yourself,6w6Pyfs7lxjoIYOtPs2wGl,7,2012,acoustic,0.73,0.812,7,-5.337,0,0.0314,0.527,2.31e-06,0.205,0.867,116.961,232466,4 +593,Tim Barry,Wezeltown,6OXcvl3Z91zhODCkn3W0yh,8,2012,acoustic,0.682,0.691,7,-4.907,1,0.0715,0.335,0.0,0.366,0.432,100.074,210453,4 +594,Joshua James,Surrender,4GNvvkbJUu4hoEi4OquRie,12,2012,acoustic,0.533,0.603,8,-6.391,0,0.0246,0.667,0.517,0.169,0.601,77.559,211093,3 +595,Ron Pope,Tears of Blood,2ZlQL8UTG8Q55J7we1P6T0,14,2012,acoustic,0.525,0.888,4,-5.297,1,0.0429,0.00288,0.000136,0.411,0.355,100.043,208560,4 +596,Ron Pope,Sweet Redemption,2FGu4vSIFjbW47k8RC0jdy,11,2012,acoustic,0.387,0.887,10,-4.255,1,0.0423,0.00366,0.0323,0.0815,0.462,170.004,271360,4 +597,Charley Patton,Hobo Blues,6jhjSXHLh9OqiWtXwNTlpO,8,2012,acoustic,0.538,0.139,2,-15.687,1,0.045,0.99,0.269,0.12,0.74,101.42,181827,4 +598,Gen Hoshino,Moshimo,0hFTQDCIK3CVSivCzBuM8v,14,2012,acoustic,0.709,0.405,5,-10.285,1,0.0681,0.677,0.000236,0.109,0.607,76.223,207106,4 +599,Matt Wertz,"Wake up, Wake Up",6lqohU7iv0YuViiNYb8ZZH,10,2012,acoustic,0.469,0.882,8,-6.524,1,0.0982,0.0614,0.0,0.324,0.726,175.851,210720,4 +600,John Frusciante,Uprane,3yzPtO2JjRsT4odTy1l9Ls,9,2012,acoustic,0.551,0.948,4,-2.895,0,0.0661,0.305,0.358,0.189,0.682,122.956,295260,4 +601,Matt Wertz,Christmas Just Ain't Christmas (Without You),7DVMBMOULGaxvHtx77zNAN,8,2012,acoustic,0.497,0.805,9,-7.712,1,0.0332,0.00123,1.25e-06,0.273,0.525,137.468,279280,4 +602,Corey Gray,The One That Got Away,3AdNRH7rqwrPCk8lDuFM7i,18,2012,acoustic,0.612,0.233,11,-10.88,1,0.0355,0.897,0.0,0.181,0.197,125.189,224512,4 +603,Steve Petrunak,Crockodile Rock,5a61abLG74jTFr7SMW7onB,11,2012,acoustic,0.509,0.665,7,-6.068,1,0.0338,0.75,0.925,0.205,0.373,150.286,191560,1 +604,Elenowen,Flying For The First Time,2PwrWofsUReGuTSIU3C6u6,9,2012,acoustic,0.5,0.482,0,-8.892,1,0.0282,0.48,3.65e-06,0.0924,0.386,156.084,247089,4 +605,Hannah Trigwell,Wide Awake,60fAmMjeax1v5wdUcJSSY7,16,2012,acoustic,0.563,0.365,4,-8.561,1,0.0297,0.824,0.0,0.138,0.474,80.019,176167,4 +606,Hannah Trigwell,I Will Wait,585rg0DJTRfKYFfj307jZz,15,2012,acoustic,0.347,0.254,5,-9.448,1,0.0324,0.861,0.0,0.392,0.136,120.005,202647,4 +607,Harley Poe,Lewis,6YCtJGZwPYqWukHrU3mcCz,10,2012,acoustic,0.474,0.511,2,-9.09,0,0.0449,0.798,1.6e-05,0.0689,0.228,83.469,275000,4 +608,Drew Holcomb & The Neighbors,Picture in a Frame,062Xxj5ekpCxe0z0ikxHTA,8,2012,acoustic,0.51,0.214,4,-8.704,1,0.0364,0.638,4.85e-06,0.0836,0.321,117.31,199535,4 +609,Drew Holcomb & The Neighbors,Please Forgive Me,55bqCYEhZTC6CtQsqM0eH2,8,2012,acoustic,0.556,0.339,7,-11.779,1,0.039,0.799,0.00153,0.066,0.278,124.387,251874,4 +610,Joshua Hyslop,What Have I Done?,6HeSVRHmSi80xJVWWOZTgi,14,2012,acoustic,0.541,0.36,1,-11.627,1,0.0291,0.262,0.0603,0.0722,0.185,161.913,232893,3 +611,Jenny & Tyler,Kingdom of Heaven,1mk0PNEsLPD9ovxoD092oB,7,2012,acoustic,0.517,0.388,8,-9.048,1,0.0413,0.401,0.0,0.0953,0.151,142.88,261973,3 +612,Tyrone Wells,This Love,2wXHJ48dlPfFuOnTJhML4d,9,2012,acoustic,0.623,0.657,0,-6.047,1,0.0426,0.29,0.0,0.129,0.604,152.031,206481,4 +613,Aron Wright,"And Still, the Darkness Comes",7afm9cAY0BWYqEK9W7poKT,12,2012,acoustic,0.393,0.473,2,-8.139,1,0.0271,0.794,0.042,0.0862,0.195,111.059,206154,4 +614,CityCop,Bluebird,0MfbTJeXsqk6Am8EtEvlLt,8,2012,acoustic,0.593,0.287,2,-10.316,1,0.0532,0.433,1.31e-05,0.112,0.145,112.108,137280,4 +615,Moon Bandits,You and Me,6HyPHy5CZf1irYcEwc5EOX,7,2012,acoustic,0.581,0.785,5,-5.274,1,0.0304,0.764,0.15,0.201,0.585,120.961,120533,4 +616,W.C. Handy,Memphis Blues,2NQ9NwrT51eIzU66FC8U18,9,2012,acoustic,0.72,0.435,3,-11.259,1,0.0396,0.994,0.842,0.208,0.726,118.378,182587,4 +617,Rosie Thomas,Where Were You?,3jA9MMWeruf8LhTlpMyAZK,10,2012,acoustic,0.52,0.465,7,-12.328,1,0.0412,0.737,0.405,0.118,0.67,150.035,337532,4 +618,Green River Ordinance,Home,2RJe5fyeYHhw7VQJR2CCYV,9,2012,acoustic,0.468,0.583,1,-6.137,1,0.0325,0.0248,4.39e-06,0.113,0.0783,134.98,210613,4 +619,Kris Allen,Leave You Alone,7C735TAAIQD0kbiM7cNAoc,11,2012,acoustic,0.521,0.684,11,-5.988,1,0.0276,0.0459,0.0,0.0759,0.34,121.959,262213,3 +620,Jay Brannan,Rob Me Blind,2cpsWyVKWYDdauEJqKbdFa,9,2012,acoustic,0.693,0.601,1,-8.277,1,0.0241,0.0283,0.584,0.0997,0.364,110.027,303240,4 +621,Tyler Ward,Some Nights,33QOVNguHatCFeNt5zRbnP,12,2012,acoustic,0.547,0.297,0,-7.824,1,0.0296,0.857,0.0,0.0747,0.385,80.455,253875,4 +622,Tyler Ward,What Makes You Beautiful - acoustic,69DMnyjYhfbdgii2HyDeQD,20,2012,acoustic,0.719,0.276,2,-8.619,1,0.0297,0.736,0.0,0.12,0.485,98.003,188878,4 +623,Joshua Radin,Let It Go,5UxA9kHcXHhx3cJ55nDEFF,7,2012,acoustic,0.499,0.582,8,-11.751,1,0.0302,0.657,0.00613,0.242,0.782,96.661,165227,4 +624,Right the Stars,Best Days of Our Lives,1AMoEqlOi05CE97iB1GnSs,10,2012,acoustic,0.713,0.584,11,-5.802,1,0.0364,0.00503,0.000695,0.115,0.967,142.993,177933,4 +625,Charley Patton,Gypsy Woman,2WyOjzEnB4gJL4s4DokiJe,8,2012,acoustic,0.483,0.234,2,-15.345,1,0.041,0.931,0.000452,0.0739,0.725,83.217,154267,4 +626,Ron Pope,Meaning-Meaningless,66LSV1tXOZ2fHQ4uQJOYTk,11,2012,acoustic,0.579,0.894,2,-6.031,1,0.0473,0.0507,0.0134,0.154,0.328,130.966,267920,4 +627,Joshua James,Willamette Mountain,3bZSmccV5Zy1fSUl1xb69j,10,2012,acoustic,0.405,0.297,1,-9.081,1,0.0372,0.886,0.000563,0.183,0.464,59.621,208680,4 +628,Jack Savoretti,For the Last Time,0LLdtmYTxkkdS8L7FCf7OQ,22,2012,acoustic,0.591,0.702,6,-7.926,0,0.0318,0.052,0.0,0.113,0.447,102.039,192720,4 +629,Corporate Hearts,Advances,6X8kFF7SqjvqM60BlTS2wq,7,2012,acoustic,0.613,0.653,2,-6.13,1,0.0404,0.425,0.0,0.0859,0.763,108.866,160549,4 +630,Van Larkins,Halloween 2-Step,51wL82cp3oO6h0W4dzRyXl,9,2012,acoustic,0.673,0.307,3,-15.953,1,0.0329,0.126,0.727,0.283,0.584,128.995,126000,4 +631,Matthew Perryman Jones,Poisoning the Well,37JYNa7W2rWet7mScVaw6D,11,2012,acoustic,0.502,0.811,6,-5.983,0,0.0398,0.069,0.00173,0.111,0.299,114.029,254667,4 +632,Keaton Simons,Other Side,5jKCkoLYElB3vpQAAO4gUp,8,2012,acoustic,0.396,0.733,0,-5.847,0,0.0337,0.0265,0.00347,0.109,0.366,167.883,223268,4 +633,Andy Salvanos,Rainclouds,2jxqNLAWZuQwTqx4eQIqsB,11,2012,acoustic,0.334,0.236,0,-19.777,0,0.0336,0.883,0.895,0.106,0.227,111.334,193027,3 +634,Erica Freas,Spider Song,0cLkpH4Mp8U1nNSr9EZmDQ,10,2012,acoustic,0.607,0.289,3,-10.695,1,0.0398,0.366,0.00125,0.0964,0.476,86.106,203747,4 +635,Matthew Mayfield,Ain't Much More to Say,27a1vdLH0aESzRd01RFffE,9,2012,acoustic,0.362,0.291,5,-12.984,1,0.0289,0.41,0.0,0.371,0.251,74.074,215692,4 +636,Erin McCarley,Elevator,7rfBit9AVeWmmxFkGg2YJa,8,2012,acoustic,0.65,0.886,3,-6.588,0,0.0492,0.241,3.7e-06,0.206,0.656,100.015,213147,4 +637,Dave Barnes,Find Your Way Home,34TItzQ71a9puzWGfW0VEX,7,2012,acoustic,0.691,0.774,11,-6.612,1,0.0363,0.0782,0.0,0.306,0.849,139.992,183200,4 +638,Scars On 45,Insecurity,4HZQ7i2Tso2mYr716o2I5B,9,2012,acoustic,0.504,0.398,0,-8.631,0,0.0298,0.429,7.99e-06,0.07,0.165,127.087,316120,4 +639,Matthew Mayfield,A Banquet for Ghosts,1dDxrNCFJzg106vcdHT6Vd,8,2012,acoustic,0.443,0.0958,5,-18.644,1,0.104,0.702,0.0,0.13,0.394,89.655,72797,4 +640,Drew Holcomb & The Neighbors,White Christmas,1rpwKXARQtsJzIUYk98n6r,9,2012,acoustic,0.604,0.322,9,-10.578,1,0.0351,0.829,8.99e-05,0.107,0.356,133.076,260920,4 +641,Steve Petrunak,The Boxer,1IDbRwFepB5hNwHsW67rpI,10,2012,acoustic,0.378,0.293,0,-13.647,1,0.0364,0.437,0.462,0.117,0.325,84.244,266120,4 +642,Harley Poe,Skin and Bones / Terror Trippin',4nYsuJPTdRn9fM8OLs6wQe,8,2012,acoustic,0.343,0.526,9,-7.961,0,0.0883,0.342,0.000319,0.385,0.495,143.54,204000,4 +643,Steve Petrunak,What Child Is This,1nIRd11bwaSgNffozlHuAL,7,2012,acoustic,0.466,0.126,4,-15.562,0,0.0522,0.969,0.893,0.109,0.147,80.608,238906,3 +644,Harley Poe,Class of '97,5bC9swgn3yhXE0A0IacTfW,9,2012,acoustic,0.357,0.441,2,-11.711,1,0.0899,0.779,0.0,0.182,0.474,189.643,144981,4 +645,Steve Petrunak,Home for the Holidays,01kLE16a1IcuIz1gWSR9tH,8,2012,acoustic,0.454,0.274,7,-7.193,1,0.0479,0.838,0.929,0.114,0.331,138.359,172680,4 +646,Joshua Hyslop,Wish You Well,62Q4JFKe161aodt6oB6SFI,13,2012,acoustic,0.485,0.311,0,-14.503,1,0.03,0.271,0.00796,0.0876,0.196,172.006,198200,4 +647,Tyrone Wells,You're the One,0tRCCrrHvrZDMPiE1E23Ce,8,2012,acoustic,0.517,0.703,1,-5.313,1,0.0305,0.00316,0.0,0.138,0.377,80.024,227324,4 +648,Joshua Hyslop,The Mountain,7Ie8RGmqk2TYFqvHVVYXvh,13,2012,acoustic,0.622,0.29,9,-15.596,1,0.0344,0.31,0.0599,0.0894,0.365,91.981,137933,4 +649,Gen Hoshino,Ranshi,2Tg1VOIfnI1w6GZDf7owty,14,2012,acoustic,0.766,0.544,0,-7.942,1,0.0396,0.719,0.0035,0.104,0.87,115.193,208594,4 +650,Augustana,Stars and Boulevards,3OhILtrznK3stMdKyul8Av,6,2012,acoustic,0.42,0.712,7,-5.417,1,0.0317,0.00766,8.37e-06,0.127,0.449,80.062,260853,4 +651,Augustana,"Sunday Best - Live at Austin City Limits Music Festival, Austin, TX - September 2007",2g2m3AfHuo2OKLwp8pJ04h,6,2012,acoustic,0.483,0.765,9,-6.246,1,0.0303,0.076,0.00385,0.877,0.475,147.824,236347,4 +652,Madi Diaz,Love You Now,1zjK0Hq0ywBZHqjwN7GUzs,8,2012,acoustic,0.616,0.644,2,-5.791,1,0.03,0.0323,4.22e-05,0.09,0.276,127.953,266053,4 +653,Madi Diaz,Gone Away,0RNUDBusGd1xYYSPUtZqyU,10,2012,acoustic,0.286,0.151,9,-11.243,1,0.0354,0.935,2.41e-06,0.119,0.105,75.04,220800,4 +654,Green River Ordinance,San Antone,6fVDwh2VQNHOtyKbxZ2Nsl,7,2012,acoustic,0.558,0.766,11,-6.465,1,0.0294,0.317,7.26e-05,0.187,0.168,105.032,249040,4 +655,Green River Ordinance,Love Laid Down,5kytA6SKAg1kO27t7nlmi9,7,2012,acoustic,0.503,0.578,2,-6.17,1,0.0287,0.0249,0.000114,0.316,0.156,130.052,281987,4 +656,Sue Foley,Big City Blues,2I5bSppe39WFTjOP9yrvP0,13,2012,acoustic,0.575,0.178,0,-11.519,1,0.0414,0.843,3.77e-06,0.0933,0.389,86.531,214267,4 +657,Joshua Radin,Here's Where We Begin,0114oKI10F6RUoRneuI3Pm,6,2012,acoustic,0.344,0.208,1,-13.336,1,0.0295,0.901,0.0469,0.116,0.196,104.669,174907,3 +658,Joshua Radin,Anywhere Your Love Goes,0RZK2inPT00fS8D91gFEpB,6,2012,acoustic,0.605,0.549,6,-9.678,1,0.027,0.178,0.0403,0.154,0.571,84.908,179160,4 +659,Meiko,I'm In Love,3OrqJ6v3TDslJjBupSFBab,6,2012,acoustic,0.69,0.641,8,-5.263,1,0.0233,0.119,0.243,0.0846,0.693,104.983,226000,4 +660,Ingrid Michaelson,Into You,5UeLHFWK0tyZrZXhH0BOBg,11,2012,acoustic,0.571,0.3,7,-10.462,1,0.0314,0.776,1.09e-06,0.134,0.127,96.97,210134,4 +661,Mia Rollo,Beer (Acoustic),7o07WVsYs8eX8GZS5hqo6U,29,2012,acoustic,0.478,0.495,11,-6.681,1,0.0308,0.837,1.15e-05,0.0942,0.482,169.92,254307,4 +662,Fuyumi Abe,"highway, highway",1ah3p1RxkCUr4zApplxbCt,23,2012,acoustic,0.412,0.36,3,-11.318,1,0.0305,0.622,0.00301,0.114,0.229,111.651,247893,3 +663,Sam Russo,Factory Rain,6BvI2DQO5beZlj4aMHQQt1,11,2012,acoustic,0.443,0.399,2,-9.712,1,0.0327,0.817,0.000149,0.166,0.268,94.886,225400,4 +664,Meiko,Real Real Sweet,4pRNUVpLLNujldW3gyQ67X,5,2012,acoustic,0.674,0.403,2,-8.312,1,0.035,0.367,5.46e-06,0.233,0.335,78.994,224987,4 +665,Jay Brannan,Everywhere There's Statues,0lMvFYVjEzw7TuXxuluW4g,7,2012,acoustic,0.404,0.496,7,-8.766,1,0.0334,0.0101,4.07e-06,0.107,0.556,201.568,205400,4 +666,Dan Andriano in the Emergency Room,String Bean Jean,4NDFyzG2wtVogL0eNIoe3Z,7,2012,acoustic,0.477,0.318,2,-11.793,1,0.0288,0.941,4.04e-05,0.0959,0.379,160.252,280867,4 +667,Jaymay,What About The Bob?,0RltNpBUPYcihmrLPxS73l,8,2012,acoustic,0.561,0.658,3,-6.067,1,0.0326,0.656,0.000723,0.121,0.938,112.237,89880,4 +668,Meiko,Leave the Lights On - Bryce Casper Dubstep Remix,55YTUOOlRRCxV9WM14YHyS,6,2012,acoustic,0.599,0.89,1,-6.351,0,0.0464,0.0429,0.000933,0.23,0.598,140.042,250013,4 +669,Kaki King,The Fire Eater,3LGiL8RWLYusB3FVjRwnTY,8,2012,acoustic,0.302,0.43,9,-15.631,0,0.0411,0.433,0.885,0.0983,0.0605,95.692,347797,4 +670,Emilie Mover,Stella and Sam Theme,3msGTmykJhnkSBj0NozD7R,9,2012,acoustic,0.692,0.511,0,-6.362,1,0.127,0.0819,0.0,0.0667,0.971,178.06,47960,4 +671,Kaki King,Marche Slav,6c0ISYU5zzPdrrG5R6Lm2X,8,2012,acoustic,0.541,0.165,9,-18.437,0,0.0348,0.772,0.911,0.108,0.0321,94.036,182931,4 +672,Jon McLaughlin,What I Want,0cD8ml0FuYBpAxcs1npWXV,9,2012,acoustic,0.355,0.813,9,-5.079,1,0.0331,0.000155,4.84e-05,0.11,0.532,164.024,229707,4 +673,David Ramirez,God Bless,71H2YdEr9yp16ikvtEMJPj,7,2012,acoustic,0.652,0.00846,7,-17.813,1,0.0485,0.903,0.000173,0.112,0.34,130.135,230373,4 +674,Corporate Hearts,A Short Drink From A Certain Fountain,6HSjeYhpiVd9ZxeZMxD8VO,6,2012,acoustic,0.391,0.581,11,-7.211,1,0.0382,0.38,0.0,0.0432,0.701,102.305,166504,4 +675,Mozella,Hold On,7oYVB92bs6zHO1siWMmT8d,6,2012,acoustic,0.627,0.783,4,-5.306,1,0.0427,0.526,0.0,0.14,0.839,89.932,244509,4 +676,Tim Barry,Driver Pull,4AEWdbr7C9v5vUeY32hoRc,6,2012,acoustic,0.653,0.359,0,-8.067,1,0.0286,0.871,7.59e-05,0.131,0.356,124.007,277067,4 +677,Corporate Hearts,Unemployed or Underemployed,1Q1gKBi5Rn2pHflwtbsmjv,6,2012,acoustic,0.317,0.71,2,-6.456,1,0.107,0.405,0.0,0.234,0.463,151.227,182857,4 +678,Mozella,Hello Sunshine,4czlWubdA5WLMb0nEsUETZ,6,2012,acoustic,0.655,0.795,5,-6.307,1,0.03,0.349,3.39e-06,0.337,0.888,94.949,191368,4 +679,Andy Davis,Heartbreak Yellow,5TY2dQue98C1ouwyW11isB,8,2012,acoustic,0.417,0.593,2,-6.1,1,0.0266,0.0545,5e-05,0.0919,0.758,176.758,211133,4 +680,Ernie Halter,Shower the People,5kyy6NQvEuICEkLz0KIWgc,7,2012,acoustic,0.717,0.177,7,-11.349,1,0.0322,0.899,0.0,0.136,0.423,109.876,177000,4 +681,Ernie Halter,Can't Help Falling In Love,2PIyxhBWH2NngIQFEoKhrU,9,2012,acoustic,0.518,0.195,6,-12.272,1,0.034,0.845,0.0,0.0895,0.529,79.981,173000,4 +682,Mindy Smith,Tennessee,08yrs8fY06eOhuNqybLDsL,7,2012,acoustic,0.571,0.14,6,-15.76,1,0.036,0.913,0.0042,0.107,0.267,77.932,212560,4 +683,Trent Dabbs,One Last Look,44MNuZmdXo2qzb3A0GqO0P,9,2012,acoustic,0.344,0.659,7,-8.383,1,0.0417,0.132,0.609,0.108,0.118,175.898,297714,3 +684,Mindy Smith,One Moment More,207egRjrTw3k8Gprb8jwO6,10,2012,acoustic,0.436,0.0934,8,-13.682,1,0.0366,0.905,0.0,0.109,0.265,115.68,217040,4 +685,Drew Holcomb & The Neighbors,Everything's Changed at Christmas but You,0bOANcrwClDdoZerHqp6nS,7,2012,acoustic,0.568,0.0521,5,-15.362,1,0.0417,0.979,4.79e-05,0.112,0.189,108.052,222067,4 +686,Sanders Bohlke,Nearly Summer,1bamXQPhkf9sLsXx3ZTlzp,9,2012,acoustic,0.462,0.456,5,-8.8,1,0.0353,0.739,0.0997,0.292,0.12,121.075,275107,3 +687,John Frusciante,Bike,7dcQIOWQmf213Q3Lz0bJRH,7,2012,acoustic,0.522,0.947,11,-3.793,1,0.187,0.6,0.532,0.148,0.541,174.997,264230,4 +688,Scars On 45,The Way That We Are,2XjwbRWSTe22RaHyVS2Nsk,8,2012,acoustic,0.41,0.803,10,-4.225,1,0.0353,0.0939,1.26e-05,0.109,0.354,137.915,276080,4 +689,Matthew Mayfield,Always Be You,7brbWeW7xlcD4kxojSYKE0,8,2012,acoustic,0.349,0.183,4,-13.024,1,0.0291,0.699,0.0,0.113,0.0832,98.136,262345,4 +690,Scars On 45,Two Way Radio,1k7C4XYwQLpxsoyAiwiXiE,7,2012,acoustic,0.569,0.756,4,-6.286,0,0.0304,0.0277,0.0,0.142,0.652,135.992,243867,4 +691,Scars On 45,Burn the House Down,7IAm6nMz46O9XsFbvczTPH,8,2012,acoustic,0.515,0.636,8,-7.157,0,0.0291,0.198,4.87e-05,0.107,0.432,75.977,242053,4 +692,Dave Barnes,Stories To Tell,19R5XOEpG1vPmFqFEncRuF,6,2012,acoustic,0.571,0.935,0,-6.06,1,0.034,0.047,0.000123,0.0608,0.929,99.982,210307,4 +693,John Frusciante,Intro/Sabam,1FQzzzsFKZmJdMEqdcz4yY,7,2012,acoustic,0.649,0.666,1,-9.302,0,0.0647,0.929,0.524,0.552,0.389,119.041,160730,4 +694,Scars On 45,Loudest Alarm,2fCYv4xl174hFsndL1MzcK,8,2012,acoustic,0.588,0.852,8,-5.957,0,0.0308,0.18,0.0,0.0762,0.264,115.997,232907,4 +695,Humming House,Cold Chicago,4bBC8tNPB3ciyYobmIL2M5,6,2012,acoustic,0.602,0.744,4,-7.592,1,0.0685,0.137,2.4e-06,0.15,0.703,156.974,181787,4 +696,Gen Hoshino,Kanata,0ZJxxXQxFW1IABDB1Iwjzp,14,2012,acoustic,0.646,0.308,11,-11.358,0,0.0271,0.78,0.000292,0.1,0.192,73.12,241220,4 +697,Amos Lee,Clear Blue Eyes,5zf6yeVg4MzPaREzyrrErD,12,2012,acoustic,0.511,0.352,6,-11.674,1,0.029,0.793,0.000613,0.11,0.232,114.294,203093,3 +698,Richard Walters,Tethered,40WXbqhr7Zo2qhcgQw1AG4,6,2012,acoustic,0.305,0.292,0,-14.561,1,0.035,0.676,0.000391,0.226,0.388,110.741,220980,4 +699,Steve Petrunak,Awesome God,095uIIbf186txWKUwYDOh8,5,2012,acoustic,0.602,0.716,6,-7.477,0,0.0418,0.732,0.78,0.153,0.502,152.018,164388,3 +700,Steve Petrunak,God Gave Me You,54uI1vtbe6LMAQ5d7xaq5Y,5,2012,acoustic,0.575,0.538,2,-6.385,1,0.0417,0.78,0.951,0.102,0.37,152.051,232359,4 +701,Andrew Belle,The Ladder - Live (Bonus Track),5c6a3YPdZKduyEpfcrqyOh,11,2012,acoustic,0.697,0.54,8,-8.494,1,0.0264,0.307,0.0125,0.178,0.38,123.854,241426,4 +702,Steve Petrunak,"Poems, Prayers and Promises",2CNQtcaOPKjcPIIKh9bRRc,5,2012,acoustic,0.49,0.491,2,-6.429,1,0.0421,0.733,0.858,0.0877,0.263,141.895,255693,4 +703,Harley Poe,American Psycho,0R6pyXiRjUruIYZPJhbToz,7,2012,acoustic,0.487,0.621,9,-10.059,0,0.0558,0.276,0.0,0.516,0.579,104.632,225542,4 +704,Steve Petrunak,In the Garden,65qobvt2XnkG4NQg9KnhgV,5,2012,acoustic,0.497,0.136,0,-13.952,1,0.045,0.937,0.881,0.11,0.208,80.951,186122,4 +705,Steve Petrunak,Amazing Grace,2tMtvXGnQ0C4Eb7w5KRGCi,6,2012,acoustic,0.35,0.13,5,-18.02,1,0.076,0.508,0.000329,0.0818,0.251,184.147,254906,3 +706,Erato,It's Not My Fault I'm Happy,7ni9L9NWQFFA4bdYbsaWIQ,17,2012,acoustic,0.694,0.175,7,-9.338,1,0.0356,0.86,0.0,0.261,0.313,109.864,210242,4 +707,Steve Petrunak,I Can Only Imagine,6KzrvJko68RK2DpCbWNiGw,5,2012,acoustic,0.537,0.342,4,-8.066,1,0.0466,0.877,0.889,0.0898,0.186,159.901,248520,4 +708,Steve Petrunak,God Bless the Broken Road,2YmCc7SrWzHplRxnppYtCB,5,2012,acoustic,0.522,0.329,0,-11.409,1,0.0409,0.711,0.89,0.134,0.502,136.267,225593,4 +709,Hannah Trigwell,Stay (feat. Max Schneider),1Ha1eYN843EakGxbZFm9Rm,15,2012,acoustic,0.61,0.227,9,-12.969,0,0.0352,0.874,0.0,0.102,0.324,120.111,213875,4 +710,Steve Petrunak,Venturas Highway,2WFZ1bA652vy8xatG4u4Xt,11,2012,acoustic,0.677,0.533,2,-5.085,1,0.032,0.829,0.603,0.0677,0.46,128.288,218786,4 +711,Hannah Trigwell,Ho Hey,4TMUZruDFXbt701K1EOjOM,16,2012,acoustic,0.45,0.215,2,-11.367,1,0.043,0.903,0.0,0.0962,0.331,112.554,158918,5 +712,Steve Petrunak,How Beautiful,6P7MXeUDIzpLbTE9lRL2Qi,5,2012,acoustic,0.458,0.282,2,-6.873,1,0.0557,0.898,0.885,0.107,0.247,107.152,287453,3 +713,Jill Andrews,Worth Keeping,373TPgFSgiZwc7qXXgBNrS,6,2012,acoustic,0.434,0.383,7,-12.011,0,0.034,0.838,0.00909,0.0841,0.127,124.662,343427,4 +714,Steve Petrunak,Down to the River to Pray,4IRe4008rZQRpTbX2jqQYD,5,2012,acoustic,0.528,0.199,2,-15.172,1,0.0419,0.733,0.737,0.088,0.316,115.097,180946,4 +715,Steve Petrunak,"Jesus, Take the Wheel",5fGGzwWfMmp3MrHR7l3RNj,5,2012,acoustic,0.562,0.434,9,-5.233,1,0.0394,0.84,0.873,0.16,0.258,152.206,225253,4 +716,Steve Petrunak,Blessed Be Your Name,1uqoYZtxcYgdd7PDh4jQsB,5,2012,acoustic,0.691,0.308,2,-11.119,1,0.043,0.875,0.893,0.0977,0.175,120.11,210625,4 +717,Steve Petrunak,On Eagles Wings,0S8eXlEDbWnImNHzc1l1ER,5,2012,acoustic,0.43,0.213,2,-13.127,1,0.0426,0.863,0.818,0.102,0.346,141.999,252264,4 +718,Steve Petrunak,Lord I Lift Your Name On High,3ZRmhkiCLwUHlAe9DsrQFT,5,2012,acoustic,0.355,0.211,7,-13.338,1,0.0381,0.845,0.838,0.107,0.527,175.148,151301,4 +719,Corey Gray,Not Over You,6QvNJ05Q4YYk08DyxEuZ58,13,2012,acoustic,0.459,0.43,0,-7.734,0,0.0318,0.509,0.0,0.111,0.429,140.716,190054,4 +720,Steve Petrunak,If I Had a Hammer,0RsEKfoBuQvN0aEdu5IOfY,5,2012,acoustic,0.503,0.208,7,-14.095,1,0.0359,0.547,0.00817,0.162,0.452,79.66,139880,4 +721,Otis Spann,Meet Me in the Bottom,0YGM1HHcwVdlstMdTGcB5c,9,2012,acoustic,0.679,0.371,0,-14.338,1,0.111,0.876,0.553,0.301,0.729,121.102,185920,4 +722,Eric Bibb,Don't Ever Let Nobody Drag Your Spirit Down,6eg7zlLj9Jmcl3Pz1Z3SGz,14,2012,acoustic,0.567,0.662,7,-9.958,1,0.0678,0.454,3.19e-06,0.123,0.822,108.436,314613,4 +723,Tyrone Wells,Head Over Heels,0N1OBdp00NxSGcVgh8EwKk,7,2012,acoustic,0.676,0.675,0,-5.359,1,0.0385,0.117,0.0,0.168,0.814,172.032,196026,4 +724,Yu Takahashi,今、君に会いにいく,3Tusnv4FzdyTJIpU872QeQ,13,2012,acoustic,0.552,0.951,9,-2.837,1,0.0527,0.761,0.0,0.345,0.904,131.79,219373,4 +725,Jenny & Tyler,When Darkness Falls,0FDpmNHfvR1YcmdQaw6NaH,6,2012,acoustic,0.658,0.141,3,-12.74,1,0.0347,0.705,1.99e-06,0.115,0.138,121.89,245253,4 +726,Jenny & Tyler,You Keep Loving Me,1kVHVH8lo1Hj0LGVRXwB1D,6,2012,acoustic,0.487,0.12,10,-14.403,1,0.0403,0.774,0.0,0.124,0.356,73.732,161907,4 +727,Tyrone Wells,Already Falling,2kalDCDKHDOCGoawOg9xIo,9,2012,acoustic,0.501,0.67,5,-7.076,1,0.0296,0.241,0.0,0.306,0.671,156.005,219438,4 +728,Tyrone Wells,Satellite,5En18IsQJ7uAU1Zp8uEvGR,11,2012,acoustic,0.468,0.606,2,-6.473,1,0.028,0.00397,0.0,0.175,0.215,81.979,252379,4 +729,Charley Patton,Mississippi Boweavil Blues,2PSLVo3o7iU8mwTuovIO5P,6,2012,acoustic,0.625,0.173,6,-10.739,1,0.0585,0.951,0.555,0.141,0.119,114.235,189787,4 +730,Madi Diaz,To Be Alone,3Y0kYJ1J5o9VbQm5DvPe6O,7,2012,acoustic,0.706,0.552,7,-6.051,1,0.0259,0.0179,4.74e-06,0.272,0.644,100.971,230000,4 +731,Kris Allen,You Got A Way,4ALTuVKcRrbPyxDIqVUQQN,10,2012,acoustic,0.426,0.282,6,-10.01,1,0.0342,0.549,0.0,0.0881,0.0985,139.437,210907,4 +732,Madi Diaz,Johnny,2FlIB9lzM1RAjWq5no6Hkp,7,2012,acoustic,0.738,0.591,9,-5.312,0,0.0302,0.00481,3.45e-06,0.104,0.509,123.999,199707,4 +733,Tyler Ward,We Are Young - Acoustic,5RvCp2kQ9QILQ14DdgAd0e,16,2012,acoustic,0.479,0.463,2,-7.23,1,0.0308,0.377,0.0,0.381,0.33,93.398,222830,4 +734,Green River Ordinance,Dark Night,1scaurltbPZorAV5pc1ZS4,7,2012,acoustic,0.418,0.847,2,-4.233,1,0.0355,0.000438,0.00266,0.232,0.0885,147.973,160720,4 +735,Tyler Ward,Payphone,7CgExeJVq5hD2jur5F83MY,14,2012,acoustic,0.61,0.502,4,-6.016,1,0.0269,0.0231,0.0,0.142,0.194,103.92,189519,4 +736,Green River Ordinance,Under Fire,2tK3QcQF4E188y1DgawsZO,6,2012,acoustic,0.488,0.574,1,-6.049,1,0.0267,0.00392,0.000223,0.0953,0.126,111.997,260973,4 +737,Green River Ordinance,Lost in the World,6aqheaqglL3yJypQeBbjXe,7,2012,acoustic,0.562,0.446,5,-10.761,1,0.0273,0.646,2.85e-05,0.109,0.144,126.021,280307,4 +738,Josh Ritter,Can't Go To Sleep (Without You),71P7Hy4H0YFHSJTTpgWH9o,6,2012,acoustic,0.663,0.116,7,-19.089,0,0.0378,0.897,0.0782,0.104,0.415,87.563,197003,4 +739,Greg Laswell,Eyes On You - Redux,3GISnSJ4EEfCJmkP34ijR6,7,2012,acoustic,0.404,0.683,10,-6.022,0,0.0261,0.157,0.000232,0.0721,0.546,75.044,181320,3 +740,Greg Laswell,Nicely Played,4a4fe5YXelEFAA2eRHwDrb,7,2012,acoustic,0.408,0.883,2,-4.533,1,0.0428,0.0658,1.32e-06,0.549,0.347,160.126,257213,4 +741,Joshua Radin,Five and Dime,2PoCzpTwmlizyqpvUymNVc,5,2012,acoustic,0.533,0.27,5,-11.778,1,0.0298,0.608,0.000839,0.116,0.558,118.54,185680,4 +742,Will Hoge,Times Are Not Changing,6rXN89ylfUnFTotTcyldzh,6,2012,acoustic,0.456,0.564,9,-5.877,1,0.0407,0.254,0.0,0.116,0.47,171.31,219983,3 +743,Joshua Radin,The Willow,36idI6jTjJm87ghJPTRWg6,5,2012,acoustic,0.313,0.195,2,-16.435,1,0.0367,0.81,0.0515,0.12,0.285,174.761,207880,4 +744,Bo Carter,You're Biscuits Are Big Enough for Me,74RPP6NBcr74YiwZ46OAEt,8,2012,acoustic,0.666,0.392,9,-8.822,0,0.0466,0.92,0.0,0.203,0.75,91.107,127303,4 +745,Sue Foley,Open Up Your Eyes,3hJWhRqt2Z6auuIbgB1EBr,14,2012,acoustic,0.611,0.436,4,-10.642,1,0.0276,0.247,0.000166,0.0915,0.525,80.843,149307,4 +746,Ron Pope,Sometimes,0GhHXgFuk6soYMSYAPurdo,9,2012,acoustic,0.631,0.861,1,-5.125,1,0.0463,0.0167,0.000149,0.0784,0.792,108.077,191507,4 +747,Rachael Yamagata,Blister of the Spotlight (with Rachael Yamagata),7IuZFOHsaqLWa0kqL4F4bF,8,2012,acoustic,0.56,0.815,0,-6.194,1,0.0296,0.0837,0.00203,0.0826,0.529,109.445,256236,4 +748,David Gray,Forgetting,01VVns7uei4IHaj2WLn7MN,8,2012,acoustic,0.256,0.121,9,-17.363,1,0.0407,0.949,0.214,0.116,0.0668,163.709,258267,5 +749,Meiko,Lie To Me,55mhuMPol44fE51jhpgIhV,5,2012,acoustic,0.523,0.786,7,-5.151,1,0.0275,0.00643,6.51e-06,0.112,0.521,126.039,220307,4 +750,Beans on Toast,Rainydays,4Fqv8aZh6BKf2qtbzu5ajR,16,2012,acoustic,0.68,0.431,7,-12.335,1,0.15,0.641,0.0,0.251,0.72,102.835,211480,3 +751,Zach Berkman,Honey,5jSm67sceiOLipVcnSLqwU,5,2012,acoustic,0.527,0.111,0,-15.713,0,0.0383,0.95,0.45,0.116,0.82,125.829,52305,4 +752,(Person) (Noun),1 vs 7 Billion,0RSSyeNdoS6yue7JWlP2ik,6,2012,acoustic,0.535,0.414,11,-5.824,1,0.0594,0.541,0.0,0.101,0.392,117.477,225231,4 +753,Toto Sorioso,When I See You Smile,16llJZrNEWZKzsTIY23qg5,24,2012,acoustic,0.715,0.281,4,-9.231,1,0.0322,0.824,0.0,0.0905,0.444,135.854,259013,4 +754,Lulu Panganiban,There You'll Be,7aVZvFDI4yPKkK44pNPP3b,21,2012,acoustic,0.532,0.323,8,-6.68,1,0.0287,0.804,0.0,0.138,0.373,129.823,212520,4 +755,Chir Cataran,Alipin (Acoustic),61g5fhLgUTk556GUatYBkD,18,2012,acoustic,0.547,0.275,1,-9.226,1,0.0315,0.878,4.86e-06,0.106,0.434,147.844,278973,4 +756,Jon McLaughlin,These Crazy Times,1ZIncgxMWlY6oUyIIn9Jdo,7,2012,acoustic,0.363,0.553,0,-8.279,1,0.0561,0.253,4.29e-06,0.113,0.203,147.995,593960,4 +757,Jon McLaughlin,The Atmosphere,3NRZITWu9hv7J1EUMolP8w,9,2012,acoustic,0.326,0.668,1,-5.286,1,0.0431,0.134,2.56e-06,0.106,0.397,83.762,229733,4 +758,Beans on Toast,Protest Song,6fujgXaM20qHYN76VjuswN,17,2012,acoustic,0.692,0.33,6,-10.8,1,0.237,0.8,0.0,0.204,0.884,78.607,144173,4 +759,Meiko,Leave the Lights On - Light Makers,0f8MgWj6GLtUD01helldJN,5,2012,acoustic,0.555,0.951,1,-7.086,0,0.0464,0.245,0.22,0.0817,0.703,121.989,281453,4 +760,Miyuki Hatakeyama,ランベルマイユ コーヒー店,0fC40fz5tGaSvXLQKY9atQ,24,2012,acoustic,0.732,0.142,5,-12.773,1,0.0353,0.914,6.15e-05,0.117,0.309,96.109,151067,4 +761,Jon McLaughlin,Falling,1kYMV4fOhg3dy4jSz22m0I,7,2012,acoustic,0.458,0.734,9,-5.724,1,0.033,0.043,2.17e-06,0.1,0.419,160.04,252760,4 +762,Masaharu Fukuyama,GAME,1LauVfGdJhZydx4S5bkomg,12,2012,acoustic,0.438,0.935,0,-3.115,1,0.078,0.00317,0.0,0.141,0.363,98.831,279080,4 +763,Roberto Diana,Soul Hunter,2GDp9NkWlmA9TJSoVToY4i,11,2012,acoustic,0.362,0.215,4,-15.208,1,0.0508,0.969,0.915,0.107,0.111,152.321,215400,4 +764,Drew Holcomb & The Neighbors,Silver Bells,5Nvh57UQgtqIqawtJ8Zosy,6,2012,acoustic,0.573,0.556,7,-9.355,1,0.126,0.348,1e-05,0.111,0.208,91.182,257200,4 +765,Roberto Diana,In My Mind (Intro),7868htLSwRkRvOBBLopqQ8,10,2012,acoustic,0.454,0.0993,2,-11.228,1,0.0632,0.906,0.888,0.0973,0.111,111.071,137480,4 +766,Daryl Shawn,Shenandoah,7COEFkggAxw5qM0KTmPwhy,5,2012,acoustic,0.603,0.147,7,-19.72,1,0.0496,0.932,0.911,0.115,0.34,104.433,268973,4 +767,Josh Ritter,Why,42JBmno5Xm4zzYtnsi83MX,6,2012,acoustic,0.58,0.176,10,-15.997,1,0.0345,0.974,0.0917,0.101,0.541,89.01,167284,4 +768,Roberto Diana,Day Off,2rvcjIA99vA0BSvs8Xxfnd,9,2012,acoustic,0.379,0.241,10,-12.227,1,0.059,0.948,0.854,0.11,0.223,141.67,212400,4 +769,Right the Stars,Airhead (There's the Moment),5EEf3IhIRAmCuz9f0JS8OQ,8,2012,acoustic,0.679,0.586,9,-7.716,1,0.0314,0.0732,0.492,0.111,0.519,105.992,245093,4 +770,Patty Griffin,Boston,1mTZldOlNdW5RdsdWLKST5,7,2012,acoustic,0.405,0.936,8,-5.66,0,0.0376,0.0137,0.0,0.129,0.497,138.602,240987,4 +771,Josh Kelley,Amazing,4SObWsjPsbz79tCp3BPGuh,7,2012,acoustic,0.621,0.879,9,-3.856,1,0.0412,0.0137,0.0,0.342,0.651,96.909,220791,4 +772,Joshua James,Wolves,23KdFGudJuT7rvihoR8Mjr,7,2012,acoustic,0.586,0.408,6,-8.343,0,0.031,0.472,0.000113,0.251,0.211,80.997,187920,4 +773,Mindy Smith,It's Amazing,5PtpDH50wrk0SELoGhbouO,6,2012,acoustic,0.612,0.476,9,-9.77,1,0.0315,0.648,0.0,0.124,0.29,138.999,220413,4 +774,Mindy Smith,Out Loud,6RnpVQhqauWFEbML5l4qBY,6,2012,acoustic,0.442,0.433,3,-10.972,1,0.0311,0.719,0.000891,0.148,0.362,74.883,209320,3 +775,Jack Savoretti,Vagabond,7ujsODmEWbTIyQlqDV9kHZ,20,2012,acoustic,0.608,0.889,9,-5.726,0,0.0271,0.0603,0.000117,0.256,0.647,139.975,227267,4 +776,Zee Avi,Concrete Wall - Robert Carranza Remix,7zNVtLnmRNPW8mgWF7Goyb,10,2012,acoustic,0.427,0.512,8,-8.931,1,0.0407,0.503,7.48e-06,0.157,0.0747,170.046,214893,4 +777,Van Larkins,Stomp,5SUje1B4cFzzEqeuK8H5A5,7,2012,acoustic,0.586,0.335,6,-17.279,0,0.0462,0.457,0.852,0.114,0.468,93.469,204000,4 +778,Zee Avi,Tomorrow Is A Long Time,5SD9htjWELh455yqNY4EP1,5,2012,acoustic,0.484,0.262,7,-9.923,1,0.0313,0.876,0.0,0.0855,0.16,66.008,238933,3 +779,Joshua James,Sister,2lMh4LfcZDGiskNuXvRCcv,8,2012,acoustic,0.572,0.473,7,-7.008,1,0.0367,0.315,0.00446,0.101,0.303,110.051,177480,4 +780,Mozella,Baby Save Me,2BCDqJTZLlAZHF1xZpPw6U,5,2012,acoustic,0.723,0.838,9,-6.795,0,0.0294,0.0343,8.51e-06,0.132,0.873,112.954,204287,4 +781,Ernie Halter,Blackbird,6sOYXpac5zU5WWxl3SStMO,9,2012,acoustic,0.538,0.176,7,-11.135,1,0.0291,0.965,0.0,0.124,0.213,82.943,174867,4 +782,Jack Savoretti,Last Call,2tJvfpgftWLqbn3lUwnc7v,18,2012,acoustic,0.382,0.7,2,-7.706,0,0.0467,0.0999,1.3e-05,0.118,0.566,82.164,216507,4 +783,Not Half Bad,Fuck Up,3Sl2nsGd6mKvCimiO4E2UL,6,2012,acoustic,0.585,0.975,2,-5.596,1,0.0542,0.0116,0.0,0.17,0.528,109.979,160733,4 +784,Josh Ritter,See Me Through,5puzr08AORSuiBvhmywa04,6,2012,acoustic,0.714,0.571,6,-10.466,1,0.0336,0.667,0.182,0.0977,0.587,119.973,262162,4 +785,Patty Griffin,Mother Of God,4Dwq0SAMOXEeTmlTcVcxKv,7,2012,acoustic,0.399,0.137,0,-13.996,1,0.0339,0.91,2.13e-06,0.104,0.256,93.754,254320,1 +786,Patty Griffin,Sooner Or Later,7gqMsZBut5W5SsBrnQMvn2,7,2012,acoustic,0.646,0.345,0,-12.754,1,0.0648,0.498,0.00143,0.124,0.493,76.098,204720,4 +787,Patty Griffin,Little God,4BNWcbUwhenzRVwBpbUkFb,8,2012,acoustic,0.541,0.598,7,-8.807,1,0.0281,0.0466,9.47e-05,0.128,0.209,88.958,302973,4 +788,Patty Griffin,What You Are,6uRCH1PDxh1X3N6bx3p4Et,8,2012,acoustic,0.534,0.246,0,-15.228,1,0.0313,0.797,0.00154,0.105,0.169,138.09,282813,4 +789,Chris Smither,On The Edge,0uPfEQJovj7TYYP8mdSon2,9,2012,acoustic,0.446,0.548,1,-7.121,0,0.03,0.622,0.00658,0.317,0.256,67.059,268427,3 +790,Dave Barnes,Seventeen,0yWBW7PKVrEGtNeSxuiEBJ,6,2012,acoustic,0.62,0.827,11,-5.669,0,0.0379,0.0114,0.000193,0.0591,0.503,124.965,224280,4 +791,Scars On 45,Breakdown,23Kd2xBp1r5CplwvbLp0lb,6,2012,acoustic,0.354,0.735,10,-6.232,1,0.0402,0.0118,0.0,0.116,0.278,187.89,258707,4 +792,Erica Freas,Paper Thin,0LSAnFagxAW62abTb1adgE,8,2012,acoustic,0.744,0.236,0,-10.862,0,0.0432,0.706,4.74e-05,0.106,0.541,139.816,189387,4 +793,Dave Barnes,Missing You,5D8W48yaxY7xUtCTCYiVbk,6,2012,acoustic,0.672,0.635,0,-5.893,1,0.0258,0.132,0.000189,0.19,0.785,92.0,205067,4 +794,John Frusciante,Sam,01chnOPeywzMiAExcNAP1w,6,2012,acoustic,0.248,0.979,9,-3.589,1,0.427,0.702,0.747,0.129,0.255,77.045,261010,4 +795,Priscilla Ahn,Rosa (with Priscilla Ahn),2ZfbInXrf170x1yfQgX5o6,8,2012,acoustic,0.518,0.684,6,-9.096,1,0.0246,0.112,0.28,0.101,0.667,88.006,323292,4 +796,Erin McCarley,Pop Gun,14X3yfJc8Z6BQGdVmi6ysX,5,2012,acoustic,0.548,0.87,5,-4.062,1,0.0945,0.03,2.39e-06,0.175,0.719,159.941,165653,4 +797,Matt Wertz,Tennessee Christmas,5Rhj9MyKEHzjrwiiJXhE08,6,2012,acoustic,0.535,0.332,7,-11.522,1,0.0254,0.256,0.0,0.104,0.235,92.998,273027,4 +798,Anna Nalick,Dorian Gray,7dpS2xvhH1yo5yItl8aypd,7,2012,acoustic,0.593,0.354,9,-10.484,0,0.0247,0.486,0.0,0.159,0.27,97.95,180233,4 +799,Scars On 45,Don't Say,2mgP28cSPsyNmA74hXL1R3,6,2012,acoustic,0.487,0.654,11,-5.549,1,0.0314,0.0408,0.0,0.0855,0.219,126.127,238493,4 +800,Matt Wertz,Christmas in the City,2hKfGeMXcKT9DzfGQlq6uX,6,2012,acoustic,0.286,0.361,9,-11.454,1,0.0292,0.0857,5.47e-06,0.151,0.274,151.766,231987,3 +801,Matt Wertz,Christmas Just Does This to Me,4ec8QopLVmCAa7KLtDr0Rv,5,2012,acoustic,0.228,0.29,7,-12.971,1,0.0343,0.262,0.0,0.151,0.155,60.838,263933,4 +802,Taj Mahal,Yan-Nah Mama-Loo,3We0E2KuduzAInIt6hyJ4m,8,2012,acoustic,0.748,0.668,3,-9.482,1,0.0272,0.615,0.0116,0.0872,0.97,106.739,368213,4 +803,Harley Poe,Old Woman All Skin and Bone,1zw5XWlgLCXRPP7V8ITusK,7,2012,acoustic,0.568,0.165,7,-14.359,1,0.163,0.531,5.46e-05,0.149,0.193,138.541,126000,4 +804,Steve Petrunak,Send in the Clowns,0jsFJ6BKdgdLhAnC2FAlzD,8,2012,acoustic,0.436,0.21,2,-15.276,1,0.042,0.499,0.00723,0.108,0.139,88.459,236206,3 +805,Corey Gray,Your Body Is a Wonderland,62algCz6zIbCja8DYgULBd,23,2012,acoustic,0.673,0.407,5,-9.974,1,0.0353,0.704,1.17e-05,0.122,0.395,92.997,207121,4 +806,Steve Petrunak,Wild Fire,7uMnXH40CjdpYOInNBtWCG,7,2012,acoustic,0.383,0.384,4,-9.344,1,0.0311,0.867,0.947,0.0974,0.295,82.035,240226,4 +807,Trent Dabbs,Come to Life,5ncR9L4NYv78y0oy25UjMg,9,2012,acoustic,0.408,0.297,0,-10.309,0,0.0268,0.906,0.0817,0.293,0.094,147.908,211560,5 +808,Jill Andrews,Sweetest in the Morning,2tOjcrhxmID1Yd0GcABb8O,6,2012,acoustic,0.268,0.354,2,-8.669,1,0.0297,0.776,0.000414,0.153,0.225,79.235,249280,4 +809,Steve Petrunak,Already Gone,01Sy4pb79KkPT5CrSNIqqy,8,2012,acoustic,0.525,0.712,7,-5.568,1,0.0366,0.728,0.907,0.127,0.458,143.917,209162,4 +810,Hannah Trigwell,Too Close,1PjKeIYkCC8tosHgDQbff1,12,2012,acoustic,0.643,0.237,11,-8.652,0,0.0306,0.885,0.0,0.503,0.271,119.742,197133,4 +811,Jill Andrews,City Noise,35mt0qHFEpP35VUKZLVRP1,6,2012,acoustic,0.596,0.209,0,-13.339,1,0.035,0.854,2.09e-05,0.164,0.204,121.505,190240,4 +812,Joshua Hyslop,I Wish I Was,509BJeY5fLxdYE62fM4GY8,13,2012,acoustic,0.453,0.155,9,-16.507,1,0.0338,0.437,5.23e-05,0.136,0.223,128.107,190893,3 +813,Tyrone Wells,For Who I Am,6X8ib99C3yodMczwgGvAB7,8,2012,acoustic,0.337,0.353,2,-11.978,1,0.0303,0.498,3.51e-06,0.136,0.198,74.052,256677,4 +814,Tyrone Wells,Make It Through,1PsE4DShwP49nQX11s2hO2,9,2012,acoustic,0.47,0.433,9,-8.339,1,0.0362,0.335,0.0,0.104,0.427,76.079,208802,4 +815,Otis Taylor,Your 10 Dollar Bill,5ZBAmpEqwcTFNMaXlBxwUG,12,2012,acoustic,0.718,0.392,0,-11.421,1,0.0253,0.673,0.607,0.0876,0.641,98.55,236213,3 +816,Jenny & Tyler,Little Balloon,2riGTqs5BuQl1aSU0Kuhib,6,2012,acoustic,0.603,0.479,11,-10.073,1,0.0348,0.202,0.0,0.125,0.128,79.981,258427,4 +817,Joshua Hyslop,First Light,388A71C5F4pd0kbXiBC2Pl,12,2012,acoustic,0.469,0.302,11,-15.627,1,0.0302,0.688,0.374,0.103,0.17,185.914,250387,3 +818,Matt Hires,Restless Heart,3HBiu0NH4GXR7wZDe5MaRz,10,2012,acoustic,0.555,0.786,2,-4.8,1,0.0324,0.002,0.0,0.249,0.646,139.893,200507,4 +819,YUZU,Sakurae,6CvQWp9mUfK4jRAQKoNpk0,11,2012,acoustic,0.505,0.772,5,-4.231,1,0.029,0.139,0.0,0.344,0.687,94.044,269360,4 +820,Augustana,Just Stay Here Tonight,0tswmaZo5JFitk6Q79gm8B,5,2012,acoustic,0.618,0.699,2,-4.85,1,0.0308,0.138,0.0,0.113,0.469,112.368,200120,4 +821,Augustana,Steal Your Heart,3IDH9qqDX0vnth24K5dKbJ,4,2012,acoustic,0.551,0.673,7,-5.248,1,0.0341,7.69e-05,0.000239,0.206,0.114,115.935,213280,4 +822,Madi Diaz,Nothing at All,6iBrcMcjwdGgOBmCMeikNM,8,2012,acoustic,0.711,0.673,2,-5.221,1,0.0339,0.0598,3.27e-05,0.115,0.481,129.884,179933,4 +823,Tyler Ward,Gravity - Acoustic,19B1TZv0hG2iub0fZM4PS8,10,2012,acoustic,0.405,0.0532,7,-17.039,1,0.0494,0.911,3.34e-06,0.108,0.275,164.736,215835,4 +824,Green River Ordinance,Don't Be Afraid,24as1myEFYu65Q30zW7Cik,6,2012,acoustic,0.54,0.549,10,-7.247,1,0.0264,0.495,0.0108,0.152,0.151,139.928,279347,4 +825,Green River Ordinance,Crawling,7lGvj43LBzVV1Y3CrhJd9t,6,2012,acoustic,0.592,0.731,7,-5.793,1,0.0288,0.0422,8.58e-05,0.111,0.376,114.979,198533,4 +826,Tyler Ward,Lego House,4lSQxDc3HRjzTbq0AzKQ35,14,2012,acoustic,0.6,0.4,11,-11.07,1,0.0352,0.746,0.0,0.339,0.525,80.07,185307,4 +827,Greg Laswell,It's Settled Now,7uQAkUk6puKyx4m09q5Vj5,7,2012,acoustic,0.277,0.347,9,-7.6,1,0.0284,0.855,0.00931,0.142,0.0886,139.12,196640,4 +828,Joshua Radin,Lost At Home,6jgP2UU9Cvx2FUcuR2vNOR,5,2012,acoustic,0.494,0.24,3,-16.03,1,0.0357,0.794,0.00761,0.116,0.282,100.352,146387,4 +829,Johnnyswim,"Baby, It's Cold Outside",789tp8SxvLIodmQ3HoyOVh,6,2012,acoustic,0.481,0.415,10,-6.782,1,0.0503,0.65,0.0,0.168,0.535,76.492,161533,3 +830,Chris Smither,Every Mother's Son,0DONhcLjOeXUD6QbteYIcB,8,2012,acoustic,0.476,0.467,7,-9.342,1,0.0374,0.848,0.856,0.217,0.385,137.153,207187,4 +831,Mia Rollo,Kiss Me,2IctLkTvePz7L4JdeJ0LEA,23,2012,acoustic,0.59,0.43,3,-8.001,1,0.0274,0.867,0.0,0.104,0.318,95.01,179747,4 +832,Meiko,Let It Go,5bFDaNIQNcqKfoDtOM5gnF,4,2012,acoustic,0.59,0.718,0,-5.405,1,0.0295,0.181,1.12e-06,0.155,0.328,97.04,226280,4 +833,Fuyumi Abe,いつかまた微笑みあえる日が来るまで,3VCGsHzNhwl9TPl5oh0oIa,19,2012,acoustic,0.532,0.416,8,-8.792,1,0.0304,0.346,6.51e-05,0.113,0.241,125.349,232933,4 +834,Beans on Toast,The Children of Bedford,6H0izeRwsbK2RPGS9CS4JU,17,2012,acoustic,0.641,0.266,4,-14.35,1,0.567,0.625,0.0,0.288,0.843,84.951,201547,4 +835,Meiko,Thinking Too Much,0eGp5JAO5VHpvyYUGK5pra,4,2012,acoustic,0.595,0.837,11,-5.399,1,0.0267,0.0713,0.0,0.221,0.772,109.978,216560,4 +836,Lulu Panganiban,Wishing On The Same Star,1sL7kV7ZXDvMDXep9xo24d,12,2012,acoustic,0.5,0.347,11,-8.906,1,0.0297,0.683,0.0,0.101,0.291,131.738,202533,4 +837,Jaymay,Eye2eye,2f2RcbRLBlRZpv0uBVxpR5,7,2012,acoustic,0.284,0.274,7,-11.194,0,0.0406,0.588,0.441,0.187,0.166,151.262,97667,3 +838,Sam Russo,Letting Go,3tPfrrqCbQLnuvVGA3fZOU,8,2012,acoustic,0.538,0.133,6,-12.329,0,0.0388,0.904,5.32e-05,0.0893,0.331,98.319,240000,4 +839,Patty Griffin,Fragile,6wW7HWNBMMLxKRWkGP4nZN,6,2012,acoustic,0.694,0.389,6,-11.709,0,0.0249,0.742,0.0074,0.0705,0.688,88.403,218360,4 +840,Tim Myers,Feel Good Sunshine,3OopRhQ7YsYuR9H8PDnrB5,11,2012,acoustic,0.821,0.278,5,-7.911,1,0.0573,0.857,4.54e-05,0.0947,0.917,127.076,172907,4 +841,Tim Myers,Today's The Day,6tuzzG8BsAI9SaIxyMPs3X,12,2012,acoustic,0.624,0.878,0,-2.421,1,0.0281,0.0435,8.25e-05,0.103,0.268,126.055,272987,4 +842,Tim Myers,Go! Let's Go!,6qy9UQvV94C7S7ZKVoLLBA,13,2012,acoustic,0.598,0.924,9,-3.051,1,0.0588,0.00135,0.0708,0.247,0.519,129.981,193360,4 +843,Tim Myers,Technicolor,4ktLEBOh6xMkrvXwjdrUFL,7,2012,acoustic,0.664,0.869,7,-3.532,1,0.0427,0.243,0.0,0.0993,0.918,92.538,198677,4 +844,Mindy Smith,Peace Of Mind,0K56Grrg7VohyeJiBy55RU,7,2012,acoustic,0.487,0.0573,7,-15.597,1,0.0402,0.94,3.93e-05,0.113,0.242,126.959,197400,4 +845,Tim Barry,T. Beene,0xnM30ThWPiN9g5Gz0Erng,4,2012,acoustic,0.679,0.453,7,-7.704,1,0.0402,0.31,0.0,0.237,0.646,94.365,219987,4 +846,Ari Hest,What Becomes of the Broken Hearted,5V70R6yGzPxLcE8hXHrGGz,4,2012,acoustic,0.604,0.0738,6,-16.219,1,0.0302,0.985,0.000629,0.112,0.3,86.564,253706,4 +847,Tim Barry,Adele and Hell,623f8sF5BwaRkQU2l70sho,4,2012,acoustic,0.448,0.579,9,-5.729,1,0.0384,0.611,1.15e-06,0.0921,0.693,102.354,216773,4 +848,Kate Havnevik,Show Me Love,2p9w2RhN4kb0N4MTG6U7HW,6,2012,acoustic,0.565,0.797,2,-6.136,1,0.067,0.0117,0.0,0.227,0.567,128.083,220253,4 +849,Colorfactory,Street in ime,5bRX3Tp4ixOW4RzjRZx5vD,10,2012,acoustic,0.521,0.262,2,-18.71,1,0.0309,0.22,0.363,0.122,0.169,90.79,216293,4 +850,Zee Avi,Concrete Wall - Mario C & David Hurwitz Remix,4ktsiZwnT7bbvnzGiGdn7e,12,2012,acoustic,0.354,0.391,8,-10.774,1,0.0419,0.264,0.000623,0.186,0.247,167.441,226093,4 +851,Ernie Halter,My Heart Is with You,7Fidl4rFFlkuigwSoFptvH,6,2012,acoustic,0.493,0.209,7,-11.547,1,0.0298,0.899,1.22e-05,0.114,0.34,165.959,213893,3 +852,Mindy Smith,Closer,4fgC0Lx7ef2nUYlAbGzA8M,4,2012,acoustic,0.47,0.659,9,-6.398,1,0.0279,0.225,1.63e-05,0.084,0.294,81.972,215973,4 +853,Sungha Jung,"Ob-La-Di, Ob-La-Da",6Ds19Of6oPyl300ZID7CS1,10,2012,acoustic,0.655,0.62,10,-10.802,1,0.0363,0.648,0.927,0.105,0.906,125.888,178827,4 +854,Tim Barry,Amen,2igp8Dd43ykKTvDsA5pva1,5,2012,acoustic,0.574,0.462,2,-5.515,1,0.0284,0.432,0.0,0.176,0.484,91.668,217693,4 +855,Kate Havnevik,Mouth 2 Mouth,0w7WVjDnb7xtjkhTw14eIL,8,2012,acoustic,0.21,0.861,7,-6.723,0,0.0928,0.00131,0.00045,0.175,0.375,91.088,213533,5 +856,Chuck Ragan,Live by the Sword,1Nqv1MtGpu4Ee09cJcj3JI,7,2012,acoustic,0.505,0.58,0,-7.478,1,0.0305,0.413,0.0,0.327,0.791,116.821,180541,4 +857,Colorfactory,Que Pasa,4sAYZ3qp1htGqkBXXPTivR,10,2012,acoustic,0.606,0.572,1,-11.658,0,0.028,0.671,0.573,0.12,0.881,127.381,305800,4 +858,Colorfactory,Paris,0z97NCYfLCDHKs0A83TBvN,11,2012,acoustic,0.577,0.543,7,-13.291,1,0.0278,0.0279,0.0305,0.102,0.529,114.699,180133,4 +859,Sungha Jung,Wayfaring Stranger,7Mx77WXZDL4dgk2uGf9riI,6,2012,acoustic,0.529,0.271,9,-12.924,0,0.0392,0.924,0.885,0.0804,0.355,120.65,184933,4 +860,Not Half Bad,Sunday Song,0QP0ghouqViXyfi5dOHSyZ,5,2012,acoustic,0.38,0.954,9,-6.34,0,0.137,9.86e-05,0.000843,0.0906,0.245,168.171,151640,4 +861,Corporate Hearts,I Thought You Liked to Rock,7bNtuZ6O971HVmp1H4B5jk,4,2012,acoustic,0.594,0.543,2,-6.463,1,0.0299,0.713,0.0,0.0685,0.854,90.654,211096,4 +862,Sungha Jung,Kokomo,5vdhSPkoK3wrFW3CbF56zp,7,2012,acoustic,0.645,0.443,0,-11.846,1,0.09,0.689,0.867,0.0886,0.924,124.192,207240,4 +863,Takehara Pistol,3センチの歌,7fTuz4Fiqkc8CnxWKNNoWG,10,2012,acoustic,0.556,0.263,9,-7.775,1,0.0355,0.235,3.69e-05,0.155,0.407,113.161,237240,4 +864,Bushwalla,Mayhem Is Beautiful,5J09coPb8RieODAkkuR64Z,4,2012,acoustic,0.7,0.203,0,-12.914,1,0.0359,0.828,0.0,0.126,0.385,107.12,205413,4 +865,Mindy Smith,Tin Can,5pHdPD11m9Zjm4HsHuPPRZ,4,2012,acoustic,0.596,0.852,9,-6.738,1,0.0528,0.2,9.28e-05,0.103,0.699,156.112,179080,4 +866,Not Half Bad,"Shut Up, Marggie!",4YjRVz6dWfpu3AqICNGd3m,5,2012,acoustic,0.559,0.986,1,-6.109,0,0.0347,0.00074,0.00048,0.184,0.158,98.964,169587,4 +867,Ingram Hill,Behind My Guitar,77h4Fbbt9RAvy88GkqeMdS,4,2012,acoustic,0.512,0.745,10,-6.434,1,0.0367,0.00212,0.0,0.115,0.456,124.996,186493,4 +868,Matt Wertz,Sleigh Ride,03FiKgFaK5tbsehTkqTDGt,5,2012,acoustic,0.676,0.599,10,-8.733,1,0.033,0.127,0.00766,0.105,0.871,118.321,168000,4 +869,Scars On 45,Tomorrow Won't Die Too Soon,70xgbegxWKNCUrQP88yzNI,6,2012,acoustic,0.525,0.776,5,-6.469,0,0.0279,0.0319,9.9e-06,0.0546,0.679,133.101,213120,4 +870,Dave Barnes,Heaven Help Me,7MKtGzv2Cz3GI6qXpX3nfB,5,2012,acoustic,0.705,0.871,7,-4.137,1,0.0275,0.297,3.88e-06,0.118,0.852,102.957,179653,4 +871,Matthew Mayfield,I Don't Know You At All,28mPF41kD1oHNRDgjju8PH,7,2012,acoustic,0.327,0.265,2,-11.69,0,0.0331,0.432,1.69e-05,0.0617,0.0557,82.715,214114,4 +872,Erin McCarley,Hush Hush,0eTceDWLHJztpzP761oubo,6,2012,acoustic,0.43,0.536,0,-6.38,1,0.0308,0.151,0.0,0.454,0.323,170.135,227320,4 +873,Erica Freas,Song for a Mermaid,4sjlI5xoxXYPaKCqrOGZer,7,2012,acoustic,0.663,0.285,0,-9.953,0,0.0419,0.445,9.18e-05,0.0983,0.681,114.943,118600,4 +874,Erin McCarley,Vertigo,0W2HX4PEW1faQKCwnlio3y,4,2012,acoustic,0.491,0.939,6,-5.44,1,0.0441,0.00135,0.000654,0.422,0.754,161.057,197360,4 +875,Sanders Bohlke,Lights Explode,3FW3YsxTtWRBqoPp5OB9TX,6,2012,acoustic,0.452,0.484,2,-9.788,1,0.03,0.498,0.172,0.0822,0.498,177.988,279147,4 +876,Tim Barry,Hobo Lullaby,0nC1z6dcSXQtC7dTOMn2Hd,4,2012,acoustic,0.506,0.481,7,-6.401,1,0.0275,0.457,3.79e-06,0.342,0.369,123.398,286867,4 +877,Corey Gray,Apologize,1pftMHVQcnmQET7iBmhlUG,17,2012,acoustic,0.551,0.165,3,-13.488,1,0.0394,0.938,0.0,0.156,0.148,119.814,167722,4 +878,Harley Poe,Gordon,1XeHK3R8npS5RGVlReX9V3,7,2012,acoustic,0.268,0.674,4,-9.851,1,0.131,0.616,0.0,0.108,0.766,208.252,228781,4 +879,Corey Gray,Whistle,1Bk6ksh2zdKCrxhvcqdJ80,14,2012,acoustic,0.667,0.453,0,-8.236,1,0.0321,0.474,0.0,0.389,0.699,94.053,161649,4 +880,Corey Gray,Making Memories of Us,6kY9Om2PEtbsTmfswMnFD2,7,2012,acoustic,0.491,0.402,8,-7.021,1,0.028,0.6,2.26e-06,0.115,0.304,106.158,210866,4 +881,Ross Copperman,Neverland,2cX5xMYx8x8ZpJN6lcxs4J,10,2012,acoustic,0.438,0.539,0,-7.993,1,0.0274,0.535,2.83e-05,0.138,0.121,93.963,242261,4 +882,Hannah Trigwell,Dark Side,1kKyaL3eOlaWFACNvyb9UE,11,2012,acoustic,0.48,0.262,0,-9.117,1,0.0347,0.728,0.0,0.123,0.218,119.585,176123,4 +883,Elenowen,Blood And Bones,144UsvF0ZbCRW2p3zrM2lw,6,2012,acoustic,0.646,0.726,1,-5.279,1,0.0302,0.129,0.000405,0.0903,0.362,114.034,216903,4 +884,Jenny & Tyler,Fear Thou Not,591rapWVuIgZD4I67DWExn,4,2012,acoustic,0.545,0.693,0,-7.927,1,0.0403,0.00837,3.36e-05,0.04,0.476,142.192,226493,4 +885,Tyrone Wells,Run Away With Me,0JwG2FDypQJ9S3M3PIOMhj,5,2012,acoustic,0.653,0.5,3,-7.039,1,0.0405,0.295,0.0,0.0943,0.602,75.966,219443,4 +886,Jon Bryant,Be Still,581USlvdsS2tvAS1AcKuaY,7,2012,acoustic,0.305,0.274,2,-10.723,1,0.0294,0.781,0.00422,0.359,0.294,79.522,161963,3 +887,Otis Taylor,Look To The Side,7DsYHuCOdU2wkNIganAVTA,12,2012,acoustic,0.52,0.562,7,-13.536,0,0.0276,0.713,0.0183,0.168,0.35,107.107,282200,4 +888,Jenny & Tyler,The Sound of Silence,6o7DQdwHbJ5vy2BsXiEg2e,10,2012,acoustic,0.514,0.448,10,-9.566,1,0.0253,0.304,3.05e-06,0.187,0.303,90.061,219127,4 +889,Otis Taylor,Open These Bars,4dRUIiNrYO6odW8RIXpC3s,11,2012,acoustic,0.693,0.11,7,-16.054,0,0.0402,0.882,0.0981,0.108,0.238,82.559,389987,4 +890,Jon Bryant,Once in a While,4dHK9PEmXODEJEybvbOQwW,8,2012,acoustic,0.45,0.147,9,-14.174,1,0.035,0.767,1.46e-05,0.12,0.403,136.354,199019,3 +891,Augustana,I Still Ain't Over You,26b0y4qIc6JTRUwlryAiXH,4,2012,acoustic,0.467,0.691,1,-4.763,1,0.0359,0.000835,0.0,0.337,0.348,114.01,211533,4 +892,Madi Diaz,Talk to Me,2Dg2px9LdikyMxYcitQbT1,6,2012,acoustic,0.603,0.571,9,-7.316,1,0.0286,0.554,0.00441,0.0893,0.254,85.534,312600,4 +893,Madi Diaz,Every Time I Reach Out,0cFfCyaHAOFJF8W4JyTuJn,5,2012,acoustic,0.542,0.793,4,-5.892,1,0.029,0.0186,3.54e-05,0.153,0.222,96.482,270947,4 +894,Augustana,Twenty Years,4Ztte62T9zQ4G8S51RtTpV,3,2012,acoustic,0.376,0.396,3,-6.533,1,0.0303,0.251,0.0325,0.104,0.286,132.942,267173,4 +895,Madi Diaz,Does It Rain (Where You Are),5pHp9MwjcW2IiD8P3jMIeT,7,2012,acoustic,0.678,0.547,8,-8.978,1,0.0268,0.303,0.0291,0.171,0.729,122.961,207170,4 +896,Madi Diaz,Call It the Same (Bonus Track),5iZ33JSPP1CwAVF8QIQUut,5,2012,acoustic,0.611,0.742,1,-7.219,1,0.0314,0.0201,0.000383,0.113,0.381,112.986,232507,4 +897,Tyler Ward,We Are Young - acoustic,0cRxUslJhWzDOmsycWZ9UK,13,2012,acoustic,0.479,0.463,2,-7.23,1,0.0308,0.377,0.0,0.381,0.33,93.398,222830,4 +898,Augustana,Counting Stars,5z7Ju6UyJSaYKmirJHKZkx,3,2012,acoustic,0.472,0.589,0,-5.171,1,0.0251,0.000993,5.29e-05,0.199,0.471,79.129,256973,4 +899,YUZU,T.W.L [Y.Z ver.],5eIxoWzwMr5vU9FSfVPawS,10,2012,acoustic,0.562,0.973,4,-2.835,1,0.135,0.129,0.0,0.116,0.847,168.013,258733,4 +900,Augustana,Fire,08ZHFTBVoPoYd2IB1PG2F3,4,2012,acoustic,0.512,0.209,5,-9.084,1,0.0413,0.919,7.08e-06,0.102,0.349,97.899,151880,4 +901,Augustana,Bullets - Live @ VH1.com,1hfroqHPxcZCHRYk7fIZMb,3,2012,acoustic,0.595,0.463,7,-7.471,1,0.0289,0.9,8.04e-05,0.0985,0.122,121.99,232067,4 +902,Madi Diaz,I Hope That It Snows (feat. Keegan DeWitt),1PHEeqcoJttSlsru7HCls3,5,2012,acoustic,0.733,0.48,0,-7.148,1,0.0302,0.366,0.000151,0.351,0.586,125.979,163333,4 +903,Chris Smither,Feeling By Degrees,5NZ7J8e8oCYarUMOfzBqzB,7,2012,acoustic,0.424,0.42,2,-8.644,1,0.0299,0.75,0.256,0.0979,0.355,81.191,258173,4 +904,Masayoshi Yamazaki,"One more time, One more chance",5AlA4Bh4nTj7HzogYwyXSk,13,2012,acoustic,0.55,0.441,11,-7.586,0,0.0307,0.66,0.0,0.11,0.36,129.265,332667,4 +905,Sleepy John Estes,Policy Man,5fCxtc749gjN5ishg66PzV,7,2012,acoustic,0.519,0.27,4,-6.085,1,0.0536,0.902,3.94e-05,0.197,0.393,81.182,192508,4 +906,Joshua Radin,One More,15n5ExvyFZURrqqNzaHY68,4,2012,acoustic,0.624,0.29,8,-14.15,0,0.0309,0.748,0.000335,0.116,0.387,131.006,164560,4 +907,Joshua Radin,Any Day Now,3rCUy1AgGZTUkhfFvftLT5,3,2012,acoustic,0.392,0.339,0,-13.428,1,0.0331,0.612,0.0694,0.256,0.212,80.03,213547,4 +908,Benjamin Francis Leftwich,Manchester Snow,6GG7NLHhQAPpHxIKVZRAOr,4,2012,acoustic,0.405,0.308,6,-12.779,1,0.0297,0.761,1.26e-05,0.13,0.175,103.801,250493,4 +909,Joshua Radin,Everything,22BzmbFm7TkaNq8QbtZb27,4,2012,acoustic,0.497,0.254,1,-14.961,1,0.032,0.852,6.03e-06,0.116,0.39,88.028,183827,4 +910,Will Hoge,Founding Fathers,415WWGBSYSMiaO7RddT65o,4,2012,acoustic,0.579,0.805,2,-4.933,1,0.0391,0.00873,0.0,0.0555,0.745,116.993,221116,4 +911,Taj Mahal,Fishin' Blues,5dVpa6beMuoL92WPLsHyB0,5,2012,acoustic,0.628,0.234,10,-15.692,1,0.0685,0.942,0.0,0.126,0.614,79.08,188053,4 +912,Josh Ritter,Make Me Down,0xRDSbG8xeYptnW3bxnPEg,5,2012,acoustic,0.622,0.182,0,-17.003,1,0.0363,0.824,0.0953,0.117,0.446,126.213,254770,4 +913,Chris Smither,I Feel The Same,5IwEQs26eQhOHu7awi5GxT,7,2012,acoustic,0.443,0.411,2,-8.971,1,0.0292,0.79,0.00344,0.101,0.429,156.591,264253,4 +914,Mischief Brew,On Freedom (A Carol),79p8ZR2EScdfv1bxy4uzCO,5,2012,acoustic,0.336,0.937,4,-5.421,1,0.0641,0.177,5.51e-06,0.0812,0.855,154.07,111267,4 +915,Taj Mahal,Lovin' in My Baby's Eyes,0lwni0rhD5KOiGcVh0whye,5,2012,acoustic,0.599,0.497,10,-9.985,1,0.0334,0.79,1.56e-06,0.109,0.552,85.48,158907,4 +916,Taj Mahal,She Caught the Katy and Left Me a Mule to Ride,71Xa2WpoYeCPDLT3hYnIm6,4,2012,acoustic,0.566,0.415,3,-11.347,1,0.0503,0.739,1.01e-05,0.0798,0.928,206.993,207987,4 +917,Patty Griffin,So Long,1H2vzEIejms7PesoT66ubk,5,2012,acoustic,0.592,0.228,10,-12.631,1,0.0297,0.603,3.75e-05,0.119,0.334,91.924,307293,3 +918,Patty Griffin,One More Girl,5VHD0hn6hQFBaPOGnZ2QRe,5,2012,acoustic,0.537,0.21,5,-10.269,1,0.0277,0.518,2.54e-06,0.12,0.2,104.176,300253,3 +919,Patty Griffin,Driving,2LtumdLR6tw1PPmpNy6kka,5,2012,acoustic,0.713,0.562,7,-7.998,0,0.0338,0.57,0.000363,0.176,0.671,120.676,257147,4 +920,Patty Griffin,Perfect White Girls,0akmljXhytQNpDJQ9uFr1c,5,2012,acoustic,0.743,0.654,4,-8.508,0,0.0538,0.77,0.000303,0.107,0.711,110.982,225307,4 +921,Otis Spann,Chicken Shack,0Jw2yjdrbcjaFLbZgjBJZV,7,2012,acoustic,0.575,0.452,7,-14.188,1,0.0323,0.902,0.935,0.27,0.723,131.625,141480,4 +922,Dorothy Descalsota,Gitara (Acoustic),1Y0cifZw6Eig6p4JWHIn9w,20,2012,acoustic,0.712,0.327,0,-10.708,1,0.0301,0.802,0.000252,0.0904,0.515,113.805,245560,4 +923,Sophie Porter,Anti-Social,6iVeHMAiblNUpqEFnbeSAk,4,2012,acoustic,0.559,0.242,10,-12.743,1,0.0561,0.231,8.9e-06,0.284,0.426,76.466,131000,4 +924,Meiko,Leave The Lights On - Morgan Page Remix,5kQOGssGUuCFSiTcIbpknb,3,2012,acoustic,0.686,0.907,1,-5.127,0,0.043,0.00116,0.0384,0.357,0.201,128.007,402293,4 +925,Fuyumi Abe,エイトビート・サッドソング,604MUqta4W4LoXTPSfbErr,17,2012,acoustic,0.661,0.449,7,-10.58,1,0.0296,0.163,0.0067,0.0991,0.581,119.994,228440,4 +926,Dorothy Descalsota,Akin Ka Na Lang (Acoustic),4tTNeuahMs69JbXshVWUxK,21,2012,acoustic,0.735,0.521,3,-8.098,1,0.0277,0.753,4.7e-05,0.13,0.667,115.059,206693,4 +927,Beans on Toast,Beer & a Burger,6wAagdmk1NwGsUrMW7dwxS,10,2012,acoustic,0.333,0.362,2,-11.167,1,0.0405,0.261,7.17e-06,0.142,0.751,181.318,184013,3 +928,Wino,Nothing,7xRINfBFRqd8KrJqGeyPRv,4,2012,acoustic,0.654,0.11,11,-15.456,0,0.0433,0.912,0.0334,0.123,0.189,151.874,231547,4 +929,Lulu Panganiban,Love Will Lead You Back,5XHDddXZzHEOP0EmTPvBH4,19,2012,acoustic,0.629,0.328,1,-6.845,1,0.0326,0.617,0.0,0.361,0.462,146.081,265533,4 +930,Takehara Pistol,石ころみたいにひとりぼっちで、命の底から駆け抜けるんだ,5JePS8yoeRSGDC3ijG3LNp,7,2012,acoustic,0.86,0.765,7,-5.98,1,0.115,0.0234,0.113,0.105,0.729,114.922,348093,4 +931,Wino,A Song For,4nsHzJ8mjMpJCU3dUlO71H,4,2012,acoustic,0.686,0.157,8,-13.492,1,0.0454,0.78,4.25e-05,0.0892,0.225,154.919,265120,3 +932,Jay Brannan,La La La,6tNP0gp57TNhwH2zdvODxD,3,2012,acoustic,0.732,0.45,2,-8.141,1,0.0339,0.585,2.59e-06,0.11,0.587,114.002,219973,4 +933,Jay Brannan,Greatest Hits,1FwoY1UOwWPJ2UmWCrh9V7,4,2012,acoustic,0.662,0.424,7,-11.177,1,0.0266,0.226,0.00254,0.121,0.332,103.17,229920,4 +934,Sam Russo,Bars Like These,2KhvFNdXFTzkfvzSUKdv1a,6,2012,acoustic,0.548,0.154,9,-11.125,1,0.0432,0.869,4.24e-06,0.105,0.255,93.596,206693,4 +935,Zach Berkman,Go Insane (feat. Ron Pope),6dQGQ43OQp9pq1DaXlZ0DL,7,2012,acoustic,0.586,0.337,0,-9.144,1,0.0275,0.705,0.0,0.111,0.266,78.027,217161,4 +936,Meiko,When The Doors Close,4jys84ty3xa93ZpqiV0bPg,3,2012,acoustic,0.721,0.366,11,-9.529,0,0.141,0.223,7.84e-05,0.0646,0.491,81.993,230907,4 +937,Lulu Panganiban,Because You Loved Me,6GGNiQcinAlnooeB1jpxi3,17,2012,acoustic,0.645,0.379,0,-8.781,1,0.031,0.522,0.0,0.174,0.403,121.894,265000,4 +938,Jay Brannan,Myth of Happiness,0CuxxtQt8V3NtxQ0nevXuI,4,2012,acoustic,0.686,0.505,0,-8.483,0,0.0274,0.083,0.00843,0.117,0.472,117.01,213507,4 +939,Lulu Panganiban,I Don't Wanna Be Your Friend,6zakYVconqiWV6rpZBE4VW,17,2012,acoustic,0.583,0.238,8,-11.089,1,0.0327,0.731,0.0,0.106,0.328,147.731,233053,4 +940,Sam Russo,Cold Feet,2EWgqrznRvsSbhXW8XpPaU,5,2012,acoustic,0.416,0.156,0,-11.91,1,0.0387,0.699,0.0152,0.122,0.352,88.991,217493,4 +941,Toto Sorioso,Nothing's Gonna Stop Us Now,12hRokwIvcCihjoq0nhJyA,15,2012,acoustic,0.743,0.251,6,-9.269,1,0.0289,0.711,0.0,0.0977,0.409,94.988,275493,4 +942,Maiden United,The Evil That Men Do,6Zl7QRW8ZaZvcbS1TsynVo,13,2012,acoustic,0.565,0.39,8,-7.278,0,0.0343,0.519,0.0,0.118,0.178,109.965,275707,4 +943,Jaymay,Pinocchio's Demise,0ASmlkuFpEiSbiiggbt5QJ,6,2012,acoustic,0.6,0.429,4,-6.501,1,0.0342,0.88,4.26e-06,0.103,0.45,127.091,113600,4 +944,Meiko,Good Looking Loser,1gvGlu48ogUtUR7jVfJxOu,2,2012,acoustic,0.571,0.428,11,-11.022,1,0.0409,0.629,0.00514,0.122,0.216,141.931,236253,3 +945,Jaymay,Climb Up The Ladder,05UEaMH3I6iCV21Bzkdq0C,7,2012,acoustic,0.537,0.348,8,-11.153,1,0.0351,0.784,0.012,0.118,0.601,140.353,117813,3 +946,Fuyumi Abe,君とあの海,1TkJsMDXARt6ZLC6Juhjol,17,2012,acoustic,0.537,0.28,2,-12.754,1,0.0278,0.379,0.0629,0.115,0.113,109.958,323853,4 +947,Sam Russo,Dry Shampoo,2l3cYEWIegYEju6UAvp0Fj,6,2012,acoustic,0.522,0.576,9,-7.084,1,0.053,0.5,1.94e-05,0.115,0.609,100.339,221600,4 +948,Dorothy Descalsota,Sundo (Acoustic),1THQys4w6ik9ZeuhYh99gG,19,2012,acoustic,0.411,0.37,10,-9.444,1,0.0309,0.888,2.98e-05,0.0949,0.437,79.901,236933,4 +949,Jay Brannan,Denmark,5RAXVOTaLvICcm5DRYJHKg,5,2012,acoustic,0.728,0.481,4,-9.048,0,0.031,0.461,0.000421,0.119,0.346,94.987,214040,4 +950,Gaz Brookfield,Be the Bigger Man,7uT1TVKmb5WoKFqwXX1VOP,20,2012,acoustic,0.713,0.536,11,-9.544,0,0.0493,0.436,0.0,0.0995,0.935,130.068,213159,4 +951,Wino,Rake,5kH7zd1Y4ys4HI2ndeM58I,5,2012,acoustic,0.678,0.129,6,-11.753,1,0.0525,0.659,0.0,0.37,0.272,64.945,164320,4 +952,Meiko,I Wonder,4Dv7aZodtvtLR93MycyOls,2,2012,acoustic,0.597,0.351,9,-7.736,0,0.0544,0.226,0.0,0.109,0.58,180.003,216240,4 +953,Roberto Diana,Coffee Break,6ItSCczo7DITQBEiod4eOb,8,2012,acoustic,0.561,0.271,7,-15.17,1,0.0517,0.859,0.923,0.116,0.353,77.642,204507,4 +954,Emilie Mover,Winter Fun,1uhpZR0LyFPw22KlDoyBUR,4,2012,acoustic,0.681,0.497,7,-5.699,1,0.0354,0.663,0.0,0.23,0.882,86.237,61813,3 +955,Daryl Shawn,Nkosi Sikelel' Iafrika,3Fv3PWSxXzlpLgti6SdBIa,5,2012,acoustic,0.486,0.0986,7,-17.354,1,0.0684,0.931,0.866,0.105,0.329,82.624,89347,4 +956,Mark Kroos,Flight Attempt,2t6SSfELpL5NIF4mfiPZJs,3,2012,acoustic,0.251,0.499,4,-14.872,1,0.0462,0.342,0.842,0.103,0.279,114.593,224640,4 +957,Emilie Mover,Imagination,4A0SUIeFUZOjEJKN7YusrG,5,2012,acoustic,0.693,0.718,2,-6.949,1,0.0365,0.16,0.0,0.173,0.964,136.422,165867,4 +958,The Donnies The Amys,Boxer + Clover,19LylRpnBQBHwfnskumidH,6,2012,acoustic,0.598,0.683,0,-6.152,1,0.0303,0.0161,0.0247,0.216,0.195,124.048,201560,4 +959,Mark Kroos,Pedals Press the Floor,6ZvLPGxrgAabFeGauahBhV,3,2012,acoustic,0.545,0.476,11,-13.353,1,0.0342,0.0468,0.868,0.087,0.482,115.962,284947,4 +960,Right the Stars,Computer Crimes,5yBOQZdjfU7foWA1MBFVMV,6,2012,acoustic,0.358,0.779,11,-6.824,1,0.0374,0.000603,0.081,0.0888,0.264,128.043,194387,4 +961,Taj Mahal,Jacob's Ladder,2ZWDxvjHCTYl3Ru8QuhDbL,6,2012,acoustic,0.749,0.848,7,-7.091,1,0.0376,0.53,0.0269,0.243,0.961,105.763,239600,4 +962,Keaton Simons,Bring It On Home to Me (feat. Lisa Creahan),0dgLPewPaTTSQf2RGGxO4U,8,2012,acoustic,0.397,0.277,0,-7.022,1,0.0432,0.8,0.0,0.117,0.607,203.163,173824,3 +963,Takehara Pistol,辞世の句,3rJTC8WiGCQMuTjXUKrwUy,9,2012,acoustic,0.638,0.766,1,-4.033,1,0.033,0.0262,0.0,0.108,0.968,134.281,212333,4 +964,Mindy Smith,If I,61nQWbfyTRxjAzAxVcctw7,3,2012,acoustic,0.44,0.0478,3,-14.988,1,0.0374,0.942,0.0,0.118,0.248,122.255,297773,4 +965,CityCop,Spring,6sji5YilHj5SRpZzQMMO2K,5,2012,acoustic,0.374,0.765,7,-7.016,1,0.0595,0.016,0.00515,0.321,0.611,157.456,246000,4 +966,Human Kitten,The Goods,306jU8DLqauqw5lYf706f5,5,2012,acoustic,0.749,0.267,0,-8.702,1,0.0367,0.386,0.0,0.183,0.544,84.271,132284,4 +967,Mindy Smith,Love Lost,5RxdKE4BoI6P0eIhBXALfp,4,2012,acoustic,0.55,0.736,1,-5.689,0,0.0389,0.165,0.000596,0.0881,0.311,118.996,251560,4 +968,El Michels Affair,C.R.E.A.M.,4bJ7tMJqfYmkKgCYzaaG4B,56,2012,afrobeat,0.571,0.508,11,-8.118,0,0.0254,0.532,0.951,0.161,0.102,96.825,174827,4 +969,Menahan Street Band,Lights Out,5aqR0sE4AVaycHGVVjoZmx,50,2012,afrobeat,0.393,0.892,2,-4.685,0,0.0514,0.00187,0.89,0.0926,0.704,190.157,157613,4 +970,Darondo,Luscious Lady,0Ruf8vTKjoMyIpyK5sPDIt,49,2012,afrobeat,0.698,0.669,10,-7.318,0,0.0446,0.0675,0.00852,0.0975,0.863,100.309,195947,4 +971,Menahan Street Band,Every Day a Dream,4EGhtRnsa6DoGImFOzVzLd,49,2012,afrobeat,0.692,0.661,10,-7.157,1,0.0606,0.0544,0.657,0.113,0.698,117.472,233000,4 +972,El Michels Affair,Shimmy Shimmy Ya,0FLmR0blAIztjE7YsQpoYc,48,2012,afrobeat,0.605,0.666,11,-5.77,1,0.0413,0.0234,0.647,0.0841,0.0865,100.138,145880,4 +973,El Michels Affair,Can It All Be So Simple,4UTIaNm0myRUwCOaVuZJHR,45,2012,afrobeat,0.648,0.474,7,-9.072,1,0.0434,0.107,0.902,0.0802,0.224,82.474,197880,4 +974,Monophonics,Looking Ahead,5bPRRKpik0KCIol0cT2Yxr,45,2012,afrobeat,0.671,0.625,4,-7.577,0,0.0367,0.194,0.206,0.242,0.925,80.939,96147,4 +975,El Michels Affair,Uzi (Pinky Ring),29qHvt5WRMBnJbHkeKD8z9,42,2012,afrobeat,0.758,0.692,1,-9.865,1,0.064,0.00478,0.919,0.0662,0.556,109.21,192040,4 +976,Ondatrópica,Cumbia Espacial,7y40GtUQ2pO4rV652rVazz,41,2012,afrobeat,0.707,0.888,8,-8.157,1,0.0471,0.36,0.756,0.158,0.765,91.332,245280,4 +977,Darondo,Thank You God,723bv7DPk3eGt6nxiSxPc2,38,2012,afrobeat,0.588,0.291,4,-11.601,1,0.0346,0.29,3.85e-05,0.0329,0.569,139.016,201920,4 +978,Akalé Wubé,Mata,6TRYv8brfH12SfgV8lMraP,43,2012,afrobeat,0.569,0.496,4,-11.423,0,0.0674,0.393,0.924,0.11,0.808,82.822,230853,4 +979,The Funkees,Akula Owu Onyeara,0X7mNbVv1YYJ8SrAk4AsiT,34,2012,afrobeat,0.701,0.702,5,-10.323,0,0.122,0.525,0.0486,0.235,0.885,110.721,448914,4 +980,The Bamboos,The Wilhelm Scream (feat. Meg Washington),0x4zqBZSjYvVLuttqcfu9W,35,2012,afrobeat,0.565,0.621,7,-5.62,1,0.0264,0.00773,0.0324,0.257,0.403,150.036,268040,4 +981,The Funkees,Acid Rock,2z1ZiLEhkXBPdUwVuA38hg,33,2012,afrobeat,0.708,0.523,5,-9.832,1,0.174,0.213,0.735,0.0892,0.962,146.306,173157,4 +982,Menahan Street Band,The Crossing,5ggyTMSZovcl1Pg79uZTN5,39,2012,afrobeat,0.445,0.752,1,-8.226,1,0.0648,0.0401,0.867,0.0884,0.834,178.009,306680,4 +983,Akalé Wubé,Jour de pluie,4NUbU2D7ezOt2QFyBKhFLn,41,2012,afrobeat,0.658,0.299,7,-11.603,0,0.0336,0.567,0.92,0.107,0.626,107.696,142733,4 +984,El Michels Affair,Heaven & Hell,6mmi0wu2uGDWKeDx4ufLEj,36,2012,afrobeat,0.587,0.598,6,-8.689,1,0.0226,0.00449,0.87,0.12,0.543,78.166,129027,4 +985,El Michels Affair,Mystery Of Chessboxin',6wiXkQYanC7InlHLENSJys,36,2012,afrobeat,0.595,0.294,1,-11.458,0,0.0437,0.00252,0.926,0.278,0.233,109.01,107173,4 +986,Francis Bebey,Fleur tropicale,4dAZcvyTmAegVJuFFqvgNf,36,2012,afrobeat,0.618,0.61,7,-7.059,1,0.0295,0.593,0.749,0.188,0.647,75.894,234078,4 +987,Francis Bebey,Tiers monde,42kWzwSeP6GtE8HaZZjzSu,34,2012,afrobeat,0.762,0.736,0,-7.614,1,0.0371,0.313,0.867,0.0856,0.964,113.481,207057,4 +988,Antibalas,Dirty Money,634Boo3ThjlnOkURPKQLBP,37,2012,afrobeat,0.709,0.956,6,-6.168,0,0.0423,0.301,0.552,0.0614,0.901,112.785,375307,4 +989,Francis Bebey,The Coffee Cola Song,3GYBtgclotwzSnd3u21VY7,39,2012,afrobeat,0.73,0.67,9,-7.141,0,0.0359,0.613,0.000104,0.0698,0.926,110.619,306455,4 +990,El Michels Affair,Duel Of The Iron Mics,5LDRwkxMyCTsQpyhmTbiAR,34,2012,afrobeat,0.385,0.476,8,-8.299,1,0.0279,0.13,0.937,0.124,0.039,178.031,181613,4 +991,Chico Mann,Dilo Como Yo (Te Están Llamando),3tz4X9gO0l6lOoh4ZvK7xg,32,2012,afrobeat,0.862,0.832,6,-5.3,0,0.0333,0.0693,0.633,0.065,0.973,119.998,255436,4 +992,The Funkees,Break Through,4ExCbFfB81TWhdhUO2FsjD,29,2012,afrobeat,0.56,0.762,10,-9.755,0,0.136,0.435,0.0252,0.112,0.586,91.683,209680,4 +993,Meridian Brothers,Salsa Caliente (Versión Aumentada),3qMRDghhgm2V3be7a3yxnn,31,2012,afrobeat,0.732,0.596,8,-7.459,1,0.0331,0.657,1.02e-05,0.0867,0.87,142.607,283107,4 +994,El Michels Affair,Criminology,6JAyoXUXt5RrAFuQzHeZYj,32,2012,afrobeat,0.829,0.419,7,-6.749,0,0.0341,0.0272,0.852,0.0826,0.511,102.062,95253,4 +995,El Michels Affair,Incarcerated Scarfaces,1hMySkyDeV8BDayCv3wqVm,32,2012,afrobeat,0.76,0.494,11,-9.391,1,0.042,0.0184,0.828,0.102,0.27,90.258,100493,4 +996,El Michels Affair,Protect Ya Neck,1ZhovLmj7HALLd7mhKZFlt,32,2012,afrobeat,0.801,0.779,9,-8.236,1,0.0458,0.0161,0.877,0.0923,0.273,110.966,212867,4 +997,The Ogyatanaa Show Band,You Monopolise Me,1FHBkS8AEvnXdXLD9ioUXy,28,2012,afrobeat,0.776,0.554,9,-6.865,1,0.223,0.276,0.0,0.278,0.719,95.482,194427,4 +998,Monophonics,Say You Love Me,0umIVhGxcIrwF21ItkFWzY,38,2012,afrobeat,0.703,0.427,9,-8.319,0,0.0424,0.57,6.07e-05,0.137,0.769,89.899,262280,4 diff --git a/frontend/public/TuneGraph.png b/frontend/public/TuneGraph.png new file mode 100644 index 0000000..fe72d57 Binary files /dev/null and b/frontend/public/TuneGraph.png differ diff --git a/frontend/public/x.svg b/frontend/public/x.svg new file mode 100644 index 0000000..7077205 --- /dev/null +++ b/frontend/public/x.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/app/PopUpGraph.tsx b/frontend/src/app/PopUpGraph.tsx new file mode 100644 index 0000000..acf997a --- /dev/null +++ b/frontend/src/app/PopUpGraph.tsx @@ -0,0 +1,18 @@ +import Chart from "react-google-charts"; + +interface props { + chartType?: string; + data?: object; + options?: object; + } + +export default function PopUpGraph({chartType, data, options}: props) { + + return ( +